diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000000..7fe6f5b952 --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,59 @@ +version: 2 +jobs: + build_35: &DEFAULT + docker: + - image: quantumblacklabs/kedro_builder:3.5.2 + steps: + - checkout + - run: &CONDA_SETUP + name: Activate conda environment + command: | + echo ". /home/circleci/miniconda/etc/profile.d/conda.sh" >> $BASH_ENV + echo "conda deactivate; conda activate kedro_builder" >> $BASH_ENV + + - run: &PIP_SETUP + name: Install PIP dependencies + command: | + # echo python version for debugging + echo "Python version: $(python --version 2>&1)" + + # Install pip setuptools + make install-pip-setuptools + + # Install requirements + pip install -r requirements.txt -U + + # Install test requirements + pip install -r test_requirements.txt -U + - run: + name: Run pylint and flake8 + command: | + make lint + - run: + name: Run tests + command: | + make test + - run: + name: Run all end to end tests + command: | + make e2e-tests + - run: + name: Check for legal compliance + command: | + make legal + build_36: + <<: *DEFAULT + docker: + - image: quantumblacklabs/kedro_builder:3.6 + build_37: + <<: *DEFAULT + docker: + - image: quantumblacklabs/kedro_builder:3.7 + +workflows: + version: 2 + regular: + jobs: + - build_35 + - build_36 + - build_37 diff --git a/.coveragerc b/.coveragerc new file mode 100644 index 0000000000..bff70a367c --- /dev/null +++ b/.coveragerc @@ -0,0 +1,7 @@ +[report] +fail_under=100 +show_missing=True +omit = kedro/template* +exclude_lines = + pragma: no cover + raise NotImplementedError diff --git a/.flake8 b/.flake8 new file mode 100644 index 0000000000..4fff5484f2 --- /dev/null +++ b/.flake8 @@ -0,0 +1,7 @@ +# copied from black + +[flake8] +ignore = E203, E266, E501, W503 +max-line-length = 80 +max-complexity = 18 +select = B,C,E,F,W,T4,B9 diff --git a/.github/ISSUE_TEMPLATE/bug-report.md b/.github/ISSUE_TEMPLATE/bug-report.md new file mode 100644 index 0000000000..789b7f4f35 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug-report.md @@ -0,0 +1,47 @@ +--- +name: Bug Report +about: Create a report to help us improve +title: "" +labels: 'Issue: Bug Report' +assignees: '' + +--- + +## Description +Short description of the problem here + +## Context +How has this bug affected you? What were you trying to accomplish? + +## Steps to Reproduce + +1. [First Step] +2. [Second Step] +3. [and so on...] + +## Expected Result +Tell us what should happen + +## Actual Result +Tell us what happens instead + +``` +-- If you received an error, place it here. +``` + +``` +-- Separate them if you have more than one. +``` + +## Your Environment +Include as many relevant details about the environment you experienced the bug in + +* Kedro version used: +* Python version used: +* Operating system and version: + +## Checklist +Include labels so that we can categorise your issue + +- [ ] Add a "Component" label to the issue +- [ ] Add a "Priority" label to the issue diff --git a/.github/ISSUE_TEMPLATE/feature-request.md b/.github/ISSUE_TEMPLATE/feature-request.md new file mode 100644 index 0000000000..f507cf554d --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature-request.md @@ -0,0 +1,26 @@ +--- +name: Feature Request +about: Suggest an feature or enhancement for this project +title: "<Title>" +labels: 'Issue: Feature Request' +assignees: '' + +--- + +## Description +Is your feature request related to a problem? A clear and concise description of what the problem is: "I'm always frustrated when ..." + +## Context +Why is this change important to you? How would you use it? How can it benefit other users? + +## Possible Implementation +(Optional) Suggest an idea for implementing addition or change + +## Possible Alternatives +(Optional) Describe any alternative solutions or features you've considered. + +## Checklist +Include labels so that we can categorise your issue + +- [ ] Add a "Component" label to the issue +- [ ] Add a "Priority" label to the issue diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000000..0e6e68e331 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,23 @@ +## Notice + +- [ ] I acknowledge and agree that, by checking this box and clicking “Submit Pull Request”: + +- I submit this contribution under the Apache 2.0 license available [here](https://www.apache.org/licenses/LICENSE-2.0.txt) and represent that I am entitled to do so on behalf of myself, my employer, or relevant third parties, as applicable. +- I certify that (a) this contribution is my original creation and / or (b) to the extent it is not my original creation, I am authorised to submit this contribution on behalf of the original creator(s) or their licensees. +- I certify that this contribution does not violate the intellectual property rights of anyone else. + +## Motivation and Context +_Why was this PR created?_ + +## How has this been tested? +_What testing strategies have you used?_ + +## Checklist + +- [ ] Read the [contributing](/CONTRIBUTING.md) guidelines +- [ ] Opened this PR as a 'Draft Pull Request' if it is work-in-progress +- [ ] Updated the documentation to reflect the code changes +- [ ] Added new entries to the `RELEASE.md` file +- [ ] Added tests to cover my changes +- [ ] Assigned myself to the PR +- [ ] Added `Type` label to the PR diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000000..ce20396601 --- /dev/null +++ b/.gitignore @@ -0,0 +1,150 @@ +# CMake +cmake-build-debug/ + +## File-based project format: +*.iws + +## Plugin-specific files: + +# IntelliJ +.idea/ +*.iml +out/ + +### macOS +*.DS_Store +.AppleDouble +.LSOverride +.Trashes + +# mpeltonen/sbt-idea plugin +.idea_modules/ + +# JIRA plugin +atlassian-ide-plugin.xml + +# Crashlytics plugin (for Android Studio and IntelliJ) +com_crashlytics_export_strings.xml +crashlytics.properties +crashlytics-build.properties +fabric.properties +### Python template +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# C extensions +*.so + +# Distribution / packaging +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +pip-wheel-metadata/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + + +# Unit test / coverage reports +htmlcov/ +.tox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +.hypothesis/ + +# Translations +*.mo +*.pot + +# Django stuff: +*.log +.static_storage/ +.media/ +local_settings.py + +# Flask stuff: +instance/ +.webassets-cache + +# Scrapy stuff: +.scrapy + +# PyBuilder +target/ + +# Jupyter Notebook +.ipynb_checkpoints + +# pyenv +.python-version + +# celery beat schedule file +celerybeat-schedule + +# SageMath parsed files +*.sage.py + +# Environments +.env +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ + +# Spyder project settings +.spyderproject +.spyproject + +# Rope project settings +.ropeproject + +# mkdocs documentation +/site + +# mypy +.mypy_cache/ + +# Visual Studio Code +.vscode/ +# end to end tests assets +kedro.db + +# Vim +*~ +.*.swo +.*.swp + +.pytest_cache/ +kedro/html +docs/tmp-build-artifacts +docs/build +docs/source/04_user_guide/source/.ipynb diff --git a/.isort.cfg b/.isort.cfg new file mode 100644 index 0000000000..12f7029a91 --- /dev/null +++ b/.isort.cfg @@ -0,0 +1,10 @@ +# copied from black + +[settings] +multi_line_output=3 +include_trailing_comma=True +force_grid_wrap=0 +use_parentheses=True +line_length=88 +skip_glob=**/template/** +known_first_party=kedro diff --git a/.pylintrc b/.pylintrc new file mode 100644 index 0000000000..8b59212147 --- /dev/null +++ b/.pylintrc @@ -0,0 +1,425 @@ +[MASTER] + +# A comma-separated list of package or module names from where C extensions may +# be loaded. Extensions are loading into the active Python interpreter and may +# run arbitrary code +extension-pkg-whitelist= + +# Add files or directories to the blacklist. They should be base names, not +# paths. +ignore=CVS + +# Add files or directories matching the regex patterns to the blacklist. The +# regex matches against base names, not paths. +ignore-patterns=kedro/template* + +# Python code to execute, usually for sys.path manipulation such as +# pygtk.require(). +#init-hook= + +# Use multiple processes to speed up Pylint. +jobs=1 + +# List of plugins (as comma separated values of python modules names) to load, +# usually to register additional checkers. +load-plugins=pylint.extensions.docparams + +# Pickle collected data for later comparisons. +persistent=yes + +# Specify a configuration file. +#rcfile= + +# Allow loading of arbitrary C extensions. Extensions are imported into the +# active Python interpreter and may run arbitrary code. +unsafe-load-any-extension=no + + +[MESSAGES CONTROL] + +# Only show warnings with the listed confidence levels. Leave empty to show +# all. Valid levels: HIGH, INFERENCE, INFERENCE_FAILURE, UNDEFINED +confidence= + +# Disable the message, report, category or checker with the given id(s). You +# can either give multiple identifiers separated by comma (,) or put this +# option multiple times (only on the command line, not in the configuration +# file where it should appear only once).You can also use "--disable=all" to +# disable everything first and then reenable specific checks. For example, if +# you want to run only the similarities checker, you can use "--disable=all +# --enable=similarities". If you want to run only the classes checker, but have +# no Warning level messages displayed, use"--disable=all --enable=classes +# --disable=W" +disable=ungrouped-imports,bad-continuation + +# Enable the message, report, category or checker with the given id(s). You can +# either give multiple identifier separated by comma (,) or put this option +# multiple time (only on the command line, not in the configuration file where +# it should appear only once). See also the "--disable" option for examples. +enable=useless-suppression + + +[REPORTS] + +# Python expression which should return a note less than 10 (10 is the highest +# note). You have access to the variables errors warning, statement which +# respectively contain the number of errors / warnings messages and the total +# number of statements analyzed. This is used by the global evaluation report +# (RP0004). +evaluation=10.0 - ((float(5 * error + warning + refactor + convention) / statement) * 10) + +# Template used to display messages. This is a python new-style format string +# used to format the message information. See doc for all details +#msg-template= + +# Set the output format. Available formats are text, parseable, colorized, json +# and msvs (visual studio).You can also give a reporter class, eg +# mypackage.mymodule.MyReporterClass. +output-format=text + +# Tells whether to display a full report or only the messages +reports=no + +# Activate the evaluation score. +score=yes + + +[REFACTORING] + +# Maximum number of nested blocks for function / method body +max-nested-blocks=5 + + +[BASIC] + +# Naming hint for argument names +argument-name-hint=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$ + +# Regular expression matching correct argument names +argument-rgx=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$ + +# Naming hint for attribute names +attr-name-hint=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$ + +# Regular expression matching correct attribute names +attr-rgx=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$ + +# Bad variable names which should always be refused, separated by a comma +bad-names=foo,bar,baz,toto,tutu,tata + +# Naming hint for class attribute names +class-attribute-name-hint=([A-Za-z_][A-Za-z0-9_]{2,30}|(__.*__))$ + +# Regular expression matching correct class attribute names +class-attribute-rgx=([A-Za-z_][A-Za-z0-9_]{2,30}|(__.*__))$ + +# Naming hint for class names +class-name-hint=[A-Z_][a-zA-Z0-9]+$ + +# Regular expression matching correct class names +class-rgx=[A-Z_][a-zA-Z0-9]+$ + +# Naming hint for constant names +const-name-hint=(([A-Z_][A-Z0-9_]*)|(__.*__))$ + +# Regular expression matching correct constant names +const-rgx=(([A-Z_][A-Z0-9_]*)|(__.*__))$ + +# Minimum line length for functions/classes that require docstrings, shorter +# ones are exempt. +docstring-min-length=-1 + +# Naming hint for function names +function-name-hint=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$ + +# Regular expression matching correct function names +function-rgx=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$ + +# Good variable names which should always be accepted, separated by a comma +good-names=i,j,k,ex,Run,_ + +# Include a hint for the correct naming format with invalid-name +include-naming-hint=no + +# Naming hint for inline iteration names +inlinevar-name-hint=[A-Za-z_][A-Za-z0-9_]*$ + +# Regular expression matching correct inline iteration names +inlinevar-rgx=[A-Za-z_][A-Za-z0-9_]*$ + +# Naming hint for method names +method-name-hint=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$ + +# Regular expression matching correct method names +method-rgx=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$ + +# Naming hint for module names +module-name-hint=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$ + +# Regular expression matching correct module names +module-rgx=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$ + +# Colon-delimited sets of names that determine each other's naming style when +# the name regexes allow several styles. +name-group= + +# Regular expression which should only match function or class names that do +# not require a docstring. +no-docstring-rgx=^_ + +# List of decorators that produce properties, such as abc.abstractproperty. Add +# to this list to register other decorators that produce valid properties. +property-classes=abc.abstractproperty + +# Naming hint for variable names +variable-name-hint=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$ + +# Regular expression matching correct variable names +variable-rgx=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$ + + +[FORMAT] + +# Expected format of line ending, e.g. empty (any line ending), LF or CRLF. +expected-line-ending-format= + +# Regexp for a line that is allowed to be longer than the limit. +ignore-long-lines=^\s*(# )?<?https?://\S+>?$ + +# Number of spaces of indent required inside a hanging or continued line. +indent-after-paren=4 + +# String used as indentation unit. This is usually " " (4 spaces) or "\t" (1 +# tab). +indent-string=' ' + +# Maximum number of characters on a single line. +max-line-length=100 + +# Maximum number of lines in a module +max-module-lines=1000 + +# List of optional constructs for which whitespace checking is disabled. `dict- +# separator` is used to allow tabulation in dicts, etc.: {1 : 1,\n222: 2}. +# `trailing-comma` allows a space between comma and closing bracket: (a, ). +# `empty-line` allows space-only lines. +no-space-check=trailing-comma,dict-separator + +# Allow the body of a class to be on the same line as the declaration if body +# contains single statement. +single-line-class-stmt=no + +# Allow the body of an if to be on the same line as the test if there is no +# else. +single-line-if-stmt=no + + +[LOGGING] + +# Logging modules to check that the string format arguments are in logging +# function parameter format +logging-modules=logging + + +[MISCELLANEOUS] + +# List of note tags to take in consideration, separated by a comma. +notes=FIXME,XXX + + +[SIMILARITIES] + +# Ignore comments when computing similarities. +ignore-comments=yes + +# Ignore docstrings when computing similarities. +ignore-docstrings=yes + +# Ignore imports when computing similarities. +ignore-imports=no + +# Minimum lines number of a similarity. +min-similarity-lines=20 + + +[SPELLING] + +# Spelling dictionary name. Available dictionaries: none. To make it working +# install python-enchant package. +spelling-dict= + +# List of comma separated words that should not be checked. +spelling-ignore-words= + +# A path to a file that contains private dictionary; one word per line. +spelling-private-dict-file= + +# Tells whether to store unknown words to indicated private dictionary in +# --spelling-private-dict-file option instead of raising a message. +spelling-store-unknown-words=no + + +[TYPECHECK] + +# List of decorators that produce context managers, such as +# contextlib.contextmanager. Add to this list to register other decorators that +# produce valid context managers. +contextmanager-decorators=contextlib.contextmanager + +# List of members which are set dynamically and missed by pylint inference +# system, and so shouldn't trigger E1101 when accessed. Python regular +# expressions are accepted. +generated-members= + +# Tells whether missing members accessed in mixin class should be ignored. A +# mixin class is detected if its name ends with "mixin" (case insensitive). +ignore-mixin-members=yes + +# This flag controls whether pylint should warn about no-member and similar +# checks whenever an opaque object is returned when inferring. The inference +# can return multiple potential results while evaluating a Python object, but +# some branches might not be evaluated, which results in partial inference. In +# that case, it might be useful to still emit no-member and other checks for +# the rest of the inferred objects. +ignore-on-opaque-inference=yes + +# List of class names for which member attributes should not be checked (useful +# for classes with dynamically set attributes). This supports the use of +# qualified names. +ignored-classes=optparse.Values,thread._local,_thread._local + +# List of module names for which member attributes should not be checked +# (useful for modules/projects where namespaces are manipulated during runtime +# and thus existing member attributes cannot be deduced by static analysis. It +# supports qualified module names, as well as Unix pattern matching. +ignored-modules= + +# Show a hint with possible names when a member name was not found. The aspect +# of finding the hint is based on edit distance. +missing-member-hint=yes + +# The minimum edit distance a name should have in order to be considered a +# similar match for a missing member name. +missing-member-hint-distance=1 + +# The total number of similar names that should be taken in consideration when +# showing a hint for a missing member. +missing-member-max-choices=1 + + +[VARIABLES] + +# List of additional names supposed to be defined in builtins. Remember that +# you should avoid to define new builtins when possible. +additional-builtins= + +# Tells whether unused global variables should be treated as a violation. +allow-global-unused-variables=yes + +# List of strings which can identify a callback function by name. A callback +# name must start or end with one of those strings. +callbacks=cb_,_cb + +# A regular expression matching the name of dummy variables (i.e. expectedly +# not used). +dummy-variables-rgx=_+$|(_[a-zA-Z0-9_]*[a-zA-Z0-9]+?$)|dummy|^ignored_|^unused_ + +# Argument names that match this expression will be ignored. Default to name +# with leading underscore +ignored-argument-names=_.*|^ignored_|^unused_ + +# Tells whether we should check for unused import in __init__ files. +init-import=no + +# List of qualified module names which can have objects that can redefine +# builtins. +redefining-builtins-modules=six.moves,future.builtins + + +[CLASSES] + +# List of method names used to declare (i.e. assign) instance attributes. +defining-attr-methods=__init__,__new__,setUp + +# List of member names, which should be excluded from the protected access +# warning. +exclude-protected=_asdict,_fields,_replace,_source,_make + +# List of valid names for the first argument in a class method. +valid-classmethod-first-arg=cls + +# List of valid names for the first argument in a metaclass class method. +valid-metaclass-classmethod-first-arg=mcs + + +[DESIGN] + +# Maximum number of arguments for function / method +max-args=5 + +# Maximum number of attributes for a class (see R0902). +max-attributes=7 + +# Maximum number of boolean expressions in a if statement +max-bool-expr=5 + +# Maximum number of branch for function / method body +max-branches=12 + +# Maximum number of locals for function / method body +max-locals=15 + +# Maximum number of parents for a class (see R0901). +max-parents=7 + +# Maximum number of public methods for a class (see R0904). +max-public-methods=20 + +# Maximum number of return / yield for function / method body +max-returns=6 + +# Maximum number of statements in function / method body +max-statements=50 + +# Minimum number of public methods for a class (see R0903). +min-public-methods=1 + + +[IMPORTS] + +# Allow wildcard imports from modules that define __all__. +allow-wildcard-with-all=no + +# Analyse import fallback blocks. This can be used to support both Python 2 and +# 3 compatible code, which means that the block might have code that exists +# only in one or another interpreter, leading to false positives when analysed. +analyse-fallback-blocks=no + +# Deprecated modules which should not be used, separated by a comma +deprecated-modules=optparse,tkinter.tix + +# Create a graph of external dependencies in the given file (report RP0402 must +# not be disabled) +ext-import-graph= + +# Create a graph of every (i.e. internal and external) dependencies in the +# given file (report RP0402 must not be disabled) +import-graph= + +# Create a graph of internal dependencies in the given file (report RP0402 must +# not be disabled) +int-import-graph= + +# Force import order to recognize a module as part of the standard +# compatibility libraries. +known-standard-library= + +# Force import order to recognize a module as part of a third party library. +known-third-party=enchant + + +[EXCEPTIONS] + +# Exceptions that will emit a warning when being caught. Defaults to +# "Exception" +overgeneral-exceptions=Exception diff --git a/CODEOWNERS b/CODEOWNERS new file mode 100644 index 0000000000..ddb49170f5 --- /dev/null +++ b/CODEOWNERS @@ -0,0 +1,22 @@ +* @idanov @tsanikgr + +kedro/* @idanov @tsanikgr +kedro/contrib/* @idanov @tsanikgr +template/* @idanov @tsanikgr + +Makefile @idanov @tsanikgr +requirements.txt @idanov @tsanikgr +tools/* @idanov @tsanikgr + +tests/* @nakhan98 +features/* @nakhan98 +behave.ini @nakhan98 +.pylintrc @nakhan98 +.coveragerc @nakhan98 + +CODEOWNERS @idanov +CONTRIBUTING.md @idanov +README.md @idanov +RELEASE.md @idanov +LICENSE.md @idanov +legal_header.txt @idanov diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md new file mode 100644 index 0000000000..430cf1e59f --- /dev/null +++ b/CODE_OF_CONDUCT.md @@ -0,0 +1,78 @@ +# Contributor Covenant Code of Conduct + +## Our Pledge + +In the interest of fostering an open and welcoming environment, we as +contributors and maintainers pledge to making participation in our project and +our community a harassment-free experience for everyone, regardless of age, body +size, disability, ethnicity, sex characteristics, gender identity and expression, +level of experience, education, socio-economic status, nationality, personal +appearance, race, religion, or sexual identity and orientation. + +## Our Standards + +Examples of behavior that contributes to creating a positive environment +include: + +* Using welcoming and inclusive language +* Being respectful of differing viewpoints and experiences +* Gracefully accepting constructive criticism +* Focusing on what is best for the community +* Showing empathy towards other community members + +Examples of unacceptable behavior by participants include: + +* The use of sexualized language or imagery and unwelcome sexual attention or + advances +* Trolling, insulting/derogatory comments, and personal or political attacks +* Public or private harassment +* Publishing others' private information, such as a physical or electronic + address, without explicit permission +* Other conduct which could reasonably be considered inappropriate in a + professional setting + +## Our Responsibilities + +Project maintainers are responsible for clarifying the standards of acceptable +behavior and are expected to take appropriate and fair corrective action in +response to any instances of unacceptable behavior. + +Project maintainers have the right and responsibility to remove, edit, or +reject comments, commits, code, wiki edits, issues, and other contributions +that are not aligned to this Code of Conduct, or to ban temporarily or +permanently any contributor for other behaviors that they deem inappropriate, +threatening, offensive, or harmful. + +## Scope + +This Code of Conduct applies both within project spaces and in public spaces +when an individual is representing the project or its community. Examples of +representing a project or community include using an official project e-mail +address, posting via an official social media account, or acting as an appointed +representative at an online or offline event. Representation of a project may be +further defined and clarified by project maintainers. + +## Enforcement + +Instances of abusive, harassing, or otherwise unacceptable behavior may be +reported by contacting the project team at kedro@quantumblack.com. All +complaints will be reviewed and investigated and will result in a response that +is deemed necessary and appropriate to the circumstances. The project team is +obligated to maintain confidentiality with regard to the reporter of an incident. +Further details of specific enforcement policies may be posted separately. + +Project maintainers who do not follow or enforce the Code of Conduct in good +faith may face temporary or permanent repercussions as determined by other +members of the project's leadership. + +**Investigation Timeline:** The project team will make all reasonable efforts to initiate and conclude the investigation in a timely fashion. Depending on the type of investigation the steps and timeline for each investigation will vary. + +## Attribution + +This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, +available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html + +[homepage]: https://www.contributor-covenant.org + +For answers to common questions about this code of conduct, see +https://www.contributor-covenant.org/faq diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000000..5b66d7a8e5 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,159 @@ +# Introduction + +Thank you for considering contributing to Kedro! It's people like you that make Kedro such a great tool. We welcome contributions in the form of pull requests (PRs), issues or code reviews. You can add to code, [documentation](https://kedro.readthedocs.io), or simply send us spelling and grammar fixes or extra tests. Contribute anything that you think improves the community for us all! + +The following sections describe our vision and the contribution process. + +## Vision + +There is some work ahead, but Kedro aims to become the standard for developing production-ready data pipelines. To be production-ready, a data pipeline needs to be monitored, scheduled, scalable, versioned, testable and reproducible. Currently, Kedro helps you develop data pipelines that are testable, versioned, reproducible and we'll be extending our capability to cover the full set of characteristics for data pipelines over time. + +## Code of conduct + +The Kedro team pledges to foster and maintain a welcoming and friendly community in all of our spaces. All members of our community are expected to follow our [Code of Conduct](/CODE_OF_CONDUCT.md) and we will do our best to enforce those principles and build a happy environment where everyone is treated with respect and dignity. + +# Get started + +We use [GitHub Issues](https://github.com/quantumblacklabs/kedro/issues) to keep track of known bugs. We keep a close eye on them and try to make it clear when we have an internal fix in progress. Before reporting a new issue, please do your best to ensure your problem hasn't already been reported. If so, it's often better to just leave a comment on an existing issue, rather than create a new one. Old issues also can often include helpful tips and solutions to common problems. + +If you are looking for help with your code, and the [FAQs](docs/source/06_resources/01_faq.md) in our documentation haven't helped you, please consider posting a question on [Stack Overflow](https://stackoverflow.com/questions/tagged/kedro). If you tag it `kedro` and `python`, more people will see it and may be able to help. We are unable to provide individual support via email. In the interest of community engagement we also believe that help is much more valuable if it's shared publicly, so that more people can benefit from it. + +If you're over on Stack Overflow and want to boost your points, take a look at the `kedro` tag and see if you can help others out by sharing your knowledge. It's another great way to contribute. + +If you have already checked the existing issues in [GitHub issues](https://github.com/quantumblacklabs/kedro/issues) and are still convinced that you have found odd or erroneous behaviour then please file an [issue](https://github.com/quantumblacklabs/kedro). We have a template that helps you provide the necessary information we'll need in order to address your query. + +## Feature requests + +### Suggest a new feature + +If you have new ideas for Kedro functionality then please open a [GitHub issue](https://github.com/quantumblacklabs/kedro/issues) with the label `Type: Enhancement`. You can submit an issue [here](https://github.com/quantumblacklabs/kedro/issues) which describes the feature you would like to see, why you need it, and how it should work. + +### Contribute a new feature + +If you're unsure where to begin contributing to Kedro, please start by looking through the `good first issues` and `help wanted issues` on [GitHub](https://github.com/quantumblacklabs/kedro/issues). + +We focus on three areas for contribution: `core`, [`contrib`](/kedro/contrib/) or `plugin`: +- `core` refers to the primary Kedro library +- [`contrib`](/kedro/contrib/) refers to features that could be added to `core` that do not introduce too many depencies or require new Kedro CLI commands to be created e.g. adding a new dataset to the `io` data management module +- `plugin` refers to new functionality that requires a Kedro CLI command e.g. adding in Airflow functionality + +Typically, we only accept small contributions for the `core` Kedro library but accept new features as `plugin`s or additions to the [`contrib`](/kedro/contrib/) module. We regularly review [`contrib`](/kedro/contrib/) and may migrate modules to `core` if they prove to be essential for the functioning of the framework or if we believe that they are used by most projects. + +## Your first contribution + +Working on your first pull request? You can learn how from these resources: +* [First timers only](https://www.firsttimersonly.com/) +* [How to contribute to an open source project on GitHub](https://egghead.io/courses/how-to-contribute-to-an-open-source-project-on-github) + + +### Guidelines + + - Aim for cross-platform compatibility on Windows, macOS and Linux + - We use [Anaconda](https://www.anaconda.com/distribution/) as a preferred virtual environment + - We use [SemVer](https://semver.org/) for versioning + +Our code is designed to be compatible with Python 3.5 onwards and our style guidelines are (in cascading order): + +* [PEP 8 conventions](https://www.python.org/dev/peps/pep-0008/) for all Python code +* [Google docstrings](https://google.github.io/styleguide/pyguide.html#38-comments-and-docstrings) for code comments +* [PEP 484 type hints](https://www.python.org/dev/peps/pep-0484/) for all user-facing functions / class methods e.g. + +``` +def count_truthy(elements: List[Any]) -> int: + return sum(1 for elem in elements if element) +``` + +> *Note:* We only accept contributions under the Apache 2.0 license and you should have permission to share the submitted code. + +### Branching conventions +We use a branching model that helps us keep track of branches in a logical, consistent way. All branches should have the hyphen-separated convention of: `<type-of-change>/<short-description-of-change>` e.g. `contrib/io-dataset` + +| Types of changes | Description | +| ---------------- | ---------------------------------------------------------------------------- | +| `contrib` | Changes under `contrib/` and has no side-effects to other `contrib/` modules | +| `docs` | Changes to the documentation under `docs/source/` | +| `feature` | Non-breaking change which adds functionality | +| `fix` | Non-breaking change which fixes an issue | +| `tests` | Changes to project unit `tests/` and / or integration `features/` tests | + +## `core` contribution process + +Small contributions are accepted for the `core` library: + + 1. Fork the project + 2. Develop your contribution in a new branch and open a PR against the `develop` branch + 3. Make sure the CI builds are green (have a look at the section [Running checks locally](/CONTRIBUTING.md#running-checks-locally) below) + 4. Update the PR according to the reviewer's comments + +## `contrib` contribution process + +You can add new work to `contrib` if you do not need to create a new Kedro CLI command: + + 1. Create an [issue](https://github.com/quantumblacklabs/kedro/issues) describing your contribution + 2. Fork the project and work in [`contrib`](/kedro/contrib/) + 3. Develop your contribution in a new branch and open a PR against the `develop` branch + 4. Make sure the CI builds are green (have a look at the section [Running checks locally](CONTRIBUTING.md#ci--cd-and-running-checks-locally) below) + 5. Include a `README.md` with instructions on how to use your contribution + 6. Update the PR according to the reviewer's comments + +## `plugin` contribution process + +The functionality of Kedro can be extended using its `plugin` framework, which is designed to reduce the complexity involved in creating new features for Kedro while allowing you to inject additional commands into the CLI. See the [`plugin` development documentation](https://kedro.readthedocs.io/en/latest/04_user_guide/09_developing_plugins.html) for guidance on how to design and develop a Kedro `plugin`. + +When you are ready to submit your code: + + 1. Create a separate repository using our naming convention for `plugin`s (`kedro-<plugin-name>`) + 2. Choose a command approach, plugins can have `global` and / or `project` commands + - All `global` commands should be provided as a single `click` group + - All `project` commands should be provided as another `click` group + + - The `click` groups are declared through the [`pkg_resources` entry_point system](https://setuptools.readthedocs.io/en/latest/setuptools.html#dynamic-discovery-of-services-and-plugins) + 3. Include a `README.md` describing your `plugin`'s functionality and all dependencies that should be included + 4. Include an Apache 2.0 License + +## CI / CD and running checks locally +To run E2E tests you need to install the test requirements which includes `behave`, do this using the following command: + +```bash +pip install -r test_requirements.txt +``` + +### Running checks locally + +All checks run by our CI / CD servers can be run locally on your computer. + +#### PEP-8 Standards (`pylint` and `flake8`) + +```bash +make lint +``` + +#### Unit tests, 100% coverage (`pytest`, `pytest-cov`) + +```bash +make test +``` + +> Note: We place [conftest.py](https://docs.pytest.org/en/latest/fixture.html#conftest-py-sharing-fixture-functions) files in some test directories to make fixtures reusable by any tests in that directory. If you need to see which test fixtures are available and where they come from, you can issue: + +```bash +pytest --fixtures path/to/the/test/location.py +``` + +#### End-to-end tests (`behave`) + +```bash +behave +``` + +#### Others + +Our CI / CD also checks that `kedro` installs cleanly on a fresh Python virtual environment, a task which depends on successfully building the docs: + +```bash +make build-docs +``` + +This command will only work on Unix-like systems and requires `pandoc` to be installed. + +> ❗ Running `make build-docs` in a Python 3.5 environment may sometimes yield multiple warning messages like the following: `MemoryDataSet.md: WARNING: document isn't included in any toctree`. You can simply ignore them or switch to Python 3.6+ when building documentation. diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000000..2c3012a46f --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,6 @@ +include README.md +include LICENSE.md +include legal_header.txt +include requirements.txt +include kedro/config/logging.yml +recursive-include template * diff --git a/Makefile b/Makefile new file mode 100644 index 0000000000..115cc87c8a --- /dev/null +++ b/Makefile @@ -0,0 +1,37 @@ +install: docs/build/html/index.html + cp -r docs/build/html kedro + pip install . + +clean: + rm -rf build dist docs/build kedro/html pip-wheel-metadata + find . -regex ".*/__pycache__" -exec rm -rf {} + + find . -regex ".*\.egg-info" -exec rm -rf {} + + +docs/build/html/index.html: build-docs + +install-pip-setuptools: + python -m pip install -U "pip>=18.0, <19.0" "setuptools>=38.0, <39.0" wheel + +legal: + python tools/license_and_headers.py + +lint: + isort + pylint -j 0 --disable=unnecessary-pass kedro + pylint -j 0 --disable=missing-docstring,redefined-outer-name,no-self-use,invalid-name tests + pylint -j 0 --disable=missing-docstring,no-name-in-module features + flake8 kedro tests features --exclude kedro/template* + +test: + pytest tests + +e2e-tests: + behave + +SPHINXPROJ = Kedro + +build-docs: + ./docs/build-docs.sh + +package: clean install + python setup.py sdist bdist_wheel diff --git a/RELEASE.md b/RELEASE.md new file mode 100644 index 0000000000..1beed647b2 --- /dev/null +++ b/RELEASE.md @@ -0,0 +1,13 @@ +# Release 0.14.0: + +The initial release of Kedro. + +## Thanks to our main contributors + +Nikolaos Tsaousis, Ivan Danov, Dmitrii Deriabin, Gordon Wrigley, Yetunde Dada, Nasef Khan, Kiyohito Kunii, Nikolaos Kaltsas, Meisam Emamjome, Peteris Erins, Lorena Balan + +## Thanks for supporting contributions + +Jo Stichbury, Aris Valtazanos, Fabian Peters, Guilherme Braccialli, Joel Schwarzmann, Miguel Beltre, Mohammed ElNabawy, Deepyaman Datta, Shubham Agrawal, Oleg Andreyev, Mayur Chougule, William Ashford, Ed Cannon, Nikhilesh Nukala, Sean Bailey, Vikram Tegginamath, Thomas Huijskens, Musa Bilal + +We are also grateful to everyone who advised and supported us, filed issues or helped resolve them, asked and answered questions and were part of inspiring discussions. diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000000..341e14ce8d --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,43 @@ +image: Visual Studio 2017 + +environment: + # For debugging: https://www.appveyor.com/docs/how-to/rdp-to-build-worker/ + # APPVEYOR_RDP_PASSWORD: <your_password> + + matrix: + - PYTHON_VERSION: 3.5.2 + MINICONDA3: C:\Miniconda3-x64 + PYTHON_ARCH: "64" + + - PYTHON_VERSION: 3.6 + MINICONDA3: C:\Miniconda3-x64 + PYTHON_ARCH: "64" + + - PYTHON_VERSION: 3.7.2 + MINICONDA3: C:\Miniconda3-x64 + PYTHON_ARCH: "64" + +version: '1.0.{build}' + +init: + # Linux containers on windows only supported in premium: + # https://github.com/appveyor-tests/docker-ce/blob/master/appveyor.yml + # - docker-switch-linux + +cache: + - '%LOCALAPPDATA%\pip\Cache -> requirements.txt, test_requirements.txt' + + +install: + - "set PATH=%MINICONDA%;%MINICONDA3%\\Scripts;%PATH%" + - conda create --name kedro python=%PYTHON_VERSION% -y + - activate kedro + - python -m pip install -U pip + - choco install make + - make install-pip-setuptools + - pip install -r test_requirements.txt -U + +build: false + +test_script: + - behave --verbose diff --git a/behave.ini b/behave.ini new file mode 100644 index 0000000000..b7a1070aae --- /dev/null +++ b/behave.ini @@ -0,0 +1,9 @@ +[behave] + +# These commands force behave to display all output regardless of the outcome of the test +stderr_capture=False +stdout_capture=False + +# Single line print statements will not be shown even if output capture is off, +# to avoid that behaviour either add a new line at the end of the string ('\n') or disable color with: +# color=False diff --git a/docs/README.md b/docs/README.md new file mode 100644 index 0000000000..bb7b8855d3 --- /dev/null +++ b/docs/README.md @@ -0,0 +1,47 @@ +![Kedro Logo Banner](https://github.com/quantumblacklabs/kedro/blob/master/img/kedro_banner.jpg) + +# Kedro documentation style guide + +This is the style guide we have used to create [documentation about Kedro](https://kedro.readthedocs.io/en/latest/). + +When you are writing documentation for your own project, you may find it useful to follow these rules. We will also ask anyone kind enough to contribute to the Kedro documentation to follow our preferred style to maintain consistency and simplicity. However, we are not over-proscriptive and are happy to take contributions regardless, as long as you are happy if we edit your text to follow these rules. + +## Guidelines + +Please follow these simple rules: + +* Use [UK English](https://www.britishcouncilfoundation.id/en/english/articles/british-and-american-english) +* Use Markdown formatting. If you are unsure of this, here is a useful [Cheatsheet and sandbox](https://daringfireball.net/projects/markdown/dingus) +* Use sentence case in titles. We prefer this, _"Sentence case only has one capital except for names like Kedro"_ and not this, _"Title Case Means Capitalise Every Word"_ +* Mark code blocks with the appropriate language to enable [syntax highlighting](https://support.codebasehq.com/articles/tips-tricks/syntax-highlighting-in-markdown) +* We use a `bash` lexer for all codeblocks that represent the terminal, and we don't include the prompt +* Bullet points start with capitals and do not end with full-stops +* Prefer to use symbols for bullets instead of numbers unless you are specifically giving a sequence of instructions +* Keep your sentences short and easy to read +* Do not plagiarise other authors. Link to their text and credit them + +If you are in doubt, take a look at how we've written the Kedro documentation. If you are unsure of something, just do what you can in your documentation contribution, and note any queries. We can always iterate the submission with you when you create a pull request. + +## How do I build your documentation? + +If you have installed Kedro, the documentation can be found by running `kedro docs` from the command line or following [this link](https://kedro.readthedocs.io/en/latest/). + +If you make changes to our documentation, which is stored in the `docs/` folder of your Kedro installation, you can rebuild them within a Unix-like environment (with `pandoc` installed) with: + +```bash +make build-docs +``` + +We use the [Sphinx](https://www.sphinx-doc.org) framework to build our documentation. The resulting HTML files can be found in `docs/build/html/`. + +If you are a Windows user, you can still contribute to the documentation, but you cannot rebuild it. This is fine! As long as you have made an effort to verify that your Markdown is rendering correctly, and you have followed our basic guidelines above, we will be happy to take your final draft as a pull request and rebuild it for you. + +## Can I contribute to Kedro documentation? + +Yes! If you want to fix or extend our documentation, you'd be welcome to do so. When you are ready to submit, please read the full guide to [contributing to Kedro](../CONTRIBUTING.md). + +Before you contribute any documentation, please do read the above rules for styling your Markdown. If there's something you think is missing or incorrect, and you'd like to get really meta and contribute to our style guide, please branch this file and submit a PR! + +## What licence do you use? + +Kedro is licensed under the [Apache 2.0](../LICENSE.md) License. diff --git a/docs/build-docs.sh b/docs/build-docs.sh new file mode 100755 index 0000000000..1415e305e2 --- /dev/null +++ b/docs/build-docs.sh @@ -0,0 +1,46 @@ +#!/usr/bin/env bash + +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +set -e + +rm -rf kedro/html +pip install -e ".[docs]" +pip install -r test_requirements.txt +python -m ipykernel install --user --name=kedro --display-name=Kedro +rm -rf docs/tmp-build-artifacts +cp -a docs/source docs/tmp-build-artifacts +mv docs/tmp-build-artifacts/05_api_docs/* docs/tmp-build-artifacts/ +rm -rf docs/tmp-build-artifacts/05_api_docs/ +sphinx-apidoc --module-first -o docs/tmp-build-artifacts kedro +rm -rf docs/build +mkdir -p docs/build/html/_static +cp -r docs/source/css docs/build/html/_static +sphinx-build docs/tmp-build-artifacts docs/build/html -c docs/ -E -a +rm -rf docs/tmp-build-artifacts diff --git a/docs/conf.py b/docs/conf.py new file mode 100644 index 0000000000..69cad540af --- /dev/null +++ b/docs/conf.py @@ -0,0 +1,420 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- +# +# Kedro documentation build configuration file, created by +# sphinx-quickstart on Mon Dec 18 11:31:24 2017. +# +# This file is execfile()d with the current directory set to its +# containing dir. +# +# Note that not all possible configuration values are present in this +# autogenerated file. +# +# All configuration values have a default; values that are commented out +# serve to show the default. + +import importlib +import re +import sys +from inspect import getmembers, isclass, isfunction +from typing import List, Tuple + +from click import secho, style + +from kedro import __version__ as release +from recommonmark.transform import AutoStructify + +# -- Project information ----------------------------------------------------- + +project = "Kedro" +copyright = "2018-2019, QuantumBlack Visual Analytics Limited" +author = "QuantumBlack" + +# The short X.Y version. +version = re.match(r"^([0-9]+\.[0-9]+).*", release).group(1) + +# -- General configuration --------------------------------------------------- + +# If your documentation needs a minimal Sphinx version, state it here. +# +# needs_sphinx = '1.0' + +# Add any Sphinx extension module names here, as strings. They can be +# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom +# ones. +extensions = [ + "sphinx.ext.autodoc", + "sphinx.ext.autosummary", + "sphinx.ext.napoleon", + "sphinx_autodoc_typehints", + "sphinx.ext.doctest", + "sphinx.ext.todo", + "sphinx.ext.coverage", + "sphinx.ext.mathjax", + "sphinx.ext.ifconfig", + "sphinx.ext.viewcode", + "nbsphinx", + "recommonmark", + "sphinx_copybutton", +] + +# enable autosummary plugin (table of contents for modules/classes/class +# methods) +autosummary_generate = True + +# Add any paths that contain templates here, relative to this directory. +templates_path = ["_templates"] + +# The suffix(es) of source filenames. +# You can specify multiple suffix as a list of string: +# +source_suffix = {".rst": "restructuredtext", ".md": "markdown"} + +# The master toctree document. +master_doc = "index" + +# The language for content autogenerated by Sphinx. Refer to documentation +# for a list of supported languages. +# +# This is also used if you do content translation via gettext catalogs. +# Usually you set "language" from the command line for these cases. +language = None + +# List of patterns, relative to source directory, that match files and +# directories to ignore when looking for source files. +# This pattern also affects html_static_path and html_extra_path . +exclude_patterns = ["**cli*", "**.ipynb_checkpoints", "_templates", "modules.rst"] + +# The name of the Pygments (syntax highlighting) style to use. +pygments_style = "sphinx" + +# -- Options for HTML output ------------------------------------------------- + +# The theme to use for HTML and HTML Help pages. See the documentation for +# a list of builtin themes. +# +html_theme = "sphinx_rtd_theme" + +# Theme options are theme-specific and customize the look and feel of a theme +# further. For a list of options available for each theme, see the +# documentation. +# +html_theme_options = {"collapse_navigation": False, "style_external_links": True} + +# Add any paths that contain custom static files (such as style sheets) here, +# relative to this directory. They are copied after the builtin static files, +# so a file named "default.css" will overwrite the builtin "default.css". +# html_static_path = ['_static'] + +# Custom sidebar templates, must be a dictionary that maps document names +# to template names. +# +# The default sidebars (for documents that don't match any pattern) are +# defined by theme itself. Builtin themes are using these templates by +# default: ``['localtoc.html', 'relations.html', 'sourcelink.html', +# 'searchbox.html']``. +# +# html_sidebars = {} + +html_show_sourcelink = False + +# -- Options for HTMLHelp output --------------------------------------------- + +# Output file base name for HTML help builder. +htmlhelp_basename = "Kedrodoc" + +# -- Options for LaTeX output ------------------------------------------------ + +latex_elements = { + # The paper size ('letterpaper' or 'a4paper'). + # + # 'papersize': 'letterpaper', + # The font size ('10pt', '11pt' or '12pt'). + # + # 'pointsize': '10pt', + # Additional stuff for the LaTeX preamble. + # + # 'preamble': '', + # Latex figure (float) alignment + # + # 'figure_align': 'htbp', +} + +# Grouping the document tree into LaTeX files. List of tuples +# (source start file, target name, title, +# author, documentclass [howto, manual, or own class]). +latex_documents = [ + (master_doc, "Kedro.tex", "Kedro Documentation", "QuantumBlack", "manual") +] + +# -- Options for manual page output ------------------------------------------ + +# One entry per manual page. List of tuples +# (source start file, name, description, authors, manual section). +man_pages = [(master_doc, "kedro", "Kedro Documentation", [author], 1)] + +# -- Options for Texinfo output ---------------------------------------------- + +# Grouping the document tree into Texinfo files. List of tuples +# (source start file, target name, title, author, +# dir menu entry, description, category) +texinfo_documents = [ + ( + master_doc, + "Kedro", + "Kedro Documentation", + author, + "Kedro", + "Kedro is a Data Science framework for QuantumBlack-led projects.", + "Data-Science", + ) +] + +# -- Options for todo extension ---------------------------------------------- + +# If true, `todo` and `todoList` produce output, else they produce nothing. +todo_include_todos = False + +# -- Extension configuration ------------------------------------------------- + +# nbsphinx_prolog = """ +# see here for prolog/epilog details: +# https://nbsphinx.readthedocs.io/en/0.3.1/prolog-and-epilog.html +# """ + +nbsphinx_epilog = """ +.. note:: + + Found a bug, or didn't find what you were looking for? 🙏 `Please file a + ticket <https://github.com/quantumblacklabs/kedro/issues/new/choose>`_ +""" + +# -- NBconvert kedro config ------------------------------------------------- +nbsphinx_kedro_name = "kedro" + +# -- Kedro specific configuration ----------------------------------------- +KEDRO_MODULES = [ + "kedro.io", + "kedro.pipeline", + "kedro.runner", + "kedro.config", + "kedro.contrib.io", + "kedro.contrib.colors.logging", + "kedro.contrib.decorators", +] + + +def get_classes(module): + importlib.import_module(module) + return [obj[0] for obj in getmembers(sys.modules[module], lambda obj: isclass(obj))] + + +def get_functions(module): + importlib.import_module(module) + return [ + obj[0] for obj in getmembers(sys.modules[module], lambda obj: isfunction(obj)) + ] + + +def remove_arrows_in_examples(lines): + for i, line in enumerate(lines): + lines[i] = line.replace(">>>", "") + + +def autolink_replacements(what: str) -> List[Tuple[str, str, str]]: + """ + Create a list containing replacement tuples of the form: + (``regex``, ``replacement``, ``obj``) for all classes and methods which are + imported in ``KEDRO_MODULES`` ``__init__.py`` files. The ``replacement`` + is a reStructuredText link to their documentation. + + For example, if the docstring reads: + This LambdaDataSet loads and saves ... + + Then the word ``LambdaDataSet``, will be replaced by + :class:`~kedro.io.LambdaDataSet` + + Works for plural as well, e.g: + These ``LambdaDataSet``s load and save + + Will convert to: + These :class:`kedro.io.LambdaDataSet`\s load and save + + Args: + what: The objects to create replacement tuples for. Possible values + ["class", "func"]. + + Returns: + A list of tuples: (regex, replacement, obj), for all "what" objects + imported in __init__.py files of ``KEDRO_MODULES``. + + """ + replacements = [] + suggestions = [] + for module in KEDRO_MODULES: + if what == "class": + objects = get_classes(module) + elif what == "func": + objects = get_functions(module) + + # Look for recognised class names/function names which are + # surrounded by double back-ticks + if what == "class": + # first do plural only for classes + replacements += [ + ( + r"``{}``s".format(obj), + ":{}:`~{}.{}`\\\\s".format(what, module, obj), + obj, + ) + for obj in objects + ] + + # singular + replacements += [ + (r"``{}``".format(obj), ":{}:`~{}.{}`".format(what, module, obj), obj) + for obj in objects + ] + + # Look for recognised class names/function names which are NOT + # surrounded by double back-ticks, so that we can log these in the + # terminal + if what == "class": + # first do plural only for classes + suggestions += [ + (r"(?<!\w|`){}s(?!\w|`{{2}})".format(obj), "``{}``s".format(obj), obj) + for obj in objects + ] + + # then singular + suggestions += [ + (r"(?<!\w|`){}(?!\w|`{{2}})".format(obj), "``{}``".format(obj), obj) + for obj in objects + ] + + return replacements, suggestions + + +def log_suggestions(lines: List[str], name: str): + """Use the ``suggestions`` list to log in the terminal places where the + developer has forgotten to surround with double back-ticks class + name/function name references. + + Args: + lines: The docstring lines. + name: The name of the object whose docstring is contained in lines. + """ + title_printed = False + + for i in range(len(lines)): + if ">>>" in lines[i]: + continue + + for existing, replacement, obj in suggestions: + new = re.sub(existing, r"{}".format(replacement), lines[i]) + if new == lines[i]: + continue + if ":rtype:" in lines[i] or ":type " in lines[i]: + continue + + if not title_printed: + secho("-" * 50 + "\n" + name + ":\n" + "-" * 50, fg="blue") + title_printed = True + + print( + "[" + + str(i) + + "] " + + re.sub(existing, r"{}".format(style(obj, fg="magenta")), lines[i]) + ) + print( + "[" + + str(i) + + "] " + + re.sub(existing, r"``{}``".format(style(obj, fg="green")), lines[i]) + ) + + if title_printed: + print("\n") + + +def autolink_classes_and_methods(lines): + for i in range(len(lines)): + if ">>>" in lines[i]: + continue + + for existing, replacement, obj in replacements: + lines[i] = re.sub(existing, r"{}".format(replacement), lines[i]) + + +def autodoc_process_docstring(app, what, name, obj, options, lines): + try: + # guarded method to make sure build never fails + log_suggestions(lines, name) + autolink_classes_and_methods(lines) + except Exception as e: + print( + style( + "Failed to check for class name mentions that can be " + "converted to reStructuredText links in docstring of {}. " + "Error is: \n{}".format(name, str(e)), + fg="red", + ) + ) + + remove_arrows_in_examples(lines) + + +def skip(app, what, name, obj, skip, options): + if name == "__init__": + return False + return skip + + +def setup(app): + app.connect("autodoc-process-docstring", autodoc_process_docstring) + app.connect("autodoc-skip-member", skip) + app.add_stylesheet("css/qb1-sphinx-rtd.css") + # fix a bug with table wraps in Read the Docs Sphinx theme: + # https://rackerlabs.github.io/docs-rackspace/tools/rtd-tables.html + app.add_stylesheet("css/theme-overrides.css") + # add "Copy" button to code snippets + app.add_stylesheet("css/copybutton.css") + # enable rendering RST tables in Markdown + app.add_config_value("recommonmark_config", {"enable_eval_rst": True}, True) + app.add_transform(AutoStructify) + + +def fix_module_paths(): + """ + This method fixes the module paths of all class/functions we import in the + __init__.py file of the various kedro submodules. + """ + for kedro_module in KEDRO_MODULES: + mod = importlib.import_module(kedro_module) + mod.__all__ = get_classes(kedro_module) + get_functions(kedro_module) + + +# (regex, restructuredText link replacement, object) list +replacements = [] + +# (regex, class/function name surrounded with back-ticks, object) list +suggestions = [] + +try: + # guarded code to make sure build never fails + replacements_f, suggestions_f = autolink_replacements("func") + replacements_c, suggestions_c = autolink_replacements("class") + replacements = replacements_f + replacements_c + suggestions = suggestions_f + suggestions_c +except Exception as e: + print( + style( + "Failed to create list of (regex, reStructuredText link " + "replacement) for class names and method names in docstrings. " + "Error is: \n{}".format(str(e)), + fg="red", + ) + ) + +fix_module_paths() diff --git a/docs/source/01_introduction/01_introduction.md b/docs/source/01_introduction/01_introduction.md new file mode 100644 index 0000000000..b1d604b608 --- /dev/null +++ b/docs/source/01_introduction/01_introduction.md @@ -0,0 +1,25 @@ +# Introduction + +## What is Kedro? + +Kedro is an open source development workflow tool that helps structure reproducible, scaleable, deployable, robust and versioned data pipelines. It is applicable to a wide range of projects, from single user projects running on a local environment, when you want to have an organised way of working, to enterprise-level team projects, when your team needs to work in a structured way and reduce the effort required to take machine learning models into the production environment. For the source code, take a look at the [Kedro repository on Github](https://github.com/quantumblacklabs/kedro). + +## Learning about Kedro + +In the next few chapters, you will learn how to [install](../02_getting_started/01_prerequisites.md) and set up Kedro to build your own production-ready data pipelines. + +Once you are set up, to get a feel for Kedro, we suggest working through our examples, including an entry-level ["Hello World"](../02_getting_started/04_hello_world.md) and a more detailed [Spaceflights](../03_tutorial/02_tutorial_template.md) tutorial. You will get hands-on experience and learn the basics of Kedro. + +Advanced users looking for in-depth information should consult the [User Guide](../04_user_guide/03_configuration.md). + +You can also check out the resources section for answers to [frequently asked questions](../06_resources/01_faq.md) and the [API reference documentation](/kedro.rst) to find further information. + +## Assumptions + +We have designed the documentation in general, and the tutorial in particular, for beginners to get started creating their own Kedro projects in Python. If you have elementary knowledge using Python then you might find the Kedro learning curve more challenging. However, we have simplified the tutorial by providing all Python functions required to create your data pipelines. + +> +> *Note:* There are a number of excellent online resources for learning Python, but be aware that you should choose those that reference Python 3, as Kedro is built for Python 3.5+. There are many curated lists of online resources, such as: +> +> - [Official Python programming language website](https://www.python.org/) +> - [List of free programming books and tutorials](https://github.com/EbookFoundation/free-programming-books/blob/master/free-programming-books.md#python) diff --git a/docs/source/02_getting_started/01_prerequisites.md b/docs/source/02_getting_started/01_prerequisites.md new file mode 100644 index 0000000000..f77e8d6bb4 --- /dev/null +++ b/docs/source/02_getting_started/01_prerequisites.md @@ -0,0 +1,63 @@ +# Installation prerequisites + +Kedro supports macOS, Linux and Windows (7 / 8 / 10 and Windows Server 2016+). If you encounter any problems on these platforms, please check the [FAQ](../06_resources/01_faq.md), and / or the Kedro community support on [Stack Overflow](https://stackoverflow.com/questions/tagged/kedro). + +### macOS / Linux + +In order to work effectively with Kedro projects, we highly recommend you download and install [Anaconda](https://www.anaconda.com/download/#macos) (Python 3.x version) and [Java](https://www.oracle.com/technetwork/java/javase/downloads/index.html) (if using PySpark). + +### Windows + +You will require admin rights to complete the installation of the following tools on your machine: + +* [Anaconda](https://www.anaconda.com/download/#windows) (Python 3.x version) +* [Java](https://www.oracle.com/technetwork/java/javase/downloads/index.html) (if using PySpark) + +## Python virtual environments + +Python's virtual environments can be used to isolate the dependencies of different individual projects, avoiding Python version conflicts. They also prevent permission issues for non-administrator users. +For more information, please refer to this [guide](https://docs.conda.io/projects/conda/en/latest/user-guide/tasks/manage-environments.html). + +### Using `conda` + +We recommend creating your virtual environment using [`conda`](https://conda.io/docs/), a package and environment manager program bundled with Anaconda. + +#### Create an environment with `conda` + +Use [`conda create`](https://conda.io/docs/user-guide/tasks/manage-environments.html#id1) to create a python 3.6 environment called `environment_name` by running: + +```bash +conda create --name environment_name python=3.6 +``` + +#### Activate an environment with `conda` + +Use [`conda activate`](https://conda.io/docs/user-guide/tasks/manage-environments.html#activating-an-environment) to activate an environment called `environment_name` by running: + +```bash +conda activate environment_name +``` + +When you want to deactivate the environment you are using with Kedro, you can use [`conda deactivate`](https://conda.io/docs/user-guide/tasks/manage-environments.html#id6): + +```bash +conda deactivate +``` + +#### Other `conda` commands + +To list all existing `conda` environments: + +```bash +conda env list +``` + +To delete an environment: + +```bash +conda remove --name environment_name --all +``` + +### Alternatives to `conda` + +If you prefer an alternative environment manager such as [`venv`](https://docs.python.org/3/library/venv.html), [`pyenv`](https://github.com/pyenv/pyenv), etc, please read their respective documentation. diff --git a/docs/source/02_getting_started/02_install.md b/docs/source/02_getting_started/02_install.md new file mode 100644 index 0000000000..e8db143d4c --- /dev/null +++ b/docs/source/02_getting_started/02_install.md @@ -0,0 +1,22 @@ +## Installation guide + +We recommend installing Kedro in a new virtual environment for *each* of your projects. To install Kedro: + +```bash +pip install kedro +``` + +To check that Kedro is installed: + +```bash +kedro info +``` + +You should see an ASCII art graphic and the Kedro version number. For example: + +![](images/kedro_graphic.png) + +If you do not see the graphic displayed, or have any issues with your installation, see the [FAQs](../06_resources/01_faq.md) for help. + + + diff --git a/docs/source/02_getting_started/03_new_project.md b/docs/source/02_getting_started/03_new_project.md new file mode 100644 index 0000000000..3ae405a07d --- /dev/null +++ b/docs/source/02_getting_started/03_new_project.md @@ -0,0 +1,59 @@ +# Creating a new project + +We recommend that you create projects according to the Kedro default project template, which is ideal for analytics projects and comes with a default folder structure for storing datasets, folders for notebooks, configuration and source code. + +Projects can be created interactively or by referencing a configuration file. + +## Create a new project interactively +First, select the directory in which you want to work, and if you are using `conda`, make sure you have the [correct environment](../02_getting_started/01_prerequisites.md#Python-virtual-environments) activated: + +```bash +conda activate environment_name +``` +You are then ready to create a new project: + +```bash +kedro new +``` + +You will need to provide the following variables: + +* `project_name` - A human readable name for your new project +* `repo_name` - A name for the directory that holds your project repository +* `python_package` - A Python package name for your project package (see [Python package naming conventions](https://www.python.org/dev/peps/pep-0008/#package-and-module-names)) +* `include_example` - An affirmative for whether you want to include example code + +`kedro new` will create a new project in your current working directory (`<current_dir>/<repo_name>/`). If you entered `Y` to include an example then your new project template contains a small example to get you going. See the [Hello World example](../02_getting_started/04_hello_world.md) for further details. + + +## Create a new project from a configuration file + +You can also create a new project from a configuration file by running: + +```bash +kedro new --config config.yml +``` + +The configuration file (`config.yml`) must contain the `project_name`, `repo_name`, `python_package` and `include_example` (Boolean value) variables as described [above](../02_getting_started/03_new_project.md#Create-a-new-project-interactively) as well as `output_dir` - path to the directory where the project folder will be created. + +Here is an example `config.yml`, which assumes that a directory named `~/code` already exists: + +```yaml +output_dir: ~/code +project_name: Getting Started +repo_name: getting-started +python_package: getting_started +include_example: true +``` + +`output_dir` can be set to `~` for home directory, or `.` for the current working directory. + +## Starting with an existing project + +If you want to work with a Kedro project that has already been created, you may use `git clone` to directly clone it. You don’t need to create a new Kedro project. + +To make sure you have the required dependencies, run (in your virtual environment): + +```bash +pip install -r src/requirements.txt +``` diff --git a/docs/source/02_getting_started/04_hello_world.md b/docs/source/02_getting_started/04_hello_world.md new file mode 100644 index 0000000000..5df4bfe02a --- /dev/null +++ b/docs/source/02_getting_started/04_hello_world.md @@ -0,0 +1,159 @@ +# A "Hello World" example + +To learn how basic Kedro projects work, you can [create a project interactively](./03_new_project.md#create-a-new-project-interactively) and explore it as you read this section. Feel free to name your project as you like, but this guide will assume the project is named `getting-started`. + +Be sure to enter `Y` to include Kedro's example so your new project template contains the well-known [Iris dataset](https://archive.ics.uci.edu/ml/datasets/iris), to get you started. + +The Iris dataset, generated in 1936 by the British statistician and biologist Ronald Fisher, is a simple, but frequently-referenced dataset. It contains 150 samples in total, comprising 50 samples of 3 different species of Iris plant (Iris Setosa, Iris Versicolour and Iris Virginica). For each sample, the flower measurements are recorded for the sepal length, sepal width, petal length and petal width. + +![](images/iris_measurements.png) + +Classification is a method, within the context of machine learning, to determine what group some object belongs to based on known categorisation of similar objects. + +The Iris dataset can be used by a machine learning model to illustrate classification. The classification algorithm, once trained on data with known values of species, takes an input of sepal and petal measurements, and compares them to the values it has stored from its training data. It will then output a predictive classification of the Iris species. + + +## Project directory structure + +The project directory will be structured as shown. You are free to adapt the folder structure to your project's needs, but the example shows a convenient starting point and some best-practices: + +``` +getting-started # Parent directory of the template +├── .gitignore # Prevent staging of unnecessary files to git +├── kedro_cli.py # A collection of Kedro command line interface (CLI) commands +├── README.md # Project README +├── .ipython # IPython startup scripts +├── conf # Project configuration files +├── data # Local project data (not committed to version control) +├── docs # Project documentation +├── logs # Project output logs (not committed to version control) +├── notebooks # Project related Jupyter notebooks +├── references # Sharable project references (tables, pdfs, etc.) +├── results # Shareable results +└── src # Project source code +``` + +If you opted to include Kedro's built-in example when you [created the project](./03_new_project.md) then the `conf/`, `data/` and `src/` directories will be pre-populated with an example configuration, input data and Python source code respectively. + +## Project source code + +The project's source code can be found in the `src` directory. It contains 2 subfolders: + +* `getting_started/` - this is the Python package for your project: + + * `nodes/example.py` - Example node functions, which perform the actual operations on the data (more on this in the [Example pipeline](04_hello_world.md#example-pipeline) below) + * `pipeline.py` - Where the pipeline is created from the above nodes to form the business logic flow + * `run.py` - The main entry point of the project, which brings all the components together and runs the pipeline + +* `tests/`: This is where you should keep the project unit tests. Newly generated projects are preconfigured to run these tests using `pytest`. To kick off project testing, simply run the following from the project's root directory: + +```bash +kedro test +``` + +### Writing code + +Use the `notebooks` folder for experimental code and move the code to `src/` as it develops. + +## Project components + +A `kedro` project consists of the following main components: + +```eval_rst ++--------------+----------------------------------------------------------------------+ +| Component | Description | ++==============+======================================================================+ +| Data Catalog | A collection of datasets that can be used to form the data pipeline. | +| | Each dataset provides :code:`load` and :code:`save` capabilities for | +| | a specific data type, e.g. :code:`CSVS3DataSet` loads and saves data | +| | to a csv file in S3. | ++--------------+----------------------------------------------------------------------+ +| Pipeline | A collection of nodes. A pipeline takes care of node dependencies | +| | and execution order. | ++--------------+----------------------------------------------------------------------+ +| Node | A Python function which executes some business logic, e.g. data | +| | cleaning, dropping columns, validation, model training, scoring, etc.| ++--------------+----------------------------------------------------------------------+ +| Runner | An object that runs the :code:`kedro` pipeline using the specified | +| | data catalog. Currently :code:`kedro` supports 2 runner types: | +| | :code:`SequentialRunner` and :code:`ParallelRunner`. | ++--------------+----------------------------------------------------------------------+ +``` + + +## Data + +You can store data under the appropriate layer in the `data` folder. We recommend that all raw data should go into `raw` and processed data should move to other layers according to [data engineering convention](../06_resources/01_faq.md#what-is-data-engineering-convention). + +## Example pipeline + +The `getting-started` project contains a pipeline with example node functions, which can be found in `src/getting_started/nodes/example.py`. The following nodes are provided: + +```eval_rst ++-----------------+----------------------------------------------------------------+--------------------------+ +| Node | Description | Node Function Name | ++=================+================================================================+==========================+ +| Split data | Splits the example | :code:`split_data` | +| | `Iris dataset <https://archive.ics.uci.edu/ml/datasets/iris>`_ | | +| | into train and test samples | | ++-----------------+----------------------------------------------------------------+--------------------------+ +| Train model | Trains a simple multi-class logistic regression model | :code:`train_model` | ++-----------------+----------------------------------------------------------------+--------------------------+ +| Predict | Makes class predictions given a pre-trained model and a test | :code:`predict` | +| | set | | ++-----------------+----------------------------------------------------------------+--------------------------+ +| Report accuracy | Reports the accuracy of the predictions performed by the | :code:`report_accuracy` | +| | previous node | | ++-----------------+----------------------------------------------------------------+--------------------------+ +``` + +Node execution order is determined by resolving the input and output data dependencies between the nodes and *not* by the order in which the nodes were passed into the pipeline. + +## Configuration + +There are two default folders for adding configuration - `conf/base/` and `conf/local/`: + +* `conf/base/` - Used for project-specific configuration +* `conf/local/` - Used for access credentials, personal IDE configuration or other sensitive / personal content + +### Project-specific configuration + +There are three files used for project-specific configuration: + +* `catalog.yml` - The Data Catalog allows you to define the file paths and loading / saving configuration required for different datasets +* `logging.yml` - Uses Python's default [`logging`](https://docs.python.org/3/library/logging.html) library to set up logging +* `parameters.yml` - Allows you to define parameters for machine learning experiments e.g. train / test split and number of iterations + +### Sensitive or personal configuration + +As we described above, any access credentials, personal IDE configuration or other sensitive and personal content should be stored in `conf/local/`. By default, `credentials.yml` is generated in `conf/base/` (because `conf/local/` is ignored by `git`) and to populate and use the file, you should first move it to `conf/local/`. Further safeguards for preventing sensitive information from being leaked onto `git` are discussed in the [FAQs](../06_resources/01_faq.md#what-best-practice-should-i-follow-to-avoid-leaking-confidential-data). + + +## Running the example + +In order to run the `getting-started` project, simply execute the following from the root project directory: + +```bash +kedro run +``` + +This command calls the `main()` function from `src/getting_started/run.py`, which in turn does the following: + +1. Initiates the context: + * Reads relevant configuration + * Configures Python `logging` + * Instantiates the `DataCatalog` and feeds a dictionary containing `parameters` config +2. Instantiates the pipeline +3. Instantiates the `SequentialRunner` and runs it by passing the following arguments: + * `Pipeline` object + * `DataCatalog` object + +Upon successful completion, you should see the following log message in your console: + +``` +2019-02-13 16:59:26,293 - kedro.runner.sequential_runner - INFO - Completed 4 out of 4 tasks +2019-02-13 16:59:26,293 - kedro.runner.sequential_runner - INFO - Pipeline execution completed successfully. +``` + +## Summary +Congratulations! In this chapter you have set up Kedro and used it to create a first example project, which has illustrated the basic concepts of using nodes to form a pipeline, a Data Catalog and the project configuration. This example uses a simple and familiar dataset, to keep your first experience very basic and easy to follow. In the next chapter, we will revisit the core concepts in more detail and walk through a more complex example. diff --git a/docs/source/02_getting_started/images/iris_measurements.png b/docs/source/02_getting_started/images/iris_measurements.png new file mode 100644 index 0000000000..09d72c6529 Binary files /dev/null and b/docs/source/02_getting_started/images/iris_measurements.png differ diff --git a/docs/source/02_getting_started/images/kedro_graphic.png b/docs/source/02_getting_started/images/kedro_graphic.png new file mode 100644 index 0000000000..0cbdd7d67c Binary files /dev/null and b/docs/source/02_getting_started/images/kedro_graphic.png differ diff --git a/docs/source/03_tutorial/01_workflow.md b/docs/source/03_tutorial/01_workflow.md new file mode 100644 index 0000000000..178d30f589 --- /dev/null +++ b/docs/source/03_tutorial/01_workflow.md @@ -0,0 +1,72 @@ +# Typical Kedro workflow + +## Development workflow +When building a Kedro project, you will typically follow a standard development workflow: + +![](img/typical_workflow.png) + +### 1. Set up the project template + +* Create a new project with `kedro new` +* Configure the following in the `conf` folder: + * Logging + * Credentials + * Any other sensitive / personal content + +### 2. Set up the data + +* Add data to the `data/` folder +* Reference all datasets for the project in `conf/base/catalog.yml` + +### 3. Create the pipeline + +* Create the data transformation steps as [pure](https://en.wikipedia.org/wiki/Pure_function) Python functions +* Construct the pipeline by adding your functions as nodes + - Specify inputs and outputs for each node +* Choose how to run the pipeline: sequentially or in parallel + +### 4. Package the project + + * Build the project documentation + * Package project into [Python wheels](https://pythonwheels.com/) or eggs for distribution + +## Git workflow + +### Creating a project repository + +Kedro doesn't require `git` and can work without any source control management system. However, we recommend keeping your work in a `git` repository. As a start you can follow one of the most popular git workflows known as [Gitflow](https://www.atlassian.com/git/tutorials/comparing-workflows/gitflow-workflow). + +To use `git`, if you don't have a local repository for your project already, create it with these commands: + +```bash +git init +git remote add origin https://github.com/<your-repo> +``` + +> Note: These commands must be issued from within the project directory. + +### Submitting your changes to GitHub + +As you work on a project, you will periodically want to save your changes. If you are working as part of a team, we suggest developing your code on a branch and creating pull requests to submit it to your `develop` or `master` branch: + +```bash +# create a new feature branch called 'feature-project-template' +git checkout -b feature/project-template +# stage all the files you have changed +git add . +# commit changes to git with an instructive message +git commit -m 'Create project template' +# push changes to remote branch +git push origin feature/project-template +``` + +It isn't necessary to branch, but if everyone in a team works on the same branch (e.g. `master`), you may have to resolve merge conflicts more often. Here is an example of working directly on `master`: + +```bash +# stage all files +git add . +# commit changes to git with an instructive message +git commit -m 'Create project template' +# push changes to remote master +git push origin master +``` diff --git a/docs/source/03_tutorial/02_tutorial_template.md b/docs/source/03_tutorial/02_tutorial_template.md new file mode 100644 index 0000000000..de2b35ebe3 --- /dev/null +++ b/docs/source/03_tutorial/02_tutorial_template.md @@ -0,0 +1,22 @@ +# Kedro Spaceflights tutorial + +In this tutorial, we will follow the [Kedro workflow](./01_workflow.md#development-workflow) and walk you through the steps necessary to convert an empty template into a working project. Our project will be based on the following scenario: + +> _It is 2160 and the space tourism industry is booming. Globally, there are thousands of space shuttle companies taking tourists to the Moon and back. You have been able to source amenities offered in each space shuttle, customer reviews and company information. You want to construct a model for predicting the price for each trip to the Moon and the corresponding return flight._ + + +## Creating the tutorial project + +Run `kedro new` from your chosen working directory to create an empty template project, following the interactive prompts to set the project's name, repository / folder name and Python package name, [as previously described](../02_getting_started/03_new_project.md). + +Call the project **`Kedro Tutorial`** and keep the default naming by pressing enter when prompted. Choose `N` to create a project template _without_ the Iris dataset example. Alternatively, you can create a new project from a [configuration file](../02_getting_started/03_new_project.md#create-a-new-project-from-a-configuration-file). + +### Project configuration + +The project template has a default configuration, but you should reconfigure it as follows: + +* Move `credentials.yml` from `conf/base/` to `conf/local/` + - To do this in the terminal, type the following from within the project's root directory: `mv ./conf/base/credentials.yml ./conf/local/`. +* [optional] Add in any credentials to `conf/local/credentials.yml` that you would need to load specific data sources like usernames and passwords. Some examples are given within the file to illustrate how you store credentials. +* [optional] Set up local configuration. Additional information can be found in the section on [configuration](../04_user_guide/03_configuration.md) in the user guide. +* [optional] Set up [logging](../04_user_guide/06_logging.md). diff --git a/docs/source/03_tutorial/03_set_up_data.md b/docs/source/03_tutorial/03_set_up_data.md new file mode 100644 index 0000000000..1403b7831b --- /dev/null +++ b/docs/source/03_tutorial/03_set_up_data.md @@ -0,0 +1,188 @@ +# Setting up the data + +Kedro uses configuration to make your code reproducible when it has to reference datasets in different locations and / or in different environments. In this section of the tutorial we will describe the following: + +* Adding datasets to your `data/` folder, according to [data engineering convention](../06_resources/01_faq.md#what-is-data-engineering-convention) +* Using the Data Catalog as a registry of all data sources available for use by the project `conf/base/catalog.yml` + +For further information about the Data Catalog, please see the [User Guide](../04_user_guide/04_data_catalog.md). + + +## Adding your datasets to `data` + +This tutorial will make use of fictional datasets for spaceflight companies shuttling customers to the Moon and back. You will use the data to train a model to predict the price of shuttle hire. However, before you get to train the model, you will need to prepare the data by doing some data engineering, which is the process of preparing data for model building by creating a master table. + +The spaceflight tutorial has three files and uses two data formats: `.csv` and `.xlsx`. Download and save the files to the `data/01_raw/` folder of your project directory: + +* [reviews.csv](https://github.com/quantumblacklabs/kedro/tree/develop/docs/source/03_tutorial/data/reviews.csv) +* [companies.csv](https://github.com/quantumblacklabs/kedro/tree/develop/docs/source/03_tutorial/data/companies.csv) +* [shuttles.xlsx](https://github.com/quantumblacklabs/kedro/tree/develop/docs/source/03_tutorial/data/shuttles.xlsx) + + +## Reference all datasets + +To work with the datasets provided you need to make sure they can be loaded by Kedro. + +All Kedro projects have a `conf/base/catalog.yml` file where users register the datasets they use. Registering a dataset is as simple as adding a named entry into the `.yml` file, which includes: + +* File location (path) +* Parameters for the given dataset +* Type of data +* Versioning + +Kedro supports a number of different data types, such as `csv`, which is implemented by `CSVLocalDataSet`. The full list of supported datasets can be found in the [API documentation](../kedro.io.rst#data-sets). + +Let’s start this process by registering the `csv` datasets by copying the following to the end of the `catalog.yml` file: + +```yaml +companies: + type: CSVLocalDataSet + filepath: data/01_raw/companies.csv + +reviews: + type: CSVLocalDataSet + filepath: data/01_raw/reviews.csv +``` + +If you want to check whether Kedro loads the data correctly, open a `kedro ipython` session and run: + +```python +io.load('companies').head() +``` + +This should show you the first five rows of the dataset. If you want to explore more of it before moving on with the project: + +```python +df = io.load('companies') +``` + +The entire `companies` dataset is loaded into a `pandas` DataFrame and you can play with it as you wish. + +When you have finished, simply close `ipython` session by typing the following: + +```python +exit() +``` + + +## Creating custom datasets + +Often, real world data is stored in formats that are not supported by Kedro. We will illustrate this with `shuttles.xlsx`. In fact, Kedro has built-in support for Microsoft Excel files, but we will take the opportunity to demonstrate how to use Kedro to implement support for custom data formats. + +Let’s create a custom dataset implementation which will allow you to load and save `.xlsx` files. + +To keep your code well-structured you should create a Python sub-package called **`kedro_tutorial.io`**. You can do that by running this in your terminal: + +```bash +mkdir -p src/kedro_tutorial/io && touch src/kedro_tutorial/io/__init__.py +``` + +Creating new custom dataset implementations is done by creating a class that extends and implements all methods from `AbstractDataSet`. To implement a class that will allow you to load and save Excel files, you need to create the file `src/kedro_tutorial/io/xls_local.py` and paste the following into it: + +```python +"""ExcelLocalDataSet loads and saves data to a local Excel file. The +underlying functionality is supported by pandas, so it supports all +allowed pandas options for loading and saving Excel files. +""" +from os.path import isfile +from typing import Any, Union, Dict + +import pandas as pd + +from kedro.io import AbstractDataSet, ExistsMixin + +class ExcelLocalDataSet(AbstractDataSet, ExistsMixin): + """``ExcelLocalDataSet`` loads and saves data to a local Excel file. The + underlying functionality is supported by pandas, so it supports all + allowed pandas options for loading and saving Excel files. + + Example: + :: + >>> import pandas as pd + >>> + >>> data = pd.DataFrame({'col1': [1, 2], 'col2': [4, 5], + >>> 'col3': [5, 6]}) + >>> data_set = ExcelLocalDataSet(filepath="test.xlsx", + >>> load_args={'sheet_name':"Sheet1"}, + >>> save_args=None) + >>> data_set.save(data) + >>> reloaded = data_set.load() + >>> + >>> assert data.equals(reloaded) + + """ + + def _describe(self) -> Dict[str, Any]: + return dict(filepath=self._filepath, + engine=self._engine, + load_args=self._load_args, + save_args=self._save_args) + + def __init__( + self, + filepath: str, + engine: str = "xlsxwriter", + load_args: Dict[str, Any] = None, + save_args: Dict[str, Any] = None, + ) -> None: + """Creates a new instance of ``ExcelLocalDataSet`` pointing to a concrete + filepath. + + Args: + engine: The engine used to write to excel files. The default + engine is 'xlswriter'. + + filepath: path to an Excel file. + + load_args: Pandas options for loading Excel files. + Here you can find all available arguments: + https://pandas.pydata.org/pandas-docs/stable/generated/pandas.read_excel.html + The default_load_arg engine is 'xlrd', all others preserved. + + save_args: Pandas options for saving Excel files. + Here you can find all available arguments: + https://pandas.pydata.org/pandas-docs/stable/generated/pandas.DataFrame.to_excel.html + All defaults are preserved. + + """ + self._filepath = filepath + default_save_args = {} + default_load_args = {"engine": "xlrd"} + + self._load_args = {**default_load_args, **load_args} \ + if load_args is not None else default_load_args + self._save_args = {**default_save_args, **save_args} \ + if save_args is not None else default_save_args + self._engine = engine + + def _load(self) -> Union[pd.DataFrame, Dict[str, pd.DataFrame]]: + return pd.read_excel(self._filepath, **self._load_args) + + def _save(self, data: pd.DataFrame) -> None: + writer = pd.ExcelWriter(self._filepath, engine=self._engine) + data.to_excel(writer, **self._save_args) + writer.save() + + def _exists(self) -> bool: + return isfile(self._filepath) +``` + +And update the `catalog.yml` file by adding the following: + +```yaml +shuttles: + type: kedro_tutorial.io.xls_local.ExcelLocalDataSet + filepath: data/01_raw/shuttles.xlsx +``` + +> *Note:* The `type` specified is `kedro_tutorial.io.xls_local.ExcelLocalDataSet` which points Kedro to use the custom dataset implementation. To use Kedro's internal support for reading Excel datasets, you can simply specify `ExcelLocalDataSet`, which is implemented as in the code above. + +A good way to test that everything works as expected is by trying to load the dataset within a new `kedro ipython` session: + +```python +io.load('shuttles').head() +``` + +### Contributing a custom dataset implementation + +Kedro users create many custom dataset implementations while working on real-world projects, and it makes sense that they should be able to share their work with each other. That is why Kedro has a `kedro.contrib` sub-package, where users can add new custom dataset implementations to help others in our community. Sharing your custom datasets implementations is possibly the easiest way to contribute back to Kedro and if you are interested in doing so, you can check out the Kedro contribution guide on the [GitHub repo](https://github.com/quantumblacklabs/kedro). diff --git a/docs/source/03_tutorial/04_create_pipelines.md b/docs/source/03_tutorial/04_create_pipelines.md new file mode 100644 index 0000000000..0b2dd98391 --- /dev/null +++ b/docs/source/03_tutorial/04_create_pipelines.md @@ -0,0 +1,716 @@ +# Creating a pipeline + +This section covers how to create a pipeline from a set of `node`s, which are Python functions, as described in more detail in the [nodes and pipelines user guide](../04_user_guide/05_nodes_and_pipelines.md) documentation. + +1. As you draft experimental code, you can use a [Jupyter Notebook](./04_create_pipelines.md#working-with-kedro-projects-from-jupyter) or [IPython session](../06_resources/03_ipython.md#working-with-kedro-and-ipython). If you include [`docstrings`](https://google.github.io/styleguide/pyguide.html#38-comments-and-docstrings) to explain what your functions do, you can take advantage of [auto-generated Sphinx documentation](http://www.sphinx-doc.org/en/master/) later on. Once you are happy with how you have written your `node` functions, you will copy & paste the code into the `src/kedro_tutorial/nodes/` folder as a `.py` file. +2. When you are ready with a node you should add it to the pipeline in `src/kedro_tutorial/pipeline.py`, specifying its inputs and outputs. +3. Finally, you will choose how you would like to run your pipeline: sequentially or in parallel, by specifying your preference in `src/kedro_tutorial/run.py`. + + +## Node basics + +You previously registered the raw datasets for your Kedro project, so you can now start processing the data and preparing it for model building. Let’s pre-process two of the datasets ([companies.csv](https://github.com/quantumblacklabs/kedro/tree/develop/docs/source/03_tutorial/data/companies.csv) and [shuttles.xlsx](https://github.com/quantumblacklabs/kedro/tree/develop/docs/source/03_tutorial/data/shuttles.xlsx)) by creating Python functions for each. + +Create a file called `data_engineering.py` inside your `nodes` folder and add the following functions: + +```python +import pandas as pd + + +def _is_true(x): + return x == "t" + + +def _parse_percentage(x): + if isinstance(x, str): + return float(x.replace("%", "")) / 100 + return float("NaN") + + +def _parse_money(x): + return float(x.replace("$", "").replace(",", "")) + + +def preprocess_companies(companies: pd.DataFrame) -> pd.DataFrame: + """Preprocess the data for companies. + + Args: + companies: Source data. + Returns: + Preprocessed data. + + """ + + companies["iata_approved"] = companies["iata_approved"].apply(_is_true) + + companies["company_rating"] = companies["company_rating"].apply(_parse_percentage) + + return companies + + +def preprocess_shuttles(shuttles: pd.DataFrame) -> pd.DataFrame: + """Preprocess the data for shuttles. + + Args: + shuttles: Source data. + Returns: + Preprocessed data. + + """ + shuttles["d_check_complete"] = shuttles["d_check_complete"].apply(_is_true) + + shuttles["moon_clearance_complete"] = shuttles["moon_clearance_complete"].apply( + _is_true + ) + + shuttles["price"] = shuttles["price"].apply(_parse_money) + + return shuttles +``` + + +## Assemble nodes into a pipeline + +Now you have functions which take one dataframe and output a pre-processed version of that dataframe. Next you should add these functions as nodes into the pipeline in `pipeline.py`, so the `create_pipeline()` function looks as follows: + +```python +def create_pipeline(**kwargs): + """Create the project's pipeline. + + Args: + kwargs: Ignore any additional arguments added in the future. + + Returns: + Pipeline: The resulting pipeline. + + """ + pipeline = Pipeline( + [ + node(preprocess_companies, "companies", "preprocessed_companies"), + node(preprocess_shuttles, "shuttles", "preprocessed_shuttles"), + ] + ) + + return pipeline +``` + +You will also need to import `node`, and your functions by adding them to the beginning of the `pipeline.py` file: + +```python +from kedro.pipeline import node +from kedro_tutorial.nodes.data_engineering import ( + preprocess_companies, + preprocess_shuttles, +) +``` + +Now check if your pipeline is running without any errors by typing this in your terminal window: + +```bash +kedro run +``` + +You should see output similar to the following + +```bash +kedro run + +2019-04-18 19:16:15,206 - root - INFO - ** Kedro project kedro-tutorial +2019-04-18 19:16:15,207 - anyconfig - INFO - Loading: /projects/kedro-tutorial/conf/base/logging.yml +2019-04-18 19:16:15,221 - anyconfig - INFO - Loading: /projects/kedro-tutorial/conf/base/catalog.yml +2019-04-18 19:16:15,225 - anyconfig - INFO - Loading: /projects/kedro-tutorial/conf/local/credentials.yml +2019-04-18 19:16:15,227 - anyconfig - INFO - Loading: /projects/kedro-tutorial/conf/base/parameters.yml +2019-04-18 19:16:15,233 - kedro.io.data_catalog - INFO - Loading data from `companies` (CSVLocalDataSet)... +2019-04-18 19:16:15,365 - kedro.io.data_catalog - INFO - Saving data to `preprocessed_companies` (MemoryDataSet)... +2019-04-18 19:16:15,366 - kedro.runner.sequential_runner - INFO - Completed 1 out of 2 tasks +2019-04-18 19:16:15,367 - kedro.io.data_catalog - INFO - Loading data from `shuttles` (ExcelLocalDataSet)... +2019-04-18 19:16:35,738 - kedro.io.data_catalog - INFO - Saving data to `preprocessed_shuttles` (MemoryDataSet)... +2019-04-18 19:16:35,745 - kedro.runner.sequential_runner - INFO - Completed 2 out of 2 tasks +2019-04-18 19:16:35,745 - kedro.runner.sequential_runner - INFO - Pipeline execution completed successfully. +2019-04-18 19:16:35,746 - kedro.io.data_catalog - INFO - Loading data from `preprocessed_shuttles` (MemoryDataSet)... +2019-04-18 19:16:35,748 - kedro.io.data_catalog - INFO - Loading data from `preprocessed_companies` (MemoryDataSet)... +``` + + +## Persisting pre-processed data + +Now each of our 2 newly added data preprocessing nodes outputs a new dataset: `preprocessed_companies` and `preprocessed_shuttles` respectively. Node inputs and outputs are used by the pipeline to determine interdependencies between the nodes, and hence, their execution order. + +When Kedro ran the pipeline, it determined that those datasets were not registered in the data catalog (`conf/base/catalog.yml`). If a dataset is not registered, Kedro stores it in memory as a Python object using the `MemoryDataSet` class. Once all nodes depending on it have been executed, a `MemoryDataSet` is cleared and its memory released by the Python garbage collector. + +If you prefer, you can persist any preprocessed data by adding the following to the `conf/base/catalog.yml` file: + +```yaml +preprocessed_companies: + type: CSVLocalDataSet + filepath: data/02_intermediate/preprocessed_companies.csv + +preprocessed_shuttles: + type: CSVLocalDataSet + filepath: data/02_intermediate/preprocessed_shuttles.csv +``` + +By doing so you explicitly declare that `CSVLocalDataSet` should be used instead of `MemoryDataSet`. `CSVLocalDataSet` will save the data as a CSV file to the local `filepath` specified. There is no need to change any code in your preprocessing functions to accommodate this change. `DataCatalog` will take care of saving those datasets automatically the next time you run the pipeline: + +```bash +kedro run +``` + +`CSVLocalDataSet` is chosen for its simplicity, but you can choose any other available dataset implementation class to save the data, for example, to a database table, cloud storage (like [AWS S3](https://aws.amazon.com/s3/), [Azure Blob Storage](https://azure.microsoft.com/en-gb/services/storage/blobs/), etc.) and others. If you cannot find the dataset implementation you need, you can easily implement your own as [you already did earlier](./03_set_up_data.md#creating-custom-datasets) and share it with the world by contributing back to Kedro! + + +## Working with Kedro projects from Jupyter + +Currently, the pipeline consists of just two nodes and performs just some data pre-processing. Let's expand it by adding more nodes. + +When you are developing new nodes for your pipeline, you can write them as regular Python functions, but you may want to use Jupyter Notebooks for experimenting with your code before committing to a specific implementation. To take advantage of Kedro's Jupyter session, you can run this in your terminal: + +```bash +kedro jupyter notebook +``` + +This will open a Jupyter Notebook in your browser. Navigate to `notebooks` folder and create a notebook there with a Kedro kernel. After opening the newly created notebook you can check what the data looks like by pasting this into the first cell of the notebook and selecting **Run**: + +```python +df = io.load('preprocessed_shuttles') +df.head() +``` + +You should be able to see the first 5 rows of the loaded dataset as follows: + +![](img/jupyter_notebook_ch3.png) + +> *Note:* +<br/>If you see an error message stating that `io` is undefined, you can see what went wrong by using `print(startup_error)`, where `startup_error` is available as a variable in Python. +<br/>If you cannot access `startup_error` please make sure you have run **`kedro`**`jupyter notebook` from the project's root directory. Running without the `kedro` command (that is, just running a `jupyter notebook`) will not load the Kedro session for you. +<br/>When you add new datasets to your `catalog.yml` file you need to reload Kedro's session by running `%reload_kedro` in your cell. + + +## Creating a master table + +We need to add a function to join together the three dataframes into a single master table in a cell in the notebook as follows: + +```python +import pandas as pd + +def create_master_table( + shuttles: pd.DataFrame, companies: pd.DataFrame, reviews: pd.DataFrame +) -> pd.DataFrame: + """Combines all data to create a master table. + + Args: + shuttles: Preprocessed data for shuttles. + companies: Preprocessed data for companies. + reviews: Source data for reviews. + Returns: + Master table. + + """ + rated_shuttles = shuttles.merge(reviews, left_on="id", right_on="shuttle_id") + + with_companies = rated_shuttles.merge( + companies, left_on="company_id", right_on="id" + ) + + master_table = with_companies.drop(["shuttle_id", "company_id"], axis=1) + master_table = master_table.dropna() + return master_table +``` + +### Working in a Jupyter notebook + +To create a new node to join all tables to form a master table, you need to add the three dataframes to a cell in the Jupyter notebook: + +```python +preprocessed_shuttles = io.load("preprocessed_shuttles") +preprocessed_companies = io.load("preprocessed_companies") +reviews = io.load("reviews") + +master = create_master_table(preprocessed_shuttles, preprocessed_companies, reviews) +master.head() +``` + +### Extending the project's code + +Having tested that all is working with the master table, it is now time to add the code you've worked on to the Spaceflights project code. First, add the `create_master_table()` function from the snippet above to `data_engineering.py` (you do not need to copy the import statement `import pandas as pd`). + +Then you should add it to the pipeline in `pipeline.py` by adding the node as follows: + +```python +node( + create_master_table, + ["preprocessed_shuttles", "preprocessed_companies", "reviews"], + "master_table" +), +``` +By adding this code to the project, you are telling Kedro that the function `create_master_table` should be called with the data loaded from datasets `preprocessed_shuttles`, `preprocessed_companies`, and `reviews` and the output should be saved to dataset `master_table`. + +You will also need to add an import statement for `create_master_table` at the top of the file: + +```python +from kedro_tutorial.nodes.data_engineering import ( + preprocess_companies, + preprocess_shuttles, + create_master_table, +) +``` + +If you want your data to be saved to file rather than used in-memory, you also need to add an entry to the `catalog.yml` file like this: + +```yaml +master_table: + type: CSVLocalDataSet + filepath: data/03_primary/master_table.csv +``` + +You may want to test that all is working with your code at this point: + +```bash +kedro run + +2019-04-19 15:44:21,748 - root - INFO - ** Kedro project kedro-tutorial +2019-04-19 15:44:21,749 - anyconfig - INFO - Loading: /projects/kedro-tutorial/conf/base/logging.yml +2019-04-19 15:44:21,762 - anyconfig - INFO - Loading: /projects/kedro-tutorial/conf/base/catalog.yml +2019-04-19 15:44:21,769 - anyconfig - INFO - Loading: /projects/kedro-tutorial/conf/local/credentials.yml +2019-04-19 15:44:21,771 - anyconfig - INFO - Loading: /projects/kedro-tutorial/conf/base/parameters.yml +2019-04-19 15:44:21,777 - kedro.io.data_catalog - INFO - Loading data from `companies` (CSVLocalDataSet)... +2019-04-19 15:44:21,909 - kedro.io.data_catalog - INFO - Saving data to `preprocessed_companies` (CSVLocalDataSet)... +2019-04-19 15:44:22,224 - kedro.runner.sequential_runner - INFO - Completed 1 out of 3 tasks +2019-04-19 15:44:22,224 - kedro.io.data_catalog - INFO - Loading data from `shuttles` (ExcelLocalDataSet)... +2019-04-19 15:44:44,310 - kedro.io.data_catalog - INFO - Saving data to `preprocessed_shuttles` (CSVLocalDataSet)... +2019-04-19 15:44:44,993 - kedro.runner.sequential_runner - INFO - Completed 2 out of 3 tasks +2019-04-19 15:44:44,994 - kedro.io.data_catalog - INFO - Loading data from `preprocessed_shuttles` (CSVLocalDataSet)... +2019-04-19 15:44:45,132 - kedro.io.data_catalog - INFO - Loading data from `preprocessed_companies` (CSVLocalDataSet)... +2019-04-19 15:44:45,178 - kedro.io.data_catalog - INFO - Loading data from `reviews` (CSVLocalDataSet)... +2019-04-19 15:44:47,909 - kedro.io.data_catalog - INFO - Saving data to `master_table` (CSVLocalDataSet)... +2019-04-19 15:45:02,448 - kedro.runner.sequential_runner - INFO - Completed 3 out of 3 tasks +2019-04-19 15:45:02,449 - kedro.runner.sequential_runner - INFO - Pipeline execution completed successfully. +``` + + +## Working with multiple pipelines + +Having merged three input datasets to create a master table, you are now ready to make another pipeline for a price prediction model. It will be called the data science pipeline. + +For this example, we will use a [`LinearRegression`](https://scikit-learn.org/stable/modules/generated/sklearn.linear_model.LinearRegression.html) implementation from the [scikit-learn](https://scikit-learn.org/stable/) library. + +You can start by updating the dependencies in `src/requirements.txt` with the following: + +```text +scikit-learn==0.20.2 +``` + +You can find out more about requirements files [here](https://pip.pypa.io/en/stable/user_guide/#requirements-files). + +Then, from within the project directory, run: + +```bash +kedro install +``` + +Next, create a file `src/kedro_tutorial/nodes/price_prediction.py` and add the following code to it: + +```python +import logging +from typing import Dict, List + +import numpy as np +import pandas as pd +from sklearn.linear_model import LinearRegression +from sklearn.metrics import r2_score +from sklearn.model_selection import train_test_split + + +def split_data(data: pd.DataFrame, parameters: Dict) -> List: + """Splits data into training and test sets. + + Args: + data: Source data. + parameters: Parameters defined in parameters.yml. + + Returns: + A list containing split data. + + """ + X = data[ + [ + "engines", + "passenger_capacity", + "crew", + "d_check_complete", + "moon_clearance_complete", + ] + ].values + y = data["price"].values + X_train, X_test, y_train, y_test = train_test_split( + X, y, test_size=parameters["test_size"], random_state=parameters["random_state"] + ) + + return [X_train, X_test, y_train, y_test] + + +def train_model(X_train: np.ndarray, y_train: np.ndarray) -> LinearRegression: + """Train the linear regression model. + + Args: + X_train: Training data of independent features. + y_train: Training data for price. + + Returns: + Trained model. + + """ + regressor = LinearRegression() + regressor.fit(X_train, y_train) + return regressor + + +def evaluate_model(regressor: LinearRegression, X_test: np.ndarray, y_test: np.ndarray): + """Calculate the coefficient of determination and log the result. + + Args: + regressor: Trained model. + X_test: Testing data of independent features. + y_test: Testing data for price. + + """ + y_pred = regressor.predict(X_test) + score = r2_score(y_test, y_pred) + logger = logging.getLogger(__name__) + logger.info("Model has a coefficient R^2 of %.3f.", score) +``` +Add the following to `conf/base/parameters.yml`: + +```yaml +test_size: 0.2 +random_state: 3 +``` + +These are the parameters fed into the `DataCatalog` when the pipeline is executed (see the details in `create_catalog()` and `main()` in `src/kedro_tutorial/run.py`). + +Next, register the dataset, which will save the trained model, by adding the following definition to `conf/base/catalog.yml`: + +```yaml +regressor: + type: PickleLocalDataSet + filepath: data/06_models/regressor.pickle + versioned: true +``` + +> *Note:* Versioning is enabled for `regressor`, which means that the pickled output of the `regressor` will be versioned and saved every time the pipeline is run. This allows us to keep the history of the models built using this pipeline. See the details in the [Versioning](../04_user_guide/07_advanced_io.md#versioning) section of the User Guide. + +Now to create a pipeline for the price prediction model. In `src/kedro_tutorial/nodes/pipeline.py`, update `create_pipeline()` to add an extra import statement as follows: + +```python +from kedro_tutorial.nodes.price_prediction import split_data, train_model, evaluate_model +``` + +Then add a separate pipeline, by replacing the code in `create_pipeline()` as follows: + +```python +def create_pipeline(**kwargs): + """Create the project's pipeline. + + Args: + kwargs: Ignore any additional arguments added in the future. + + Returns: + Pipeline: The resulting pipeline. + + """ + de_pipeline = Pipeline( + [ + node(preprocess_companies, "companies", "preprocessed_companies"), + node(preprocess_shuttles, "shuttles", "preprocessed_shuttles"), + node( + create_master_table, + ["preprocessed_shuttles", "preprocessed_companies", "reviews"], + "master_table", + ), + ] + ) + + ds_pipeline = Pipeline( + [ + node( + split_data, + ["master_table", "parameters"], + ["X_train", "X_test", "y_train", "y_test"], + ), + node(train_model, ["X_train", "y_train"], "regressor"), + node(evaluate_model, ["regressor", "X_test", "y_test"], None), + ] + ) + + return de_pipeline + ds_pipeline +``` + +The first node of the `ds_pipeline` outputs 4 objects: `X_train`, `X_test`, `y_train`, `y_test`, which are not registered in `conf/base/catalog.yml`. (If you recall, if a dataset is not specified in the catalog, Kedro will automatically save it in memory using the `MemoryDataSet`). Normally you would add dataset definitions of your model features into `conf/base/catalog.yml` with the save location in `data/04_features/`. + +The two pipelines are merged together in `de_pipeline + ds_pipeline`. Both pipelines will be executed when you invoke the following: + +```bash +kedro run +``` +You should see output similar to the following: + +```bash +kedro run + +2019-04-19 16:02:47,383 - root - INFO - ** Kedro project kedro-tutorial +2019-04-19 16:02:47,385 - anyconfig - INFO - Loading: /projects/kedro-tutorial/conf/base/logging.yml +2019-04-19 16:02:47,398 - anyconfig - INFO - Loading: /projects/kedro-tutorial/conf/base/catalog.yml +2019-04-19 16:02:47,405 - anyconfig - INFO - Loading: /projects/kedro-tutorial/conf/local/credentials.yml +2019-04-19 16:02:47,407 - anyconfig - INFO - Loading: /projects/kedro-tutorial/conf/base/parameters.yml +2019-04-19 16:02:47,414 - kedro.io.data_catalog - INFO - Loading data from `companies` (CSVLocalDataSet)... +2019-04-19 16:02:47,540 - kedro.io.data_catalog - INFO - Saving data to `preprocessed_companies` (CSVLocalDataSet)... +2019-04-19 16:02:47,854 - kedro.runner.sequential_runner - INFO - Completed 1 out of 6 tasks +2019-04-19 16:02:47,854 - kedro.io.data_catalog - INFO - Loading data from `shuttles` (ExcelLocalDataSet)... +2019-04-19 16:03:10,498 - kedro.io.data_catalog - INFO - Saving data to `preprocessed_shuttles` (CSVLocalDataSet)... +2019-04-19 16:03:11,163 - kedro.runner.sequential_runner - INFO - Completed 2 out of 6 tasks +2019-04-19 16:03:11,163 - kedro.io.data_catalog - INFO - Loading data from `preprocessed_shuttles` (CSVLocalDataSet)... +2019-04-19 16:03:11,307 - kedro.io.data_catalog - INFO - Loading data from `preprocessed_companies` (CSVLocalDataSet)... +2019-04-19 16:03:11,355 - kedro.io.data_catalog - INFO - Loading data from `reviews` (CSVLocalDataSet)... +2019-04-19 16:03:14,627 - kedro.io.data_catalog - INFO - Saving data to `master_table` (CSVLocalDataSet)... +2019-04-19 16:03:29,827 - kedro.runner.sequential_runner - INFO - Completed 3 out of 6 tasks +2019-04-19 16:03:29,827 - kedro.io.data_catalog - INFO - Loading data from `master_table` (CSVLocalDataSet)... +2019-04-19 16:03:32,491 - kedro.io.data_catalog - INFO - Loading data from `parameters` (MemoryDataSet)... +2019-04-19 16:03:32,950 - kedro.io.data_catalog - INFO - Saving data to `y_test` (MemoryDataSet)... +2019-04-19 16:03:32,952 - kedro.io.data_catalog - INFO - Saving data to `y_train` (MemoryDataSet)... +2019-04-19 16:03:32,953 - kedro.io.data_catalog - INFO - Saving data to `X_train` (MemoryDataSet)... +2019-04-19 16:03:32,993 - kedro.io.data_catalog - INFO - Saving data to `X_test` (MemoryDataSet)... +2019-04-19 16:03:33,062 - kedro.runner.sequential_runner - INFO - Completed 4 out of 6 tasks +2019-04-19 16:03:33,062 - kedro.io.data_catalog - INFO - Loading data from `X_train` (MemoryDataSet)... +2019-04-19 16:03:33,134 - kedro.io.data_catalog - INFO - Loading data from `y_train` (MemoryDataSet)... +2019-04-19 16:03:33,399 - kedro.io.data_catalog - INFO - Saving data to `regressor` (PickleLocalDataSet)... +2019-04-19 16:03:33,469 - kedro.runner.sequential_runner - INFO - Completed 5 out of 6 tasks +2019-04-19 16:03:33,469 - kedro.io.data_catalog - INFO - Loading data from `regressor` (PickleLocalDataSet)... +2019-04-19 16:03:33,470 - kedro.io.data_catalog - INFO - Loading data from `X_test` (MemoryDataSet)... +2019-04-19 16:03:33,487 - kedro.io.data_catalog - INFO - Loading data from `y_test` (MemoryDataSet)... +2019-04-19 16:03:33,538 - kedro_tutorial.nodes.price_prediction - INFO - Model has a coefficient R^2 of 0.456. +2019-04-19 16:03:33,573 - kedro.runner.sequential_runner - INFO - Completed 6 out of 6 tasks +2019-04-19 16:03:33,573 - kedro.runner.sequential_runner - INFO - Pipeline execution completed successfully. +``` + +The `de_pipeline` will preprocess the data, and `ds_pipeline` will then create features, train and evaluate the model. + +> *Note:* The order in which you add the pipelines together is not significant and `ds_pipeline + de_pipeline` will result in the same pipeline, since Kedro automatically detects the correct execution order for all the nodes in the resulting pipeline. + + +## Partial pipeline runs + +In some cases, you may want to partially run the pipeline. For example, you may need to only run the `ds_pipeline` to tune the hyperparameters of the price prediction model and skip `de_pipeline` execution. The most obvious way of doing this is by modifying your Python code for pipeline definition, however, this method sometimes introduces errors. + +A better way to run partial pipelines without changing your code is to use tags. Each node within the pipeline can be tagged by passing **`name`** into the `Pipeline()`. Update the `create_pipeline()` code in `pipeline.py` one more time: + +```python +def create_pipeline(**kwargs): + """Create the project's pipeline. + + Args: + kwargs: Ignore any additional arguments added in the future. + + Returns: + Pipeline: The resulting pipeline. + + """ + de_pipeline = Pipeline( + [ + node(preprocess_companies, "companies", "preprocessed_companies"), + node(preprocess_shuttles, "shuttles", "preprocessed_shuttles"), + node( + create_master_table, + ["preprocessed_shuttles", "preprocessed_companies", "reviews"], + "master_table", + ), + ], + name="de", + ) + + ds_pipeline = Pipeline( + [ + node( + split_data, + ["master_table", "parameters"], + ["X_train", "X_test", "y_train", "y_test"], + ), + node(train_model, ["X_train", "y_train"], "regressor"), + node(evaluate_model, ["regressor", "X_test", "y_test"], None), + ], + name="ds", + ) + + return de_pipeline + ds_pipeline +``` + +Should you need to, you can add more than one tag to the pipeline by adding `name=['tag1', 'tag2']`. + +To run a partial pipeline: + +```bash +kedro run --tag=ds +``` + +This will skip the execution of the pipeline with tag `de` and only run the `ds` nodes (found within the `ds_pipeline`). If you want to run the whole pipeline: + +```bash +kedro run +``` + +or: + +```bash +kedro run --tag=ds --tag=de +``` + +> *Note:* You can also attach tags to the individual nodes by passing the `tags` keyword to the `node()` function, and these are used in addition to any tags specified at the pipeline level. To tag a node as `my-regressor-node`: + +```python +node( + train_model, + ["X_train", "y_train"], + "regressor", + tags=["my-regressor-node"], +) +``` + + +## Using decorators for nodes and pipelines + +In this section, you will learn about Kedro's built-in decorators as well as how to create your own node and pipeline decorators. + +[Python decorators](https://wiki.python.org/moin/PythonDecorators) can be applied to Kedro nodes. Let's walk through an example of building our own decorator for logging the execution time of each node. + +### Decorating the nodes + +Logging the execution time for each node can be performed by creating a function and adding it to each node as a decorator. + +In `data_engineering.py`, add the following decorator function near the top of the file: + +```python +from functools import wraps +from typing import Callable +import time +import logging + +def log_running_time(func: Callable) -> Callable: + """Decorator for logging node execution time. + + Args: + func: Function to be executed. + + Returns: + Decorator for logging the running time. + + """ + @wraps(func) + def with_time(*args, **kwargs): + log = logging.getLogger(__name__) + t_start = time.time() + result = func(*args, **kwargs) + t_end = time.time() + elapsed = t_end - t_start + log.info("Running %r took %.2f seconds", func.__name__, elapsed) + return result + return with_time +``` + +And apply it to each data engineering function by prepending `@log_running_time` to the definition: + +```python +@log_running_time +def preprocess_companies(companies: pd.DataFrame) -> pd.DataFrame: + ... + +@log_running_time +def preprocess_shuttles(shuttles: pd.DataFrame) -> pd.DataFrame: + ... +``` + +Then, if you run your pipeline from the command line, you should see a similar output: + +```bash +kedro run + +... +kedro_tutorial.nodes.data_engineering - INFO - Running 'preprocess_companies' took XXX seconds +... +kedro_tutorial.nodes.data_engineering - INFO - Running 'preprocess_shuttles' took XXX seconds +``` + +### Decorating the pipeline + +A decorator can also be applied to the pipeline rather than each node. In `src/kedro_tutorial/nodes/pipeline.py`, update the imports from `data_engineering.py` as follows: + +```python +from kedro_tutorial.nodes.data_engineering import ( + preprocess_companies, + preprocess_shuttles, + create_master_table, + log_running_time, +) +``` + +Then add the decorators to the pipeline: + +```python +def create_pipeline(**kwargs): + """Create the project's pipeline. + + Args: + kwargs: Ignore any additional arguments added in the future. + + Returns: + Pipeline: The resulting pipeline. + + """ + de_pipeline = Pipeline( + [ + node(preprocess_companies, "companies", "preprocessed_companies"), + node(preprocess_shuttles, "shuttles", "preprocessed_shuttles"), + node( + create_master_table, + ["preprocessed_shuttles", "preprocessed_companies", "reviews"], + "master_table", + ), + ], + name="de", + ).decorate(log_running_time) + + ds_pipeline = Pipeline( + [ + node( + split_data, + ["master_table", "parameters"], + ["X_train", "X_test", "y_train", "y_test"], + ), + node(train_model, ["X_train", "y_train"], "regressor"), + node(evaluate_model, ["regressor", "X_test", "y_test"], None), + ], + name="ds", + ).decorate(log_running_time) + + return de_pipeline + ds_pipeline +``` + +This decorator is commonly used and Kedro already includes it as a built-in decorator called `kedro.pipeline.decorators.log_time`. + +Another built-in decorator is `kedro.pipeline.decorators.mem_profile`, which will log the maximum memory usage of your node. + + +## Kedro runners + +Having specified the data catalog and the pipeline, you are now ready to run the pipeline. There are two different runners you can specify: + +* `SequentialRunner` - runs your nodes sequentially; once a node has completed its task then the next one starts. +* `ParallelRunner` - runs your nodes in parallel; independent nodes are able to run at the same time, allowing you to take advantage of multiple CPU cores. + +By default, `src/kedro_tutorial/run.py` uses a `SequentialRunner`, which is instantiated when you execute `kedro run` from the command line. Switching to use `ParallelRunner` is as simple as providing an additional flag when running the pipeline from the command line as follows: + +```bash +kedro run --parallel +``` + +`ParallelRunner` executes the pipeline nodes in parallel, and is more efficient when there are independent branches in your pipeline. + +> *Note:* `ParallelRunner` performs task parallelisation, which is different from data parallelisation as seen in PySpark. diff --git a/docs/source/03_tutorial/05_package_a_project.md b/docs/source/03_tutorial/05_package_a_project.md new file mode 100644 index 0000000000..ad06036c15 --- /dev/null +++ b/docs/source/03_tutorial/05_package_a_project.md @@ -0,0 +1,22 @@ +# Packaging a project + +In this section, you will learn how to build your project documentation, as well as how to bundle your project into a Python package for handover. + + +## Add documentation to your project + +While Kedro documentation can be found by running `kedro docs` from the command line, project-specific documentation can be generated by running `kedro build-docs` in the project's root directory. + +This will create documentation based on the code structure of your project. Documentation will also include the [`docstrings`](https://www.datacamp.com/community/tutorials/docstrings-python) defined in the project code. The resulting HTML files can be found in `docs/build/html/`. + +`kedro build-docs` uses the [Sphinx](https://www.sphinx-doc.org) framework to build your project documentation, so if you want to customise it, please refer to `docs/source/conf.py` and the [corresponding section](http://www.sphinx-doc.org/en/master/usage/configuration.html) of the Sphinx documentation. + + +## Package your project + +You can package your project by running `kedro package` from the command line. This will create one `.egg` file and one `.whl` file within the `src/dist/` folder of your project, which are Python packaging formats. For further information about packaging for Python, documentation is provided [here](https://packaging.python.org/overview/). + + +## What is next? + +You have now successfully built a project along with its documentation and packaged it using one of standard Python distribution formats. You may choose to open-source your project and make it available to a wider community of users and contributors. For further steps we advise you to consult [this GitHub guide](https://github.com/open-source), [PyPI help](https://pypi.org/help/), a [Read the Docs tutorial](https://docs.readthedocs.io/en/latest/intro/getting-started-with-sphinx.html#), and a guide to [Open Source Licenses & Standards](https://opensource.org/licenses). diff --git a/docs/source/03_tutorial/data/companies.csv b/docs/source/03_tutorial/data/companies.csv new file mode 100755 index 0000000000..b9fe15c301 --- /dev/null +++ b/docs/source/03_tutorial/data/companies.csv @@ -0,0 +1,77097 @@ +id,company_rating,company_location,total_fleet_count,iata_approved +35029,100%,Niue,4.0,f +30292,67%,Anguilla,6.0,f +19032,67%,Russian Federation,4.0,f +8238,91%,Barbados,15.0,t +30342,,Sao Tome and Principe,2.0,t +32413,100%,Faroe Islands,1.0,f +35620,90%,Micronesia,3.0,f +23820,,Rwanda,1.0,t +46528,100%,Uzbekistan,3.0,t +11875,100%,Micronesia,2.0,t +21120,100%,Kiribati,2.0,t +10864,100%,Nicaragua,2.0,t +6027,82%,Wallis and Futuna,2.0,f +14122,100%,Malta,1.0,t +47761,100%,Niue,2.0,f +33827,100%,United Kingdom,1.0,f +13336,,Malta,1.0,f +46548,,Estonia,1.0,f +26648,100%,Niue,2.0,t +26648,100%,Niue,2.0,t +19479,80%,Niue,4.0,f +13109,100%,Bouvet Island (Bouvetoya),1.0,f +19479,80%,Niue,4.0,f +35620,90%,Micronesia,3.0,f +24304,100%,Micronesia,1.0,t +17518,90%,United Kingdom,2.0,t +42867,100%,Indonesia,2.0,t +31177,,Costa Rica,1.0,f +41961,,Marshall Islands,2.0,t +47761,100%,Niue,2.0,f +16351,,,1.0,t +5252,,Kenya,1.0,t +29378,,,1.0,f +11275,100%,Brazil,3.0,t +28675,100%,Guinea,1.0,t +2418,100%,Mexico,2.0,f +2418,100%,Mexico,2.0,f +21747,67%,Gambia,1.0,t +47174,,Isle of Man,2.0,t +40644,,Bosnia and Herzegovina,1.0,t +49598,,Switzerland,4.0,t +8363,71%,Guinea,3.0,f +22699,0%,Russian Federation,1.0,f +27772,100%,Chad,2.0,t +33784,100%,Pakistan,1.0,f +6186,,Bosnia and Herzegovina,3.0,t +2817,,El Salvador,1.0,f +6399,95%,Marshall Islands,5.0,f +859,75%,Lebanon,2.0,t +12135,,Bosnia and Herzegovina,1.0,t +33904,100%,Russian Federation,1.0,t +1442,100%,Andorra,2.0,t +1442,100%,Andorra,2.0,t +8363,71%,Guinea,3.0,f +6637,100%,Cyprus,3.0,t +7788,,Cook Islands,3.0,t +42832,,Denmark,2.0,f +8363,71%,Guinea,3.0,f +42114,100%,Sao Tome and Principe,3.0,t +29416,100%,Anguilla,1.0,f +14271,,El Salvador,1.0,f +9814,100%,Lebanon,2.0,t +39856,100%,Bosnia and Herzegovina,1.0,t +37646,100%,Estonia,60.0,f +19579,100%,Kenya,2.0,f +29560,,Croatia,4.0,t +21836,100%,Mauritania,3.0,f +14917,,Monaco,1.0,t +6399,95%,Marshall Islands,5.0,f +7788,,Cook Islands,3.0,t +15268,,Lebanon,1.0,t +28884,100%,Micronesia,2.0,t +48911,100%,,1.0,f +8238,91%,Barbados,15.0,t +17025,100%,Sao Tome and Principe,1.0,t +37349,100%,,1.0,f +37321,100%,Tunisia,1.0,t +24968,,Gibraltar,1.0,t +18897,100%,Canada,1.0,t +41961,,Marshall Islands,2.0,t +5431,100%,Uzbekistan,2.0,t +13796,100%,Kiribati,2.0,t +42114,100%,Sao Tome and Principe,3.0,t +29049,,Zimbabwe,1.0,f +8555,100%,Guernsey,1.0,t +28032,,France,1.0,t +36452,100%,Pakistan,1.0,f +44099,100%,Reunion,1.0,f +13926,,Niger,1.0,t +20214,100%,Sao Tome and Principe,1.0,f +13381,40%,Guinea,1.0,f +42832,,Denmark,2.0,f +12764,,Finland,1.0,t +12916,,,9.0,t +46575,100%,Isle of Man,1.0,f +15306,,Barbados,8.0,t +31859,100%,Maldives,2.0,f +20692,100%,Marshall Islands,7.0,t +4795,100%,Malta,1.0,f +30537,100%,Tonga,3.0,t +45855,100%,,1.0,f +35147,95%,Mauritania,5.0,t +35321,100%,Russian Federation,2.0,t +3652,100%,Guinea,2.0,t +15604,100%,Russian Federation,2.0,t +23644,100%,Mauritania,4.0,t +26909,100%,Lebanon,1.0,t +2771,80%,Niue,1.0,f +36905,100%,Senegal,1.0,t +48372,100%,Barbados,12.0,t +6492,100%,Marshall Islands,1.0,f +1597,100%,,1.0,f +4242,67%,Ecuador,1.0,t +38864,,Uganda,1.0,f +40326,33%,,1.0,f +27965,100%,Faroe Islands,3.0,f +46456,0%,Monaco,1.0,f +26562,,,1.0,f +16247,100%,Slovakia (Slovak Republic),3.0,f +19032,67%,Russian Federation,4.0,f +1952,100%,Denmark,2.0,t +21495,,Estonia,1.0,t +16247,100%,Slovakia (Slovak Republic),3.0,f +36279,,Christmas Island,1.0,t +22168,,Kenya,1.0,f +5570,100%,Finland,1.0,t +20736,100%,Russian Federation,3.0,t +43515,100%,Uruguay,1.0,f +32290,0%,,1.0,f +41956,,Lebanon,1.0,t +33906,80%,Marshall Islands,1.0,f +23133,,Rwanda,1.0,t +5698,100%,Cape Verde,1.0,t +464,,Gibraltar,1.0,f +49323,100%,Croatia,2.0,t +18899,,Bosnia and Herzegovina,1.0,f +20242,100%,Croatia,1.0,f +599,,El Salvador,2.0,f +11781,100%,Guinea,2.0,t +36599,,Lebanon,1.0,f +39533,,Rwanda,1.0,t +9447,100%,Grenada,1.0,f +41760,,Uzbekistan,1.0,f +24038,67%,Tanzania,1.0,t +32063,100%,Niue,2.0,t +44947,100%,Malta,1.0,t +49938,100%,Anguilla,1.0,f +2926,86%,Niue,1.0,f +45976,83%,Brazil,1.0,f +21120,100%,Kiribati,2.0,t +43109,80%,Russian Federation,1.0,t +20697,90%,Lebanon,1.0,t +992,0%,Croatia,2.0,f +9736,50%,Congo,2.0,t +50009,0%,Niue,1.0,f +5991,,Lebanon,3.0,t +33462,100%,Nicaragua,1.0,t +14016,,Turkmenistan,3.0,t +30628,100%,Marshall Islands,1.0,f +11884,100%,Zimbabwe,1.0,t +8662,100%,Croatia,2.0,t +23614,100%,Ecuador,4.0,t +9261,100%,Tonga,1.0,f +41244,100%,Guernsey,3.0,t +16422,100%,Russian Federation,6.0,f +14240,100%,Chile,3.0,t +41697,100%,Bahrain,1.0,f +20450,,Vanuatu,1.0,f +15854,100%,Marshall Islands,1.0,f +14191,100%,Slovakia (Slovak Republic),1.0,f +36823,100%,Russian Federation,2.0,t +36548,,Uzbekistan,1.0,t +25038,100%,Bouvet Island (Bouvetoya),1.0,f +49186,100%,Isle of Man,1.0,f +26832,,,1.0,t +49323,100%,Croatia,2.0,t +4231,100%,Guinea,1.0,t +23044,100%,Fiji,2.0,t +8238,91%,Barbados,15.0,t +42077,100%,Philippines,2.0,t +14369,,Micronesia,2.0,t +40973,90%,Uzbekistan,1.0,t +23812,,,2.0,t +37577,100%,Lebanon,3.0,t +29642,100%,Costa Rica,1.0,t +28781,,Anguilla,2.0,f +37646,100%,Estonia,60.0,f +17967,100%,El Salvador,2.0,f +15391,90%,Niger,2.0,t +21019,,Niue,1.0,t +36139,,Montserrat,2.0,f +30801,100%,Mauritania,2.0,t +14240,100%,Chile,3.0,t +39395,100%,Mauritania,3.0,t +40007,100%,Marshall Islands,1.0,f +37392,100%,Micronesia,7.0,t +674,100%,Gibraltar,4.0,f +18410,100%,Russian Federation,1.0,t +16661,100%,Russian Federation,2.0,t +2145,67%,Faroe Islands,3.0,t +28201,100%,Kenya,1.0,f +45585,100%,Denmark,1.0,f +18765,100%,Bosnia and Herzegovina,1.0,t +21202,,Mauritania,1.0,f +27589,80%,Estonia,1.0,f +30065,,Russian Federation,1.0,t +23044,100%,Fiji,2.0,t +2977,,Reunion,2.0,f +8023,,Isle of Man,1.0,t +22680,,Sao Tome and Principe,1.0,f +19875,90%,Kenya,1.0,f +9011,100%,Russian Federation,1.0,f +42965,100%,Uzbekistan,11.0,t +26524,100%,Guinea,2.0,t +41815,,Russian Federation,1.0,f +35807,100%,Sao Tome and Principe,2.0,f +13525,100%,Nauru,1.0,f +29563,100%,Jersey,2.0,f +22568,100%,Malta,1.0,t +20736,100%,Russian Federation,3.0,t +29112,100%,Chad,2.0,f +30801,100%,Mauritania,2.0,t +40842,100%,Mexico,1.0,f +794,100%,Indonesia,1.0,f +21596,100%,Guinea,1.0,t +283,100%,United Kingdom,1.0,t +20847,100%,Bouvet Island (Bouvetoya),2.0,t +14602,100%,Malawi,1.0,t +20736,100%,Russian Federation,3.0,t +27556,,Russian Federation,1.0,f +13504,100%,Ukraine,3.0,f +13585,,Rwanda,2.0,f +37646,100%,Estonia,60.0,f +36336,100%,Jersey,1.0,f +49491,100%,,1.0,t +23663,100%,Philippines,1.0,t +10211,100%,Mauritania,1.0,f +13504,100%,Ukraine,3.0,f +36732,,China,1.0,t +45546,100%,Cape Verde,19.0,t +42201,,United Kingdom,1.0,f +23644,100%,Mauritania,4.0,t +1536,100%,Grenada,2.0,f +37646,100%,Estonia,60.0,f +39713,100%,Denmark,4.0,f +48832,,Lebanon,1.0,f +1592,,Tonga,1.0,f +29590,,,1.0,f +23891,90%,Zimbabwe,3.0,t +36484,100%,Bouvet Island (Bouvetoya),1.0,f +19579,100%,Kenya,2.0,f +6518,100%,Uzbekistan,1.0,f +15814,100%,Brazil,4.0,f +13692,100%,Uganda,1.0,f +10947,,Bosnia and Herzegovina,1.0,f +2097,100%,Guernsey,1.0,t +32603,83%,Nicaragua,4.0,t +38131,100%,Antarctica (the territory South of 60 deg S),3.0,t +41093,100%,Tunisia,2.0,t +20345,0%,Niue,1.0,f +13585,,Rwanda,2.0,f +3329,,Uzbekistan,4.0,f +12401,100%,Rwanda,2.0,f +40954,0%,Uganda,1.0,f +30509,,Gambia,1.0,f +41093,100%,Tunisia,2.0,t +9829,70%,Nauru,1.0,f +25988,100%,Russian Federation,2.0,f +23614,100%,Ecuador,4.0,t +14616,50%,Marshall Islands,1.0,t +24425,100%,Mauritania,2.0,t +12401,100%,Rwanda,2.0,f +32476,100%,French Guiana,1.0,t +10204,100%,Nicaragua,5.0,t +45546,100%,Cape Verde,19.0,t +17703,100%,Marshall Islands,1.0,f +42375,,Kenya,1.0,f +38363,100%,Uganda,1.0,t +29648,,Guinea,1.0,t +19576,100%,Micronesia,2.0,t +42686,,,1.0,t +8930,,Turkmenistan,2.0,t +293,100%,Lebanon,1.0,f +9042,57%,Russian Federation,2.0,f +36853,100%,Guinea,1.0,f +44853,100%,Lebanon,2.0,f +25856,,Vanuatu,4.0,t +14210,100%,Finland,1.0,f +45741,100%,Uzbekistan,6.0,t +9029,,Andorra,2.0,t +4038,,Micronesia,1.0,t +28458,100%,Turkmenistan,6.0,f +24088,,Russian Federation,1.0,t +9708,,Lebanon,2.0,t +49956,,Russian Federation,1.0,f +24133,100%,Cuba,1.0,t +46586,100%,Bosnia and Herzegovina,12.0,f +46586,100%,Bosnia and Herzegovina,12.0,f +46586,100%,Bosnia and Herzegovina,12.0,f +46586,100%,Bosnia and Herzegovina,12.0,f +46586,100%,Bosnia and Herzegovina,12.0,f +20550,,Tanzania,1.0,f +10680,,Anguilla,2.0,f +42897,,Brazil,1.0,f +4237,33%,Holy See (Vatican City State),1.0,f +23322,100%,French Guiana,2.0,t +20829,,Anguilla,1.0,t +13720,,Bouvet Island (Bouvetoya),3.0,t +10392,,Chad,1.0,f +42288,,,1.0,f +23215,100%,Djibouti,2.0,f +17993,100%,Zimbabwe,1.0,t +2717,,Uzbekistan,3.0,f +19033,25%,Zimbabwe,1.0,f +7676,,Russian Federation,1.0,f +28911,,,1.0,f +42458,97%,Indonesia,14.0,t +6396,100%,Indonesia,1.0,t +37718,,Barbados,1.0,t +39724,86%,Sao Tome and Principe,2.0,f +21591,100%,Kiribati,1.0,t +21229,100%,Pakistan,10.0,t +21229,100%,Pakistan,10.0,t +21229,100%,Pakistan,10.0,t +21229,100%,Pakistan,10.0,t +21229,100%,Pakistan,10.0,t +21229,100%,Pakistan,10.0,t +21229,100%,Pakistan,10.0,t +21229,100%,Pakistan,10.0,t +21229,100%,Pakistan,10.0,t +40281,100%,,3.0,f +32659,100%,Cuba,1.0,t +11428,,Kenya,1.0,f +10204,100%,Nicaragua,5.0,t +11616,100%,Uzbekistan,12.0,t +30107,100%,Venezuela,2.0,t +36659,100%,Anguilla,2.0,t +9754,100%,Brazil,6.0,f +34610,,Gambia,2.0,f +7240,100%,,1.0,t +20343,,Togo,4.0,f +46586,100%,Bosnia and Herzegovina,12.0,f +13796,100%,Kiribati,2.0,t +5203,,Grenada,1.0,t +31686,100%,Finland,1.0,t +16130,100%,Ghana,3.0,t +8654,100%,Christmas Island,3.0,f +25615,75%,French Polynesia,1.0,t +32383,100%,Marshall Islands,1.0,f +34784,60%,Faroe Islands,19.0,t +18105,100%,Gambia,7.0,t +34234,0%,Zimbabwe,2.0,t +26099,99%,Reunion,15.0,f +8605,90%,Estonia,4.0,t +47708,,Bosnia and Herzegovina,1.0,f +38347,100%,El Salvador,1.0,f +14971,,Estonia,1.0,f +42458,97%,Indonesia,14.0,t +48535,100%,El Salvador,2.0,f +46667,100%,United Kingdom,1.0,f +14372,0%,Ecuador,1.0,t +31602,,French Guiana,1.0,t +7411,,,1.0,f +19521,100%,United Kingdom,3.0,t +20542,80%,Kenya,7.0,t +20542,80%,Kenya,7.0,t +43862,,Chile,1.0,t +37392,100%,Micronesia,7.0,t +11048,,Bosnia and Herzegovina,1.0,t +1499,100%,Tonga,2.0,t +12004,100%,,1.0,f +10954,100%,Uganda,2.0,f +16083,100%,Guinea,2.0,f +18944,80%,Indonesia,2.0,f +36985,100%,Kiribati,7.0,t +36985,100%,Kiribati,7.0,t +3902,100%,Papua New Guinea,3.0,t +19300,,Costa Rica,1.0,f +36411,100%,Brazil,3.0,f +36411,100%,Brazil,3.0,f +36411,100%,Brazil,3.0,f +6896,,Barbados,2.0,t +10818,,Cape Verde,1.0,f +7,,Puerto Rico,1.0,f +15164,100%,Tanzania,2.0,t +23891,90%,Zimbabwe,3.0,t +40632,,Puerto Rico,1.0,f +42754,,Gambia,1.0,f +17306,92%,Micronesia,4.0,t +9207,,Marshall Islands,2.0,t +17306,92%,Micronesia,4.0,t +7175,100%,Zimbabwe,1.0,t +263,,Anguilla,1.0,f +9833,,,1.0,f +15164,100%,Tanzania,2.0,t +12046,,,1.0,t +17682,100%,Niue,1.0,f +34538,,Togo,1.0,f +47295,100%,Niue,1.0,t +12752,,Zimbabwe,2.0,f +21191,,Nauru,1.0,f +44495,,Gambia,1.0,f +44446,100%,Costa Rica,3.0,t +15472,100%,Niue,2.0,t +34782,90%,Libyan Arab Jamahiriya,1.0,t +26099,99%,Reunion,15.0,f +2042,90%,Gambia,7.0,f +2042,90%,Gambia,7.0,f +23614,100%,Ecuador,4.0,t +24190,,Jersey,1.0,t +39809,100%,Costa Rica,1.0,t +40832,,Faroe Islands,2.0,f +40832,,Faroe Islands,2.0,f +38751,,Greenland,1.0,f +3866,100%,Indonesia,8.0,t +17609,,,1.0,t +21341,80%,Tonga,1.0,f +45161,100%,Togo,2.0,t +8238,91%,Barbados,15.0,t +42901,75%,Lebanon,1.0,t +1420,100%,Afghanistan,2.0,f +21318,100%,Russian Federation,2.0,t +4221,,Niue,1.0,f +4086,,French Guiana,1.0,f +37803,100%,Guinea,1.0,f +1747,,Gambia,1.0,t +674,100%,Gibraltar,4.0,f +20542,80%,Kenya,7.0,t +20542,80%,Kenya,7.0,t +16095,85%,Isle of Man,2.0,t +31379,100%,France,5.0,t +34203,100%,Uzbekistan,2.0,t +14369,,Micronesia,2.0,t +30216,98%,Maldives,34.0,f +40235,,Guinea,1.0,t +49609,100%,Niue,3.0,t +29112,100%,Chad,2.0,f +1566,,Kiribati,1.0,f +34259,100%,Sao Tome and Principe,2.0,t +3131,100%,Tanzania,3.0,f +8442,100%,Tunisia,2.0,t +45987,100%,Jersey,6.0,t +425,,,1.0,f +1594,,Lebanon,1.0,f +46896,100%,Zimbabwe,1.0,t +6546,80%,Bouvet Island (Bouvetoya),1.0,f +26172,,Rwanda,1.0,f +47385,100%,Cape Verde,2.0,t +7759,,Palestinian Territory,1.0,f +41880,,China,2.0,f +17490,,Gambia,1.0,f +13269,100%,Anguilla,3.0,f +13269,100%,Anguilla,3.0,f +39724,86%,Sao Tome and Principe,2.0,f +38426,100%,Turks and Caicos Islands,1.0,f +50052,100%,Finland,1.0,t +34126,100%,French Guiana,1.0,t +19648,,,1.0,f +1890,,Isle of Man,1.0,f +3777,100%,Kiribati,1.0,t +14340,100%,Isle of Man,5.0,t +47152,,Isle of Man,2.0,f +40390,100%,Marshall Islands,2.0,t +20417,,,1.0,f +19289,,Senegal,2.0,t +34259,100%,Sao Tome and Principe,2.0,t +4708,,Uzbekistan,1.0,t +6053,,Sao Tome and Principe,1.0,t +34610,,Gambia,2.0,f +1706,,,1.0,f +3080,100%,Lithuania,2.0,t +23402,,Zimbabwe,1.0,f +24389,100%,,2.0,t +24389,100%,,2.0,t +46789,,Jersey,1.0,t +27555,,United Kingdom,1.0,f +21457,100%,Russian Federation,4.0,t +38689,100%,United Kingdom,6.0,t +32419,,Greenland,2.0,f +48874,100%,Somalia,4.0,t +37343,75%,Ecuador,4.0,t +41382,100%,Kiribati,1.0,f +17725,,,1.0,f +12436,100%,Uganda,1.0,f +34107,,Costa Rica,1.0,f +45741,100%,Uzbekistan,6.0,t +2452,,French Guiana,1.0,t +10950,100%,Greenland,1.0,f +11644,100%,Isle of Man,1.0,f +30197,100%,Micronesia,1.0,t +3939,90%,,3.0,f +48605,100%,Niue,3.0,t +35803,100%,Jersey,2.0,f +27316,100%,Puerto Rico,5.0,f +9748,,,1.0,f +38074,,Niue,1.0,f +13295,100%,Denmark,4.0,f +27316,100%,Puerto Rico,5.0,f +33503,,Anguilla,1.0,t +20272,,Jersey,1.0,f +46217,100%,United Kingdom,4.0,f +28454,100%,Kiribati,3.0,f +21101,100%,Holy See (Vatican City State),1.0,f +22358,,Vanuatu,3.0,f +43807,100%,Palestinian Territory,4.0,f +43807,100%,Palestinian Territory,4.0,f +43807,100%,Palestinian Territory,4.0,f +26729,,Kiribati,2.0,f +15120,100%,El Salvador,1.0,f +21248,,Guinea,1.0,f +35634,,Costa Rica,1.0,f +45819,50%,Gambia,1.0,f +44581,100%,Niger,2.0,f +34753,100%,El Salvador,1.0,t +3686,,United Kingdom,1.0,f +47844,100%,Kiribati,3.0,t +47152,,Isle of Man,2.0,f +34510,100%,Jersey,2.0,t +45987,100%,Jersey,6.0,t +45987,100%,Jersey,6.0,t +46132,100%,Croatia,1.0,t +20649,,,1.0,t +1539,100%,Micronesia,3.0,f +15926,,Russian Federation,1.0,t +16661,100%,Russian Federation,2.0,t +2580,,Uzbekistan,1.0,t +13458,,Lebanon,1.0,t +36524,100%,Saint Helena,8.0,t +37740,,Turkmenistan,1.0,f +4306,83%,China,3.0,f +3877,100%,Monaco,1.0,f +44913,100%,Russian Federation,2.0,f +41712,80%,Zimbabwe,2.0,t +10079,100%,Rwanda,1.0,f +27316,100%,Puerto Rico,5.0,f +23518,,Turks and Caicos Islands,1.0,f +33823,78%,France,17.0,t +16559,,Somalia,1.0,t +36985,100%,Kiribati,7.0,t +49208,100%,Guinea,1.0,f +39576,,Bouvet Island (Bouvetoya),1.0,f +43461,,Guinea,1.0,f +38718,,Uzbekistan,1.0,t +19806,60%,Papua New Guinea,1.0,f +19934,100%,Svalbard & Jan Mayen Islands,2.0,t +18734,100%,Niue,1.0,f +34301,,Turks and Caicos Islands,1.0,f +34296,,Kenya,3.0,f +1741,100%,Malawi,2.0,t +22324,100%,Venezuela,6.0,t +1874,,Uzbekistan,1.0,t +24938,,Barbados,2.0,f +44408,100%,Peru,3.0,f +42262,,Turkmenistan,1.0,f +932,100%,Indonesia,2.0,f +13767,100%,Ukraine,1.0,t +8896,100%,Russian Federation,2.0,t +36497,100%,Niue,2.0,t +4138,,Gambia,1.0,f +8945,,Guinea,1.0,f +9412,,Uganda,2.0,f +9412,,Uganda,2.0,f +14063,100%,Denmark,10.0,t +30934,100%,Malta,1.0,t +10865,88%,Isle of Man,2.0,t +8616,53%,Canada,4.0,t +39630,83%,Senegal,1.0,t +10670,50%,Russian Federation,1.0,t +3075,,Turks and Caicos Islands,2.0,t +40523,,French Guiana,1.0,t +22017,50%,Barbados,2.0,f +19362,100%,Nauru,1.0,t +846,90%,Marshall Islands,1.0,t +32689,100%,,1.0,f +2512,,Cape Verde,6.0,t +3131,100%,Tanzania,3.0,f +8584,100%,Costa Rica,7.0,t +3396,,Chad,4.0,t +1082,,Denmark,1.0,f +37611,,Turkmenistan,1.0,t +19028,,Turkmenistan,1.0,t +7347,100%,Lebanon,2.0,f +47550,100%,Guinea,4.0,t +4167,100%,Niue,1.0,t +16587,,Cocos (Keeling) Islands,2.0,f +5307,100%,Zimbabwe,3.0,t +25348,100%,Suriname,2.0,f +10212,,Turkmenistan,2.0,f +10212,,Turkmenistan,2.0,f +11276,100%,Nicaragua,1.0,t +14629,,Bosnia and Herzegovina,2.0,t +14629,,Bosnia and Herzegovina,2.0,t +22404,100%,French Guiana,1.0,t +103,100%,Brazil,1.0,t +24633,,Chad,3.0,t +28479,40%,Uzbekistan,1.0,t +1854,100%,Senegal,1.0,f +41656,100%,Gambia,4.0,t +4401,100%,Guinea,1.0,f +24861,100%,Rwanda,1.0,t +24765,0%,Tanzania,4.0,t +30216,98%,Maldives,34.0,f +30216,98%,Maldives,34.0,f +15889,80%,Finland,1.0,t +24765,0%,Tanzania,4.0,t +24765,0%,Tanzania,4.0,t +5499,,Kenya,1.0,f +33438,,Chad,1.0,t +37653,100%,Marshall Islands,1.0,t +42439,100%,Cape Verde,3.0,t +2152,,Lebanon,1.0,t +23029,100%,Anguilla,1.0,f +21840,,Lebanon,1.0,t +41431,100%,Nicaragua,2.0,f +46691,90%,Uzbekistan,38.0,f +21035,100%,El Salvador,1.0,t +39657,100%,,2.0,t +17310,,Lebanon,1.0,t +12186,,Croatia,1.0,t +42489,100%,Tonga,3.0,f +44977,100%,,1.0,t +31381,100%,Niue,2.0,f +31381,100%,Niue,2.0,f +41431,100%,Nicaragua,2.0,f +15477,,,1.0,t +45932,0%,Peru,1.0,f +28732,100%,Kenya,1.0,t +49839,90%,Malta,2.0,f +34885,100%,Moldova,1.0,t +28269,100%,Anguilla,2.0,t +12745,100%,Congo,2.0,f +2199,100%,Faroe Islands,1.0,f +31474,100%,Senegal,1.0,t +38249,100%,Holy See (Vatican City State),1.0,f +18961,,Kiribati,2.0,f +35346,100%,,1.0,f +49791,30%,Faroe Islands,2.0,f +24713,,Lebanon,1.0,t +10009,,French Polynesia,1.0,f +24246,100%,Croatia,2.0,t +2115,100%,Jersey,2.0,t +2115,100%,Jersey,2.0,t +42026,100%,,1.0,t +39416,,,1.0,f +41173,80%,Nicaragua,1.0,f +23956,100%,Sao Tome and Principe,1.0,f +29872,,Gibraltar,2.0,t +9295,100%,Nauru,2.0,f +9527,,Denmark,1.0,t +15760,90%,Isle of Man,1.0,f +45447,,,1.0,f +41207,100%,Svalbard & Jan Mayen Islands,1.0,t +29494,56%,,2.0,t +29494,56%,,2.0,t +8429,100%,Cape Verde,2.0,t +30365,100%,,1.0,t +35320,,,1.0,t +26402,100%,Barbados,1.0,t +11024,,Kenya,1.0,f +40245,,,1.0,f +21324,,Bouvet Island (Bouvetoya),1.0,f +27401,100%,,1.0,f +15515,100%,Jersey,1.0,t +17451,50%,,1.0,f +49316,100%,Chad,1.0,t +20801,,Faroe Islands,2.0,f +1769,,Chile,2.0,t +4464,90%,Faroe Islands,2.0,t +44185,0%,Turkmenistan,1.0,t +16946,100%,Philippines,2.0,t +43313,,,1.0,f +26730,,,1.0,f +19141,,Indonesia,1.0,t +30404,100%,Niue,3.0,t +30404,100%,Niue,3.0,t +22856,,Sao Tome and Principe,2.0,t +11338,,Sao Tome and Principe,1.0,f +22030,100%,French Guiana,3.0,t +28391,100%,Kiribati,1.0,t +23838,,,1.0,f +31871,100%,Uzbekistan,1.0,t +37632,100%,Costa Rica,2.0,f +30578,,,1.0,f +18476,,,1.0,f +4120,100%,Zimbabwe,1.0,t +33427,100%,Switzerland,5.0,t +33427,100%,Switzerland,5.0,t +42693,86%,,1.0,t +31449,100%,,1.0,t +34822,,Sao Tome and Principe,1.0,f +35401,,,1.0,f +10543,100%,Pakistan,1.0,t +23125,100%,Nicaragua,2.0,t +14700,100%,Montserrat,3.0,f +14700,100%,Montserrat,3.0,f +177,90%,Svalbard & Jan Mayen Islands,1.0,f +28767,,Afghanistan,1.0,f +7279,100%,France,1.0,t +20297,80%,Montserrat,17.0,f +20976,,Jersey,2.0,f +20976,,Jersey,2.0,f +47358,100%,Mexico,2.0,t +31011,,,1.0,f +18327,100%,Palestinian Territory,2.0,t +38159,100%,,1.0,f +19668,100%,Canada,1.0,t +42428,100%,Uganda,2.0,f +38742,,Malta,1.0,f +27429,100%,Tonga,1.0,f +49221,,,2.0,f +41656,100%,Gambia,4.0,t +15619,,Denmark,2.0,f +2284,,Turks and Caicos Islands,1.0,f +40418,70%,Micronesia,1.0,t +22074,,Jersey,1.0,f +2564,91%,Uzbekistan,2.0,f +43265,100%,Anguilla,3.0,f +29235,100%,Malta,6.0,f +48879,100%,Russian Federation,1.0,t +36636,100%,Kiribati,1.0,f +8495,100%,San Marino,3.0,f +35043,100%,Niger,1.0,t +11887,,Isle of Man,2.0,f +39761,100%,Ecuador,2.0,t +47358,100%,Mexico,2.0,t +9367,,Lebanon,1.0,f +16273,,Lebanon,1.0,t +2526,100%,Brazil,1.0,f +9359,,Kiribati,1.0,f +47328,,Gambia,1.0,f +18842,,Kiribati,1.0,f +33626,,Monaco,1.0,t +17574,,Lebanon,1.0,t +29407,100%,Niue,1.0,f +11793,,Estonia,1.0,f +37662,100%,Kenya,2.0,t +14149,100%,Wallis and Futuna,1.0,t +3597,,,1.0,f +26216,,Bosnia and Herzegovina,4.0,t +34056,,Moldova,1.0,t +15504,0%,Rwanda,2.0,t +31852,,Jersey,1.0,t +18495,100%,Russian Federation,2.0,f +38354,100%,Niue,3.0,f +6883,100%,Niue,1.0,t +31659,,Svalbard & Jan Mayen Islands,1.0,t +3016,,Malta,1.0,f +22504,100%,Zimbabwe,1.0,t +39977,,Lebanon,1.0,t +34587,,Isle of Man,22.0,t +34587,,Isle of Man,22.0,t +47320,100%,Niue,1.0,t +37791,90%,Marshall Islands,3.0,f +10195,100%,Croatia,1.0,t +25988,100%,Russian Federation,2.0,f +44672,,France,1.0,f +7802,100%,Anguilla,1.0,t +37025,,Kenya,1.0,f +12745,100%,Congo,2.0,f +37117,100%,Slovakia (Slovak Republic),2.0,t +43516,,Monaco,1.0,f +33956,100%,Lebanon,1.0,t +10350,100%,Lithuania,2.0,t +2837,,Chile,1.0,f +46282,100%,Turks and Caicos Islands,1.0,f +45152,,,1.0,f +47312,,,1.0,f +44564,100%,Svalbard & Jan Mayen Islands,2.0,t +10702,,Turkmenistan,1.0,f +6870,,Faroe Islands,1.0,f +28860,100%,Lebanon,6.0,t +49822,,El Salvador,1.0,f +24433,0%,Estonia,1.0,f +20592,100%,Uzbekistan,2.0,t +6364,,Russian Federation,1.0,f +36255,100%,Uzbekistan,2.0,t +36255,100%,Uzbekistan,2.0,t +30846,,Nicaragua,1.0,t +198,100%,Philippines,1.0,t +17728,,Lebanon,1.0,f +25473,,Niue,1.0,f +19312,,Costa Rica,1.0,t +26438,,Micronesia,1.0,f +32888,90%,Cocos (Keeling) Islands,1.0,f +21457,100%,Russian Federation,4.0,t +45393,,Bosnia and Herzegovina,1.0,t +20516,100%,Jersey,6.0,t +3052,,Mauritania,3.0,f +3052,,Mauritania,3.0,f +3052,,Mauritania,3.0,f +33781,,Guinea,5.0,t +19984,100%,Ecuador,14.0,t +17650,100%,Tanzania,1.0,f +35625,98%,Estonia,25.0,t +33142,100%,Cape Verde,10.0,f +33142,100%,Cape Verde,10.0,f +44619,100%,Finland,1.0,f +22780,100%,Kenya,2.0,t +1795,,French Guiana,1.0,f +31566,,Sao Tome and Principe,1.0,t +21359,,Mauritania,2.0,t +28571,,Gambia,2.0,f +11099,100%,American Samoa,1.0,t +41954,,Turkmenistan,1.0,f +27754,100%,French Guiana,2.0,t +3131,100%,Tanzania,3.0,f +156,100%,Marshall Islands,2.0,f +49226,,Lebanon,1.0,f +11218,,,1.0,f +31727,,Rwanda,1.0,t +43211,,Lebanon,1.0,t +35931,100%,Guinea,1.0,f +31048,100%,Lebanon,1.0,f +5033,100%,Indonesia,1.0,f +3911,100%,Andorra,1.0,f +42073,,Greenland,1.0,f +26939,100%,Philippines,6.0,f +35625,98%,Estonia,25.0,t +46922,,Lebanon,2.0,f +46922,,Lebanon,2.0,f +38174,,Kiribati,1.0,f +37870,,Congo,1.0,t +6438,,Vanuatu,2.0,f +14324,,Micronesia,1.0,f +29750,,Guinea,2.0,t +22867,100%,Grenada,1.0,t +39467,100%,Nicaragua,4.0,t +28571,,Gambia,2.0,f +14215,70%,Holy See (Vatican City State),2.0,t +5041,100%,Chile,7.0,f +5223,100%,Chile,1.0,t +35528,,Costa Rica,1.0,f +16415,,Lebanon,1.0,f +15413,80%,Vanuatu,7.0,t +38514,,Kenya,1.0,f +6607,100%,Zimbabwe,1.0,f +19833,,Mauritania,1.0,f +16077,90%,Gibraltar,2.0,t +16140,100%,Uzbekistan,2.0,f +20152,100%,Bahrain,2.0,t +37791,90%,Marshall Islands,3.0,f +6038,,,1.0,f +33400,97%,Zimbabwe,5.0,t +33400,97%,Zimbabwe,5.0,t +16184,100%,Malta,2.0,f +10698,90%,Chile,2.0,f +29476,,Bouvet Island (Bouvetoya),1.0,f +40047,,Malta,1.0,f +38693,100%,Estonia,1.0,t +1164,,Tonga,1.0,t +2980,,Micronesia,1.0,t +35714,100%,Malawi,2.0,f +9305,100%,Sao Tome and Principe,2.0,t +30298,,Turks and Caicos Islands,1.0,f +16690,88%,Malawi,2.0,t +33987,100%,Kenya,1.0,t +1348,100%,Turks and Caicos Islands,1.0,f +40281,100%,,3.0,f +7941,57%,Kiribati,1.0,t +42135,,Turks and Caicos Islands,1.0,t +16793,,Vanuatu,1.0,f +29918,100%,Vietnam,2.0,t +46451,,Russian Federation,1.0,f +13831,100%,Russian Federation,1.0,t +42614,,Russian Federation,1.0,f +22380,100%,Christmas Island,1.0,f +41900,,Anguilla,1.0,t +9932,100%,France,1.0,f +43455,,Lebanon,1.0,f +35827,,Kiribati,1.0,f +43481,100%,Russian Federation,4.0,t +49050,,Uganda,1.0,t +9432,,Brazil,1.0,f +42458,97%,Indonesia,14.0,t +45912,,Jersey,1.0,t +1272,,Somalia,1.0,f +10698,90%,Chile,2.0,f +24246,100%,Croatia,2.0,t +38640,70%,Sao Tome and Principe,1.0,t +8584,100%,Costa Rica,7.0,t +15079,100%,Mexico,1.0,t +1536,100%,Grenada,2.0,f +37912,100%,Papua New Guinea,2.0,t +12722,100%,Costa Rica,1.0,f +39643,100%,Zimbabwe,3.0,t +24781,100%,Svalbard & Jan Mayen Islands,1.0,t +23308,100%,Tonga,2.0,t +14754,67%,Chad,1.0,t +37298,,Montserrat,1.0,t +2132,60%,Jersey,2.0,f +30112,,Uzbekistan,1.0,t +39048,,Wallis and Futuna,1.0,f +3623,100%,Guinea,1.0,t +7859,,Niue,1.0,f +43961,100%,Gibraltar,9.0,t +10424,,Turks and Caicos Islands,1.0,f +20801,,Faroe Islands,2.0,f +42498,,Malawi,1.0,t +12752,,Zimbabwe,2.0,f +30276,,Isle of Man,1.0,t +1539,100%,Micronesia,3.0,f +32060,,Russian Federation,1.0,t +270,,Micronesia,1.0,t +2765,,Zimbabwe,1.0,f +30435,99%,Cape Verde,41.0,f +17233,100%,Chad,1.0,t +12017,100%,Guinea,1.0,f +21115,,,1.0,f +6871,,Chad,2.0,t +11883,,Kenya,1.0,f +11592,,Switzerland,1.0,f +31786,100%,Barbados,2.0,t +15265,,Niue,1.0,f +2251,,Guernsey,1.0,t +6089,,Portugal,1.0,f +7777,,Pakistan,2.0,f +3840,100%,Estonia,1.0,t +34669,100%,Bosnia and Herzegovina,1.0,t +1539,100%,Micronesia,3.0,f +22091,100%,Faroe Islands,9.0,f +17735,100%,Russian Federation,2.0,f +44455,100%,Micronesia,1.0,t +46094,,Turkmenistan,1.0,f +1294,100%,Lebanon,1.0,f +44211,,El Salvador,1.0,f +21524,100%,Reunion,1.0,t +43684,80%,Mauritania,1.0,t +16184,100%,Malta,2.0,f +38836,100%,Lebanon,3.0,f +18809,100%,Somalia,1.0,t +47371,,Guinea,1.0,f +35086,,Brazil,1.0,f +17361,100%,Netherlands Antilles,1.0,f +46720,,Denmark,1.0,t +39955,100%,Chad,1.0,t +15619,,Denmark,2.0,f +38642,,Croatia,2.0,f +38747,,Zimbabwe,1.0,t +1895,,Turks and Caicos Islands,1.0,f +30922,100%,Lebanon,1.0,t +31284,100%,Niue,1.0,f +48515,100%,Croatia,2.0,t +19078,,Croatia,2.0,f +12225,,Finland,1.0,t +19695,,Gibraltar,1.0,t +30439,,,1.0,f +42108,,Gambia,1.0,t +15673,,Russian Federation,1.0,f +44046,100%,Cuba,1.0,t +38100,100%,Isle of Man,2.0,t +49848,,Reunion,1.0,t +28269,100%,Anguilla,2.0,t +35125,,Kenya,2.0,t +1678,,Sao Tome and Principe,1.0,t +10842,100%,Niue,1.0,f +35176,100%,Chile,3.0,t +48356,100%,Jersey,3.0,t +18524,100%,Philippines,2.0,t +45070,100%,Micronesia,1.0,t +47939,89%,Niue,1.0,t +41591,,Tunisia,1.0,f +3107,,Kiribati,1.0,f +40729,,Niue,2.0,f +2584,100%,Faroe Islands,5.0,f +2584,100%,Faroe Islands,5.0,f +2584,100%,Faroe Islands,5.0,f +2584,100%,Faroe Islands,5.0,f +18043,100%,Niue,1.0,t +33514,100%,Marshall Islands,2.0,t +21642,100%,Denmark,1.0,f +16590,,Gambia,1.0,f +31016,100%,Chile,1.0,t +39151,,United Kingdom,1.0,f +4262,,,1.0,f +27227,100%,Isle of Man,2.0,t +8867,100%,Turkmenistan,1.0,f +43584,,Turks and Caicos Islands,1.0,t +27355,100%,Malta,1.0,t +46297,100%,Sao Tome and Principe,12.0,t +46691,90%,Uzbekistan,38.0,f +18080,,Lebanon,1.0,t +29664,100%,Jersey,1.0,f +48614,100%,,1.0,t +40801,,Lebanon,1.0,t +21676,80%,Monaco,2.0,f +32651,100%,Guinea,1.0,t +41425,,Tonga,1.0,f +36076,100%,,1.0,f +26087,,Costa Rica,1.0,t +5076,100%,Jersey,2.0,t +37626,,Micronesia,3.0,f +46649,,Guinea,3.0,t +8695,,Papua New Guinea,1.0,f +35240,100%,Puerto Rico,4.0,f +18178,,Micronesia,1.0,f +12034,,Bosnia and Herzegovina,1.0,f +7394,,Indonesia,1.0,t +28653,100%,Russian Federation,3.0,t +22881,,Barbados,5.0,t +17545,,Afghanistan,1.0,f +7063,,Lebanon,1.0,t +22856,,Sao Tome and Principe,2.0,t +9624,100%,Uzbekistan,1.0,t +31553,100%,Lebanon,1.0,f +29760,100%,Malawi,1.0,t +44869,,Russian Federation,1.0,f +17240,,Kiribati,1.0,f +17735,100%,Russian Federation,2.0,f +44980,100%,Marshall Islands,1.0,f +8837,,Russian Federation,1.0,f +40562,,Faroe Islands,1.0,f +42703,100%,Zimbabwe,1.0,t +48132,100%,Chile,2.0,t +33514,100%,Marshall Islands,2.0,t +37463,,,1.0,f +16209,80%,Ecuador,3.0,f +38251,100%,Zimbabwe,1.0,t +34234,0%,Zimbabwe,2.0,t +12799,80%,Faroe Islands,2.0,f +11103,72%,Russian Federation,3.0,f +28860,100%,Lebanon,6.0,t +28860,100%,Lebanon,6.0,t +40752,100%,Tunisia,5.0,t +17141,100%,Turks and Caicos Islands,1.0,t +4297,100%,Kenya,4.0,t +29657,,Costa Rica,1.0,t +47306,100%,,2.0,f +5559,,Cape Verde,1.0,t +26561,,Anguilla,3.0,f +19774,100%,Uruguay,1.0,t +24560,,El Salvador,1.0,f +5550,,Zimbabwe,1.0,f +21204,,Netherlands,1.0,t +16503,100%,Brazil,1.0,t +6232,,Guinea,15.0,t +30216,98%,Maldives,34.0,f +30216,98%,Maldives,34.0,f +36148,100%,Micronesia,1.0,t +30216,98%,Maldives,34.0,f +30216,98%,Maldives,34.0,f +44889,,Micronesia,1.0,f +48203,,Guinea,1.0,f +32587,,Jersey,1.0,f +23543,100%,Spain,5.0,t +28936,100%,Mexico,1.0,t +23359,,Afghanistan,1.0,f +1278,,Kiribati,1.0,f +26561,,Anguilla,3.0,f +26561,,Anguilla,3.0,f +14215,70%,Holy See (Vatican City State),2.0,t +19050,100%,Kiribati,2.0,t +19050,100%,Kiribati,2.0,t +17726,,Lebanon,1.0,t +47306,100%,,2.0,f +13510,100%,Fiji,3.0,t +15874,100%,Somalia,2.0,t +11878,0%,Jersey,1.0,f +31100,,Nicaragua,1.0,f +22702,,Niue,1.0,f +17109,,Marshall Islands,1.0,t +19354,,Costa Rica,1.0,f +41044,,Chile,1.0,f +15075,,El Salvador,1.0,f +28415,,,1.0,f +31603,,Turks and Caicos Islands,1.0,f +37187,,France,3.0,t +11716,100%,,2.0,t +26939,100%,Philippines,6.0,f +20890,90%,Uzbekistan,3.0,t +43934,,,1.0,f +20592,100%,Uzbekistan,2.0,t +26704,100%,Malawi,2.0,t +7469,,Russian Federation,1.0,t +37912,100%,Papua New Guinea,2.0,t +8320,90%,Guinea,1.0,f +49765,100%,Uzbekistan,1.0,t +35866,,Guernsey,1.0,t +14539,100%,Nicaragua,1.0,t +28718,,Gambia,1.0,f +48818,,Croatia,1.0,t +29086,100%,Tunisia,1.0,t +49563,,Chad,1.0,f +37011,,Svalbard & Jan Mayen Islands,2.0,f +31991,,Croatia,1.0,t +26319,,Turks and Caicos Islands,1.0,f +15303,100%,Tunisia,2.0,f +44864,,Malta,3.0,t +15087,,Zimbabwe,2.0,t +42867,100%,Indonesia,2.0,t +3474,100%,Niue,2.0,f +15300,100%,Russian Federation,3.0,t +45891,86%,Bosnia and Herzegovina,1.0,t +12303,100%,Croatia,2.0,f +48674,100%,Isle of Man,2.0,f +11655,,Slovenia,1.0,f +25854,,Sao Tome and Principe,1.0,f +37273,,Isle of Man,1.0,f +34401,50%,Micronesia,4.0,f +43638,,Guinea,1.0,f +46814,,Niue,1.0,f +12701,100%,Monaco,1.0,f +49839,90%,Malta,2.0,f +48652,100%,Isle of Man,1.0,t +13271,90%,El Salvador,1.0,f +9243,100%,Isle of Man,1.0,f +5702,100%,Monaco,2.0,f +49361,,Jersey,2.0,t +38681,,Gambia,1.0,f +30797,90%,Tunisia,1.0,f +45741,100%,Uzbekistan,6.0,t +20554,,Chile,1.0,f +45741,100%,Uzbekistan,6.0,t +11970,,Malawi,1.0,t +19423,100%,,1.0,t +13201,100%,Kenya,1.0,f +28907,,Marshall Islands,1.0,f +23413,,Tanzania,1.0,t +44939,100%,Sao Tome and Principe,1.0,t +49909,100%,Denmark,2.0,t +42322,88%,Uzbekistan,4.0,f +11206,100%,Kenya,2.0,f +37475,100%,French Guiana,1.0,t +39511,,Uruguay,1.0,t +15334,,Estonia,1.0,t +49909,100%,Denmark,2.0,t +2824,25%,Barbados,5.0,f +46307,100%,Zimbabwe,3.0,f +22072,100%,Palestinian Territory,2.0,f +26537,100%,Turks and Caicos Islands,2.0,f +11098,,Kiribati,1.0,f +5076,100%,Jersey,2.0,t +19984,100%,Ecuador,14.0,t +25346,,,1.0,f +12130,100%,Russian Federation,1.0,t +7586,75%,Costa Rica,1.0,t +26537,100%,Turks and Caicos Islands,2.0,f +10696,,El Salvador,1.0,t +37674,100%,Russian Federation,1.0,f +12847,100%,France,2.0,f +17150,,Vanuatu,2.0,t +29998,,Cocos (Keeling) Islands,2.0,f +5822,50%,Tunisia,1.0,t +10472,100%,Zimbabwe,2.0,f +37511,100%,Niue,1.0,f +35240,100%,Puerto Rico,4.0,f +35240,100%,Puerto Rico,4.0,f +14870,100%,Jersey,1.0,t +22098,80%,Marshall Islands,2.0,t +20296,,Zimbabwe,1.0,t +22215,,Nicaragua,2.0,f +26729,,Kiribati,2.0,f +14034,100%,Russian Federation,1.0,f +44336,83%,Monaco,1.0,t +49515,100%,Libyan Arab Jamahiriya,4.0,f +49515,100%,Libyan Arab Jamahiriya,4.0,f +24265,75%,Ecuador,2.0,f +39528,100%,Turks and Caicos Islands,1.0,f +17359,,Chad,1.0,f +1158,,Lebanon,1.0,f +29675,,Lebanon,1.0,f +12237,,Lebanon,1.0,f +17957,,Croatia,1.0,f +3424,100%,Costa Rica,1.0,t +22860,100%,Turkmenistan,2.0,t +44578,100%,Niue,2.0,t +18397,100%,Barbados,1.0,t +4378,100%,Tonga,4.0,f +19249,100%,Uganda,4.0,f +41378,100%,Kiribati,1.0,f +44131,100%,,1.0,f +32320,100%,Mexico,1.0,f +17628,,Chile,1.0,t +40729,,Niue,2.0,f +28681,100%,Guinea,1.0,f +32612,,Tanzania,1.0,t +30563,,Australia,1.0,f +40091,100%,Niue,2.0,t +26482,,Estonia,1.0,f +26991,,Gambia,1.0,f +42322,88%,Uzbekistan,4.0,f +24176,100%,Kiribati,2.0,f +36537,100%,Guinea,1.0,t +17120,100%,Uzbekistan,2.0,t +44603,,Estonia,1.0,f +9953,,Somalia,1.0,f +21841,100%,Puerto Rico,3.0,t +16006,100%,Tanzania,3.0,t +15271,100%,Chile,3.0,t +43191,0%,Afghanistan,1.0,f +26152,100%,Anguilla,6.0,t +29027,,Costa Rica,1.0,f +46297,100%,Sao Tome and Principe,12.0,t +16822,100%,Uzbekistan,1.0,t +30313,67%,Australia,2.0,f +11850,,Micronesia,1.0,f +30575,,Isle of Man,1.0,f +12597,,Zimbabwe,1.0,f +46307,100%,Zimbabwe,3.0,f +47515,0%,Kiribati,1.0,f +17396,100%,Micronesia,1.0,f +9876,,Costa Rica,1.0,f +36431,,Guinea,1.0,f +2574,100%,Jersey,1.0,t +25478,,Turks and Caicos Islands,1.0,f +45474,100%,El Salvador,4.0,t +5567,100%,Bosnia and Herzegovina,2.0,t +46297,100%,Sao Tome and Principe,12.0,t +39013,86%,Russian Federation,1.0,t +2912,,Sao Tome and Principe,1.0,t +17930,100%,Jersey,2.0,t +44864,,Malta,3.0,t +29064,,Costa Rica,1.0,f +4704,,United Kingdom,1.0,f +28523,57%,Niue,1.0,f +38240,80%,Guinea,2.0,f +48892,100%,Isle of Man,1.0,t +44885,100%,Philippines,1.0,t +17722,,Cuba,1.0,t +41968,100%,Venezuela,1.0,f +7572,100%,Guernsey,1.0,f +47909,100%,Russian Federation,1.0,t +4013,100%,Malta,1.0,f +11506,,,1.0,f +28260,100%,United Kingdom,1.0,f +7299,100%,Svalbard & Jan Mayen Islands,1.0,f +13693,100%,United Kingdom,5.0,t +19221,100%,,1.0,t +31791,0%,Brazil,1.0,f +45755,100%,Venezuela,3.0,f +9038,100%,Marshall Islands,3.0,t +23962,,Guinea,2.0,t +23962,,Guinea,2.0,t +19078,,Croatia,2.0,f +9939,100%,Philippines,24.0,f +33526,,Reunion,1.0,t +43300,,Nicaragua,2.0,t +11633,,Anguilla,1.0,f +5689,,Mauritania,1.0,f +9089,,,2.0,f +11049,100%,French Guiana,1.0,t +466,,Lebanon,1.0,f +10028,,El Salvador,1.0,t +21158,,Lebanon,2.0,t +47744,100%,,3.0,t +4267,100%,Senegal,22.0,t +48142,,Monaco,2.0,f +43352,,Ghana,1.0,f +48142,,Monaco,2.0,f +32039,,Guinea,5.0,f +8291,,,1.0,f +46828,,Wallis and Futuna,1.0,t +7069,,Micronesia,1.0,f +34344,100%,Denmark,1.0,f +46297,100%,Sao Tome and Principe,12.0,t +9939,100%,Philippines,24.0,f +43631,,Rwanda,2.0,f +38897,100%,Uruguay,1.0,f +34684,100%,El Salvador,2.0,t +41566,,Russian Federation,1.0,f +5348,,Gibraltar,1.0,t +39555,100%,Marshall Islands,13.0,t +30311,,Niue,2.0,f +31759,40%,Rwanda,1.0,t +35170,100%,Vietnam,5.0,t +12207,,Indonesia,1.0,t +5603,100%,Niue,1.0,f +34784,60%,Faroe Islands,19.0,t +17232,,France,1.0,f +39555,100%,Marshall Islands,13.0,t +21869,,Lebanon,1.0,t +727,,Holy See (Vatican City State),1.0,t +50047,,Russian Federation,2.0,t +36579,100%,Jersey,1.0,f +30118,100%,Nicaragua,1.0,f +761,100%,,2.0,f +3039,100%,Tonga,1.0,t +37761,100%,Turkmenistan,2.0,f +22508,100%,Gambia,1.0,t +11339,,Kiribati,2.0,t +834,100%,Indonesia,1.0,f +44736,100%,Guernsey,1.0,t +34739,,Afghanistan,1.0,t +24765,0%,Tanzania,4.0,t +17150,,Vanuatu,2.0,t +43781,,Lebanon,1.0,f +4015,100%,Uzbekistan,1.0,t +8893,,Lebanon,1.0,f +27390,25%,Niue,2.0,f +23415,,Papua New Guinea,1.0,f +44337,,Portugal,1.0,f +33480,,Guernsey,1.0,t +16946,100%,Philippines,2.0,t +45546,100%,Cape Verde,19.0,t +45124,,Costa Rica,2.0,f +45124,,Costa Rica,2.0,f +44421,,Monaco,1.0,f +44365,100%,Russian Federation,2.0,t +47222,,Marshall Islands,1.0,f +12579,,Jersey,1.0,t +29396,,Somalia,1.0,t +36819,100%,,1.0,t +4959,,Brazil,1.0,f +20908,100%,Maldives,1.0,t +23065,,Kenya,1.0,f +23211,,Turks and Caicos Islands,3.0,t +33293,,Malawi,1.0,f +24941,,Kenya,1.0,f +30385,,Lithuania,1.0,f +36422,,Montserrat,1.0,f +12418,100%,Uruguay,1.0,f +30039,100%,Russian Federation,4.0,t +17533,0%,Mauritania,1.0,f +42483,,Cape Verde,1.0,f +20463,100%,Lithuania,2.0,f +20350,100%,,1.0,f +32744,100%,Russian Federation,2.0,f +30453,,Svalbard & Jan Mayen Islands,1.0,f +32744,100%,Russian Federation,2.0,f +28420,100%,Costa Rica,1.0,t +35020,100%,Jersey,1.0,t +12731,,Costa Rica,1.0,f +20698,80%,Maldives,1.0,t +24906,,Zimbabwe,1.0,f +33400,97%,Zimbabwe,5.0,t +45600,100%,Gibraltar,2.0,f +25870,100%,Croatia,1.0,t +27286,100%,Vanuatu,1.0,t +7218,100%,,1.0,t +9235,,Ecuador,1.0,t +34167,,France,1.0,f +35196,,Tonga,1.0,t +8929,,Indonesia,1.0,f +15137,100%,Marshall Islands,10.0,t +40509,,Congo,1.0,f +40340,,Lithuania,1.0,f +10272,100%,Costa Rica,1.0,t +4211,,Finland,1.0,f +16210,50%,Mauritania,1.0,t +41845,,Niue,1.0,t +37873,,Kiribati,2.0,f +38758,,Gambia,1.0,f +23125,100%,Nicaragua,2.0,t +33062,100%,El Salvador,1.0,t +26515,,Russian Federation,1.0,f +19115,,Croatia,1.0,t +43640,100%,Turks and Caicos Islands,1.0,f +35220,,Uzbekistan,1.0,t +21710,,Isle of Man,2.0,t +18984,100%,Bosnia and Herzegovina,1.0,f +724,100%,Zimbabwe,8.0,f +43790,90%,Sao Tome and Principe,1.0,t +12689,,Christmas Island,1.0,f +43621,,Lebanon,1.0,t +35029,100%,Niue,4.0,f +14970,100%,Marshall Islands,1.0,t +3805,,Uzbekistan,1.0,f +21404,,Marshall Islands,1.0,f +25530,,Senegal,1.0,t +41861,100%,Zimbabwe,1.0,t +713,,Lebanon,2.0,f +29901,33%,Lithuania,1.0,t +40091,100%,Niue,2.0,t +30937,,Zimbabwe,1.0,t +1642,100%,Marshall Islands,17.0,f +32395,,Tonga,1.0,f +17244,,Lebanon,2.0,t +34563,,,2.0,t +4740,,Kiribati,1.0,f +23403,,Denmark,1.0,t +19634,,Chile,1.0,f +21664,100%,Guinea,1.0,t +35428,,Switzerland,1.0,t +49437,90%,Cuba,2.0,f +24082,,Russian Federation,1.0,f +40887,,,1.0,t +46089,100%,Sao Tome and Principe,3.0,t +24632,100%,Croatia,4.0,t +33327,100%,,3.0,f +36988,88%,Svalbard & Jan Mayen Islands,3.0,t +40540,,Cape Verde,7.0,f +37761,100%,Turkmenistan,2.0,f +15503,86%,Korea,1.0,t +26653,,Lebanon,1.0,t +40540,,Cape Verde,7.0,f +45599,,Lebanon,1.0,f +37105,,Zimbabwe,1.0,f +49154,100%,Indonesia,3.0,t +18781,,Gambia,1.0,f +43335,100%,Zimbabwe,1.0,t +11887,,Isle of Man,2.0,f +5799,,,2.0,f +29725,,Guinea,2.0,t +35176,100%,Chile,3.0,t +5980,,Kiribati,1.0,f +1371,,Turks and Caicos Islands,1.0,f +9793,,France,1.0,t +9689,100%,Guinea,2.0,f +19158,,Pakistan,2.0,t +3497,,Uzbekistan,2.0,t +39249,,Slovakia (Slovak Republic),1.0,f +15413,80%,Vanuatu,7.0,t +41478,100%,Monaco,2.0,f +7932,,,2.0,f +3747,,,1.0,f +13601,,Kiribati,1.0,t +23891,90%,Zimbabwe,3.0,t +38176,,Estonia,1.0,f +35085,100%,Congo,1.0,f +17724,,Turks and Caicos Islands,6.0,t +40412,97%,Netherlands,26.0,t +14909,,Uganda,1.0,t +36654,100%,Sao Tome and Principe,2.0,f +8682,,France,2.0,f +10255,,Malta,1.0,f +4966,,Estonia,1.0,f +36245,,Zimbabwe,1.0,t +48934,,Gambia,2.0,f +49154,100%,Indonesia,3.0,t +17062,100%,Jersey,1.0,f +6748,,Costa Rica,1.0,t +20873,90%,Nicaragua,1.0,t +6085,,Costa Rica,1.0,f +14926,100%,Gambia,2.0,t +16350,,Uzbekistan,2.0,f +12790,,Zimbabwe,1.0,f +23277,,Finland,1.0,t +26824,,Denmark,1.0,f +44859,,,2.0,f +34066,100%,,2.0,t +6088,100%,,14.0,t +44576,,Zimbabwe,1.0,f +29253,100%,Maldives,2.0,t +43847,,Suriname,1.0,f +37632,100%,Costa Rica,2.0,f +3764,,China,1.0,t +3294,100%,Uganda,3.0,f +44145,100%,Rwanda,4.0,t +7445,100%,Lebanon,1.0,f +9689,100%,Guinea,2.0,f +14263,,China,1.0,f +35606,0%,Zimbabwe,1.0,f +44859,,,2.0,f +44755,,Malawi,1.0,f +5169,100%,Uzbekistan,1.0,t +17105,100%,Uzbekistan,1.0,t +21834,,,1.0,f +38280,100%,Isle of Man,1.0,f +39748,,Bosnia and Herzegovina,3.0,t +31655,,Grenada,1.0,t +1175,100%,Monaco,2.0,t +24995,,Gambia,3.0,t +24995,,Gambia,3.0,t +24995,,Gambia,3.0,t +17313,,Costa Rica,1.0,f +35321,100%,Russian Federation,2.0,t +32640,100%,Lebanon,1.0,f +30232,,Niue,1.0,f +46598,0%,Zimbabwe,1.0,f +43634,100%,Fiji,2.0,t +18961,,Kiribati,2.0,f +1779,,China,1.0,f +44964,,Lebanon,1.0,t +8604,,Micronesia,1.0,f +34401,50%,Micronesia,4.0,f +25970,100%,Gambia,1.0,f +49673,92%,Malawi,3.0,f +49673,92%,Malawi,3.0,f +9148,100%,Uganda,1.0,t +32884,,Puerto Rico,1.0,f +49638,100%,Portugal,2.0,f +12144,100%,Niue,4.0,t +12144,100%,Niue,4.0,t +10853,100%,Guinea,5.0,f +45685,0%,Finland,1.0,t +38230,100%,Niue,3.0,t +49520,100%,Gambia,1.0,t +11250,,Monaco,1.0,f +48329,,Sao Tome and Principe,1.0,t +47298,100%,Lebanon,1.0,t +34401,50%,Micronesia,4.0,f +8095,100%,Maldives,1.0,t +12851,,Peru,1.0,t +33228,,Chile,1.0,f +40941,94%,Russian Federation,4.0,t +23940,,Turks and Caicos Islands,1.0,f +9745,,,1.0,t +11693,67%,Mauritania,1.0,f +47743,,Chile,1.0,f +23215,100%,Djibouti,2.0,f +5361,100%,Niger,3.0,t +17400,,Tunisia,1.0,f +7932,,,2.0,f +40968,100%,Vietnam,1.0,t +36322,,Chile,1.0,f +29379,,Cape Verde,1.0,t +6187,100%,Micronesia,2.0,t +40412,97%,Netherlands,26.0,t +26896,100%,Tonga,3.0,f +33964,,French Guiana,3.0,f +41676,,Uzbekistan,1.0,t +40412,97%,Netherlands,26.0,t +30108,100%,Bosnia and Herzegovina,1.0,f +27918,,Chad,1.0,t +27362,,Tanzania,1.0,f +5061,,Guinea,1.0,f +15381,,Monaco,1.0,t +5115,,Togo,1.0,t +14017,100%,Nicaragua,2.0,t +33598,70%,Holy See (Vatican City State),1.0,t +19372,100%,Chad,3.0,f +5925,,Kiribati,1.0,f +4232,100%,Bouvet Island (Bouvetoya),3.0,t +4232,100%,Bouvet Island (Bouvetoya),3.0,t +48356,100%,Jersey,3.0,t +18259,,Uganda,1.0,t +12702,,China,3.0,f +49878,100%,Maldives,2.0,t +37491,100%,Lebanon,1.0,t +45595,100%,Malawi,1.0,t +44740,,Bouvet Island (Bouvetoya),2.0,t +24112,100%,Russian Federation,1.0,t +333,,Tonga,1.0,t +990,,Costa Rica,1.0,f +17684,,Kenya,1.0,t +14621,,Niger,1.0,f +11817,,Tonga,3.0,f +41885,100%,French Guiana,1.0,f +35243,100%,Kenya,2.0,t +14894,100%,Lebanon,1.0,t +16048,,Russian Federation,1.0,f +24880,,Costa Rica,1.0,f +24926,100%,Micronesia,2.0,t +11229,,Korea,1.0,f +26089,100%,Jersey,1.0,t +41130,,Zimbabwe,1.0,f +16095,85%,Isle of Man,2.0,t +5294,,Russian Federation,1.0,t +12935,100%,Malawi,1.0,t +6137,,Guinea,1.0,f +9403,,Papua New Guinea,1.0,f +2483,,Gambia,1.0,f +34108,,French Guiana,1.0,t +12169,100%,Cape Verde,2.0,t +33847,,Guinea,2.0,f +22015,80%,Lebanon,1.0,t +32299,100%,Guinea,6.0,t +42428,100%,Uganda,2.0,f +9039,83%,Sao Tome and Principe,1.0,t +17011,100%,Niger,1.0,f +16051,80%,Barbados,1.0,t +12144,100%,Niue,4.0,t +42023,,Marshall Islands,1.0,f +12144,100%,Niue,4.0,t +24314,,Niue,1.0,f +119,,Estonia,1.0,f +7251,100%,Turks and Caicos Islands,3.0,t +48667,100%,Guinea,1.0,f +43643,,Zimbabwe,1.0,f +7251,100%,Turks and Caicos Islands,3.0,t +9914,100%,Guernsey,2.0,f +49685,100%,Brazil,2.0,t +11588,100%,Faroe Islands,2.0,f +44835,100%,United Kingdom,3.0,f +21824,,Bouvet Island (Bouvetoya),1.0,f +48431,83%,,2.0,f +34250,,Bosnia and Herzegovina,2.0,t +44640,100%,French Polynesia,4.0,t +10333,,Nicaragua,1.0,f +26388,,Kiribati,1.0,f +46421,80%,Croatia,2.0,t +44147,93%,Uzbekistan,2.0,t +5361,100%,Niger,3.0,t +11584,100%,Chad,1.0,t +49383,100%,Guinea,1.0,t +7948,,Monaco,1.0,t +22193,,Svalbard & Jan Mayen Islands,1.0,t +24858,100%,Indonesia,2.0,t +28454,100%,Kiribati,3.0,f +43519,100%,Kenya,1.0,t +4249,,Venezuela,1.0,t +21809,100%,French Guiana,2.0,t +18449,,Guinea,1.0,f +4963,100%,Anguilla,1.0,f +31278,,Somalia,1.0,t +46229,,French Guiana,1.0,t +33483,,French Guiana,1.0,f +37375,,Gambia,1.0,f +366,,Svalbard & Jan Mayen Islands,1.0,t +29932,100%,France,2.0,t +38836,100%,Lebanon,3.0,f +12384,,Djibouti,1.0,t +22842,,Gambia,1.0,t +11316,100%,Uzbekistan,4.0,t +38836,100%,Lebanon,3.0,f +35352,,Estonia,2.0,t +14887,100%,Guinea,1.0,f +46235,,Turks and Caicos Islands,1.0,f +49865,,Costa Rica,1.0,t +42186,60%,Zimbabwe,3.0,t +2718,,Costa Rica,3.0,f +7447,100%,Croatia,1.0,t +44640,100%,French Polynesia,4.0,t +9725,,Venezuela,1.0,t +10846,,Denmark,1.0,t +39852,100%,Grenada,2.0,t +39852,100%,Grenada,2.0,t +39104,,Togo,1.0,f +42458,97%,Indonesia,14.0,t +14533,100%,Jersey,1.0,t +549,,Libyan Arab Jamahiriya,1.0,f +26387,100%,Isle of Man,6.0,t +39490,100%,Gambia,2.0,t +39129,67%,Mauritania,3.0,t +20627,,Bahrain,1.0,t +33528,100%,Tonga,1.0,t +19984,100%,Ecuador,14.0,t +2902,100%,Nicaragua,1.0,t +48961,90%,Turkmenistan,2.0,t +35382,100%,Kenya,1.0,f +45837,,Chile,1.0,t +7165,100%,Brazil,5.0,t +13376,100%,Zimbabwe,3.0,f +13376,100%,Zimbabwe,3.0,f +2718,,Costa Rica,3.0,f +42858,100%,Philippines,1.0,t +43992,100%,Uzbekistan,3.0,t +39832,100%,Guinea,3.0,f +44999,,Lebanon,1.0,t +19984,100%,Ecuador,14.0,t +95,100%,Chile,3.0,t +33838,,,1.0,t +5786,,El Salvador,2.0,f +42322,88%,Uzbekistan,4.0,f +42186,60%,Zimbabwe,3.0,t +9111,,Lebanon,2.0,f +37646,100%,Estonia,60.0,f +39467,100%,Nicaragua,4.0,t +13703,50%,Kenya,2.0,f +21164,,Uganda,2.0,t +11683,,Russian Federation,1.0,t +8936,,Cocos (Keeling) Islands,1.0,f +40290,100%,Tanzania,1.0,t +25500,,Lebanon,3.0,t +25500,,Lebanon,3.0,t +46528,100%,Uzbekistan,3.0,t +2718,,Costa Rica,3.0,f +40412,97%,Netherlands,26.0,t +1152,,Bosnia and Herzegovina,2.0,t +14815,,Sao Tome and Principe,1.0,f +48991,76%,Bosnia and Herzegovina,7.0,t +19461,100%,Isle of Man,5.0,f +34495,100%,Uzbekistan,1.0,t +29444,100%,Lebanon,2.0,f +8439,97%,Rwanda,17.0,t +1235,,Ukraine,2.0,f +20218,100%,Slovakia (Slovak Republic),11.0,t +29725,,Guinea,2.0,t +40384,89%,Vietnam,1.0,t +2725,100%,,3.0,t +45206,100%,Ecuador,2.0,t +7017,,Lebanon,1.0,f +12980,100%,Uzbekistan,3.0,t +5597,,Libyan Arab Jamahiriya,1.0,f +45885,0%,Russian Federation,3.0,t +45461,,Cuba,1.0,t +47744,100%,,3.0,t +43056,100%,Kenya,1.0,f +10526,,Somalia,1.0,t +40227,100%,Tanzania,1.0,t +6620,50%,Niue,3.0,t +37343,75%,Ecuador,4.0,t +25525,90%,Faroe Islands,3.0,t +40412,97%,Netherlands,26.0,t +40412,97%,Netherlands,26.0,t +11716,100%,,2.0,t +8584,100%,Costa Rica,7.0,t +20229,100%,Papua New Guinea,1.0,f +40412,97%,Netherlands,26.0,t +18958,,Niue,1.0,f +28566,78%,Slovakia (Slovak Republic),79.0,t +36692,,Guinea,2.0,f +890,100%,Zimbabwe,3.0,f +46161,100%,Zimbabwe,2.0,t +46161,100%,Zimbabwe,2.0,t +24278,,Sao Tome and Principe,1.0,f +34253,,Lebanon,1.0,f +9815,100%,Nicaragua,1.0,t +30666,90%,Gibraltar,2.0,t +30666,90%,Gibraltar,2.0,t +5777,100%,Puerto Rico,3.0,t +43634,100%,Fiji,2.0,t +15416,100%,Rwanda,1.0,t +47777,0%,Isle of Man,1.0,t +49352,,,1.0,t +10039,100%,Vanuatu,6.0,t +37873,,Kiribati,2.0,f +8238,91%,Barbados,15.0,t +37998,100%,Monaco,2.0,t +42716,,Turkmenistan,2.0,f +30460,80%,Netherlands,1.0,f +10330,75%,Micronesia,1.0,f +36846,,Maldives,1.0,f +19761,,Reunion,1.0,f +48297,,Uganda,1.0,t +47581,75%,,3.0,f +47581,75%,,3.0,f +24436,,Niger,1.0,t +3399,,Uganda,1.0,f +14229,0%,Switzerland,1.0,f +6845,80%,Croatia,2.0,t +6399,95%,Marshall Islands,5.0,f +37685,100%,Sao Tome and Principe,1.0,t +10376,,Gambia,1.0,f +5856,,Montserrat,1.0,t +31379,100%,France,5.0,t +15756,94%,Afghanistan,2.0,t +17300,,Jersey,2.0,t +19461,100%,Isle of Man,5.0,f +19461,100%,Isle of Man,5.0,f +24738,100%,Somalia,2.0,t +10039,100%,Vanuatu,6.0,t +10039,100%,Vanuatu,6.0,t +45499,,Tanzania,1.0,f +42850,100%,Gambia,1.0,t +47014,100%,Uganda,2.0,f +47014,100%,Uganda,2.0,f +40412,97%,Netherlands,26.0,t +16169,100%,Grenada,3.0,f +24335,100%,,1.0,f +35225,,Guernsey,1.0,f +35704,100%,Papua New Guinea,5.0,t +21098,,,1.0,f +33010,100%,Rwanda,3.0,t +39968,100%,,2.0,f +39968,100%,,2.0,f +24218,,Russian Federation,1.0,f +42730,100%,Greenland,3.0,t +44568,,Holy See (Vatican City State),1.0,f +45941,100%,United Kingdom,1.0,t +34545,,Tonga,1.0,t +2470,80%,Brazil,4.0,t +2470,80%,Brazil,4.0,t +5997,100%,Kenya,3.0,t +26063,,Croatia,2.0,t +3035,100%,Anguilla,1.0,t +49189,100%,Turks and Caicos Islands,3.0,f +42730,100%,Greenland,3.0,t +35267,70%,Canada,1.0,t +31876,,Tonga,1.0,t +33978,100%,Niue,1.0,t +13724,100%,Niue,1.0,t +10350,100%,Lithuania,2.0,t +12980,100%,Uzbekistan,3.0,t +15814,100%,Brazil,4.0,f +15814,100%,Brazil,4.0,f +45621,100%,Cape Verde,4.0,t +38824,,France,1.0,f +24775,97%,Montserrat,44.0,f +44841,100%,Sao Tome and Principe,3.0,t +4265,100%,Palestinian Territory,2.0,t +41213,,Costa Rica,1.0,t +36367,100%,Palestinian Territory,3.0,f +24775,97%,Montserrat,44.0,f +21110,100%,Cape Verde,1.0,f +12920,100%,Tonga,1.0,t +34587,,Isle of Man,22.0,t +43265,100%,Anguilla,3.0,f +20343,,Togo,4.0,f +20343,,Togo,4.0,f +20343,,Togo,4.0,f +19984,100%,Ecuador,14.0,t +22991,100%,Korea,4.0,t +40450,90%,Maldives,1.0,t +24775,97%,Montserrat,44.0,f +37679,,Bosnia and Herzegovina,1.0,t +24775,97%,Montserrat,44.0,f +24775,97%,Montserrat,44.0,f +6888,100%,Sao Tome and Principe,1.0,t +48356,100%,Jersey,3.0,t +20220,100%,Switzerland,1.0,t +46691,90%,Uzbekistan,38.0,f +24775,97%,Montserrat,44.0,f +40958,,Rwanda,1.0,t +3080,100%,Lithuania,2.0,t +22757,90%,France,1.0,t +22097,100%,United Kingdom,1.0,t +39866,,,1.0,t +31244,57%,Niger,4.0,t +12404,0%,Turks and Caicos Islands,1.0,f +31548,90%,Marshall Islands,2.0,t +31548,90%,Marshall Islands,2.0,t +16543,,Philippines,1.0,t +40412,97%,Netherlands,26.0,t +40412,97%,Netherlands,26.0,t +24775,97%,Montserrat,44.0,f +14785,,Russian Federation,1.0,t +24775,97%,Montserrat,44.0,f +9038,100%,Marshall Islands,3.0,t +39509,100%,Somalia,1.0,t +40199,100%,Uzbekistan,6.0,f +22347,100%,Brazil,2.0,t +38374,100%,Philippines,1.0,t +48759,100%,Slovenia,1.0,t +8658,,,1.0,f +29985,,Bouvet Island (Bouvetoya),1.0,f +40199,100%,Uzbekistan,6.0,f +12230,90%,Guinea,3.0,f +26152,100%,Anguilla,6.0,t +12320,100%,Bosnia and Herzegovina,20.0,f +2942,100%,Isle of Man,3.0,t +12320,100%,Bosnia and Herzegovina,20.0,f +43460,100%,Guinea,1.0,t +17870,100%,,1.0,f +12320,100%,Bosnia and Herzegovina,20.0,f +32134,100%,United Kingdom,1.0,t +30836,,Cocos (Keeling) Islands,1.0,t +36942,82%,Uzbekistan,3.0,t +14107,100%,,1.0,f +32039,,Guinea,5.0,f +28780,100%,Russian Federation,1.0,t +34513,93%,Ecuador,2.0,t +41548,,Chile,2.0,t +6793,,Ecuador,1.0,t +24775,97%,Montserrat,44.0,f +24775,97%,Montserrat,44.0,f +4207,,Sao Tome and Principe,1.0,t +10039,100%,Vanuatu,6.0,t +9533,,Senegal,16.0,t +26369,92%,Uganda,2.0,t +39251,100%,Russian Federation,1.0,f +26152,100%,Anguilla,6.0,t +40320,100%,Niue,2.0,f +2735,100%,Netherlands,6.0,f +8706,,Holy See (Vatican City State),1.0,f +42518,100%,Anguilla,2.0,t +9925,100%,,3.0,t +39456,100%,Estonia,1.0,t +9925,100%,,3.0,t +9925,100%,,3.0,t +20962,100%,Russian Federation,2.0,t +19837,100%,Venezuela,1.0,f +10920,100%,Kenya,2.0,t +45427,,Isle of Man,1.0,t +39399,22%,Kenya,2.0,f +32012,100%,,2.0,f +46009,90%,,2.0,f +20473,100%,,1.0,t +1152,,Bosnia and Herzegovina,2.0,t +13693,100%,United Kingdom,5.0,t +45741,100%,Uzbekistan,6.0,t +19461,100%,Isle of Man,5.0,f +38862,100%,Chile,3.0,t +25793,100%,,1.0,f +28566,78%,Slovakia (Slovak Republic),79.0,t +12320,100%,Bosnia and Herzegovina,20.0,f +19984,100%,Ecuador,14.0,t +19482,,Cocos (Keeling) Islands,4.0,f +24107,100%,,1.0,t +41601,81%,United Kingdom,5.0,f +17113,100%,,1.0,t +24775,97%,Montserrat,44.0,f +28576,,China,1.0,t +38515,90%,Guernsey,1.0,t +3234,100%,Niue,2.0,f +7251,100%,Turks and Caicos Islands,3.0,t +46529,,Marshall Islands,1.0,t +37160,,Tunisia,1.0,t +2271,100%,Zimbabwe,3.0,t +24524,100%,Vanuatu,2.0,t +7821,,Russian Federation,2.0,t +19247,100%,Cuba,5.0,f +30023,75%,Rwanda,1.0,t +14762,,Nicaragua,1.0,f +27052,,,1.0,f +1846,,Croatia,1.0,t +41459,,Chile,1.0,f +24775,97%,Montserrat,44.0,f +23274,100%,Nauru,1.0,t +25255,,Costa Rica,2.0,t +16276,100%,Jersey,1.0,t +23495,80%,,1.0,f +43250,100%,Bouvet Island (Bouvetoya),2.0,t +3074,90%,Tunisia,1.0,t +15862,100%,Russian Federation,1.0,t +25255,,Costa Rica,2.0,t +43654,100%,,5.0,t +4358,100%,Ecuador,2.0,t +17691,90%,Zimbabwe,4.0,t +40487,,Cuba,1.0,t +36802,,Monaco,1.0,t +3995,,Kiribati,1.0,t +28992,100%,Jersey,1.0,t +23550,0%,Sao Tome and Principe,1.0,f +31056,,Guernsey,1.0,t +11858,17%,Guinea,4.0,f +30930,,,1.0,f +26513,,Zimbabwe,1.0,f +19864,100%,Gibraltar,1.0,t +397,100%,Indonesia,1.0,f +24838,100%,Isle of Man,2.0,t +1769,,Chile,2.0,t +6848,,Slovakia (Slovak Republic),1.0,t +47517,,Nauru,1.0,f +43859,100%,Spain,1.0,f +4468,100%,Zimbabwe,1.0,f +33682,,Kenya,1.0,t +38240,80%,Guinea,2.0,f +34784,60%,Faroe Islands,19.0,t +14555,100%,Chile,1.0,t +40739,100%,Chad,2.0,f +11461,100%,Bosnia and Herzegovina,1.0,t +28451,,Suriname,1.0,t +25602,13%,Kenya,2.0,f +33133,,Turks and Caicos Islands,1.0,f +11496,,Cocos (Keeling) Islands,3.0,t +11496,,Cocos (Keeling) Islands,3.0,t +37444,57%,Isle of Man,1.0,f +8093,,Rwanda,1.0,f +3234,100%,Niue,2.0,f +33511,59%,Tunisia,8.0,t +16111,50%,,2.0,f +33511,59%,Tunisia,8.0,t +8133,100%,Chad,1.0,t +27584,100%,Chile,2.0,t +890,100%,Zimbabwe,3.0,f +32125,,Russian Federation,1.0,t +33322,100%,Philippines,1.0,t +49509,,Isle of Man,1.0,f +17420,,,1.0,f +34588,,Croatia,1.0,f +33327,100%,,3.0,f +33327,100%,,3.0,f +29058,,Uzbekistan,1.0,t +34324,,Chile,1.0,f +25498,,Uganda,1.0,f +19881,100%,Guinea,1.0,t +10485,100%,Togo,2.0,t +24412,,Bosnia and Herzegovina,1.0,t +30090,,Libyan Arab Jamahiriya,1.0,f +10066,100%,,1.0,t +13474,80%,Zimbabwe,7.0,t +48834,100%,Uzbekistan,1.0,f +2369,30%,Isle of Man,2.0,f +18269,86%,Fiji,12.0,f +18269,86%,Fiji,12.0,f +13930,100%,Tanzania,1.0,t +36104,100%,Ukraine,2.0,t +18269,86%,Fiji,12.0,f +19576,100%,Micronesia,2.0,t +18269,86%,Fiji,12.0,f +46421,80%,Croatia,2.0,t +28150,100%,,1.0,f +41163,,Monaco,2.0,t +25960,100%,Jersey,1.0,t +22673,80%,Chile,2.0,t +48986,100%,Andorra,1.0,t +26992,100%,Netherlands,3.0,t +34258,,Vietnam,7.0,t +19595,,Jersey,1.0,f +13758,100%,Rwanda,1.0,t +42439,100%,Cape Verde,3.0,t +34258,,Vietnam,7.0,t +44771,,Palestinian Territory,1.0,f +35703,,Maldives,1.0,f +42049,,Gambia,1.0,f +9012,100%,,2.0,t +42592,,,1.0,f +35439,94%,United Kingdom,23.0,t +35439,94%,United Kingdom,23.0,t +49510,100%,Croatia,1.0,t +17178,25%,Rwanda,1.0,t +39597,100%,El Salvador,1.0,t +46714,100%,Malta,1.0,f +12390,86%,Uzbekistan,3.0,f +48374,83%,Kenya,2.0,t +41593,100%,Marshall Islands,1.0,f +20334,99%,Niger,171.0,t +37862,,Reunion,1.0,f +29995,,Lebanon,1.0,t +45304,,Rwanda,1.0,f +32307,100%,,1.0,f +34784,60%,Faroe Islands,19.0,t +21359,,Mauritania,2.0,t +2778,,Anguilla,2.0,t +35029,100%,Niue,4.0,f +20455,,Nicaragua,2.0,t +29301,,Mexico,1.0,f +24738,100%,Somalia,2.0,t +49495,,Ghana,1.0,t +11802,100%,Lithuania,1.0,f +47040,90%,Lebanon,1.0,f +596,100%,Isle of Man,1.0,t +42310,100%,Ecuador,6.0,t +39859,100%,Netherlands,3.0,t +25003,96%,Latvia,9.0,t +3017,100%,Ukraine,3.0,f +38671,100%,Ecuador,2.0,t +43321,100%,France,40.0,f +24177,,Venezuela,4.0,t +19461,100%,Isle of Man,5.0,f +24177,,Venezuela,4.0,t +47396,100%,Maldives,1.0,t +42133,,Tunisia,1.0,t +42525,,,1.0,t +28928,,,1.0,f +9863,,Niue,1.0,f +29239,,French Polynesia,1.0,f +41490,,Togo,2.0,t +13902,98%,United Kingdom,5.0,f +35439,94%,United Kingdom,23.0,t +33792,100%,Jersey,1.0,t +19424,,Vietnam,1.0,t +44724,100%,Marshall Islands,1.0,t +9089,,,2.0,f +31068,,Zimbabwe,1.0,t +32425,,Barbados,2.0,t +28084,100%,,1.0,f +44306,100%,,1.0,f +39936,100%,Montserrat,1.0,t +31873,99%,Uzbekistan,22.0,f +35128,,Kenya,1.0,t +14378,,Marshall Islands,1.0,t +43321,100%,France,40.0,f +11841,100%,Marshall Islands,3.0,t +12452,0%,Barbados,1.0,t +40232,,Ecuador,1.0,t +18202,,Isle of Man,1.0,f +42229,100%,Fiji,25.0,f +20334,99%,Niger,171.0,t +18495,100%,Russian Federation,2.0,f +19676,60%,Maldives,1.0,t +24775,97%,Montserrat,44.0,f +6399,95%,Marshall Islands,5.0,f +17835,100%,Bouvet Island (Bouvetoya),1.0,t +15598,,,1.0,t +27316,100%,Puerto Rico,5.0,f +27316,100%,Puerto Rico,5.0,f +4884,100%,Marshall Islands,3.0,f +32764,100%,Maldives,1.0,t +26216,,Bosnia and Herzegovina,4.0,t +43745,,Burkina Faso,2.0,t +29461,,Bosnia and Herzegovina,5.0,t +32900,,Niue,2.0,f +34793,100%,,5.0,t +49643,67%,Russian Federation,2.0,f +8238,91%,Barbados,15.0,t +8456,100%,Russian Federation,1.0,t +19585,,Isle of Man,1.0,f +37619,100%,Isle of Man,2.0,t +30701,,,1.0,f +20895,100%,American Samoa,5.0,f +1604,100%,Tunisia,1.0,t +24206,,,2.0,t +30455,100%,,2.0,t +24336,,El Salvador,1.0,f +23803,100%,,1.0,f +35715,,Wallis and Futuna,1.0,t +21630,97%,Reunion,5.0,t +48716,,,3.0,f +48874,100%,Somalia,4.0,t +36988,88%,Svalbard & Jan Mayen Islands,3.0,t +27209,,Chad,2.0,f +18533,90%,Russian Federation,5.0,t +3470,,,1.0,f +37009,80%,Lebanon,3.0,t +30465,100%,Guinea,1.0,f +45545,100%,,1.0,f +5127,,Malta,1.0,f +27348,,Vanuatu,1.0,t +10794,100%,Lebanon,1.0,t +33679,,Slovenia,1.0,t +21841,100%,Puerto Rico,3.0,t +45143,100%,Brazil,2.0,t +12133,100%,Mexico,4.0,f +28781,,Anguilla,2.0,f +42150,,Nicaragua,2.0,t +38109,80%,Chad,7.0,f +38109,80%,Chad,7.0,f +45324,100%,Venezuela,3.0,t +24832,80%,Sao Tome and Principe,1.0,f +38055,,,1.0,t +38862,100%,Chile,3.0,t +26446,,French Polynesia,1.0,t +3350,100%,Zimbabwe,1.0,t +31097,,Niger,2.0,f +20340,,Peru,1.0,f +50096,,Indonesia,1.0,t +21630,97%,Reunion,5.0,t +6672,89%,Chad,1.0,t +25856,,Vanuatu,4.0,t +11073,,,1.0,f +24784,100%,Isle of Man,1.0,t +35593,100%,Marshall Islands,3.0,f +3092,,Uganda,1.0,t +38109,80%,Chad,7.0,f +38109,80%,Chad,7.0,f +38109,80%,Chad,7.0,f +38109,80%,Chad,7.0,f +38109,80%,Chad,7.0,f +18981,,Libyan Arab Jamahiriya,1.0,t +33185,100%,Montserrat,2.0,t +42599,,Mexico,2.0,f +46702,0%,Micronesia,1.0,f +4303,100%,,1.0,f +41390,80%,Isle of Man,1.0,f +24970,100%,Cape Verde,1.0,t +10342,100%,Libyan Arab Jamahiriya,2.0,t +35638,,Anguilla,1.0,t +653,,Vanuatu,3.0,f +39089,,Denmark,2.0,f +21929,100%,,1.0,f +28833,100%,Venezuela,5.0,f +15442,100%,Svalbard & Jan Mayen Islands,1.0,t +43190,100%,Marshall Islands,4.0,t +5645,,,2.0,f +40272,,Lebanon,1.0,f +36265,100%,Guernsey,2.0,t +3646,,Niger,3.0,t +26358,70%,Monaco,3.0,t +6291,,Sao Tome and Principe,2.0,f +2942,100%,Isle of Man,3.0,t +35194,100%,Turkmenistan,1.0,t +32875,0%,Kenya,1.0,t +42458,97%,Indonesia,14.0,t +10462,,Rwanda,3.0,f +4694,100%,Jersey,3.0,t +4667,100%,Marshall Islands,2.0,f +41469,,,2.0,t +4642,,Kenya,1.0,t +2255,100%,Guinea,1.0,t +7262,,Isle of Man,1.0,f +10931,100%,,1.0,t +42958,100%,Maldives,1.0,t +26063,,Croatia,2.0,t +32184,,Christmas Island,1.0,f +46920,100%,Christmas Island,2.0,t +41469,,,2.0,t +11978,90%,Denmark,3.0,f +12399,,Costa Rica,2.0,f +12766,,Chile,1.0,t +1491,90%,,3.0,f +1491,90%,,3.0,f +1491,90%,,3.0,f +7233,,Maldives,1.0,t +47197,33%,Lebanon,2.0,t +43250,100%,Bouvet Island (Bouvetoya),2.0,t +43243,,Puerto Rico,1.0,t +30216,98%,Maldives,34.0,f +30216,98%,Maldives,34.0,f +30216,98%,Maldives,34.0,f +44328,,Kenya,1.0,f +22556,100%,Barbados,1.0,t +22653,,,1.0,f +11885,100%,,1.0,f +40770,100%,Tonga,2.0,f +25105,100%,Uzbekistan,2.0,t +5743,,China,2.0,t +43522,100%,Kenya,1.0,f +43321,100%,France,40.0,f +48928,87%,French Guiana,5.0,f +1360,86%,Guernsey,1.0,f +1548,100%,Jersey,1.0,t +11275,100%,Brazil,3.0,t +42229,100%,Fiji,25.0,f +32785,83%,Micronesia,1.0,t +38940,60%,Mexico,1.0,f +23997,,Marshall Islands,3.0,t +12630,,Rwanda,2.0,f +5436,100%,Kenya,3.0,t +42229,100%,Fiji,25.0,f +47550,100%,Guinea,4.0,t +5388,,Mauritania,1.0,t +47372,,Micronesia,1.0,f +39624,0%,Zimbabwe,1.0,f +35853,100%,Philippines,3.0,t +20711,0%,Papua New Guinea,1.0,t +14029,67%,Mexico,3.0,t +6580,100%,Kiribati,5.0,t +9029,,Andorra,2.0,t +4615,100%,,1.0,t +20824,0%,Isle of Man,1.0,f +11275,100%,Brazil,3.0,t +1534,80%,Uzbekistan,3.0,t +30741,,Chile,1.0,t +37809,100%,Uzbekistan,2.0,f +20895,100%,American Samoa,5.0,f +20895,100%,American Samoa,5.0,f +1563,0%,Micronesia,3.0,f +674,100%,Gibraltar,4.0,f +12831,100%,Niue,1.0,t +25570,,Nauru,6.0,f +33772,100%,French Polynesia,1.0,t +22227,100%,Slovakia (Slovak Republic),2.0,t +35853,100%,Philippines,3.0,t +5711,100%,Senegal,2.0,f +18001,,Chad,1.0,t +22321,100%,United Kingdom,16.0,f +13365,100%,Indonesia,7.0,t +42294,,Anguilla,1.0,t +32665,100%,Niue,1.0,t +9616,100%,Gibraltar,1.0,f +20569,100%,Montserrat,3.0,t +12155,,Russian Federation,1.0,f +22673,80%,Chile,2.0,t +4171,100%,Ghana,1.0,f +13331,100%,Fiji,1.0,f +28402,25%,Russian Federation,1.0,t +31701,60%,Bouvet Island (Bouvetoya),2.0,f +9315,0%,Canada,1.0,f +28594,100%,Mauritania,10.0,t +32563,100%,Pakistan,2.0,t +27209,,Chad,2.0,f +6620,50%,Niue,3.0,t +46378,,Mauritania,3.0,t +2042,90%,Gambia,7.0,f +42974,,Lebanon,3.0,t +42599,,Mexico,2.0,f +38166,100%,Uzbekistan,14.0,f +43190,100%,Marshall Islands,4.0,t +43190,100%,Marshall Islands,4.0,t +24566,75%,Estonia,1.0,t +21653,,Marshall Islands,2.0,f +25525,90%,Faroe Islands,3.0,t +26613,100%,Malawi,1.0,f +40927,100%,Micronesia,3.0,f +35439,94%,United Kingdom,23.0,t +43386,,Wallis and Futuna,1.0,t +40208,100%,Saint Helena,2.0,t +22665,,Rwanda,1.0,f +11334,100%,Sao Tome and Principe,3.0,t +21736,100%,Vanuatu,4.0,f +45751,,Tonga,1.0,t +24176,100%,Kiribati,2.0,f +25001,100%,Saint Helena,1.0,f +45621,100%,Cape Verde,4.0,t +29918,100%,Vietnam,2.0,t +15654,,French Guiana,1.0,t +36544,,Russian Federation,1.0,f +34872,93%,Tonga,3.0,t +15572,,Cape Verde,2.0,t +33823,78%,France,17.0,t +15572,,Cape Verde,2.0,t +43992,100%,Uzbekistan,3.0,t +46847,100%,Niue,1.0,f +24823,100%,Sao Tome and Principe,1.0,t +32575,100%,Kenya,3.0,t +24206,,,2.0,t +47369,100%,Marshall Islands,4.0,t +11172,100%,Guinea,2.0,t +14306,100%,Libyan Arab Jamahiriya,1.0,f +31286,83%,Isle of Man,1.0,f +10433,,Rwanda,1.0,f +7003,0%,United Kingdom,1.0,t +30332,100%,Ecuador,2.0,f +49823,100%,Isle of Man,1.0,t +42414,,Sao Tome and Principe,1.0,f +2042,90%,Gambia,7.0,f +30897,100%,Turkmenistan,4.0,t +22835,,French Guiana,1.0,t +40320,100%,Niue,2.0,f +8930,,Turkmenistan,2.0,t +35550,90%,El Salvador,2.0,f +36894,100%,Niue,1.0,t +34784,60%,Faroe Islands,19.0,t +23679,,Isle of Man,1.0,t +15612,80%,Russian Federation,3.0,t +19742,100%,Isle of Man,1.0,f +16220,100%,,1.0,t +32754,100%,France,1.0,f +37613,,Senegal,1.0,f +30310,100%,,1.0,f +13504,100%,Ukraine,3.0,f +37159,,United Kingdom,1.0,f +19247,100%,Cuba,5.0,f +22321,100%,United Kingdom,16.0,f +22321,100%,United Kingdom,16.0,f +22321,100%,United Kingdom,16.0,f +22321,100%,United Kingdom,16.0,f +15612,80%,Russian Federation,3.0,t +9074,100%,Russian Federation,1.0,t +23509,100%,Jersey,1.0,t +17651,100%,Uzbekistan,1.0,f +19943,63%,Isle of Man,34.0,f +25637,100%,French Guiana,3.0,t +653,,Vanuatu,3.0,f +653,,Vanuatu,3.0,f +35853,100%,Philippines,3.0,t +22006,,Mauritania,1.0,f +20218,100%,Slovakia (Slovak Republic),11.0,t +35439,94%,United Kingdom,23.0,t +13902,98%,United Kingdom,5.0,f +13902,98%,United Kingdom,5.0,f +13902,98%,United Kingdom,5.0,f +39872,,Andorra,2.0,t +39713,100%,Denmark,4.0,f +39713,100%,Denmark,4.0,f +22544,100%,Holy See (Vatican City State),6.0,t +95,100%,Chile,3.0,t +16963,,Vanuatu,3.0,f +49972,100%,Cape Verde,1.0,f +29422,50%,Uzbekistan,1.0,f +40576,100%,France,1.0,t +2814,,French Guiana,1.0,f +39657,100%,,2.0,t +37343,75%,Ecuador,4.0,t +8293,100%,Afghanistan,4.0,t +24584,100%,Spain,4.0,t +10231,100%,Isle of Man,1.0,t +16209,80%,Ecuador,3.0,f +21807,,Maldives,1.0,t +13377,100%,Russian Federation,1.0,t +8293,100%,Afghanistan,4.0,t +15389,100%,Svalbard & Jan Mayen Islands,1.0,t +38709,100%,Senegal,1.0,t +38521,,Cape Verde,1.0,f +17287,100%,Slovakia (Slovak Republic),1.0,f +41165,100%,Lebanon,1.0,f +19247,100%,Cuba,5.0,f +32138,100%,,1.0,f +3293,100%,Somalia,1.0,t +42387,,Gambia,2.0,f +15694,100%,Marshall Islands,2.0,f +27366,100%,Uzbekistan,9.0,t +6358,100%,Croatia,1.0,t +39399,22%,Kenya,2.0,f +15935,100%,Isle of Man,1.0,t +2512,,Cape Verde,6.0,t +6224,100%,Wallis and Futuna,2.0,t +18478,,,1.0,f +31077,,Tonga,1.0,t +19406,100%,Pitcairn Islands,2.0,t +8773,100%,,1.0,t +30304,100%,Somalia,2.0,t +22154,,Lebanon,1.0,f +33511,59%,Tunisia,8.0,t +9414,,Sao Tome and Principe,1.0,f +17771,90%,Russian Federation,1.0,f +28187,100%,Jersey,1.0,f +26330,60%,Costa Rica,3.0,f +4983,,Chad,1.0,t +44324,,Faroe Islands,1.0,t +8293,100%,Afghanistan,4.0,t +5647,,Bosnia and Herzegovina,4.0,t +38355,,Bouvet Island (Bouvetoya),1.0,f +15283,100%,Mauritania,1.0,f +42439,100%,Cape Verde,3.0,t +3396,,Chad,4.0,t +12032,100%,Mauritania,2.0,t +12032,100%,Mauritania,2.0,t +18685,,Chile,1.0,t +22738,40%,Monaco,1.0,t +11538,100%,Papua New Guinea,5.0,t +48157,,,2.0,f +14478,100%,Chad,2.0,t +34534,,Isle of Man,1.0,t +14478,100%,Chad,2.0,t +11012,100%,Puerto Rico,3.0,f +51,,Montserrat,1.0,t +8371,100%,Barbados,1.0,t +16760,,Tonga,1.0,f +12833,100%,Uzbekistan,3.0,t +22412,100%,,1.0,t +6200,100%,,3.0,t +22103,,United Kingdom,1.0,f +33511,59%,Tunisia,8.0,t +17548,60%,,1.0,f +37675,100%,Jersey,1.0,f +5323,,Uganda,1.0,f +24726,100%,,1.0,t +25637,100%,French Guiana,3.0,t +37645,100%,Mauritania,3.0,t +34445,,Rwanda,1.0,t +17694,100%,Isle of Man,4.0,t +30216,98%,Maldives,34.0,f +26330,60%,Costa Rica,3.0,f +5307,100%,Zimbabwe,3.0,t +16539,,United Kingdom,1.0,f +11111,0%,Slovakia (Slovak Republic),1.0,f +24403,,France,2.0,t +31257,,,1.0,f +47463,,Tanzania,2.0,f +13393,,Suriname,1.0,t +28257,0%,Turkmenistan,1.0,f +21630,97%,Reunion,5.0,t +40739,100%,Chad,2.0,f +11686,90%,Kenya,2.0,f +16931,,Chad,2.0,f +15356,80%,Denmark,2.0,f +30216,98%,Maldives,34.0,f +48602,100%,El Salvador,1.0,t +48263,90%,Guernsey,1.0,t +32603,83%,Nicaragua,4.0,t +32603,83%,Nicaragua,4.0,t +13914,100%,Libyan Arab Jamahiriya,2.0,f +22927,90%,,1.0,f +16961,,Micronesia,1.0,f +41601,81%,United Kingdom,5.0,f +37646,100%,Estonia,60.0,f +41503,100%,Kenya,1.0,f +13376,100%,Zimbabwe,3.0,f +15523,100%,,2.0,f +29959,100%,Niger,1.0,f +42585,100%,Micronesia,1.0,t +48019,100%,Netherlands,1.0,t +25167,100%,Indonesia,1.0,t +27118,100%,Sao Tome and Principe,1.0,f +28025,100%,Grenada,1.0,f +42597,,Bouvet Island (Bouvetoya),1.0,t +27992,100%,Denmark,1.0,t +32039,,Guinea,5.0,f +46250,100%,Jersey,1.0,t +8476,,Brazil,1.0,t +48671,100%,Guinea,3.0,t +16847,,Kenya,1.0,f +23565,100%,Slovakia (Slovak Republic),6.0,t +8541,,Uzbekistan,1.0,t +20512,100%,Isle of Man,2.0,t +48349,100%,Isle of Man,2.0,f +32039,,Guinea,5.0,f +25361,100%,Brazil,1.0,f +7051,0%,Malta,1.0,f +34269,78%,Niue,2.0,t +41341,100%,Guinea,3.0,t +4694,100%,Jersey,3.0,t +4694,100%,Jersey,3.0,t +31187,100%,Jersey,1.0,f +31074,100%,Malta,4.0,t +38498,,Turks and Caicos Islands,1.0,f +41668,,Mauritania,1.0,t +36196,90%,Gibraltar,1.0,f +36104,100%,Ukraine,2.0,t +14540,92%,Niue,5.0,f +30352,,Bosnia and Herzegovina,2.0,f +46877,0%,El Salvador,1.0,f +44651,,,1.0,f +39895,100%,,3.0,f +28653,100%,Russian Federation,3.0,t +26330,60%,Costa Rica,3.0,f +27366,100%,Uzbekistan,9.0,t +275,100%,Tunisia,3.0,t +48461,,Canada,1.0,t +26387,100%,Isle of Man,6.0,t +32246,100%,Chad,1.0,f +3018,40%,Holy See (Vatican City State),1.0,t +11092,100%,Monaco,1.0,t +49660,100%,France,3.0,t +16380,100%,Tunisia,1.0,t +7696,97%,Russian Federation,7.0,t +34587,,Isle of Man,22.0,t +42114,100%,Sao Tome and Principe,3.0,t +33195,100%,Isle of Man,1.0,f +30968,,,1.0,f +2069,100%,Gambia,4.0,t +8418,,Denmark,2.0,f +30281,100%,Guinea,1.0,f +46027,100%,Niue,1.0,t +15429,100%,Grenada,3.0,t +18273,100%,Guinea,1.0,t +30736,,Guinea,1.0,f +6037,80%,Guinea,9.0,t +33511,59%,Tunisia,8.0,t +43542,67%,Russian Federation,2.0,f +24563,90%,Pakistan,3.0,f +36686,,Lebanon,1.0,f +25725,,Bosnia and Herzegovina,1.0,t +37645,100%,Mauritania,3.0,t +20681,,Marshall Islands,1.0,t +42860,100%,Guinea,1.0,f +43728,100%,Kenya,1.0,f +13374,67%,,2.0,f +20384,100%,Wallis and Futuna,1.0,t +30788,100%,Niue,1.0,t +47706,100%,Venezuela,1.0,t +31586,,Chile,3.0,f +14340,100%,Isle of Man,5.0,t +39832,100%,Guinea,3.0,f +16957,,Monaco,2.0,f +6704,100%,Gambia,1.0,f +20691,,Niue,1.0,t +23602,,Portugal,1.0,t +5866,100%,Brazil,1.0,t +9012,100%,,2.0,t +32329,,Kenya,1.0,t +20512,100%,Isle of Man,2.0,t +22810,,Niue,1.0,t +43224,,Rwanda,1.0,t +8162,,Tonga,1.0,t +709,,,1.0,f +21363,100%,Guinea,2.0,t +29501,90%,Gibraltar,2.0,t +27471,,Sao Tome and Principe,1.0,f +35317,,Bosnia and Herzegovina,1.0,f +5702,100%,Monaco,2.0,f +16227,,Micronesia,1.0,t +12393,,,1.0,t +20218,100%,Slovakia (Slovak Republic),11.0,t +20745,,Ghana,1.0,t +25973,100%,Gambia,1.0,f +28693,,Lebanon,1.0,t +4657,100%,,1.0,f +47968,100%,Ecuador,1.0,t +39698,60%,Russian Federation,1.0,t +45452,0%,Niue,1.0,t +49294,,,1.0,f +24717,100%,Canada,1.0,t +2069,100%,Gambia,4.0,t +39895,100%,,3.0,f +2042,90%,Gambia,7.0,f +3347,,Kiribati,1.0,t +2603,96%,Uzbekistan,7.0,f +11034,90%,Chile,1.0,f +42183,100%,Puerto Rico,1.0,t +11260,67%,Micronesia,1.0,f +35273,100%,Chad,1.0,t +38826,75%,Senegal,2.0,t +40256,,Uzbekistan,2.0,t +46054,,Sao Tome and Principe,2.0,t +39579,100%,Uzbekistan,2.0,t +7705,0%,Turks and Caicos Islands,1.0,f +1978,100%,Slovenia,1.0,t +36564,100%,Venezuela,5.0,t +46054,,Sao Tome and Principe,2.0,t +17190,100%,Niue,1.0,t +49036,,Kenya,4.0,t +32034,100%,Uzbekistan,1.0,f +15502,100%,Indonesia,1.0,t +14340,100%,Isle of Man,5.0,t +5716,100%,Senegal,2.0,f +20251,100%,Jersey,1.0,t +46082,100%,Isle of Man,1.0,t +2991,,Russian Federation,1.0,t +27476,0%,Guinea,1.0,t +35147,95%,Mauritania,5.0,t +23447,,,1.0,t +10067,,Philippines,1.0,f +4216,,Cuba,9.0,t +41494,,Guinea,1.0,t +45896,100%,,1.0,t +8223,100%,El Salvador,2.0,t +17778,100%,Indonesia,3.0,f +3335,100%,Lebanon,2.0,f +17570,100%,Gambia,1.0,t +45446,,Tonga,1.0,t +17143,,,1.0,f +24515,,Ghana,1.0,t +2766,100%,United Kingdom,4.0,f +2735,100%,Netherlands,6.0,f +28978,,Uzbekistan,2.0,t +43891,,China,2.0,t +16941,100%,Russian Federation,3.0,f +6232,,Guinea,15.0,t +4216,,Cuba,9.0,t +12290,100%,Bouvet Island (Bouvetoya),1.0,f +44557,,,1.0,t +11876,,Malta,1.0,t +2704,,Monaco,1.0,t +22358,,Vanuatu,3.0,f +32082,80%,,1.0,f +24899,100%,Saint Helena,1.0,t +8538,,,2.0,t +11101,100%,Holy See (Vatican City State),1.0,f +42045,10%,Niue,4.0,f +47412,,Tunisia,1.0,t +30404,100%,Niue,3.0,t +33459,,Mauritania,1.0,t +45068,,Guinea,1.0,t +13041,100%,Niue,1.0,f +1003,100%,Tonga,1.0,t +44234,90%,Philippines,1.0,t +15110,100%,Zimbabwe,1.0,t +37957,100%,Chad,2.0,t +41616,100%,Anguilla,3.0,f +16369,,Micronesia,1.0,t +39382,,Nicaragua,1.0,t +30890,90%,Niue,2.0,f +45889,100%,Niue,1.0,t +30388,,Faroe Islands,1.0,f +46091,50%,,2.0,t +12513,,Bosnia and Herzegovina,1.0,t +22868,,Sao Tome and Principe,2.0,t +45963,,Mauritania,3.0,t +11817,,Tonga,3.0,f +35326,,,1.0,f +8171,,Russian Federation,1.0,t +28695,100%,French Guiana,1.0,f +26808,100%,Rwanda,9.0,t +17778,100%,Indonesia,3.0,f +30216,98%,Maldives,34.0,f +48769,100%,Indonesia,4.0,t +37313,90%,Cocos (Keeling) Islands,1.0,t +13444,,,1.0,f +38689,100%,United Kingdom,6.0,t +20881,,Rwanda,1.0,t +22321,100%,United Kingdom,16.0,f +17639,90%,Kenya,3.0,f +4233,,Russian Federation,1.0,t +48790,,,1.0,t +39832,100%,Guinea,3.0,f +13902,98%,United Kingdom,5.0,f +9777,,Isle of Man,1.0,f +27291,,Malawi,2.0,t +27291,,Malawi,2.0,t +42554,100%,Zimbabwe,1.0,t +30096,0%,Kenya,1.0,f +10244,100%,Philippines,10.0,f +6627,100%,Senegal,1.0,f +25811,100%,,1.0,t +15724,,Sao Tome and Principe,1.0,t +9246,70%,,1.0,f +9095,100%,Uganda,2.0,f +21788,100%,Niger,1.0,f +7189,100%,Indonesia,1.0,t +39581,,Marshall Islands,1.0,t +31838,,Lebanon,2.0,t +41880,,China,2.0,f +43321,100%,France,40.0,f +8994,,Zimbabwe,1.0,f +35399,90%,Croatia,1.0,t +38153,,Ecuador,1.0,t +44313,100%,Tunisia,2.0,f +41129,,Bosnia and Herzegovina,1.0,f +22031,0%,Marshall Islands,1.0,f +6968,,Bouvet Island (Bouvetoya),2.0,f +14340,100%,Isle of Man,5.0,t +41226,,Kiribati,1.0,f +49660,100%,France,3.0,t +41528,100%,Indonesia,1.0,t +37399,,Niue,1.0,t +27953,100%,Cocos (Keeling) Islands,3.0,t +49637,,Russian Federation,1.0,t +33048,,Montserrat,3.0,f +36707,,Cocos (Keeling) Islands,1.0,t +46852,100%,,1.0,t +46689,,,1.0,t +21130,,Guinea,2.0,t +27079,,Maldives,14.0,t +15559,100%,Barbados,1.0,t +22323,,,1.0,t +42458,97%,Indonesia,14.0,t +27079,,Maldives,14.0,t +27079,,Maldives,14.0,t +27079,,Maldives,14.0,t +38308,,Marshall Islands,2.0,t +35047,,France,1.0,t +17930,100%,Jersey,2.0,t +22997,,Isle of Man,1.0,t +13686,,France,3.0,f +8238,91%,Barbados,15.0,t +1998,,Nicaragua,1.0,t +14340,100%,Isle of Man,5.0,t +22215,,Nicaragua,2.0,f +30668,,Russian Federation,1.0,f +6836,,Chad,1.0,t +6156,100%,Finland,14.0,t +19688,100%,Malawi,2.0,t +38875,100%,Gambia,3.0,f +40551,,Bouvet Island (Bouvetoya),3.0,t +20068,80%,Uzbekistan,5.0,t +29548,,Mexico,1.0,t +42876,,Uzbekistan,1.0,t +13171,,Chile,1.0,t +46165,,Malta,1.0,t +43411,100%,,1.0,t +45406,100%,Malta,1.0,t +36935,,Niue,1.0,t +29856,64%,Niue,2.0,t +14232,67%,,1.0,f +41031,,Niue,2.0,t +27396,,,1.0,f +5746,100%,Russian Federation,2.0,t +26757,100%,Barbados,4.0,f +15376,,Micronesia,1.0,f +5746,100%,Russian Federation,2.0,t +34159,100%,,2.0,f +8823,,Kenya,1.0,t +6156,100%,Finland,14.0,t +380,100%,Kiribati,1.0,f +47107,,Russian Federation,1.0,f +5176,100%,Malawi,2.0,t +30081,,French Guiana,1.0,f +42006,100%,Bahrain,2.0,t +26757,100%,Barbados,4.0,f +23212,,Faroe Islands,1.0,f +15579,100%,Slovakia (Slovak Republic),2.0,f +9943,100%,Tonga,1.0,t +1510,,Chile,1.0,t +9672,,Bosnia and Herzegovina,3.0,t +29083,0%,Chile,1.0,t +37232,100%,Gambia,2.0,t +24999,100%,France,6.0,f +9722,,Ecuador,1.0,t +31743,100%,Isle of Man,1.0,f +47918,88%,,1.0,t +43321,100%,France,40.0,f +29704,,Faroe Islands,2.0,f +40826,,,1.0,t +31161,100%,Isle of Man,2.0,t +35214,,El Salvador,2.0,t +29704,,Faroe Islands,2.0,f +1052,,Montserrat,5.0,f +17371,,,1.0,f +45981,92%,Maldives,11.0,t +37472,100%,Anguilla,1.0,t +14013,100%,Indonesia,2.0,t +7576,,United Kingdom,1.0,t +11414,100%,Ghana,1.0,t +22059,,Uzbekistan,1.0,t +1052,,Montserrat,5.0,f +10983,100%,French Guiana,2.0,t +13507,100%,Gambia,1.0,t +15306,,Barbados,8.0,t +45981,92%,Maldives,11.0,t +960,100%,Netherlands,2.0,t +13730,0%,Libyan Arab Jamahiriya,1.0,t +26757,100%,Barbados,4.0,f +45981,92%,Maldives,11.0,t +45981,92%,Maldives,11.0,t +45981,92%,Maldives,11.0,t +45981,92%,Maldives,11.0,t +45981,92%,Maldives,11.0,t +45981,92%,Maldives,11.0,t +45981,92%,Maldives,11.0,t +45981,92%,Maldives,11.0,t +42045,10%,Niue,4.0,f +30217,,Niger,1.0,t +15306,,Barbados,8.0,t +4955,100%,Bouvet Island (Bouvetoya),1.0,t +20944,100%,United Kingdom,3.0,f +46337,,Chad,2.0,t +20944,100%,United Kingdom,3.0,f +16963,,Vanuatu,3.0,f +3862,,,2.0,t +39684,,Svalbard & Jan Mayen Islands,2.0,f +31696,,Sao Tome and Principe,2.0,f +44573,,Lebanon,1.0,t +34258,,Vietnam,7.0,t +22321,100%,United Kingdom,16.0,f +8702,,Niue,1.0,f +42457,,Zimbabwe,1.0,f +44313,100%,Tunisia,2.0,f +5138,,Rwanda,1.0,t +7855,,United Kingdom,1.0,t +5910,,Croatia,1.0,f +13522,,Indonesia,1.0,f +27186,100%,Zimbabwe,7.0,t +45363,,United Kingdom,2.0,f +42045,10%,Niue,4.0,f +9000,,Papua New Guinea,1.0,t +45830,60%,Montserrat,1.0,f +16439,100%,Nicaragua,1.0,t +6919,100%,Isle of Man,1.0,t +37655,,Niue,1.0,f +23551,,Slovenia,1.0,f +10230,100%,Niue,2.0,t +30768,80%,Maldives,1.0,t +46957,90%,Micronesia,3.0,t +5238,,Isle of Man,1.0,t +11791,100%,,1.0,f +22868,,Sao Tome and Principe,2.0,t +4108,,Chile,2.0,t +25980,100%,Philippines,2.0,t +30832,100%,Micronesia,2.0,t +30832,100%,Micronesia,2.0,t +47635,,Senegal,4.0,t +14562,,Tonga,1.0,f +16904,,Turks and Caicos Islands,1.0,f +46036,,Australia,1.0,t +14953,100%,Bouvet Island (Bouvetoya),4.0,t +18948,,,1.0,t +20209,100%,Russian Federation,1.0,t +4108,,Chile,2.0,t +30144,100%,Marshall Islands,1.0,t +32578,74%,Zimbabwe,2.0,t +3121,95%,Zimbabwe,9.0,t +14953,100%,Bouvet Island (Bouvetoya),4.0,t +16370,50%,Isle of Man,1.0,t +22185,,Lithuania,1.0,f +10539,,Lebanon,1.0,f +11265,100%,Holy See (Vatican City State),1.0,t +23864,100%,Russian Federation,1.0,t +27010,100%,El Salvador,1.0,f +45647,100%,Niger,1.0,t +20192,,,1.0,t +46217,100%,United Kingdom,4.0,f +15137,100%,Marshall Islands,10.0,t +7735,100%,,2.0,t +41741,100%,Brazil,9.0,t +38689,100%,United Kingdom,6.0,t +38689,100%,United Kingdom,6.0,t +4128,50%,Nicaragua,1.0,f +45517,100%,Monaco,1.0,f +7711,100%,Isle of Man,1.0,f +36380,,Chile,2.0,f +49443,100%,Sao Tome and Principe,2.0,t +17057,100%,Rwanda,2.0,t +23731,100%,Holy See (Vatican City State),2.0,t +31717,,Gibraltar,1.0,f +22081,100%,El Salvador,1.0,t +34411,100%,Anguilla,1.0,t +46957,90%,Micronesia,3.0,t +33048,,Montserrat,3.0,f +40747,100%,Wallis and Futuna,1.0,t +39010,,Russian Federation,1.0,t +20917,,Turkmenistan,2.0,t +29766,100%,Indonesia,1.0,t +30421,,El Salvador,1.0,t +2185,,Russian Federation,1.0,f +27612,,Rwanda,1.0,t +36813,,Brazil,1.0,f +23088,100%,El Salvador,1.0,t +34673,100%,Guinea,1.0,t +3723,,Sao Tome and Principe,1.0,f +46797,100%,Zimbabwe,3.0,t +19987,100%,French Polynesia,4.0,f +41648,,Micronesia,1.0,t +14920,,,1.0,t +34153,100%,Congo,1.0,f +30386,,Zimbabwe,1.0,t +44923,100%,Chad,1.0,t +13103,100%,Costa Rica,1.0,f +47378,,Uzbekistan,1.0,f +4992,,Kiribati,5.0,t +248,91%,French Guiana,2.0,f +1330,100%,United Kingdom,1.0,t +37923,,Andorra,1.0,f +21944,,Guernsey,1.0,t +7360,100%,Malta,1.0,t +39065,100%,,1.0,t +33285,100%,Uzbekistan,2.0,t +37177,100%,Canada,1.0,f +25384,100%,Slovakia (Slovak Republic),1.0,f +9279,,,1.0,t +594,100%,Cuba,2.0,f +3664,,Brazil,2.0,t +24608,,Guinea,1.0,f +7383,100%,Lebanon,1.0,t +26152,100%,Anguilla,6.0,t +29352,80%,El Salvador,2.0,f +28388,0%,Suriname,1.0,t +3273,,Holy See (Vatican City State),2.0,t +28137,100%,Slovakia (Slovak Republic),1.0,t +29670,100%,Isle of Man,1.0,f +36033,100%,Russian Federation,4.0,t +32425,,Barbados,2.0,t +46061,100%,Uganda,2.0,t +49914,100%,Niue,1.0,t +41263,100%,Saint Helena,1.0,f +39790,,,1.0,t +15932,100%,Isle of Man,3.0,t +49053,94%,Indonesia,4.0,t +44147,93%,Uzbekistan,2.0,t +40771,60%,Slovakia (Slovak Republic),2.0,t +1362,,Lebanon,1.0,t +11256,100%,Kenya,1.0,f +30429,,Anguilla,1.0,t +12090,100%,,1.0,f +8811,,Montserrat,3.0,t +36659,100%,Anguilla,2.0,t +295,100%,Micronesia,2.0,t +26426,100%,Saint Helena,1.0,t +43434,0%,Mexico,1.0,f +21720,100%,Russian Federation,1.0,f +38859,100%,France,1.0,f +19693,100%,Nauru,1.0,t +9342,,Nicaragua,1.0,f +45045,,,1.0,t +30371,63%,Guinea,1.0,t +34602,,Russian Federation,1.0,t +5370,60%,Kenya,5.0,f +41421,,Gambia,1.0,t +437,,Guinea,2.0,t +46266,,Chad,1.0,t +47012,,Russian Federation,1.0,f +5148,100%,Jersey,1.0,t +9507,25%,Sierra Leone,5.0,t +19561,100%,Isle of Man,1.0,t +26249,,Cuba,2.0,t +38844,100%,Maldives,1.0,t +20334,99%,Niger,171.0,t +38230,100%,Niue,3.0,t +30893,100%,Micronesia,1.0,f +43463,100%,Monaco,1.0,t +31993,100%,Holy See (Vatican City State),1.0,t +13051,,Chad,1.0,t +49707,,Gibraltar,1.0,t +11462,100%,,5.0,t +6232,,Guinea,15.0,t +9874,100%,Montserrat,4.0,t +49567,100%,Saint Helena,4.0,t +49567,100%,Saint Helena,4.0,t +26339,,,1.0,f +11770,,Lebanon,2.0,t +9042,57%,Russian Federation,2.0,f +24949,100%,Russian Federation,1.0,t +31163,,Fiji,2.0,t +16272,,Wallis and Futuna,1.0,t +41907,,El Salvador,3.0,t +41741,100%,Brazil,9.0,t +11076,100%,Malta,1.0,t +43174,100%,Kiribati,1.0,f +43701,0%,Vanuatu,1.0,f +40665,,Niue,1.0,f +13399,,,1.0,t +27023,,Sao Tome and Principe,1.0,t +26776,,Kenya,1.0,t +26666,100%,Gambia,3.0,t +31333,,Zimbabwe,1.0,t +38381,100%,British Indian Ocean Territory (Chagos Archipelago),2.0,f +29461,,Bosnia and Herzegovina,5.0,t +46957,90%,Micronesia,3.0,t +3024,100%,Isle of Man,1.0,t +45176,,Vanuatu,3.0,f +10606,,Ghana,1.0,f +19210,100%,Reunion,1.0,f +5370,60%,Kenya,5.0,f +22438,90%,Guinea,2.0,t +18425,,,1.0,f +10342,100%,Libyan Arab Jamahiriya,2.0,t +8872,100%,Russian Federation,5.0,t +17057,100%,Rwanda,2.0,t +39869,,,1.0,t +18850,,Ecuador,1.0,f +40670,100%,Palestinian Territory,1.0,t +17182,100%,Niue,2.0,t +11997,100%,Mauritania,2.0,t +12617,,Monaco,1.0,f +27858,100%,Niue,1.0,t +15868,,Zimbabwe,1.0,t +13647,100%,,3.0,f +39107,100%,Canada,2.0,f +46351,100%,Jersey,2.0,t +15438,,Slovakia (Slovak Republic),1.0,t +15315,100%,Guernsey,1.0,t +16185,,China,1.0,t +25320,,El Salvador,1.0,f +28978,,Uzbekistan,2.0,t +35141,100%,,4.0,f +31337,100%,Monaco,1.0,f +6474,,,1.0,t +24931,,Malta,1.0,f +6705,100%,,1.0,f +12311,,United Kingdom,1.0,f +29750,,Guinea,2.0,t +33815,,Isle of Man,1.0,t +45146,,Mauritania,2.0,t +19776,100%,Marshall Islands,2.0,t +38208,,,2.0,t +29482,100%,Ghana,1.0,t +28715,100%,,1.0,t +6115,,Estonia,1.0,f +37164,100%,Indonesia,2.0,t +18268,0%,Sao Tome and Principe,1.0,t +23366,100%,,3.0,t +20440,,Kenya,2.0,t +36042,,Gambia,1.0,t +29263,100%,Sao Tome and Principe,1.0,f +31520,,Sao Tome and Principe,1.0,f +45511,100%,Gambia,3.0,f +8872,100%,Russian Federation,5.0,t +43628,100%,Jersey,1.0,t +41822,60%,,1.0,t +7777,,Pakistan,2.0,f +48200,57%,French Guiana,1.0,t +34077,,,2.0,f +33562,100%,Uzbekistan,1.0,t +42712,,Vanuatu,1.0,f +42680,100%,Isle of Man,1.0,t +16304,100%,Guernsey,1.0,f +28876,100%,Uzbekistan,1.0,t +16798,100%,Saint Helena,2.0,t +13563,67%,Guinea,1.0,t +42629,100%,Malawi,1.0,t +41551,100%,Malta,2.0,f +30928,25%,Bosnia and Herzegovina,1.0,t +7561,100%,Venezuela,6.0,t +14045,100%,Tonga,2.0,t +31420,100%,Maldives,2.0,t +19253,,Sao Tome and Principe,4.0,t +27965,100%,Faroe Islands,3.0,f +2271,100%,Zimbabwe,3.0,t +15579,100%,Slovakia (Slovak Republic),2.0,f +34204,100%,Uzbekistan,1.0,f +8293,100%,Afghanistan,4.0,t +33820,,,1.0,t +27074,,Russian Federation,1.0,t +11262,,Lebanon,1.0,t +29028,100%,Chad,2.0,t +39168,83%,Tonga,6.0,f +18207,100%,,1.0,t +43245,100%,Cocos (Keeling) Islands,1.0,t +18250,,Russian Federation,1.0,t +25433,100%,Micronesia,1.0,t +26387,100%,Isle of Man,6.0,t +27740,100%,United Kingdom,6.0,t +13692,100%,Uganda,1.0,f +10640,,Chad,1.0,t +5968,100%,Uganda,1.0,t +26656,,Zimbabwe,1.0,t +25385,,Korea,1.0,t +6151,0%,Gambia,1.0,t +46515,100%,,1.0,f +7165,100%,Brazil,5.0,t +15489,100%,Nicaragua,2.0,t +2590,100%,,1.0,t +3866,100%,Indonesia,8.0,t +19451,80%,Montserrat,2.0,t +25434,100%,,2.0,t +40997,,Maldives,1.0,t +42953,100%,Korea,2.0,t +34649,100%,Marshall Islands,1.0,t +26757,100%,Barbados,4.0,f +16475,,,2.0,t +26493,,Guinea,1.0,f +33146,,Denmark,1.0,f +28868,100%,Monaco,2.0,f +18408,100%,Montserrat,1.0,t +29556,100%,Malta,1.0,t +1181,50%,,1.0,t +8217,,,1.0,t +12342,,Tanzania,1.0,t +11833,90%,Afghanistan,2.0,f +4731,75%,Kenya,2.0,t +15513,,Turkmenistan,1.0,t +49349,100%,,1.0,f +2603,96%,Uzbekistan,7.0,f +44732,,San Marino,1.0,f +22786,,Kenya,2.0,f +40683,100%,United Kingdom,2.0,t +38925,,Jersey,1.0,f +48487,100%,Tunisia,2.0,t +40378,100%,Chad,3.0,f +6060,100%,Christmas Island,1.0,f +5094,50%,Uzbekistan,2.0,t +8638,,Maldives,2.0,f +23105,,Rwanda,1.0,f +31163,,Fiji,2.0,t +23512,,,1.0,f +30468,,Wallis and Futuna,1.0,t +32882,,Turks and Caicos Islands,2.0,f +39610,,Andorra,2.0,t +44942,,Cape Verde,1.0,t +1070,100%,Jersey,1.0,t +49684,,Indonesia,1.0,t +24700,33%,Denmark,1.0,t +2046,100%,Niue,1.0,f +24747,100%,Nicaragua,6.0,f +19247,100%,Cuba,5.0,f +6531,100%,Mexico,2.0,f +6531,100%,Mexico,2.0,f +6966,100%,Afghanistan,1.0,t +15195,100%,Svalbard & Jan Mayen Islands,3.0,t +38286,100%,Kenya,3.0,f +17531,100%,,1.0,t +42229,100%,Fiji,25.0,f +33966,100%,,1.0,t +12560,100%,Monaco,2.0,t +38274,,,2.0,f +3934,100%,Rwanda,4.0,f +6069,100%,,1.0,t +40161,100%,,1.0,f +10102,,Afghanistan,1.0,f +39555,100%,Marshall Islands,13.0,t +22243,100%,Malta,2.0,f +37548,100%,Russian Federation,2.0,f +3885,100%,Venezuela,1.0,f +7824,100%,Monaco,2.0,t +47551,,Chile,1.0,f +23866,,,1.0,f +12447,,Isle of Man,1.0,f +23249,,Grenada,2.0,f +8768,100%,Kiribati,1.0,f +28394,,Senegal,2.0,f +5251,100%,Brazil,2.0,f +45850,100%,Isle of Man,2.0,f +13578,78%,Monaco,1.0,t +48157,,,2.0,f +5094,50%,Uzbekistan,2.0,t +5855,100%,Marshall Islands,1.0,t +24747,100%,Nicaragua,6.0,f +48630,100%,Tonga,1.0,t +49797,100%,,1.0,f +43708,,Indonesia,3.0,t +46522,100%,Russian Federation,1.0,t +38570,100%,Lithuania,2.0,f +47007,100%,Guinea,2.0,t +11151,100%,Malta,1.0,t +41339,100%,Vanuatu,1.0,f +35332,,French Polynesia,1.0,t +21836,100%,Mauritania,3.0,f +22695,97%,Pakistan,6.0,t +49322,,,1.0,f +46691,90%,Uzbekistan,38.0,f +11326,,Guinea,1.0,t +19267,90%,,2.0,t +3382,100%,,2.0,f +3382,100%,,2.0,f +28792,100%,Senegal,2.0,t +35838,100%,Guernsey,2.0,f +24210,100%,El Salvador,1.0,t +17341,70%,Malawi,2.0,f +37392,100%,Micronesia,7.0,t +41168,100%,Malawi,4.0,t +7821,,Russian Federation,2.0,t +48466,100%,Marshall Islands,1.0,t +45791,,Russian Federation,2.0,t +45973,,Guernsey,1.0,f +13693,100%,United Kingdom,5.0,t +44850,100%,Switzerland,2.0,t +42301,100%,Turkmenistan,1.0,t +30005,,Papua New Guinea,1.0,t +34210,,Niue,1.0,t +22198,,Niger,2.0,f +625,,Isle of Man,1.0,t +22198,,Niger,2.0,f +18869,,Malta,2.0,f +24986,,,1.0,t +3897,90%,Indonesia,1.0,f +31464,100%,Isle of Man,2.0,t +29253,100%,Maldives,2.0,t +9450,,Reunion,2.0,f +38075,100%,Malawi,2.0,f +19776,100%,Marshall Islands,2.0,t +47386,,Sao Tome and Principe,1.0,f +19437,,French Guiana,2.0,t +49093,100%,Kiribati,1.0,t +40042,,Nicaragua,1.0,t +34432,,France,2.0,f +5647,,Bosnia and Herzegovina,4.0,t +37863,,Zimbabwe,4.0,t +35249,100%,Uzbekistan,4.0,t +11035,,Uzbekistan,1.0,t +6541,100%,,1.0,f +23108,100%,Micronesia,2.0,t +10623,,,1.0,f +11517,100%,French Guiana,1.0,t +41239,100%,Micronesia,1.0,f +842,80%,,1.0,t +19494,,Sao Tome and Principe,3.0,t +49984,,Libyan Arab Jamahiriya,1.0,f +37646,100%,Estonia,60.0,f +37646,100%,Estonia,60.0,f +9494,100%,Kenya,1.0,t +44775,100%,,1.0,f +36909,100%,Brazil,4.0,t +28108,100%,Niue,4.0,t +49318,,Russian Federation,1.0,t +22178,65%,Lebanon,1.0,t +36909,100%,Brazil,4.0,t +1264,90%,Denmark,1.0,f +24747,100%,Nicaragua,6.0,f +11858,17%,Guinea,4.0,f +47801,,Guinea,1.0,f +20825,,Kenya,1.0,f +28532,,Uganda,1.0,t +4702,100%,El Salvador,2.0,f +8902,100%,,1.0,f +20440,,Kenya,2.0,t +46415,100%,French Guiana,2.0,t +33240,,,1.0,f +30435,99%,Cape Verde,41.0,f +45291,100%,Holy See (Vatican City State),1.0,t +24403,,France,2.0,t +28203,100%,,2.0,t +46742,100%,,2.0,t +44135,60%,Tonga,1.0,t +3148,90%,Rwanda,1.0,t +36567,100%,Lebanon,1.0,f +41867,100%,Monaco,1.0,t +36909,100%,Brazil,4.0,t +38739,,Svalbard & Jan Mayen Islands,1.0,f +1052,,Montserrat,5.0,f +48773,,Lebanon,1.0,f +15649,,Kenya,1.0,f +16927,100%,Vanuatu,2.0,f +44850,100%,Switzerland,2.0,t +28566,78%,Slovakia (Slovak Republic),79.0,t +15486,100%,Vietnam,1.0,f +49869,100%,Niger,1.0,t +16417,100%,Niger,2.0,t +39815,,Chad,1.0,f +41501,100%,Montserrat,2.0,t +13573,100%,Gibraltar,4.0,t +34218,,Niue,1.0,t +40551,,Bouvet Island (Bouvetoya),3.0,t +32344,,Niue,1.0,f +25556,100%,Faroe Islands,1.0,t +31998,,Malawi,1.0,t +36702,100%,Mauritania,1.0,t +13720,,Bouvet Island (Bouvetoya),3.0,t +18255,100%,Marshall Islands,3.0,f +27829,100%,,2.0,t +9429,100%,,4.0,f +28597,100%,Maldives,1.0,t +27890,80%,Kenya,1.0,t +28483,,Lebanon,1.0,f +24519,,Saint Martin,2.0,f +6707,,,1.0,t +30657,100%,Guinea,2.0,f +29886,0%,Zimbabwe,2.0,t +4731,75%,Kenya,2.0,t +33143,,Malta,1.0,f +15506,100%,Niue,1.0,f +14053,,Anguilla,1.0,f +45907,,,1.0,t +49523,100%,Croatia,1.0,f +19808,89%,Denmark,2.0,f +36814,,Peru,2.0,f +16178,100%,French Guiana,17.0,t +24102,100%,Guinea,2.0,t +18327,100%,Palestinian Territory,2.0,t +11172,100%,Guinea,2.0,t +43906,80%,Slovenia,2.0,t +31509,100%,Jersey,2.0,t +28846,100%,Brazil,1.0,t +48515,100%,Croatia,2.0,t +48618,100%,Niue,2.0,t +4669,,,1.0,f +48618,100%,Niue,2.0,t +10984,,Russian Federation,1.0,t +31833,80%,Isle of Man,1.0,t +36814,,Peru,2.0,f +29932,100%,France,2.0,t +15706,,Kenya,7.0,t +28108,100%,Niue,4.0,t +19721,100%,Tonga,3.0,t +3566,90%,Turkmenistan,1.0,t +33163,100%,Marshall Islands,1.0,f +46919,,Gambia,1.0,t +22788,100%,Gibraltar,1.0,f +31627,,Mauritania,1.0,t +26874,,Nauru,1.0,t +46427,81%,Sao Tome and Principe,4.0,t +29261,100%,Uruguay,1.0,t +34935,100%,Uzbekistan,1.0,t +32164,,Niue,1.0,f +30064,100%,Malawi,1.0,t +38268,,Guinea,1.0,t +45327,,Mexico,1.0,t +40869,100%,Jersey,1.0,t +30497,100%,Slovakia (Slovak Republic),9.0,t +11255,93%,Suriname,41.0,f +45265,67%,Brazil,1.0,t +15016,,Malta,1.0,t +22638,93%,Maldives,2.0,t +5716,100%,Senegal,2.0,f +30921,,United Kingdom,2.0,t +1607,100%,Russian Federation,1.0,f +42229,100%,Fiji,25.0,f +13947,100%,France,3.0,t +48149,80%,Lebanon,2.0,t +41759,,Isle of Man,1.0,t +48149,80%,Lebanon,2.0,t +27280,86%,Denmark,1.0,f +22347,100%,Brazil,2.0,t +36506,70%,Marshall Islands,2.0,f +36654,100%,Sao Tome and Principe,2.0,f +19825,100%,Russian Federation,1.0,f +12179,,Niger,2.0,t +14085,100%,Malawi,1.0,f +24198,25%,French Guiana,4.0,f +5070,100%,Nicaragua,1.0,t +28566,78%,Slovakia (Slovak Republic),79.0,t +2603,96%,Uzbekistan,7.0,f +15491,80%,El Salvador,1.0,t +16889,,,1.0,t +37439,,Pakistan,1.0,t +8032,70%,United Kingdom,1.0,t +48527,,French Guiana,1.0,t +282,100%,Sao Tome and Principe,2.0,t +5514,100%,Ecuador,3.0,f +7635,100%,Kenya,1.0,t +49585,,,1.0,t +5023,,Pakistan,1.0,f +49158,90%,Mauritania,1.0,t +22091,100%,Faroe Islands,9.0,f +40737,89%,Russian Federation,1.0,t +5130,,Russian Federation,1.0,t +2293,100%,Zimbabwe,3.0,t +7106,,Micronesia,1.0,f +22663,,,1.0,t +21391,,Barbados,1.0,t +34112,,Russian Federation,1.0,f +9814,100%,Lebanon,2.0,t +28253,100%,Marshall Islands,3.0,t +48301,,,1.0,t +6534,,Niue,1.0,f +15210,,Faroe Islands,1.0,t +43668,100%,Marshall Islands,6.0,t +24236,60%,,1.0,t +37520,,,1.0,f +44446,100%,Costa Rica,3.0,t +31586,,Chile,3.0,f +5370,60%,Kenya,5.0,f +31806,100%,Micronesia,1.0,t +35897,,Lebanon,1.0,t +4009,,Brunei Darussalam,1.0,t +9948,,Ukraine,2.0,t +43839,100%,,1.0,f +20857,,Netherlands,1.0,t +39542,100%,,2.0,t +46315,,Uzbekistan,1.0,t +29421,,Isle of Man,1.0,t +38324,100%,Isle of Man,1.0,t +38572,0%,France,1.0,f +22038,,Nicaragua,2.0,f +5048,100%,Niue,2.0,t +22291,,Bosnia and Herzegovina,1.0,t +16748,,Kenya,1.0,t +26152,100%,Anguilla,6.0,t +7841,,Niue,1.0,t +26387,100%,Isle of Man,6.0,t +18819,,Sao Tome and Principe,1.0,t +5798,100%,,1.0,f +41695,,Isle of Man,1.0,t +39573,100%,Bouvet Island (Bouvetoya),1.0,t +13365,100%,Indonesia,7.0,t +28351,100%,,1.0,f +35593,100%,Marshall Islands,3.0,f +14175,100%,,1.0,t +16417,100%,Niger,2.0,t +5629,50%,Sao Tome and Principe,1.0,f +27231,100%,Isle of Man,1.0,t +24526,44%,Guinea,2.0,f +43692,100%,Isle of Man,1.0,t +38326,,Congo,1.0,f +35819,,,2.0,t +4107,,Niger,1.0,f +27797,,Switzerland,2.0,t +30947,,Turkmenistan,1.0,t +28224,100%,Rwanda,1.0,f +8545,100%,,1.0,f +11976,,Gambia,2.0,t +12942,,Guinea,3.0,t +24945,100%,Lebanon,1.0,t +795,100%,,1.0,t +49189,100%,Turks and Caicos Islands,3.0,f +36474,,,1.0,t +16058,,Jersey,1.0,t +28448,,Brazil,1.0,t +6438,,Vanuatu,2.0,f +9707,,Finland,1.0,f +43484,100%,Costa Rica,1.0,f +38425,100%,,2.0,t +491,,Nauru,1.0,t +31663,100%,Micronesia,2.0,f +39413,100%,Monaco,1.0,f +21399,100%,Lebanon,1.0,t +15908,100%,Guinea,2.0,t +9866,100%,Jersey,1.0,t +34483,100%,Denmark,1.0,f +49499,,Niue,1.0,f +29036,100%,Russian Federation,1.0,f +33763,,United Kingdom,1.0,t +19482,,Cocos (Keeling) Islands,4.0,f +33823,78%,France,17.0,t +16697,,Sao Tome and Principe,1.0,f +39952,100%,Tonga,21.0,f +693,,Micronesia,1.0,f +38757,90%,Gambia,2.0,t +42104,50%,Djibouti,2.0,f +13552,,France,1.0,t +32381,0%,Switzerland,1.0,t +4753,,,1.0,f +5400,,Chile,1.0,t +38425,100%,,2.0,t +18962,,Sao Tome and Principe,1.0,f +10634,100%,Lithuania,3.0,t +5502,100%,Uzbekistan,1.0,f +6230,0%,Marshall Islands,1.0,f +9907,100%,Russian Federation,1.0,t +48030,100%,,1.0,f +27989,,Nauru,1.0,t +15280,60%,Kenya,2.0,t +16958,,Afghanistan,1.0,t +29278,100%,Malawi,1.0,f +23863,,Jersey,1.0,f +531,,Marshall Islands,1.0,t +27057,,Andorra,1.0,t +15280,60%,Kenya,2.0,t +33823,78%,France,17.0,t +8639,,Lebanon,1.0,t +22038,,Nicaragua,2.0,f +35819,,,2.0,t +17041,100%,Estonia,1.0,t +37308,100%,Russian Federation,1.0,f +2717,,Uzbekistan,3.0,f +19984,100%,Ecuador,14.0,t +34103,,Chile,1.0,t +8895,,Palestinian Territory,1.0,f +19984,100%,Ecuador,14.0,t +33285,100%,Uzbekistan,2.0,t +35725,100%,Senegal,1.0,t +11205,100%,Chad,1.0,t +42229,100%,Fiji,25.0,f +42229,100%,Fiji,25.0,f +17724,,Turks and Caicos Islands,6.0,t +17715,100%,,1.0,t +42229,100%,Fiji,25.0,f +48262,,Guinea,1.0,t +32370,100%,Costa Rica,3.0,t +2778,,Anguilla,2.0,t +5777,100%,Puerto Rico,3.0,t +25329,,Kiribati,2.0,t +2942,100%,Isle of Man,3.0,t +4821,100%,Niger,2.0,t +10952,,Faroe Islands,1.0,t +9013,100%,,2.0,f +8558,100%,Andorra,1.0,t +14220,,Holy See (Vatican City State),1.0,t +37919,,Niue,1.0,t +14883,90%,Uganda,1.0,f +8757,,Senegal,1.0,t +28384,,,1.0,t +49247,,Isle of Man,1.0,t +48400,100%,Peru,1.0,t +26099,99%,Reunion,15.0,f +39029,100%,Mexico,3.0,f +11987,100%,Uganda,1.0,t +42040,,Andorra,1.0,f +8638,,Maldives,2.0,f +48209,83%,Uganda,4.0,t +31310,100%,Kiribati,1.0,t +47756,100%,Uzbekistan,1.0,t +20802,,Croatia,1.0,t +44890,95%,Wallis and Futuna,9.0,t +25180,100%,,1.0,t +18762,,Guinea,1.0,f +44890,95%,Wallis and Futuna,9.0,t +44890,95%,Wallis and Futuna,9.0,t +15963,100%,Svalbard & Jan Mayen Islands,1.0,f +35494,,Monaco,1.0,t +19821,,Slovakia (Slovak Republic),1.0,t +1849,100%,Marshall Islands,1.0,t +32092,86%,,1.0,f +45014,100%,Indonesia,2.0,t +6845,80%,Croatia,2.0,t +11422,50%,,1.0,f +37909,100%,Russian Federation,2.0,t +39287,100%,,1.0,t +40499,100%,Barbados,1.0,t +8760,100%,Finland,6.0,t +43524,,Isle of Man,1.0,f +30060,100%,,1.0,f +4533,,,1.0,t +39240,100%,Guinea,1.0,t +10701,0%,Indonesia,1.0,f +29980,80%,Russian Federation,1.0,t +43854,100%,Ecuador,3.0,f +43854,100%,Ecuador,3.0,f +23819,,Guinea,1.0,f +26095,100%,Gambia,2.0,f +11355,,Monaco,1.0,t +26052,90%,Gambia,3.0,t +12612,,Holy See (Vatican City State),1.0,f +34865,,Uganda,2.0,t +36430,100%,Niue,1.0,t +40666,100%,Jersey,1.0,t +32238,86%,Turks and Caicos Islands,1.0,t +30184,100%,Zimbabwe,2.0,f +35841,100%,Saint Helena,4.0,f +9797,100%,Uzbekistan,1.0,f +30878,,Sao Tome and Principe,1.0,f +40757,100%,United Kingdom,1.0,t +16356,,,1.0,t +41420,,Palestinian Territory,1.0,f +8960,,,2.0,t +9659,,El Salvador,1.0,f +25188,,Marshall Islands,1.0,f +40657,,Marshall Islands,1.0,f +21145,100%,Kenya,1.0,t +35593,100%,Marshall Islands,3.0,f +1078,100%,Kenya,2.0,t +1078,100%,Kenya,2.0,t +33706,,Lebanon,1.0,t +40692,,Zimbabwe,1.0,t +43717,,Bosnia and Herzegovina,5.0,t +15538,,Madagascar,2.0,f +20588,,Malta,1.0,t +25618,,Indonesia,1.0,t +15630,,Rwanda,1.0,t +29533,,Micronesia,1.0,t +20804,,,1.0,t +33414,0%,Russian Federation,1.0,t +24144,,,2.0,t +32480,,Croatia,2.0,t +43717,,Bosnia and Herzegovina,5.0,t +21227,100%,Uzbekistan,2.0,f +4668,100%,Reunion,1.0,t +24666,,Estonia,1.0,f +29302,,,1.0,f +11273,,Cape Verde,1.0,t +36943,,Zimbabwe,2.0,t +19948,100%,Jersey,2.0,f +44167,,Russian Federation,1.0,f +587,100%,,1.0,t +9437,,,1.0,f +3773,,,1.0,t +41755,100%,Isle of Man,2.0,f +14911,,Chile,1.0,t +38218,100%,Malawi,1.0,t +40083,,Monaco,1.0,f +33266,,Bouvet Island (Bouvetoya),1.0,f +43552,100%,Malta,1.0,t +1020,100%,United Kingdom,7.0,t +30283,100%,Brazil,15.0,f +30283,100%,Brazil,15.0,f +30283,100%,Brazil,15.0,f +27892,,Guinea,1.0,t +37215,100%,Indonesia,4.0,t +38060,,Chad,1.0,t +47916,,Russian Federation,1.0,t +27952,20%,,1.0,t +16902,100%,Uzbekistan,3.0,f +32371,,Isle of Man,2.0,t +38358,,Peru,1.0,f +33009,0%,,1.0,t +18159,,,1.0,t +41552,,Kenya,1.0,t +11255,93%,Suriname,41.0,f +37957,100%,Chad,2.0,t +11796,,Rwanda,1.0,t +46276,100%,Kiribati,1.0,t +11616,100%,Uzbekistan,12.0,t +37059,100%,,1.0,t +10620,67%,Marshall Islands,1.0,f +36423,100%,,1.0,f +40171,,,1.0,f +45179,,,2.0,t +24558,,,1.0,f +43152,100%,Nicaragua,82.0,t +26387,100%,Isle of Man,6.0,t +28942,,French Guiana,1.0,f +43459,,United Kingdom,1.0,f +9114,94%,Sao Tome and Principe,4.0,t +43152,100%,Nicaragua,82.0,t +21456,,Jersey,1.0,t +522,,,1.0,t +19984,100%,Ecuador,14.0,t +14018,,Svalbard & Jan Mayen Islands,3.0,t +3894,,,1.0,t +14018,,Svalbard & Jan Mayen Islands,3.0,t +38131,100%,Antarctica (the territory South of 60 deg S),3.0,t +42849,100%,Gambia,1.0,f +45905,100%,Sao Tome and Principe,3.0,t +8254,80%,Gibraltar,1.0,t +21674,67%,Jersey,1.0,f +10680,,Anguilla,2.0,f +31523,,,1.0,f +49030,100%,Kenya,2.0,f +30226,100%,Russian Federation,1.0,t +36779,,,1.0,t +31693,,Lebanon,1.0,t +45297,,Niue,1.0,t +14922,100%,Samoa,3.0,t +45591,,,1.0,t +4906,100%,Senegal,2.0,t +11255,93%,Suriname,41.0,f +23499,,Lithuania,1.0,f +39430,100%,,1.0,f +6283,100%,Switzerland,3.0,f +21267,100%,Rwanda,3.0,f +8345,100%,Andorra,1.0,f +10209,100%,Gambia,1.0,f +29352,80%,El Salvador,2.0,f +31200,100%,Lebanon,1.0,f +1877,100%,Guinea,1.0,f +43152,100%,Nicaragua,82.0,t +47076,,Zimbabwe,1.0,t +40965,,,1.0,t +41200,,Saint Helena,1.0,t +43193,100%,Estonia,3.0,f +15545,,Monaco,1.0,t +16692,,,1.0,t +7508,,Afghanistan,1.0,f +48937,88%,Estonia,3.0,t +41301,100%,Costa Rica,9.0,t +3492,100%,Finland,3.0,f +13261,100%,Bosnia and Herzegovina,2.0,t +26345,,Croatia,1.0,t +46709,80%,Niue,4.0,t +34018,100%,French Guiana,1.0,f +26052,90%,Gambia,3.0,t +26052,90%,Gambia,3.0,t +40281,100%,,3.0,f +22276,,Guernsey,1.0,t +14018,,Svalbard & Jan Mayen Islands,3.0,t +35147,95%,Mauritania,5.0,t +35198,,Venezuela,1.0,f +31,,Togo,1.0,t +45908,,Guinea,1.0,t +10145,100%,,1.0,f +39159,,Slovakia (Slovak Republic),1.0,t +38565,90%,Greenland,1.0,f +39023,100%,Niue,1.0,t +6407,0%,Niue,3.0,f +31658,100%,Maldives,1.0,f +20218,100%,Slovakia (Slovak Republic),11.0,t +9602,,,1.0,f +138,,Netherlands,3.0,t +138,,Netherlands,3.0,t +2273,,,1.0,t +18633,100%,Lithuania,1.0,t +944,,Vietnam,7.0,t +47285,,Uzbekistan,2.0,t +13108,,Bosnia and Herzegovina,1.0,t +3339,100%,France,1.0,t +8321,,,1.0,f +31615,0%,Monaco,1.0,t +26108,,Lebanon,1.0,t +4713,,,1.0,f +27436,,Croatia,2.0,f +46691,90%,Uzbekistan,38.0,f +13559,100%,Mexico,1.0,t +47943,100%,,2.0,f +28566,78%,Slovakia (Slovak Republic),79.0,t +8325,60%,,1.0,f +44841,100%,Sao Tome and Principe,3.0,t +8738,,,2.0,t +7835,100%,Kenya,1.0,t +6746,,Palestinian Territory,1.0,t +39952,100%,Tonga,21.0,f +28566,78%,Slovakia (Slovak Republic),79.0,t +24849,,,1.0,f +22372,97%,Cuba,1.0,t +1743,0%,,1.0,f +3844,,Cocos (Keeling) Islands,1.0,t +9339,,Denmark,1.0,f +26540,,Lebanon,1.0,f +7611,,Croatia,1.0,f +6280,,Montserrat,1.0,f +49126,100%,Guinea,3.0,t +33347,,Bosnia and Herzegovina,1.0,f +43152,100%,Nicaragua,82.0,t +49126,100%,Guinea,3.0,t +11193,,French Guiana,1.0,f +22561,,Uzbekistan,1.0,f +2781,,,1.0,f +1803,,Chad,1.0,f +34653,100%,Turkmenistan,1.0,t +25508,67%,Guinea,1.0,f +903,0%,Anguilla,1.0,f +10232,,French Polynesia,1.0,t +20287,100%,Tonga,1.0,t +34296,,Kenya,3.0,f +14658,,Niger,1.0,f +24775,97%,Montserrat,44.0,f +18848,,,3.0,t +18848,,,3.0,t +20063,,Gibraltar,1.0,f +33212,,Jersey,1.0,t +2675,100%,Cuba,1.0,f +28121,,Ghana,1.0,t +29891,,Indonesia,1.0,t +17985,,Croatia,1.0,t +16602,,Gambia,2.0,t +39270,,Russian Federation,1.0,t +9222,100%,Brazil,18.0,t +40678,100%,Ecuador,3.0,t +6007,100%,Russian Federation,1.0,f +4094,,Russian Federation,4.0,t +49596,,,1.0,t +6586,,Turkmenistan,1.0,t +23301,,Vietnam,1.0,t +21286,100%,Tonga,6.0,t +37057,100%,Lebanon,2.0,f +47780,,Rwanda,1.0,f +43152,100%,Nicaragua,82.0,t +24775,97%,Montserrat,44.0,f +27357,,Russian Federation,1.0,t +5858,,Cape Verde,2.0,t +28562,80%,Niger,1.0,t +21301,70%,,1.0,t +21462,100%,Guinea,4.0,t +30435,99%,Cape Verde,41.0,f +14240,100%,Chile,3.0,t +43152,100%,Nicaragua,82.0,t +30435,99%,Cape Verde,41.0,f +36438,,Mauritania,2.0,t +3362,40%,Rwanda,1.0,t +43152,100%,Nicaragua,82.0,t +42229,100%,Fiji,25.0,f +22316,100%,Zimbabwe,1.0,t +49253,,Philippines,1.0,f +32108,100%,,1.0,t +44459,89%,Kenya,1.0,t +9701,,Kenya,1.0,f +22550,,Zimbabwe,1.0,t +12942,,Guinea,3.0,t +14700,100%,Montserrat,3.0,f +15449,,Guinea,1.0,t +27631,,Indonesia,1.0,t +42259,,Russian Federation,1.0,t +2080,0%,Malta,1.0,t +20467,,Niue,1.0,t +22483,,Guinea,1.0,t +238,67%,Netherlands Antilles,1.0,t +20291,,Gibraltar,2.0,t +5858,,Cape Verde,2.0,t +3021,,,1.0,f +18473,,,1.0,f +7179,,Maldives,3.0,f +45228,100%,,2.0,t +38198,,Bouvet Island (Bouvetoya),2.0,f +23009,100%,Gambia,1.0,t +8484,100%,Monaco,17.0,t +1302,,Brazil,2.0,t +21097,,,1.0,t +4323,,,1.0,t +9335,100%,Russian Federation,1.0,f +4832,,Jersey,6.0,t +15880,100%,,1.0,f +6407,0%,Niue,3.0,f +22420,,Tonga,1.0,t +25095,100%,Senegal,4.0,f +39752,100%,Ecuador,1.0,f +23479,,Gambia,1.0,t +3316,,,2.0,f +12727,100%,Marshall Islands,1.0,t +24577,,Malawi,2.0,t +4094,,Russian Federation,4.0,t +47691,100%,Gibraltar,1.0,f +6037,80%,Guinea,9.0,t +46568,,Maldives,2.0,t +8588,,,2.0,f +18352,,Tokelau,4.0,t +26938,,Nicaragua,1.0,f +46361,,Chad,1.0,t +36985,100%,Kiribati,7.0,t +11893,100%,Isle of Man,1.0,t +458,,,1.0,t +16864,100%,Reunion,1.0,t +35235,100%,Isle of Man,1.0,f +24068,,,1.0,f +5605,,,1.0,t +4382,100%,Saint Helena,1.0,t +32570,,Guinea,4.0,t +25925,100%,Guinea,1.0,t +41003,,Zimbabwe,1.0,t +17252,100%,Cuba,2.0,f +19489,,Jersey,1.0,f +5267,100%,Tunisia,1.0,f +25728,100%,Bouvet Island (Bouvetoya),3.0,f +17772,,Jersey,1.0,f +5077,100%,,2.0,t +1615,,Malta,1.0,f +5182,,Gibraltar,1.0,f +28387,,Afghanistan,1.0,t +24311,100%,Uzbekistan,2.0,t +10594,88%,,2.0,t +11127,,Cook Islands,1.0,t +46733,100%,Korea,1.0,t +24533,,,1.0,t +31580,100%,Niue,2.0,t +21757,,Kenya,2.0,t +43152,100%,Nicaragua,82.0,t +28429,100%,Gambia,1.0,t +40619,100%,Mexico,1.0,f +43152,100%,Nicaragua,82.0,t +43152,100%,Nicaragua,82.0,t +19953,,United Kingdom,3.0,t +24577,,Malawi,2.0,t +37383,100%,,1.0,t +18399,100%,Kiribati,8.0,t +5777,100%,Puerto Rico,3.0,t +23865,90%,,2.0,t +14209,100%,Malawi,3.0,f +18399,100%,Kiribati,8.0,t +18399,100%,Kiribati,8.0,t +18399,100%,Kiribati,8.0,t +13254,,,1.0,t +42564,,Zimbabwe,1.0,t +1720,,Marshall Islands,1.0,t +49757,100%,Isle of Man,1.0,t +172,,Niue,4.0,f +32263,100%,,1.0,t +17144,100%,Barbados,1.0,t +154,100%,,1.0,t +40871,,,1.0,f +13569,90%,Sao Tome and Principe,1.0,t +32940,,Peru,1.0,f +20990,,Croatia,2.0,f +252,,Lebanon,1.0,t +11332,100%,Croatia,2.0,t +6233,80%,Pakistan,3.0,f +32801,63%,Somalia,1.0,f +20322,100%,,1.0,t +42684,,Svalbard & Jan Mayen Islands,1.0,t +19315,100%,Malawi,1.0,t +4094,,Russian Federation,4.0,t +42376,33%,,1.0,t +43231,,Lebanon,1.0,t +25165,93%,Uzbekistan,7.0,f +37809,100%,Uzbekistan,2.0,f +25589,70%,Russian Federation,1.0,t +9307,100%,Puerto Rico,1.0,f +17014,,,1.0,t +47848,30%,Uzbekistan,1.0,t +40128,100%,Russian Federation,3.0,t +25740,,,1.0,f +11255,93%,Suriname,41.0,f +15984,,Micronesia,1.0,f +10489,,,1.0,t +43872,100%,Guinea,1.0,t +48391,,Ecuador,1.0,t +44165,100%,,1.0,t +35983,91%,Brazil,4.0,t +34865,,Uganda,2.0,t +41555,,,1.0,t +29564,100%,Turkmenistan,1.0,t +17962,,Isle of Man,1.0,f +3273,,Holy See (Vatican City State),2.0,t +9305,100%,Sao Tome and Principe,2.0,t +37900,,Guernsey,2.0,t +37533,100%,,1.0,f +37573,,,1.0,f +30822,,,1.0,t +5740,,Brazil,1.0,f +24003,,Isle of Man,1.0,t +15712,,Chile,1.0,t +17125,,Nicaragua,1.0,t +25164,,Kenya,4.0,f +27361,,,3.0,t +11532,,Russian Federation,1.0,f +6902,88%,Russian Federation,1.0,t +41176,,Lebanon,1.0,t +23757,100%,Tonga,1.0,t +8648,100%,,1.0,f +4702,100%,El Salvador,2.0,f +10070,,Turkmenistan,1.0,f +11426,100%,,3.0,t +47063,100%,Uruguay,1.0,t +6536,100%,Malta,3.0,t +49053,94%,Indonesia,4.0,t +5859,40%,Papua New Guinea,1.0,t +15014,100%,Rwanda,3.0,f +33728,100%,Monaco,2.0,f +41504,100%,Monaco,2.0,t +45010,,Russian Federation,1.0,t +22476,,Barbados,1.0,t +37662,100%,Kenya,2.0,t +20617,,Chad,1.0,t +8505,70%,Niue,1.0,f +44145,100%,Rwanda,4.0,t +30481,100%,Slovakia (Slovak Republic),2.0,t +38540,100%,Kenya,1.0,f +28652,,,1.0,t +11762,100%,French Guiana,1.0,t +12714,100%,Gibraltar,1.0,t +45337,90%,Tonga,3.0,f +40719,,Gambia,2.0,t +13980,,Isle of Man,1.0,f +24747,100%,Nicaragua,6.0,f +43802,,Sao Tome and Principe,1.0,t +266,100%,Tunisia,1.0,t +29461,,Bosnia and Herzegovina,5.0,t +32561,100%,Lebanon,3.0,f +9264,88%,Kenya,2.0,t +4517,100%,El Salvador,3.0,t +2955,,Tonga,1.0,t +22848,,Russian Federation,1.0,f +32749,,Isle of Man,1.0,t +43405,,Jersey,1.0,t +1118,,,1.0,t +16971,,,1.0,t +16263,,Isle of Man,2.0,f +28560,100%,Estonia,3.0,t +2623,,Pakistan,1.0,t +10634,100%,Lithuania,3.0,t +33219,100%,Uzbekistan,7.0,f +4267,100%,Senegal,22.0,t +12695,80%,El Salvador,1.0,f +5258,,Turkmenistan,3.0,t +46392,,Nicaragua,1.0,f +27549,,Monaco,1.0,t +4821,100%,Niger,2.0,t +43944,100%,,2.0,f +39555,100%,Marshall Islands,13.0,t +20482,100%,Malta,1.0,t +29287,100%,Indonesia,2.0,t +24212,90%,Chile,2.0,t +48831,100%,Cape Verde,5.0,t +39555,100%,Marshall Islands,13.0,t +47888,,Marshall Islands,1.0,f +37509,,Turks and Caicos Islands,1.0,f +40259,,,2.0,t +41755,100%,Isle of Man,2.0,f +14838,83%,Lebanon,1.0,t +3973,,Monaco,1.0,f +30885,100%,Uzbekistan,1.0,f +36985,100%,Kiribati,7.0,t +18566,90%,Nicaragua,2.0,t +20884,100%,Switzerland,1.0,t +34277,100%,Niue,2.0,t +36985,100%,Kiribati,7.0,t +4946,,Chad,1.0,t +15023,100%,Tanzania,1.0,t +11388,75%,Marshall Islands,1.0,t +6687,100%,El Salvador,1.0,f +27494,100%,El Salvador,1.0,t +46691,90%,Uzbekistan,38.0,f +14011,100%,United Kingdom,1.0,t +11380,100%,United Kingdom,1.0,t +44489,,Sao Tome and Principe,1.0,f +38780,,Chad,1.0,t +10479,100%,Palestinian Territory,3.0,t +24728,100%,Turkmenistan,3.0,t +17563,,Gambia,1.0,f +48220,80%,Nauru,1.0,t +40128,100%,Russian Federation,3.0,t +20966,,Lebanon,1.0,t +33577,,Tanzania,1.0,t +28342,100%,Tonga,1.0,f +34406,,,1.0,t +12006,100%,Uruguay,5.0,f +18556,100%,Russian Federation,2.0,t +45483,,Christmas Island,1.0,f +36303,,,1.0,f +21733,0%,Guinea,1.0,f +26570,100%,,1.0,f +8512,100%,Afghanistan,1.0,t +6973,100%,Zimbabwe,2.0,t +4361,100%,,1.0,t +45105,100%,Niue,1.0,f +9819,,United Kingdom,1.0,t +4670,100%,Jersey,1.0,f +43456,100%,Niue,1.0,t +19479,80%,Niue,4.0,f +2603,96%,Uzbekistan,7.0,f +27022,,,1.0,t +16524,,,1.0,f +9083,,Venezuela,1.0,t +10170,,Micronesia,1.0,t +32468,100%,Kiribati,1.0,t +2567,,Lebanon,1.0,t +43901,,Isle of Man,1.0,t +42743,,Chile,1.0,f +47942,,Netherlands,1.0,t +29461,,Bosnia and Herzegovina,5.0,t +15021,,Malta,1.0,f +30056,,Kenya,1.0,t +25218,100%,Croatia,3.0,t +46402,,Zimbabwe,1.0,t +14479,100%,United Kingdom,1.0,t +41939,,Gambia,1.0,f +36985,100%,Kiribati,7.0,t +24366,,Togo,1.0,f +40052,0%,Guinea,1.0,f +30398,,Gambia,1.0,t +32065,100%,Niue,1.0,f +44477,90%,Maldives,3.0,t +25235,,,1.0,t +42211,,Lebanon,1.0,f +37460,,,1.0,f +5961,,,1.0,t +32003,100%,Brazil,5.0,f +5434,,French Guiana,2.0,t +39155,100%,Russian Federation,2.0,t +21280,,,1.0,t +18172,,,2.0,t +25218,100%,Croatia,3.0,t +25218,100%,Croatia,3.0,t +40365,,Sao Tome and Principe,1.0,f +16353,100%,Micronesia,2.0,f +26584,100%,Brazil,1.0,f +44194,100%,Indonesia,5.0,t +23766,100%,Guinea,2.0,f +20807,100%,Mauritania,2.0,t +12210,100%,United Kingdom,2.0,f +16006,100%,Tanzania,3.0,t +34239,,Rwanda,1.0,t +40907,56%,Kenya,2.0,t +8058,90%,Niger,2.0,t +34628,,Micronesia,1.0,t +10789,0%,Uzbekistan,1.0,t +43566,100%,Costa Rica,1.0,f +4381,0%,Faroe Islands,1.0,t +4995,,Sao Tome and Principe,1.0,f +5744,90%,Costa Rica,2.0,t +42912,100%,Turks and Caicos Islands,2.0,t +632,80%,Uzbekistan,1.0,t +44310,80%,France,1.0,f +18399,100%,Kiribati,8.0,t +2532,90%,Russian Federation,1.0,f +15633,,Marshall Islands,1.0,t +6973,100%,Zimbabwe,2.0,t +10178,100%,Guernsey,1.0,t +25592,0%,,1.0,f +1033,,,2.0,t +9742,,Chad,1.0,t +36762,,Kenya,1.0,t +13977,90%,Isle of Man,1.0,f +26682,100%,France,2.0,f +11011,,Marshall Islands,1.0,f +6296,100%,,1.0,f +10578,100%,,1.0,f +26369,92%,Uganda,2.0,t +1963,100%,,1.0,t +2838,100%,,1.0,t +771,33%,Uganda,4.0,t +41063,,Monaco,2.0,t +22324,100%,Venezuela,6.0,t +6562,100%,Slovakia (Slovak Republic),5.0,f +16151,100%,Malta,1.0,t +21543,,Nicaragua,1.0,f +38078,100%,Uzbekistan,2.0,t +35925,100%,Croatia,2.0,f +37082,,Lebanon,1.0,t +5682,100%,Guinea,2.0,t +25562,100%,Zimbabwe,1.0,f +34541,70%,Kenya,1.0,f +42169,50%,,1.0,t +44332,100%,Jersey,2.0,t +20437,100%,Micronesia,2.0,t +20437,100%,Micronesia,2.0,t +28185,100%,Brazil,1.0,t +40719,,Gambia,2.0,t +312,,French Guiana,1.0,t +29212,100%,,1.0,t +15160,100%,Peru,5.0,t +30608,,Maldives,1.0,t +36734,,Philippines,1.0,t +26571,,,3.0,f +48651,100%,Nicaragua,1.0,t +49569,,,1.0,f +6172,,Russian Federation,1.0,t +27273,92%,,1.0,t +22251,100%,Gambia,11.0,f +9376,,,1.0,t +47548,100%,Malta,1.0,t +14291,100%,Niue,1.0,t +10944,40%,Tonga,2.0,t +7671,,Uzbekistan,1.0,f +4241,100%,Fiji,2.0,t +21942,0%,Russian Federation,1.0,t +23072,100%,Isle of Man,1.0,t +30084,,Uzbekistan,1.0,t +39952,100%,Tonga,21.0,f +25165,93%,Uzbekistan,7.0,f +17244,,Lebanon,2.0,t +22853,,Uzbekistan,2.0,t +31472,,,2.0,t +289,100%,Cape Verde,1.0,t +7914,,Chile,1.0,f +39695,100%,Guinea,2.0,f +26624,,Fiji,1.0,t +24728,100%,Turkmenistan,3.0,t +23271,,Turkmenistan,2.0,f +41077,71%,Nauru,2.0,f +3630,0%,Russian Federation,1.0,t +43772,50%,Mexico,12.0,t +43665,,Niue,1.0,t +44609,,,1.0,f +2164,82%,Rwanda,5.0,t +32212,,Puerto Rico,1.0,f +39523,100%,Philippines,1.0,f +21193,,Suriname,1.0,t +14625,,Chile,1.0,f +15193,100%,Tanzania,2.0,t +9517,100%,,2.0,f +40662,75%,Malawi,3.0,t +40734,,Bosnia and Herzegovina,1.0,f +19728,100%,Russian Federation,1.0,t +2302,,,1.0,t +48571,100%,Uzbekistan,2.0,f +10989,,Netherlands,1.0,f +43936,,Rwanda,2.0,t +14908,,Denmark,2.0,t +14908,,Denmark,2.0,t +38401,100%,Guinea,1.0,f +39749,,Brazil,1.0,f +39259,,,1.0,t +49010,,,2.0,t +36613,,Jersey,1.0,f +37208,,France,1.0,t +34515,,China,2.0,t +46691,90%,Uzbekistan,38.0,f +28565,100%,Marshall Islands,2.0,t +43936,,Rwanda,2.0,t +21263,100%,Isle of Man,1.0,t +12006,100%,Uruguay,5.0,f +44194,100%,Indonesia,5.0,t +18013,,Vanuatu,1.0,t +3017,100%,Ukraine,3.0,f +46267,100%,Ecuador,1.0,t +16937,70%,Cocos (Keeling) Islands,3.0,f +3017,100%,Ukraine,3.0,f +21113,,Faroe Islands,1.0,t +7457,100%,,3.0,t +49258,,,1.0,f +41080,89%,Tonga,10.0,t +35873,,,2.0,f +28436,100%,Anguilla,1.0,t +4141,100%,Guinea,1.0,t +34437,,,1.0,f +22299,,Uganda,1.0,t +18176,,Ghana,1.0,t +12006,100%,Uruguay,5.0,f +42974,,Lebanon,3.0,t +14432,100%,Guinea,2.0,t +17083,,Estonia,1.0,t +28565,100%,Marshall Islands,2.0,t +11255,93%,Suriname,41.0,f +34106,100%,Cuba,1.0,t +28188,100%,Nicaragua,4.0,t +49673,92%,Malawi,3.0,f +2164,82%,Rwanda,5.0,t +43762,88%,Cocos (Keeling) Islands,1.0,f +10707,100%,Somalia,3.0,t +45741,100%,Uzbekistan,6.0,t +27285,83%,Russian Federation,1.0,f +2010,89%,,1.0,t +16941,100%,Russian Federation,3.0,f +46311,,Maldives,1.0,t +49601,,Russian Federation,1.0,t +14243,100%,Maldives,1.0,f +25851,,,1.0,t +19092,100%,,2.0,t +26531,100%,Nicaragua,2.0,t +49207,,Pakistan,2.0,t +23715,,Brazil,1.0,t +9038,100%,Marshall Islands,3.0,t +49207,,Pakistan,2.0,t +45320,,Estonia,2.0,f +33984,100%,Togo,1.0,f +15706,,Kenya,7.0,t +39887,,Micronesia,1.0,f +37310,90%,Turks and Caicos Islands,3.0,t +37310,90%,Turks and Caicos Islands,3.0,t +40987,100%,Maldives,2.0,t +11347,100%,Gibraltar,3.0,f +7402,100%,,1.0,f +12407,88%,Sao Tome and Principe,1.0,f +36468,100%,Russian Federation,2.0,t +15730,,Jersey,1.0,f +29856,64%,Niue,2.0,t +27079,,Maldives,14.0,t +935,,Guernsey,1.0,t +24106,90%,,1.0,f +16936,100%,Sao Tome and Principe,1.0,f +36630,100%,Niue,1.0,t +40905,100%,Uzbekistan,1.0,t +15507,100%,Micronesia,2.0,f +33219,100%,Uzbekistan,7.0,f +4861,,,1.0,t +19373,,Tonga,1.0,t +44194,100%,Indonesia,5.0,t +28233,,Fiji,2.0,t +47191,,Monaco,1.0,t +37985,,Russian Federation,1.0,t +25718,100%,Niue,1.0,t +14701,,Montserrat,1.0,f +33219,100%,Uzbekistan,7.0,f +20875,,,1.0,t +44820,,,1.0,f +30783,,Guinea,1.0,f +29070,100%,Micronesia,1.0,f +13082,100%,Kiribati,3.0,t +7477,,Niue,2.0,t +36468,100%,Russian Federation,2.0,t +16900,,,7.0,f +38547,0%,Angola,3.0,t +16900,,,7.0,f +16900,,,7.0,f +16900,,,7.0,f +36147,100%,,1.0,t +39962,,Russian Federation,1.0,f +7638,100%,,1.0,f +9108,40%,Guinea,1.0,t +45783,100%,Nauru,1.0,t +47600,,Bosnia and Herzegovina,1.0,f +43152,100%,Nicaragua,82.0,t +49898,,Lebanon,3.0,t +12043,0%,,1.0,t +37232,100%,Gambia,2.0,t +38474,,,3.0,t +24748,,Korea,1.0,t +15143,,United Kingdom,2.0,t +22805,,,2.0,t +29246,50%,Malawi,1.0,t +15160,100%,Peru,5.0,t +49898,,Lebanon,3.0,t +15160,100%,Peru,5.0,t +15160,100%,Peru,5.0,t +2583,100%,Micronesia,2.0,t +39695,100%,Guinea,2.0,f +26966,67%,Svalbard & Jan Mayen Islands,1.0,f +49826,100%,Finland,1.0,t +13278,95%,Isle of Man,7.0,f +11255,93%,Suriname,41.0,f +41280,100%,French Guiana,2.0,t +40358,,French Guiana,2.0,t +3549,,,1.0,f +37776,,,1.0,t +3285,,Nicaragua,1.0,t +31975,100%,Venezuela,1.0,f +40876,,Bosnia and Herzegovina,1.0,t +10779,60%,Kenya,1.0,t +2667,100%,Niue,3.0,f +1106,50%,Nicaragua,1.0,t +10328,,Tonga,1.0,t +5374,,Montserrat,2.0,t +1569,100%,Maldives,1.0,t +3610,,,1.0,t +28685,100%,Guinea,1.0,t +6481,,Guinea,2.0,f +33996,,,1.0,t +3535,,Peru,1.0,f +43996,100%,,1.0,t +42912,100%,Turks and Caicos Islands,2.0,t +36717,100%,Guinea,3.0,t +40198,,Russian Federation,1.0,t +36190,100%,,3.0,t +10317,,Venezuela,1.0,f +33453,100%,Russian Federation,1.0,t +31747,50%,Bosnia and Herzegovina,1.0,t +28731,100%,Faroe Islands,1.0,t +41168,100%,Malawi,4.0,t +43671,100%,Isle of Man,1.0,f +45388,100%,Bouvet Island (Bouvetoya),1.0,t +4517,100%,El Salvador,3.0,t +34734,,Netherlands,1.0,t +21457,100%,Russian Federation,4.0,t +15341,100%,Reunion,4.0,t +9916,100%,Niger,4.0,f +17647,100%,Papua New Guinea,1.0,t +45919,100%,Montserrat,9.0,t +20126,,Vanuatu,1.0,t +21044,,Reunion,1.0,t +37737,100%,,1.0,t +28012,100%,Vietnam,4.0,f +14074,,Niue,1.0,f +42082,100%,Mauritania,1.0,t +19526,100%,Malta,2.0,f +20365,,Mauritania,1.0,t +34033,100%,Afghanistan,2.0,t +46085,,Turkmenistan,1.0,t +27588,,,1.0,t +45013,,Guernsey,1.0,f +30219,,Svalbard & Jan Mayen Islands,1.0,f +36285,100%,Isle of Man,2.0,t +5168,100%,,1.0,f +35421,100%,Russian Federation,1.0,t +10705,100%,Russian Federation,2.0,f +1725,90%,France,3.0,f +44181,80%,Russian Federation,2.0,f +3866,100%,Indonesia,8.0,t +42064,,Tonga,1.0,f +27390,25%,Niue,2.0,f +40662,75%,Malawi,3.0,t +38831,65%,Tanzania,8.0,t +29461,,Bosnia and Herzegovina,5.0,t +39084,100%,Isle of Man,1.0,t +19578,100%,Mauritania,2.0,t +1192,,Nicaragua,2.0,t +43955,,Tonga,1.0,t +6851,100%,Isle of Man,1.0,f +22321,100%,United Kingdom,16.0,f +2288,100%,Guinea,1.0,f +47678,,Indonesia,1.0,t +21789,100%,,1.0,t +23059,100%,French Guiana,1.0,t +39952,100%,Tonga,21.0,f +13737,100%,Gibraltar,1.0,t +22947,100%,,1.0,f +32963,,,1.0,t +4583,33%,,1.0,t +17254,70%,,3.0,t +30547,100%,Puerto Rico,1.0,f +22321,100%,United Kingdom,16.0,f +22321,100%,United Kingdom,16.0,f +48997,100%,Jersey,2.0,t +22321,100%,United Kingdom,16.0,f +6088,100%,,14.0,t +8857,100%,Svalbard & Jan Mayen Islands,1.0,t +12741,83%,,1.0,t +43152,100%,Nicaragua,82.0,t +36318,96%,United Kingdom,3.0,t +44562,100%,Togo,1.0,t +19526,100%,Malta,2.0,f +22557,,Kiribati,1.0,t +38474,,,3.0,t +40367,100%,Marshall Islands,1.0,f +24641,,Zimbabwe,1.0,t +49949,,Guinea,1.0,f +21247,100%,Guernsey,1.0,f +21259,,Isle of Man,2.0,t +37554,100%,Nauru,1.0,t +23731,100%,Holy See (Vatican City State),2.0,t +24677,100%,Nauru,1.0,t +1246,100%,Malta,1.0,f +7229,,,1.0,f +4658,,Mauritania,1.0,t +14120,100%,Jersey,1.0,f +25637,100%,French Guiana,3.0,t +31036,,Faroe Islands,1.0,f +2820,,,2.0,t +30327,90%,Isle of Man,1.0,f +39963,,,1.0,t +14824,,Niger,1.0,f +41522,,Faroe Islands,1.0,f +38333,,Zimbabwe,1.0,t +4371,100%,Marshall Islands,4.0,t +4371,100%,Marshall Islands,4.0,t +22625,100%,Nicaragua,3.0,t +20758,100%,Uzbekistan,2.0,t +6166,100%,El Salvador,1.0,t +4371,100%,Marshall Islands,4.0,t +3189,100%,Marshall Islands,2.0,t +18106,,,1.0,f +37598,,Vanuatu,1.0,t +41682,0%,Isle of Man,1.0,f +27696,100%,Ecuador,2.0,f +21001,100%,Ecuador,2.0,t +47835,,,1.0,t +13454,100%,Malta,1.0,f +38447,,,1.0,t +21029,,Canada,1.0,t +31088,100%,Isle of Man,2.0,f +39055,,Micronesia,1.0,t +2683,,Guinea,1.0,t +45006,,Zimbabwe,1.0,t +28547,100%,,1.0,t +31873,99%,Uzbekistan,22.0,f +6908,100%,Rwanda,1.0,f +25459,100%,Niger,1.0,f +49371,100%,Sao Tome and Principe,6.0,t +7420,100%,Russian Federation,1.0,f +113,,Kenya,1.0,t +25693,67%,Micronesia,3.0,f +12434,,,1.0,t +30164,,Barbados,1.0,t +22513,90%,Jersey,4.0,t +38308,,Marshall Islands,2.0,t +45163,100%,Chile,2.0,t +32784,,Cocos (Keeling) Islands,1.0,t +31745,100%,Monaco,5.0,t +1411,70%,Brazil,1.0,f +20636,,Venezuela,2.0,t +2535,100%,France,2.0,t +22908,100%,Micronesia,6.0,t +4626,,United Kingdom,1.0,t +27084,100%,French Guiana,1.0,t +36318,96%,United Kingdom,3.0,t +14683,100%,Antarctica (the territory South of 60 deg S),4.0,t +14683,100%,Antarctica (the territory South of 60 deg S),4.0,t +15216,,Chile,1.0,f +6315,,Kenya,1.0,f +6987,,,1.0,t +29942,100%,Finland,1.0,f +37404,100%,,1.0,f +22175,50%,Lebanon,1.0,t +49605,,Chile,1.0,t +19203,,French Guiana,1.0,f +10024,,Venezuela,3.0,t +20480,,Kiribati,1.0,t +44662,100%,Turks and Caicos Islands,1.0,f +8,,Denmark,2.0,t +37438,100%,Andorra,4.0,t +26243,,,1.0,t +15694,100%,Marshall Islands,2.0,f +40358,,French Guiana,2.0,t +48801,,,1.0,t +31663,100%,Micronesia,2.0,f +1131,,,1.0,f +13212,100%,Zimbabwe,12.0,t +43368,100%,,1.0,t +45773,,,1.0,t +46578,100%,Lebanon,6.0,t +40588,,Ecuador,1.0,t +45479,0%,Zimbabwe,1.0,f +45138,79%,Barbados,14.0,f +43436,,,1.0,f +34487,100%,Malta,2.0,f +20628,100%,Jersey,1.0,t +2076,100%,New Zealand,2.0,f +10665,100%,France,1.0,f +44867,,Guinea,2.0,f +16696,100%,Gambia,1.0,t +37068,100%,,1.0,t +43291,100%,Niue,1.0,f +31088,100%,Isle of Man,2.0,f +11498,90%,Niue,1.0,f +16125,,,2.0,t +24169,,,1.0,t +17831,100%,,1.0,f +10705,100%,Russian Federation,2.0,f +6713,100%,Mauritania,10.0,f +22037,70%,,1.0,t +43653,,,1.0,t +163,,,1.0,t +23735,,Isle of Man,2.0,t +29759,100%,,2.0,t +20529,,Anguilla,1.0,f +20282,,Isle of Man,1.0,t +15511,100%,Sao Tome and Principe,4.0,t +11649,,,1.0,t +21105,100%,Indonesia,2.0,t +16175,,Nauru,1.0,f +48365,,Niue,2.0,t +44817,100%,Chile,1.0,t +33873,100%,Turks and Caicos Islands,8.0,t +33249,100%,,1.0,f +2368,78%,France,1.0,t +27127,100%,Marshall Islands,9.0,t +33029,100%,Isle of Man,3.0,f +24940,90%,Malta,1.0,t +27254,,,1.0,t +15448,,Nauru,2.0,t +44220,100%,Holy See (Vatican City State),1.0,t +41309,,,2.0,f +11790,0%,Libyan Arab Jamahiriya,1.0,t +28701,100%,,1.0,t +26152,100%,Anguilla,6.0,t +42137,,Kenya,1.0,f +44950,100%,Russian Federation,1.0,f +34242,100%,Slovakia (Slovak Republic),2.0,t +12808,,Somalia,1.0,t +4090,,,1.0,f +8226,80%,Puerto Rico,5.0,f +35107,100%,,1.0,f +44354,100%,Russian Federation,1.0,t +15384,,Denmark,1.0,t +43481,100%,Russian Federation,4.0,t +43481,100%,Russian Federation,4.0,t +43481,100%,Russian Federation,4.0,t +1524,100%,Russian Federation,1.0,t +8866,90%,Tonga,2.0,t +49230,100%,Brazil,1.0,t +16924,,,1.0,f +35752,100%,Tonga,2.0,t +16127,,Lebanon,1.0,t +25683,100%,Puerto Rico,2.0,f +14773,100%,Cape Verde,1.0,f +13034,100%,,1.0,t +29317,,,1.0,f +36393,100%,Anguilla,1.0,t +36419,,Russian Federation,2.0,f +41769,100%,Brazil,4.0,t +12062,,Brazil,1.0,t +38629,100%,Tonga,4.0,f +28705,,Isle of Man,1.0,t +8519,,Croatia,1.0,t +10363,,Rwanda,1.0,t +8568,,,1.0,f +26878,80%,Monaco,2.0,t +762,100%,Russian Federation,1.0,t +44318,100%,France,1.0,t +30921,,United Kingdom,2.0,t +39643,100%,Zimbabwe,3.0,t +46200,100%,,2.0,f +38288,100%,France,8.0,t +17138,100%,Isle of Man,1.0,t +29055,,Uganda,1.0,t +9517,100%,,2.0,f +3294,100%,Uganda,3.0,f +40894,50%,Bosnia and Herzegovina,1.0,f +11110,88%,Kiribati,3.0,t +11110,88%,Kiribati,3.0,t +36709,,Chile,1.0,t +42280,100%,Micronesia,1.0,t +5224,67%,Niue,1.0,t +15008,100%,Croatia,2.0,f +14607,100%,,1.0,t +15909,,Isle of Man,1.0,t +11776,,Holy See (Vatican City State),1.0,t +25948,100%,Slovakia (Slovak Republic),1.0,t +12106,50%,Mauritania,1.0,t +26099,99%,Reunion,15.0,f +37280,100%,Indonesia,4.0,t +33423,100%,Isle of Man,1.0,t +36763,50%,,1.0,t +13741,,Montserrat,1.0,t +16694,,Russian Federation,3.0,f +37780,100%,,1.0,t +31903,100%,Sao Tome and Principe,2.0,t +34872,93%,Tonga,3.0,t +46048,100%,Indonesia,1.0,t +34683,,,1.0,f +39952,100%,Tonga,21.0,f +11450,100%,Reunion,1.0,f +8226,80%,Puerto Rico,5.0,f +34548,,,1.0,t +11347,100%,Gibraltar,3.0,f +18848,,,3.0,t +47503,,,1.0,t +23148,90%,,1.0,f +1343,,Isle of Man,2.0,f +28583,,Marshall Islands,1.0,t +40888,100%,Marshall Islands,2.0,f +49559,,,1.0,t +35933,75%,Isle of Man,1.0,t +26099,99%,Reunion,15.0,f +48781,100%,Mauritania,1.0,f +6232,,Guinea,15.0,t +33857,,,1.0,t +38221,100%,,3.0,t +38997,100%,Zimbabwe,2.0,t +16405,,France,1.0,f +1653,100%,Peru,1.0,t +25005,100%,Papua New Guinea,1.0,t +27847,100%,Russian Federation,2.0,t +40888,100%,Marshall Islands,2.0,f +3507,,Brazil,1.0,f +43177,,Nauru,1.0,f +42269,94%,Russian Federation,3.0,t +23314,,Mauritania,2.0,t +20898,100%,Marshall Islands,1.0,f +22321,100%,United Kingdom,16.0,f +17104,,Bosnia and Herzegovina,2.0,t +46047,100%,Marshall Islands,1.0,t +39210,100%,,1.0,f +19118,100%,,2.0,t +34686,,Slovakia (Slovak Republic),1.0,t +21704,,,1.0,t +31486,,,1.0,f +15841,100%,Faroe Islands,2.0,t +22358,,Vanuatu,3.0,f +7191,100%,Uzbekistan,2.0,f +38831,65%,Tanzania,8.0,t +32602,100%,France,1.0,t +1623,100%,Kenya,1.0,t +5012,,Malta,1.0,f +45764,100%,Guernsey,1.0,t +44963,0%,Togo,1.0,t +755,100%,Malta,1.0,t +29367,100%,Slovakia (Slovak Republic),3.0,t +9107,,Holy See (Vatican City State),1.0,t +27127,100%,Marshall Islands,9.0,t +18028,,Chad,1.0,t +41673,100%,France,1.0,t +41023,80%,Bosnia and Herzegovina,1.0,f +9165,,Kenya,1.0,f +32456,100%,Lebanon,3.0,t +8005,,Tonga,1.0,f +11190,,Uzbekistan,1.0,f +12959,60%,Mauritania,2.0,f +28090,,,4.0,t +12833,100%,Uzbekistan,3.0,t +31873,99%,Uzbekistan,22.0,f +25754,,,1.0,t +38863,100%,,1.0,t +30042,,Lebanon,1.0,t +18018,,,1.0,t +43633,50%,Sao Tome and Principe,2.0,f +35046,,Sao Tome and Principe,2.0,t +37348,,,1.0,f +23828,100%,Niue,1.0,f +46164,,Niger,1.0,f +6561,100%,Nicaragua,1.0,t +33563,,Zimbabwe,1.0,t +6187,100%,Micronesia,2.0,t +38922,,Russian Federation,1.0,t +24639,100%,Kenya,2.0,t +23987,100%,Monaco,1.0,f +31873,99%,Uzbekistan,22.0,f +18643,,Finland,1.0,t +18352,,Tokelau,4.0,t +25135,50%,Christmas Island,1.0,f +46022,100%,Niger,1.0,t +48738,,Senegal,1.0,t +9789,22%,Niue,1.0,t +36510,,Tonga,1.0,t +8247,,United Kingdom,1.0,f +12029,100%,Russian Federation,1.0,t +23795,100%,Indonesia,1.0,f +36811,,Uzbekistan,1.0,f +27951,,Guernsey,1.0,t +33219,100%,Uzbekistan,7.0,f +32270,100%,Chile,1.0,t +24711,79%,,2.0,f +22832,100%,Monaco,1.0,t +15969,80%,France,3.0,t +19995,90%,,1.0,f +36428,,Monaco,1.0,t +43650,100%,France,2.0,f +33219,100%,Uzbekistan,7.0,f +43650,100%,France,2.0,f +23541,89%,Rwanda,1.0,f +27373,,Anguilla,1.0,t +7765,100%,Niue,9.0,t +45672,100%,Tonga,1.0,t +46331,,China,1.0,t +48456,,Grenada,2.0,t +16825,100%,Russian Federation,2.0,t +46557,,,1.0,f +9365,90%,,1.0,t +45894,,Estonia,1.0,t +11255,93%,Suriname,41.0,f +23619,,Russian Federation,1.0,t +24019,,Russian Federation,1.0,t +12959,60%,Mauritania,2.0,f +23699,100%,Lebanon,1.0,t +10176,,Sao Tome and Principe,1.0,f +6493,100%,Marshall Islands,1.0,t +44655,70%,,3.0,t +2822,100%,Gambia,1.0,t +1515,,Gambia,1.0,f +9497,90%,,3.0,t +17017,,Isle of Man,1.0,t +22876,90%,Marshall Islands,2.0,t +26652,97%,Pakistan,6.0,f +36113,,Tonga,1.0,t +45831,100%,Niue,4.0,f +18381,,Croatia,2.0,f +42132,100%,Marshall Islands,1.0,f +31166,80%,Korea,1.0,f +15758,100%,Togo,1.0,f +47285,,Uzbekistan,2.0,t +44671,,Croatia,1.0,t +21798,,Monaco,1.0,t +33647,100%,Marshall Islands,1.0,t +3699,,Monaco,1.0,t +25434,100%,,2.0,t +10797,,Russian Federation,1.0,t +7811,100%,French Guiana,3.0,t +17065,,Russian Federation,1.0,t +35543,100%,Tonga,1.0,t +7188,,,1.0,t +47363,100%,,1.0,t +15750,,Pakistan,1.0,t +30959,100%,Zimbabwe,2.0,f +23427,100%,Rwanda,1.0,f +37541,,Niue,1.0,f +48817,,Monaco,2.0,t +18260,100%,Uzbekistan,1.0,t +48817,,Monaco,2.0,t +38975,,Brazil,1.0,t +38496,,Croatia,1.0,f +19217,98%,Marshall Islands,46.0,f +6931,,Monaco,1.0,t +35625,98%,Estonia,25.0,t +33349,,Chad,1.0,t +46942,,Holy See (Vatican City State),1.0,t +10610,100%,United Kingdom,6.0,t +28482,,,1.0,t +10610,100%,United Kingdom,6.0,t +33606,,Mauritania,2.0,t +18095,100%,Guinea,1.0,t +33606,,Mauritania,2.0,t +39042,100%,Mexico,2.0,t +2390,,,5.0,t +41496,,Lebanon,1.0,f +20525,100%,,1.0,t +15241,,Brazil,3.0,f +12990,,,1.0,f +26413,100%,Solomon Islands,1.0,f +43714,100%,Palestinian Territory,3.0,f +27238,,Tonga,2.0,t +23172,100%,,1.0,t +2226,0%,Nauru,1.0,f +24618,,Sao Tome and Principe,4.0,f +37400,100%,Uzbekistan,1.0,t +20463,100%,Lithuania,2.0,f +24817,,Gambia,2.0,t +36460,,,1.0,t +44214,,Russian Federation,1.0,t +16629,,Uzbekistan,1.0,t +34679,100%,Niger,2.0,t +36925,100%,,2.0,f +11595,100%,Tonga,1.0,t +253,100%,Myanmar,4.0,t +27213,99%,Jersey,7.0,t +30490,100%,Venezuela,2.0,t +47081,100%,Finland,1.0,t +48928,87%,French Guiana,5.0,f +11496,,Cocos (Keeling) Islands,3.0,t +39607,100%,,1.0,t +47048,,Jersey,1.0,t +45398,100%,Zimbabwe,1.0,t +9746,,Gibraltar,1.0,f +27689,,Maldives,1.0,f +13264,,Isle of Man,1.0,t +10076,,Canada,1.0,t +30728,,,1.0,t +23131,100%,Maldives,1.0,f +16984,100%,Russian Federation,1.0,f +22366,,Malta,1.0,f +25804,,,1.0,f +44835,100%,United Kingdom,3.0,f +43166,,Cocos (Keeling) Islands,1.0,t +49701,100%,Gambia,8.0,f +38881,100%,Uzbekistan,3.0,t +9003,,Bouvet Island (Bouvetoya),1.0,t +15061,,El Salvador,1.0,t +44791,100%,Costa Rica,2.0,t +32122,100%,,1.0,t +11410,,Togo,1.0,f +10610,100%,United Kingdom,6.0,t +1364,,Niue,1.0,t +22883,100%,Micronesia,1.0,t +6232,,Guinea,15.0,t +11103,72%,Russian Federation,3.0,f +29987,,Sao Tome and Principe,1.0,f +35056,,Marshall Islands,1.0,t +6232,,Guinea,15.0,t +47700,,,3.0,t +11583,,Papua New Guinea,1.0,t +6555,,Russian Federation,1.0,f +5149,50%,Guinea,1.0,f +48997,100%,Jersey,2.0,t +49934,100%,Liberia,9.0,t +36102,,Micronesia,1.0,f +20528,,,1.0,t +2142,100%,Puerto Rico,1.0,f +21117,,,2.0,t +4548,80%,Ecuador,1.0,t +17142,100%,Anguilla,1.0,f +33862,,France,1.0,t +7185,,French Guiana,1.0,f +14188,,,2.0,t +42423,,,2.0,f +42423,,,2.0,f +8170,100%,,1.0,t +25489,70%,Guernsey,1.0,f +7115,,Russian Federation,1.0,t +15269,100%,Cape Verde,2.0,t +44634,,,1.0,t +45161,100%,Togo,2.0,t +1991,,Faroe Islands,1.0,f +4651,,Guinea,1.0,t +1175,100%,Monaco,2.0,t +12821,100%,Tonga,1.0,t +29436,,,1.0,t +6974,100%,Barbados,1.0,t +16745,,,1.0,f +13829,100%,Malta,2.0,f +13829,100%,Malta,2.0,f +18326,100%,Monaco,1.0,f +31182,,,2.0,t +1008,,,1.0,t +46186,,,1.0,t +12471,67%,Gibraltar,1.0,t +47837,,Croatia,1.0,t +19309,100%,Maldives,3.0,t +13403,96%,Maldives,21.0,t +6741,80%,Nicaragua,2.0,t +35200,100%,Isle of Man,1.0,t +21090,100%,Kenya,1.0,t +10634,100%,Lithuania,3.0,t +18102,,El Salvador,1.0,t +3449,100%,Peru,1.0,t +4537,100%,Maldives,1.0,f +10610,100%,United Kingdom,6.0,t +23223,100%,Denmark,1.0,f +41346,97%,Estonia,7.0,t +10967,,Anguilla,1.0,t +30634,,Uzbekistan,1.0,t +8535,100%,,1.0,t +17645,,,1.0,t +4404,100%,,1.0,t +15077,,Niue,1.0,t +39074,,,1.0,f +40552,100%,Faroe Islands,1.0,t +5995,,Lebanon,2.0,t +43807,100%,Palestinian Territory,4.0,f +15096,,,1.0,t +5995,,Lebanon,2.0,t +29132,,Kenya,1.0,t +3664,,Brazil,2.0,t +20951,,Jersey,1.0,t +49213,,Micronesia,2.0,t +18436,,Croatia,1.0,t +36195,,Faroe Islands,1.0,t +8118,,Uruguay,1.0,t +25812,,Zimbabwe,1.0,f +32556,90%,Estonia,11.0,t +35880,,Kenya,1.0,t +46039,100%,France,1.0,t +7493,100%,Monaco,1.0,t +30603,67%,Lebanon,1.0,f +8484,100%,Monaco,17.0,t +8484,100%,Monaco,17.0,t +8484,100%,Monaco,17.0,t +46835,,Vanuatu,2.0,t +49152,,,2.0,t +46835,,Vanuatu,2.0,t +25406,,,2.0,t +27835,100%,Isle of Man,2.0,f +41527,100%,Monaco,1.0,t +10100,,Rwanda,2.0,t +18521,,,1.0,f +41914,,Libyan Arab Jamahiriya,1.0,t +46608,100%,Gibraltar,1.0,f +698,100%,,1.0,t +27163,100%,Korea,3.0,t +41701,100%,Monaco,1.0,f +45659,100%,Isle of Man,1.0,t +47370,,Marshall Islands,3.0,t +16875,100%,Svalbard & Jan Mayen Islands,3.0,t +37258,,Russian Federation,1.0,t +9128,,Chad,1.0,f +27781,0%,,1.0,t +20382,100%,Svalbard & Jan Mayen Islands,4.0,t +15282,100%,Nicaragua,1.0,t +23275,,Micronesia,5.0,t +39393,,Costa Rica,1.0,t +29444,100%,Lebanon,2.0,f +44741,100%,,1.0,t +10610,100%,United Kingdom,6.0,t +23659,,French Polynesia,2.0,t +32328,100%,Malta,2.0,f +46183,,,1.0,f +3275,,Bouvet Island (Bouvetoya),1.0,t +47422,99%,Uzbekistan,30.0,f +18566,90%,Nicaragua,2.0,t +24857,100%,Somalia,2.0,t +24373,,Tonga,1.0,f +15456,100%,Portugal,1.0,f +2353,100%,Senegal,2.0,t +26501,100%,Maldives,2.0,t +41168,100%,Malawi,4.0,t +34801,100%,Isle of Man,1.0,f +37094,,Zimbabwe,1.0,t +889,,Russian Federation,1.0,f +40106,,,1.0,t +43152,100%,Nicaragua,82.0,t +2164,82%,Rwanda,5.0,t +48503,90%,Sao Tome and Principe,5.0,t +23275,,Micronesia,5.0,t +9750,,Andorra,1.0,t +15809,,Gibraltar,1.0,t +45582,,Niue,1.0,f +29553,100%,,1.0,t +30040,,Nauru,1.0,t +25779,,Russian Federation,1.0,f +7696,97%,Russian Federation,7.0,t +7696,97%,Russian Federation,7.0,t +7696,97%,Russian Federation,7.0,t +7696,97%,Russian Federation,7.0,t +7696,97%,Russian Federation,7.0,t +22841,100%,Russian Federation,1.0,f +47947,,Monaco,1.0,t +16685,100%,Reunion,2.0,f +33059,,Malta,1.0,f +21094,,Ukraine,1.0,f +43957,,Andorra,1.0,t +13231,,Niue,1.0,t +45711,100%,Fiji,1.0,t +36055,100%,United Kingdom,1.0,t +21382,100%,Marshall Islands,4.0,f +17485,,Russian Federation,1.0,t +437,,Guinea,2.0,t +8350,82%,Nauru,2.0,t +15835,,United Kingdom,1.0,f +26368,100%,Brazil,2.0,f +30451,0%,Jersey,1.0,f +37983,100%,Costa Rica,1.0,t +5253,75%,,1.0,f +5520,,,1.0,t +32429,,Gambia,9.0,f +27407,50%,Micronesia,1.0,f +18613,100%,El Salvador,1.0,t +2960,,Niue,1.0,t +49243,100%,,1.0,f +20784,100%,,2.0,t +36719,,Guinea,1.0,f +26490,,Tanzania,2.0,t +40108,,Maldives,2.0,t +39291,,,1.0,t +16937,70%,Cocos (Keeling) Islands,3.0,f +22367,100%,Canada,3.0,t +32429,,Gambia,9.0,f +43468,100%,Gambia,2.0,t +43306,100%,,1.0,t +28424,,Venezuela,2.0,f +48433,33%,,1.0,t +36620,,Lebanon,1.0,t +42861,100%,,2.0,f +7643,100%,,1.0,t +13879,,Bahrain,1.0,f +19767,,Bosnia and Herzegovina,1.0,f +22645,40%,Senegal,1.0,t +15820,100%,,3.0,f +21024,100%,Spain,1.0,f +3687,,,1.0,f +45968,100%,Micronesia,4.0,t +32429,,Gambia,9.0,f +38713,,Russian Federation,1.0,t +35029,100%,Niue,4.0,f +10671,67%,Croatia,1.0,f +25653,,Sao Tome and Principe,1.0,t +12315,,Chad,1.0,t +10270,,,1.0,t +21577,,Peru,1.0,t +4688,,Monaco,1.0,t +36438,,Mauritania,2.0,t +16388,,Lithuania,1.0,f +31220,,Chile,1.0,t +18479,,Niue,1.0,f +4643,100%,Guinea,2.0,f +3989,100%,Marshall Islands,1.0,t +29709,100%,Tunisia,1.0,t +3329,,Uzbekistan,4.0,f +21585,0%,France,1.0,t +8018,100%,Monaco,1.0,t +41180,,,1.0,f +47283,,Ghana,4.0,t +19445,71%,Malawi,1.0,t +39601,,Faroe Islands,1.0,f +45990,0%,Sao Tome and Principe,1.0,t +21382,100%,Marshall Islands,4.0,f +44155,,Russian Federation,2.0,t +28318,,Chad,1.0,t +45535,,,1.0,t +39701,,Russian Federation,1.0,f +20303,100%,,1.0,t +19283,,Niue,1.0,f +21601,100%,Nicaragua,2.0,t +42229,100%,Fiji,25.0,f +42229,100%,Fiji,25.0,f +4641,100%,,1.0,f +46623,,Chad,1.0,t +29861,,Nauru,1.0,t +42056,90%,Bosnia and Herzegovina,2.0,t +3426,,Chad,2.0,t +7732,100%,Guinea,1.0,t +26260,,Micronesia,1.0,t +25143,,Lebanon,1.0,f +22039,100%,French Guiana,1.0,t +22421,,Zimbabwe,1.0,f +42861,100%,,2.0,f +29999,100%,Rwanda,3.0,t +25030,75%,Micronesia,1.0,t +15798,,Kiribati,2.0,t +42109,100%,Malta,1.0,f +26190,,Montserrat,1.0,t +30972,100%,Russian Federation,1.0,f +36427,100%,Gambia,4.0,t +1112,67%,Indonesia,1.0,t +26945,100%,Malta,1.0,f +20583,100%,,1.0,t +20666,100%,,1.0,t +46033,100%,,1.0,t +1883,90%,Reunion,2.0,t +42916,90%,Micronesia,1.0,t +27071,100%,El Salvador,1.0,f +28067,,French Guiana,1.0,t +37838,,Lebanon,2.0,t +5911,,Sao Tome and Principe,1.0,f +20143,,Senegal,1.0,t +34263,100%,,1.0,f +29093,100%,Uzbekistan,1.0,t +30817,100%,Senegal,1.0,t +36602,,Marshall Islands,1.0,t +24618,,Sao Tome and Principe,4.0,f +48571,100%,Uzbekistan,2.0,f +19303,100%,,1.0,f +3472,,,1.0,f +28217,,Sao Tome and Principe,2.0,f +12355,100%,Micronesia,1.0,t +44737,,El Salvador,2.0,f +23191,,Maldives,1.0,t +44345,83%,,1.0,f +49476,,Lebanon,1.0,f +40107,,Nicaragua,2.0,t +14150,,Uzbekistan,1.0,t +40276,100%,Anguilla,1.0,t +49631,100%,Costa Rica,2.0,f +27129,,,1.0,t +15365,100%,Faroe Islands,3.0,t +14747,100%,Jersey,1.0,t +16489,100%,Russian Federation,42.0,t +21823,,Ghana,1.0,f +5126,,Nauru,1.0,t +19217,98%,Marshall Islands,46.0,f +36842,,Monaco,1.0,f +36647,0%,Russian Federation,1.0,t +9938,,Rwanda,1.0,t +24287,,Chile,1.0,f +25608,100%,,1.0,t +43993,,,1.0,t +7499,,Congo,1.0,t +39057,100%,Jersey,2.0,t +37713,,Niger,1.0,t +24824,100%,Kiribati,4.0,t +35530,100%,,1.0,f +38772,100%,Croatia,1.0,t +24595,100%,Guinea,3.0,t +25110,100%,Malawi,1.0,t +38411,100%,Lithuania,1.0,t +12998,,,1.0,f +36226,,Montserrat,2.0,f +31967,100%,,1.0,t +38064,,,1.0,t +6553,,,1.0,f +9334,,Bouvet Island (Bouvetoya),2.0,t +25865,,Gibraltar,1.0,f +44032,,Tanzania,2.0,t +2603,96%,Uzbekistan,7.0,f +30529,100%,,1.0,f +3294,100%,Uganda,3.0,f +46840,,,1.0,t +5260,,Faroe Islands,1.0,f +15306,,Barbados,8.0,t +23366,100%,,3.0,t +47050,,Grenada,1.0,t +30916,100%,Tunisia,3.0,f +6238,,,1.0,f +18597,100%,Micronesia,2.0,f +23366,100%,,3.0,t +38655,100%,Jersey,1.0,f +3855,,Faroe Islands,1.0,f +10509,78%,Lebanon,2.0,f +15706,,Kenya,7.0,t +43927,100%,,1.0,t +6006,,Monaco,2.0,t +21872,,Ecuador,1.0,t +43172,,,1.0,f +31926,,,1.0,f +44194,100%,Indonesia,5.0,t +8204,,Sao Tome and Principe,1.0,f +44996,,Malta,1.0,f +36678,0%,Micronesia,1.0,t +25827,100%,Lebanon,1.0,t +2346,100%,Mauritania,2.0,t +533,,Isle of Man,1.0,t +7581,100%,Niue,1.0,f +45815,,French Guiana,1.0,f +31763,,Niger,2.0,t +1312,100%,Malta,1.0,t +24824,100%,Kiribati,4.0,t +9350,100%,Mauritania,3.0,t +18594,,Niue,1.0,f +29756,,Croatia,1.0,f +2646,100%,Marshall Islands,1.0,t +12208,100%,Saint Helena,2.0,f +49036,,Kenya,4.0,t +17811,,Niger,1.0,t +47209,,Zimbabwe,1.0,t +36717,100%,Guinea,3.0,t +39952,100%,Tonga,21.0,f +41080,89%,Tonga,10.0,t +43793,,Malawi,1.0,t +41919,100%,Kenya,1.0,t +7810,,El Salvador,1.0,t +23979,100%,Uzbekistan,1.0,t +39196,,French Guiana,1.0,t +44314,,Djibouti,1.0,t +4333,,Niger,1.0,t +8704,,Lebanon,2.0,f +13435,,Brazil,1.0,t +27219,,Gibraltar,3.0,t +4214,100%,Niue,3.0,t +11463,,Chad,1.0,f +23229,,Faroe Islands,2.0,f +24198,25%,French Guiana,4.0,f +42229,100%,Fiji,25.0,f +42229,100%,Fiji,25.0,f +42229,100%,Fiji,25.0,f +42229,100%,Fiji,25.0,f +39482,100%,,1.0,t +36608,,Jersey,1.0,f +20076,,Faroe Islands,1.0,f +39824,,Marshall Islands,1.0,f +35964,100%,Malta,1.0,t +33105,100%,Tonga,4.0,t +33105,100%,Tonga,4.0,t +1638,100%,Jersey,1.0,f +40092,,Rwanda,1.0,f +8240,,Chile,1.0,t +47422,99%,Uzbekistan,30.0,f +36997,100%,Wallis and Futuna,1.0,f +18412,83%,Marshall Islands,7.0,f +39971,,,1.0,f +21018,,,1.0,t +27186,100%,Zimbabwe,7.0,t +18412,83%,Marshall Islands,7.0,f +18412,83%,Marshall Islands,7.0,f +41041,100%,Malta,1.0,f +8028,100%,,1.0,t +37982,,Faroe Islands,2.0,f +4884,100%,Marshall Islands,3.0,f +1248,100%,Tonga,1.0,t +18325,,Guinea,1.0,f +14114,100%,Micronesia,3.0,t +48938,,Marshall Islands,3.0,t +39478,,Chile,1.0,t +11701,100%,,1.0,t +18789,100%,,1.0,f +40518,100%,Tanzania,1.0,t +40230,100%,Gibraltar,1.0,t +45466,,Micronesia,1.0,t +24696,,Lebanon,1.0,t +4458,,French Guiana,1.0,t +3342,,Russian Federation,1.0,t +23578,,Niue,1.0,t +27420,,Niue,1.0,f +26538,,Niue,1.0,t +5476,,Russian Federation,1.0,f +24073,100%,Zimbabwe,2.0,f +28270,0%,Cuba,1.0,f +45555,,Tanzania,2.0,f +49700,,Lebanon,1.0,t +40726,100%,Chile,1.0,t +35943,100%,Guinea,2.0,t +31569,,Guinea,2.0,t +10813,100%,Niue,1.0,f +19682,100%,Faroe Islands,15.0,t +40078,100%,Croatia,7.0,t +23367,,United Kingdom,1.0,t +16511,,Lebanon,2.0,f +9970,,China,1.0,t +17761,,Guinea,1.0,t +29503,100%,Russian Federation,1.0,f +16337,,Russian Federation,2.0,t +21782,,Bouvet Island (Bouvetoya),1.0,t +39198,,Russian Federation,1.0,t +5651,,,1.0,f +16769,80%,Isle of Man,2.0,f +49963,,Venezuela,1.0,f +32193,,Korea,1.0,t +33072,100%,El Salvador,4.0,f +43846,100%,Tonga,2.0,t +6975,,United Kingdom,1.0,t +40115,,Mauritania,1.0,t +9507,25%,Sierra Leone,5.0,t +45974,,Rwanda,1.0,f +26594,,Svalbard & Jan Mayen Islands,1.0,f +48520,,Lebanon,1.0,t +49314,100%,Mexico,2.0,t +15824,100%,Rwanda,3.0,t +28533,,,1.0,f +11778,,Monaco,1.0,t +7081,,,1.0,t +7114,100%,Russian Federation,1.0,f +5778,100%,Russian Federation,1.0,t +38397,,Sao Tome and Principe,1.0,t +30283,100%,Brazil,15.0,f +26490,,Tanzania,2.0,t +21777,,Denmark,1.0,t +22183,100%,Marshall Islands,2.0,t +26682,100%,France,2.0,f +5749,,Brunei Darussalam,1.0,f +12361,100%,Guernsey,4.0,t +13950,100%,Niue,3.0,f +36226,,Montserrat,2.0,f +36601,100%,Faroe Islands,1.0,t +19666,,Finland,2.0,t +21581,,Canada,1.0,f +7619,,Niue,1.0,f +8687,,French Polynesia,1.0,f +5016,100%,Uzbekistan,1.0,f +27904,100%,Ghana,1.0,t +31672,75%,Maldives,6.0,f +9874,100%,Montserrat,4.0,t +30511,,Isle of Man,1.0,t +38694,100%,,1.0,t +14501,100%,Chad,1.0,t +20785,63%,Chad,2.0,t +14612,100%,Kiribati,1.0,f +4588,100%,Malawi,1.0,t +46114,,Kiribati,1.0,f +27765,,,1.0,f +40699,,Senegal,1.0,t +21259,,Isle of Man,2.0,t +32032,100%,Chile,1.0,f +31103,,Netherlands,1.0,t +21440,100%,Mexico,1.0,f +34917,,Maldives,1.0,f +19328,100%,Kenya,1.0,f +11289,,Niue,1.0,f +22183,100%,Marshall Islands,2.0,t +35059,,Estonia,1.0,t +36083,,Bosnia and Herzegovina,1.0,f +10675,,Malta,1.0,f +33823,78%,France,17.0,t +25397,,Gibraltar,1.0,t +7662,,Russian Federation,1.0,t +35808,100%,Mexico,3.0,t +19271,100%,Jersey,11.0,f +393,,Lebanon,1.0,t +18412,83%,Marshall Islands,7.0,f +28902,,Marshall Islands,1.0,f +25947,100%,,1.0,t +98,,Indonesia,1.0,f +14467,,Niue,1.0,t +6566,100%,French Guiana,1.0,t +514,90%,Niger,1.0,f +37586,,Ecuador,1.0,f +31509,100%,Jersey,2.0,t +8401,,Guinea,1.0,f +11534,100%,Wallis and Futuna,1.0,t +33944,100%,,1.0,t +14950,100%,,1.0,t +1014,,French Guiana,1.0,f +6775,90%,,1.0,t +14211,,Niue,2.0,f +34334,,Uzbekistan,1.0,t +16595,,Guinea,1.0,f +44502,,Lebanon,1.0,f +13303,100%,Jersey,1.0,t +6965,,Sao Tome and Principe,1.0,t +14135,100%,Pitcairn Islands,5.0,f +6713,100%,Mauritania,10.0,f +47971,,Lebanon,1.0,t +13922,,Chile,3.0,t +44473,,Tunisia,1.0,f +35689,75%,Isle of Man,2.0,t +6291,,Sao Tome and Principe,2.0,f +46531,,Niue,2.0,f +43909,,Kenya,1.0,t +21212,75%,,1.0,f +17002,100%,Brazil,1.0,t +5325,0%,Mauritania,1.0,f +47206,100%,Mauritania,1.0,t +14079,,Russian Federation,1.0,f +32252,,Sao Tome and Principe,1.0,t +1851,100%,El Salvador,1.0,f +42965,100%,Uzbekistan,11.0,t +11953,,,1.0,f +749,,,1.0,f +36385,,,1.0,t +539,100%,French Guiana,1.0,f +44182,,Sao Tome and Principe,2.0,t +24182,100%,Jersey,2.0,t +46691,90%,Uzbekistan,38.0,f +7811,100%,French Guiana,3.0,t +13502,,Kenya,1.0,t +29948,,Cape Verde,1.0,t +34492,,,1.0,f +7990,100%,Puerto Rico,3.0,f +11538,100%,Papua New Guinea,5.0,t +36939,100%,Guinea,1.0,t +19278,,,1.0,f +36726,94%,Mexico,6.0,f +36726,94%,Mexico,6.0,f +3030,100%,Tunisia,2.0,f +13358,,Bosnia and Herzegovina,1.0,t +46493,,,1.0,f +26680,,Nauru,1.0,f +16512,100%,,2.0,t +18412,83%,Marshall Islands,7.0,f +40378,100%,Chad,3.0,f +29032,,,1.0,t +42625,,Russian Federation,1.0,t +2042,90%,Gambia,7.0,f +47291,67%,Faroe Islands,1.0,f +17801,80%,Mauritania,2.0,t +43655,100%,Lebanon,1.0,t +16939,,Senegal,11.0,t +25554,100%,Somalia,2.0,t +40544,,,1.0,t +41137,0%,,1.0,f +13970,50%,Wallis and Futuna,1.0,f +38142,,,1.0,f +31276,,,1.0,t +42770,,Holy See (Vatican City State),3.0,t +36980,100%,Niue,3.0,t +8586,,Svalbard & Jan Mayen Islands,1.0,t +28535,100%,Netherlands,1.0,t +29853,,Switzerland,1.0,t +46502,,Niue,1.0,f +25751,,Brunei Darussalam,1.0,f +35791,,Montserrat,2.0,t +8323,,Sao Tome and Principe,1.0,f +21898,,Russian Federation,1.0,t +4363,,Lebanon,2.0,f +2042,90%,Gambia,7.0,f +16070,,Netherlands,1.0,t +16939,,Senegal,11.0,t +7335,,Lebanon,2.0,t +42229,100%,Fiji,25.0,f +7335,,Lebanon,2.0,t +5307,100%,Zimbabwe,3.0,t +30732,,,2.0,f +18196,89%,Malawi,1.0,t +24824,100%,Kiribati,4.0,t +2300,,,1.0,f +39234,,Venezuela,3.0,t +38602,,Zimbabwe,1.0,f +18104,,Kenya,1.0,t +7473,,Zimbabwe,3.0,t +1512,100%,Indonesia,1.0,f +13661,,United Kingdom,1.0,t +46246,,Guinea,1.0,f +4705,,China,2.0,t +6006,,Monaco,2.0,t +42822,50%,Jersey,1.0,f +47283,,Ghana,4.0,t +41451,,Isle of Man,1.0,t +30732,,,2.0,f +22925,,El Salvador,1.0,t +2604,,Cook Islands,2.0,t +1666,,Micronesia,1.0,f +8927,,Bouvet Island (Bouvetoya),1.0,t +4950,,French Guiana,1.0,t +35843,,Russian Federation,1.0,t +42200,,Chile,1.0,t +42357,,Micronesia,1.0,t +37108,,Kiribati,1.0,t +33571,,,1.0,t +4415,100%,Tonga,2.0,t +22208,,Chad,1.0,t +32668,,Svalbard & Jan Mayen Islands,1.0,t +16927,100%,Vanuatu,2.0,f +24845,,Niue,1.0,t +41500,100%,,1.0,t +14716,,Faroe Islands,2.0,t +28310,100%,Costa Rica,2.0,t +43147,,Gambia,1.0,t +20784,100%,,2.0,t +49993,100%,Guinea,1.0,t +32085,,Micronesia,1.0,t +2353,100%,Senegal,2.0,t +21462,100%,Guinea,4.0,t +4129,100%,Niue,3.0,t +1976,100%,Marshall Islands,1.0,t +42427,,Nicaragua,1.0,t +13362,,,1.0,t +24796,,Kenya,2.0,t +29426,90%,French Guiana,1.0,t +36206,86%,Russian Federation,10.0,f +32606,,Tonga,2.0,t +6222,,Russian Federation,1.0,t +41162,,Niue,2.0,f +33806,,Monaco,1.0,t +13110,100%,Wallis and Futuna,2.0,t +1700,,Andorra,1.0,t +12138,80%,Isle of Man,2.0,t +11246,69%,Maldives,4.0,t +11246,69%,Maldives,4.0,t +31368,100%,Faroe Islands,1.0,f +48732,,Mauritania,1.0,t +8546,,San Marino,1.0,t +13931,100%,Guinea,1.0,f +20194,100%,Russian Federation,2.0,t +36681,100%,Tunisia,1.0,t +19587,,Isle of Man,1.0,t +617,,Niue,1.0,t +18118,,Zimbabwe,3.0,t +30623,,Barbados,1.0,t +43823,,Chad,2.0,t +12877,,Croatia,1.0,t +43675,70%,Micronesia,2.0,f +35503,100%,Mexico,3.0,f +38162,100%,Niger,8.0,f +29874,,Chad,1.0,t +38373,,Tunisia,2.0,t +18153,,Vanuatu,1.0,t +18118,,Zimbabwe,3.0,t +24848,100%,Andorra,2.0,t +23011,,,1.0,f +39952,100%,Tonga,21.0,f +36645,100%,Isle of Man,1.0,f +12346,,Denmark,1.0,t +7942,,Brazil,4.0,t +39745,,,1.0,t +42770,,Holy See (Vatican City State),3.0,t +45650,,Malta,1.0,t +41942,,Bouvet Island (Bouvetoya),1.0,t +31680,,Guinea,1.0,f +32849,,,1.0,t +22643,,Reunion,1.0,t +12230,90%,Guinea,3.0,f +36141,,,1.0,t +12171,,,1.0,f +37704,96%,Fiji,26.0,f +42065,,,1.0,f +35527,100%,Marshall Islands,13.0,f +38313,,Philippines,1.0,t +12560,100%,Monaco,2.0,t +44737,,El Salvador,2.0,f +22432,,Lebanon,1.0,t +49699,,Andorra,1.0,t +35527,100%,Marshall Islands,13.0,f +35527,100%,Marshall Islands,13.0,f +48754,100%,Jersey,1.0,t +35527,100%,Marshall Islands,13.0,f +28570,,Kenya,1.0,t +35527,100%,Marshall Islands,13.0,f +35527,100%,Marshall Islands,13.0,f +35527,100%,Marshall Islands,13.0,f +35527,100%,Marshall Islands,13.0,f +35527,100%,Marshall Islands,13.0,f +35527,100%,Marshall Islands,13.0,f +35527,100%,Marshall Islands,13.0,f +35527,100%,Marshall Islands,13.0,f +35527,100%,Marshall Islands,13.0,f +37867,,Niue,2.0,f +18540,,Uzbekistan,1.0,t +30731,100%,,5.0,t +47172,50%,Lebanon,1.0,t +14491,,,1.0,f +34911,,Marshall Islands,1.0,f +31307,,,2.0,t +32760,100%,,2.0,f +45128,,,1.0,f +11622,100%,,3.0,t +2829,100%,Monaco,1.0,f +34343,100%,Marshall Islands,1.0,t +33277,,Pakistan,1.0,f +21886,,Croatia,5.0,t +34962,,Gambia,1.0,t +16298,100%,Tanzania,2.0,t +10343,,Bouvet Island (Bouvetoya),2.0,f +39020,,Micronesia,4.0,t +29339,,Tunisia,1.0,f +11844,75%,Saint Helena,1.0,t +3697,,,1.0,t +45091,,Tonga,1.0,t +29148,75%,Anguilla,1.0,t +48455,89%,Uzbekistan,20.0,t +29284,,Reunion,2.0,f +13223,,Isle of Man,1.0,f +4724,,,1.0,t +24747,100%,Nicaragua,6.0,f +15892,,Mexico,3.0,t +37478,100%,,1.0,t +13279,100%,Isle of Man,2.0,t +45344,,Guinea,1.0,f +11940,,Switzerland,1.0,t +27950,95%,Indonesia,1.0,t +49970,,Papua New Guinea,1.0,f +33427,100%,Switzerland,5.0,t +37403,,,1.0,f +13672,,,1.0,f +9348,,Tonga,1.0,t +34561,,Isle of Man,1.0,f +15788,,Cuba,1.0,t +17965,100%,Mauritania,6.0,f +6226,,Lebanon,1.0,t +32382,,Sao Tome and Principe,1.0,f +18316,100%,Greenland,1.0,f +29776,90%,Russian Federation,2.0,f +16178,100%,French Guiana,17.0,t +17154,,Finland,1.0,t +18053,,Sao Tome and Principe,1.0,f +47421,100%,Congo,1.0,t +43113,100%,,1.0,t +12874,100%,,1.0,t +14702,,,1.0,f +26673,100%,Congo,1.0,t +182,,Uzbekistan,1.0,t +15740,90%,Uzbekistan,1.0,t +10674,100%,Marshall Islands,2.0,t +42480,100%,Turks and Caicos Islands,1.0,f +30716,,,1.0,f +30821,,Niger,1.0,t +15678,,Lebanon,1.0,t +41818,,,1.0,t +20785,63%,Chad,2.0,t +48302,,Russian Federation,2.0,t +48484,80%,Faroe Islands,3.0,f +44750,,,1.0,t +30513,100%,Vietnam,1.0,t +29895,,,1.0,f +45520,75%,,1.0,t +30591,100%,,1.0,t +16336,,Isle of Man,1.0,f +20758,100%,Uzbekistan,2.0,t +13110,100%,Wallis and Futuna,2.0,t +9705,,Bouvet Island (Bouvetoya),1.0,f +30916,100%,Tunisia,3.0,f +13698,,,1.0,t +2910,,Lebanon,1.0,f +33496,80%,Marshall Islands,2.0,t +46303,,Kenya,2.0,t +14211,,Niue,2.0,f +10556,,Lebanon,1.0,t +17098,,Russian Federation,1.0,f +24016,100%,Bosnia and Herzegovina,29.0,f +10922,100%,,1.0,t +40848,100%,Niue,3.0,f +31182,,,2.0,t +3185,67%,Lebanon,1.0,t +13869,100%,Micronesia,1.0,t +19432,100%,Lithuania,1.0,t +8339,,Denmark,1.0,f +38097,100%,Kenya,1.0,t +624,100%,Barbados,4.0,f +23167,,Gambia,1.0,t +138,,Netherlands,3.0,t +5732,,Ghana,2.0,t +36187,100%,Holy See (Vatican City State),1.0,t +35298,90%,Indonesia,8.0,t +20817,,Ghana,1.0,f +19690,,,1.0,f +17220,,,1.0,t +34784,60%,Faroe Islands,19.0,t +9154,100%,Djibouti,2.0,f +40540,,Cape Verde,7.0,f +48299,100%,Uzbekistan,1.0,f +12084,100%,Faroe Islands,1.0,t +6066,100%,Bahrain,1.0,t +35632,94%,Tonga,2.0,f +46538,,Guinea,1.0,f +36585,,Philippines,1.0,f +35298,90%,Indonesia,8.0,t +21781,100%,Isle of Man,1.0,t +8150,,Svalbard & Jan Mayen Islands,1.0,t +25683,100%,Puerto Rico,2.0,f +12542,98%,Mauritania,19.0,t +41168,100%,Malawi,4.0,t +976,100%,Zimbabwe,2.0,t +14171,100%,Russian Federation,3.0,f +44139,100%,,3.0,t +37367,,Kenya,1.0,t +306,100%,El Salvador,3.0,f +24316,,Niue,1.0,t +29203,100%,Kenya,1.0,t +18324,100%,Russian Federation,1.0,t +24308,60%,Guinea,1.0,f +5334,,Rwanda,2.0,t +23054,50%,Isle of Man,1.0,f +37649,,Niue,1.0,t +31006,,Niue,1.0,f +26990,100%,Chad,1.0,t +31580,100%,Niue,2.0,t +19057,100%,Malta,1.0,t +10007,,Svalbard & Jan Mayen Islands,1.0,t +15106,,Gambia,1.0,t +12889,,,1.0,t +11246,69%,Maldives,4.0,t +46747,,Tonga,1.0,t +41400,0%,,1.0,f +3916,100%,Guernsey,1.0,t +10513,100%,Cuba,1.0,t +5513,,Uruguay,1.0,t +3005,100%,Gambia,1.0,t +913,,Russian Federation,1.0,t +38150,,Micronesia,2.0,t +34049,90%,Isle of Man,1.0,t +1242,,Sao Tome and Principe,1.0,f +26756,,Chad,1.0,f +13818,100%,Maldives,1.0,f +47750,,France,1.0,t +30699,,French Guiana,2.0,t +41275,100%,Marshall Islands,1.0,f +21379,,Netherlands,2.0,t +44070,100%,Ukraine,1.0,t +47554,,Rwanda,2.0,f +41943,0%,Guinea,2.0,f +5994,,Uzbekistan,2.0,f +16869,,Kiribati,2.0,t +48690,100%,Guinea,1.0,t +35298,90%,Indonesia,8.0,t +49676,100%,Guinea,3.0,f +16454,,Marshall Islands,1.0,t +35298,90%,Indonesia,8.0,t +5568,,Montserrat,1.0,t +28217,,Sao Tome and Principe,2.0,f +43246,,Chad,1.0,t +28301,100%,United Kingdom,2.0,f +5334,,Rwanda,2.0,t +7286,100%,,1.0,t +6366,100%,Niue,1.0,f +19827,,Lebanon,1.0,t +9120,,Mauritania,1.0,t +646,,Estonia,1.0,f +17070,82%,Cuba,1.0,f +31591,100%,,1.0,t +7792,,Holy See (Vatican City State),1.0,f +22782,,Guinea,1.0,t +39058,,,1.0,t +18177,93%,Fiji,10.0,f +29367,100%,Slovakia (Slovak Republic),3.0,t +45212,,,1.0,t +38849,,,1.0,f +29367,100%,Slovakia (Slovak Republic),3.0,t +22974,,Cook Islands,1.0,f +48455,89%,Uzbekistan,20.0,t +31960,,Marshall Islands,1.0,t +32411,,Micronesia,1.0,f +42563,90%,Micronesia,3.0,t +38248,100%,Guernsey,1.0,f +33105,100%,Tonga,4.0,t +7217,,Sao Tome and Principe,1.0,f +41907,,El Salvador,3.0,t +9711,89%,Micronesia,2.0,t +30731,100%,,5.0,t +30731,100%,,5.0,t +46126,100%,Zimbabwe,2.0,f +30140,100%,Lebanon,4.0,t +6791,,Russian Federation,2.0,f +31372,100%,Russian Federation,1.0,t +7970,90%,Isle of Man,3.0,t +38406,96%,Russian Federation,6.0,t +37171,,El Salvador,1.0,f +1192,,Nicaragua,2.0,t +33166,100%,Cocos (Keeling) Islands,1.0,t +35298,90%,Indonesia,8.0,t +35157,100%,Malawi,2.0,t +32593,82%,,6.0,t +37704,96%,Fiji,26.0,f +42739,100%,,1.0,f +3712,100%,Zimbabwe,1.0,f +6443,,Uzbekistan,1.0,f +41594,,,1.0,t +27677,,Marshall Islands,1.0,t +21195,,Mexico,1.0,t +35298,90%,Indonesia,8.0,t +4096,,Tunisia,1.0,f +2069,100%,Gambia,4.0,t +13282,,Bosnia and Herzegovina,1.0,f +27180,100%,Mauritania,1.0,t +33096,,Marshall Islands,2.0,t +47964,,Chile,3.0,f +47755,,Sao Tome and Principe,1.0,f +21175,,Nauru,1.0,f +22786,,Kenya,2.0,f +37932,100%,Canada,2.0,t +41161,,,1.0,f +25453,100%,,1.0,f +43139,,Uzbekistan,1.0,t +13706,,,1.0,f +4277,,,1.0,t +30897,100%,Turkmenistan,4.0,t +38312,56%,,1.0,f +43073,100%,Isle of Man,1.0,t +49791,30%,Faroe Islands,2.0,f +25864,,Micronesia,1.0,f +12655,100%,,1.0,t +7485,100%,Tonga,3.0,f +42182,100%,Jersey,1.0,f +27232,,Faroe Islands,1.0,t +17965,100%,Mauritania,6.0,f +493,,Turkmenistan,1.0,f +10100,,Rwanda,2.0,t +37343,75%,Ecuador,4.0,t +3752,,Lithuania,1.0,f +6045,,Congo,1.0,f +29288,,,1.0,t +9373,,Guinea,1.0,t +24999,100%,France,6.0,f +41300,100%,,1.0,t +41059,,Niue,1.0,f +16966,,Denmark,2.0,t +26070,100%,Holy See (Vatican City State),6.0,t +48017,100%,Lebanon,1.0,f +19412,100%,French Guiana,1.0,t +24026,98%,Cape Verde,69.0,t +4285,,Chile,1.0,t +29135,,Gambia,1.0,t +38630,100%,Kiribati,2.0,t +38630,100%,Kiribati,2.0,t +36441,100%,,1.0,t +44523,100%,Monaco,1.0,t +45471,,,1.0,t +34076,100%,Niue,7.0,t +42269,94%,Russian Federation,3.0,t +18210,,Chad,1.0,t +16836,,French Guiana,1.0,t +41214,,Guinea,1.0,t +3748,,Russian Federation,1.0,t +2089,,Russian Federation,1.0,f +44237,100%,Andorra,1.0,t +35098,,Isle of Man,1.0,t +29240,67%,Kenya,1.0,f +7520,100%,Ukraine,15.0,t +49115,100%,Micronesia,1.0,t +7520,100%,Ukraine,15.0,t +11255,93%,Suriname,41.0,f +6798,,,1.0,t +20632,,Russian Federation,1.0,t +3890,,Niue,1.0,f +16441,,Ghana,1.0,t +7520,100%,Ukraine,15.0,t +7520,100%,Ukraine,15.0,t +7373,,Mauritania,9.0,t +49324,,,1.0,f +39797,100%,,1.0,t +21382,100%,Marshall Islands,4.0,f +8735,100%,Guinea,1.0,f +44516,,,1.0,f +20334,99%,Niger,171.0,t +10502,93%,Indonesia,9.0,f +4105,100%,Malawi,3.0,f +9154,100%,Djibouti,2.0,f +48223,,Switzerland,1.0,f +41069,100%,Vietnam,1.0,t +31135,,Zimbabwe,1.0,f +2470,80%,Brazil,4.0,t +27333,100%,Netherlands,1.0,t +25236,100%,Russian Federation,1.0,t +1819,97%,Malta,3.0,t +32672,,,1.0,t +6400,100%,Andorra,2.0,t +46643,,Croatia,1.0,f +44517,,Jersey,1.0,f +11123,100%,,1.0,t +35777,100%,Guernsey,1.0,t +47966,,Chile,1.0,t +35886,,,2.0,f +11208,,Rwanda,4.0,t +45269,,Nauru,1.0,t +47111,100%,,1.0,f +8763,100%,,1.0,f +18659,,El Salvador,1.0,t +26151,,French Guiana,1.0,t +29943,,Rwanda,1.0,t +48531,100%,Sao Tome and Principe,2.0,t +44290,,,1.0,f +16993,100%,Niue,1.0,f +46455,92%,Uzbekistan,4.0,t +7531,,Lebanon,1.0,t +12131,,Isle of Man,1.0,t +22498,50%,Christmas Island,1.0,t +36552,,Maldives,4.0,f +21567,100%,Nicaragua,1.0,t +42880,,Gambia,2.0,f +46199,80%,Somalia,3.0,f +17206,,Marshall Islands,1.0,t +49222,,Sao Tome and Principe,1.0,t +24897,100%,,1.0,f +41178,50%,Barbados,1.0,t +38905,,Venezuela,1.0,f +16511,,Lebanon,2.0,f +3794,100%,Tunisia,1.0,t +34470,,Denmark,3.0,t +34319,,Gibraltar,1.0,t +19630,50%,Niue,2.0,t +46683,,Marshall Islands,1.0,f +34470,,Denmark,3.0,t +724,100%,Zimbabwe,8.0,f +37825,,Kenya,1.0,t +10562,100%,Zimbabwe,3.0,f +724,100%,Zimbabwe,8.0,f +21673,,Cocos (Keeling) Islands,1.0,t +38387,100%,Sao Tome and Principe,1.0,t +49119,100%,Papua New Guinea,1.0,t +29672,,,1.0,t +9297,,Tanzania,1.0,t +1017,,Faroe Islands,1.0,t +6826,,Russian Federation,1.0,t +44351,80%,Monaco,1.0,t +32094,,Isle of Man,1.0,t +20752,100%,Reunion,1.0,t +33473,,,1.0,t +16343,100%,French Guiana,3.0,f +23643,100%,Sao Tome and Principe,1.0,t +31949,,,1.0,f +49878,100%,Maldives,2.0,t +23085,,Chad,1.0,t +35368,100%,Kiribati,1.0,f +31477,,Gibraltar,1.0,t +39532,100%,Turkmenistan,1.0,t +11255,93%,Suriname,41.0,f +5930,,Anguilla,1.0,f +20631,,French Guiana,1.0,t +34296,,Kenya,3.0,f +13997,100%,Turks and Caicos Islands,1.0,t +2340,,,1.0,f +2231,,Sao Tome and Principe,1.0,t +3417,,Fiji,32.0,t +8640,,Niue,1.0,t +3417,,Fiji,32.0,t +3417,,Fiji,32.0,t +37389,,,1.0,f +41674,90%,Indonesia,2.0,t +47105,100%,Vanuatu,2.0,t +48616,100%,El Salvador,2.0,t +5514,100%,Ecuador,3.0,f +48969,,Niue,1.0,t +26628,80%,Maldives,3.0,t +8652,100%,Malawi,2.0,f +48065,,Guinea,1.0,f +40119,,,1.0,f +34185,100%,Cape Verde,1.0,t +40244,80%,Malawi,1.0,t +31601,,,1.0,t +38472,,French Guiana,1.0,t +19177,100%,Russian Federation,1.0,t +10119,100%,,1.0,t +3461,,Gambia,1.0,t +28021,83%,Isle of Man,2.0,f +31984,100%,,1.0,t +40162,,Lebanon,1.0,f +11974,100%,Turkmenistan,4.0,t +28204,,,1.0,t +48076,,Kenya,2.0,t +26150,,,2.0,t +16778,,Jersey,1.0,f +14403,100%,Uzbekistan,1.0,f +31921,,Brazil,2.0,t +7278,100%,Kiribati,2.0,f +32737,100%,,1.0,t +14304,100%,Venezuela,1.0,t +14512,100%,Uzbekistan,1.0,t +38208,,,2.0,t +15873,100%,,1.0,t +23259,100%,Senegal,2.0,t +26628,80%,Maldives,3.0,t +27238,,Tonga,2.0,t +34368,,Croatia,1.0,t +2795,100%,Montserrat,2.0,t +38666,100%,,1.0,f +35785,100%,Uzbekistan,1.0,t +15190,,Guernsey,1.0,t +29395,,Sao Tome and Principe,1.0,t +21832,,,1.0,f +6911,,Mauritania,2.0,f +37322,,Lebanon,2.0,f +41019,100%,Brazil,1.0,t +2215,100%,,2.0,f +16096,100%,Lithuania,1.0,f +12985,86%,Chad,2.0,f +14055,80%,,1.0,t +4877,100%,Grenada,1.0,t +11819,,French Polynesia,1.0,f +22705,100%,Niue,2.0,f +35221,100%,Turks and Caicos Islands,30.0,t +48567,,Monaco,1.0,t +24222,100%,Chad,1.0,f +35713,,Jersey,1.0,f +33124,100%,Niue,1.0,t +43825,100%,Sao Tome and Principe,1.0,t +49567,100%,Saint Helena,4.0,t +6042,,Monaco,1.0,t +42085,,Denmark,1.0,f +18571,,,1.0,t +33660,,,1.0,f +8946,100%,Uzbekistan,1.0,t +29655,,,1.0,t +9662,0%,,1.0,t +40314,100%,Gambia,1.0,f +28173,,Uzbekistan,1.0,f +6979,,,1.0,f +12123,80%,Puerto Rico,8.0,t +12123,80%,Puerto Rico,8.0,t +13344,100%,Anguilla,2.0,f +567,80%,Russian Federation,1.0,t +26847,,Saint Helena,2.0,t +14164,,Ghana,1.0,t +37577,100%,Lebanon,3.0,t +28105,100%,Guinea,1.0,t +1827,100%,Uzbekistan,3.0,t +16791,,France,1.0,f +27584,100%,Chile,2.0,t +35459,100%,Cuba,2.0,t +30917,,Niue,1.0,f +43305,,Isle of Man,1.0,t +47071,40%,Sao Tome and Principe,3.0,t +47071,40%,Sao Tome and Principe,3.0,t +43979,100%,Isle of Man,3.0,t +20398,100%,,1.0,t +36131,100%,Bouvet Island (Bouvetoya),6.0,f +49676,100%,Guinea,3.0,f +38605,,Bouvet Island (Bouvetoya),2.0,f +8905,,Cocos (Keeling) Islands,2.0,t +13704,,,1.0,t +4105,100%,Malawi,3.0,f +12746,100%,Libyan Arab Jamahiriya,1.0,t +39141,,,1.0,f +49399,100%,Guinea,4.0,t +17270,100%,Niue,1.0,t +3011,,Guinea,2.0,f +36552,,Maldives,4.0,f +42039,71%,,1.0,t +10024,,Venezuela,3.0,t +11974,100%,Turkmenistan,4.0,t +15204,,,1.0,t +8878,,Nauru,2.0,f +18538,100%,,1.0,t +27876,,,1.0,f +19629,100%,Venezuela,2.0,f +16343,100%,French Guiana,3.0,f +8716,80%,Sao Tome and Principe,2.0,t +41473,,Niue,2.0,t +46297,100%,Sao Tome and Principe,12.0,t +32076,,,1.0,f +42154,100%,Isle of Man,2.0,t +27172,100%,,1.0,f +24026,98%,Cape Verde,69.0,t +32727,,,1.0,t +9162,,Isle of Man,2.0,t +49676,100%,Guinea,3.0,f +22784,100%,Rwanda,5.0,f +47769,,Christmas Island,1.0,f +32984,,,1.0,t +32356,,Chad,1.0,f +18073,20%,Niue,2.0,t +33197,,United Kingdom,1.0,f +13326,100%,Marshall Islands,2.0,t +49696,100%,Maldives,2.0,t +40446,100%,Tanzania,2.0,t +21737,88%,Sao Tome and Principe,2.0,f +8738,,,2.0,t +10664,100%,Marshall Islands,5.0,f +10664,100%,Marshall Islands,5.0,f +6457,100%,,1.0,t +20160,,Uganda,1.0,f +43950,0%,Guernsey,1.0,t +26918,100%,,1.0,f +4474,,Lithuania,1.0,t +37818,100%,Tonga,2.0,f +37190,,Jersey,1.0,t +18115,,Sao Tome and Principe,1.0,t +18395,0%,,1.0,t +49558,100%,Malta,5.0,t +45831,100%,Niue,4.0,f +48873,,United Kingdom,1.0,t +18412,83%,Marshall Islands,7.0,f +42598,100%,Brunei Darussalam,1.0,f +4520,,Niger,1.0,f +47074,100%,Moldova,2.0,f +27915,,,1.0,f +45312,,Estonia,1.0,t +34470,,Denmark,3.0,t +37339,,Marshall Islands,1.0,f +34907,,Nicaragua,1.0,t +11563,,Gambia,1.0,t +47461,,Bosnia and Herzegovina,1.0,t +13530,,Faroe Islands,1.0,t +10648,80%,Gibraltar,1.0,t +38732,,Chad,2.0,t +13681,,,1.0,f +3579,,,1.0,f +42518,100%,Anguilla,2.0,t +21536,50%,Gambia,1.0,f +16071,,Guinea,1.0,f +45138,79%,Barbados,14.0,f +43430,100%,Kenya,1.0,f +35277,100%,France,2.0,t +48319,100%,Bahrain,1.0,f +44857,100%,Zimbabwe,24.0,t +972,100%,El Salvador,1.0,t +32663,,,1.0,f +8484,100%,Monaco,17.0,t +1576,50%,,1.0,f +25268,,Guinea,1.0,t +21708,100%,Nauru,2.0,t +19260,,Zimbabwe,1.0,f +37757,100%,,2.0,t +42746,78%,Somalia,2.0,t +3934,100%,Rwanda,4.0,f +19666,,Finland,2.0,t +31307,,,2.0,t +32396,,,1.0,t +31403,,Latvia,2.0,t +29224,,,2.0,t +4184,56%,Gambia,1.0,f +32958,90%,,1.0,t +46648,100%,Faroe Islands,4.0,t +10354,100%,,1.0,f +36885,100%,,1.0,f +28568,100%,Faroe Islands,3.0,f +37187,,France,3.0,t +34728,,Russian Federation,1.0,t +35885,,Guinea,1.0,t +2478,,Mauritania,1.0,f +31562,,Lebanon,1.0,t +6205,100%,,1.0,t +44527,100%,Malta,2.0,f +7439,100%,,1.0,t +42727,78%,Lebanon,1.0,f +41739,,Russian Federation,1.0,t +635,100%,Guinea,2.0,f +16342,,Marshall Islands,6.0,t +16538,100%,Tanzania,1.0,t +41429,,Malta,2.0,t +21053,90%,Senegal,1.0,f +6813,,,1.0,t +48695,,,1.0,f +41079,100%,France,1.0,t +20003,,Brazil,2.0,f +18131,,Uganda,1.0,t +33799,,Zimbabwe,2.0,f +41534,,,1.0,f +40452,100%,,1.0,t +8420,100%,Reunion,1.0,f +48191,100%,Lebanon,2.0,t +11052,,French Guiana,1.0,t +7446,,Nauru,1.0,f +1469,,,1.0,f +16943,,French Guiana,2.0,t +12216,97%,Uzbekistan,4.0,f +22781,100%,Croatia,1.0,f +18387,,Tonga,1.0,f +40941,94%,Russian Federation,4.0,t +19843,100%,Turkmenistan,3.0,t +37107,90%,Marshall Islands,1.0,f +46405,100%,Vietnam,8.0,t +28381,0%,Mauritania,1.0,f +6016,,Rwanda,1.0,f +41189,100%,Mauritania,4.0,t +31137,,,1.0,t +7373,,Mauritania,9.0,t +3782,,Bosnia and Herzegovina,1.0,f +42229,100%,Fiji,25.0,f +42229,100%,Fiji,25.0,f +14925,100%,,1.0,t +22876,90%,Marshall Islands,2.0,t +37782,,Lithuania,1.0,f +1282,,Kiribati,1.0,t +14599,,Malta,2.0,f +14599,,Malta,2.0,f +19682,100%,Faroe Islands,15.0,t +40204,,,1.0,t +3290,,Solomon Islands,1.0,f +40678,100%,Ecuador,3.0,t +26614,,,2.0,t +5567,100%,Bosnia and Herzegovina,2.0,t +30304,100%,Somalia,2.0,t +43468,100%,Gambia,2.0,t +38659,,Niue,1.0,t +31534,100%,,1.0,f +18777,100%,Holy See (Vatican City State),3.0,t +28950,100%,Mexico,2.0,t +46767,100%,El Salvador,3.0,t +11581,100%,Kiribati,1.0,t +5663,,Russian Federation,8.0,t +6113,100%,Guinea,2.0,t +6113,100%,Guinea,2.0,t +7520,100%,Ukraine,15.0,t +49399,100%,Guinea,4.0,t +8791,70%,,4.0,f +5801,,Malawi,1.0,t +26358,70%,Monaco,3.0,t +37445,100%,Jersey,2.0,f +28126,100%,Turks and Caicos Islands,1.0,t +8991,100%,Marshall Islands,2.0,t +12975,,Lebanon,2.0,t +44911,100%,Micronesia,2.0,t +33552,90%,Slovakia (Slovak Republic),1.0,t +35804,100%,China,1.0,f +33910,100%,Rwanda,8.0,t +12023,,French Guiana,2.0,f +40333,100%,Lithuania,1.0,t +36691,,,3.0,f +27354,,Cocos (Keeling) Islands,1.0,t +34632,,Jersey,1.0,t +45031,,,1.0,t +36855,,Faroe Islands,1.0,f +9561,,Lebanon,1.0,t +13280,100%,Vanuatu,2.0,t +24340,,,1.0,t +41864,100%,,1.0,t +2512,,Cape Verde,6.0,t +43213,,Lebanon,1.0,f +9111,,Lebanon,2.0,f +34250,,Bosnia and Herzegovina,2.0,t +349,,Uzbekistan,1.0,t +43038,,Venezuela,1.0,t +31867,100%,Gibraltar,1.0,t +48348,100%,United Kingdom,1.0,t +47383,0%,Marshall Islands,1.0,f +1182,100%,Russian Federation,2.0,t +32757,,,1.0,f +48365,,Niue,2.0,t +5370,60%,Kenya,5.0,f +37260,100%,Kiribati,2.0,f +31801,50%,Tonga,2.0,f +37982,,Faroe Islands,2.0,f +16996,,,1.0,t +16131,100%,Marshall Islands,1.0,t +48496,100%,Brazil,1.0,t +36767,,,1.0,f +33219,100%,Uzbekistan,7.0,f +33859,,France,1.0,f +11021,,Slovakia (Slovak Republic),1.0,t +47229,,Jersey,1.0,t +35471,,Russian Federation,1.0,t +19808,89%,Denmark,2.0,f +33693,0%,France,1.0,t +39909,,Djibouti,1.0,t +30054,,Gibraltar,1.0,t +41907,,El Salvador,3.0,t +7582,100%,Lithuania,2.0,f +20536,100%,Marshall Islands,3.0,t +30761,,,2.0,t +42098,,Maldives,1.0,t +30647,,El Salvador,3.0,t +6067,100%,Nicaragua,1.0,t +2043,,Libyan Arab Jamahiriya,5.0,t +21644,100%,Australia,1.0,f +49729,100%,,1.0,f +4636,90%,Peru,1.0,t +6149,100%,Zimbabwe,1.0,t +45077,,Croatia,1.0,f +16653,,Peru,1.0,f +48511,90%,Christmas Island,1.0,t +1825,100%,,2.0,f +50093,,Isle of Man,1.0,t +24947,,Switzerland,1.0,f +28921,,Marshall Islands,1.0,f +18123,100%,Russian Federation,3.0,f +44598,100%,Gambia,1.0,t +15997,,Sao Tome and Principe,1.0,t +6444,,,1.0,t +31904,,Niue,3.0,t +8572,,United Kingdom,1.0,t +5604,,Zimbabwe,1.0,f +35833,83%,Estonia,9.0,t +1093,,Gambia,1.0,t +20876,,,1.0,t +23171,100%,Russian Federation,3.0,t +14140,100%,Uzbekistan,1.0,t +8926,100%,El Salvador,1.0,f +13286,100%,French Guiana,1.0,t +15911,,Monaco,1.0,t +18399,100%,Kiribati,8.0,t +43548,100%,Russian Federation,1.0,t +6094,,Estonia,1.0,f +4868,100%,Jersey,2.0,t +48504,,Netherlands,5.0,f +5776,100%,,1.0,f +30861,,,1.0,t +40753,100%,,2.0,t +11175,,Kenya,1.0,f +26749,100%,Isle of Man,1.0,f +34191,,Lithuania,1.0,t +36589,,Gambia,1.0,f +34258,,Vietnam,7.0,t +27762,,Lithuania,1.0,f +5732,,Ghana,2.0,t +46346,,Niue,1.0,t +38476,100%,,1.0,t +9569,100%,Pakistan,1.0,f +40351,88%,Chile,2.0,t +5744,90%,Costa Rica,2.0,t +27956,100%,Nicaragua,1.0,t +44857,100%,Zimbabwe,24.0,t +25500,,Lebanon,3.0,t +6258,,Sao Tome and Principe,1.0,f +18140,,Bosnia and Herzegovina,2.0,f +9613,94%,United Kingdom,2.0,t +33603,100%,Ecuador,1.0,t +2858,100%,Turkmenistan,1.0,t +24523,100%,Puerto Rico,2.0,t +19185,,Micronesia,1.0,f +6791,,Russian Federation,2.0,f +17053,90%,Niue,2.0,t +40154,,Andorra,1.0,t +19129,,Malta,5.0,t +7271,100%,Bouvet Island (Bouvetoya),2.0,t +10704,100%,Lebanon,1.0,t +42803,,,2.0,f +19151,,Tanzania,2.0,f +33099,,Micronesia,1.0,t +33988,,,3.0,f +31761,,Micronesia,1.0,t +7814,,Kenya,1.0,f +8645,,Niue,1.0,t +23174,100%,,1.0,t +37760,100%,Niue,1.0,t +38081,,,3.0,t +16025,,Switzerland,1.0,f +2592,,Niger,1.0,f +12781,100%,Ukraine,1.0,t +6301,,Malta,1.0,t +31796,,,1.0,t +31080,,Denmark,1.0,t +44802,67%,Bouvet Island (Bouvetoya),1.0,f +27127,100%,Marshall Islands,9.0,t +23889,,Gambia,1.0,t +6565,,Togo,1.0,f +14542,,Guinea,1.0,t +35221,100%,Turks and Caicos Islands,30.0,t +7254,88%,Tonga,1.0,t +2711,,Niue,1.0,t +9700,,Maldives,1.0,t +34350,100%,Russian Federation,1.0,t +18705,100%,Nicaragua,2.0,f +50024,,Micronesia,1.0,f +10502,93%,Indonesia,9.0,f +2512,,Cape Verde,6.0,t +26134,,Brazil,1.0,t +47767,100%,Rwanda,1.0,t +3374,,Lebanon,1.0,f +37507,,Lithuania,1.0,f +39168,83%,Tonga,6.0,f +37861,100%,Somalia,1.0,f +13972,100%,Cuba,2.0,f +36691,,,3.0,f +16964,100%,Cape Verde,3.0,t +16825,100%,Russian Federation,2.0,t +26392,,Malta,4.0,f +33039,100%,,1.0,f +7220,100%,France,1.0,t +24085,100%,Gibraltar,1.0,t +9061,100%,Rwanda,2.0,t +4294,100%,,1.0,t +22328,100%,Peru,1.0,t +40628,0%,Sao Tome and Principe,2.0,t +18705,100%,Nicaragua,2.0,f +27213,99%,Jersey,7.0,t +27213,99%,Jersey,7.0,t +27213,99%,Jersey,7.0,t +1201,,Gibraltar,1.0,t +30010,100%,Afghanistan,1.0,f +30037,,Papua New Guinea,1.0,f +27542,100%,Montserrat,1.0,f +25959,,,2.0,t +34266,,Micronesia,1.0,t +39632,100%,Zimbabwe,1.0,t +1893,,Cuba,2.0,f +20252,90%,,1.0,t +1893,,Cuba,2.0,f +49735,,,1.0,t +16244,,Korea,1.0,t +13650,0%,,1.0,f +40505,,Malta,1.0,t +408,100%,,1.0,f +19276,,,1.0,t +20941,,Guinea,1.0,f +15614,,Guinea,1.0,t +9343,100%,Afghanistan,10.0,t +30569,100%,United Kingdom,5.0,t +12073,100%,Philippines,1.0,f +6423,,Malta,2.0,t +311,,Isle of Man,1.0,f +46659,,Zimbabwe,1.0,f +41727,,Papua New Guinea,1.0,f +16191,100%,,1.0,t +46427,81%,Sao Tome and Principe,4.0,t +23171,100%,Russian Federation,3.0,t +23171,100%,Russian Federation,3.0,t +4924,100%,Jersey,1.0,t +38597,100%,,2.0,t +10645,100%,,2.0,t +21377,100%,French Guiana,4.0,t +16963,,Vanuatu,3.0,f +26372,,Monaco,1.0,f +43974,100%,Kenya,1.0,t +22558,,,1.0,f +31040,100%,El Salvador,2.0,t +34322,,,1.0,f +3812,,Lebanon,1.0,f +13944,,French Guiana,1.0,t +26197,,,1.0,t +41018,,Isle of Man,1.0,f +1847,,Svalbard & Jan Mayen Islands,1.0,t +29190,88%,Malawi,1.0,t +38202,100%,Sao Tome and Principe,1.0,t +36172,100%,Niue,2.0,t +37832,100%,Niue,1.0,f +12107,100%,Fiji,2.0,t +16636,100%,Bosnia and Herzegovina,1.0,t +9485,100%,,2.0,t +30647,,El Salvador,3.0,t +19682,100%,Faroe Islands,15.0,t +24067,,Mexico,3.0,t +40369,100%,,1.0,t +42229,100%,Fiji,25.0,f +4903,,Anguilla,1.0,t +41366,80%,Nicaragua,2.0,f +18123,100%,Russian Federation,3.0,f +7909,,Lebanon,1.0,f +12616,,Chad,1.0,t +2138,100%,Marshall Islands,1.0,t +17872,100%,Maldives,2.0,t +48822,100%,Brazil,2.0,t +40231,,,1.0,f +29900,33%,Monaco,1.0,f +47056,100%,Malta,1.0,t +25340,100%,Canada,2.0,t +19020,,Zimbabwe,1.0,f +29221,100%,Andorra,1.0,t +28624,,Isle of Man,1.0,f +27577,100%,United Kingdom,1.0,t +20332,,Russian Federation,1.0,t +28852,100%,Gambia,1.0,t +31452,100%,Micronesia,1.0,t +24547,60%,,1.0,t +7102,100%,Vanuatu,4.0,t +47337,,Papua New Guinea,1.0,t +16385,100%,,1.0,t +39234,,Venezuela,3.0,t +29341,100%,Zimbabwe,2.0,t +39761,100%,Ecuador,2.0,t +844,100%,Malta,1.0,f +37310,90%,Turks and Caicos Islands,3.0,t +22007,100%,,2.0,f +26016,100%,,1.0,t +18067,43%,Venezuela,1.0,f +13328,,Bosnia and Herzegovina,3.0,t +43431,,French Guiana,1.0,f +38614,100%,El Salvador,1.0,t +29294,,Tanzania,1.0,f +39796,,Cuba,1.0,t +23392,,,1.0,t +20906,100%,Kenya,1.0,f +7926,50%,Philippines,1.0,f +2512,,Cape Verde,6.0,t +44442,100%,Russian Federation,2.0,t +44442,100%,Russian Federation,2.0,t +38474,,,3.0,t +2329,100%,Barbados,1.0,t +47826,,Bosnia and Herzegovina,1.0,t +21419,,Jersey,2.0,f +42657,,,1.0,t +30498,,,3.0,f +13351,,,2.0,t +13351,,,2.0,t +895,100%,,1.0,t +17426,100%,Sao Tome and Principe,1.0,f +36347,,,2.0,t +28209,,Anguilla,1.0,f +22213,,Niue,1.0,f +15882,,Maldives,1.0,t +27568,100%,Pakistan,1.0,t +40630,,,1.0,t +48471,,,1.0,t +49613,100%,Zimbabwe,1.0,t +30498,,,3.0,f +19389,100%,El Salvador,1.0,t +31079,,Chile,1.0,t +42042,100%,Morocco,4.0,f +38113,100%,Marshall Islands,2.0,t +22833,100%,Micronesia,2.0,f +8186,,Switzerland,2.0,f +21811,,Uzbekistan,1.0,t +8186,,Switzerland,2.0,f +41301,100%,Costa Rica,9.0,t +4956,90%,Chile,1.0,f +37863,,Zimbabwe,4.0,t +25554,100%,Somalia,2.0,t +45621,100%,Cape Verde,4.0,t +40918,,,1.0,t +27962,,Nauru,2.0,t +36419,,Russian Federation,2.0,f +1883,90%,Reunion,2.0,t +5512,100%,Monaco,1.0,t +30397,33%,,1.0,t +43759,,,1.0,f +29826,,Monaco,1.0,t +12035,100%,Uzbekistan,1.0,t +8962,80%,Rwanda,1.0,f +2645,,Guinea,1.0,t +278,80%,,1.0,t +22071,,Papua New Guinea,4.0,t +22071,,Papua New Guinea,4.0,t +17195,,Niue,1.0,t +25399,,,1.0,t +2051,70%,Fiji,4.0,f +31631,,Tonga,1.0,t +2051,70%,Fiji,4.0,f +9665,100%,Netherlands,2.0,t +2051,70%,Fiji,4.0,f +46691,90%,Uzbekistan,38.0,f +8483,100%,Peru,2.0,f +16744,60%,Rwanda,5.0,f +989,100%,Tonga,2.0,t +30789,,,3.0,t +2132,60%,Jersey,2.0,f +36041,,,1.0,f +11751,100%,Niger,1.0,f +22784,100%,Rwanda,5.0,f +28107,,Uzbekistan,1.0,f +11160,100%,Gibraltar,1.0,f +21985,60%,,2.0,t +16897,,Mauritania,2.0,f +32044,70%,,3.0,f +41336,,Mauritania,1.0,t +36966,,,1.0,f +16569,25%,Uganda,1.0,t +6412,100%,Micronesia,1.0,t +38494,100%,Palestinian Territory,1.0,f +5116,100%,Mauritania,1.0,t +16621,0%,Malta,1.0,t +8193,50%,,1.0,f +42153,,El Salvador,1.0,t +42844,100%,,1.0,f +27835,100%,Isle of Man,2.0,f +46512,,Indonesia,4.0,t +46032,100%,,1.0,t +36321,90%,Tanzania,1.0,t +2094,,Sao Tome and Principe,1.0,t +46134,100%,,1.0,t +22851,,,1.0,f +32556,90%,Estonia,11.0,t +17737,,Niger,1.0,t +38949,100%,,2.0,t +22752,,Monaco,1.0,t +35053,,Russian Federation,1.0,t +37635,,,1.0,f +45860,100%,Niue,1.0,t +36554,,Guernsey,1.0,t +31351,91%,Barbados,1.0,t +23066,,Christmas Island,1.0,t +17741,,Turks and Caicos Islands,1.0,t +29366,100%,Tanzania,1.0,t +9900,,Croatia,1.0,f +22007,100%,,2.0,f +26530,67%,,1.0,t +29445,100%,Faroe Islands,4.0,t +40545,100%,Malawi,1.0,t +41380,100%,Turkmenistan,2.0,t +45255,100%,Lebanon,5.0,t +35610,62%,Fiji,8.0,f +21037,100%,Brazil,1.0,t +32556,90%,Estonia,11.0,t +33951,100%,Philippines,1.0,t +26392,,Malta,4.0,f +29185,,Guinea,2.0,t +43979,100%,Isle of Man,3.0,t +1944,100%,Vanuatu,1.0,f +18790,100%,Indonesia,4.0,f +41240,90%,Venezuela,1.0,t +44748,100%,Guernsey,1.0,t +44570,100%,,5.0,t +12533,,,1.0,f +31891,100%,,1.0,t +40173,100%,Faroe Islands,1.0,t +49073,,Zimbabwe,1.0,t +13972,100%,Cuba,2.0,f +32254,,Marshall Islands,1.0,f +47621,,Chad,1.0,t +20211,,Holy See (Vatican City State),1.0,t +33932,,Papua New Guinea,1.0,f +45146,,Mauritania,2.0,t +19984,100%,Ecuador,14.0,t +46237,100%,,2.0,t +19984,100%,Ecuador,14.0,t +23851,,Russian Federation,1.0,t +44848,,Niue,1.0,f +5785,100%,Isle of Man,2.0,t +12715,100%,Estonia,29.0,f +15563,,Chad,1.0,t +20325,100%,,1.0,f +29917,,,1.0,t +14013,100%,Indonesia,2.0,t +35644,,,1.0,t +45546,100%,Cape Verde,19.0,t +35518,,French Guiana,1.0,f +21363,100%,Guinea,2.0,t +9196,100%,Jersey,1.0,f +42154,100%,Isle of Man,2.0,t +46455,92%,Uzbekistan,4.0,t +47088,0%,Ecuador,1.0,t +44057,,Jersey,1.0,t +38765,,Micronesia,1.0,f +26581,100%,Estonia,2.0,t +26581,100%,Estonia,2.0,t +8233,100%,Netherlands Antilles,1.0,f +48812,86%,Russian Federation,1.0,t +21985,60%,,2.0,t +21099,100%,,1.0,t +34142,50%,Zimbabwe,1.0,f +37130,100%,Russian Federation,1.0,f +15431,,Chad,1.0,t +45638,,Lebanon,1.0,t +17147,,Saint Helena,1.0,t +23458,,,1.0,f +28345,,United Kingdom,1.0,t +40653,,Christmas Island,1.0,t +23275,,Micronesia,5.0,t +7399,,,1.0,t +8876,,,1.0,f +31708,75%,Russian Federation,1.0,t +25546,,,1.0,f +31902,98%,Kiribati,5.0,t +24712,100%,Malawi,1.0,t +26529,100%,Ghana,1.0,t +4414,100%,Cocos (Keeling) Islands,1.0,t +44493,100%,,1.0,f +31902,98%,Kiribati,5.0,t +27811,100%,Ukraine,4.0,t +2747,,Niue,1.0,t +21449,,Monaco,1.0,t +46691,90%,Uzbekistan,38.0,f +48013,100%,,1.0,t +33799,,Zimbabwe,2.0,f +11040,100%,Andorra,7.0,f +18779,100%,Mexico,4.0,t +33153,100%,Niue,1.0,t +7677,,Ecuador,3.0,t +24792,100%,Malta,2.0,f +24792,100%,Malta,2.0,f +34912,,Uzbekistan,2.0,t +20566,100%,Sao Tome and Principe,2.0,f +38162,100%,Niger,8.0,f +2537,,,1.0,f +21370,100%,Gambia,1.0,t +10498,,Kenya,1.0,f +21870,,Malawi,1.0,t +16640,100%,Gambia,1.0,t +19166,100%,Brazil,2.0,t +43429,,Turks and Caicos Islands,2.0,f +7340,,Malawi,1.0,t +24675,,Ecuador,1.0,t +30457,,,1.0,t +26318,,Congo,1.0,t +40295,,,1.0,t +25219,100%,American Samoa,5.0,t +6061,0%,Tonga,2.0,t +24650,75%,Tonga,3.0,t +18823,100%,French Guiana,1.0,f +19630,50%,Niue,2.0,t +11526,100%,Russian Federation,1.0,t +6629,,,2.0,t +39719,,Somalia,1.0,t +11826,100%,Cocos (Keeling) Islands,2.0,t +2000,100%,Monaco,1.0,t +3574,100%,Mexico,1.0,f +6583,,Pakistan,1.0,t +27732,100%,Puerto Rico,3.0,t +16834,,,1.0,f +4844,,Puerto Rico,1.0,f +7237,100%,Guinea,1.0,t +11332,100%,Croatia,2.0,t +10165,,,1.0,t +3659,,Cape Verde,1.0,t +12234,,Cocos (Keeling) Islands,1.0,f +1691,,Lebanon,2.0,t +14089,100%,Guinea,1.0,f +18906,,Malawi,1.0,f +40539,,Lebanon,1.0,t +26798,100%,Rwanda,1.0,t +13777,,Guinea,1.0,f +49014,100%,Tonga,1.0,t +44962,,United Kingdom,1.0,f +22615,,,1.0,t +10511,,,1.0,t +19812,100%,Uzbekistan,2.0,t +37863,,Zimbabwe,4.0,t +20899,75%,,1.0,t +13763,,Lebanon,1.0,t +33144,,Djibouti,3.0,t +11096,,Canada,1.0,t +48408,60%,Lebanon,1.0,f +39661,100%,United Kingdom,2.0,t +15290,,,1.0,t +2799,,Congo,2.0,t +31894,100%,Pakistan,1.0,f +31778,,,1.0,t +3954,,,1.0,t +39741,,,1.0,f +16024,,Uzbekistan,1.0,f +47446,,French Guiana,1.0,t +32256,100%,,1.0,t +39864,,Vanuatu,1.0,t +30856,,,1.0,t +310,96%,Cape Verde,3.0,t +7256,,Russian Federation,2.0,f +8483,100%,Peru,2.0,f +8484,100%,Monaco,17.0,t +36206,86%,Russian Federation,10.0,f +35576,0%,Uzbekistan,1.0,t +27600,100%,El Salvador,1.0,f +42379,100%,Cocos (Keeling) Islands,5.0,f +29487,89%,Montserrat,3.0,t +35778,,Monaco,1.0,f +37066,100%,Micronesia,1.0,t +9485,100%,,2.0,t +37441,100%,Vietnam,12.0,t +35833,83%,Estonia,9.0,t +48158,100%,Canada,1.0,t +37441,100%,Vietnam,12.0,t +42553,,French Guiana,1.0,t +40331,100%,Tonga,1.0,t +23165,,Guinea,1.0,f +46512,,Indonesia,4.0,t +8180,,Turkmenistan,1.0,f +22243,100%,Malta,2.0,f +42351,100%,Philippines,1.0,t +22016,100%,Zimbabwe,2.0,t +31988,75%,Brunei Darussalam,1.0,t +35115,,,1.0,f +27714,,,1.0,t +16711,,French Guiana,1.0,f +27831,100%,,6.0,t +19496,,China,1.0,t +48753,100%,Isle of Man,1.0,f +36558,100%,Uganda,1.0,t +14204,100%,Jersey,1.0,f +14670,100%,Rwanda,1.0,t +96,100%,Mexico,2.0,t +14975,100%,Anguilla,1.0,f +7028,100%,Fiji,4.0,t +27607,,Ecuador,1.0,t +3077,100%,Chile,3.0,t +5774,,Russian Federation,1.0,t +3115,83%,Slovakia (Slovak Republic),17.0,t +310,96%,Cape Verde,3.0,t +3910,100%,Niue,1.0,t +37717,,Russian Federation,1.0,t +18737,,,1.0,f +42057,,Rwanda,1.0,f +40404,,Marshall Islands,1.0,t +45569,,,1.0,t +1858,81%,Niue,3.0,t +28128,67%,Guinea,1.0,f +24432,100%,Andorra,2.0,t +15975,,Tonga,1.0,t +24432,100%,Andorra,2.0,t +23887,,,1.0,t +48798,,Chile,1.0,t +21652,67%,,1.0,t +40442,,Monaco,1.0,f +37437,,Lebanon,1.0,t +7457,100%,,3.0,t +24,,French Guiana,1.0,t +46233,,Bosnia and Herzegovina,2.0,f +46233,,Bosnia and Herzegovina,2.0,f +16050,,Nicaragua,1.0,t +39725,,Nauru,2.0,f +2799,,Congo,2.0,t +40124,,United Kingdom,1.0,f +49195,,Guinea,1.0,f +34621,,Svalbard & Jan Mayen Islands,1.0,t +3972,100%,Peru,1.0,t +35708,0%,,1.0,t +28879,,Reunion,1.0,t +28604,100%,French Polynesia,1.0,t +42041,100%,,1.0,t +28525,,Afghanistan,1.0,t +29633,90%,,1.0,f +30068,100%,Guinea,1.0,f +43500,,,1.0,t +11536,100%,Somalia,1.0,t +18500,100%,Lithuania,1.0,f +29576,100%,,5.0,t +25139,,Monaco,2.0,t +160,90%,Andorra,2.0,t +44857,100%,Zimbabwe,24.0,t +37589,,,1.0,t +18215,,Anguilla,1.0,f +27008,100%,Gambia,2.0,t +9406,0%,Rwanda,1.0,f +44177,,Somalia,1.0,f +217,88%,,3.0,t +28485,,Turks and Caicos Islands,1.0,f +34622,,,1.0,t +33558,100%,Sao Tome and Principe,1.0,t +9582,,Russian Federation,1.0,t +8965,,Canada,1.0,f +21227,100%,Uzbekistan,2.0,f +46967,100%,Philippines,1.0,t +42390,100%,Wallis and Futuna,96.0,t +22279,90%,Finland,3.0,t +33826,,Afghanistan,1.0,t +17231,0%,Mauritania,1.0,t +713,,Lebanon,2.0,f +24934,100%,,1.0,f +25198,,Christmas Island,4.0,t +27961,100%,Switzerland,2.0,f +25198,,Christmas Island,4.0,t +13475,100%,Ecuador,1.0,t +38294,,Lebanon,1.0,f +13319,,Tunisia,2.0,t +9115,0%,Bouvet Island (Bouvetoya),2.0,f +3458,,,1.0,t +20470,100%,,2.0,t +11571,,Guinea,1.0,t +30329,,Russian Federation,1.0,f +38469,100%,Cocos (Keeling) Islands,3.0,t +40385,100%,Turks and Caicos Islands,1.0,t +25875,,,1.0,t +110,100%,Niue,1.0,t +45901,100%,Nicaragua,2.0,t +4868,100%,Jersey,2.0,t +17292,,Niue,1.0,t +3464,,Russian Federation,1.0,f +34760,100%,Andorra,1.0,f +9199,,Jersey,1.0,t +3063,100%,Lebanon,1.0,t +12164,100%,Nicaragua,8.0,f +11255,93%,Suriname,41.0,f +17853,100%,Kenya,1.0,t +230,,Isle of Man,1.0,t +30593,,,1.0,t +7981,100%,Sao Tome and Principe,4.0,t +16269,90%,Nicaragua,1.0,t +9334,,Bouvet Island (Bouvetoya),2.0,t +3693,,Vanuatu,1.0,f +48504,,Netherlands,5.0,f +5285,,Uganda,1.0,f +49609,100%,Niue,3.0,t +26007,100%,Malawi,3.0,t +41800,80%,Monaco,1.0,t +45903,100%,Malta,2.0,t +3755,100%,Niue,1.0,f +9418,,Chad,2.0,t +29145,83%,Gambia,1.0,t +30731,100%,,5.0,t +44819,100%,Niue,1.0,t +676,100%,Malta,1.0,t +351,,,1.0,f +47370,,Marshall Islands,3.0,t +45338,,Monaco,1.0,t +20066,100%,Guinea,1.0,t +15185,100%,Uzbekistan,1.0,f +20155,100%,,2.0,t +34945,100%,,1.0,f +1325,50%,Guernsey,2.0,t +18797,,Kiribati,1.0,t +48620,,Russian Federation,1.0,t +41197,,Sao Tome and Principe,1.0,f +12800,100%,Malawi,2.0,f +25219,100%,American Samoa,5.0,t +12146,,Bosnia and Herzegovina,1.0,t +45616,90%,Niue,1.0,t +6289,100%,Russian Federation,4.0,t +24687,,Brazil,1.0,f +22102,,,1.0,t +23613,,Lebanon,2.0,t +48744,,,1.0,f +1128,,,1.0,f +33245,100%,Somalia,1.0,t +6597,100%,,1.0,f +4029,,,1.0,t +41931,75%,,1.0,t +8434,100%,Cuba,7.0,f +1664,100%,,1.0,f +4891,,Anguilla,1.0,f +14818,,Uzbekistan,1.0,t +10432,,Cocos (Keeling) Islands,1.0,f +30622,,Turkmenistan,1.0,t +5823,100%,Tanzania,1.0,t +16512,100%,,2.0,t +21667,100%,Guinea,1.0,f +1858,81%,Niue,3.0,t +49934,100%,Liberia,9.0,t +36687,100%,Cape Verde,1.0,t +38435,,United Kingdom,1.0,t +19588,,Isle of Man,1.0,t +4104,,Ecuador,1.0,t +1499,100%,Tonga,2.0,t +26588,100%,Maldives,1.0,f +42229,100%,Fiji,25.0,f +10964,100%,Tonga,5.0,t +28633,60%,Russian Federation,1.0,t +13784,100%,Lebanon,1.0,f +1467,100%,Micronesia,3.0,t +24630,,Mauritania,1.0,t +44857,100%,Zimbabwe,24.0,t +27870,,China,1.0,t +34026,50%,Tonga,1.0,f +10712,,,1.0,f +24857,100%,Somalia,2.0,t +22984,,,1.0,f +34478,,Congo,1.0,f +10435,,,1.0,f +14151,,Croatia,1.0,f +45355,,,2.0,t +49609,100%,Niue,3.0,t +32044,70%,,3.0,f +31569,,Guinea,2.0,t +49547,100%,Uzbekistan,1.0,f +34691,,Reunion,1.0,t +44142,100%,United Kingdom,1.0,t +3283,,,1.0,t +33219,100%,Uzbekistan,7.0,f +10547,,Micronesia,1.0,t +22321,100%,United Kingdom,16.0,f +47771,100%,,1.0,f +42584,100%,Maldives,2.0,t +23491,90%,Niue,3.0,f +13239,,Uganda,1.0,t +14654,100%,Lebanon,1.0,t +45255,100%,Lebanon,5.0,t +35306,,Chad,1.0,t +41821,,Estonia,1.0,f +32220,100%,Holy See (Vatican City State),2.0,f +8226,80%,Puerto Rico,5.0,f +15195,100%,Svalbard & Jan Mayen Islands,3.0,t +41890,100%,Canada,1.0,f +46595,,Maldives,1.0,f +12310,,,1.0,f +22110,100%,,1.0,t +10995,,Kiribati,2.0,f +1909,100%,Marshall Islands,1.0,t +30166,,Mauritania,1.0,t +165,,,1.0,f +12968,,Lithuania,1.0,f +35129,100%,Brazil,1.0,t +27563,90%,,1.0,t +35855,,Sao Tome and Principe,3.0,f +32146,,Kenya,1.0,f +41406,,Denmark,1.0,t +16005,100%,,1.0,f +36254,,Uzbekistan,1.0,t +18682,100%,,1.0,t +11031,,Isle of Man,1.0,t +29076,,Russian Federation,1.0,f +46718,100%,,1.0,t +2461,,,1.0,t +29335,,Monaco,1.0,t +9240,,Russian Federation,1.0,f +46544,,Uzbekistan,1.0,t +3115,83%,Slovakia (Slovak Republic),17.0,t +49348,60%,French Guiana,2.0,f +12439,,Monaco,1.0,t +3115,83%,Slovakia (Slovak Republic),17.0,t +11489,100%,China,1.0,f +7981,100%,Sao Tome and Principe,4.0,t +44857,100%,Zimbabwe,24.0,t +43928,,,1.0,f +11299,,French Guiana,1.0,t +41331,,Marshall Islands,1.0,t +11558,,France,2.0,t +7981,100%,Sao Tome and Principe,4.0,t +16735,,Wallis and Futuna,1.0,f +44728,,,3.0,f +19091,95%,Cook Islands,18.0,t +40399,100%,,3.0,t +41156,,,1.0,t +22614,63%,Zimbabwe,1.0,t +23934,,Jersey,1.0,t +34339,,Maldives,1.0,f +44951,,Micronesia,2.0,t +12347,,Bouvet Island (Bouvetoya),1.0,f +11894,,Reunion,1.0,t +2933,,Kenya,2.0,f +9090,,,1.0,f +28074,70%,,3.0,t +35402,100%,Croatia,2.0,t +305,,Rwanda,2.0,t +30894,,,1.0,f +26439,,Jersey,1.0,t +7255,100%,Bouvet Island (Bouvetoya),8.0,t +7840,100%,Kenya,1.0,t +25329,,Kiribati,2.0,t +28428,100%,Kiribati,1.0,f +37441,100%,Vietnam,12.0,t +37441,100%,Vietnam,12.0,t +8227,,Marshall Islands,2.0,t +46040,,Kenya,1.0,f +22368,100%,Montserrat,1.0,f +982,99%,Marshall Islands,32.0,f +9477,,Monaco,1.0,t +25151,100%,Marshall Islands,1.0,t +43979,100%,Isle of Man,3.0,t +36657,100%,Chad,1.0,t +8527,100%,Ghana,1.0,f +16939,,Senegal,11.0,t +23144,,Zimbabwe,1.0,f +22040,,,1.0,f +16077,90%,Gibraltar,2.0,t +22287,100%,,1.0,t +37392,100%,Micronesia,7.0,t +42045,10%,Niue,4.0,f +9430,,Sao Tome and Principe,1.0,t +22726,100%,,1.0,t +6479,100%,Niue,1.0,t +6554,,Jersey,1.0,t +40857,,,1.0,f +24027,,Monaco,1.0,f +19635,,El Salvador,3.0,t +3115,83%,Slovakia (Slovak Republic),17.0,t +9429,100%,,4.0,f +36003,100%,,1.0,f +4645,,Finland,1.0,f +10244,100%,Philippines,10.0,f +34841,100%,Zimbabwe,22.0,t +8653,,Tonga,1.0,t +49606,,,1.0,f +36057,,Tanzania,1.0,t +11732,,Tanzania,1.0,t +47055,100%,Togo,3.0,t +43383,100%,Cape Verde,3.0,t +30168,,Gambia,2.0,f +15424,,Svalbard & Jan Mayen Islands,1.0,t +46487,90%,Sao Tome and Principe,1.0,t +8491,100%,Sao Tome and Principe,1.0,t +34342,100%,Puerto Rico,1.0,t +20944,100%,United Kingdom,3.0,f +3077,100%,Chile,3.0,t +2310,,Croatia,1.0,t +9945,100%,Maldives,2.0,t +39437,100%,Sao Tome and Principe,2.0,t +18954,,Nicaragua,2.0,f +18954,,Nicaragua,2.0,f +37506,,Uzbekistan,1.0,f +690,100%,Kiribati,2.0,f +47250,,,1.0,t +33738,,Congo,5.0,t +25380,100%,Russian Federation,2.0,f +27278,,Brazil,2.0,t +10633,67%,Maldives,1.0,t +40394,100%,Senegal,1.0,t +3179,100%,Ukraine,1.0,t +37441,100%,Vietnam,12.0,t +27747,,Malta,1.0,f +26099,99%,Reunion,15.0,f +48959,,Niger,1.0,f +35816,,Zimbabwe,1.0,f +370,,,1.0,t +27855,100%,Russian Federation,2.0,t +21130,,Guinea,2.0,t +12529,90%,Niue,1.0,t +25277,,Niger,2.0,t +39521,,,1.0,t +44134,,Uzbekistan,1.0,t +31552,86%,,1.0,t +7325,,French Guiana,1.0,t +23682,57%,Uganda,4.0,f +26932,100%,Zimbabwe,1.0,t +30309,60%,Cape Verde,2.0,t +33797,100%,Gambia,3.0,t +2109,,Russian Federation,1.0,t +25095,100%,Senegal,4.0,f +4307,,Tonga,1.0,t +3061,,Libyan Arab Jamahiriya,2.0,t +37938,100%,Uzbekistan,1.0,t +22017,50%,Barbados,2.0,f +43543,100%,Malta,1.0,t +18111,100%,,1.0,f +45763,50%,Kenya,1.0,t +11012,100%,Puerto Rico,3.0,f +7501,,,1.0,t +18211,100%,,2.0,t +11200,,Niger,1.0,f +45589,,Guernsey,1.0,t +875,100%,Senegal,1.0,t +22936,,Sao Tome and Principe,1.0,t +42900,100%,,2.0,t +35609,,Bosnia and Herzegovina,1.0,f +21381,,Papua New Guinea,1.0,t +15086,75%,Kenya,2.0,f +35499,94%,Andorra,4.0,f +19351,100%,Guinea,2.0,f +30340,,Nicaragua,1.0,f +18994,,Isle of Man,1.0,f +30436,,,1.0,t +8909,100%,Tunisia,1.0,t +35207,,Anguilla,1.0,t +3115,83%,Slovakia (Slovak Republic),17.0,t +3062,100%,,1.0,f +36760,,Isle of Man,1.0,t +3115,83%,Slovakia (Slovak Republic),17.0,t +14683,100%,Antarctica (the territory South of 60 deg S),4.0,t +43255,100%,,1.0,f +37968,,Croatia,1.0,t +5650,83%,Malawi,2.0,t +45524,,,1.0,f +45981,92%,Maldives,11.0,t +28437,,Micronesia,1.0,t +18672,,Isle of Man,1.0,f +28039,,,1.0,t +17932,100%,Costa Rica,8.0,t +15815,,Lebanon,1.0,f +3115,83%,Slovakia (Slovak Republic),17.0,t +2217,,,9.0,f +3115,83%,Slovakia (Slovak Republic),17.0,t +1390,100%,Puerto Rico,1.0,f +31099,100%,Uzbekistan,1.0,t +15999,,Kenya,2.0,f +13269,100%,Anguilla,3.0,f +12023,,French Guiana,2.0,f +27745,100%,Lithuania,1.0,t +6962,,Isle of Man,1.0,f +10589,100%,Turkmenistan,1.0,t +36644,100%,Ecuador,4.0,t +17323,100%,Russian Federation,2.0,t +22430,100%,Mauritania,2.0,t +28074,70%,,3.0,t +4181,,Uzbekistan,1.0,f +33723,,Isle of Man,1.0,f +43779,,Tonga,1.0,f +3762,,Micronesia,1.0,t +14063,100%,Denmark,10.0,t +34674,100%,Guinea,1.0,f +30903,,Uzbekistan,1.0,t +23230,80%,United Kingdom,1.0,t +6511,,Uzbekistan,1.0,f +23553,,Uzbekistan,1.0,f +22626,,,1.0,f +31953,,Russian Federation,1.0,t +13657,100%,,2.0,t +25277,,Niger,2.0,t +24078,,Russian Federation,1.0,t +24016,100%,Bosnia and Herzegovina,29.0,f +45963,,Mauritania,3.0,t +16284,,Lebanon,1.0,t +13418,,Zimbabwe,1.0,f +2144,,,1.0,f +33522,,Tanzania,1.0,t +33234,,,2.0,t +23702,,Chad,1.0,t +9216,100%,Uzbekistan,1.0,t +18271,,Ghana,1.0,f +12684,,,1.0,f +2480,100%,,1.0,f +33627,89%,Gambia,3.0,t +4366,100%,Vanuatu,1.0,f +29082,100%,Ecuador,2.0,t +3200,75%,Turkmenistan,2.0,t +19055,,,1.0,t +5316,,Lebanon,1.0,f +8434,100%,Cuba,7.0,f +45336,100%,Russian Federation,1.0,f +6751,,Nicaragua,1.0,t +28913,,Jersey,1.0,t +43917,,,1.0,t +10823,,Isle of Man,2.0,t +36077,67%,,1.0,t +4639,100%,Monaco,3.0,t +35291,100%,Palestinian Territory,1.0,t +16547,,,1.0,f +5048,100%,Niue,2.0,t +3247,100%,Jersey,1.0,f +33359,,Fiji,1.0,t +1428,,Uzbekistan,1.0,t +33757,,,1.0,f +12652,,Marshall Islands,2.0,f +15895,100%,French Guiana,1.0,t +30350,100%,Tonga,1.0,t +22681,,,1.0,t +21851,100%,Russian Federation,2.0,t +7331,99%,Indonesia,8.0,t +16941,100%,Russian Federation,3.0,f +20414,100%,Togo,1.0,t +31844,100%,Niue,2.0,t +35496,100%,Christmas Island,1.0,t +34141,86%,Ecuador,1.0,t +27356,,,1.0,f +24147,100%,Kenya,2.0,f +15241,,Brazil,3.0,f +29610,,Estonia,1.0,f +18054,100%,,1.0,t +46205,100%,,1.0,t +42123,,Mexico,1.0,t +12251,,Tanzania,1.0,f +20570,,,1.0,f +5369,100%,,1.0,f +18779,100%,Mexico,4.0,t +41080,89%,Tonga,10.0,t +2749,100%,Guinea,1.0,t +38764,,Turks and Caicos Islands,1.0,t +11385,,Kiribati,1.0,t +41368,,Micronesia,1.0,t +25741,,Chad,1.0,t +3202,90%,Moldova,2.0,t +38810,100%,Micronesia,3.0,f +8417,,,1.0,t +25015,,Uzbekistan,1.0,t +18008,,,1.0,t +16124,,Tonga,1.0,t +12137,99%,Sao Tome and Principe,33.0,t +10823,,Isle of Man,2.0,t +28636,80%,United Kingdom,2.0,t +1580,,Uganda,1.0,t +48704,,Malta,1.0,f +27206,,Isle of Man,1.0,t +10838,78%,Ecuador,2.0,t +4067,,Chile,1.0,t +34418,100%,,2.0,t +30731,100%,,5.0,t +47211,,Marshall Islands,1.0,f +48455,89%,Uzbekistan,20.0,t +26714,50%,,1.0,t +38102,,Zimbabwe,1.0,t +3604,63%,Tunisia,1.0,f +29929,75%,Montserrat,3.0,t +23113,,Brazil,1.0,t +35545,100%,Isle of Man,2.0,f +22293,90%,Mauritania,2.0,t +39725,,Nauru,2.0,f +34633,,Micronesia,1.0,f +11467,,Lebanon,1.0,f +40374,100%,Ecuador,1.0,t +9652,,Nauru,1.0,f +33083,,,1.0,t +22991,100%,Korea,4.0,t +33234,,,2.0,t +22522,100%,France,3.0,t +45578,100%,Niue,1.0,t +25317,100%,,3.0,t +6456,,Russian Federation,1.0,t +10273,,Tonga,1.0,f +15144,,Croatia,2.0,t +12600,,Mauritania,1.0,f +31261,,Russian Federation,1.0,t +19571,,,1.0,f +46508,,,1.0,f +22644,,Mexico,1.0,f +49889,,Marshall Islands,1.0,t +11735,,,1.0,t +41763,,United Kingdom,2.0,t +7322,,Lebanon,1.0,f +25869,,Gambia,1.0,f +6062,100%,Tonga,2.0,t +38756,50%,Sao Tome and Principe,1.0,t +25095,100%,Senegal,4.0,f +31318,,Tonga,1.0,t +22839,,Nauru,1.0,f +26403,,Mauritania,1.0,f +14171,100%,Russian Federation,3.0,f +29606,,,1.0,t +16339,,Rwanda,1.0,t +27403,,,1.0,t +15791,100%,,1.0,f +15137,100%,Marshall Islands,10.0,t +9082,,Guinea,1.0,t +4938,100%,,1.0,t +40043,,,1.0,t +25226,100%,,1.0,t +41040,,,1.0,f +16495,100%,,2.0,t +46995,100%,Turks and Caicos Islands,1.0,f +34079,,Chile,1.0,t +982,99%,Marshall Islands,32.0,f +432,100%,Lithuania,2.0,t +6620,50%,Niue,3.0,t +43279,100%,,1.0,f +12788,100%,Indonesia,1.0,t +47536,,,1.0,f +32716,,Micronesia,1.0,t +6158,,France,3.0,t +30907,,Zimbabwe,2.0,f +45901,100%,Nicaragua,2.0,t +44857,100%,Zimbabwe,24.0,t +22491,,Croatia,1.0,t +46356,,Lebanon,1.0,t +29600,100%,Guinea,2.0,t +15871,100%,,1.0,t +22960,67%,Jordan,1.0,t +37147,100%,Somalia,1.0,f +43121,,,1.0,t +4267,100%,Senegal,22.0,t +12041,100%,,1.0,t +6927,,,1.0,t +46352,,,1.0,t +15224,100%,Guinea,2.0,t +39098,,Monaco,1.0,t +4093,100%,,1.0,t +23010,,Gibraltar,1.0,f +37984,,Uzbekistan,2.0,f +8163,,Kenya,3.0,f +8163,,Kenya,3.0,f +258,100%,Zimbabwe,1.0,t +30170,,Chile,1.0,t +26316,100%,Denmark,1.0,t +9955,100%,Isle of Man,2.0,t +34388,,French Guiana,1.0,f +14857,,Jersey,1.0,f +3189,100%,Marshall Islands,2.0,t +27787,,,1.0,t +25578,,Isle of Man,1.0,t +45255,100%,Lebanon,5.0,t +36878,,,1.0,f +31902,98%,Kiribati,5.0,t +32200,,Svalbard & Jan Mayen Islands,1.0,f +13230,100%,Burkina Faso,2.0,f +15256,,Chad,2.0,t +49403,100%,,1.0,f +24134,,French Guiana,1.0,t +22071,,Papua New Guinea,4.0,t +22071,,Papua New Guinea,4.0,t +31374,100%,,1.0,f +3652,100%,Guinea,2.0,t +24703,,Tanzania,1.0,t +22143,100%,Venezuela,3.0,t +2561,,Russian Federation,1.0,f +43464,100%,United Kingdom,2.0,f +30872,,Indonesia,1.0,t +24439,,Guinea,1.0,f +9858,,,1.0,f +19465,100%,Chad,2.0,t +14768,100%,Chad,2.0,f +34420,,Nauru,1.0,t +11243,,,1.0,f +9532,,Micronesia,1.0,t +12652,,Marshall Islands,2.0,f +22279,90%,Finland,3.0,t +44760,,,1.0,f +31354,100%,Niger,8.0,t +33801,,,1.0,f +7349,70%,Djibouti,4.0,f +7349,70%,Djibouti,4.0,f +20838,100%,Venezuela,2.0,t +37626,,Micronesia,3.0,f +37626,,Micronesia,3.0,f +40093,,Zimbabwe,2.0,t +39992,,Nicaragua,1.0,t +218,,,1.0,f +34231,100%,Fiji,2.0,f +44884,,Russian Federation,3.0,t +24309,,Niue,1.0,t +768,,Bahrain,1.0,t +8526,,Chad,1.0,t +38156,,Tanzania,1.0,f +38325,,,1.0,t +49786,,Tonga,1.0,f +34370,,Kenya,1.0,f +18036,100%,Marshall Islands,2.0,f +6376,,,1.0,f +13805,,Ecuador,2.0,t +24356,,Monaco,2.0,f +18991,,,1.0,t +7963,,Lebanon,1.0,t +27470,,Niue,1.0,t +17491,,,1.0,f +14001,,,1.0,t +36342,80%,Suriname,1.0,f +39544,,Russian Federation,1.0,t +34861,,Niue,1.0,t +15842,,Isle of Man,1.0,f +4640,,,1.0,t +12047,,Uzbekistan,1.0,t +11255,93%,Suriname,41.0,f +30773,,Bahrain,1.0,t +28878,,Russian Federation,1.0,f +29180,,,1.0,t +49692,,,1.0,t +46499,,Philippines,2.0,f +15988,,Lebanon,1.0,t +19888,,,1.0,f +31090,75%,,1.0,t +26578,45%,Ecuador,10.0,f +18711,,Tonga,1.0,f +4016,100%,Venezuela,2.0,f +21093,90%,Papua New Guinea,1.0,t +20009,,Malawi,1.0,t +31870,100%,,1.0,t +36673,100%,Fiji,1.0,t +7694,,,1.0,t +19155,93%,,2.0,t +29978,89%,Uzbekistan,26.0,f +3489,0%,,1.0,f +42468,,,1.0,f +8534,,Russian Federation,1.0,f +37821,,United Kingdom,1.0,t +29569,,Gambia,2.0,f +31660,,Uzbekistan,1.0,f +28118,75%,United Kingdom,4.0,t +28118,75%,United Kingdom,4.0,t +28118,75%,United Kingdom,4.0,t +28118,75%,United Kingdom,4.0,t +47512,,,2.0,f +37951,100%,,1.0,t +28161,100%,,3.0,f +43447,,Ghana,5.0,t +24356,,Monaco,2.0,f +33225,,Brazil,1.0,t +22335,100%,Russian Federation,3.0,t +2501,80%,,2.0,f +23971,100%,Croatia,1.0,t +22613,91%,Cape Verde,4.0,f +22613,91%,Cape Verde,4.0,f +22613,91%,Cape Verde,4.0,f +22613,91%,Cape Verde,4.0,f +6937,,,1.0,f +5447,,Sao Tome and Principe,1.0,f +6142,100%,,1.0,t +20222,100%,Micronesia,1.0,t +40214,,Fiji,1.0,t +47512,,,2.0,f +23659,,French Polynesia,2.0,t +19813,,Jersey,1.0,f +9868,100%,,1.0,f +10088,,Malta,1.0,t +6,,,5.0,t +13759,,Malawi,1.0,f +26418,50%,Niue,1.0,t +26168,,,1.0,f +30569,100%,United Kingdom,5.0,t +12975,,Lebanon,2.0,t +43334,,Lebanon,1.0,t +26666,100%,Gambia,3.0,t +45857,,Ecuador,1.0,t +41628,100%,United Kingdom,1.0,t +5576,,Turkmenistan,1.0,t +20068,80%,Uzbekistan,5.0,t +37638,100%,Saint Helena,2.0,t +11373,,Ghana,1.0,f +21530,,Anguilla,1.0,f +46471,,,1.0,t +32889,,Rwanda,1.0,f +37438,100%,Andorra,4.0,t +39042,100%,Mexico,2.0,t +34841,100%,Zimbabwe,22.0,t +19450,,Niue,1.0,t +36708,,Estonia,1.0,f +41346,97%,Estonia,7.0,t +41346,97%,Estonia,7.0,t +10187,,,1.0,t +44667,,,1.0,t +29926,67%,Zimbabwe,7.0,t +3010,,Lithuania,1.0,f +46440,,Russian Federation,1.0,t +31301,,China,1.0,f +40400,80%,Guinea,2.0,t +37071,,,1.0,f +16509,,Gambia,1.0,t +19835,,Lebanon,1.0,f +18731,,Lithuania,2.0,f +7379,,French Guiana,2.0,t +24825,,,1.0,t +47401,,Kenya,1.0,f +12297,67%,Turkmenistan,1.0,t +12432,,,2.0,f +20167,,Niue,1.0,t +14469,,Chile,1.0,t +29445,100%,Faroe Islands,4.0,t +17345,,Maldives,1.0,t +26491,,Niue,1.0,f +43399,,Lebanon,1.0,f +3246,,Chad,1.0,t +3628,100%,Tonga,2.0,f +15562,,Niue,1.0,f +38000,100%,Marshall Islands,1.0,f +42403,100%,Malawi,1.0,t +34469,100%,Micronesia,1.0,t +39093,,Congo,1.0,f +43647,,,1.0,t +46444,,China,1.0,f +33393,100%,Guernsey,3.0,f +28513,,Uzbekistan,1.0,f +24762,100%,,2.0,t +18934,,Venezuela,1.0,t +9726,80%,Russian Federation,1.0,f +49393,,Saint Helena,1.0,t +23235,,Nauru,1.0,t +17765,,,1.0,t +23590,,Venezuela,2.0,f +9998,,,1.0,t +19219,,Tonga,1.0,t +29192,100%,Micronesia,1.0,t +19812,100%,Uzbekistan,2.0,t +30775,,,1.0,t +37539,65%,Chad,1.0,f +20927,,Isle of Man,1.0,f +7120,,Bosnia and Herzegovina,1.0,f +33395,,,1.0,t +34968,,,1.0,f +33762,,Rwanda,1.0,f +10039,100%,Vanuatu,6.0,t +8813,100%,Malta,1.0,f +13921,,,1.0,f +30017,,Chad,1.0,f +46236,,Maldives,1.0,t +43488,100%,,1.0,t +36249,,China,1.0,t +24985,90%,,7.0,t +46064,,Guinea,1.0,t +29515,,,1.0,t +23181,,,2.0,t +5234,,Tonga,1.0,f +32480,,Croatia,2.0,t +23657,,Venezuela,1.0,f +15653,80%,Svalbard & Jan Mayen Islands,2.0,t +32861,,Micronesia,1.0,f +40606,88%,Slovakia (Slovak Republic),2.0,f +15850,,French Guiana,1.0,f +46429,100%,,2.0,f +46976,100%,Croatia,1.0,f +6984,100%,Suriname,9.0,f +35067,,Venezuela,1.0,t +9244,100%,Tonga,1.0,f +46227,,,1.0,f +30474,,Bouvet Island (Bouvetoya),1.0,f +17323,100%,Russian Federation,2.0,t +42189,,,1.0,f +6124,,Brazil,1.0,f +12543,,Uzbekistan,3.0,t +36378,,,1.0,f +26111,,,1.0,f +20327,100%,Chad,1.0,t +39524,100%,Isle of Man,1.0,t +30138,,Zimbabwe,1.0,t +45438,,,1.0,f +37638,100%,Saint Helena,2.0,t +36793,,Isle of Man,1.0,f +3115,83%,Slovakia (Slovak Republic),17.0,t +9682,100%,Micronesia,1.0,f +20982,100%,,1.0,f +33493,,,1.0,t +26808,100%,Rwanda,9.0,t +41419,100%,Niue,2.0,f +49892,,Tonga,1.0,t +48141,100%,,1.0,f +11319,100%,,1.0,f +27483,,Djibouti,1.0,t +48234,100%,Papua New Guinea,1.0,f +14606,,Niue,1.0,t +46338,0%,France,1.0,f +34546,50%,Isle of Man,1.0,t +34186,60%,,2.0,t +39700,100%,,1.0,f +28016,,Micronesia,2.0,f +42770,,Holy See (Vatican City State),3.0,t +6666,,Malawi,1.0,t +21374,88%,Russian Federation,1.0,f +46691,90%,Uzbekistan,38.0,f +3932,100%,Uzbekistan,2.0,f +40593,,Nauru,10.0,t +15753,100%,Gambia,1.0,t +38285,,Netherlands,1.0,f +1898,,,1.0,t +40400,80%,Guinea,2.0,t +14474,,Russian Federation,1.0,f +17818,100%,Montserrat,2.0,t +12734,100%,Malta,3.0,t +44860,,Isle of Man,2.0,t +4631,,Rwanda,1.0,f +22143,100%,Venezuela,3.0,t +1435,90%,Uzbekistan,1.0,t +17972,100%,Guinea,1.0,f +28189,100%,Isle of Man,1.0,f +48455,89%,Uzbekistan,20.0,t +35430,,Venezuela,1.0,f +12465,,Marshall Islands,1.0,f +50059,100%,Barbados,7.0,f +43945,,Zimbabwe,1.0,t +43533,100%,,3.0,t +15956,,China,1.0,t +46429,100%,,2.0,f +24498,,Chad,1.0,t +8335,,Lebanon,1.0,f +12812,99%,Croatia,32.0,f +12812,99%,Croatia,32.0,f +49663,,Chile,2.0,t +35170,100%,Vietnam,5.0,t +28016,,Micronesia,2.0,f +18675,100%,Netherlands,2.0,t +39197,100%,Ecuador,2.0,t +2459,,Nauru,2.0,f +40388,,Mauritania,1.0,t +711,,,1.0,t +18852,100%,,1.0,t +13403,96%,Maldives,21.0,t +24674,,Vietnam,4.0,t +19053,100%,Svalbard & Jan Mayen Islands,4.0,t +39903,100%,Guinea,1.0,t +16551,,Denmark,1.0,t +16495,100%,,2.0,t +10159,,Gambia,2.0,f +49443,100%,Sao Tome and Principe,2.0,t +22199,,Anguilla,1.0,t +30572,,Russian Federation,1.0,t +3517,,Russian Federation,1.0,t +25550,100%,Nicaragua,8.0,t +13143,100%,,2.0,t +21726,100%,,1.0,t +12994,80%,Croatia,1.0,f +9054,100%,Seychelles,4.0,t +46832,100%,Niue,2.0,t +34306,91%,Wallis and Futuna,30.0,t +7117,75%,Russian Federation,1.0,f +37991,,Tanzania,1.0,t +43192,60%,Suriname,1.0,t +41828,,Guinea,1.0,f +48757,10%,Gambia,1.0,t +43635,,Moldova,1.0,f +5607,100%,Jersey,2.0,t +4306,83%,China,3.0,f +9095,100%,Uganda,2.0,f +41021,,United Kingdom,1.0,f +16488,,Zimbabwe,2.0,t +8222,,,1.0,f +41084,,,1.0,t +33738,,Congo,5.0,t +41393,,Guernsey,1.0,t +33738,,Congo,5.0,t +12361,100%,Guernsey,4.0,t +2465,100%,Gibraltar,4.0,t +47759,,,1.0,f +13256,,Tonga,1.0,t +22912,100%,Russian Federation,1.0,t +31332,100%,Gambia,3.0,t +37503,,French Guiana,1.0,f +47878,,Faroe Islands,2.0,f +22791,100%,Uzbekistan,1.0,t +16557,100%,Jersey,1.0,t +9166,100%,,2.0,t +26375,100%,Afghanistan,5.0,t +2160,100%,Isle of Man,1.0,t +45493,,French Guiana,1.0,t +43447,,Ghana,5.0,t +49622,,Jersey,1.0,t +27336,,Maldives,1.0,t +40943,,Tonga,1.0,f +561,,Croatia,1.0,t +6278,,French Guiana,1.0,t +34332,,Nicaragua,1.0,f +24066,,Niue,2.0,t +32974,,,1.0,f +8552,100%,,1.0,t +15548,100%,Faroe Islands,1.0,t +23153,100%,Gibraltar,2.0,t +6872,100%,,1.0,t +48228,100%,Greenland,2.0,f +5470,,Niue,1.0,f +31457,100%,,2.0,t +9827,,Somalia,1.0,t +28307,100%,Reunion,1.0,f +35939,70%,,1.0,f +28968,100%,,1.0,t +17513,,Faroe Islands,1.0,t +38536,,Togo,1.0,f +18146,100%,,2.0,t +32572,100%,Niue,1.0,t +34841,100%,Zimbabwe,22.0,t +48074,100%,Switzerland,1.0,t +40540,,Cape Verde,7.0,f +42110,67%,Guinea,2.0,f +23207,100%,Bosnia and Herzegovina,1.0,t +17638,100%,Sao Tome and Principe,1.0,t +34678,89%,Croatia,4.0,t +36272,,Indonesia,1.0,t +46787,100%,Niue,1.0,t +29130,100%,Kenya,2.0,t +35042,,Mexico,1.0,t +4369,,Guinea,1.0,f +41080,89%,Tonga,10.0,t +16977,100%,Monaco,1.0,f +46028,,Mauritania,1.0,t +26549,100%,Malta,3.0,t +39505,,Sao Tome and Principe,2.0,f +39283,100%,Uganda,13.0,f +24458,,Rwanda,1.0,f +44874,100%,Isle of Man,2.0,t +2056,,,1.0,f +43351,,Guinea,3.0,t +20962,100%,Russian Federation,2.0,t +7648,,Indonesia,1.0,t +15143,,United Kingdom,2.0,t +24073,100%,Zimbabwe,2.0,f +38826,75%,Senegal,2.0,t +47914,80%,Philippines,1.0,t +3950,100%,,1.0,t +32359,,France,1.0,t +39881,100%,Lithuania,2.0,f +1032,,Somalia,1.0,f +40077,90%,,1.0,f +11680,100%,,1.0,t +47175,,Malawi,1.0,t +13762,77%,Senegal,1.0,t +23705,,Niue,1.0,f +47781,,Cocos (Keeling) Islands,1.0,t +49273,100%,Sao Tome and Principe,1.0,t +3522,100%,Russian Federation,1.0,t +20766,100%,Niue,1.0,t +8584,100%,Costa Rica,7.0,t +1019,100%,,1.0,t +9586,100%,Guinea,2.0,t +49548,100%,Faroe Islands,2.0,t +6838,96%,Spain,59.0,t +45138,79%,Barbados,14.0,f +6838,96%,Spain,59.0,t +37822,100%,,1.0,f +23937,,,1.0,f +17694,100%,Isle of Man,4.0,t +11167,,Djibouti,1.0,f +8608,80%,Tunisia,1.0,t +26717,,Cuba,1.0,t +3093,100%,,1.0,t +13380,,Zimbabwe,1.0,t +37441,100%,Vietnam,12.0,t +306,100%,El Salvador,3.0,f +27489,100%,Canada,2.0,t +31442,100%,,1.0,t +43152,100%,Nicaragua,82.0,t +43152,100%,Nicaragua,82.0,t +24174,100%,Guinea,1.0,t +27525,,Togo,1.0,t +47836,,,1.0,t +12797,,,1.0,t +21544,,Kiribati,1.0,f +17686,,Reunion,2.0,t +47059,,Lebanon,1.0,f +41346,97%,Estonia,7.0,t +17932,100%,Costa Rica,8.0,t +29652,,Rwanda,1.0,t +3115,83%,Slovakia (Slovak Republic),17.0,t +43152,100%,Nicaragua,82.0,t +43152,100%,Nicaragua,82.0,t +43152,100%,Nicaragua,82.0,t +39562,100%,Uzbekistan,3.0,t +17705,100%,Philippines,3.0,t +17705,100%,Philippines,3.0,t +16676,100%,Indonesia,2.0,t +8432,100%,Sierra Leone,2.0,f +17705,100%,Philippines,3.0,t +17694,100%,Isle of Man,4.0,t +7076,,,1.0,t +9157,,,1.0,f +46499,,Philippines,2.0,f +26375,100%,Afghanistan,5.0,t +18428,100%,Niue,2.0,t +44912,,Lebanon,1.0,t +39881,100%,Lithuania,2.0,f +22377,100%,Russian Federation,1.0,t +38081,,,3.0,t +38081,,,3.0,t +3402,100%,,1.0,t +13035,,Marshall Islands,1.0,f +22692,,Maldives,3.0,f +35976,100%,,6.0,t +40195,,,2.0,f +47422,99%,Uzbekistan,30.0,f +14900,100%,Isle of Man,1.0,t +17597,33%,Wallis and Futuna,1.0,t +20026,,Bahrain,1.0,t +45875,,Zimbabwe,1.0,t +37955,80%,Slovakia (Slovak Republic),3.0,t +7208,,El Salvador,2.0,t +36519,,Malta,1.0,t +26384,,Mexico,1.0,t +25703,83%,Tanzania,1.0,f +43152,100%,Nicaragua,82.0,t +43152,100%,Nicaragua,82.0,t +14278,,,1.0,f +22559,100%,United Kingdom,1.0,t +18987,100%,,1.0,f +6838,96%,Spain,59.0,t +16918,,,1.0,f +37325,,Marshall Islands,1.0,t +32954,,,1.0,f +36189,100%,Brazil,2.0,t +6838,96%,Spain,59.0,t +3843,,Uzbekistan,1.0,f +28149,100%,Mexico,6.0,t +46454,,Palestinian Territory,1.0,f +7284,,Russian Federation,1.0,t +36906,100%,Montserrat,1.0,t +829,100%,Gibraltar,1.0,t +6838,96%,Spain,59.0,t +22229,100%,Afghanistan,3.0,t +6838,96%,Spain,59.0,t +24016,100%,Bosnia and Herzegovina,29.0,f +12383,67%,France,1.0,t +40751,100%,,1.0,f +6838,96%,Spain,59.0,t +33069,,,1.0,f +4508,100%,,1.0,t +44857,100%,Zimbabwe,24.0,t +34038,100%,,1.0,f +40329,,Isle of Man,1.0,t +19224,100%,Brazil,1.0,f +27037,,Zimbabwe,1.0,f +31522,97%,Niger,5.0,t +43471,90%,Marshall Islands,1.0,f +47976,78%,Uzbekistan,1.0,t +10507,,Isle of Man,1.0,t +4981,100%,Niue,1.0,f +40305,83%,Monaco,1.0,t +18484,100%,Gambia,108.0,f +6110,100%,Montserrat,1.0,f +6829,,Ecuador,1.0,f +32573,25%,Gambia,1.0,f +15525,100%,,1.0,t +40933,,Niue,1.0,t +28840,100%,Maldives,1.0,t +44602,,Niger,1.0,t +8696,,,1.0,f +10319,,Niue,1.0,t +19677,,Nicaragua,1.0,t +7684,100%,Isle of Man,1.0,t +5711,100%,Senegal,2.0,f +32901,,China,1.0,f +18507,67%,Marshall Islands,1.0,t +24935,,Montserrat,1.0,f +49880,,Afghanistan,1.0,t +48962,100%,Isle of Man,1.0,f +46818,,Svalbard & Jan Mayen Islands,2.0,f +42772,,Guinea,3.0,f +44346,80%,Niue,1.0,t +34841,100%,Zimbabwe,22.0,t +49608,,Ukraine,1.0,t +18452,90%,Barbados,2.0,f +26331,100%,Brazil,2.0,t +22809,100%,Barbados,2.0,f +13279,100%,Isle of Man,2.0,t +6593,,,1.0,f +39072,,Mexico,1.0,f +23939,100%,Uzbekistan,1.0,t +36837,100%,Lebanon,2.0,t +2728,,,1.0,t +6437,100%,United Kingdom,1.0,f +24163,100%,,1.0,t +11492,100%,Indonesia,2.0,t +49068,100%,Gibraltar,1.0,t +2366,,Costa Rica,1.0,t +10804,,French Polynesia,1.0,f +13233,,,1.0,t +13886,100%,Guinea,1.0,f +8967,100%,Uganda,3.0,f +8167,,Croatia,1.0,f +8342,,,1.0,f +29398,100%,,1.0,t +32582,83%,,3.0,f +34867,100%,,1.0,t +39293,,Senegal,1.0,t +49998,100%,Croatia,1.0,t +43281,100%,Micronesia,5.0,f +44570,100%,,5.0,t +4923,,,1.0,t +3138,,,1.0,f +15720,,Kenya,1.0,f +48007,100%,Uganda,3.0,t +48007,100%,Uganda,3.0,t +47489,,Guinea,1.0,t +15920,,,1.0,f +20569,100%,Montserrat,3.0,t +48918,100%,Slovakia (Slovak Republic),1.0,t +3656,100%,Marshall Islands,1.0,t +49090,,Afghanistan,1.0,f +15144,,Croatia,2.0,t +3340,100%,Indonesia,6.0,t +1691,,Lebanon,2.0,t +25017,,,1.0,t +23673,,Niue,1.0,t +1660,93%,,2.0,t +41803,,Vanuatu,1.0,t +20673,,Rwanda,3.0,t +11836,,United Kingdom,1.0,t +46455,92%,Uzbekistan,4.0,t +36635,100%,Indonesia,10.0,f +21065,,Estonia,1.0,t +19053,100%,Svalbard & Jan Mayen Islands,4.0,t +49789,100%,United States Minor Outlying Islands,2.0,t +18389,,Rwanda,1.0,f +19239,100%,Nicaragua,2.0,t +12126,,Isle of Man,1.0,f +35363,,,1.0,f +47897,,Brazil,1.0,f +29748,40%,Djibouti,1.0,t +17986,0%,,1.0,f +36837,100%,Lebanon,2.0,t +4267,100%,Senegal,22.0,t +14758,,Indonesia,2.0,f +26119,,French Guiana,1.0,t +31599,100%,,2.0,t +43536,100%,Russian Federation,1.0,t +33193,100%,Brazil,10.0,f +45262,100%,Monaco,1.0,t +34510,100%,Jersey,2.0,t +14758,,Indonesia,2.0,f +11211,100%,,1.0,f +19351,100%,Guinea,2.0,f +13685,,,1.0,f +34881,100%,China,6.0,f +35304,100%,Tonga,12.0,t +1557,100%,,1.0,t +18806,100%,Vietnam,6.0,t +36152,,Chad,1.0,f +40892,,,2.0,f +26842,100%,Jersey,2.0,t +3226,100%,Turkmenistan,1.0,t +43964,,Russian Federation,1.0,f +38162,100%,Niger,8.0,f +35966,,,1.0,f +23943,100%,Nicaragua,2.0,t +42923,,Maldives,1.0,f +9872,,Svalbard & Jan Mayen Islands,2.0,t +17316,100%,Niue,1.0,t +47453,100%,,1.0,t +44818,,Ghana,1.0,t +29478,90%,,1.0,t +4934,100%,Niger,2.0,t +19151,,Tanzania,2.0,f +36305,100%,Fiji,1.0,t +44857,100%,Zimbabwe,24.0,t +4937,,Papua New Guinea,1.0,f +18988,78%,Uzbekistan,2.0,f +40438,,,1.0,t +4934,100%,Niger,2.0,t +2861,90%,Niue,1.0,t +46913,100%,,1.0,t +24032,100%,Lebanon,1.0,f +25109,100%,,1.0,t +43216,,Andorra,1.0,f +47872,,,1.0,f +32118,,France,1.0,f +45434,,Nauru,1.0,t +32284,,Turkmenistan,1.0,f +6378,100%,Isle of Man,1.0,f +45073,,,1.0,t +2086,100%,Isle of Man,1.0,t +40678,100%,Ecuador,3.0,t +16600,100%,Russian Federation,2.0,t +15165,,Croatia,1.0,t +36062,100%,Finland,1.0,f +39555,100%,Marshall Islands,13.0,t +11389,100%,Christmas Island,1.0,t +22399,,France,1.0,t +2773,100%,Gibraltar,3.0,t +11134,100%,Palestinian Territory,1.0,t +19041,100%,Indonesia,4.0,t +6365,80%,Nauru,2.0,t +35304,100%,Tonga,12.0,t +38091,100%,,2.0,t +38091,100%,,2.0,t +42068,,Estonia,2.0,f +50088,,,1.0,t +48811,,Kenya,1.0,t +34931,100%,Gibraltar,2.0,t +35304,100%,Tonga,12.0,t +3519,,Vietnam,1.0,t +35304,100%,Tonga,12.0,t +48621,,,1.0,t +32236,100%,,1.0,t +42455,100%,,1.0,t +8448,0%,Croatia,1.0,t +35728,100%,Lithuania,1.0,t +44968,100%,Croatia,2.0,t +6,,,5.0,t +14631,,,1.0,f +5218,100%,Jersey,1.0,t +8280,90%,Uzbekistan,3.0,f +39600,100%,,1.0,f +15896,100%,,1.0,t +190,100%,Nicaragua,1.0,f +24400,,Tonga,1.0,f +15031,50%,Tanzania,3.0,t +29753,100%,El Salvador,3.0,t +11826,100%,Cocos (Keeling) Islands,2.0,t +24384,,Micronesia,1.0,t +9957,,Chad,3.0,t +42252,91%,Ecuador,2.0,t +46363,,,1.0,f +26099,99%,Reunion,15.0,f +44874,100%,Isle of Man,2.0,t +5607,100%,Jersey,2.0,t +3006,100%,,1.0,f +44287,,Venezuela,1.0,t +40044,100%,Marshall Islands,1.0,f +35304,100%,Tonga,12.0,t +12164,100%,Nicaragua,8.0,f +39870,,Slovakia (Slovak Republic),21.0,t +35304,100%,Tonga,12.0,t +35887,100%,Niue,2.0,t +334,,,1.0,t +44145,100%,Rwanda,4.0,t +40402,,,1.0,f +6556,,Senegal,1.0,f +47422,99%,Uzbekistan,30.0,f +47422,99%,Uzbekistan,30.0,f +9114,94%,Sao Tome and Principe,4.0,t +44656,100%,Faroe Islands,3.0,t +46635,100%,Puerto Rico,1.0,t +29489,100%,Somalia,1.0,t +21751,,Nicaragua,1.0,t +42343,100%,,1.0,t +6535,100%,,1.0,t +49203,,Russian Federation,1.0,t +34113,,Marshall Islands,2.0,t +37379,,Jersey,1.0,t +3856,100%,,1.0,t +12952,,Greenland,1.0,t +47113,,Faroe Islands,2.0,f +45790,100%,Gibraltar,1.0,f +38817,100%,France,4.0,t +26733,,,1.0,f +47422,99%,Uzbekistan,30.0,f +31389,,Micronesia,1.0,f +47422,99%,Uzbekistan,30.0,f +25176,,Christmas Island,1.0,f +46509,,Barbados,1.0,t +29282,,Chad,1.0,f +1129,,Zimbabwe,1.0,t +8142,100%,Gambia,4.0,t +33823,78%,France,17.0,t +14409,100%,,1.0,t +38817,100%,France,4.0,t +44108,100%,Ecuador,1.0,t +24881,,,2.0,f +20594,,,1.0,t +18344,,Turkmenistan,1.0,t +37415,100%,Mexico,2.0,f +4958,100%,,1.0,f +10197,100%,Sao Tome and Principe,1.0,t +1730,100%,Chad,2.0,t +15324,,Vietnam,2.0,t +24552,,Rwanda,1.0,t +39234,,Venezuela,3.0,t +16600,100%,Russian Federation,2.0,t +7529,,Chad,1.0,f +4742,20%,Chile,3.0,t +96,100%,Mexico,2.0,t +38800,100%,Marshall Islands,1.0,t +43152,100%,Nicaragua,82.0,t +41465,80%,Maldives,2.0,f +26995,100%,,1.0,t +46704,,Tanzania,1.0,t +45284,0%,Estonia,1.0,t +47594,100%,Kenya,17.0,t +15682,100%,Isle of Man,1.0,f +12700,100%,Uganda,1.0,f +43114,,Chile,1.0,f +21459,,Chile,1.0,f +17024,,Niue,1.0,t +34292,,Micronesia,2.0,t +36198,,Lebanon,1.0,t +10618,,Niue,1.0,t +26808,100%,Rwanda,9.0,t +1421,100%,Estonia,4.0,t +1421,100%,Estonia,4.0,t +17697,90%,Rwanda,3.0,f +966,90%,Tanzania,1.0,t +29929,75%,Montserrat,3.0,t +37646,100%,Estonia,60.0,f +44170,,Niue,2.0,t +48367,100%,Sao Tome and Principe,2.0,f +13270,100%,Anguilla,3.0,t +47723,100%,Guinea,2.0,f +34226,,Palestinian Territory,2.0,t +41763,,United Kingdom,2.0,t +31485,100%,Philippines,1.0,t +27940,100%,Anguilla,2.0,f +499,100%,,2.0,t +28833,100%,Venezuela,5.0,f +43281,100%,Micronesia,5.0,f +4053,,Ecuador,6.0,f +45482,,,1.0,f +20820,100%,,1.0,f +40000,83%,,1.0,f +37878,,Turks and Caicos Islands,1.0,t +40534,,Sao Tome and Principe,1.0,t +38209,,Bosnia and Herzegovina,2.0,f +34306,91%,Wallis and Futuna,30.0,t +49780,,El Salvador,1.0,t +34306,91%,Wallis and Futuna,30.0,t +21921,,,1.0,t +31551,97%,Kiribati,8.0,t +26994,100%,Tonga,1.0,t +48270,100%,Indonesia,1.0,t +29018,,Chile,1.0,t +3487,80%,Grenada,2.0,f +26774,,Monaco,2.0,t +49653,40%,Marshall Islands,1.0,t +20003,,Brazil,2.0,f +24663,,Lithuania,1.0,t +40625,,Ghana,1.0,t +22747,100%,,1.0,f +34012,100%,,1.0,t +34986,100%,,1.0,f +27586,,Tonga,1.0,t +21587,100%,,1.0,t +21977,100%,Malawi,1.0,f +17724,,Turks and Caicos Islands,6.0,t +28365,,China,4.0,t +26392,,Malta,4.0,f +32751,,Faroe Islands,1.0,t +4683,,El Salvador,1.0,t +28252,100%,Niue,2.0,f +27917,,Niue,1.0,t +38263,,Indonesia,1.0,t +39666,,El Salvador,1.0,t +21778,100%,,1.0,t +19525,0%,Bouvet Island (Bouvetoya),1.0,t +38413,,Bosnia and Herzegovina,1.0,f +41238,100%,Kiribati,1.0,t +34275,100%,Tonga,1.0,t +42022,100%,Nauru,1.0,t +49398,88%,Barbados,18.0,t +33676,100%,Zimbabwe,1.0,t +11419,,Tonga,1.0,t +23724,,Ghana,1.0,t +12635,100%,Uzbekistan,1.0,t +43995,100%,,1.0,t +44543,100%,Bosnia and Herzegovina,1.0,t +38799,100%,Uzbekistan,1.0,t +33664,100%,French Guiana,1.0,f +40093,,Zimbabwe,2.0,t +25244,,Sao Tome and Principe,1.0,t +48852,60%,Rwanda,3.0,t +47422,99%,Uzbekistan,30.0,f +7588,100%,Philippines,2.0,f +7588,100%,Philippines,2.0,f +22510,100%,Uzbekistan,1.0,t +33224,100%,Uzbekistan,1.0,f +15893,100%,Pakistan,1.0,t +24239,100%,Kiribati,8.0,t +47964,,Chile,3.0,f +45526,,,1.0,f +3868,100%,,2.0,t +19802,100%,Denmark,1.0,f +40037,100%,Chile,1.0,t +48842,71%,Guinea,1.0,f +13382,,,1.0,t +403,,Malawi,1.0,f +24016,100%,Bosnia and Herzegovina,29.0,f +23781,50%,,2.0,f +16073,,Chile,1.0,t +48184,,Tanzania,1.0,t +15828,,Andorra,1.0,f +8809,100%,Micronesia,1.0,t +45081,,,2.0,t +42458,97%,Indonesia,14.0,t +35352,,Estonia,2.0,t +8859,90%,Ukraine,5.0,f +40787,33%,Marshall Islands,2.0,f +14852,,Sao Tome and Principe,2.0,f +37646,100%,Estonia,60.0,f +4342,,Russian Federation,1.0,f +18077,100%,Sao Tome and Principe,139.0,f +8859,90%,Ukraine,5.0,f +12101,100%,,2.0,f +46112,100%,Afghanistan,2.0,t +17337,100%,,1.0,f +37666,100%,Ecuador,9.0,f +37666,100%,Ecuador,9.0,f +25584,,Lebanon,1.0,t +37666,100%,Ecuador,9.0,f +3345,,Russian Federation,1.0,f +37666,100%,Ecuador,9.0,f +37666,100%,Ecuador,9.0,f +37666,100%,Ecuador,9.0,f +37666,100%,Ecuador,9.0,f +37666,100%,Ecuador,9.0,f +26956,,,1.0,t +29327,,Svalbard & Jan Mayen Islands,1.0,f +30907,,Zimbabwe,2.0,f +15878,100%,Reunion,1.0,f +5358,,United Kingdom,1.0,t +8006,,Chad,1.0,t +13403,96%,Maldives,21.0,t +20094,100%,Cocos (Keeling) Islands,2.0,f +28215,100%,Guinea,1.0,f +15437,0%,Jersey,1.0,f +24756,,,1.0,t +43281,100%,Micronesia,5.0,f +42726,100%,Niue,1.0,f +47632,100%,Jersey,1.0,t +36991,,Turkmenistan,1.0,f +38633,,Niue,1.0,t +5602,17%,,1.0,t +11201,,Faroe Islands,1.0,t +41747,,Tonga,1.0,t +12581,,Lebanon,1.0,t +16990,0%,Russian Federation,1.0,f +2933,,Kenya,2.0,f +3089,100%,Russian Federation,1.0,f +12367,60%,Venezuela,1.0,f +43059,,Chile,1.0,f +14949,,,1.0,f +40779,,,1.0,t +17759,100%,Chad,2.0,f +2587,100%,Niue,3.0,t +5648,,Greenland,7.0,f +45543,,Gambia,1.0,f +5648,,Greenland,7.0,f +5648,,Greenland,7.0,f +5648,,Greenland,7.0,f +5648,,Greenland,7.0,f +5648,,Greenland,7.0,f +5648,,Greenland,7.0,f +16223,100%,,1.0,t +46024,100%,,1.0,t +38276,33%,Canada,2.0,t +26589,100%,Micronesia,1.0,t +6850,100%,Faroe Islands,3.0,t +20154,,Chad,1.0,t +18701,,Ecuador,1.0,t +48565,,,1.0,f +18919,,Russian Federation,1.0,t +16730,,Isle of Man,1.0,f +3210,,,1.0,t +6838,96%,Spain,59.0,t +555,100%,Brazil,2.0,t +7478,,,2.0,t +336,100%,Ecuador,7.0,f +40412,97%,Netherlands,26.0,t +24503,,,1.0,t +25156,,Andorra,1.0,f +4302,,Lebanon,2.0,t +16207,100%,Marshall Islands,1.0,f +19943,63%,Isle of Man,34.0,f +30527,,Niue,1.0,t +18377,,Russian Federation,1.0,t +47299,,Chad,1.0,t +46386,,,1.0,f +20335,100%,,2.0,f +3440,33%,Lebanon,1.0,f +20335,100%,,2.0,f +44383,,,2.0,f +8853,,Jersey,1.0,f +45155,0%,,1.0,t +39986,100%,Isle of Man,2.0,t +12937,,,1.0,t +40638,,,1.0,f +20990,,Croatia,2.0,f +28655,,Kenya,1.0,f +35657,100%,Zimbabwe,2.0,t +43327,,Sao Tome and Principe,3.0,f +38377,,Lebanon,1.0,f +21023,100%,,2.0,t +10592,100%,Malta,2.0,t +647,,Lebanon,1.0,t +8425,,Zimbabwe,1.0,f +6925,67%,Uganda,1.0,t +40837,,France,1.0,f +40433,100%,Russian Federation,3.0,f +43625,,Isle of Man,1.0,f +6752,,Maldives,1.0,t +45574,,Sao Tome and Principe,1.0,f +40839,,Croatia,1.0,f +3757,100%,Tonga,1.0,t +22586,100%,Russian Federation,1.0,t +32917,100%,Mauritania,1.0,t +15604,100%,Russian Federation,2.0,t +10687,100%,,1.0,t +42374,,Venezuela,1.0,f +38190,,Micronesia,1.0,t +43152,100%,Nicaragua,82.0,t +11141,,,1.0,t +10396,,Niger,1.0,f +35356,100%,Russian Federation,2.0,t +28167,,Russian Federation,1.0,t +46770,,Malawi,1.0,t +40766,,Russian Federation,1.0,f +46586,100%,Bosnia and Herzegovina,12.0,f +17314,,Guernsey,1.0,t +46586,100%,Bosnia and Herzegovina,12.0,f +22448,,Chile,1.0,f +38507,,,1.0,f +33067,,Costa Rica,1.0,f +35539,,Somalia,1.0,t +25139,,Monaco,2.0,t +46586,100%,Bosnia and Herzegovina,12.0,f +31910,,Lebanon,1.0,t +10667,,,1.0,t +16135,100%,Zimbabwe,2.0,t +48147,100%,Denmark,1.0,t +22360,,Malta,1.0,f +12213,,Chad,1.0,t +2120,,Nicaragua,1.0,f +29691,100%,Isle of Man,1.0,t +26586,,Sao Tome and Principe,2.0,t +6175,100%,Russian Federation,4.0,t +31788,,Denmark,1.0,f +48916,100%,Libyan Arab Jamahiriya,1.0,f +28927,,Gambia,1.0,f +45261,,Malta,2.0,f +36026,100%,Sao Tome and Principe,1.0,t +20146,100%,Niue,1.0,t +262,97%,Maldives,16.0,t +36332,100%,Isle of Man,11.0,f +45261,,Malta,2.0,f +34630,100%,Russian Federation,1.0,f +1829,,,1.0,t +7384,100%,Faroe Islands,2.0,t +29605,90%,Chad,1.0,f +227,,Jersey,1.0,f +36264,,,1.0,f +45273,,Wallis and Futuna,1.0,t +45754,100%,French Guiana,1.0,t +27606,,Cocos (Keeling) Islands,1.0,t +26797,,,1.0,f +7495,100%,Guinea,1.0,f +3873,100%,Marshall Islands,1.0,t +33823,78%,France,17.0,t +12683,100%,Lithuania,1.0,t +19606,100%,Mauritania,1.0,t +8871,50%,Kiribati,1.0,f +46446,,Niue,1.0,f +41801,100%,French Polynesia,1.0,f +3803,,Maldives,1.0,f +18681,100%,,1.0,t +8890,100%,Nicaragua,2.0,t +40002,,France,1.0,f +5598,100%,United Kingdom,1.0,t +29893,100%,Anguilla,2.0,f +37256,,French Guiana,1.0,f +11255,93%,Suriname,41.0,f +34231,100%,Fiji,2.0,f +22967,100%,Ecuador,2.0,t +10941,,Sao Tome and Principe,1.0,t +20513,,Korea,2.0,t +16934,33%,Malta,1.0,f +23515,100%,Russian Federation,2.0,t +32186,100%,United Kingdom,2.0,f +34292,,Micronesia,2.0,t +32216,80%,Croatia,3.0,f +11426,100%,,3.0,t +21092,,,1.0,t +28086,,Slovakia (Slovak Republic),2.0,f +48542,,Philippines,1.0,f +3526,100%,Ukraine,3.0,t +6175,100%,Russian Federation,4.0,t +39032,,,1.0,f +3496,,Moldova,2.0,f +24731,,,1.0,t +44526,,Palestinian Territory,1.0,t +19187,,,1.0,t +5761,100%,Montserrat,1.0,f +6175,100%,Russian Federation,4.0,t +3227,100%,Guernsey,1.0,f +31784,100%,Kenya,1.0,t +19239,100%,Nicaragua,2.0,t +3915,100%,Ghana,2.0,t +48455,89%,Uzbekistan,20.0,t +6198,20%,,1.0,f +20538,100%,French Guiana,1.0,t +19155,93%,,2.0,t +31223,,,1.0,t +28503,,Saint Helena,1.0,f +20120,100%,Wallis and Futuna,10.0,f +26314,,Tanzania,2.0,f +13302,,Niue,1.0,f +3232,,,1.0,f +27219,,Gibraltar,3.0,t +6911,,Mauritania,2.0,f +47664,,Nicaragua,1.0,f +11142,,Tonga,1.0,t +9441,,El Salvador,1.0,f +24324,100%,Niger,2.0,f +11597,,,1.0,f +44749,100%,,1.0,f +40681,,Faroe Islands,1.0,f +30672,,Lebanon,1.0,f +33128,,,1.0,t +43152,100%,Nicaragua,82.0,t +43152,100%,Nicaragua,82.0,t +23225,100%,Kiribati,1.0,f +25469,100%,Russian Federation,1.0,t +23483,50%,,1.0,f +10264,,Cocos (Keeling) Islands,1.0,f +37952,100%,Congo,3.0,t +32316,,Nauru,1.0,t +15227,100%,Reunion,1.0,f +30103,,Cocos (Keeling) Islands,1.0,t +39197,100%,Ecuador,2.0,t +9087,100%,Mauritania,1.0,t +23794,,Micronesia,1.0,f +41729,100%,Zimbabwe,2.0,f +8953,90%,Micronesia,7.0,t +8953,90%,Micronesia,7.0,t +43044,100%,Micronesia,2.0,t +26740,100%,Russian Federation,1.0,t +6175,100%,Russian Federation,4.0,t +4087,100%,Micronesia,2.0,t +4220,,El Salvador,1.0,t +47776,,Brazil,1.0,f +30901,100%,Indonesia,2.0,t +7124,,,1.0,f +35986,100%,Niue,1.0,t +7397,,,1.0,t +27438,100%,,1.0,t +10592,100%,Malta,2.0,t +47903,,French Guiana,1.0,t +3642,90%,Bosnia and Herzegovina,2.0,t +21045,100%,French Guiana,2.0,f +48387,70%,,1.0,f +32766,100%,Faroe Islands,2.0,f +25032,100%,Nicaragua,1.0,t +41700,100%,,1.0,t +42702,,,1.0,f +16115,,Peru,1.0,t +3731,,Malta,1.0,f +9453,40%,Zimbabwe,1.0,f +36643,98%,Maldives,17.0,f +25317,100%,,3.0,t +19535,,Russian Federation,1.0,t +37077,,,1.0,t +18055,,Bosnia and Herzegovina,1.0,t +27295,100%,Isle of Man,1.0,f +12133,100%,Mexico,4.0,f +16316,100%,,2.0,t +9375,100%,Peru,2.0,t +25265,100%,Libyan Arab Jamahiriya,1.0,t +38164,,,1.0,f +36984,100%,,2.0,f +43152,100%,Nicaragua,82.0,t +4087,100%,Micronesia,2.0,t +43152,100%,Nicaragua,82.0,t +34980,,,1.0,t +36481,95%,Kiribati,7.0,t +28179,,Lebanon,1.0,f +15667,100%,Tonga,1.0,t +35325,100%,,2.0,t +22845,100%,,1.0,f +11347,100%,Gibraltar,3.0,f +33437,,Malta,1.0,t +42454,100%,Finland,1.0,f +22486,,,1.0,t +417,100%,Monaco,2.0,t +3162,100%,Montserrat,6.0,t +3741,,Kiribati,1.0,f +31183,,,1.0,f +36884,100%,Uzbekistan,1.0,f +33116,,Lebanon,1.0,t +23565,100%,Slovakia (Slovak Republic),6.0,t +27404,,Uruguay,1.0,f +38819,,,1.0,f +11955,,Kenya,1.0,t +29146,100%,Vanuatu,2.0,t +39155,100%,Russian Federation,2.0,t +19508,,,1.0,f +31621,,Kiribati,1.0,t +29146,100%,Vanuatu,2.0,t +7131,,,1.0,t +26217,100%,,1.0,t +17641,,Tajikistan,4.0,f +17450,,Malta,1.0,f +43152,100%,Nicaragua,82.0,t +30805,,Vanuatu,1.0,f +24100,,Lebanon,1.0,t +14537,,,1.0,f +21023,100%,,2.0,t +29757,100%,Chad,1.0,t +19290,,Micronesia,1.0,t +40796,,Kenya,1.0,f +25456,,,1.0,t +19116,,Micronesia,1.0,f +5649,0%,Guinea,2.0,f +31551,97%,Kiribati,8.0,t +31551,97%,Kiribati,8.0,t +18790,100%,Indonesia,4.0,f +33096,,Marshall Islands,2.0,t +15435,,,1.0,t +8742,100%,Malta,1.0,f +6838,96%,Spain,59.0,t +45553,90%,Brazil,16.0,t +6838,96%,Spain,59.0,t +41212,,,1.0,t +33446,100%,Philippines,1.0,t +32444,100%,Bahrain,1.0,f +22908,100%,Micronesia,6.0,t +30224,100%,Cuba,1.0,t +12022,80%,Uzbekistan,2.0,t +26241,100%,Ecuador,2.0,t +27487,100%,Senegal,2.0,t +1551,,Niue,1.0,f +6838,96%,Spain,59.0,t +7520,100%,Ukraine,15.0,t +10888,,Chad,1.0,t +6838,96%,Spain,59.0,t +30216,98%,Maldives,34.0,f +581,100%,Russian Federation,2.0,t +6838,96%,Spain,59.0,t +32070,,,1.0,f +48547,,United Kingdom,1.0,f +12299,100%,,3.0,t +14942,,Malta,1.0,f +49398,88%,Barbados,18.0,t +8719,,Uruguay,1.0,t +32046,50%,Gibraltar,1.0,t +44017,57%,Niue,1.0,f +43447,,Ghana,5.0,t +43085,100%,Brazil,1.0,t +41441,75%,Nauru,2.0,t +37426,100%,Zimbabwe,3.0,t +44934,100%,Philippines,17.0,f +27416,100%,Gibraltar,1.0,f +44242,94%,,1.0,t +42270,,Uzbekistan,1.0,f +40998,100%,Isle of Man,2.0,f +40998,100%,Isle of Man,2.0,f +26245,100%,,1.0,t +13859,,Costa Rica,1.0,t +14695,100%,Turkmenistan,3.0,t +14695,100%,Turkmenistan,3.0,t +23285,,Nicaragua,1.0,t +45962,,Zimbabwe,2.0,t +40212,100%,France,2.0,t +36162,100%,,4.0,t +13799,,,3.0,t +13948,,Jersey,1.0,t +26684,100%,Libyan Arab Jamahiriya,1.0,f +26314,,Tanzania,2.0,f +26716,,,1.0,t +15745,90%,Isle of Man,2.0,t +44728,,,3.0,f +38558,100%,Russian Federation,1.0,t +37184,100%,Russian Federation,1.0,t +17366,,Turks and Caicos Islands,1.0,t +40345,,Tonga,1.0,f +35833,83%,Estonia,9.0,t +27534,,Chad,2.0,t +12353,100%,Peru,1.0,t +2069,100%,Gambia,4.0,t +28803,100%,Cocos (Keeling) Islands,1.0,f +4673,100%,,1.0,t +9549,100%,,1.0,f +14267,75%,Niue,1.0,t +27085,,,1.0,t +16172,100%,,2.0,t +40974,80%,,1.0,t +16470,100%,,1.0,t +2067,100%,Russian Federation,1.0,f +35351,,Lebanon,1.0,t +32186,100%,United Kingdom,2.0,f +29955,,United Kingdom,2.0,t +42407,100%,Maldives,2.0,t +43294,100%,Isle of Man,1.0,f +48071,100%,China,1.0,t +6959,95%,Slovakia (Slovak Republic),20.0,t +35204,100%,Niue,1.0,t +9295,100%,Nauru,2.0,f +43144,,,1.0,t +18856,50%,El Salvador,1.0,t +40495,,Qatar,8.0,f +7623,,Somalia,1.0,f +39171,,,2.0,t +12542,98%,Mauritania,19.0,t +3508,,Lebanon,1.0,t +8441,,,2.0,f +8441,,,2.0,f +29475,50%,Niue,1.0,t +10439,,,1.0,t +46691,90%,Uzbekistan,38.0,f +44860,,Isle of Man,2.0,t +28099,,Bosnia and Herzegovina,1.0,t +5340,,French Guiana,2.0,t +5001,,,1.0,f +14437,100%,Uzbekistan,1.0,t +45187,100%,,1.0,f +22383,,Isle of Man,1.0,t +1538,,Kiribati,1.0,f +4119,,Anguilla,1.0,t +5337,88%,Puerto Rico,1.0,t +31568,,,2.0,f +42407,100%,Maldives,2.0,t +41726,90%,Maldives,2.0,t +45597,,,1.0,t +41681,90%,Malawi,2.0,t +48353,50%,,2.0,t +15159,,Ukraine,1.0,f +17551,,Chile,1.0,f +19580,100%,Uzbekistan,1.0,t +41080,89%,Tonga,10.0,t +33525,0%,,1.0,f +31181,,Marshall Islands,1.0,f +19196,100%,Monaco,2.0,t +1396,,Svalbard & Jan Mayen Islands,1.0,t +11255,93%,Suriname,41.0,f +5660,,,1.0,f +16489,100%,Russian Federation,42.0,t +27543,,Palestinian Territory,1.0,t +41932,100%,,2.0,t +43205,,Bouvet Island (Bouvetoya),2.0,t +40343,100%,Isle of Man,1.0,t +6959,95%,Slovakia (Slovak Republic),20.0,t +19795,100%,Estonia,8.0,f +2819,100%,Congo,1.0,t +43666,50%,Jersey,1.0,t +45374,,French Guiana,2.0,f +6407,0%,Niue,3.0,f +19370,90%,Zimbabwe,3.0,t +22543,100%,,1.0,t +5522,,Mauritania,1.0,f +35304,100%,Tonga,12.0,t +49413,100%,Uzbekistan,1.0,t +35188,92%,,1.0,t +29000,,Saint Helena,1.0,t +4977,100%,Somalia,2.0,f +48111,,,1.0,t +46998,100%,Togo,2.0,f +25418,,Uzbekistan,1.0,f +25192,100%,Barbados,1.0,t +14446,,,1.0,t +23182,,Svalbard & Jan Mayen Islands,1.0,t +13899,,Bahrain,1.0,t +39661,100%,United Kingdom,2.0,t +24429,,Brazil,1.0,f +26066,100%,,2.0,t +16418,100%,Guinea,2.0,f +32601,,Sao Tome and Principe,1.0,f +10722,100%,Tonga,2.0,t +22163,,,1.0,t +37557,100%,Brazil,4.0,t +35318,,Afghanistan,1.0,f +37834,,Russian Federation,1.0,f +37918,,El Salvador,3.0,t +6808,100%,Anguilla,2.0,t +10244,100%,Philippines,10.0,f +39551,,Nicaragua,1.0,t +19294,50%,Lebanon,2.0,f +2117,,Guinea,1.0,t +46231,,Russian Federation,1.0,t +7624,,Nicaragua,1.0,f +37882,100%,Bouvet Island (Bouvetoya),2.0,f +12568,100%,Barbados,2.0,f +18103,100%,Niue,1.0,f +42312,100%,Guinea,1.0,f +40892,,,2.0,f +25416,,Estonia,1.0,f +46237,100%,,2.0,t +49078,,Turks and Caicos Islands,1.0,f +47105,100%,Vanuatu,2.0,t +37056,100%,Jersey,1.0,t +17320,100%,Reunion,1.0,t +1459,,Afghanistan,1.0,f +23234,100%,Marshall Islands,1.0,f +37764,100%,Svalbard & Jan Mayen Islands,3.0,f +19031,100%,Guinea,1.0,t +18625,,French Guiana,1.0,t +35375,,,1.0,f +3249,,French Guiana,1.0,t +5936,,French Guiana,1.0,f +20950,,,1.0,t +44934,100%,Philippines,17.0,f +29710,,,1.0,t +4888,100%,,1.0,f +8679,,China,2.0,f +20545,,Estonia,1.0,f +2678,100%,Anguilla,3.0,f +9031,50%,,1.0,f +32107,,,1.0,t +46341,100%,Lebanon,1.0,t +19032,67%,Russian Federation,4.0,f +46,,Estonia,2.0,t +24016,100%,Bosnia and Herzegovina,29.0,f +11212,,Nicaragua,1.0,f +39498,,Tonga,1.0,f +20677,,Russian Federation,1.0,t +32447,,Andorra,1.0,f +21801,88%,Isle of Man,1.0,t +395,,Estonia,1.0,f +31700,100%,Portugal,1.0,f +30609,100%,Turks and Caicos Islands,3.0,f +36253,100%,Nauru,21.0,t +35610,62%,Fiji,8.0,f +14854,,Tonga,1.0,f +38382,,Sao Tome and Principe,2.0,t +23524,100%,Djibouti,2.0,t +13040,100%,Jersey,1.0,t +24553,100%,Jersey,1.0,t +16680,,Chad,1.0,f +48954,100%,Montserrat,8.0,t +19128,100%,Uzbekistan,12.0,t +35908,,,1.0,t +40490,100%,Vanuatu,2.0,t +48881,,French Guiana,2.0,t +3292,,Croatia,1.0,t +43152,100%,Nicaragua,82.0,t +6846,,,1.0,t +40495,,Qatar,8.0,f +27121,,Russian Federation,1.0,t +46691,90%,Uzbekistan,38.0,f +9713,100%,Uzbekistan,1.0,t +45610,100%,Sao Tome and Principe,1.0,t +23633,,Lebanon,1.0,t +18089,,Monaco,1.0,t +39879,80%,Guinea,2.0,t +39089,,Denmark,2.0,f +6959,95%,Slovakia (Slovak Republic),20.0,t +8679,,China,2.0,f +39275,67%,,1.0,f +25273,90%,,1.0,t +5036,100%,Niue,1.0,t +29989,100%,Marshall Islands,2.0,t +7464,,Marshall Islands,1.0,t +29832,100%,Sao Tome and Principe,1.0,t +26099,99%,Reunion,15.0,f +38744,,,1.0,f +11255,93%,Suriname,41.0,f +21684,,,1.0,f +10722,100%,Tonga,2.0,t +21499,,,1.0,t +11607,100%,Croatia,2.0,t +31312,,Guinea,1.0,f +37543,,San Marino,1.0,t +39964,,Sao Tome and Principe,1.0,f +42664,,,1.0,f +41943,0%,Guinea,2.0,f +34306,91%,Wallis and Futuna,30.0,t +8235,,Kenya,2.0,f +8235,,Kenya,2.0,f +34246,,Faroe Islands,1.0,f +43364,100%,Croatia,1.0,t +8670,,Uzbekistan,1.0,t +44934,100%,Philippines,17.0,f +14695,100%,Turkmenistan,3.0,t +42613,,Monaco,1.0,f +42571,100%,Tanzania,1.0,t +6842,,,1.0,f +15777,,,1.0,f +14114,100%,Micronesia,3.0,t +37920,70%,,17.0,t +49553,,Uzbekistan,1.0,t +32844,,Malta,1.0,f +17898,,,1.0,f +34920,,,1.0,f +47562,100%,Guinea,1.0,t +44583,100%,Anguilla,2.0,t +10654,,Wallis and Futuna,3.0,t +43503,,French Guiana,1.0,t +7198,100%,Isle of Man,4.0,f +33953,,,1.0,t +32576,,Barbados,1.0,t +45345,,Sao Tome and Principe,1.0,t +35740,60%,Cocos (Keeling) Islands,1.0,t +21246,100%,Kiribati,1.0,t +37920,70%,,17.0,t +41790,75%,Togo,1.0,t +19120,100%,Peru,1.0,t +23070,,,2.0,f +12943,,Estonia,1.0,f +46834,,Malta,1.0,f +34931,100%,Gibraltar,2.0,t +47102,100%,,1.0,f +24563,90%,Pakistan,3.0,f +15244,,Greenland,1.0,f +17989,50%,Niue,1.0,t +26904,100%,Uganda,1.0,t +6959,95%,Slovakia (Slovak Republic),20.0,t +19755,,Bosnia and Herzegovina,1.0,t +18656,,Sao Tome and Principe,1.0,t +7520,100%,Ukraine,15.0,t +43497,100%,Micronesia,2.0,t +13949,,Kenya,1.0,f +34487,100%,Malta,2.0,f +36350,100%,Niger,1.0,t +25189,100%,,1.0,t +20037,,Kenya,2.0,t +25943,,Lebanon,2.0,t +17074,100%,,1.0,f +11540,,French Guiana,1.0,t +8434,100%,Cuba,7.0,f +31982,,Uruguay,1.0,f +33758,100%,Senegal,1.0,f +11616,100%,Uzbekistan,12.0,t +30827,100%,Togo,1.0,f +1690,50%,Uganda,2.0,f +22795,,El Salvador,1.0,t +15818,,,1.0,t +47166,100%,Chad,1.0,t +22286,100%,,2.0,f +47394,,Russian Federation,1.0,f +3434,,,1.0,f +25696,100%,Korea,1.0,t +22718,100%,,1.0,t +24074,,,1.0,t +48725,,Rwanda,1.0,t +39355,80%,Zimbabwe,2.0,t +17216,100%,Ecuador,2.0,t +35313,100%,,2.0,f +2925,,,1.0,t +27651,100%,Malta,1.0,f +5327,100%,Togo,5.0,t +33115,,United Kingdom,1.0,f +10292,100%,,1.0,t +39603,100%,Russian Federation,2.0,f +39603,100%,Russian Federation,2.0,f +1827,100%,Uzbekistan,3.0,t +35696,,,3.0,t +38386,,Russian Federation,1.0,t +3991,,France,1.0,f +4679,,,1.0,t +6959,95%,Slovakia (Slovak Republic),20.0,t +6959,95%,Slovakia (Slovak Republic),20.0,t +27740,100%,United Kingdom,6.0,t +27740,100%,United Kingdom,6.0,t +24111,75%,Nicaragua,1.0,f +29029,,Lebanon,1.0,t +1145,,,1.0,t +9618,100%,,1.0,f +37064,,Malta,1.0,t +37103,,Cocos (Keeling) Islands,1.0,f +37696,,Micronesia,1.0,t +2177,100%,,4.0,t +11870,100%,El Salvador,1.0,t +38012,,,1.0,t +19382,100%,,1.0,t +48716,,,3.0,f +16587,,Cocos (Keeling) Islands,2.0,f +40754,0%,,2.0,t +33699,100%,Palestinian Territory,1.0,f +9574,100%,,1.0,t +6569,,Holy See (Vatican City State),1.0,f +39901,55%,Ukraine,1.0,f +46,,Estonia,2.0,t +11616,100%,Uzbekistan,12.0,t +50056,100%,United Kingdom,1.0,f +17156,,Turkmenistan,1.0,t +41840,100%,Niue,1.0,f +7847,100%,Marshall Islands,2.0,t +6340,57%,Ukraine,1.0,t +32711,,Micronesia,1.0,t +27306,100%,Kiribati,2.0,f +12671,,,1.0,f +27445,80%,Holy See (Vatican City State),2.0,f +27445,80%,Holy See (Vatican City State),2.0,f +37510,100%,Zimbabwe,1.0,t +36980,100%,Niue,3.0,t +34176,,Mauritania,1.0,f +43152,100%,Nicaragua,82.0,t +47786,,,1.0,t +9304,,,, +14314,,Guinea,1.0,t +2222,67%,Malawi,1.0,t +40132,100%,Lebanon,1.0,t +30463,,,2.0,f +25596,100%,Maldives,1.0,t +35538,,Malawi,1.0,f +20411,100%,Pakistan,4.0,t +46459,,Rwanda,1.0,t +2287,100%,Sao Tome and Principe,1.0,f +38276,33%,Canada,2.0,t +30962,100%,Jersey,2.0,t +40626,93%,United Kingdom,5.0,t +143,,Bouvet Island (Bouvetoya),1.0,t +21478,,Malta,1.0,t +19815,,Chad,1.0,f +12318,,French Guiana,2.0,t +9619,,,1.0,f +25007,50%,Zimbabwe,1.0,t +26241,100%,Ecuador,2.0,t +30962,100%,Jersey,2.0,t +27972,94%,Brazil,27.0,f +27972,94%,Brazil,27.0,f +12148,,Bosnia and Herzegovina,2.0,t +1339,,El Salvador,1.0,f +44791,100%,Costa Rica,2.0,t +30955,,,1.0,f +4763,,Uruguay,2.0,f +21306,,Chile,1.0,t +20120,100%,Wallis and Futuna,10.0,f +12842,,,1.0,f +18241,100%,Fiji,2.0,f +36667,,Niue,1.0,f +43845,,,1.0,t +944,,Vietnam,7.0,t +2758,100%,,1.0,t +14453,100%,Malawi,1.0,t +34841,100%,Zimbabwe,22.0,t +23922,100%,Malta,1.0,f +32637,,Nauru,1.0,f +47369,100%,Marshall Islands,4.0,t +45590,100%,Turkmenistan,2.0,t +1916,,Tonga,1.0,f +37646,100%,Estonia,60.0,f +37646,100%,Estonia,60.0,f +37646,100%,Estonia,60.0,f +19614,100%,Tonga,5.0,t +37727,100%,Chad,1.0,t +16582,,Puerto Rico,1.0,t +33621,,Lebanon,1.0,t +13950,100%,Niue,3.0,f +39611,100%,Vanuatu,1.0,f +6621,100%,French Guiana,1.0,t +40075,93%,Denmark,2.0,t +15977,,Denmark,1.0,t +25080,,Uzbekistan,1.0,f +48455,89%,Uzbekistan,20.0,t +392,,,1.0,f +28153,,,1.0,f +27436,,Croatia,2.0,f +19400,100%,Gibraltar,7.0,f +10996,100%,Russian Federation,3.0,t +43152,100%,Nicaragua,82.0,t +43483,100%,,1.0,t +48455,89%,Uzbekistan,20.0,t +39415,,Kenya,5.0,t +1939,100%,Andorra,2.0,t +13568,,Guinea,1.0,f +43589,,Faroe Islands,2.0,t +14114,100%,Micronesia,3.0,t +12543,,Uzbekistan,3.0,t +31857,,,1.0,f +48548,,Denmark,1.0,f +34306,91%,Wallis and Futuna,30.0,t +34511,,Guinea,1.0,t +8088,100%,Marshall Islands,1.0,t +15908,100%,Guinea,2.0,t +6536,100%,Malta,3.0,t +31332,100%,Gambia,3.0,t +9273,100%,Tonga,1.0,t +5853,,Kiribati,1.0,t +41288,100%,Nicaragua,3.0,f +36665,100%,Tunisia,2.0,f +50043,100%,Monaco,1.0,t +39517,,Chad,1.0,f +20448,,,1.0,f +4997,100%,Jersey,6.0,f +38770,,Niue,1.0,f +9740,,,1.0,t +23412,0%,Gambia,1.0,t +3619,100%,Uzbekistan,2.0,t +33760,,Chad,1.0,t +11131,,Maldives,1.0,t +44989,100%,Mauritania,8.0,t +9507,25%,Sierra Leone,5.0,t +44934,100%,Philippines,17.0,f +9799,100%,,1.0,t +3480,100%,United Kingdom,2.0,f +32414,,Venezuela,1.0,t +35552,,Cape Verde,1.0,t +5555,100%,Denmark,11.0,t +6168,,Bouvet Island (Bouvetoya),14.0,t +27782,,Isle of Man,1.0,t +22571,,Venezuela,1.0,f +37746,100%,Malta,1.0,t +41348,,,1.0,f +37998,100%,Monaco,2.0,t +25355,100%,Puerto Rico,1.0,f +43531,,Nicaragua,1.0,t +23750,,Jersey,1.0,f +44935,,Russian Federation,1.0,f +16123,,Niue,1.0,f +588,100%,Marshall Islands,2.0,t +27489,100%,Canada,2.0,t +33057,,,1.0,f +45301,,China,1.0,t +23262,100%,Lebanon,1.0,t +24257,80%,,1.0,t +30114,96%,Djibouti,2.0,f +47972,67%,Sudan,6.0,t +44994,100%,France,1.0,f +31256,,Nicaragua,1.0,t +38412,0%,Afghanistan,1.0,f +588,100%,Marshall Islands,2.0,t +5263,92%,Sao Tome and Principe,1.0,t +548,100%,,3.0,f +39439,,Maldives,1.0,f +32687,90%,Fiji,1.0,t +1430,100%,,1.0,t +5578,,Croatia,1.0,t +10483,,Netherlands,2.0,t +36791,89%,Vietnam,1.0,t +50038,100%,Marshall Islands,4.0,t +1418,,Vanuatu,1.0,f +39388,0%,,2.0,t +35068,100%,France,3.0,t +26575,100%,Netherlands,2.0,f +18721,100%,Brazil,1.0,t +35916,100%,Malta,1.0,f +21356,,Kenya,1.0,t +23990,100%,Saint Helena,2.0,f +19954,100%,Uruguay,3.0,t +19651,100%,,1.0,f +27962,,Nauru,2.0,t +1035,,,1.0,t +31725,,Montserrat,2.0,t +43058,,France,1.0,f +45612,50%,,1.0,t +33352,,Nicaragua,1.0,f +43679,,Uganda,1.0,t +19614,100%,Tonga,5.0,t +19614,100%,Tonga,5.0,t +30463,,,2.0,f +45750,100%,,1.0,t +13222,,Netherlands,1.0,t +29227,,Gibraltar,3.0,f +35406,87%,Indonesia,3.0,f +20763,,Marshall Islands,2.0,t +6743,67%,,1.0,f +30785,100%,Jersey,1.0,t +33227,,,2.0,t +11309,,Somalia,1.0,f +23053,90%,,1.0,t +31126,50%,Micronesia,1.0,f +4373,,Denmark,1.0,t +34479,,Tonga,1.0,f +35746,,Russian Federation,1.0,t +18173,100%,Barbados,5.0,t +15464,,Bosnia and Herzegovina,1.0,t +1297,100%,,1.0,t +25052,64%,,5.0,t +19501,,Uzbekistan,1.0,t +35781,,,1.0,t +30160,,Niue,1.0,f +41316,,Ghana,3.0,f +20700,,Rwanda,1.0,f +25056,100%,Gibraltar,1.0,t +16798,100%,Saint Helena,2.0,t +27873,100%,Kenya,1.0,t +33329,,Holy See (Vatican City State),1.0,f +31365,,,1.0,f +16089,83%,Maldives,5.0,f +44956,100%,Gambia,3.0,t +10389,,Chad,1.0,f +28357,91%,Turkmenistan,1.0,t +16532,100%,Zimbabwe,1.0,t +33628,,Gambia,1.0,t +49398,88%,Barbados,18.0,t +40021,100%,,1.0,f +20326,,Barbados,1.0,t +2019,100%,Malta,7.0,f +28838,,,1.0,t +11237,,French Guiana,1.0,t +22806,100%,Faroe Islands,1.0,f +43475,,Kiribati,2.0,t +34841,100%,Zimbabwe,22.0,t +24575,,Portugal,1.0,f +11188,100%,Uzbekistan,2.0,t +29227,,Gibraltar,3.0,f +5555,100%,Denmark,11.0,t +6232,,Guinea,15.0,t +31803,,,1.0,t +13627,,,1.0,t +31887,,Rwanda,2.0,f +30360,0%,Moldova,1.0,f +13883,100%,Mauritania,1.0,t +11382,,Kenya,1.0,f +17100,,Isle of Man,1.0,f +49085,0%,United Kingdom,1.0,t +19729,,Mauritania,1.0,t +48412,,Croatia,1.0,t +11546,100%,Uzbekistan,1.0,t +1589,,,1.0,f +18768,100%,Libyan Arab Jamahiriya,2.0,f +37557,100%,Brazil,4.0,t +45421,100%,Niue,1.0,f +47754,0%,,1.0,f +38734,100%,,1.0,t +18806,100%,Vietnam,6.0,t +44626,90%,Niue,1.0,t +8940,,Christmas Island,1.0,f +11663,,Brazil,1.0,f +16583,,,1.0,t +37441,100%,Vietnam,12.0,t +3471,100%,,2.0,t +38265,100%,Montserrat,3.0,t +35195,,Faroe Islands,4.0,t +2971,100%,Ecuador,1.0,t +38265,100%,Montserrat,3.0,t +41100,100%,Croatia,2.0,t +30752,,Guinea,1.0,t +6235,80%,Niue,2.0,t +40210,100%,French Guiana,1.0,t +33965,,Andorra,1.0,t +35195,,Faroe Islands,4.0,t +33144,,Djibouti,3.0,t +22229,100%,Afghanistan,3.0,t +39722,,Indonesia,1.0,t +29894,,Guernsey,1.0,t +16214,,Russian Federation,1.0,t +38467,,,1.0,f +41752,,,1.0,f +3090,,,1.0,f +8484,100%,Monaco,17.0,t +40389,100%,Guinea,2.0,f +24990,100%,Anguilla,3.0,t +9935,,Gambia,1.0,t +2535,100%,France,2.0,t +35195,,Faroe Islands,4.0,t +34372,100%,Denmark,1.0,t +28134,,Guernsey,1.0,t +2019,100%,Malta,7.0,f +27570,,Estonia,1.0,t +13426,,,1.0,f +32860,100%,Holy See (Vatican City State),2.0,f +28882,100%,Tonga,1.0,f +22577,100%,Kiribati,1.0,t +17111,,Maldives,1.0,f +43977,,Bosnia and Herzegovina,1.0,t +38670,60%,,1.0,t +49201,71%,,1.0,t +40368,100%,,2.0,f +20971,100%,Montserrat,1.0,f +26992,100%,Netherlands,3.0,t +15858,33%,,1.0,f +6970,100%,Ukraine,2.0,f +34211,,Uzbekistan,2.0,t +22517,100%,Mexico,1.0,t +32582,83%,,3.0,f +9533,,Senegal,16.0,t +35710,,Turks and Caicos Islands,1.0,f +42970,,Isle of Man,1.0,f +6823,100%,Denmark,1.0,t +35313,100%,,2.0,f +49264,,Kiribati,4.0,t +49934,100%,Liberia,9.0,t +42074,,,1.0,t +32798,,French Guiana,1.0,f +14879,,,1.0,f +36447,100%,Russian Federation,1.0,t +43164,,,1.0,f +42417,100%,,3.0,t +31332,100%,Gambia,3.0,t +39163,,Russian Federation,1.0,f +42405,67%,Indonesia,3.0,f +40967,,,1.0,t +16299,,Chad,1.0,f +4576,100%,French Guiana,1.0,t +47805,,Malta,1.0,f +10235,,Reunion,1.0,t +38794,100%,Micronesia,2.0,t +22695,97%,Pakistan,6.0,t +30072,100%,Micronesia,1.0,t +22402,,China,3.0,t +14516,,Marshall Islands,1.0,f +4865,,Cocos (Keeling) Islands,1.0,f +36131,100%,Bouvet Island (Bouvetoya),6.0,f +16282,60%,Turkmenistan,9.0,t +19234,100%,,1.0,f +35765,,Croatia,1.0,f +46337,,Chad,2.0,t +12867,100%,Bosnia and Herzegovina,1.0,t +26644,,,1.0,f +27437,,Niue,1.0,t +40810,,Malawi,1.0,f +44668,,Guinea,1.0,f +16282,60%,Turkmenistan,9.0,t +16282,60%,Turkmenistan,9.0,t +39763,100%,France,1.0,t +16282,60%,Turkmenistan,9.0,t +16282,60%,Turkmenistan,9.0,t +2177,100%,,4.0,t +2177,100%,,4.0,t +7520,100%,Ukraine,15.0,t +16282,60%,Turkmenistan,9.0,t +48455,89%,Uzbekistan,20.0,t +25208,100%,,1.0,t +34369,,Malta,1.0,t +47643,100%,Holy See (Vatican City State),1.0,f +29048,,Lithuania,1.0,f +43457,100%,Croatia,1.0,t +39669,100%,Niue,5.0,t +73,,Svalbard & Jan Mayen Islands,1.0,t +33941,100%,Chad,2.0,t +24915,,Niue,1.0,f +17155,,,1.0,t +23637,,Zimbabwe,1.0,f +23387,100%,,2.0,t +23639,100%,El Salvador,2.0,f +29443,,Malawi,1.0,t +36253,100%,Nauru,21.0,t +27624,,,1.0,t +31074,100%,Malta,4.0,t +37295,,United Kingdom,1.0,f +1956,100%,,1.0,t +692,,Turks and Caicos Islands,1.0,f +47862,100%,Nicaragua,1.0,t +33980,100%,Lithuania,2.0,t +17899,100%,United Kingdom,2.0,t +46050,100%,Venezuela,1.0,f +11165,100%,Jersey,1.0,t +30202,100%,Svalbard & Jan Mayen Islands,1.0,t +8584,100%,Costa Rica,7.0,t +24355,67%,Micronesia,1.0,t +41543,,Uzbekistan,1.0,f +31824,100%,Madagascar,2.0,t +988,,Uruguay,1.0,t +3626,,,1.0,f +21406,,,1.0,t +42068,,Estonia,2.0,f +10460,100%,Malta,1.0,f +45693,100%,Lebanon,1.0,t +16681,100%,,1.0,f +44154,,Lebanon,1.0,f +32003,100%,Brazil,5.0,f +5199,100%,Suriname,1.0,f +23990,100%,Saint Helena,2.0,f +4604,83%,Niue,3.0,f +45919,100%,Montserrat,9.0,t +20751,100%,Lithuania,2.0,f +3223,100%,Kenya,1.0,t +15137,100%,Marshall Islands,10.0,t +41474,,Turkmenistan,2.0,t +24851,100%,Isle of Man,1.0,t +30047,100%,Isle of Man,1.0,t +30550,,,1.0,f +2660,,Uzbekistan,2.0,f +33271,,Mauritania,1.0,t +6766,,Kenya,1.0,f +812,100%,Uganda,1.0,f +1928,100%,Nicaragua,1.0,t +34099,100%,Micronesia,1.0,t +28853,,Micronesia,1.0,f +15423,,Zimbabwe,1.0,t +19565,,French Guiana,1.0,t +10244,100%,Philippines,10.0,f +32397,100%,Australia,1.0,f +25375,,,1.0,f +41832,78%,United Kingdom,1.0,f +14953,100%,Bouvet Island (Bouvetoya),4.0,t +2218,,,1.0,t +30408,100%,,1.0,t +37118,,,1.0,t +14160,90%,Slovakia (Slovak Republic),4.0,t +42968,,Afghanistan,1.0,f +31239,100%,Mauritania,1.0,f +48186,100%,,1.0,t +26293,,,3.0,f +36868,100%,Chile,1.0,t +7772,100%,,1.0,f +18577,100%,Kenya,1.0,f +3593,100%,Rwanda,1.0,t +7181,,Russian Federation,1.0,f +11558,,France,2.0,t +36253,100%,Nauru,21.0,t +17749,100%,Afghanistan,1.0,t +17272,,,1.0,f +32291,,El Salvador,1.0,f +11255,93%,Suriname,41.0,f +49264,,Kiribati,4.0,t +36217,90%,Monaco,1.0,t +778,100%,Liechtenstein,11.0,t +9798,,Mauritania,2.0,t +26380,100%,Uzbekistan,2.0,f +43959,100%,Tunisia,3.0,t +39390,100%,Bosnia and Herzegovina,1.0,t +36184,,,1.0,t +16939,,Senegal,11.0,t +9766,,Maldives,2.0,t +4377,,,1.0,t +17204,,,1.0,t +39018,,Lebanon,1.0,t +17346,,Gambia,1.0,t +25325,60%,,1.0,t +11766,,Faroe Islands,1.0,f +26617,100%,Barbados,1.0,f +10707,100%,Somalia,3.0,t +11255,93%,Suriname,41.0,f +11255,93%,Suriname,41.0,f +13571,100%,,1.0,t +19862,100%,Spain,1.0,t +43376,,Russian Federation,1.0,t +31141,,Niger,1.0,t +46206,,Monaco,1.0,t +42475,100%,Malta,2.0,t +48343,,Canada,1.0,f +23206,,Guernsey,1.0,t +16939,,Senegal,11.0,t +16939,,Senegal,11.0,t +6959,95%,Slovakia (Slovak Republic),20.0,t +7310,,Uruguay,1.0,t +38626,,Micronesia,1.0,f +32523,,Uganda,1.0,f +16205,,Marshall Islands,1.0,t +24030,,Isle of Man,1.0,t +14832,100%,Vanuatu,1.0,f +16939,,Senegal,11.0,t +28543,,,1.0,t +25501,,Niue,1.0,t +31525,50%,,1.0,t +16939,,Senegal,11.0,t +8142,100%,Gambia,4.0,t +24762,100%,,2.0,t +24129,100%,Nicaragua,2.0,f +23448,,Vanuatu,1.0,t +17658,,Gibraltar,1.0,t +30434,100%,Lebanon,1.0,t +5237,,Cocos (Keeling) Islands,1.0,f +22170,,,1.0,t +1237,,Congo,1.0,t +25288,50%,Tanzania,1.0,f +9945,100%,Maldives,2.0,t +45034,,Isle of Man,1.0,t +3970,40%,,2.0,f +4977,100%,Somalia,2.0,f +9942,,Vanuatu,1.0,t +19494,,Sao Tome and Principe,3.0,t +1209,,Maldives,1.0,t +9886,,Reunion,1.0,t +12715,100%,Estonia,29.0,f +5617,,Finland,1.0,f +10992,,Togo,2.0,t +27503,,Lebanon,1.0,t +1527,,,1.0,t +23342,100%,,1.0,t +36432,,Kenya,1.0,t +35951,,Holy See (Vatican City State),1.0,f +48086,,Guinea,1.0,t +28425,100%,Guinea,3.0,t +29120,,Brazil,1.0,f +4899,,Mauritania,1.0,t +1970,,Isle of Man,1.0,t +46654,100%,Tunisia,1.0,t +30464,,,1.0,t +43622,,Maldives,1.0,f +47526,,Croatia,3.0,f +39660,,Anguilla,1.0,f +5566,100%,Russian Federation,1.0,t +33295,,Tonga,2.0,t +29728,,Uruguay,1.0,f +43770,,Rwanda,1.0,t +23094,,Canada,1.0,f +16264,,,1.0,t +32913,,,1.0,t +1726,93%,Isle of Man,9.0,t +20586,,Niue,1.0,t +15897,100%,,1.0,f +34716,,,1.0,f +36364,,Uruguay,1.0,f +31684,,Niue,1.0,t +15748,,French Guiana,1.0,t +36663,,Ghana,5.0,t +39857,100%,Cocos (Keeling) Islands,1.0,t +1876,,Palestinian Territory,1.0,t +7128,,Tanzania,1.0,f +1689,,,1.0,t +10644,,Guernsey,4.0,t +34894,,Russian Federation,1.0,t +39057,100%,Jersey,2.0,t +26552,,Croatia,1.0,t +21273,80%,Marshall Islands,2.0,t +32063,100%,Niue,2.0,t +23853,,,1.0,t +2566,100%,,1.0,t +22522,100%,France,3.0,t +31209,,,1.0,t +42558,,Russian Federation,1.0,f +9917,,Maldives,1.0,t +46682,,Philippines,3.0,f +40062,100%,Micronesia,2.0,f +28550,,Ecuador,1.0,t +40626,93%,United Kingdom,5.0,t +15018,,,1.0,t +43152,100%,Nicaragua,82.0,t +2019,100%,Malta,7.0,f +47397,,Nauru,1.0,t +21952,100%,Marshall Islands,1.0,t +10608,100%,Monaco,1.0,f +37124,60%,Uzbekistan,1.0,f +42477,90%,Micronesia,2.0,f +918,,,1.0,t +16198,0%,Sao Tome and Principe,1.0,t +34335,100%,Jersey,2.0,t +18693,,,1.0,f +7107,100%,Suriname,4.0,t +25264,,Kenya,1.0,t +9930,,French Guiana,1.0,t +29174,,Saint Helena,1.0,f +28706,,Chad,1.0,t +4915,100%,Russian Federation,1.0,f +34074,,Faroe Islands,2.0,t +689,,Holy See (Vatican City State),1.0,t +6062,100%,Tonga,2.0,t +20247,,Lebanon,1.0,t +19183,,,2.0,t +39870,,Slovakia (Slovak Republic),21.0,t +1058,,Brazil,1.0,t +18846,,Niue,1.0,f +38320,,Costa Rica,2.0,t +29348,,Maldives,1.0,t +29770,100%,Philippines,1.0,t +31260,,,1.0,f +18027,,,1.0,t +19943,63%,Isle of Man,34.0,f +22544,100%,Holy See (Vatican City State),6.0,t +28556,67%,Rwanda,1.0,t +45553,90%,Brazil,16.0,t +14850,,Niue,1.0,f +22460,,China,1.0,t +33701,,Chile,1.0,t +35995,100%,Libyan Arab Jamahiriya,1.0,t +31786,100%,Barbados,2.0,t +26065,,Kenya,1.0,f +3738,,Zimbabwe,1.0,f +7029,,Brazil,1.0,t +32860,100%,Holy See (Vatican City State),2.0,f +30497,100%,Slovakia (Slovak Republic),9.0,t +734,,Lebanon,1.0,t +44627,100%,Cocos (Keeling) Islands,1.0,f +17810,,Rwanda,1.0,t +29845,,Nauru,1.0,t +20693,,Cuba,1.0,f +1736,,Chile,1.0,t +36958,100%,Papua New Guinea,2.0,t +20751,100%,Lithuania,2.0,f +32358,,France,1.0,t +35240,100%,Puerto Rico,4.0,f +8313,,,1.0,t +17665,,,1.0,t +28425,100%,Guinea,3.0,t +27117,100%,,1.0,t +49189,100%,Turks and Caicos Islands,3.0,f +26070,100%,Holy See (Vatican City State),6.0,t +26077,,Mexico,1.0,t +45553,90%,Brazil,16.0,t +47080,100%,Faroe Islands,1.0,t +44097,100%,Solomon Islands,4.0,f +12386,,,1.0,t +11624,,Venezuela,1.0,f +38418,,Isle of Man,1.0,t +19068,,Rwanda,1.0,t +616,100%,Russian Federation,1.0,t +26486,,Croatia,1.0,t +37966,0%,Russian Federation,1.0,f +28231,,,1.0,t +33500,,Tonga,1.0,t +47796,,Bouvet Island (Bouvetoya),1.0,t +10500,,,1.0,f +1051,,Lebanon,1.0,f +46732,33%,Faroe Islands,1.0,f +11749,100%,Isle of Man,1.0,t +50072,100%,Marshall Islands,3.0,t +37264,100%,Croatia,1.0,t +19471,,,1.0,t +30910,,,1.0,t +19681,,,2.0,t +27296,,Vanuatu,1.0,f +17309,,Niue,1.0,t +33427,100%,Switzerland,5.0,t +38964,,Marshall Islands,1.0,t +47332,100%,Netherlands Antilles,1.0,t +15386,,Malta,1.0,f +25359,,,1.0,t +34097,,Malta,1.0,t +25428,,Cook Islands,2.0,f +7547,,,1.0,t +43325,,,1.0,t +45046,,Tunisia,1.0,t +42122,,French Guiana,1.0,t +26297,,Tonga,1.0,f +13241,,Niue,1.0,t +17215,97%,Maldives,9.0,f +17818,100%,Montserrat,2.0,t +30877,80%,Holy See (Vatican City State),2.0,t +12715,100%,Estonia,29.0,f +25104,,,1.0,t +1337,0%,Micronesia,1.0,f +12267,,,1.0,t +34581,,Uzbekistan,1.0,f +11734,100%,,3.0,t +16581,,Guinea,1.0,t +29445,100%,Faroe Islands,4.0,t +29445,100%,Faroe Islands,4.0,t +18790,100%,Indonesia,4.0,f +14028,60%,Guinea,1.0,f +44456,60%,,5.0,t +47263,100%,Russian Federation,1.0,f +9052,,Gambia,1.0,f +36253,100%,Nauru,21.0,t +24339,,,1.0,t +45315,100%,Lebanon,1.0,t +22689,,Croatia,1.0,t +24414,,Nicaragua,1.0,f +28356,,Denmark,1.0,t +16187,,Djibouti,1.0,f +30669,,Niue,1.0,f +27547,,,1.0,t +39850,,,1.0,t +29952,,Zimbabwe,1.0,t +21818,100%,Malta,1.0,f +36038,,Malta,1.0,f +26753,100%,Sao Tome and Principe,1.0,f +17052,,Brazil,1.0,f +16489,100%,Russian Federation,42.0,t +27627,,Peru,1.0,t +30837,100%,,1.0,f +13570,,Turkmenistan,1.0,f +39367,,Chad,1.0,t +25772,100%,Costa Rica,2.0,t +25037,,,1.0,t +1704,,,1.0,t +38214,100%,,1.0,f +7215,,Russian Federation,1.0,t +19521,100%,United Kingdom,3.0,t +6557,,,1.0,f +41703,100%,Nicaragua,1.0,t +5752,,,1.0,t +49564,,Gambia,1.0,t +13622,,Uzbekistan,1.0,f +10638,,French Guiana,1.0,t +22238,100%,Costa Rica,1.0,f +15365,100%,Faroe Islands,3.0,t +41736,,Turkmenistan,1.0,f +13805,,Ecuador,2.0,t +28205,,Iraq,22.0,f +29021,,French Guiana,3.0,t +40160,100%,Faroe Islands,2.0,f +36927,,Chad,1.0,f +16957,,Monaco,2.0,f +82,,French Guiana,1.0,t +40626,93%,United Kingdom,5.0,t +27384,100%,,1.0,f +7579,,Tanzania,1.0,t +42561,,,1.0,f +42886,,Maldives,1.0,f +6075,,,1.0,f +12921,,,1.0,f +4721,,,1.0,t +19391,,Gibraltar,1.0,t +18790,100%,Indonesia,4.0,f +5332,82%,,5.0,t +47290,100%,,2.0,t +28792,100%,Senegal,2.0,t +47290,100%,,2.0,t +33954,,Marshall Islands,1.0,t +2668,,Isle of Man,1.0,f +23521,,Kenya,1.0,f +1562,,,1.0,f +31433,100%,,1.0,t +2953,100%,Palestinian Territory,1.0,t +36944,,Niue,1.0,t +38307,67%,Svalbard & Jan Mayen Islands,1.0,t +25197,100%,Nicaragua,4.0,f +37700,,Croatia,1.0,t +37182,,,2.0,f +10222,100%,,4.0,t +28239,100%,,1.0,t +3263,,Ecuador,1.0,f +6577,,Philippines,1.0,f +14981,,,1.0,f +10562,100%,Zimbabwe,3.0,f +48455,89%,Uzbekistan,20.0,t +36757,,Gambia,1.0,f +25060,100%,Marshall Islands,1.0,f +41565,,,2.0,t +27327,,,1.0,t +33605,100%,Zimbabwe,1.0,t +47807,100%,Lithuania,1.0,f +44382,,Chad,1.0,f +47960,,Marshall Islands,1.0,t +44982,50%,Isle of Man,2.0,t +16260,100%,United Kingdom,4.0,t +45458,100%,,3.0,f +23885,,,1.0,f +7321,,Papua New Guinea,1.0,f +21234,,Sao Tome and Principe,1.0,t +86,,Niue,1.0,t +39415,,Kenya,5.0,t +2767,,Chile,1.0,f +25316,,Guernsey,2.0,f +9283,,,1.0,t +22606,,Chile,2.0,t +22606,,Chile,2.0,t +3061,,Libyan Arab Jamahiriya,2.0,t +18857,,Anguilla,1.0,f +41342,100%,,2.0,f +38956,,Tonga,1.0,f +2498,,United Kingdom,1.0,f +18194,,Senegal,1.0,f +30546,100%,,1.0,f +6336,,,1.0,f +19329,,Tonga,1.0,t +33403,,Niue,1.0,f +25051,100%,Bahrain,1.0,t +40621,,Guinea,1.0,f +28205,,Iraq,22.0,f +16063,,Lebanon,1.0,t +13390,,Turkmenistan,1.0,t +39415,,Kenya,5.0,t +14518,,,1.0,f +10134,100%,Uzbekistan,7.0,t +10290,,,1.0,f +2236,,Anguilla,1.0,f +15601,,Isle of Man,1.0,f +44200,,Uzbekistan,1.0,t +32694,,,1.0,t +30818,,Gambia,1.0,t +28250,,Nicaragua,1.0,t +37634,,Uzbekistan,1.0,t +1424,,Jersey,1.0,t +3457,,United Kingdom,1.0,f +44607,,Niue,1.0,t +1247,,Chile,1.0,t +48697,100%,Niue,1.0,t +5771,98%,Vietnam,8.0,f +19146,100%,,2.0,f +20960,,Turkmenistan,1.0,t +46378,,Mauritania,3.0,t +28347,,Guinea,1.0,f +30153,100%,Anguilla,1.0,t +6071,,Malawi,1.0,t +12061,83%,,2.0,t +5117,33%,Chile,2.0,t +38798,,,1.0,t +2372,,Faroe Islands,1.0,t +23034,99%,Monaco,54.0,f +41133,100%,,2.0,f +44449,100%,El Salvador,2.0,t +41215,,Sao Tome and Principe,1.0,f +12903,,Mexico,1.0,f +19193,,El Salvador,1.0,t +40911,,,1.0,f +36214,100%,,1.0,f +28325,,Niue,1.0,t +35549,,,1.0,t +1930,,,1.0,f +33244,,China,1.0,t +39328,,Sao Tome and Principe,3.0,t +22541,,Marshall Islands,2.0,t +11087,100%,Indonesia,2.0,t +28828,100%,Isle of Man,198.0,t +23948,100%,,2.0,t +43210,,Brazil,1.0,f +2622,,,1.0,t +24888,100%,Estonia,1.0,t +11997,100%,Mauritania,2.0,t +45113,,,1.0,t +48366,100%,Marshall Islands,1.0,f +3415,,Guinea,2.0,t +9407,,Faroe Islands,1.0,f +21415,100%,Turkmenistan,2.0,t +16260,100%,United Kingdom,4.0,t +19085,33%,,1.0,t +45966,,Moldova,1.0,t +20334,99%,Niger,171.0,t +21403,95%,Vietnam,8.0,f +36756,,Indonesia,2.0,t +46263,100%,Nauru,3.0,f +35252,,,1.0,f +9256,,Ghana,1.0,f +9427,100%,Marshall Islands,3.0,f +4318,,Turks and Caicos Islands,1.0,f +14046,100%,Malta,1.0,t +29852,,,1.0,t +4375,,,1.0,t +10033,,Ghana,1.0,t +28828,100%,Isle of Man,198.0,t +18579,,Vietnam,1.0,t +20874,,,1.0,t +25246,100%,Malta,1.0,f +12910,,Maldives,1.0,t +4997,100%,Jersey,6.0,f +29719,,Kiribati,1.0,f +11842,100%,Turks and Caicos Islands,2.0,t +9697,,Turks and Caicos Islands,1.0,t +44262,100%,,1.0,t +5227,100%,Gambia,1.0,f +20419,100%,,1.0,f +24057,,Lithuania,1.0,t +19972,100%,Finland,1.0,t +26387,100%,Isle of Man,6.0,t +7783,,Gambia,1.0,t +49263,90%,Micronesia,3.0,t +939,,Guernsey,1.0,t +16373,100%,Guinea,2.0,t +45871,,,1.0,f +18099,100%,,1.0,t +18956,,Chile,3.0,t +14200,,Maldives,1.0,t +17631,,Peru,1.0,t +46578,100%,Lebanon,6.0,t +38533,,Chile,1.0,t +24523,100%,Puerto Rico,2.0,t +50065,,Brazil,1.0,f +35848,,,1.0,f +33104,,,2.0,t +19119,,,1.0,f +10093,,Russian Federation,1.0,t +47151,80%,,3.0,f +3376,,Nicaragua,8.0,t +37330,100%,French Guiana,1.0,f +12515,,Rwanda,1.0,t +26487,,Isle of Man,2.0,t +48450,100%,Cape Verde,2.0,t +46691,90%,Uzbekistan,38.0,f +34023,100%,Guinea,1.0,t +36238,,,2.0,t +43592,,,1.0,t +22013,100%,Micronesia,4.0,f +6833,,Jersey,1.0,f +25647,,,2.0,t +15802,,Malta,2.0,f +17203,,,1.0,f +11325,0%,Tonga,18.0,f +30685,100%,,1.0,f +33813,100%,Svalbard & Jan Mayen Islands,1.0,t +426,,Faroe Islands,1.0,f +8442,100%,Tunisia,2.0,t +2697,,Svalbard & Jan Mayen Islands,1.0,f +35270,,,2.0,f +22576,,Gambia,1.0,t +16893,100%,Guinea,1.0,t +25062,,,1.0,t +38518,,French Guiana,1.0,t +47157,100%,Niue,1.0,f +38136,,Chad,4.0,f +6959,95%,Slovakia (Slovak Republic),20.0,t +3543,100%,Slovakia (Slovak Republic),4.0,t +47926,,Chad,2.0,f +49143,,Marshall Islands,1.0,t +43986,,,1.0,f +1708,,Monaco,1.0,t +45977,100%,,2.0,f +19943,63%,Isle of Man,34.0,f +43629,70%,Malawi,3.0,f +35454,100%,China,9.0,f +43732,100%,Niue,2.0,t +30512,100%,,4.0,t +30512,100%,,4.0,t +1289,,Uganda,1.0,f +20111,0%,,1.0,f +9891,,,1.0,f +48193,,Micronesia,1.0,t +37704,96%,Fiji,26.0,f +37704,96%,Fiji,26.0,f +41565,,,2.0,t +7578,67%,Denmark,1.0,t +5556,,Tonga,1.0,f +12414,,,1.0,t +25898,,,1.0,t +5077,100%,,2.0,t +22258,,Kenya,2.0,t +22493,,Guinea,1.0,t +46263,100%,Nauru,3.0,f +17895,100%,Holy See (Vatican City State),1.0,t +7987,100%,Chad,2.0,t +3376,,Nicaragua,8.0,t +16213,,,1.0,t +15765,,Zimbabwe,1.0,t +3375,50%,Uzbekistan,2.0,t +30877,80%,Holy See (Vatican City State),2.0,t +2524,100%,Costa Rica,4.0,t +8652,100%,Malawi,2.0,f +32029,100%,Saint Helena,2.0,t +13588,,Isle of Man,1.0,t +42063,,Ecuador,1.0,t +48334,100%,Guinea,12.0,f +48334,100%,Guinea,12.0,f +24999,100%,France,6.0,f +38817,100%,France,4.0,t +42194,,,1.0,t +5691,,,1.0,f +14136,100%,Guinea,1.0,f +48042,,,1.0,f +26377,,Tonga,1.0,f +34313,,Marshall Islands,1.0,f +38803,100%,,1.0,t +33972,100%,Guinea,1.0,f +42136,100%,Vanuatu,2.0,t +39975,100%,,1.0,f +23170,100%,Sao Tome and Principe,2.0,t +15463,,Russian Federation,1.0,f +13313,,,1.0,t +16631,,,1.0,t +47651,90%,Libyan Arab Jamahiriya,1.0,t +43349,,Costa Rica,1.0,t +22910,100%,Gambia,1.0,t +9168,,Monaco,1.0,t +9480,,,1.0,f +24348,,Russian Federation,1.0,t +5976,78%,Libyan Arab Jamahiriya,1.0,f +13138,100%,Faroe Islands,2.0,t +21875,,Guinea,1.0,t +44956,100%,Gambia,3.0,t +7809,100%,Tonga,1.0,t +122,50%,Cuba,1.0,t +48128,,Monaco,1.0,f +6255,100%,,1.0,t +2335,100%,Maldives,1.0,t +16012,0%,,1.0,t +1395,,Chile,1.0,t +7794,100%,Bouvet Island (Bouvetoya),1.0,t +16810,100%,Jersey,1.0,t +17690,,Isle of Man,1.0,t +49360,100%,,1.0,t +11255,93%,Suriname,41.0,f +47177,40%,United Kingdom,1.0,t +42276,,Guernsey,1.0,t +39277,,Russian Federation,1.0,t +1191,98%,,12.0,t +15566,,,1.0,f +6144,100%,Kiribati,2.0,t +35164,,Chad,1.0,f +5863,,Turks and Caicos Islands,1.0,f +3663,56%,,1.0,f +6210,,,1.0,t +40477,,Gambia,1.0,t +3987,100%,Andorra,1.0,t +262,97%,Maldives,16.0,t +262,97%,Maldives,16.0,t +262,97%,Maldives,16.0,t +42978,,Uganda,1.0,t +37883,95%,United Kingdom,3.0,f +44160,,,1.0,f +18635,100%,Tonga,2.0,t +20334,99%,Niger,171.0,t +14961,,Isle of Man,1.0,f +855,100%,Russian Federation,2.0,t +6290,,Barbados,1.0,f +27583,,Brazil,1.0,t +46578,100%,Lebanon,6.0,t +35282,,Gambia,1.0,f +38336,,Isle of Man,1.0,t +5139,,Russian Federation,1.0,t +6959,95%,Slovakia (Slovak Republic),20.0,t +49010,,,2.0,t +6838,96%,Spain,59.0,t +8306,,Faroe Islands,1.0,t +28605,,Croatia,1.0,f +5389,,Niger,2.0,t +26437,,Kiribati,1.0,t +45553,90%,Brazil,16.0,t +16892,100%,Rwanda,1.0,t +10286,,,2.0,f +3667,,Turkmenistan,1.0,t +39602,100%,Gambia,2.0,t +31032,,,2.0,t +44878,,Marshall Islands,1.0,t +4695,,,1.0,t +34282,100%,Philippines,1.0,t +19196,100%,Monaco,2.0,t +39670,,Nauru,1.0,f +8439,97%,Rwanda,17.0,t +41087,,,1.0,f +29822,90%,Brazil,11.0,t +29822,90%,Brazil,11.0,t +49388,100%,Vietnam,4.0,t +4175,100%,Gambia,2.0,t +5591,99%,Indonesia,16.0,t +43286,,Fiji,8.0,t +29822,90%,Brazil,11.0,t +43286,,Fiji,8.0,t +43286,,Fiji,8.0,t +40289,,Niue,1.0,t +28398,100%,El Salvador,7.0,t +41895,,Chad,1.0,t +28398,100%,El Salvador,7.0,t +28398,100%,El Salvador,7.0,t +28398,100%,El Salvador,7.0,t +29822,90%,Brazil,11.0,t +28398,100%,El Salvador,7.0,t +29822,90%,Brazil,11.0,t +16294,,Libyan Arab Jamahiriya,2.0,f +29822,90%,Brazil,11.0,t +29822,90%,Brazil,11.0,t +29822,90%,Brazil,11.0,t +32682,90%,Tunisia,1.0,t +8641,,Tonga,1.0,f +6421,100%,Micronesia,2.0,t +2827,,Jersey,1.0,t +32220,100%,Holy See (Vatican City State),2.0,f +45069,100%,,1.0,t +39011,,Chad,1.0,f +4234,100%,Malawi,1.0,t +15555,,Gibraltar,1.0,t +15082,,Croatia,1.0,f +12517,,Lebanon,3.0,t +21711,,Estonia,1.0,f +28747,100%,,5.0,t +202,,Niue,1.0,f +16492,67%,Marshall Islands,1.0,f +14062,100%,,1.0,f +47840,,Somalia,1.0,t +30512,100%,,4.0,t +17688,100%,Sao Tome and Principe,2.0,t +35341,,Mauritania,1.0,t +3165,100%,Gibraltar,1.0,f +31419,70%,Zimbabwe,1.0,f +49651,,Marshall Islands,1.0,t +11087,100%,Indonesia,2.0,t +26847,,Saint Helena,2.0,t +28205,,Iraq,22.0,f +8649,,Croatia,1.0,f +47764,,Nicaragua,1.0,f +28747,100%,,5.0,t +1275,,Faroe Islands,1.0,t +46150,,,2.0,f +44545,83%,Peru,1.0,t +22843,0%,,1.0,t +13166,,Ecuador,1.0,t +37555,,,1.0,t +28591,,Marshall Islands,1.0,f +5511,100%,Grenada,1.0,f +1033,,,2.0,t +2899,,,1.0,t +7520,100%,Ukraine,15.0,t +4216,,Cuba,9.0,t +18956,,Chile,3.0,t +34306,91%,Wallis and Futuna,30.0,t +15080,100%,Venezuela,3.0,f +5327,100%,Togo,5.0,t +29227,,Gibraltar,3.0,f +38716,,Estonia,1.0,f +28554,100%,Anguilla,2.0,t +29388,,Kiribati,1.0,f +13512,,Niue,1.0,t +44182,,Sao Tome and Principe,2.0,t +39165,100%,Bouvet Island (Bouvetoya),2.0,t +31001,100%,,5.0,t +25766,75%,Chile,1.0,t +31483,,Uganda,1.0,f +19279,,Monaco,2.0,f +47151,80%,,3.0,f +24221,100%,Guinea,1.0,t +38211,100%,Maldives,4.0,t +42078,,French Guiana,1.0,f +25123,100%,Papua New Guinea,1.0,t +49407,,Mauritania,1.0,t +28943,,Isle of Man,1.0,t +15544,,Lebanon,1.0,t +34264,100%,Sao Tome and Principe,1.0,f +8446,100%,,4.0,t +28644,,Anguilla,1.0,f +7433,,Guinea,1.0,t +16447,100%,Brazil,2.0,t +31328,100%,,17.0,t +18956,,Chile,3.0,t +15634,,Russian Federation,1.0,f +16203,,,1.0,t +4907,100%,Lebanon,2.0,t +43274,,France,1.0,t +49810,,Mauritania,1.0,t +6700,100%,Guinea,7.0,f +17911,,Sao Tome and Principe,1.0,f +45175,,Chad,1.0,t +4555,,Mauritania,1.0,t +48972,,Marshall Islands,1.0,f +4907,100%,Lebanon,2.0,t +39488,,,1.0,t +5600,100%,Uzbekistan,1.0,t +6421,100%,Micronesia,2.0,t +30249,100%,,1.0,t +27097,,,1.0,f +18443,,,1.0,t +34841,100%,Zimbabwe,22.0,t +1544,100%,Guernsey,1.0,f +36285,100%,Isle of Man,2.0,t +29507,100%,Russian Federation,2.0,t +12168,50%,Anguilla,1.0,f +6367,,France,1.0,f +21377,100%,French Guiana,4.0,t +32696,,Niue,1.0,f +34971,,Faroe Islands,1.0,f +35337,100%,Nicaragua,1.0,f +21377,100%,French Guiana,4.0,t +5643,,Tonga,1.0,t +15011,,Lebanon,1.0,t +30507,100%,Marshall Islands,1.0,t +30944,,,1.0,f +32850,,Uganda,1.0,f +32313,100%,Lebanon,1.0,t +21377,100%,French Guiana,4.0,t +29121,,Kenya,2.0,t +13875,,Isle of Man,1.0,f +31934,100%,,1.0,f +446,100%,,1.0,t +13066,,French Guiana,1.0,t +35783,,Afghanistan,1.0,f +36743,,Gambia,1.0,t +48201,,Anguilla,1.0,f +45880,,,1.0,t +30874,,Mexico,1.0,t +4216,,Cuba,9.0,t +24369,,Sao Tome and Principe,2.0,t +43529,100%,,3.0,t +7679,100%,Niger,4.0,t +8472,67%,,2.0,t +41670,,Somalia,1.0,t +1585,,Bosnia and Herzegovina,2.0,f +32967,,,1.0,f +37969,80%,Indonesia,3.0,f +41859,100%,Finland,2.0,f +33566,,Kenya,1.0,t +24369,,Sao Tome and Principe,2.0,t +2572,,,1.0,t +34051,,France,1.0,t +4454,100%,Gambia,1.0,t +33919,,,2.0,t +18713,,,1.0,t +44470,,Chad,1.0,t +17215,97%,Maldives,9.0,f +1785,100%,Libyan Arab Jamahiriya,1.0,t +5034,100%,Rwanda,1.0,f +35662,,Jersey,1.0,f +19964,100%,Reunion,1.0,f +15440,,Zimbabwe,1.0,t +15539,,Venezuela,1.0,f +42994,100%,Marshall Islands,1.0,f +14708,,Nicaragua,1.0,f +43925,,,1.0,t +41288,100%,Nicaragua,3.0,f +37644,100%,Mauritania,1.0,t +26678,,,1.0,t +42526,100%,Niue,1.0,t +17215,97%,Maldives,9.0,f +45925,,Kenya,1.0,t +49049,50%,Nauru,1.0,f +19524,100%,,1.0,f +46757,,Maldives,1.0,t +43254,,Turkmenistan,1.0,t +20169,100%,Niue,2.0,f +42321,,,1.0,t +8472,67%,,2.0,t +36909,100%,Brazil,4.0,t +17326,70%,Croatia,2.0,f +5277,100%,Vietnam,10.0,f +22794,50%,Cape Verde,36.0,t +27346,,,1.0,t +28554,100%,Anguilla,2.0,t +12328,100%,Uzbekistan,1.0,f +18608,100%,Jersey,4.0,t +18608,100%,Jersey,4.0,t +18608,100%,Jersey,4.0,t +3211,,Guinea,1.0,t +16854,100%,El Salvador,2.0,t +6233,80%,Pakistan,3.0,f +907,100%,,1.0,f +24062,,Estonia,1.0,f +40516,,Niue,1.0,t +47118,,Cape Verde,1.0,f +21017,,Barbados,1.0,f +38545,,Kiribati,1.0,t +44903,,Chad,1.0,f +20589,,Philippines,1.0,t +33914,100%,Zimbabwe,2.0,t +20189,100%,Niger,4.0,f +40396,,Russian Federation,1.0,f +29620,0%,,1.0,t +42730,100%,Greenland,3.0,t +11992,,Denmark,1.0,f +21784,,Kiribati,1.0,t +13025,,,1.0,f +39870,,Slovakia (Slovak Republic),21.0,t +18945,,Nicaragua,1.0,f +6345,,,1.0,f +46933,100%,Croatia,1.0,t +13824,100%,Turks and Caicos Islands,2.0,f +10162,,,1.0,f +29501,90%,Gibraltar,2.0,t +49004,,,1.0,t +4644,,,1.0,f +18515,,,1.0,t +6879,90%,Papua New Guinea,1.0,f +18712,95%,Turks and Caicos Islands,11.0,t +19262,,Sao Tome and Principe,1.0,f +19931,,,1.0,t +19642,,,1.0,t +12542,98%,Mauritania,19.0,t +15148,,,1.0,f +2373,,Puerto Rico,1.0,t +24833,,Uzbekistan,1.0,f +40649,100%,Niue,1.0,f +41280,100%,French Guiana,2.0,t +42030,80%,Niue,1.0,f +39697,100%,Brazil,1.0,f +20307,,Niue,1.0,f +11053,70%,French Polynesia,1.0,t +43514,,Kenya,1.0,t +23519,,Russian Federation,1.0,t +7010,,Canada,1.0,f +20050,100%,Chile,1.0,t +30686,,Tonga,1.0,t +47422,99%,Uzbekistan,30.0,f +45553,90%,Brazil,16.0,t +18511,,Palestinian Territory,1.0,f +1056,,Micronesia,1.0,f +33181,100%,,1.0,f +25616,100%,,1.0,t +1471,100%,,1.0,t +31745,100%,Monaco,5.0,t +36218,,,1.0,f +851,,,1.0,t +2164,82%,Rwanda,5.0,t +3707,,,3.0,f +12391,,Zimbabwe,1.0,f +46263,100%,Nauru,3.0,f +40765,100%,,1.0,f +45505,90%,,1.0,f +12672,,,1.0,f +6003,,,1.0,f +29568,80%,,1.0,f +40182,100%,Brunei Darussalam,2.0,f +27068,,Malta,1.0,f +14655,100%,Niue,1.0,f +28538,100%,Russian Federation,1.0,t +23596,,Malta,1.0,f +8960,,,2.0,t +28313,,,1.0,t +28019,,Zimbabwe,1.0,t +31794,86%,Anguilla,1.0,f +32840,,Estonia,1.0,f +40495,,Qatar,8.0,f +9321,70%,Togo,1.0,f +14578,,Bosnia and Herzegovina,1.0,f +6527,,Mauritania,1.0,t +2928,100%,Marshall Islands,3.0,t +14962,100%,Niue,1.0,t +5317,100%,Russian Federation,1.0,f +16451,100%,Anguilla,1.0,f +23667,,Kiribati,1.0,f +33144,,Djibouti,3.0,t +29425,,,1.0,f +19817,100%,Papua New Guinea,2.0,f +44355,,Lebanon,1.0,t +19559,50%,Mauritania,1.0,f +15382,,Guinea,2.0,f +47043,100%,Lebanon,1.0,t +47116,,Christmas Island,1.0,f +30058,,Puerto Rico,1.0,f +37941,100%,Niue,2.0,t +24031,,Chile,1.0,t +35571,,Bosnia and Herzegovina,3.0,t +39091,,,1.0,f +6810,,,1.0,f +1295,,,2.0,t +22156,,Svalbard & Jan Mayen Islands,1.0,f +18977,,Nauru,1.0,t +30967,,Sao Tome and Principe,1.0,t +23216,80%,,1.0,f +13320,100%,,1.0,t +12806,,Sao Tome and Principe,1.0,t +495,,Guernsey,1.0,t +40569,,Jersey,1.0,f +31050,,,1.0,t +820,100%,,1.0,f +3657,,French Guiana,5.0,t +10882,,,1.0,f +14704,,,1.0,f +47327,100%,,2.0,f +33175,,Lebanon,2.0,f +36860,,Russian Federation,2.0,f +34113,,Marshall Islands,2.0,t +20274,,Jersey,1.0,f +5341,100%,Niger,1.0,t +33614,,Malta,1.0,f +44239,100%,Kiribati,1.0,t +41583,,Turkmenistan,1.0,f +16327,100%,Russian Federation,1.0,t +11668,,Maldives,1.0,f +41054,100%,Micronesia,1.0,t +36860,,Russian Federation,2.0,f +34178,100%,Rwanda,1.0,f +41048,,Niue,1.0,f +16021,50%,Malawi,1.0,t +7686,,Tonga,1.0,t +27282,67%,Mauritania,1.0,t +43608,100%,,1.0,t +39481,100%,Uzbekistan,1.0,t +1417,,Chile,1.0,f +26083,100%,Faroe Islands,2.0,t +39552,83%,Bahrain,4.0,t +35720,100%,,2.0,f +2005,,,1.0,f +25395,100%,Kiribati,1.0,t +3268,,French Guiana,1.0,t +43028,,,1.0,f +22350,,,1.0,t +3160,90%,Russian Federation,2.0,f +17254,70%,,3.0,t +20021,,Gambia,1.0,f +20339,100%,Malta,1.0,t +10151,,Uganda,1.0,t +34229,100%,,1.0,t +23755,,Kiribati,3.0,t +3023,,,1.0,t +4114,,,1.0,t +18712,95%,Turks and Caicos Islands,11.0,t +15167,,Vietnam,1.0,t +4259,,Niger,1.0,f +39244,100%,Netherlands,3.0,f +7277,,Gibraltar,1.0,f +22693,,Niger,1.0,f +14128,,Chile,1.0,t +19392,,Turkmenistan,1.0,t +43076,100%,Jersey,2.0,t +32166,100%,Bosnia and Herzegovina,4.0,t +38274,,,2.0,f +18712,95%,Turks and Caicos Islands,11.0,t +37646,100%,Estonia,60.0,f +6374,,Guinea,1.0,f +3308,100%,Marshall Islands,2.0,t +23370,40%,Nicaragua,3.0,f +24443,,,1.0,f +13299,,Lithuania,1.0,t +16710,,,1.0,f +41977,,Niue,2.0,t +43864,,Lebanon,1.0,t +22116,100%,Libyan Arab Jamahiriya,1.0,t +22257,,Croatia,1.0,t +42391,,Gambia,1.0,f +23251,,Turkmenistan,1.0,f +49879,,,1.0,t +2146,,Congo,1.0,f +10276,,Jersey,1.0,f +29647,100%,Peru,1305.0,f +30156,,Isle of Man,2.0,f +40224,100%,Isle of Man,1.0,f +29647,100%,Peru,1305.0,f +8598,,Russian Federation,1.0,f +16473,0%,Papua New Guinea,1.0,t +43545,100%,Isle of Man,2.0,t +37285,,Mauritania,1.0,t +8636,,Cocos (Keeling) Islands,1.0,f +14207,,Chad,1.0,t +9411,,Papua New Guinea,1.0,t +15425,,Uzbekistan,1.0,t +35307,100%,,1.0,f +24020,77%,Tonga,6.0,t +27175,,Palestinian Territory,1.0,f +8859,90%,Ukraine,5.0,f +25816,,,2.0,f +20607,100%,Turkmenistan,1.0,f +24759,90%,Gambia,2.0,t +49500,,Russian Federation,1.0,f +32440,,,1.0,t +4357,100%,Bahrain,1.0,t +7280,100%,Holy See (Vatican City State),2.0,t +24827,100%,Gibraltar,3.0,f +33877,100%,Uzbekistan,2.0,f +35218,100%,Turkmenistan,2.0,f +27972,94%,Brazil,27.0,f +37213,,Faroe Islands,1.0,f +5563,,,1.0,f +25816,,,2.0,f +20728,,,1.0,t +7112,,,1.0,t +10245,,French Guiana,1.0,f +9816,,Canada,1.0,t +39774,,Saint Helena,1.0,t +28530,,China,1.0,f +45351,90%,Liberia,3.0,f +37584,100%,Puerto Rico,1.0,f +2509,,,1.0,f +47950,,Pakistan,1.0,f +3224,100%,,2.0,t +18336,50%,,3.0,f +6764,79%,Sao Tome and Principe,2.0,f +33032,83%,Russian Federation,1.0,f +12291,,Isle of Man,1.0,t +16261,75%,Isle of Man,1.0,t +29647,100%,Peru,1305.0,f +32872,,Peru,1.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +49374,100%,,1.0,t +19943,63%,Isle of Man,34.0,f +32971,100%,France,1.0,t +37355,100%,,1.0,t +3160,90%,Russian Federation,2.0,f +25217,,Jersey,1.0,f +42070,100%,Micronesia,2.0,f +1707,,Sao Tome and Principe,1.0,t +15936,,Peru,1.0,f +17840,100%,Uganda,3.0,t +20741,,Uganda,1.0,f +12020,100%,Congo,4.0,t +25262,,Maldives,1.0,t +38348,100%,,2.0,f +17439,50%,Mauritania,1.0,f +25196,,Tanzania,1.0,t +3111,,Venezuela,1.0,t +12749,,Monaco,1.0,t +32241,100%,Niue,3.0,t +19352,100%,,4.0,t +17945,100%,,1.0,t +32241,100%,Niue,3.0,t +18073,20%,Niue,2.0,t +21081,,Bouvet Island (Bouvetoya),1.0,f +49505,,,1.0,t +45553,90%,Brazil,16.0,t +39508,100%,Jersey,1.0,t +18879,100%,Marshall Islands,1.0,f +9099,,Vanuatu,1.0,t +21913,,Reunion,2.0,f +22884,,Palestinian Territory,1.0,f +32327,,Faroe Islands,1.0,f +13800,,Lebanon,1.0,t +4616,,Tonga,1.0,t +40500,100%,Cook Islands,1.0,t +32583,100%,United Kingdom,1.0,f +37941,100%,Niue,2.0,t +37711,100%,Niue,2.0,t +30345,100%,Bouvet Island (Bouvetoya),1.0,t +23239,,,1.0,t +39884,,Reunion,1.0,t +44097,100%,Solomon Islands,4.0,f +13272,,Croatia,1.0,t +42020,100%,,2.0,t +36735,100%,,1.0,f +43597,,Philippines,1.0,t +6273,100%,Lithuania,5.0,t +30588,100%,Nauru,12.0,t +13950,100%,Niue,3.0,f +15181,,United Kingdom,1.0,t +2175,,Uganda,1.0,t +15801,,Korea,1.0,t +17931,,Libyan Arab Jamahiriya,1.0,t +43447,,Ghana,5.0,t +19460,,Lithuania,1.0,f +17673,,Anguilla,1.0,f +33317,,Sao Tome and Principe,1.0,t +28248,,Faroe Islands,1.0,f +30489,,Venezuela,2.0,t +6268,,Uzbekistan,1.0,t +3230,100%,Turkmenistan,2.0,t +29698,100%,Kiribati,3.0,f +12590,,Zimbabwe,1.0,f +1517,100%,Turks and Caicos Islands,3.0,t +48597,,Niue,1.0,t +9614,,Ukraine,1.0,f +5917,100%,Guinea,1.0,t +5836,100%,Faroe Islands,3.0,f +26917,100%,Togo,2.0,t +21482,100%,Russian Federation,1.0,t +5797,,Gambia,2.0,f +10788,25%,Lebanon,2.0,f +35920,,,1.0,t +17344,,Jersey,1.0,t +6700,100%,Guinea,7.0,f +16088,100%,Fiji,2.0,t +29698,100%,Kiribati,3.0,f +12377,91%,,1.0,f +45303,,Rwanda,1.0,f +7041,,Bouvet Island (Bouvetoya),1.0,t +48097,,Kiribati,1.0,f +6469,,Congo,1.0,t +15465,,Maldives,1.0,f +637,100%,,1.0,f +9579,,Nauru,1.0,t +10367,,,2.0,f +38953,,Croatia,1.0,t +8260,100%,Niue,3.0,f +3224,100%,,2.0,t +38350,,Kenya,2.0,f +20023,100%,Monaco,1.0,t +29822,90%,Brazil,11.0,t +32279,100%,Ghana,2.0,t +40478,83%,,2.0,t +4571,,Canada,1.0,f +17056,100%,Chile,1.0,f +12373,,China,1.0,t +40070,100%,Lithuania,1.0,t +32110,100%,,1.0,f +20071,,Sao Tome and Principe,1.0,t +26696,100%,France,4.0,t +28758,,,1.0,f +787,,Faroe Islands,1.0,t +29938,,Turkmenistan,1.0,t +22455,,Togo,1.0,f +8025,,Kenya,1.0,t +4789,,Indonesia,1.0,t +29822,90%,Brazil,11.0,t +37260,100%,Kiribati,2.0,f +27311,,Vanuatu,1.0,f +46378,,Mauritania,3.0,t +18937,,Russian Federation,2.0,f +9329,100%,Jersey,2.0,f +14347,,Chile,2.0,t +31935,,Svalbard & Jan Mayen Islands,1.0,f +34784,60%,Faroe Islands,19.0,t +23821,,Maldives,2.0,t +6894,80%,Estonia,47.0,t +26660,100%,Sao Tome and Principe,2.0,t +36246,,Malta,2.0,t +26362,,,1.0,f +31436,,Croatia,1.0,f +11834,100%,China,4.0,t +10744,29%,,2.0,t +18552,,Niue,1.0,f +23894,,Malawi,2.0,t +24442,,Tonga,1.0,t +28966,,Malta,1.0,t +48226,0%,Senegal,1.0,t +9738,,Tonga,1.0,f +31598,67%,Ukraine,1.0,f +3417,,Fiji,32.0,t +28509,,Zimbabwe,1.0,f +25197,100%,Nicaragua,4.0,f +25197,100%,Nicaragua,4.0,f +35642,100%,Jersey,1.0,f +26060,,,1.0,f +3417,,Fiji,32.0,t +38129,,French Guiana,1.0,f +45101,,Maldives,1.0,f +7077,,Djibouti,1.0,t +29316,,Faroe Islands,1.0,t +45881,,,1.0,f +40583,,Andorra,2.0,t +20668,,Faroe Islands,1.0,t +34096,100%,Andorra,10.0,f +26819,50%,Tonga,2.0,t +33587,,,1.0,f +10457,,,2.0,t +49351,90%,Tonga,3.0,t +28711,,,1.0,f +18454,100%,Nicaragua,5.0,t +45412,100%,Tanzania,2.0,t +23400,,,1.0,t +34096,100%,Andorra,10.0,f +20378,,Isle of Man,1.0,f +34186,60%,,2.0,t +26855,,,1.0,f +19646,,,1.0,f +11865,,Peru,1.0,f +44125,,Lebanon,1.0,t +13969,,Vanuatu,1.0,f +43984,,,1.0,f +3545,,Pakistan,1.0,t +13344,100%,Anguilla,2.0,f +2209,,Zimbabwe,1.0,f +25197,100%,Nicaragua,4.0,f +43132,,Rwanda,1.0,f +35454,100%,China,9.0,f +2540,100%,Zimbabwe,1.0,f +37800,,El Salvador,1.0,t +5929,80%,Mauritania,1.0,t +15706,,Kenya,7.0,t +22512,67%,Papua New Guinea,2.0,f +22512,67%,Papua New Guinea,2.0,f +42560,,Maldives,1.0,f +46540,,Lebanon,1.0,f +28442,,Niue,2.0,f +5147,,Lebanon,1.0,t +13527,,Russian Federation,3.0,t +10577,100%,Estonia,2.0,t +46396,,Marshall Islands,1.0,f +26001,,,1.0,f +39594,,Sao Tome and Principe,3.0,f +8559,,Estonia,1.0,t +24549,,Chad,1.0,t +34841,100%,Zimbabwe,22.0,t +1751,,,1.0,t +12942,,Guinea,3.0,t +2341,100%,Bouvet Island (Bouvetoya),2.0,t +44892,100%,Lebanon,3.0,f +7853,,,1.0,f +12154,,,1.0,f +28358,,,1.0,t +12444,,,1.0,f +49077,100%,,1.0,t +14316,,,1.0,t +12080,,,1.0,t +19943,63%,Isle of Man,34.0,f +21562,,Zimbabwe,1.0,f +8132,,Anguilla,1.0,t +11418,0%,,1.0,t +23630,,Lebanon,2.0,f +11937,100%,,1.0,t +49398,88%,Barbados,18.0,t +22622,,Niue,1.0,t +34764,100%,Faroe Islands,1.0,t +32280,,Guernsey,1.0,t +6650,0%,,1.0,t +31242,100%,,1.0,t +31526,,,1.0,f +48451,86%,Faroe Islands,1.0,t +15560,,Turkmenistan,1.0,t +18090,100%,,1.0,t +16013,,,1.0,f +7722,,,1.0,t +21500,,Isle of Man,1.0,f +8794,,Bouvet Island (Bouvetoya),1.0,t +42641,,,1.0,f +13257,100%,,2.0,t +3586,,Guinea,1.0,t +41558,,Malta,1.0,t +10553,100%,Jersey,1.0,f +16447,100%,Brazil,2.0,t +45302,100%,,1.0,f +23361,100%,Marshall Islands,3.0,t +31745,100%,Monaco,5.0,t +19958,100%,Congo,40.0,t +18114,,,1.0,f +28768,100%,,3.0,f +43478,,,1.0,t +45392,,Netherlands,1.0,t +33930,,El Salvador,1.0,t +31710,,Guinea,3.0,f +31710,,Guinea,3.0,f +1771,,Russian Federation,1.0,t +24543,,Croatia,1.0,t +10845,100%,Marshall Islands,1.0,t +24186,,Rwanda,1.0,t +38677,,Malta,1.0,t +17804,,Uzbekistan,1.0,t +24585,100%,,2.0,f +35830,,Andorra,1.0,t +22290,86%,Micronesia,1.0,t +17474,,Uzbekistan,1.0,f +27647,,Peru,1.0,f +33867,100%,,3.0,f +47480,100%,Jersey,1.0,t +48826,,Svalbard & Jan Mayen Islands,1.0,t +38356,100%,Anguilla,2.0,f +5157,,Zimbabwe,1.0,t +17456,,Gambia,1.0,f +8038,,,1.0,f +16449,,Tonga,1.0,t +41626,,,1.0,t +20718,,Holy See (Vatican City State),1.0,f +18533,90%,Russian Federation,5.0,t +11544,100%,,1.0,f +19334,,,1.0,t +22769,100%,United Kingdom,1.0,t +45048,,Bosnia and Herzegovina,1.0,t +34927,100%,Niue,2.0,f +12750,,Philippines,1.0,t +35458,0%,Ecuador,1.0,f +15188,,,1.0,f +49188,,Niue,1.0,t +11025,,Cuba,1.0,t +15186,,Russian Federation,1.0,t +19810,,Lebanon,1.0,f +37018,100%,Canada,2.0,f +10788,25%,Lebanon,2.0,f +26547,,Jersey,2.0,f +29526,,Sao Tome and Principe,1.0,t +42413,100%,Isle of Man,3.0,t +33867,100%,,3.0,f +33867,100%,,3.0,f +2181,,El Salvador,1.0,t +11863,100%,Uzbekistan,1.0,t +14273,100%,Chile,2.0,f +34209,,Philippines,1.0,f +10937,,,1.0,t +14600,,Faroe Islands,1.0,f +34030,100%,Senegal,2.0,f +44644,,Malta,2.0,f +1519,,Turkmenistan,3.0,t +16367,,Guinea,1.0,t +40017,,Brazil,1.0,f +25026,89%,United Kingdom,1.0,t +6448,90%,Ecuador,1.0,f +15337,,Bosnia and Herzegovina,1.0,t +41848,,Gambia,2.0,t +24806,100%,Monaco,1.0,t +42020,100%,,2.0,t +2815,100%,Tonga,1.0,f +15142,,Marshall Islands,1.0,t +3878,,Zimbabwe,1.0,t +16518,,Jersey,1.0,f +19125,,Palestinian Territory,1.0,f +1519,,Turkmenistan,3.0,t +35469,,Lebanon,1.0,f +42413,100%,Isle of Man,3.0,t +42413,100%,Isle of Man,3.0,t +48778,,Lebanon,1.0,t +47576,100%,Niue,2.0,f +47393,,Marshall Islands,1.0,t +33445,,,1.0,t +16383,,United Kingdom,1.0,f +8454,,French Guiana,1.0,f +25698,100%,Monaco,1.0,f +36726,94%,Mexico,6.0,f +8419,,Palestinian Territory,1.0,f +27102,,Marshall Islands,1.0,t +44702,100%,Faroe Islands,1.0,t +36726,94%,Mexico,6.0,f +32562,,,1.0,f +40342,100%,Ukraine,2.0,f +29507,100%,Russian Federation,2.0,t +14644,,Russian Federation,3.0,f +19112,,Malta,1.0,f +32600,100%,Lebanon,1.0,f +16274,,Niger,1.0,t +29164,,Mauritania,3.0,t +43194,,Maldives,1.0,f +44846,100%,Malta,1.0,t +26280,,Montserrat,1.0,f +23748,100%,,1.0,f +40603,,,1.0,t +33914,100%,Zimbabwe,2.0,t +34095,100%,Russian Federation,3.0,f +4590,,Costa Rica,1.0,f +28679,,Estonia,1.0,t +38481,,Malawi,1.0,t +25502,,Philippines,1.0,t +16617,,,1.0,t +20383,,,1.0,f +15706,,Kenya,7.0,t +38455,100%,Lebanon,2.0,t +21669,,Bosnia and Herzegovina,1.0,f +40057,,,1.0,f +5672,,Togo,2.0,f +13527,,Russian Federation,3.0,t +47300,38%,Bosnia and Herzegovina,1.0,f +41506,,French Guiana,1.0,f +5162,100%,Russian Federation,1.0,t +28017,0%,Kiribati,1.0,t +6700,100%,Guinea,7.0,f +30100,,Senegal,1.0,f +16394,70%,Mexico,1.0,t +13211,,Bouvet Island (Bouvetoya),1.0,f +18190,100%,Niue,1.0,f +8356,100%,Togo,2.0,t +43946,,,1.0,f +38491,100%,Rwanda,3.0,t +3726,100%,Svalbard & Jan Mayen Islands,2.0,t +3161,,Gibraltar,1.0,t +10101,100%,,1.0,t +24640,,Maldives,1.0,f +41481,,Australia,1.0,t +2114,,,1.0,f +44731,,Slovenia,1.0,t +161,,,1.0,t +18622,,Cocos (Keeling) Islands,1.0,t +28806,100%,Mexico,2.0,t +35427,,Micronesia,1.0,f +1644,,,1.0,f +35976,100%,,6.0,t +8434,100%,Cuba,7.0,f +14885,100%,Tanzania,3.0,f +37645,100%,Mauritania,3.0,t +14885,100%,Tanzania,3.0,f +6061,0%,Tonga,2.0,t +34156,100%,Svalbard & Jan Mayen Islands,2.0,t +36815,100%,,1.0,f +5277,100%,Vietnam,10.0,f +38994,,Gibraltar,1.0,t +29268,100%,Gibraltar,1.0,f +10995,,Kiribati,2.0,f +169,,,1.0,t +46649,,Guinea,3.0,t +6221,,Chile,1.0,t +30392,100%,Isle of Man,1.0,t +33729,100%,Jersey,1.0,t +28670,,Russian Federation,1.0,f +36950,100%,,1.0,t +29907,,Mauritania,1.0,t +1160,100%,France,1.0,t +20807,100%,Mauritania,2.0,t +14374,,,1.0,f +35743,100%,Palestinian Territory,2.0,t +44826,,,1.0,t +31042,100%,Guinea,1.0,t +48135,,Niue,1.0,t +47433,,Pakistan,1.0,t +28048,100%,,5.0,f +45138,79%,Barbados,14.0,f +42297,,Chile,1.0,f +14868,100%,El Salvador,1.0,t +35967,,Uganda,2.0,f +17348,,,1.0,f +48331,55%,,1.0,t +35967,,Uganda,2.0,f +9242,100%,Croatia,1.0,f +16332,100%,Niue,1.0,t +47694,100%,Malta,1.0,t +1448,,Nauru,1.0,t +28048,100%,,5.0,f +25652,,,1.0,f +41112,100%,,1.0,f +8410,75%,Guinea,1.0,t +19371,100%,Niger,2.0,t +12626,,Turkmenistan,1.0,f +41067,,Turkmenistan,2.0,t +8459,100%,,1.0,f +33264,,Mauritania,1.0,f +26054,100%,Sao Tome and Principe,1.0,f +5589,,Saint Helena,1.0,t +1413,100%,Zimbabwe,1.0,t +39841,,Indonesia,1.0,f +24639,100%,Kenya,2.0,t +42372,100%,Niger,1.0,f +42783,,Guernsey,1.0,t +40600,,Vanuatu,1.0,f +7210,,Montserrat,1.0,f +8440,,,1.0,f +20930,63%,,3.0,f +16838,100%,Malawi,2.0,t +14967,60%,Monaco,2.0,t +49644,100%,,1.0,t +14520,,,1.0,t +32008,,,1.0,f +33321,100%,,1.0,t +37777,,,1.0,t +15617,44%,China,1.0,f +46630,,Bahrain,1.0,f +2583,100%,Micronesia,2.0,t +20542,80%,Kenya,7.0,t +23170,100%,Sao Tome and Principe,2.0,t +15246,,Mexico,1.0,t +31060,,Isle of Man,1.0,t +24648,,Rwanda,2.0,t +12737,,Malawi,1.0,f +45157,,Ghana,1.0,t +3058,,Bosnia and Herzegovina,1.0,t +44587,0%,Venezuela,2.0,t +34848,,,1.0,t +3707,,,3.0,f +24847,,,1.0,f +7522,,Faroe Islands,1.0,t +7850,,Montserrat,1.0,f +9220,,Gambia,2.0,t +44884,,Russian Federation,3.0,t +35426,,,2.0,f +40458,100%,,1.0,t +34458,90%,Kiribati,4.0,t +29677,,Togo,1.0,t +43489,,Slovakia (Slovak Republic),1.0,t +45829,100%,Venezuela,4.0,f +16294,,Libyan Arab Jamahiriya,2.0,f +37247,100%,Tanzania,3.0,f +7096,100%,Niue,4.0,t +46373,,Anguilla,1.0,t +21051,0%,Denmark,1.0,t +18321,,,1.0,f +3679,100%,Niue,2.0,t +39837,,Jersey,1.0,t +12473,70%,,1.0,t +517,100%,United Kingdom,1.0,f +18533,90%,Russian Federation,5.0,t +14988,100%,Croatia,1.0,f +11698,100%,Philippines,1.0,t +36117,,,1.0,f +26974,,,1.0,t +45571,100%,Micronesia,2.0,t +31633,,Isle of Man,1.0,f +5836,100%,Faroe Islands,3.0,f +47926,,Chad,2.0,f +6180,,France,1.0,t +22055,,Zimbabwe,1.0,f +40113,100%,Zimbabwe,1.0,t +8791,70%,,4.0,f +41868,,Bouvet Island (Bouvetoya),1.0,t +26179,,French Guiana,1.0,f +31654,,,1.0,t +33736,,Marshall Islands,1.0,t +1,,Anguilla,2.0,t +23243,,Lebanon,1.0,t +9409,,,1.0,t +16699,100%,Niue,1.0,f +41920,100%,Ukraine,2.0,f +37791,90%,Marshall Islands,3.0,f +11093,,,1.0,t +12193,,Mexico,1.0,t +7951,,Anguilla,1.0,f +40585,,Denmark,1.0,f +27723,,,1.0,t +32964,,,1.0,t +859,75%,Lebanon,2.0,t +44560,,Jersey,1.0,f +36590,100%,Malta,1.0,t +36754,,Niue,1.0,t +48119,,Monaco,1.0,f +5824,,Guinea,1.0,t +11598,,Ecuador,1.0,f +44106,100%,Malta,1.0,f +18923,,Andorra,1.0,t +16144,,Lebanon,1.0,f +12713,,Uzbekistan,1.0,t +45887,,Isle of Man,1.0,f +17952,,,1.0,t +20605,,China,1.0,t +2557,100%,Uzbekistan,3.0,t +23554,,Guinea,1.0,t +16830,100%,,1.0,t +41186,100%,Lebanon,1.0,t +12518,,Faroe Islands,1.0,t +1848,,Kenya,1.0,t +13015,,Isle of Man,1.0,f +30808,,,2.0,f +20028,50%,,1.0,f +22700,100%,,2.0,t +1087,100%,Isle of Man,1.0,t +44531,,Cocos (Keeling) Islands,2.0,f +9115,0%,Bouvet Island (Bouvetoya),2.0,f +45296,100%,Kiribati,1.0,f +2091,,Gambia,1.0,t +7465,100%,Uganda,1.0,f +6369,100%,Saint Helena,1.0,f +38557,100%,,1.0,t +29297,,Barbados,1.0,f +43315,,Isle of Man,1.0,f +44079,100%,,1.0,f +27015,100%,Kenya,2.0,t +7651,100%,Mexico,1.0,t +28558,100%,Russian Federation,1.0,t +12059,,Isle of Man,1.0,f +41620,100%,Ecuador,1.0,f +46219,,Gambia,2.0,t +9103,,Pakistan,1.0,t +33026,100%,Estonia,2.0,f +9123,,Brazil,1.0,f +33632,,Monaco,1.0,t +35837,,Tonga,1.0,f +41825,100%,United Kingdom,1.0,f +34834,,Brazil,2.0,t +6898,,Monaco,1.0,t +17750,,United Kingdom,2.0,t +4282,,Maldives,2.0,t +44884,,Russian Federation,3.0,t +45548,100%,Malta,3.0,t +28301,100%,United Kingdom,2.0,f +37743,100%,Svalbard & Jan Mayen Islands,1.0,t +7527,,,1.0,f +39668,0%,Malta,1.0,t +32571,100%,Russian Federation,1.0,t +49961,100%,Russian Federation,3.0,t +16979,,Isle of Man,1.0,t +45372,100%,,1.0,t +2826,50%,Croatia,2.0,t +40962,100%,Russian Federation,1.0,t +38089,,,1.0,t +34261,67%,Kiribati,1.0,t +11032,,Faroe Islands,1.0,f +24990,100%,Anguilla,3.0,t +24990,100%,Anguilla,3.0,t +36206,86%,Russian Federation,10.0,f +38934,,Lebanon,2.0,t +36193,100%,Niue,1.0,t +20830,,Zimbabwe,2.0,t +10382,,Niue,1.0,t +21293,,Chad,1.0,t +36804,90%,Niue,1.0,t +47202,,Marshall Islands,1.0,f +6484,,Kiribati,1.0,f +35454,100%,China,9.0,f +8070,,Faroe Islands,1.0,f +32956,,Bouvet Island (Bouvetoya),3.0,t +16821,,Lebanon,1.0,t +43569,,Tonga,1.0,t +36635,100%,Indonesia,10.0,f +46811,100%,Zimbabwe,1.0,f +24239,100%,Kiribati,8.0,t +15575,,Sao Tome and Principe,1.0,f +25834,100%,Turkmenistan,2.0,t +31589,,Tonga,1.0,f +43921,,,1.0,f +5780,100%,Indonesia,1.0,f +26295,,Croatia,2.0,f +4806,,Tonga,1.0,t +36632,,French Guiana,1.0,t +28053,100%,,1.0,t +26846,,Marshall Islands,1.0,f +22393,,Micronesia,1.0,f +44857,100%,Zimbabwe,24.0,t +36142,,,1.0,t +49873,60%,,1.0,f +32566,,,1.0,f +4177,,,1.0,f +36972,100%,Venezuela,3.0,f +40590,,,1.0,f +9160,,Senegal,1.0,t +4751,83%,Zimbabwe,1.0,t +30556,100%,Malawi,2.0,t +14889,,Netherlands,1.0,t +46988,,Somalia,4.0,t +20366,,,1.0,t +4605,100%,Micronesia,1.0,f +19885,,Sao Tome and Principe,1.0,t +23815,100%,Palestinian Territory,1.0,t +27879,,Monaco,1.0,t +14855,,Rwanda,1.0,t +41031,,Niue,2.0,t +14123,,Bosnia and Herzegovina,1.0,t +11325,0%,Tonga,18.0,f +42797,43%,Pakistan,3.0,t +31973,,Tonga,1.0,f +13494,,Venezuela,1.0,t +40850,,,, +48167,,Rwanda,1.0,t +9440,,,1.0,f +31594,100%,Philippines,19.0,t +44379,80%,El Salvador,8.0,t +29544,,Mauritania,1.0,f +25733,,,1.0,f +37820,,,1.0,t +14817,,,1.0,t +30169,100%,Rwanda,2.0,t +16270,80%,Bosnia and Herzegovina,1.0,t +15931,100%,,4.0,f +48920,100%,,3.0,t +25183,,Malta,1.0,t +4827,90%,,1.0,t +26704,100%,Malawi,2.0,t +28893,,Turkmenistan,1.0,f +41063,,Monaco,2.0,t +30518,,,1.0,f +20938,,United Kingdom,1.0,t +44610,,Uganda,1.0,f +32795,,Vanuatu,1.0,f +39578,,Sao Tome and Principe,1.0,f +9551,,Denmark,1.0,f +33432,,Lebanon,1.0,f +20033,100%,Chad,1.0,f +35412,,,1.0,t +43358,,Chile,1.0,t +40175,,Jersey,1.0,f +39568,,Bahrain,1.0,f +137,,Brazil,1.0,t +16838,100%,Malawi,2.0,t +16195,,,1.0,t +46533,,Monaco,1.0,f +47288,,French Guiana,1.0,f +4019,,Lebanon,1.0,f +1142,75%,,1.0,t +4293,,Niue,1.0,f +45820,0%,,3.0,f +25159,100%,Peru,1.0,t +14978,,,1.0,f +21829,,,, +9336,100%,Isle of Man,1.0,t +49231,90%,Bosnia and Herzegovina,1.0,f +45611,75%,,3.0,t +16250,,Maldives,1.0,t +38703,,Maldives,1.0,f +13828,,France,1.0,t +30278,,,1.0,f +30338,,Sao Tome and Principe,1.0,t +23370,40%,Nicaragua,3.0,f +20048,,El Salvador,5.0,t +23773,100%,El Salvador,1.0,t +23341,,Croatia,2.0,f +43611,,Niue,2.0,f +5214,100%,,2.0,t +13461,,,1.0,f +45943,100%,Micronesia,2.0,f +13016,100%,Russian Federation,2.0,t +13016,100%,Russian Federation,2.0,t +2166,,Kenya,4.0,t +24896,100%,Algeria,50.0,t +3615,80%,Somalia,3.0,t +23181,,,2.0,t +3475,,Marshall Islands,1.0,f +19419,,Chile,1.0,t +44664,,Jersey,1.0,f +14274,,,1.0,t +2145,67%,Faroe Islands,3.0,t +11368,,,1.0,f +2145,67%,Faroe Islands,3.0,t +17191,,Montserrat,1.0,t +29137,,Faroe Islands,2.0,f +32827,,Philippines,1.0,t +48835,100%,Cocos (Keeling) Islands,1.0,t +28828,100%,Isle of Man,198.0,t +26040,,Isle of Man,1.0,t +46193,,,2.0,t +30078,,Russian Federation,1.0,f +29830,100%,,1.0,f +28825,,Ghana,1.0,t +16575,,,1.0,f +5277,100%,Vietnam,10.0,f +45335,,Cocos (Keeling) Islands,1.0,f +7144,,Niger,1.0,t +10851,,Estonia,1.0,t +5647,,Bosnia and Herzegovina,4.0,t +28969,,,2.0,t +39522,,,1.0,f +40441,90%,Russian Federation,2.0,f +25894,,Malta,2.0,f +31460,100%,Isle of Man,1.0,t +12549,,Croatia,1.0,f +13481,,,1.0,t +37726,100%,Micronesia,1.0,f +14919,,,1.0,f +12596,,Russian Federation,1.0,t +23152,100%,United Kingdom,1.0,t +40334,,Bosnia and Herzegovina,1.0,t +3679,100%,Niue,2.0,t +27595,100%,Guinea,1.0,t +8017,,Faroe Islands,1.0,f +29137,,Faroe Islands,2.0,f +22136,,Niue,1.0,t +26379,,Niue,1.0,f +47331,,,1.0,t +41765,,France,1.0,t +6638,,Marshall Islands,1.0,f +36840,,Cape Verde,2.0,t +39165,100%,Bouvet Island (Bouvetoya),2.0,t +36140,,Puerto Rico,1.0,f +144,100%,Maldives,2.0,t +26221,,Turkmenistan,1.0,f +36992,100%,,1.0,t +21563,,Turkmenistan,1.0,f +45474,100%,El Salvador,4.0,t +29242,,Somalia,1.0,t +22695,97%,Pakistan,6.0,t +3927,100%,Niue,1.0,t +37593,,Guinea,1.0,f +28761,,Chad,1.0,t +15192,,Sao Tome and Principe,2.0,t +11164,100%,,1.0,t +11971,100%,,1.0,t +31859,100%,Maldives,2.0,f +12706,,Faroe Islands,1.0,f +28259,,Niue,1.0,t +32179,67%,,1.0,f +12760,,Anguilla,1.0,t +16379,,,1.0,t +29723,,Guernsey,1.0,t +19883,,,2.0,f +13947,100%,France,3.0,t +16147,,,1.0,f +33893,,,1.0,t +8744,100%,United Kingdom,2.0,f +15072,,Mauritania,1.0,t +23244,100%,Monaco,1.0,f +20177,,,1.0,t +47053,,Guinea,1.0,t +37149,,,1.0,f +21288,100%,Brazil,1.0,f +13524,,,1.0,t +4075,,,2.0,f +31811,70%,Uzbekistan,2.0,t +15403,,,1.0,f +933,75%,Lebanon,1.0,t +12223,,Kenya,1.0,t +31812,100%,Guinea,1.0,t +45086,,Malta,1.0,f +153,,Ghana,1.0,t +38417,,,1.0,t +39782,,Denmark,1.0,t +2148,,Tonga,1.0,t +6174,100%,Chad,1.0,t +22454,100%,Uzbekistan,1.0,t +6841,100%,Mauritania,4.0,f +15890,100%,,1.0,f +19388,,Niue,1.0,t +30169,100%,Rwanda,2.0,t +35420,,Sao Tome and Principe,2.0,t +20756,,,1.0,f +49695,,Nicaragua,1.0,f +35420,,Sao Tome and Principe,2.0,t +21590,,Faroe Islands,1.0,f +8037,,Somalia,1.0,f +48216,88%,Russian Federation,1.0,t +5758,,,1.0,t +3419,,Djibouti,1.0,t +35303,100%,Guernsey,1.0,t +23575,100%,Denmark,2.0,f +48295,100%,Jersey,1.0,t +30843,,Niue,1.0,f +1446,100%,Malta,1.0,t +22541,,Marshall Islands,2.0,t +26780,100%,Guinea,7.0,f +17756,,Tonga,1.0,f +22100,,Somalia,1.0,t +5591,99%,Indonesia,16.0,t +4805,100%,Cuba,2.0,f +41577,,Sao Tome and Principe,1.0,t +4546,100%,Slovakia (Slovak Republic),2.0,t +29107,,Sao Tome and Principe,1.0,f +9696,,Philippines,1.0,t +47029,,Isle of Man,1.0,t +24283,100%,Estonia,1.0,t +32956,,Bouvet Island (Bouvetoya),3.0,t +20743,100%,Nicaragua,1.0,f +32646,,Tanzania,2.0,t +2276,,Denmark,1.0,f +30190,100%,El Salvador,1.0,t +5504,,Cape Verde,2.0,t +8821,,Faroe Islands,1.0,f +26106,,Tonga,1.0,t +6247,,Nicaragua,1.0,t +11606,,Indonesia,1.0,t +25834,100%,Turkmenistan,2.0,t +24208,,Zimbabwe,1.0,t +34453,,,1.0,f +11378,,Chad,1.0,f +45791,,Russian Federation,2.0,t +5064,80%,Guinea,2.0,t +2724,100%,,2.0,f +12636,,United Kingdom,1.0,t +7685,100%,,1.0,t +3428,100%,Lebanon,4.0,t +30241,,,1.0,f +6257,,Lebanon,1.0,t +46081,,Ghana,1.0,t +37738,,Maldives,1.0,t +46986,,,1.0,f +35565,,Afghanistan,1.0,t +32160,,Niue,1.0,f +20149,,,1.0,f +5277,100%,Vietnam,10.0,f +19288,,,1.0,f +38589,,,1.0,t +28969,,,2.0,t +29042,100%,,1.0,t +40157,,Ghana,1.0,t +5709,,Croatia,1.0,t +24724,,,1.0,f +10104,,Tonga,1.0,t +33076,,,1.0,f +4329,,Niue,1.0,f +17382,,Slovenia,1.0,t +43617,,Suriname,2.0,f +20800,70%,Grenada,1.0,t +40593,,Nauru,10.0,t +23379,,,1.0,t +47609,100%,Malta,1.0,t +6668,100%,,1.0,t +47492,100%,Maldives,1.0,t +47207,,Isle of Man,1.0,f +44632,,,1.0,t +35605,100%,,2.0,f +48831,100%,Cape Verde,5.0,t +11622,100%,,3.0,t +1740,,Niue,1.0,t +46375,,,1.0,f +49212,,Somalia,1.0,t +14885,100%,Tanzania,3.0,f +31186,,Grenada,3.0,t +24026,98%,Cape Verde,69.0,t +35434,,Niue,1.0,t +19682,100%,Faroe Islands,15.0,t +39134,90%,Micronesia,2.0,f +35277,100%,France,2.0,t +15643,,Venezuela,1.0,t +13462,,Bosnia and Herzegovina,1.0,f +40834,,Congo,1.0,f +3143,,Niue,1.0,f +22840,,Lithuania,1.0,f +38351,,Kenya,1.0,t +32574,,Sao Tome and Principe,1.0,t +27656,100%,Nauru,1.0,t +4493,100%,,1.0,f +28989,,El Salvador,1.0,t +441,,,1.0,t +31893,,Isle of Man,1.0,t +46960,,Guinea,1.0,f +37734,,Malawi,1.0,f +20301,,Niue,2.0,t +46369,100%,Papua New Guinea,2.0,f +746,,Kiribati,4.0,f +46369,100%,Papua New Guinea,2.0,f +8869,0%,Isle of Man,1.0,f +39134,90%,Micronesia,2.0,f +36136,,Faroe Islands,1.0,t +24896,100%,Algeria,50.0,t +14547,100%,Gibraltar,2.0,f +11216,,,1.0,f +19770,100%,,1.0,f +22189,,Bouvet Island (Bouvetoya),1.0,t +2831,,Marshall Islands,1.0,t +16826,,Guinea,1.0,f +42226,100%,Rwanda,2.0,t +42226,100%,Rwanda,2.0,t +37646,100%,Estonia,60.0,f +13000,100%,Indonesia,2.0,t +26784,,Malta,1.0,f +41835,100%,Russian Federation,1.0,t +29164,,Mauritania,3.0,t +25240,100%,Gibraltar,2.0,t +44876,,Turkmenistan,1.0,t +10334,100%,Micronesia,1.0,t +38345,,,1.0,f +13595,,,1.0,f +2520,100%,Holy See (Vatican City State),2.0,t +49463,,,1.0,f +38835,100%,,4.0,t +17692,100%,Croatia,1.0,t +24999,100%,France,6.0,f +3572,100%,Tonga,2.0,t +3064,,Russian Federation,1.0,f +1701,70%,Christmas Island,1.0,t +19340,100%,San Marino,2.0,f +9581,100%,,1.0,t +8675,,Nicaragua,1.0,f +28520,100%,Slovakia (Slovak Republic),2.0,t +18457,,,1.0,f +13701,90%,Uzbekistan,2.0,t +6002,100%,,2.0,f +28036,100%,Guinea,1.0,f +36978,,,1.0,f +30794,100%,Barbados,5.0,t +31695,,Nicaragua,1.0,t +3145,100%,Micronesia,3.0,t +2320,,,1.0,t +21734,,United Kingdom,1.0,f +36993,,Niue,1.0,f +20725,,Venezuela,1.0,t +10979,,Philippines,1.0,t +280,,Turks and Caicos Islands,1.0,t +24855,,Bosnia and Herzegovina,2.0,t +28865,100%,Guinea,1.0,t +12417,,,1.0,t +18359,,Isle of Man,1.0,t +22524,,Zimbabwe,1.0,f +21122,,Kiribati,1.0,f +16702,100%,Saint Helena,1.0,t +38941,,,3.0,t +4513,,Marshall Islands,1.0,f +49225,,French Guiana,2.0,t +30616,,Lebanon,1.0,t +11686,90%,Kenya,2.0,f +45219,70%,Djibouti,1.0,t +31704,,Ecuador,1.0,f +20530,,Gibraltar,1.0,t +49240,,,1.0,f +17669,100%,Russian Federation,3.0,f +33201,,Chad,1.0,t +592,,,1.0,t +4808,,Svalbard & Jan Mayen Islands,1.0,f +36004,33%,,2.0,t +36448,,,1.0,f +36236,,Brazil,1.0,t +19054,,Rwanda,1.0,t +37450,,Guinea,1.0,t +26115,,Mauritania,1.0,t +24318,,,1.0,f +25756,100%,Nicaragua,2.0,f +23326,100%,,1.0,t +29273,100%,Togo,1.0,t +8979,100%,Micronesia,9.0,t +44446,100%,Costa Rica,3.0,t +39319,100%,,2.0,f +7621,83%,Isle of Man,1.0,f +19792,,Uzbekistan,1.0,f +8828,,,1.0,f +8979,100%,Micronesia,9.0,t +23921,100%,Croatia,1.0,t +34658,,,1.0,f +4501,,Tonga,1.0,t +48479,,,1.0,t +47410,100%,Puerto Rico,1.0,f +17530,,Afghanistan,1.0,t +37814,,Tonga,1.0,t +25838,,Anguilla,2.0,t +2598,,Lebanon,1.0,t +23034,99%,Monaco,54.0,f +8979,100%,Micronesia,9.0,t +37289,,Bosnia and Herzegovina,1.0,t +14763,,Russian Federation,1.0,f +8979,100%,Micronesia,9.0,t +8979,100%,Micronesia,9.0,t +27936,,Micronesia,1.0,t +38288,100%,France,8.0,t +37300,100%,Bosnia and Herzegovina,1.0,t +49656,100%,Djibouti,1.0,t +27670,75%,Uganda,1.0,t +39391,,Guinea,1.0,t +35033,,Niue,1.0,f +43616,80%,Ecuador,1.0,t +44341,100%,Cuba,1.0,f +12946,100%,Isle of Man,1.0,t +27402,,Russian Federation,1.0,t +49298,,El Salvador,2.0,f +14673,,Tonga,1.0,t +49886,,Monaco,1.0,f +49385,,Rwanda,1.0,f +18755,,Maldives,1.0,t +12216,97%,Uzbekistan,4.0,f +44384,,Turkmenistan,1.0,t +49875,,,1.0,f +47034,,,1.0,f +5214,100%,,2.0,t +38634,100%,Malta,1.0,t +9288,,,1.0,f +44415,,Turkmenistan,1.0,f +822,,,1.0,t +3391,100%,Iran,58.0,t +39024,100%,Uzbekistan,2.0,f +14430,100%,Uzbekistan,1.0,f +29617,,Niue,1.0,f +27916,,,1.0,f +25949,,,1.0,f +4203,,Russian Federation,1.0,t +14615,,Guinea,1.0,t +12137,99%,Sao Tome and Principe,33.0,t +33959,80%,,1.0,f +7130,,Niue,1.0,t +2171,75%,Bosnia and Herzegovina,3.0,t +16771,,Maldives,1.0,t +34626,,,1.0,f +34251,,Zimbabwe,1.0,f +4129,100%,Niue,3.0,t +47439,100%,,2.0,t +8310,,Malawi,1.0,t +24521,100%,United Kingdom,2.0,t +32810,100%,Russian Federation,2.0,t +34755,,Croatia,1.0,f +2520,100%,Holy See (Vatican City State),2.0,t +42545,100%,France,1.0,t +16926,,,1.0,t +6524,,,1.0,f +18586,100%,Bouvet Island (Bouvetoya),1.0,f +2166,,Kenya,4.0,t +9189,,Estonia,1.0,f +11933,100%,,2.0,f +19899,,Slovenia,1.0,t +49659,,Estonia,1.0,t +24006,,,1.0,f +9329,100%,Jersey,2.0,f +33607,,Micronesia,1.0,t +23856,100%,,1.0,f +11868,,,1.0,f +21264,100%,,1.0,t +47283,,Ghana,4.0,t +10885,,Isle of Man,1.0,f +37106,,,1.0,f +6838,96%,Spain,59.0,t +6838,96%,Spain,59.0,t +6838,96%,Spain,59.0,t +6838,96%,Spain,59.0,t +30105,,Rwanda,1.0,t +19521,100%,United Kingdom,3.0,t +6890,,Tonga,1.0,f +24619,100%,,4.0,t +45571,100%,Micronesia,2.0,t +43681,,Micronesia,1.0,f +44842,,,1.0,f +32170,,Uzbekistan,1.0,t +46273,,,1.0,t +25697,100%,Malta,2.0,t +44857,100%,Zimbabwe,24.0,t +9960,,Costa Rica,1.0,f +37526,,Vietnam,1.0,t +21078,,Niue,1.0,f +37795,,El Salvador,1.0,t +8878,,Nauru,2.0,f +21601,100%,Nicaragua,2.0,t +6865,100%,Afghanistan,1.0,t +3975,,Chad,1.0,f +26816,,Chad,1.0,t +7910,,Monaco,1.0,t +3414,,,1.0,f +5664,,Gambia,1.0,t +47518,,French Guiana,2.0,t +17946,,,1.0,f +8767,,,1.0,t +35936,,,1.0,t +23790,100%,Isle of Man,1.0,t +18390,100%,Malta,1.0,t +12860,,Palestinian Territory,1.0,f +23498,,,1.0,t +48473,,,2.0,t +10171,,,1.0,f +7768,100%,Uzbekistan,1.0,t +1856,,Kenya,1.0,t +28539,100%,,1.0,f +4801,,Gibraltar,1.0,t +7681,,Sao Tome and Principe,1.0,f +32187,,San Marino,1.0,f +10199,,Chile,1.0,t +37187,,France,3.0,t +48948,,,1.0,f +31521,,French Guiana,1.0,f +25014,100%,,1.0,t +1130,,Mauritania,1.0,f +34696,,,2.0,f +17893,100%,,2.0,f +3428,100%,Lebanon,4.0,t +4790,,Libyan Arab Jamahiriya,1.0,t +23295,100%,Bouvet Island (Bouvetoya),2.0,t +18041,33%,Gibraltar,1.0,f +19930,100%,Puerto Rico,2.0,f +19540,100%,Guinea,1.0,t +43485,,Russian Federation,2.0,t +15065,100%,,1.0,t +12586,,,1.0,t +4849,,Malta,2.0,f +13308,,Maldives,1.0,f +34694,90%,Malta,2.0,t +34583,,Cuba,2.0,t +15205,100%,Sao Tome and Principe,1.0,f +47430,100%,Turks and Caicos Islands,1.0,f +26780,100%,Guinea,7.0,f +48513,100%,,1.0,t +28471,,Guernsey,1.0,t +38847,0%,Denmark,3.0,t +34585,100%,,2.0,t +17408,,Chad,1.0,t +47672,100%,,5.0,f +47672,100%,,5.0,f +48455,89%,Uzbekistan,20.0,t +29452,100%,El Salvador,1.0,t +25920,75%,Kiribati,1.0,t +36004,33%,,2.0,t +9351,,,1.0,t +48569,,,1.0,f +35114,,Lebanon,1.0,t +3726,100%,Svalbard & Jan Mayen Islands,2.0,t +35864,,Zimbabwe,1.0,t +38794,100%,Micronesia,2.0,t +996,,Cuba,1.0,t +9978,100%,Puerto Rico,3.0,t +38986,,Estonia,2.0,t +38020,,Tonga,1.0,t +22013,100%,Micronesia,4.0,f +14974,90%,Turkmenistan,1.0,t +13961,,,1.0,t +36353,100%,Chile,2.0,f +2443,,Mexico,1.0,t +923,,Jersey,1.0,t +9978,100%,Puerto Rico,3.0,t +18548,100%,Kenya,1.0,f +47236,100%,Reunion,1.0,t +3562,,Mauritania,1.0,t +19649,,,1.0,t +38692,100%,,1.0,f +2981,,,1.0,f +33439,,Russian Federation,1.0,f +30693,,,1.0,f +30537,100%,Tonga,3.0,t +48954,100%,Montserrat,8.0,t +37882,100%,Bouvet Island (Bouvetoya),2.0,f +25550,100%,Nicaragua,8.0,t +38006,90%,Lebanon,1.0,t +22717,,Russian Federation,1.0,f +2702,,Senegal,2.0,t +38512,,,1.0,f +2702,,Senegal,2.0,t +1980,50%,,1.0,t +5277,100%,Vietnam,10.0,f +20978,,,1.0,t +29165,100%,Reunion,1.0,f +2840,100%,Papua New Guinea,2.0,t +44405,100%,France,1.0,t +29807,100%,Brazil,2.0,t +12615,,,1.0,f +19970,100%,Marshall Islands,1.0,f +16967,,,1.0,f +36828,100%,Uganda,1.0,t +25838,,Anguilla,2.0,t +27167,,Marshall Islands,1.0,f +17706,89%,Lebanon,1.0,f +16419,,French Guiana,1.0,t +47136,100%,France,1.0,t +21835,,,1.0,f +18920,90%,Jersey,1.0,t +25842,100%,,1.0,t +3857,,Kenya,1.0,t +9595,,,1.0,f +4573,100%,,1.0,f +28040,,Kiribati,1.0,f +20315,100%,,1.0,t +8611,,Russian Federation,1.0,t +11607,100%,Croatia,2.0,t +2806,,Indonesia,1.0,t +6132,100%,Marshall Islands,2.0,f +11916,,,1.0,f +21400,100%,,2.0,t +49395,,,1.0,f +23777,,Chad,2.0,f +2421,100%,,2.0,t +8580,,Malawi,1.0,f +8932,,Niue,1.0,f +31745,100%,Monaco,5.0,t +8999,,Tonga,1.0,t +5415,100%,El Salvador,3.0,f +20531,,Saint Helena,1.0,f +29485,,French Guiana,1.0,f +38839,,Sao Tome and Principe,1.0,f +47456,100%,Isle of Man,1.0,f +12981,33%,Isle of Man,1.0,f +5415,100%,El Salvador,3.0,f +41977,,Niue,2.0,t +11245,,,1.0,f +23456,,,1.0,t +24352,100%,Guinea,2.0,f +5415,100%,El Salvador,3.0,f +38485,,Isle of Man,1.0,f +25181,,Mauritania,1.0,t +23187,,,1.0,t +8697,,Greenland,2.0,f +40730,100%,,3.0,t +35474,,Maldives,1.0,f +5729,100%,Russian Federation,1.0,f +37918,,El Salvador,3.0,t +8403,,Nicaragua,1.0,f +12888,,Lebanon,1.0,t +12542,98%,Mauritania,19.0,t +30684,100%,Niue,2.0,t +12542,98%,Mauritania,19.0,t +21839,25%,Malawi,2.0,f +38372,,Maldives,1.0,f +44723,,,1.0,t +22952,,Turkmenistan,1.0,t +49877,,Nicaragua,1.0,f +34374,,Sao Tome and Principe,1.0,t +5974,33%,Nicaragua,1.0,f +5696,,,1.0,f +25520,,El Salvador,1.0,t +21417,,,1.0,t +19640,,Lebanon,1.0,f +29325,,Russian Federation,1.0,t +16320,,,1.0,t +33551,,,1.0,t +44919,,Russian Federation,1.0,t +34905,,Uzbekistan,1.0,f +24455,,Chile,1.0,t +24105,,Guernsey,1.0,t +2978,,,1.0,t +32564,100%,Niue,1.0,t +9947,,,1.0,f +12058,100%,,1.0,t +48813,100%,Jersey,1.0,f +8073,100%,,2.0,f +31826,100%,Guinea,3.0,f +8073,100%,,2.0,f +33020,100%,Russian Federation,1.0,f +2676,100%,Faroe Islands,1.0,t +13229,100%,Sao Tome and Principe,1.0,t +14127,,Chad,1.0,t +33479,,Croatia,1.0,f +35955,,Barbados,2.0,f +18158,,Isle of Man,1.0,t +49978,,,1.0,t +24437,,,1.0,f +38048,,,1.0,f +37376,,Russian Federation,1.0,f +37161,,Monaco,1.0,f +6818,,Marshall Islands,1.0,t +45000,100%,Montserrat,10.0,t +13413,,Chile,3.0,t +11451,,Peru,1.0,t +24886,,Estonia,1.0,t +20747,,Isle of Man,1.0,f +20674,,,1.0,f +35297,,Sao Tome and Principe,1.0,t +4301,,Tonga,1.0,t +20291,,Gibraltar,2.0,t +36228,100%,Lebanon,1.0,t +44002,,Reunion,1.0,t +5717,,,1.0,t +44010,,,1.0,f +12478,100%,Turkmenistan,1.0,t +37931,,Russian Federation,1.0,t +9187,100%,Zimbabwe,3.0,f +29397,71%,,1.0,t +21909,100%,Christmas Island,3.0,f +44918,,Slovakia (Slovak Republic),1.0,f +8324,,United Kingdom,1.0,t +4625,100%,,1.0,t +2637,,,1.0,f +4818,,,1.0,f +520,100%,France,1.0,f +44225,,Gibraltar,1.0,f +45082,,Monaco,2.0,t +36179,,Holy See (Vatican City State),1.0,f +48306,,,1.0,f +26815,,,1.0,t +42514,0%,Poland,1.0,t +8834,,Nicaragua,1.0,t +5112,,Lithuania,1.0,f +3073,,Zimbabwe,1.0,t +399,80%,Papua New Guinea,2.0,t +18169,,Turks and Caicos Islands,1.0,t +22506,100%,,1.0,t +29998,,Cocos (Keeling) Islands,2.0,f +807,,,1.0,t +1819,97%,Malta,3.0,t +28997,100%,Slovenia,2.0,t +27716,,French Guiana,1.0,f +17236,,Finland,1.0,t +10537,100%,Zimbabwe,1.0,t +10575,100%,Bouvet Island (Bouvetoya),3.0,t +46876,,Kenya,1.0,f +39189,100%,Tunisia,1.0,t +48484,80%,Faroe Islands,3.0,f +46543,100%,,2.0,t +13004,100%,Isle of Man,1.0,t +5741,,Cuba,1.0,f +48545,,,1.0,t +47806,100%,Ukraine,1.0,t +46926,,Uzbekistan,1.0,t +28729,100%,,2.0,t +30757,90%,Croatia,2.0,f +39609,,United Kingdom,1.0,f +19004,100%,Russian Federation,1.0,t +35955,,Barbados,2.0,f +2795,100%,Montserrat,2.0,t +7666,,Lebanon,1.0,t +18993,100%,Reunion,2.0,t +44824,,Isle of Man,1.0,t +12232,,Netherlands,1.0,t +27523,,,1.0,t +18677,,Russian Federation,1.0,t +7818,,Cape Verde,1.0,t +20601,,Isle of Man,1.0,f +30233,33%,Marshall Islands,3.0,t +45165,,Niue,2.0,t +8189,100%,Chile,2.0,t +29550,,Guinea,1.0,t +31971,,Suriname,2.0,t +21574,,,1.0,t +14352,,,1.0,f +19507,100%,,1.0,t +42755,,Tanzania,1.0,t +21250,,,1.0,t +40580,,Malta,1.0,f +48541,,Russian Federation,2.0,t +34996,,Russian Federation,1.0,f +35901,100%,Ecuador,2.0,t +21129,,Guinea,1.0,f +3590,100%,Sao Tome and Principe,1.0,f +45270,100%,Jersey,1.0,t +40176,,Ghana,1.0,t +17019,,Netherlands,1.0,t +43152,100%,Nicaragua,82.0,t +47491,88%,,2.0,f +38098,100%,Zimbabwe,7.0,t +2687,,Uzbekistan,4.0,t +14897,100%,Russian Federation,2.0,t +30564,,Guinea,1.0,f +30884,,Isle of Man,1.0,t +6021,,,1.0,f +23200,100%,Croatia,1.0,t +18199,,Philippines,1.0,f +11756,,,1.0,f +14662,,Monaco,1.0,f +47368,,,1.0,f +34682,,Libyan Arab Jamahiriya,1.0,f +4031,,Kenya,1.0,t +26772,,Senegal,1.0,f +21432,,Guinea,1.0,f +4532,,,1.0,t +7546,,Switzerland,1.0,f +20014,,Uzbekistan,1.0,t +19604,,,1.0,f +34841,100%,Zimbabwe,22.0,t +9436,,Turkmenistan,1.0,t +48029,100%,Malta,2.0,f +925,,Kenya,1.0,f +5054,100%,China,4.0,t +10575,100%,Bouvet Island (Bouvetoya),3.0,t +34770,,,1.0,f +8402,,,1.0,f +1519,,Turkmenistan,3.0,t +23265,70%,,2.0,f +47547,100%,,1.0,f +20975,100%,Gambia,2.0,f +30868,,,1.0,f +23755,,Kiribati,3.0,t +10331,,Niue,1.0,t +1540,100%,Cuba,1.0,f +45008,,,1.0,f +23453,,Kenya,1.0,f +31971,,Suriname,2.0,t +15692,,Lebanon,1.0,f +10934,,Niue,1.0,t +4666,100%,Tonga,1.0,t +30692,,United Kingdom,1.0,t +27524,100%,Palestinian Territory,1.0,f +41316,,Ghana,3.0,f +12725,,Tunisia,1.0,f +42159,,,1.0,f +5354,,Bosnia and Herzegovina,1.0,f +8430,,Peru,7.0,t +15436,,Tonga,1.0,t +11047,96%,Senegal,3.0,t +21437,,Croatia,2.0,t +44097,100%,Solomon Islands,4.0,f +49685,100%,Brazil,2.0,t +15220,,,1.0,t +20606,100%,Congo,6.0,t +31720,,,1.0,f +3952,,Lithuania,1.0,t +29600,100%,Guinea,2.0,t +44762,100%,Estonia,1.0,t +406,50%,Gibraltar,1.0,t +41862,,Gibraltar,1.0,t +300,100%,France,2.0,t +28286,,Niue,1.0,f +22853,,Uzbekistan,2.0,t +24911,100%,,1.0,f +1223,,Cape Verde,1.0,t +20289,,Niue,1.0,t +3984,60%,Christmas Island,1.0,t +10166,100%,Isle of Man,2.0,t +23213,,Niue,1.0,t +30402,89%,Zimbabwe,2.0,t +45987,100%,Jersey,6.0,t +21349,100%,,1.0,f +20436,100%,Estonia,1.0,t +3546,,Gambia,1.0,f +37369,,,1.0,f +33491,100%,Marshall Islands,1.0,f +25257,,Sao Tome and Principe,1.0,f +38478,67%,Vanuatu,1.0,t +18798,,Monaco,1.0,f +19464,,Croatia,1.0,f +14385,,Mexico,1.0,t +21068,,Gambia,1.0,f +2016,,Tonga,1.0,t +28284,100%,Lithuania,2.0,f +44175,90%,,2.0,t +13289,,Bosnia and Herzegovina,1.0,f +9114,94%,Sao Tome and Principe,4.0,t +6472,100%,Guinea,2.0,f +44152,,Malta,1.0,f +45084,,Gambia,1.0,t +4876,,Senegal,9.0,f +32129,,Gambia,1.0,t +40468,,Uzbekistan,1.0,t +42379,100%,Cocos (Keeling) Islands,5.0,f +47854,,Netherlands,1.0,f +3289,,Malta,1.0,f +5713,,Nauru,1.0,t +28290,,Philippines,1.0,f +34786,,,1.0,f +28154,100%,,2.0,t +49671,100%,Senegal,2.0,t +10929,,Niger,1.0,f +16409,,French Guiana,1.0,f +34916,100%,,2.0,f +28859,,Congo,1.0,t +49589,,,1.0,t +16458,100%,Marshall Islands,1.0,t +13680,,Mauritania,1.0,f +44449,100%,El Salvador,2.0,t +43152,100%,Nicaragua,82.0,t +34431,,Russian Federation,1.0,t +8108,,French Guiana,1.0,f +22339,100%,Tonga,3.0,t +45781,,Bosnia and Herzegovina,1.0,t +22533,,Isle of Man,1.0,t +1180,,China,1.0,t +23892,,Tunisia,1.0,t +1254,100%,,1.0,t +25250,100%,,1.0,f +14361,,Maldives,1.0,f +35976,100%,,6.0,t +11047,96%,Senegal,3.0,t +44987,,,1.0,t +16231,100%,Guinea,1.0,t +33644,100%,Sao Tome and Principe,2.0,f +14603,100%,,1.0,f +16382,100%,Somalia,5.0,t +41028,100%,Micronesia,1.0,f +2164,82%,Rwanda,5.0,t +19943,63%,Isle of Man,34.0,f +30402,89%,Zimbabwe,2.0,t +10676,50%,,1.0,t +18249,,Niue,1.0,t +16382,100%,Somalia,5.0,t +5191,,Rwanda,1.0,f +25200,,Niue,1.0,t +5091,,Chad,1.0,f +22013,100%,Micronesia,4.0,f +48823,100%,,1.0,t +7637,,Mexico,1.0,f +15687,,Venezuela,1.0,t +17602,100%,,1.0,t +32513,,Russian Federation,1.0,t +40605,,,1.0,t +47167,,Denmark,1.0,t +9205,,,1.0,f +14778,,,1.0,f +1725,90%,France,3.0,f +33177,,Cape Verde,1.0,f +30828,,Saint Helena,1.0,f +5532,,Jersey,1.0,f +27548,100%,Finland,4.0,f +43900,,French Guiana,1.0,f +28544,,Maldives,1.0,f +29101,70%,,1.0,f +6928,,,3.0,t +34197,,Isle of Man,1.0,t +32774,,Guernsey,1.0,t +36619,100%,Chad,1.0,t +25529,,Niue,1.0,f +33046,,Niue,1.0,f +22948,,Montserrat,1.0,t +33082,,,1.0,t +10477,,Bahrain,1.0,f +46932,,,1.0,f +14764,,,1.0,t +37682,,Kiribati,2.0,f +6237,,Nicaragua,1.0,f +23777,,Chad,2.0,f +49647,100%,Marshall Islands,1.0,f +30727,,,1.0,f +13746,,Svalbard & Jan Mayen Islands,1.0,t +28054,,Sao Tome and Principe,1.0,f +1366,25%,Fiji,4.0,f +2413,,Barbados,1.0,t +38105,,Bosnia and Herzegovina,1.0,f +38499,,Croatia,1.0,t +42578,,Croatia,1.0,t +27015,100%,Kenya,2.0,t +27867,100%,Rwanda,1.0,t +24619,100%,,4.0,t +9919,,Ecuador,1.0,f +1204,100%,Chile,1.0,t +3920,,,1.0,t +21725,,,1.0,f +37502,100%,Croatia,6.0,t +3145,100%,Micronesia,3.0,t +37502,100%,Croatia,6.0,t +41645,100%,,1.0,f +40639,,,1.0,t +19135,,Sao Tome and Principe,1.0,t +6786,,Niue,1.0,t +41768,,Afghanistan,1.0,t +10373,90%,Bouvet Island (Bouvetoya),2.0,f +45092,,French Guiana,1.0,f +1251,,,1.0,f +38058,,Rwanda,1.0,f +21146,,,1.0,f +6831,,Montserrat,1.0,t +19564,100%,Turks and Caicos Islands,2.0,t +49410,,,1.0,t +26861,100%,Monaco,1.0,t +13701,90%,Uzbekistan,2.0,t +43785,,Russian Federation,1.0,t +16386,100%,Uzbekistan,1.0,t +41921,,Maldives,1.0,t +35409,,,1.0,f +22811,,Russian Federation,1.0,t +1914,90%,Chad,1.0,t +6989,100%,Indonesia,1.0,f +24827,100%,Gibraltar,3.0,f +40541,,Marshall Islands,1.0,f +35669,,,1.0,t +18620,,Faroe Islands,1.0,f +38419,,Peru,2.0,t +13920,100%,,3.0,t +36848,,Jersey,1.0,t +42269,94%,Russian Federation,3.0,t +417,100%,Monaco,2.0,t +27694,,Tonga,1.0,f +42426,83%,,2.0,f +2687,,Uzbekistan,4.0,t +10579,,El Salvador,1.0,f +11949,100%,,1.0,t +5242,,Malta,1.0,f +31415,,Tonga,4.0,t +49173,,Mauritania,1.0,f +27391,,,2.0,t +5612,,Chad,1.0,t +25470,100%,,1.0,t +9902,100%,Gibraltar,2.0,t +22937,100%,Papua New Guinea,1.0,f +45242,100%,Christmas Island,2.0,t +8012,100%,Sao Tome and Principe,2.0,t +28293,,Sao Tome and Principe,1.0,t +32174,,Gibraltar,1.0,f +29714,75%,Indonesia,1.0,t +45654,,,1.0,t +26044,100%,Gibraltar,1.0,f +28050,100%,Malta,1.0,f +23537,,Russian Federation,1.0,f +4449,,Malta,1.0,f +42731,,Lebanon,1.0,t +49191,,Nauru,1.0,t +12844,,,3.0,t +30538,,Bosnia and Herzegovina,1.0,t +25764,100%,,1.0,t +36587,,,1.0,f +24569,100%,Lebanon,1.0,f +23154,100%,France,1.0,t +9918,,,1.0,f +34463,100%,,1.0,t +1291,0%,,1.0,f +45242,100%,Christmas Island,2.0,t +17848,,Indonesia,1.0,t +46771,80%,Isle of Man,1.0,f +13082,100%,Kiribati,3.0,t +48765,100%,Kenya,1.0,t +19347,,Rwanda,1.0,f +18779,100%,Mexico,4.0,t +49934,100%,Liberia,9.0,t +13709,,Ecuador,1.0,t +21,,Sao Tome and Principe,1.0,t +1123,,Korea,1.0,f +38133,67%,,1.0,t +1966,,,1.0,t +28952,,Gibraltar,1.0,t +9798,,Mauritania,2.0,t +3880,,Lithuania,1.0,t +42523,60%,,1.0,t +18414,,United Kingdom,1.0,f +7426,,Marshall Islands,1.0,f +38092,,,1.0,t +37682,,Kiribati,2.0,f +19091,95%,Cook Islands,18.0,t +3743,100%,Kiribati,1.0,t +26325,100%,Uganda,2.0,t +32488,,Senegal,17.0,t +32488,,Senegal,17.0,t +12493,70%,Sao Tome and Principe,4.0,t +11449,100%,,1.0,t +48770,,Chile,1.0,f +45608,100%,,1.0,t +509,,Croatia,1.0,t +25282,100%,Malta,1.0,t +20746,90%,,3.0,f +26053,,Grenada,1.0,t +6652,,,1.0,t +44976,100%,Uzbekistan,1.0,f +31254,,Denmark,1.0,t +27455,100%,Uganda,1.0,t +48727,100%,Russian Federation,1.0,t +26693,,Sao Tome and Principe,1.0,f +7937,100%,Senegal,2.0,t +19926,,Tanzania,1.0,f +24793,,Niue,1.0,t +25294,,,1.0,t +18148,,Lebanon,1.0,f +10815,100%,Isle of Man,1.0,t +6228,75%,Libyan Arab Jamahiriya,1.0,f +362,100%,,1.0,f +5946,,,1.0,t +35390,,Croatia,1.0,t +45248,0%,Kiribati,1.0,f +41545,,French Guiana,1.0,t +24253,100%,Malawi,1.0,f +26273,89%,Niue,1.0,f +24415,,United Kingdom,1.0,t +1419,100%,Maldives,1.0,t +7012,,Afghanistan,1.0,f +19624,,Denmark,1.0,f +49285,100%,,1.0,f +37756,,Peru,1.0,f +29387,,Bosnia and Herzegovina,1.0,t +24435,,Isle of Man,1.0,t +2318,70%,,1.0,t +22831,,Croatia,1.0,t +35863,,Afghanistan,3.0,t +6787,100%,,1.0,t +24465,100%,Zimbabwe,1.0,t +15561,,Marshall Islands,1.0,f +36360,,,1.0,t +32445,,Papua New Guinea,1.0,t +22048,100%,Marshall Islands,3.0,t +27259,,Lebanon,1.0,f +6080,70%,French Guiana,1.0,f +14153,100%,Guinea,1.0,f +39202,100%,,1.0,t +25702,,,1.0,t +7738,,Russian Federation,1.0,t +908,,,1.0,f +37925,100%,Gambia,2.0,t +14737,,Kenya,1.0,f +6287,100%,Sao Tome and Principe,1.0,f +43824,100%,Cocos (Keeling) Islands,1.0,t +44255,,Chad,1.0,t +4715,,Lebanon,1.0,t +5770,100%,Zimbabwe,1.0,t +26440,,Maldives,1.0,f +44917,0%,,2.0,f +40420,,Kiribati,1.0,f +15032,,,1.0,t +25497,,Guinea,1.0,t +9063,,,1.0,f +14906,,Ecuador,1.0,t +5131,100%,Sao Tome and Principe,2.0,t +22537,100%,Indonesia,1.0,t +47054,,Brunei Darussalam,6.0,f +23629,,,1.0,f +378,,Gambia,1.0,f +18079,100%,,1.0,t +10121,,,1.0,t +15722,100%,Turkmenistan,11.0,t +12450,,Malawi,1.0,t +6037,80%,Guinea,9.0,t +35551,,,1.0,f +5404,,Turkmenistan,1.0,t +3684,,,1.0,f +44544,0%,Gibraltar,2.0,f +18806,100%,Vietnam,6.0,t +43706,,,1.0,f +37969,80%,Indonesia,3.0,f +7543,,Anguilla,2.0,t +48127,,Micronesia,1.0,t +46388,,Kenya,1.0,f +8805,,,1.0,t +12643,,Uzbekistan,1.0,t +44928,100%,,1.0,t +9608,,Lebanon,1.0,t +33662,,Chad,1.0,t +26258,100%,Sao Tome and Principe,2.0,f +44497,,China,1.0,t +26950,,Guinea,1.0,t +17146,100%,Lebanon,1.0,t +48153,,,1.0,t +30143,,Brazil,1.0,f +35431,,Sao Tome and Principe,1.0,f +24406,,Afghanistan,4.0,t +18261,100%,Niue,1.0,t +1804,,,1.0,f +29658,100%,United Kingdom,4.0,f +13705,100%,Indonesia,2.0,t +6727,100%,Kiribati,2.0,t +6727,100%,Kiribati,2.0,t +17700,,,1.0,f +13705,100%,Indonesia,2.0,t +39250,,Mexico,1.0,t +30175,,Russian Federation,2.0,t +32857,,United Kingdom,1.0,t +36943,,Zimbabwe,2.0,t +16435,,,1.0,t +610,,,1.0,f +6273,100%,Lithuania,5.0,t +6273,100%,Lithuania,5.0,t +8816,,,1.0,f +8430,,Peru,7.0,t +28828,100%,Isle of Man,198.0,t +27766,75%,,1.0,t +37032,,Russian Federation,2.0,t +37032,,Russian Federation,2.0,t +19564,100%,Turks and Caicos Islands,2.0,t +35734,,,1.0,f +11321,,,1.0,f +3158,,Estonia,1.0,f +13766,,France,1.0,f +7761,,,1.0,f +47656,100%,,2.0,f +17275,,Turkmenistan,3.0,f +36919,100%,,1.0,t +40049,100%,,2.0,f +21728,,,1.0,t +47020,,Zimbabwe,1.0,f +13518,,Niger,1.0,f +36238,,,2.0,t +36631,,Sao Tome and Principe,1.0,t +18287,,,1.0,f +5649,0%,Guinea,2.0,f +13830,100%,Faroe Islands,2.0,t +4030,,Chile,1.0,f +43618,100%,United Kingdom,1.0,t +43557,,Switzerland,2.0,t +14438,,,1.0,f +14489,,Uganda,1.0,t +28828,100%,Isle of Man,198.0,t +38823,,Netherlands Antilles,1.0,t +41133,100%,,2.0,f +26997,,,1.0,t +29504,,Venezuela,1.0,t +47542,,Mauritania,1.0,f +4623,,Philippines,2.0,f +43613,100%,Rwanda,1.0,t +178,,,1.0,f +5389,,Niger,2.0,t +38963,,,1.0,t +353,,Andorra,1.0,f +5847,80%,Malta,2.0,f +43280,,,1.0,t +19277,,Mauritania,1.0,f +18533,90%,Russian Federation,5.0,t +11555,100%,Chile,1.0,t +22505,100%,Marshall Islands,1.0,t +9479,,Russian Federation,1.0,t +33354,,Nicaragua,2.0,t +8701,100%,Niue,1.0,f +27905,,Rwanda,1.0,f +33354,,Nicaragua,2.0,t +49534,,Indonesia,1.0,f +1601,100%,,1.0,t +29252,,Anguilla,1.0,t +29329,,Malta,1.0,f +34274,,Niue,1.0,t +26327,,,1.0,t +42474,,Afghanistan,1.0,t +36871,,Chile,1.0,t +48899,,Marshall Islands,1.0,f +4741,,Guinea,1.0,f +8257,100%,Niger,1.0,t +47333,100%,Niue,4.0,f +34576,,Lebanon,1.0,t +20746,90%,,3.0,f +15130,100%,,1.0,f +4773,100%,Micronesia,3.0,t +39870,,Slovakia (Slovak Republic),21.0,t +12194,,Senegal,1.0,t +48670,100%,Gambia,2.0,f +44777,100%,Russian Federation,1.0,t +9448,,,1.0,t +40185,,Switzerland,1.0,f +49715,,,1.0,t +36979,,Lebanon,1.0,f +38679,,Pakistan,1.0,t +19851,100%,Venezuela,2.0,t +43241,100%,,1.0,t +32593,82%,,6.0,t +45713,,Slovakia (Slovak Republic),1.0,f +36149,,Rwanda,1.0,f +12744,,Sao Tome and Principe,1.0,t +19961,,,1.0,t +34003,100%,Guinea,1.0,t +47731,,Bosnia and Herzegovina,1.0,f +23004,100%,El Salvador,1.0,t +28712,,,1.0,f +6959,95%,Slovakia (Slovak Republic),20.0,t +6096,,,1.0,t +16382,100%,Somalia,5.0,t +26715,,Lebanon,1.0,f +34891,,Lebanon,1.0,f +11272,,Lebanon,1.0,f +38148,100%,Holy See (Vatican City State),1.0,t +32931,,Lebanon,2.0,t +6073,,Turkmenistan,1.0,f +32933,100%,Somalia,2.0,f +44548,,Isle of Man,1.0,t +20224,,Sao Tome and Principe,1.0,f +9045,,Uzbekistan,1.0,t +31306,100%,Nicaragua,6.0,t +7836,,,1.0,f +1462,,,1.0,f +45100,,Gambia,1.0,t +26317,,Maldives,1.0,f +12872,,Grenada,2.0,f +34477,,El Salvador,1.0,f +29842,100%,Malta,1.0,f +3722,,Bosnia and Herzegovina,1.0,t +6088,100%,,14.0,t +5017,,Kenya,1.0,t +33161,,Isle of Man,1.0,t +27247,,Jersey,1.0,t +16286,,,1.0,t +5994,,Uzbekistan,2.0,f +32055,29%,,1.0,f +47815,50%,Bosnia and Herzegovina,1.0,f +25877,100%,Uzbekistan,2.0,f +24661,,Reunion,2.0,f +20328,57%,Niue,1.0,t +1391,,Congo,1.0,t +42965,100%,Uzbekistan,11.0,t +46434,100%,Christmas Island,1.0,t +15793,100%,,1.0,t +2377,,Chad,1.0,f +38730,100%,,1.0,t +3724,,,1.0,f +45147,,Rwanda,1.0,t +7709,0%,,1.0,f +32937,100%,,2.0,t +23827,100%,,1.0,t +40298,100%,,2.0,f +40799,100%,Togo,2.0,f +20769,,,, +21213,94%,Kiribati,5.0,t +5078,,Kiribati,1.0,f +30113,,Russian Federation,1.0,f +21123,,Russian Federation,1.0,f +38526,100%,,3.0,t +8467,100%,China,1.0,f +49159,,Montserrat,1.0,f +33308,,Maldives,2.0,t +28289,,Guernsey,1.0,f +40197,,,1.0,t +7575,100%,Kiribati,2.0,f +14509,80%,Isle of Man,2.0,f +19958,100%,Congo,40.0,t +21618,,,1.0,f +15259,,Nicaragua,2.0,t +15259,,Nicaragua,2.0,t +358,100%,Guernsey,1.0,t +31563,100%,Niue,3.0,f +31563,100%,Niue,3.0,f +31563,100%,Niue,3.0,f +33752,100%,,1.0,t +6273,100%,Lithuania,5.0,t +47054,,Brunei Darussalam,6.0,f +37602,,El Salvador,1.0,f +20867,100%,Guinea,4.0,t +28306,,Ecuador,1.0,t +34462,,,1.0,f +14281,,Chad,2.0,t +45188,100%,,1.0,t +47900,100%,Reunion,1.0,t +24978,100%,Christmas Island,1.0,t +15921,,,1.0,t +7920,100%,Zimbabwe,3.0,t +34537,100%,,1.0,t +23929,100%,Puerto Rico,1.0,f +43893,,Christmas Island,1.0,f +39167,,,1.0,f +18142,,,1.0,f +45546,100%,Cape Verde,19.0,t +11474,100%,Andorra,1.0,t +18599,,,1.0,t +19452,,,1.0,t +42750,,Guinea,1.0,t +46317,,,1.0,t +13600,,Marshall Islands,1.0,f +42444,,Zimbabwe,1.0,f +33191,,Saint Helena,1.0,f +14037,,Fiji,1.0,t +20995,,Lebanon,1.0,f +26006,,,1.0,f +5093,100%,Russian Federation,1.0,f +29949,80%,,2.0,t +20392,100%,Niue,1.0,t +30524,,Lebanon,1.0,f +19764,100%,,1.0,f +33823,78%,France,17.0,t +6959,95%,Slovakia (Slovak Republic),20.0,t +25759,,Estonia,1.0,t +15783,100%,,1.0,f +46093,100%,Monaco,2.0,t +25316,,Guernsey,2.0,f +30188,89%,El Salvador,2.0,t +33186,,Russian Federation,1.0,f +34597,100%,Slovakia (Slovak Republic),3.0,t +16055,,Brazil,1.0,t +31043,100%,Marshall Islands,1.0,t +32652,,Uzbekistan,1.0,f +24928,,Lebanon,1.0,t +17275,,Turkmenistan,3.0,f +20780,,Gibraltar,1.0,t +33024,,Lebanon,1.0,t +6389,,Malta,1.0,t +19816,,,1.0,t +46650,100%,Turks and Caicos Islands,4.0,t +46650,100%,Turks and Caicos Islands,4.0,t +46650,100%,Turks and Caicos Islands,4.0,t +37026,70%,,2.0,t +21274,100%,,2.0,t +7289,,,1.0,f +44342,,,1.0,t +29506,,Lebanon,1.0,f +3184,,Netherlands Antilles,1.0,f +12733,,Sao Tome and Principe,1.0,t +33174,,Pakistan,1.0,t +41301,100%,Costa Rica,9.0,t +47989,100%,,2.0,t +40991,,,1.0,f +47989,100%,,2.0,t +12645,,Micronesia,1.0,t +40673,,Marshall Islands,1.0,f +30881,,,1.0,t +21085,,Russian Federation,1.0,t +16422,100%,Russian Federation,6.0,f +20593,,Gambia,1.0,t +13715,,Kenya,1.0,f +14553,100%,,1.0,f +26942,100%,Gibraltar,1.0,t +31541,,Finland,1.0,f +17791,,Malta,1.0,f +28899,,Chad,1.0,t +43603,,Nauru,1.0,t +5902,100%,Nicaragua,1.0,f +15779,,,1.0,t +23933,90%,Kenya,1.0,f +11989,,Chad,1.0,f +34456,,Bosnia and Herzegovina,1.0,f +6044,,Croatia,1.0,t +27972,94%,Brazil,27.0,f +47899,,,1.0,t +13157,100%,,1.0,t +12578,,Maldives,1.0,f +40800,,Costa Rica,1.0,f +3121,95%,Zimbabwe,9.0,t +42548,100%,Lithuania,2.0,t +29188,100%,French Guiana,3.0,t +42449,,,1.0,t +41988,,Costa Rica,1.0,f +5482,100%,Niue,3.0,f +22363,,Lebanon,1.0,t +31873,99%,Uzbekistan,22.0,f +24956,100%,Lebanon,2.0,t +48282,100%,Niue,2.0,t +26259,100%,Kenya,2.0,t +23186,,,1.0,f +22444,,Niue,1.0,t +2628,100%,Russian Federation,1.0,t +24170,86%,Indonesia,1.0,t +6838,96%,Spain,59.0,t +6838,96%,Spain,59.0,t +6838,96%,Spain,59.0,t +6838,96%,Spain,59.0,t +9117,100%,,1.0,t +18471,100%,Faroe Islands,1.0,f +36618,,French Guiana,1.0,t +45163,100%,Chile,2.0,t +10300,,Tunisia,1.0,f +44789,100%,Slovakia (Slovak Republic),1.0,t +39017,,Croatia,1.0,f +13384,,,1.0,f +24354,,Maldives,1.0,t +38038,,Senegal,1.0,f +15759,,Tonga,4.0,t +15759,,Tonga,4.0,t +14986,,Faroe Islands,1.0,t +25685,,Barbados,2.0,t +48762,,,1.0,t +21329,,,1.0,f +24180,100%,French Guiana,1.0,f +48920,100%,,3.0,t +29775,,,1.0,f +3181,100%,,2.0,f +23744,,Bouvet Island (Bouvetoya),1.0,t +2108,100%,Vanuatu,1.0,f +29913,100%,Isle of Man,1.0,t +26468,,,1.0,t +8979,100%,Micronesia,9.0,t +40776,,,1.0,f +8189,100%,Chile,2.0,t +47054,,Brunei Darussalam,6.0,f +30391,57%,Russian Federation,1.0,f +35732,,Uzbekistan,1.0,t +48374,83%,Kenya,2.0,t +28441,,,1.0,f +18367,,United Kingdom,1.0,t +13278,95%,Isle of Man,7.0,f +36680,,Andorra,1.0,t +35287,,Turkmenistan,1.0,f +6357,,,1.0,t +46613,,Zimbabwe,2.0,f +4016,100%,Venezuela,2.0,f +42798,,El Salvador,1.0,t +19256,,Isle of Man,1.0,f +18860,100%,,4.0,t +35316,100%,Netherlands Antilles,1.0,t +5343,100%,Faroe Islands,1.0,f +24706,,Anguilla,1.0,f +25794,100%,Estonia,2.0,t +45952,,Lithuania,1.0,t +34002,,Zimbabwe,1.0,t +17223,,Niue,1.0,f +44969,,,1.0,t +19519,,,1.0,f +22822,,,3.0,f +14958,100%,,1.0,t +23263,100%,Faroe Islands,1.0,f +16954,,,1.0,f +23784,,Uzbekistan,1.0,t +15592,,Turks and Caicos Islands,1.0,f +4273,,Sao Tome and Principe,1.0,t +3977,,Nicaragua,1.0,f +27173,,,1.0,t +21645,,Chile,1.0,t +12872,,Grenada,2.0,f +31851,,United Kingdom,1.0,f +15058,,,1.0,f +34074,,Faroe Islands,2.0,t +21564,,,1.0,t +38456,,Vietnam,1.0,t +12174,,Micronesia,1.0,f +48489,100%,Gambia,2.0,t +11877,,Maldives,1.0,t +18038,,,1.0,f +46304,,Maldives,1.0,t +43311,,Indonesia,1.0,f +49528,0%,,1.0,f +21680,100%,,1.0,t +7599,,Turkmenistan,1.0,f +35688,,Tanzania,1.0,t +10047,,Niue,2.0,t +10047,,Niue,2.0,t +28048,100%,,5.0,f +48828,,French Guiana,1.0,t +29647,100%,Peru,1305.0,f +44616,,,1.0,f +3297,,,1.0,f +15392,,,1.0,f +20380,,Croatia,1.0,t +6838,96%,Spain,59.0,t +7427,,Anguilla,1.0,f +27229,100%,Malta,1.0,t +32868,,Sao Tome and Principe,1.0,f +31662,,Malta,1.0,f +3257,,,1.0,f +15264,,Maldives,1.0,f +7203,,Niger,1.0,t +13009,,United Kingdom,1.0,t +9710,,Gambia,1.0,t +23109,,Faroe Islands,1.0,t +368,,Russian Federation,1.0,t +33210,100%,,1.0,f +44233,,Malta,3.0,t +32639,,Gambia,2.0,f +34413,,Tunisia,1.0,f +26667,,Djibouti,1.0,f +16746,,,1.0,t +44233,,Malta,3.0,t +37581,,,1.0,t +29587,,Cook Islands,1.0,f +42250,100%,,2.0,t +20667,,Nicaragua,1.0,f +17265,,Malawi,1.0,t +32544,100%,Gambia,1.0,f +11434,100%,,1.0,t +44921,,Wallis and Futuna,3.0,t +8979,100%,Micronesia,9.0,t +32631,,Chile,1.0,f +42046,,Kiribati,7.0,t +38985,,Lebanon,1.0,t +18922,,,1.0,f +48517,,Indonesia,1.0,f +44528,80%,Russian Federation,1.0,f +37236,100%,China,3.0,f +2662,,,1.0,f +35736,,,1.0,f +5482,100%,Niue,3.0,f +37314,100%,,1.0,f +33346,,Lebanon,1.0,f +28041,,Guernsey,1.0,f +44917,0%,,2.0,f +45593,100%,Micronesia,3.0,t +16968,,,1.0,t +18732,,France,1.0,f +34297,,Brazil,1.0,t +7847,100%,Marshall Islands,2.0,t +49556,,French Guiana,1.0,t +31494,100%,Puerto Rico,2.0,f +28769,,,1.0,t +2256,100%,,1.0,f +35179,100%,Faroe Islands,1.0,f +34597,100%,Slovakia (Slovak Republic),3.0,t +45027,,Bosnia and Herzegovina,1.0,f +17275,,Turkmenistan,3.0,f +42131,,Bouvet Island (Bouvetoya),1.0,t +14477,100%,Reunion,26.0,t +39976,100%,Finland,1.0,t +40207,100%,,2.0,t +38771,100%,Guernsey,1.0,f +35131,100%,Faroe Islands,1.0,t +25105,100%,Uzbekistan,2.0,t +29822,90%,Brazil,11.0,t +42046,,Kiribati,7.0,t +44784,,Malta,1.0,f +15430,,,2.0,t +11478,,,1.0,t +46792,,Sao Tome and Principe,1.0,t +46067,,Rwanda,1.0,t +43812,,,1.0,f +39537,,,1.0,f +2671,100%,Uzbekistan,2.0,t +22667,75%,Gambia,1.0,t +23791,,,1.0,t +26098,,Sao Tome and Principe,1.0,t +14350,100%,Nauru,2.0,f +12087,,Jersey,2.0,f +29013,100%,Brazil,1.0,t +20676,,,1.0,t +26783,60%,,2.0,f +5304,,Isle of Man,1.0,f +26783,60%,,2.0,f +35048,,Sao Tome and Principe,1.0,f +45472,,Zimbabwe,1.0,t +18662,70%,Uruguay,4.0,t +32295,,,3.0,f +32295,,,3.0,f +32295,,,3.0,f +11163,,Gambia,1.0,f +27120,,Lebanon,1.0,f +20954,,Guinea,1.0,t +11618,,Montserrat,2.0,f +36705,,Niue,1.0,f +28824,50%,Estonia,2.0,f +2113,100%,Venezuela,1.0,t +40337,,Ecuador,2.0,t +21737,88%,Sao Tome and Principe,2.0,f +41170,,Christmas Island,1.0,t +34111,,Chile,1.0,t +47688,,,1.0,t +29654,78%,French Guiana,1.0,f +29592,83%,Andorra,1.0,t +41878,91%,Maldives,47.0,f +49147,83%,Turkmenistan,2.0,f +18930,,Gambia,1.0,f +43879,,Kenya,1.0,t +15904,100%,Afghanistan,2.0,f +42535,,Nauru,1.0,t +6799,75%,,1.0,f +2285,100%,,1.0,f +19903,60%,,2.0,t +29159,,Lithuania,1.0,t +827,,Sao Tome and Principe,1.0,f +16842,100%,Tanzania,2.0,t +35621,,Uzbekistan,1.0,t +43031,,,1.0,t +14897,100%,Russian Federation,2.0,t +6860,,Djibouti,1.0,f +20106,100%,,1.0,f +44646,,Uzbekistan,1.0,t +4154,,French Guiana,2.0,t +6521,100%,Nicaragua,1.0,t +11444,,Malta,1.0,f +31840,100%,Denmark,1.0,f +40209,,,1.0,f +47357,,Jersey,1.0,f +38957,,Kiribati,1.0,f +27972,94%,Brazil,27.0,f +20579,100%,,1.0,f +2123,,Russian Federation,1.0,f +45055,,Brazil,3.0,t +34607,,Congo,1.0,t +6152,,Nauru,2.0,t +46719,,Maldives,1.0,t +2696,,Maldives,2.0,f +1577,100%,Peru,8.0,t +24755,,,1.0,t +32024,,,1.0,t +36718,,,1.0,t +26423,,Monaco,1.0,f +33077,,,1.0,t +27807,,Lebanon,1.0,t +43076,100%,Jersey,2.0,t +41927,,Marshall Islands,1.0,f +12345,,Pakistan,1.0,t +19612,,Jersey,1.0,t +20523,100%,Svalbard & Jan Mayen Islands,1.0,f +42191,,Bouvet Island (Bouvetoya),1.0,t +10256,100%,Lebanon,1.0,t +22988,,Libyan Arab Jamahiriya,1.0,t +24865,,,2.0,f +24955,,Marshall Islands,1.0,f +35454,100%,China,9.0,f +49064,100%,Lebanon,2.0,f +3181,100%,,2.0,f +16925,,,1.0,f +19615,,Lebanon,1.0,t +6959,95%,Slovakia (Slovak Republic),20.0,t +35454,100%,China,9.0,f +17355,,Nauru,1.0,f +35454,100%,China,9.0,f +17010,100%,United Kingdom,2.0,t +22794,50%,Cape Verde,36.0,t +35454,100%,China,9.0,f +22269,100%,Monaco,1.0,f +18220,,Kenya,1.0,f +48334,100%,Guinea,12.0,f +48334,100%,Guinea,12.0,f +48334,100%,Guinea,12.0,f +45255,100%,Lebanon,5.0,t +22892,100%,,1.0,t +26850,,Somalia,1.0,t +11618,,Montserrat,2.0,f +42815,100%,Kenya,3.0,t +36641,100%,Vietnam,5.0,f +45449,100%,El Salvador,1.0,t +27183,100%,Mauritania,2.0,f +2038,,Lebanon,1.0,t +669,,Niue,1.0,t +26359,,,1.0,f +42102,,Tonga,1.0,f +18345,,Puerto Rico,1.0,t +43904,,United Kingdom,1.0,t +498,,Lebanon,1.0,f +7844,100%,Bahrain,1.0,f +48287,,Niue,1.0,f +34700,,Palestinian Territory,1.0,f +25982,,Bouvet Island (Bouvetoya),1.0,t +28832,,Nicaragua,2.0,t +2029,,El Salvador,1.0,t +11772,,Guinea,1.0,f +10996,100%,Russian Federation,3.0,t +33335,100%,Gibraltar,3.0,t +37335,,Reunion,2.0,t +6423,,Malta,2.0,t +23540,75%,,1.0,f +34366,,Zimbabwe,1.0,f +36713,0%,Cape Verde,1.0,t +49997,,Montserrat,1.0,t +35062,,Guernsey,2.0,t +34719,,Gambia,1.0,f +39554,,,1.0,t +23965,,Marshall Islands,1.0,t +37798,,France,1.0,t +47054,,Brunei Darussalam,6.0,f +38265,100%,Montserrat,3.0,t +24852,100%,Wallis and Futuna,3.0,f +39791,,,1.0,f +9680,,Uzbekistan,1.0,t +16886,,Faroe Islands,1.0,f +44993,,Niue,1.0,t +2684,,Tanzania,1.0,f +15717,,United Kingdom,1.0,f +33305,,Malta,1.0,t +29990,86%,,1.0,t +38845,,Niue,1.0,f +3163,100%,Nicaragua,1.0,f +5493,50%,,2.0,f +5322,,,1.0,f +29678,100%,Nicaragua,1.0,f +13992,,Maldives,1.0,t +25507,100%,Malta,3.0,f +21884,,Isle of Man,1.0,t +48662,,Bahrain,1.0,t +35406,87%,Indonesia,3.0,f +22931,100%,,1.0,f +18087,,Uganda,2.0,t +21286,100%,Tonga,6.0,t +17010,100%,United Kingdom,2.0,t +18742,,Vanuatu,1.0,f +22091,100%,Faroe Islands,9.0,f +39870,,Slovakia (Slovak Republic),21.0,t +1819,97%,Malta,3.0,t +27972,94%,Brazil,27.0,f +16717,,Malta,1.0,f +41027,100%,Russian Federation,1.0,t +47168,100%,Netherlands,8.0,f +35971,,Kiribati,1.0,f +18087,,Uganda,2.0,t +28186,88%,,1.0,t +29493,,Zimbabwe,1.0,t +21107,,Indonesia,1.0,f +29753,100%,El Salvador,3.0,t +14075,100%,Indonesia,2.0,t +484,100%,Nicaragua,1.0,t +19853,,Brazil,1.0,t +38217,,Mauritania,1.0,f +550,100%,Vietnam,2.0,f +37361,,Monaco,1.0,t +28664,100%,,1.0,t +36663,,Ghana,5.0,t +43449,,Costa Rica,1.0,t +24469,100%,Montserrat,1.0,t +9190,,Lebanon,1.0,f +18829,100%,Indonesia,4.0,t +14238,,Maldives,1.0,f +30489,,Venezuela,2.0,t +15734,,Turkmenistan,5.0,t +24894,60%,Christmas Island,1.0,f +12633,,Cape Verde,1.0,f +46189,,Uzbekistan,2.0,f +23683,,,1.0,f +12783,,Micronesia,1.0,f +27366,100%,Uzbekistan,9.0,t +42089,100%,,1.0,t +17431,,Kenya,1.0,f +21075,,Uzbekistan,2.0,t +36079,,Ghana,1.0,f +30472,100%,Micronesia,2.0,f +21883,,Bahrain,11.0,t +46306,100%,Monaco,1.0,f +30570,,Chile,1.0,t +14734,,Niue,1.0,f +7575,100%,Kiribati,2.0,f +5457,100%,Niue,5.0,t +34508,,Chile,1.0,f +12104,,,2.0,f +10996,100%,Russian Federation,3.0,t +31329,,Christmas Island,2.0,t +30987,100%,Monaco,1.0,t +40706,100%,,2.0,f +18543,,Lebanon,1.0,f +12925,,Lebanon,1.0,t +24320,,Libyan Arab Jamahiriya,1.0,t +15624,,Croatia,1.0,t +37625,,,1.0,f +9200,,Russian Federation,1.0,t +47341,100%,Lithuania,2.0,t +31557,,Niue,1.0,t +28168,100%,Micronesia,1.0,t +32871,0%,French Guiana,1.0,t +30673,,Marshall Islands,1.0,t +6660,100%,Guinea,2.0,t +22862,,,1.0,t +48318,,French Guiana,2.0,t +46571,,Senegal,1.0,t +39553,,Pakistan,1.0,f +9294,,Russian Federation,1.0,f +37126,,Jersey,1.0,f +26607,,Moldova,1.0,t +5229,,Niue,1.0,f +9949,100%,Croatia,1.0,t +29384,,Niger,1.0,f +38455,100%,Lebanon,2.0,t +12914,,Lithuania,1.0,f +15719,100%,,1.0,f +19848,,Mauritania,1.0,f +9580,,,1.0,f +14674,,Maldives,1.0,f +44716,,Marshall Islands,1.0,f +34053,,,1.0,t +10936,,,1.0,f +35362,,Gambia,1.0,f +15900,100%,Turks and Caicos Islands,2.0,f +2787,,Uzbekistan,1.0,f +3363,100%,,2.0,t +8969,,Micronesia,1.0,t +46862,,Lebanon,1.0,t +27046,,,1.0,t +2786,100%,,1.0,f +3363,100%,,2.0,t +2641,,,1.0,f +46585,,Russian Federation,2.0,t +16161,,,1.0,t +47190,,Zimbabwe,1.0,t +49263,90%,Micronesia,3.0,t +20121,,Guernsey,1.0,t +38491,100%,Rwanda,3.0,t +10069,,Malta,2.0,f +19583,,Lebanon,1.0,t +31511,,,1.0,t +29256,,Sao Tome and Principe,1.0,t +34338,,Niue,1.0,t +24612,,Malawi,1.0,f +48596,,,1.0,f +24042,,Philippines,1.0,t +10133,,,1.0,t +19681,,,2.0,t +33613,,Guernsey,1.0,f +28225,100%,Turkmenistan,1.0,f +45036,0%,,1.0,f +5441,89%,,1.0,t +9951,,,1.0,f +45727,,Niue,1.0,t +42204,,Micronesia,2.0,t +39566,,Sao Tome and Principe,4.0,t +45987,100%,Jersey,6.0,t +42965,100%,Uzbekistan,11.0,t +14527,83%,Greenland,1.0,t +16382,100%,Somalia,5.0,t +10719,100%,,1.0,t +40349,,,1.0,f +41999,,Mexico,1.0,f +47327,100%,,2.0,f +3118,,Malta,1.0,t +36131,100%,Bouvet Island (Bouvetoya),6.0,f +19438,,Bosnia and Herzegovina,1.0,t +37092,,Pakistan,1.0,f +47656,100%,,2.0,f +10867,100%,Malawi,1.0,t +48686,0%,Gambia,1.0,f +27451,100%,Zimbabwe,1.0,t +18217,,French Guiana,2.0,f +15591,,Bosnia and Herzegovina,1.0,t +36644,100%,Ecuador,4.0,t +2643,,Anguilla,1.0,t +35927,100%,Bosnia and Herzegovina,1.0,t +19286,,Tonga,1.0,t +43078,,Turks and Caicos Islands,1.0,f +17541,100%,Niue,2.0,f +50031,,,1.0,f +2630,,Zimbabwe,1.0,t +37151,40%,Zimbabwe,1.0,f +22339,100%,Tonga,3.0,t +19145,100%,,1.0,t +35898,33%,Niue,3.0,t +39200,100%,El Salvador,2.0,t +22704,100%,Malta,1.0,f +19903,60%,,2.0,t +13277,100%,Rwanda,2.0,t +7363,,Ghana,1.0,f +39200,100%,El Salvador,2.0,t +37612,,Gambia,2.0,t +22735,,Gambia,1.0,f +2140,100%,,1.0,f +23621,100%,,1.0,t +45919,100%,Montserrat,9.0,t +22634,100%,Gambia,3.0,f +4489,,Somalia,1.0,f +4281,,Niue,1.0,t +19374,100%,Gambia,2.0,t +12446,100%,,2.0,t +23730,,Gambia,1.0,f +43462,,,1.0,t +32717,,Guinea,1.0,f +49053,94%,Indonesia,4.0,t +5457,100%,Niue,5.0,t +44121,100%,Nicaragua,5.0,f +33236,,Russian Federation,1.0,t +30300,,French Guiana,1.0,t +12266,,Peru,2.0,f +39566,,Sao Tome and Principe,4.0,t +3348,,,1.0,t +25444,,Russian Federation,1.0,f +16626,100%,Rwanda,1.0,t +32509,,,1.0,f +4512,,,1.0,t +23161,100%,Sao Tome and Principe,2.0,f +47405,,Niue,1.0,f +25267,100%,Jersey,1.0,f +21883,,Bahrain,11.0,t +1952,100%,Denmark,2.0,t +15836,,Isle of Man,1.0,f +6135,,Malawi,1.0,f +34655,100%,Ecuador,7.0,f +48259,100%,,1.0,f +27393,,Vanuatu,1.0,f +10557,100%,Fiji,1.0,f +1376,,,1.0,t +27771,100%,Rwanda,1.0,t +27889,100%,,3.0,t +42892,,Tanzania,1.0,f +16423,,Isle of Man,1.0,f +24039,,Brazil,1.0,t +30433,,,4.0,t +4405,94%,Indonesia,3.0,f +4405,94%,Indonesia,3.0,f +38427,100%,Isle of Man,1.0,t +5524,100%,Guinea,1.0,f +16577,,,1.0,t +40196,100%,Chile,2.0,t +18136,,Jersey,1.0,t +225,,Montserrat,1.0,t +10261,,,1.0,f +45743,,Isle of Man,1.0,f +29616,,Tonga,1.0,f +41712,80%,Zimbabwe,2.0,t +46929,0%,Svalbard & Jan Mayen Islands,1.0,t +31519,,,1.0,t +17234,,United Kingdom,1.0,f +27243,,El Salvador,1.0,t +20170,,Niue,1.0,t +40496,,,1.0,t +14560,100%,Barbados,2.0,f +11106,0%,,2.0,t +6827,100%,Afghanistan,4.0,t +25866,,Malta,1.0,f +36481,95%,Kiribati,7.0,t +11508,80%,,1.0,f +29420,,Russian Federation,1.0,t +15319,,Malta,1.0,t +32997,,,1.0,f +40862,,Guinea,1.0,f +28976,,Saint Helena,3.0,f +38675,100%,Slovakia (Slovak Republic),16.0,t +47413,,,1.0,t +2521,,Nicaragua,1.0,f +34960,,Isle of Man,1.0,f +35949,,French Guiana,2.0,t +16393,,Indonesia,1.0,f +15621,,Lebanon,1.0,t +14786,,Marshall Islands,2.0,f +3558,,,1.0,t +50005,100%,Monaco,2.0,t +1811,100%,,3.0,f +22742,,Barbados,1.0,f +45587,,Malta,1.0,t +8954,,Holy See (Vatican City State),1.0,t +220,,Turkmenistan,1.0,t +6763,100%,Uganda,1.0,f +9328,,,1.0,f +32035,,Tonga,1.0,t +10775,100%,Guinea,2.0,t +10068,100%,,2.0,t +748,,Montserrat,1.0,t +19212,,Croatia,1.0,f +10068,100%,,2.0,t +24080,100%,Kiribati,1.0,t +2606,,Estonia,1.0,t +38408,,Montserrat,1.0,f +36706,100%,Mexico,1.0,f +4024,100%,Zimbabwe,1.0,t +34205,,,1.0,f +12027,100%,Uzbekistan,4.0,t +12634,100%,Philippines,1.0,f +42365,100%,,1.0,t +16172,100%,,2.0,t +31933,,Chad,1.0,t +17840,100%,Uganda,3.0,t +39945,,Nicaragua,1.0,f +49493,,Gambia,1.0,t +4223,100%,,2.0,t +48170,67%,French Polynesia,2.0,f +33399,,Micronesia,1.0,t +47399,,French Guiana,1.0,t +48512,90%,Isle of Man,1.0,f +44505,,Kenya,1.0,f +16765,100%,Uzbekistan,1.0,t +18405,,Nauru,1.0,t +43586,,Mauritania,1.0,t +46348,,Nicaragua,1.0,f +25621,,Marshall Islands,1.0,t +21014,,,1.0,f +26563,,Brazil,1.0,f +45681,,,1.0,t +27938,,French Guiana,1.0,t +21254,100%,,1.0,f +1231,0%,Malawi,1.0,f +26228,100%,,1.0,t +31161,100%,Isle of Man,2.0,t +18632,100%,,2.0,t +16508,,,1.0,f +40330,100%,Isle of Man,1.0,t +31885,100%,,1.0,f +45602,100%,,1.0,t +17719,,Cuba,1.0,t +26789,,Guinea,3.0,t +4922,100%,Togo,1.0,f +31914,,Malta,1.0,t +13768,100%,Ecuador,2.0,t +42229,100%,Fiji,25.0,f +18480,90%,Monaco,4.0,t +40671,100%,Bosnia and Herzegovina,2.0,t +20334,99%,Niger,171.0,t +12916,,,9.0,t +44457,,,1.0,f +12916,,,9.0,t +12916,,,9.0,t +16171,100%,Palestinian Territory,1.0,t +12916,,,9.0,t +34685,,Chad,1.0,t +45126,60%,Sao Tome and Principe,1.0,t +8404,,Rwanda,2.0,t +43235,,Nicaragua,1.0,f +46536,,,1.0,t +41439,,Monaco,1.0,f +46060,,Tonga,1.0,t +39461,,,1.0,f +46725,,Nicaragua,1.0,t +37189,,Malta,1.0,f +14980,,Maldives,1.0,f +21008,100%,Bouvet Island (Bouvetoya),1.0,f +46495,100%,,1.0,f +26897,,Bouvet Island (Bouvetoya),1.0,f +5220,90%,Papua New Guinea,1.0,f +25155,,,1.0,t +31837,100%,Niue,2.0,t +18283,,Barbados,2.0,t +8072,,Estonia,1.0,t +27334,100%,China,16.0,f +15232,,Russian Federation,2.0,t +17910,,Reunion,1.0,t +21043,,,1.0,t +48912,,Micronesia,1.0,t +45630,,Cook Islands,1.0,t +46111,,Russian Federation,1.0,f +7525,,,1.0,t +5913,,,1.0,f +19158,,Pakistan,2.0,t +33079,,French Guiana,1.0,t +9212,,,1.0,f +1266,100%,,1.0,t +45861,100%,Turks and Caicos Islands,2.0,f +571,,,2.0,f +41684,,Turks and Caicos Islands,1.0,t +36500,100%,Malta,7.0,t +15812,,Chad,1.0,t +45861,100%,Turks and Caicos Islands,2.0,f +40809,,Philippines,1.0,t +45230,100%,Philippines,2.0,t +44222,,Netherlands,1.0,f +5706,78%,,1.0,t +32443,,Costa Rica,4.0,t +7470,100%,Peru,1.0,t +32443,,Costa Rica,4.0,t +571,,,2.0,f +40133,100%,Gambia,1.0,t +10475,,Mauritania,1.0,t +35013,100%,Nicaragua,2.0,t +47228,,Russian Federation,1.0,f +8539,100%,Mexico,1.0,t +155,70%,Micronesia,2.0,f +48895,,,1.0,f +39428,100%,French Guiana,1.0,t +18463,100%,Isle of Man,1.0,f +13416,0%,Guinea,1.0,t +43860,,Micronesia,2.0,f +40655,,,1.0,f +34919,20%,Guinea,1.0,t +14719,100%,Ecuador,2.0,t +27940,100%,Anguilla,2.0,f +43860,,Micronesia,2.0,f +38843,100%,Uzbekistan,3.0,f +19593,,Gambia,1.0,f +16160,,,4.0,t +32853,,French Guiana,2.0,t +26796,100%,Gibraltar,1.0,t +3220,100%,,1.0,t +16160,,,4.0,t +8009,,Sao Tome and Principe,1.0,t +38172,,Chad,1.0,t +39951,100%,Vanuatu,1.0,f +4445,,Micronesia,1.0,f +13169,,Malta,1.0,f +13339,,,1.0,f +24660,100%,Papua New Guinea,2.0,t +26821,,Monaco,1.0,t +38162,100%,Niger,8.0,f +33283,100%,Isle of Man,1.0,t +16010,,,1.0,f +17856,,Lebanon,1.0,t +13366,,Malawi,1.0,t +46226,,,1.0,t +19545,,Chad,1.0,t +36488,0%,,1.0,f +6792,70%,,1.0,t +49753,,Anguilla,1.0,t +21860,100%,France,2.0,t +4842,,,1.0,t +44721,100%,,1.0,f +44229,,,1.0,t +12836,,,1.0,t +39871,,Gibraltar,1.0,f +8019,,Malta,1.0,f +49043,100%,Micronesia,4.0,t +46843,0%,,1.0,f +42682,,Guinea,1.0,f +9330,,United Kingdom,1.0,t +3736,100%,,1.0,t +9640,100%,Denmark,2.0,t +43883,,Russian Federation,1.0,t +35002,,El Salvador,1.0,f +15098,,Russian Federation,1.0,t +34655,100%,Ecuador,7.0,f +43454,100%,,1.0,t +36270,100%,Maldives,2.0,f +35498,,,1.0,t +42229,100%,Fiji,25.0,f +27289,99%,Reunion,12.0,t +36663,,Ghana,5.0,t +19817,100%,Papua New Guinea,2.0,f +30826,,,1.0,f +14486,,Anguilla,1.0,t +5991,,Lebanon,3.0,t +41903,100%,,1.0,f +28976,,Saint Helena,3.0,f +44233,,Malta,3.0,t +5991,,Lebanon,3.0,t +1454,,,1.0,t +128,,,1.0,f +14268,100%,Mauritania,3.0,t +5820,,,1.0,f +10069,,Malta,2.0,f +23634,,Marshall Islands,1.0,t +7331,99%,Indonesia,8.0,t +12119,0%,,1.0,t +13403,96%,Maldives,21.0,t +13895,100%,,1.0,t +10499,,,1.0,f +4492,,Rwanda,1.0,f +2825,,Monaco,1.0,f +46613,,Zimbabwe,2.0,f +34550,100%,Maldives,1.0,t +27394,,Nauru,1.0,t +10057,100%,Guernsey,2.0,t +42473,,Venezuela,1.0,f +39974,,,1.0,f +34717,100%,Niue,3.0,t +11173,,Isle of Man,1.0,t +19140,,Malta,1.0,f +34066,100%,,2.0,t +4858,,,1.0,f +6567,83%,,1.0,t +15931,100%,,4.0,f +40900,,,3.0,f +29658,100%,United Kingdom,4.0,f +48455,89%,Uzbekistan,20.0,t +37647,100%,Gambia,4.0,f +16845,90%,Chile,1.0,t +1801,,Russian Federation,1.0,t +16987,,Malta,1.0,f +48129,100%,,1.0,f +97,,Netherlands,1.0,t +25731,,Tonga,1.0,t +30034,,,2.0,f +44801,,Malta,1.0,f +48414,100%,Guinea,3.0,t +20916,,Tonga,1.0,t +14957,,Rwanda,1.0,f +7561,100%,Venezuela,6.0,t +33412,,Indonesia,1.0,t +40843,100%,Tonga,1.0,f +10257,,,1.0,t +48904,,Lithuania,1.0,t +49389,,Malta,1.0,t +16112,,Kenya,2.0,t +18769,,,1.0,f +27391,,,2.0,t +899,,Jersey,2.0,t +38807,,Indonesia,2.0,t +22258,,Kenya,2.0,t +20671,100%,Guinea,3.0,f +1764,90%,,1.0,f +22080,,Montserrat,1.0,t +44968,100%,Croatia,2.0,t +37388,,Anguilla,1.0,f +24514,,,1.0,f +41920,100%,Ukraine,2.0,f +6515,100%,Sao Tome and Principe,1.0,t +38010,,,1.0,t +12500,,,2.0,t +13727,,Uzbekistan,1.0,t +27275,,,1.0,f +37883,95%,United Kingdom,3.0,f +5155,100%,Monaco,2.0,t +20338,,United Kingdom,1.0,t +23319,,Russian Federation,1.0,f +30697,100%,Nicaragua,1.0,t +27079,,Maldives,14.0,t +49654,,,1.0,t +19509,100%,,1.0,f +13861,,,1.0,f +41661,,Vietnam,1.0,t +22084,92%,,1.0,t +12336,,Lebanon,1.0,t +16619,,Zimbabwe,2.0,t +7049,100%,Tonga,3.0,t +5809,100%,,2.0,f +7929,,French Guiana,1.0,f +7523,100%,Togo,1.0,f +16260,100%,United Kingdom,4.0,t +34655,100%,Ecuador,7.0,f +13048,100%,Uzbekistan,2.0,f +9995,,Gambia,1.0,f +40386,100%,Nicaragua,4.0,t +2437,,,1.0,t +27535,67%,Isle of Man,1.0,f +32531,100%,Togo,4.0,f +29292,100%,Malta,3.0,t +32531,100%,Togo,4.0,f +19117,100%,,1.0,t +10658,80%,Wallis and Futuna,2.0,f +8740,,Guinea,1.0,t +23442,,French Guiana,1.0,t +2528,,Reunion,1.0,t +11366,,,1.0,f +37719,,Mexico,1.0,f +24695,,Gambia,1.0,f +25052,64%,,5.0,t +6076,,Niue,1.0,t +24125,,Maldives,1.0,f +26505,100%,Monaco,1.0,f +36986,,Isle of Man,2.0,t +34438,80%,,1.0,f +1735,100%,,2.0,f +41138,100%,Turks and Caicos Islands,3.0,t +30630,,,1.0,t +33367,,,1.0,f +38084,,,1.0,t +26885,,Korea,1.0,f +29862,0%,Korea,1.0,t +49298,,El Salvador,2.0,f +28131,100%,,1.0,t +2803,,Uzbekistan,1.0,t +37940,,Monaco,1.0,f +31799,100%,El Salvador,1.0,t +25430,100%,Kiribati,1.0,t +16135,100%,Zimbabwe,2.0,t +21810,100%,Zimbabwe,2.0,f +43713,,Kiribati,1.0,t +33541,,Nicaragua,1.0,f +29890,100%,United Kingdom,2.0,t +44112,,,1.0,t +27270,100%,Tonga,1.0,t +47072,,,1.0,f +14644,,Russian Federation,3.0,f +4336,,Cuba,1.0,t +25052,64%,,5.0,t +29823,90%,Togo,3.0,f +41403,,Gambia,1.0,t +32269,100%,Finland,1.0,t +18903,,,2.0,t +21485,,Cape Verde,1.0,t +44631,100%,,1.0,f +44011,,,1.0,f +17653,,,1.0,f +33995,,Guinea,1.0,f +35121,,Tonga,1.0,t +35870,,,1.0,t +46691,90%,Uzbekistan,38.0,f +44270,,,1.0,t +15485,,Montserrat,1.0,t +39566,,Sao Tome and Principe,4.0,t +47042,100%,Lebanon,2.0,t +18109,100%,Anguilla,2.0,f +21874,,Finland,2.0,t +15722,100%,Turkmenistan,11.0,t +4569,,Lebanon,1.0,f +1672,100%,Tanzania,1.0,f +48993,,,1.0,f +47042,100%,Lebanon,2.0,t +33265,,Somalia,1.0,f +25474,,Philippines,1.0,f +49190,,Russian Federation,1.0,f +9781,,Tunisia,1.0,f +6817,,Gibraltar,1.0,t +11313,,Tonga,1.0,t +25025,,,2.0,t +7145,,Niue,2.0,t +8518,100%,Peru,1.0,f +42072,,Bosnia and Herzegovina,1.0,f +9846,100%,Indonesia,3.0,t +30201,,Jersey,1.0,t +39154,0%,Sao Tome and Principe,1.0,t +9524,,,1.0,f +27891,,,1.0,f +36301,,Togo,1.0,f +19912,,Estonia,1.0,f +24868,100%,,2.0,t +267,,Malta,1.0,t +32152,100%,,1.0,t +6959,95%,Slovakia (Slovak Republic),20.0,t +659,100%,Afghanistan,1.0,t +32531,100%,Togo,4.0,f +33560,,Kiribati,4.0,t +48179,,,1.0,t +33560,,Kiribati,4.0,t +23374,0%,Togo,2.0,t +46413,,,1.0,f +9021,,Malta,1.0,t +36101,80%,Russian Federation,1.0,t +48044,100%,Niger,1.0,f +19476,,,1.0,t +18070,100%,Costa Rica,2.0,f +44397,,Isle of Man,1.0,t +20236,100%,Isle of Man,1.0,t +34820,,Malta,1.0,f +33172,100%,,2.0,t +25025,,,2.0,t +20184,100%,Niue,1.0,t +25894,,Malta,2.0,f +1554,,,2.0,t +1490,,Jersey,1.0,t +14682,,French Polynesia,3.0,t +46650,100%,Turks and Caicos Islands,4.0,t +4008,94%,,1.0,f +9025,88%,Micronesia,1.0,t +22607,0%,Isle of Man,1.0,f +32285,,,1.0,f +5719,,Lebanon,1.0,f +23332,100%,Bosnia and Herzegovina,2.0,f +41047,,,1.0,t +25463,100%,,1.0,t +207,100%,Tanzania,1.0,t +38543,,Jersey,1.0,t +33411,100%,Estonia,1.0,f +31921,,Brazil,2.0,t +7373,,Mauritania,9.0,t +20746,90%,,3.0,f +14078,100%,Gambia,1.0,t +1226,,Slovakia (Slovak Republic),1.0,t +26795,,El Salvador,1.0,t +44690,100%,Papua New Guinea,2.0,f +44690,100%,Papua New Guinea,2.0,f +5423,,Guernsey,1.0,f +30016,,Russian Federation,1.0,t +24811,100%,Russian Federation,2.0,t +49333,,Chile,1.0,t +8776,,United Kingdom,1.0,f +5250,70%,Indonesia,2.0,f +34620,100%,Costa Rica,1.0,t +41233,100%,Zimbabwe,1.0,t +11576,100%,Maldives,1.0,f +21607,90%,France,3.0,t +16489,100%,Russian Federation,42.0,t +46703,,Marshall Islands,1.0,t +1216,100%,Faroe Islands,1.0,f +25117,,Gibraltar,1.0,f +43333,100%,Andorra,1.0,t +31150,,Niue,1.0,t +40542,100%,,1.0,t +36282,100%,Zimbabwe,3.0,t +36282,100%,Zimbabwe,3.0,t +15434,100%,Malta,1.0,f +36286,100%,Anguilla,1.0,f +4604,83%,Niue,3.0,f +20470,100%,,2.0,t +1667,,Maldives,1.0,f +17734,100%,Jersey,1.0,t +26590,,,1.0,f +11582,100%,Anguilla,2.0,t +11582,100%,Anguilla,2.0,t +21441,100%,Tanzania,1.0,t +11545,,Niue,1.0,t +47850,,Russian Federation,1.0,f +34298,100%,China,1.0,f +20813,100%,Togo,2.0,f +38189,,Marshall Islands,1.0,f +4292,,,1.0,t +35793,,Marshall Islands,1.0,t +32622,,Venezuela,1.0,t +49967,,Malta,1.0,f +29970,100%,,1.0,t +2542,100%,,1.0,t +43778,,Russian Federation,1.0,t +36338,100%,Cuba,1.0,f +20105,,Zimbabwe,1.0,t +42332,100%,Russian Federation,1.0,t +9763,,,, +11233,33%,,1.0,f +19772,,,1.0,f +30378,100%,Zimbabwe,1.0,f +911,100%,Lebanon,6.0,t +4113,100%,,1.0,t +24346,,Togo,1.0,t +9985,100%,,1.0,f +20887,,Montserrat,1.0,f +37815,88%,Kenya,3.0,f +31112,,,1.0,f +15333,,Papua New Guinea,2.0,t +18470,,Indonesia,1.0,t +35187,100%,,1.0,t +25000,,Denmark,1.0,t +20809,90%,,1.0,f +48372,100%,Barbados,12.0,t +41830,,Sao Tome and Principe,1.0,t +18126,,Guinea,1.0,f +23516,,Uzbekistan,1.0,t +36577,,Christmas Island,1.0,f +4075,,,2.0,f +39667,88%,,2.0,t +20197,83%,Tonga,1.0,f +42711,,,1.0,t +43271,,Kenya,1.0,f +27571,,Niue,2.0,t +26149,,,1.0,t +3657,,French Guiana,5.0,t +14759,100%,Lithuania,2.0,t +36591,,Indonesia,2.0,t +13693,100%,United Kingdom,5.0,t +14759,100%,Lithuania,2.0,t +5310,,Guinea,1.0,t +9773,,Malta,1.0,f +40856,,Zimbabwe,1.0,t +32914,100%,Papua New Guinea,1.0,t +12787,,Estonia,1.0,t +11158,,Kiribati,2.0,t +11158,,Kiribati,2.0,t +13799,,,3.0,t +9397,,Anguilla,4.0,t +34655,100%,Ecuador,7.0,f +29167,,,1.0,t +43465,100%,Kenya,2.0,f +10311,,Philippines,1.0,t +23205,,Kiribati,1.0,t +3126,,Brazil,2.0,t +46599,100%,Lithuania,1.0,t +4097,100%,Croatia,7.0,f +10782,,Russian Federation,1.0,t +31916,,Malta,2.0,t +41544,,Nicaragua,1.0,f +8751,100%,,2.0,t +46786,,Switzerland,1.0,t +29487,89%,Montserrat,3.0,t +21394,,Isle of Man,1.0,f +5109,100%,Guinea,3.0,f +2020,100%,,1.0,f +18715,100%,,1.0,t +16945,,Grenada,1.0,t +5109,100%,Guinea,3.0,f +5109,100%,Guinea,3.0,f +44857,100%,Zimbabwe,24.0,t +7401,90%,Korea,2.0,f +27312,100%,,1.0,f +6120,,Mauritania,1.0,f +2004,,Svalbard & Jan Mayen Islands,1.0,f +7607,,Isle of Man,1.0,t +45884,100%,,1.0,t +47225,,,1.0,t +46609,100%,,4.0,t +21659,100%,Afghanistan,3.0,f +38945,,,1.0,t +9311,100%,France,2.0,t +13379,,,1.0,t +5418,,Philippines,1.0,f +31795,,Gambia,1.0,t +24214,,,1.0,f +28276,83%,Papua New Guinea,2.0,f +30486,,Micronesia,1.0,f +38465,92%,Bosnia and Herzegovina,1.0,f +15661,33%,Russian Federation,4.0,f +32456,100%,Lebanon,3.0,t +3261,,Cook Islands,1.0,t +24347,,,1.0,f +9957,,Chad,3.0,t +33351,,Sao Tome and Principe,1.0,t +15661,33%,Russian Federation,4.0,f +25980,100%,Philippines,2.0,t +11268,100%,,1.0,t +5298,,Guinea,1.0,t +2381,100%,,3.0,f +42475,100%,Malta,2.0,t +41699,100%,,1.0,f +32916,100%,Finland,1.0,f +2162,,Niue,1.0,t +12010,,Niger,1.0,t +17743,,,1.0,f +16037,,Lithuania,1.0,t +29647,100%,Peru,1305.0,f +2002,,Niue,1.0,f +29419,,Lithuania,1.0,t +40268,,French Guiana,1.0,t +45131,,Niue,1.0,t +11294,,Gambia,1.0,t +27980,100%,Niue,1.0,f +26857,,Nauru,3.0,t +38489,100%,French Guiana,1.0,t +2986,100%,,1.0,f +28140,,Bosnia and Herzegovina,1.0,t +10529,100%,United Kingdom,1.0,t +23446,,,1.0,t +28666,,Nauru,1.0,t +45904,100%,Russian Federation,1.0,t +48372,100%,Barbados,12.0,t +17214,,Russian Federation,1.0,t +28828,100%,Isle of Man,198.0,t +28828,100%,Isle of Man,198.0,t +27475,,Lithuania,2.0,t +36165,,Isle of Man,1.0,t +1094,80%,,1.0,f +32634,,Congo,1.0,t +29730,,,1.0,f +2780,,Tonga,1.0,t +14350,100%,Nauru,2.0,f +27850,,Chile,1.0,t +29310,67%,,1.0,f +38353,,Togo,1.0,f +10055,,Jersey,1.0,t +43197,100%,Nicaragua,1.0,t +28495,50%,,1.0,t +6483,,Uzbekistan,1.0,f +14090,67%,Costa Rica,1.0,f +45593,100%,Micronesia,3.0,t +19958,100%,Congo,40.0,t +45737,,Tonga,29.0,t +25645,,Indonesia,1.0,t +41542,,,2.0,t +46204,,Slovakia (Slovak Republic),1.0,t +19958,100%,Congo,40.0,t +18692,,Russian Federation,1.0,t +2513,,,1.0,t +13866,,,1.0,f +48,63%,Micronesia,2.0,t +30897,100%,Turkmenistan,4.0,t +30897,100%,Turkmenistan,4.0,t +13341,,Malta,1.0,f +36910,100%,Zimbabwe,1.0,t +26614,,,2.0,t +1309,,Vanuatu,1.0,f +41642,,,1.0,f +20318,,Uzbekistan,1.0,f +2824,25%,Barbados,5.0,f +21731,,Bosnia and Herzegovina,1.0,t +11037,,Micronesia,1.0,t +16177,,,1.0,f +42549,,Uzbekistan,1.0,t +25613,,Nicaragua,1.0,t +5934,,,1.0,t +12692,,Anguilla,1.0,t +155,70%,Micronesia,2.0,f +37789,100%,Brazil,1.0,t +17253,,Niger,1.0,t +23337,100%,Niue,1.0,f +42208,,,1.0,t +11752,100%,Brazil,1.0,f +10970,,Nicaragua,1.0,f +27709,,,1.0,f +38641,,Mauritania,1.0,f +22356,,Isle of Man,1.0,t +16064,,Lebanon,1.0,f +43119,,Korea,1.0,t +4774,100%,Niue,4.0,t +33075,,Jersey,1.0,t +10985,100%,Marshall Islands,1.0,t +33829,,,1.0,t +23603,100%,,1.0,f +16956,,,1.0,t +15879,,Senegal,1.0,f +3751,75%,Uzbekistan,1.0,f +18482,,,1.0,f +30431,,,1.0,t +15230,100%,Malawi,12.0,t +44653,,Niue,1.0,f +13154,,Cuba,1.0,t +22324,100%,Venezuela,6.0,t +33905,,Bosnia and Herzegovina,1.0,t +22324,100%,Venezuela,6.0,t +39360,,Bouvet Island (Bouvetoya),1.0,f +41854,,Faroe Islands,1.0,t +35544,100%,Kenya,1.0,t +45824,,Mauritania,1.0,t +42355,,Russian Federation,2.0,t +11669,,,1.0,f +27857,,Bosnia and Herzegovina,1.0,t +13849,100%,Niue,2.0,t +42355,,Russian Federation,2.0,t +1453,,,1.0,f +2155,88%,Zimbabwe,1.0,t +11567,100%,Niger,31.0,t +23256,100%,,6.0,f +41325,,Micronesia,1.0,t +39655,,Nicaragua,1.0,f +7373,,Mauritania,9.0,t +49033,,Malawi,1.0,t +13187,,France,1.0,t +41242,100%,Nicaragua,1.0,f +37944,,,1.0,t +43035,100%,Tonga,1.0,t +43885,100%,Malta,1.0,t +28445,100%,Jersey,1.0,t +26685,,Isle of Man,1.0,f +22313,,Marshall Islands,1.0,t +49153,,Lithuania,1.0,t +2951,100%,,1.0,t +45118,,,1.0,t +19714,100%,Micronesia,2.0,t +35956,,Niue,2.0,t +15071,100%,,3.0,t +29593,100%,Malta,1.0,f +25629,100%,Anguilla,3.0,t +34270,100%,Australia,2.0,f +15661,33%,Russian Federation,4.0,f +38278,,Bosnia and Herzegovina,1.0,t +45060,,Uzbekistan,1.0,f +35378,100%,,3.0,t +17487,,,1.0,t +462,,Afghanistan,1.0,t +28816,90%,Congo,1.0,t +15661,33%,Russian Federation,4.0,f +23045,,,3.0,f +1563,0%,Micronesia,3.0,f +19982,,Montserrat,1.0,t +22402,,China,3.0,t +27183,100%,Mauritania,2.0,f +28453,,Lebanon,1.0,t +46927,,Lebanon,1.0,t +48783,,,1.0,f +29284,,Reunion,2.0,f +24926,100%,Micronesia,2.0,t +25907,,Cape Verde,1.0,t +944,,Vietnam,7.0,t +14643,100%,,1.0,t +1710,,Mauritania,1.0,t +27590,100%,Suriname,8.0,t +12694,,Gambia,1.0,f +16069,100%,Micronesia,1.0,f +34008,,Sao Tome and Principe,1.0,t +39176,100%,,1.0,f +32433,,Puerto Rico,1.0,t +49670,100%,El Salvador,1.0,t +22300,,Malta,1.0,f +39639,100%,Niue,19.0,f +25353,100%,Gibraltar,1.0,t +14042,,Uzbekistan,2.0,f +15175,,Anguilla,1.0,f +25629,100%,Anguilla,3.0,t +49583,100%,Chad,2.0,f +25629,100%,Anguilla,3.0,t +4997,100%,Jersey,6.0,f +14846,,Tonga,1.0,t +10057,100%,Guernsey,2.0,t +38378,90%,Guinea,1.0,f +39900,,Bosnia and Herzegovina,1.0,t +41878,91%,Maldives,47.0,f +31259,,Lebanon,1.0,t +19451,80%,Montserrat,2.0,t +23932,69%,Montserrat,6.0,f +23460,,Monaco,1.0,f +44086,100%,,1.0,t +24518,,Chile,1.0,f +36394,,,1.0,f +29753,100%,El Salvador,3.0,t +33172,100%,,2.0,t +41074,,,1.0,f +18163,,,1.0,t +13733,,Malta,1.0,t +39663,,El Salvador,1.0,t +30787,100%,,2.0,t +27303,,Lebanon,1.0,f +24624,,Bouvet Island (Bouvetoya),1.0,f +49081,,,1.0,f +49782,90%,Kenya,3.0,t +16072,100%,,2.0,t +19749,100%,Denmark,6.0,t +5241,90%,,1.0,t +49782,90%,Kenya,3.0,t +39330,,Jersey,1.0,f +20643,,,1.0,f +10990,,Malta,1.0,f +27020,,Somalia,1.0,t +2602,,Chad,1.0,t +1011,97%,Russian Federation,8.0,t +8525,,Sao Tome and Principe,2.0,f +19884,,Croatia,1.0,t +27889,100%,,3.0,t +27889,100%,,3.0,t +32978,100%,Kiribati,2.0,t +6043,,Lebanon,1.0,t +37489,,Lebanon,1.0,t +9451,,Jersey,1.0,t +46455,92%,Uzbekistan,4.0,t +42410,,Jersey,1.0,f +41925,,Gibraltar,1.0,f +7043,,Malta,1.0,t +43152,100%,Nicaragua,82.0,t +39926,,,1.0,t +36663,,Ghana,5.0,t +6819,,Russian Federation,2.0,f +21971,100%,,2.0,t +15391,90%,Niger,2.0,t +32590,,,1.0,f +15311,100%,Holy See (Vatican City State),1.0,f +25084,,,2.0,f +5166,100%,Ecuador,16.0,t +21088,,Barbados,1.0,t +23859,,Jersey,1.0,t +19664,,Kenya,1.0,t +5166,100%,Ecuador,16.0,t +5166,100%,Ecuador,16.0,t +22324,100%,Venezuela,6.0,t +18777,100%,Holy See (Vatican City State),3.0,t +9222,100%,Brazil,18.0,t +14820,,Cocos (Keeling) Islands,1.0,t +27134,,Guinea,1.0,f +31687,100%,Mauritania,1.0,t +4622,100%,Isle of Man,1.0,t +16928,,Marshall Islands,1.0,f +46152,,,1.0,t +45361,,,1.0,t +46717,,Faroe Islands,2.0,t +36412,,Niue,1.0,f +47595,100%,Nauru,4.0,f +49237,100%,Nicaragua,3.0,t +27475,,Lithuania,2.0,t +6647,100%,Senegal,2.0,t +79,0%,Turkmenistan,1.0,f +30960,,Turkmenistan,1.0,f +26943,,,1.0,t +35884,,Ecuador,1.0,t +14513,,Sao Tome and Principe,1.0,t +13649,100%,Nicaragua,2.0,t +866,,El Salvador,1.0,f +21517,100%,Malta,2.0,t +12751,,China,1.0,f +19731,,,1.0,t +21602,,Guinea,1.0,t +15049,,Sao Tome and Principe,1.0,f +41838,,Faroe Islands,1.0,t +48350,,,1.0,t +11774,100%,Russian Federation,2.0,f +35383,100%,Chile,1.0,t +9817,100%,,1.0,f +16580,,French Guiana,3.0,t +20630,,Faroe Islands,1.0,f +2154,100%,Guinea,3.0,t +37920,70%,,17.0,t +48346,100%,Monaco,1.0,t +40715,,,1.0,f +695,,Niue,1.0,t +28066,88%,,1.0,t +24744,,Marshall Islands,1.0,t +38643,,Isle of Man,1.0,f +17803,100%,Slovenia,1.0,f +467,50%,,1.0,f +48489,100%,Gambia,2.0,t +17381,,Monaco,1.0,f +37128,,,1.0,t +16499,,Spain,1.0,f +27997,,Nicaragua,1.0,t +41039,,Gambia,1.0,t +48146,,,3.0,t +28631,,Zimbabwe,1.0,t +4630,100%,,2.0,f +23073,,Nicaragua,1.0,t +46146,100%,Bouvet Island (Bouvetoya),1.0,t +31683,,Zimbabwe,2.0,t +42881,,Lebanon,1.0,t +24168,,,1.0,t +18317,,,3.0,f +3428,100%,Lebanon,4.0,t +30823,,El Salvador,1.0,t +26523,100%,Niue,1.0,t +39679,91%,Kiribati,4.0,t +31683,,Zimbabwe,2.0,t +35336,,,1.0,t +34742,89%,El Salvador,1.0,f +41243,,Marshall Islands,1.0,t +18477,,Russian Federation,1.0,t +4709,,Nicaragua,1.0,f +28743,100%,Somalia,1.0,t +35406,87%,Indonesia,3.0,f +32698,,Malta,1.0,f +11859,,Holy See (Vatican City State),1.0,t +35689,75%,Isle of Man,2.0,t +45978,100%,France,1.0,f +5166,100%,Ecuador,16.0,t +5419,,,1.0,f +35956,,Niue,2.0,t +585,,Niue,1.0,t +27100,,Kenya,1.0,t +6402,50%,Bosnia and Herzegovina,2.0,t +43588,100%,Fiji,7.0,f +31078,,Guernsey,2.0,t +39302,67%,Kiribati,1.0,f +28460,,,2.0,t +1011,97%,Russian Federation,8.0,t +6558,,,1.0,t +41423,,Lebanon,1.0,f +14288,,Monaco,1.0,f +1011,97%,Russian Federation,8.0,t +1794,100%,Russian Federation,1.0,t +5954,100%,Zimbabwe,1.0,t +23068,90%,,1.0,f +43588,100%,Fiji,7.0,f +26394,,Malta,1.0,t +48822,100%,Brazil,2.0,t +27816,,Sao Tome and Principe,1.0,t +20821,,Zimbabwe,2.0,f +41878,91%,Maldives,47.0,f +27240,,,1.0,t +41878,91%,Maldives,47.0,f +12374,83%,Niue,2.0,f +26208,,Bosnia and Herzegovina,1.0,t +19911,,,1.0,f +41878,91%,Maldives,47.0,f +48403,,Malta,1.0,f +43757,,Cocos (Keeling) Islands,1.0,t +40430,100%,Niue,1.0,t +2934,,Sao Tome and Principe,1.0,t +3372,,Maldives,1.0,f +14976,,Zimbabwe,1.0,f +9465,100%,Slovakia (Slovak Republic),3.0,t +5847,80%,Malta,2.0,f +4035,100%,Monaco,1.0,f +24942,,China,1.0,t +8249,,Sao Tome and Principe,1.0,t +16112,,Kenya,2.0,t +46309,,Russian Federation,1.0,t +18446,,Russian Federation,1.0,t +34432,,France,2.0,f +37752,80%,Uzbekistan,2.0,t +26183,,Maldives,1.0,t +39823,100%,Gambia,3.0,t +6838,96%,Spain,59.0,t +46203,100%,Marshall Islands,1.0,t +14447,,,1.0,t +18468,,Malta,1.0,t +44026,,Afghanistan,1.0,f +37175,,,1.0,t +44097,100%,Solomon Islands,4.0,f +45478,,,1.0,f +19532,,,1.0,f +22536,100%,Isle of Man,1.0,t +43873,,Malta,1.0,t +45744,,Malta,1.0,f +44031,,Guernsey,1.0,t +13218,100%,,1.0,t +22514,,Maldives,1.0,f +29658,100%,United Kingdom,4.0,f +31892,,Chad,1.0,t +44393,100%,Bouvet Island (Bouvetoya),1.0,t +36864,,,1.0,t +37879,100%,Vanuatu,2.0,t +40356,80%,Estonia,2.0,f +48372,100%,Barbados,12.0,t +49307,,Brazil,1.0,f +39,,Sao Tome and Principe,1.0,f +39349,60%,Puerto Rico,1.0,t +17686,,Reunion,2.0,t +31334,,Maldives,2.0,f +45979,100%,Guernsey,1.0,f +34268,,Sao Tome and Principe,1.0,t +38261,100%,Togo,1.0,t +43152,100%,Nicaragua,82.0,t +24131,,,1.0,f +44269,,Jersey,1.0,t +27096,,Micronesia,1.0,t +30525,,,1.0,t +34306,91%,Wallis and Futuna,30.0,t +43152,100%,Nicaragua,82.0,t +26031,,Marshall Islands,1.0,t +40075,93%,Denmark,2.0,t +44678,,Russian Federation,1.0,f +2756,,Gambia,1.0,f +29993,,,1.0,t +28817,100%,,1.0,f +47794,,,1.0,f +26780,100%,Guinea,7.0,f +35651,,Finland,1.0,t +23145,,Sao Tome and Principe,1.0,t +42134,,,1.0,t +33380,,,1.0,t +28836,100%,Zimbabwe,1.0,t +7990,100%,Puerto Rico,3.0,f +13472,,Barbados,1.0,t +28171,,,1.0,f +43763,,Maldives,2.0,t +45640,,Gambia,1.0,t +26202,,Marshall Islands,1.0,t +14392,,Malta,1.0,f +3140,,China,1.0,t +36296,,Maldives,1.0,t +18545,94%,Isle of Man,8.0,t +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +26659,,Malta,1.0,t +1872,100%,Isle of Man,1.0,t +28276,83%,Papua New Guinea,2.0,f +25669,100%,Guinea,1.0,t +46115,100%,Cocos (Keeling) Islands,2.0,f +50053,80%,Malta,1.0,f +14071,100%,Gambia,2.0,f +25040,,Brazil,1.0,f +13155,100%,Marshall Islands,1.0,t +47482,,Rwanda,1.0,t +15952,,,1.0,f +8635,,Gambia,1.0,t +13668,,Niue,1.0,f +47871,,,1.0,t +2154,100%,Guinea,3.0,t +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +6516,,Peru,1.0,t +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +10327,83%,Isle of Man,1.0,t +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +28407,100%,Mexico,1.0,t +27751,,Finland,1.0,f +29647,100%,Peru,1305.0,f +179,100%,,1.0,f +29647,100%,Peru,1305.0,f +18545,94%,Isle of Man,8.0,t +6537,,France,4.0,t +5527,,Chad,1.0,f +38934,,Lebanon,2.0,t +3923,100%,Lithuania,1.0,f +29771,,Chile,1.0,t +32362,100%,Marshall Islands,4.0,t +4831,100%,,1.0,t +9086,,,1.0,f +38686,,Chile,1.0,t +14458,,Reunion,1.0,t +6195,100%,Cape Verde,1.0,f +24394,100%,Nicaragua,1.0,t +16461,100%,Turkmenistan,1.0,t +16988,,,1.0,t +45626,100%,Niue,1.0,t +30063,,French Guiana,1.0,t +7608,,Togo,1.0,f +43787,,Lithuania,2.0,f +45548,100%,Malta,3.0,t +19358,,,1.0,t +29201,,,2.0,f +22254,100%,,1.0,t +36987,100%,Vanuatu,2.0,t +2974,,Reunion,1.0,f +41685,100%,,1.0,t +36987,100%,Vanuatu,2.0,t +44335,,,1.0,t +31439,,Chile,1.0,t +23325,100%,Russian Federation,2.0,t +49982,0%,Niue,1.0,t +45778,,Jersey,1.0,f +21800,,,1.0,t +41110,,Kenya,1.0,t +18641,100%,Maldives,2.0,t +23545,100%,Kenya,2.0,t +127,100%,,1.0,f +13649,100%,Nicaragua,2.0,t +20892,100%,,1.0,t +12841,,Uzbekistan,1.0,f +33870,,Bosnia and Herzegovina,1.0,t +4062,,Mauritania,1.0,t +45968,100%,Micronesia,4.0,t +22991,100%,Korea,4.0,t +4330,94%,Ukraine,60.0,t +11724,,Russian Federation,1.0,t +9821,100%,,1.0,t +38452,,,1.0,f +16106,100%,French Guiana,1.0,t +44480,,,1.0,f +41878,91%,Maldives,47.0,f +38008,100%,French Polynesia,2.0,f +13964,100%,,1.0,f +22800,,Suriname,1.0,t +23932,69%,Montserrat,6.0,f +26670,100%,Guinea,1.0,f +48372,100%,Barbados,12.0,t +49455,,China,1.0,t +34830,,Uzbekistan,1.0,t +35408,,Turkmenistan,1.0,t +6537,,France,4.0,t +24487,100%,Marshall Islands,1.0,t +36173,100%,Marshall Islands,1.0,t +39966,,French Guiana,1.0,t +11334,100%,Sao Tome and Principe,3.0,t +29450,,,2.0,t +6949,100%,Turkmenistan,1.0,f +30292,67%,Anguilla,6.0,f +24619,100%,,4.0,t +35280,,Holy See (Vatican City State),1.0,f +11813,100%,Lebanon,2.0,f +14525,,Russian Federation,2.0,t +39823,100%,Gambia,3.0,t +16619,,Zimbabwe,2.0,t +12884,,Croatia,1.0,f +39316,83%,,1.0,t +48313,100%,Andorra,1.0,t +29002,,,1.0,t +12843,100%,,1.0,f +10822,,Lebanon,1.0,f +17453,,Anguilla,1.0,t +4097,100%,Croatia,7.0,f +45635,100%,Vanuatu,2.0,f +46869,100%,Micronesia,2.0,t +33533,100%,,1.0,f +34306,91%,Wallis and Futuna,30.0,t +38082,,Ukraine,1.0,t +9533,,Senegal,16.0,t +39753,,Lebanon,1.0,t +8165,,,, +12092,100%,,1.0,t +23776,100%,Micronesia,2.0,t +8225,95%,Barbados,31.0,f +47935,,Puerto Rico,1.0,t +41603,,French Guiana,1.0,t +29647,100%,Peru,1305.0,f +34306,91%,Wallis and Futuna,30.0,t +29647,100%,Peru,1305.0,f +37704,96%,Fiji,26.0,f +29647,100%,Peru,1305.0,f +21076,90%,Kiribati,2.0,t +29647,100%,Peru,1305.0,f +21156,100%,Vanuatu,2.0,f +39254,100%,,8.0,t +34655,100%,Ecuador,7.0,f +43278,,Guinea,1.0,t +27456,,,1.0,t +29204,,Australia,1.0,t +48500,100%,Canada,1.0,t +40930,100%,Bahrain,1.0,t +16201,,,1.0,f +46097,,,1.0,t +15574,,Estonia,1.0,f +30387,,Netherlands,1.0,f +8830,,United Kingdom,3.0,f +11040,100%,Andorra,7.0,f +14051,,Saint Helena,1.0,f +11567,100%,Niger,31.0,t +9533,,Senegal,16.0,t +27732,100%,Puerto Rico,3.0,t +23837,,Lebanon,1.0,t +24397,100%,,1.0,f +13695,,Jersey,1.0,f +12281,100%,Malta,1.0,f +10166,100%,Isle of Man,2.0,t +17808,,Niue,1.0,t +31950,,Papua New Guinea,1.0,t +15320,,Mexico,1.0,f +5305,100%,,1.0,t +34418,100%,,2.0,t +21285,,Isle of Man,1.0,t +26271,,,1.0,t +37514,100%,,1.0,t +36368,,Marshall Islands,1.0,t +4876,,Senegal,9.0,f +47466,100%,,1.0,t +34306,91%,Wallis and Futuna,30.0,t +732,100%,Maldives,2.0,f +49351,90%,Tonga,3.0,t +33422,100%,Russian Federation,1.0,t +14514,,China,80.0,t +27834,,,1.0,t +48613,100%,El Salvador,1.0,t +45477,100%,Papua New Guinea,1.0,f +21859,,,1.0,f +14535,88%,Montserrat,18.0,f +29525,,,1.0,f +16288,,,1.0,t +10303,90%,Turkmenistan,1.0,f +6560,0%,Micronesia,1.0,t +32585,,Russian Federation,1.0,t +47619,60%,Niue,1.0,t +3769,100%,,1.0,t +49514,,Guinea,1.0,t +42240,100%,Isle of Man,1.0,f +41865,100%,,1.0,t +6959,95%,Slovakia (Slovak Republic),20.0,t +41185,83%,Isle of Man,1.0,t +26519,100%,Turks and Caicos Islands,2.0,t +1026,100%,Lebanon,1.0,t +34102,100%,Nicaragua,6.0,f +33492,90%,,4.0,t +2701,100%,Papua New Guinea,1.0,f +45553,90%,Brazil,16.0,t +49583,100%,Chad,2.0,f +45994,,Russian Federation,1.0,f +17349,,Lebanon,1.0,t +25296,100%,Monaco,1.0,f +31314,100%,Guinea,4.0,t +28216,,,4.0,t +31314,100%,Guinea,4.0,t +45332,,Croatia,2.0,f +38415,,Uzbekistan,1.0,t +49031,,Estonia,1.0,t +25210,,Russian Federation,2.0,f +47494,,Lebanon,1.0,t +38672,,Niue,1.0,f +43632,,Rwanda,1.0,t +14373,,Uganda,1.0,t +245,,Russian Federation,1.0,f +11370,100%,Mauritania,1.0,f +47113,,Faroe Islands,2.0,f +18467,,Marshall Islands,1.0,t +365,,Kenya,1.0,t +24179,100%,Faroe Islands,1.0,f +15394,100%,Tunisia,2.0,t +26881,100%,Netherlands,1.0,f +14019,,,1.0,f +33665,,Tunisia,1.0,f +30171,100%,Nicaragua,2.0,t +22852,100%,Togo,3.0,f +24321,,China,1.0,f +38935,,Niger,1.0,f +24079,90%,Netherlands Antilles,3.0,f +24896,100%,Algeria,50.0,t +17258,,,1.0,f +9633,100%,Uruguay,1.0,f +12775,,Cook Islands,1.0,t +4330,94%,Ukraine,60.0,t +6352,100%,,1.0,t +14052,,Sao Tome and Principe,1.0,f +5560,100%,Mauritania,1.0,t +5026,,Cocos (Keeling) Islands,1.0,f +18032,70%,,1.0,f +6894,80%,Estonia,47.0,t +4678,100%,Zimbabwe,2.0,t +4240,100%,,1.0,t +43858,,Turkmenistan,2.0,t +17351,100%,Rwanda,2.0,f +39765,100%,United Kingdom,2.0,t +21138,100%,,1.0,t +8905,,Cocos (Keeling) Islands,2.0,t +22979,100%,,1.0,f +12433,50%,Lebanon,1.0,t +21661,100%,Tonga,1.0,t +46873,,Jersey,1.0,t +27385,,French Guiana,1.0,f +31087,,Bouvet Island (Bouvetoya),2.0,f +10426,,,1.0,f +42229,100%,Fiji,25.0,f +17641,,Tajikistan,4.0,f +14020,,,1.0,f +8510,,El Salvador,1.0,f +44321,,Sao Tome and Principe,1.0,t +9258,,Cape Verde,1.0,t +39474,,Marshall Islands,1.0,f +16759,,,1.0,f +24852,100%,Wallis and Futuna,3.0,f +48364,100%,,4.0,f +9737,,Guinea,1.0,f +25190,,Ecuador,1.0,t +33711,,Marshall Islands,1.0,t +33602,52%,Russian Federation,2.0,t +47343,,Guinea,3.0,t +39828,,Anguilla,1.0,t +14535,88%,Montserrat,18.0,f +26099,99%,Reunion,15.0,f +95,100%,Chile,3.0,t +8874,,,1.0,t +15131,86%,Canada,1.0,t +16216,,Portugal,1.0,f +12077,,China,1.0,t +28917,,,1.0,f +46900,100%,Lebanon,1.0,t +41149,100%,Turkmenistan,2.0,t +17009,100%,Brazil,1.0,f +2178,100%,Jersey,2.0,t +21213,94%,Kiribati,5.0,t +18141,,,1.0,f +24216,,Mauritania,1.0,t +43205,,Bouvet Island (Bouvetoya),2.0,t +1811,100%,,3.0,f +12361,100%,Guernsey,4.0,t +10651,,,1.0,t +32610,,,1.0,f +7145,,Niue,2.0,t +37086,100%,Estonia,1.0,f +19052,100%,,1.0,t +23755,,Kiribati,3.0,t +3352,100%,Guernsey,1.0,t +47881,,Tonga,1.0,t +45649,,Rwanda,1.0,f +10801,,Kenya,1.0,t +39877,,Rwanda,1.0,f +47168,100%,Netherlands,8.0,f +29647,100%,Peru,1305.0,f +49900,,Lebanon,1.0,f +29647,100%,Peru,1305.0,f +20406,,Nauru,1.0,f +37033,,Sao Tome and Principe,1.0,t +29647,100%,Peru,1305.0,f +45977,100%,,2.0,f +20387,100%,Malta,12.0,t +12816,,,1.0,t +29647,100%,Peru,1305.0,f +36206,86%,Russian Federation,10.0,f +3133,,Kenya,1.0,t +48995,,Niue,1.0,f +37441,100%,Vietnam,12.0,t +20128,,Gibraltar,1.0,t +7324,100%,Tonga,2.0,f +3515,,Cook Islands,1.0,f +29647,100%,Peru,1305.0,f +2557,100%,Uzbekistan,3.0,t +41949,100%,Brazil,2.0,t +7143,,El Salvador,1.0,f +11040,100%,Andorra,7.0,f +25625,,Lebanon,1.0,t +684,,Bouvet Island (Bouvetoya),1.0,f +3323,100%,,1.0,t +27334,100%,China,16.0,f +41078,,,1.0,f +4516,100%,,1.0,f +34886,,Nicaragua,1.0,t +13905,0%,Lithuania,1.0,t +47054,,Brunei Darussalam,6.0,f +19517,,Malawi,1.0,f +19555,100%,Faroe Islands,3.0,t +16400,,Montserrat,1.0,t +15197,,Somalia,1.0,f +4100,,Djibouti,1.0,t +30057,,Lebanon,1.0,t +5005,,,1.0,t +45000,100%,Montserrat,10.0,t +31542,100%,Isle of Man,3.0,f +37101,,Isle of Man,1.0,f +13208,,China,1.0,t +5259,100%,United Kingdom,4.0,t +26290,,Guinea,4.0,t +12361,100%,Guernsey,4.0,t +9208,,,1.0,t +28863,100%,,1.0,t +16869,,Kiribati,2.0,t +16443,100%,Indonesia,1.0,f +8215,,,1.0,t +39362,,Suriname,1.0,f +19958,100%,Congo,40.0,t +34169,,Lebanon,3.0,t +8365,,,1.0,t +42815,100%,Kenya,3.0,t +6209,80%,Nicaragua,9.0,t +26121,67%,Marshall Islands,2.0,f +16819,100%,Niue,2.0,t +29647,100%,Peru,1305.0,f +8278,,Kiribati,1.0,f +31395,,Malawi,1.0,t +46797,100%,Zimbabwe,3.0,t +33973,,,1.0,f +41926,,United Kingdom,1.0,t +20709,100%,,1.0,f +2493,100%,,1.0,t +35511,90%,Cocos (Keeling) Islands,2.0,f +13069,,,1.0,t +34356,100%,Palestinian Territory,2.0,t +14265,,Ecuador,1.0,t +39095,,Tonga,1.0,f +33223,100%,Nauru,1.0,t +41758,,Uganda,1.0,f +20061,,El Salvador,1.0,t +35984,,Sao Tome and Principe,1.0,f +44524,,Jersey,1.0,t +20737,100%,,1.0,t +12641,90%,Micronesia,2.0,t +23538,,United Kingdom,1.0,f +23432,,Croatia,1.0,t +49448,100%,El Salvador,2.0,t +24879,,Kiribati,1.0,t +47502,,Tonga,1.0,t +31583,,Kenya,1.0,t +5591,99%,Indonesia,16.0,t +22321,100%,United Kingdom,16.0,f +42016,,Cocos (Keeling) Islands,1.0,t +8065,100%,Monaco,2.0,f +12371,,Cape Verde,1.0,t +17874,100%,Tunisia,1.0,t +18269,86%,Fiji,12.0,f +4172,100%,,1.0,t +26542,100%,,1.0,t +3833,,United Kingdom,1.0,t +29418,,,1.0,f +5309,,Papua New Guinea,1.0,t +1858,81%,Niue,3.0,t +33289,67%,Guinea,2.0,f +44472,,Philippines,1.0,t +43970,,Russian Federation,1.0,f +29198,100%,Uzbekistan,1.0,f +25084,,,2.0,f +44148,,,1.0,f +7583,100%,,1.0,f +18317,,,3.0,f +39667,88%,,2.0,t +42661,100%,Jersey,2.0,f +31065,,,16.0,f +32833,,Uzbekistan,1.0,t +9247,,Rwanda,1.0,f +48671,100%,Guinea,3.0,t +7590,,Guinea,1.0,f +18712,95%,Turks and Caicos Islands,11.0,t +14472,,Mauritania,1.0,f +24622,100%,,2.0,t +28920,,Malta,1.0,t +24622,100%,,2.0,t +15408,,,1.0,f +33477,100%,Niger,1.0,f +11325,0%,Tonga,18.0,f +49728,,Rwanda,2.0,f +25310,,,1.0,t +29746,96%,Tonga,5.0,f +37996,,Cape Verde,4.0,t +15969,80%,France,3.0,t +20085,,,1.0,f +9465,100%,Slovakia (Slovak Republic),3.0,t +36781,,Indonesia,1.0,f +49931,,Vanuatu,1.0,t +45148,,Honduras,2.0,t +34415,100%,Afghanistan,1.0,t +26195,93%,Gambia,8.0,t +11040,100%,Andorra,7.0,f +30171,100%,Nicaragua,2.0,t +4774,100%,Niue,4.0,t +6306,,,1.0,f +30257,,,1.0,t +3854,100%,Philippines,3.0,f +19104,,,1.0,t +30789,,,3.0,t +17855,,Guernsey,1.0,f +3854,100%,Philippines,3.0,f +49545,,Uzbekistan,1.0,f +16152,89%,,2.0,f +40321,100%,,1.0,f +23491,90%,Niue,3.0,f +20405,,,1.0,f +42621,,Guinea,1.0,t +22204,,Vanuatu,1.0,f +31496,100%,Jersey,1.0,f +31644,100%,,1.0,t +7328,,,1.0,t +37133,,Anguilla,1.0,f +17023,,,1.0,t +45534,100%,Brazil,5.0,t +27763,70%,,1.0,t +43006,,,1.0,f +38729,100%,Maldives,1.0,t +37664,100%,,1.0,f +14685,,Kenya,1.0,f +33243,,French Guiana,1.0,f +46133,,Lebanon,2.0,t +16359,100%,,1.0,f +2327,,,1.0,t +29179,100%,,1.0,t +28988,,Tanzania,1.0,t +42943,,,1.0,t +22771,,United Kingdom,2.0,t +2072,,Jersey,1.0,t +38997,100%,Zimbabwe,2.0,t +23569,,Mauritania,1.0,t +12890,,Niue,1.0,t +10091,,Anguilla,1.0,f +33674,100%,Micronesia,1.0,f +18553,,,2.0,t +38206,,Guinea,1.0,t +32080,,Nicaragua,3.0,f +11372,100%,Micronesia,3.0,f +12024,,China,1.0,t +11567,100%,Niger,31.0,t +22834,,,1.0,t +18317,,,3.0,f +11040,100%,Andorra,7.0,f +14477,100%,Reunion,26.0,t +31917,,,1.0,f +50032,100%,Uganda,2.0,t +19592,100%,Monaco,3.0,t +8815,,Uganda,1.0,t +37577,100%,Lebanon,3.0,t +4265,100%,Palestinian Territory,2.0,t +26660,100%,Sao Tome and Principe,2.0,t +4097,100%,Croatia,7.0,f +48089,,China,1.0,f +3948,,Niue,1.0,f +11961,,Russian Federation,1.0,f +2470,80%,Brazil,4.0,t +5672,,Togo,2.0,f +24495,,Reunion,2.0,t +38663,,,1.0,f +17248,100%,Niue,1.0,f +14190,,,1.0,t +29808,100%,Jersey,1.0,f +38479,100%,Russian Federation,2.0,t +40165,100%,French Guiana,1.0,f +27352,100%,,1.0,t +5699,,Niue,1.0,f +38022,,Maldives,1.0,t +6959,95%,Slovakia (Slovak Republic),20.0,t +48639,,,1.0,t +23785,,Kenya,1.0,f +598,,Brazil,1.0,f +1373,,Brazil,1.0,f +33848,67%,,1.0,t +16799,,Rwanda,1.0,t +25199,,Gibraltar,1.0,t +46136,,Sao Tome and Principe,1.0,f +33014,,Philippines,1.0,f +18509,,Gambia,1.0,f +22034,,Slovenia,1.0,t +6143,,Sao Tome and Principe,1.0,t +22315,,Malawi,1.0,f +37334,,Lebanon,1.0,t +29496,100%,France,1.0,f +30548,,,1.0,f +2360,,,2.0,t +24132,100%,Somalia,2.0,f +25753,0%,Mauritania,1.0,t +26568,,Russian Federation,1.0,t +34594,,French Guiana,1.0,f +22327,100%,Russian Federation,1.0,t +8430,,Peru,7.0,t +8430,,Peru,7.0,t +2206,,,1.0,t +41149,100%,Turkmenistan,2.0,t +4684,,Cape Verde,1.0,f +23542,,Lebanon,1.0,t +31152,,El Salvador,1.0,f +25179,0%,Zimbabwe,1.0,f +28654,,Mauritania,1.0,t +21425,,Canada,1.0,f +44015,,Russian Federation,1.0,t +32832,,Lithuania,1.0,f +39030,100%,,2.0,t +28093,,Papua New Guinea,1.0,t +40337,,Ecuador,2.0,t +44972,,Micronesia,2.0,f +8721,,Bouvet Island (Bouvetoya),1.0,t +11040,100%,Andorra,7.0,f +10605,,Maldives,1.0,f +7026,,,1.0,t +25224,,Jersey,1.0,f +27186,100%,Zimbabwe,7.0,t +27186,100%,Zimbabwe,7.0,t +10994,,Russian Federation,2.0,t +34206,100%,,1.0,f +39986,100%,Isle of Man,2.0,t +42190,96%,Croatia,4.0,t +10152,,Ghana,1.0,f +48334,100%,Guinea,12.0,f +32627,100%,,1.0,f +48334,100%,Guinea,12.0,f +2309,,Bouvet Island (Bouvetoya),2.0,t +2268,91%,Fiji,1.0,f +10177,,French Guiana,1.0,t +43724,100%,Kenya,1.0,t +25910,,Christmas Island,1.0,t +17038,,Niue,1.0,f +9785,,Jersey,2.0,t +9928,100%,,1.0,t +11939,100%,,2.0,t +24191,,Malta,1.0,f +25539,100%,Niue,1.0,t +11008,,Uzbekistan,1.0,t +11343,,Niue,1.0,t +24800,,,1.0,t +39819,,Turks and Caicos Islands,1.0,t +26272,,,1.0,t +14535,88%,Montserrat,18.0,f +49995,,,1.0,t +12698,,Barbados,1.0,t +14535,88%,Montserrat,18.0,f +14535,88%,Montserrat,18.0,f +14535,88%,Montserrat,18.0,f +18825,,,2.0,t +7358,100%,French Polynesia,3.0,f +43783,,,1.0,t +22126,100%,,2.0,t +26072,,Guinea,1.0,f +37138,100%,Senegal,2.0,t +6092,100%,,2.0,t +3548,0%,,1.0,f +30815,100%,Uzbekistan,1.0,t +43048,100%,France,1.0,t +45057,,Marshall Islands,1.0,t +47309,,Isle of Man,1.0,f +28281,,Palestinian Territory,1.0,f +34655,100%,Ecuador,7.0,f +31464,100%,Isle of Man,2.0,t +33023,,,1.0,t +27732,100%,Puerto Rico,3.0,t +44596,100%,,1.0,f +30032,100%,,1.0,t +115,,Svalbard & Jan Mayen Islands,1.0,t +41462,,Micronesia,1.0,t +2948,90%,Russian Federation,1.0,t +32362,100%,Marshall Islands,4.0,t +32388,,Micronesia,1.0,f +1813,,,1.0,f +40174,,Croatia,1.0,f +37930,,,1.0,t +42411,100%,Netherlands Antilles,1.0,t +11420,,Mauritania,1.0,t +35940,,Niue,1.0,t +7044,100%,,1.0,t +7808,100%,Anguilla,1.0,f +7595,,,1.0,f +39679,91%,Kiribati,4.0,t +25660,,Monaco,1.0,f +2379,100%,Lithuania,2.0,f +41878,91%,Maldives,47.0,f +13074,100%,Turks and Caicos Islands,1.0,t +41097,,,1.0,f +16157,,Uzbekistan,1.0,t +34138,67%,Lebanon,2.0,t +30942,100%,Kenya,1.0,t +34829,100%,,2.0,t +45996,100%,Zimbabwe,2.0,t +33689,,Zimbabwe,1.0,t +7801,,Zimbabwe,1.0,f +26195,93%,Gambia,8.0,t +27925,100%,Sao Tome and Principe,1.0,t +360,,Chile,2.0,t +40323,100%,,1.0,t +30305,,Isle of Man,1.0,f +33357,,Denmark,1.0,t +4671,100%,Lebanon,1.0,t +45849,,Sao Tome and Principe,1.0,t +37945,,Jersey,1.0,t +38414,100%,Uruguay,1.0,f +34829,100%,,2.0,t +41771,100%,Turks and Caicos Islands,2.0,f +46052,,Marshall Islands,1.0,f +18309,,,1.0,f +49042,,Uzbekistan,1.0,t +43435,50%,Guinea,2.0,f +29104,,El Salvador,1.0,t +12248,100%,,1.0,t +40255,,Faroe Islands,1.0,t +49860,83%,,2.0,t +25604,100%,,1.0,f +29727,100%,Senegal,2.0,f +27711,100%,Niue,1.0,t +11872,,,13.0,f +6467,100%,Netherlands,1.0,t +246,,Guernsey,1.0,t +37013,,Russian Federation,1.0,f +44600,,Guinea,1.0,t +9766,,Maldives,2.0,t +27453,100%,Marshall Islands,2.0,f +14753,,China,1.0,f +23365,,Nicaragua,1.0,f +41073,,Wallis and Futuna,1.0,t +37542,,,1.0,f +39937,,Russian Federation,1.0,t +24016,100%,Bosnia and Herzegovina,29.0,f +42470,100%,Malawi,2.0,f +11342,,Niue,1.0,t +42009,,Tonga,1.0,t +34659,100%,United Kingdom,2.0,f +36782,,,1.0,t +4485,95%,China,7.0,t +24818,,Mauritania,1.0,f +47878,,Faroe Islands,2.0,f +47420,,Nauru,1.0,t +25896,,,1.0,f +3730,100%,San Marino,1.0,t +5539,,El Salvador,1.0,f +49951,,Russian Federation,1.0,t +34754,100%,Isle of Man,1.0,t +33779,,Bosnia and Herzegovina,1.0,t +38451,,Tonga,1.0,t +20334,99%,Niger,171.0,t +299,100%,Maldives,1.0,t +30050,,,1.0,f +17968,,,1.0,t +1888,100%,Chad,1.0,f +34519,,Zimbabwe,1.0,t +24649,100%,,1.0,f +26519,100%,Turks and Caicos Islands,2.0,t +14387,,Maldives,1.0,f +18900,,Russian Federation,2.0,f +39438,,,1.0,t +28190,0%,Uzbekistan,1.0,t +2689,,Djibouti,1.0,f +46762,100%,Chile,1.0,t +3304,100%,,2.0,t +18900,,Russian Federation,2.0,f +11872,,,13.0,f +12796,100%,Estonia,1.0,t +14058,,Anguilla,1.0,t +20991,100%,,1.0,t +43152,100%,Nicaragua,82.0,t +43152,100%,Nicaragua,82.0,t +15048,,French Guiana,1.0,t +22715,,,1.0,f +1486,,,1.0,f +26252,50%,,1.0,f +40038,,,1.0,f +33911,100%,Kiribati,2.0,t +36122,100%,,1.0,t +50092,,,1.0,t +27334,100%,China,16.0,f +1703,,,1.0,f +39823,100%,Gambia,3.0,t +46938,,Rwanda,1.0,t +43563,,Chad,1.0,t +13410,,Ghana,1.0,f +33175,,Lebanon,2.0,f +26315,,El Salvador,1.0,t +41560,,,1.0,f +6204,100%,France,1.0,f +35684,,Isle of Man,1.0,f +4536,,Brazil,1.0,f +21468,,,1.0,t +21950,,Uzbekistan,1.0,t +35801,,Canada,1.0,t +48809,,Nicaragua,1.0,t +11800,,Bosnia and Herzegovina,2.0,t +555,100%,Brazil,2.0,t +47317,0%,Gambia,1.0,f +11176,100%,Rwanda,1.0,t +28352,,,1.0,f +30941,93%,Barbados,3.0,f +41960,,United Kingdom,1.0,f +422,,United Kingdom,1.0,f +20284,,Netherlands Antilles,1.0,f +46679,,Rwanda,1.0,f +18174,,,1.0,t +13546,100%,Rwanda,15.0,f +3130,,,1.0,f +3108,,,1.0,t +43098,100%,,1.0,f +32683,90%,Libyan Arab Jamahiriya,2.0,f +4736,100%,Zimbabwe,1.0,f +2467,100%,,1.0,t +40237,,,1.0,f +24791,,Uzbekistan,2.0,t +40380,,,2.0,t +13988,100%,,1.0,f +9065,100%,,1.0,t +25527,100%,Djibouti,1.0,f +30552,100%,Senegal,1.0,t +6805,,Indonesia,1.0,t +1975,100%,,1.0,t +49973,,,1.0,t +8938,100%,France,1.0,f +48441,83%,,2.0,f +45546,100%,Cape Verde,19.0,t +31920,,,1.0,t +8497,100%,Croatia,1.0,t +20496,100%,,1.0,f +9180,100%,Kenya,1.0,f +42690,,Vietnam,1.0,f +2364,100%,China,2.0,t +42632,,Russian Federation,1.0,f +2176,,Chad,1.0,t +41364,100%,Guinea,1.0,t +38165,100%,Jersey,1.0,t +8886,100%,Estonia,2.0,t +19822,,Sao Tome and Principe,1.0,t +37414,,Rwanda,2.0,t +32366,100%,Guinea,2.0,f +34965,,Maldives,1.0,f +32366,100%,Guinea,2.0,f +15256,,Chad,2.0,t +13745,,Gibraltar,1.0,t +6168,,Bouvet Island (Bouvetoya),14.0,t +14940,100%,Marshall Islands,2.0,f +12293,,Uganda,1.0,t +16879,,Chile,2.0,t +46700,,,1.0,t +30472,100%,Micronesia,2.0,f +24532,,,1.0,f +45546,100%,Cape Verde,19.0,t +10401,,Isle of Man,1.0,f +46845,,Jersey,1.0,t +14985,,,2.0,t +45546,100%,Cape Verde,19.0,t +32779,,Uzbekistan,1.0,t +21659,100%,Afghanistan,3.0,f +2766,100%,United Kingdom,4.0,f +37705,100%,Faroe Islands,2.0,t +12719,100%,,2.0,t +20673,,Rwanda,3.0,t +25238,100%,Nicaragua,1.0,t +40563,,,1.0,t +34504,,,1.0,f +49736,,Uzbekistan,1.0,t +27412,90%,Cuba,2.0,t +20237,100%,Korea,1.0,t +5647,,Bosnia and Herzegovina,4.0,t +20376,0%,,1.0,t +10754,100%,Russian Federation,1.0,f +20626,0%,,1.0,f +36253,100%,Nauru,21.0,t +32362,100%,Marshall Islands,4.0,t +4803,100%,Fiji,5.0,t +13674,90%,Fiji,2.0,t +19955,,Rwanda,1.0,t +31804,100%,,2.0,f +27613,,Fiji,1.0,t +22418,100%,Senegal,1.0,t +29383,,,1.0,t +22736,,Lebanon,1.0,f +41219,,,2.0,t +42910,100%,France,2.0,f +42910,100%,France,2.0,f +27184,,,1.0,f +8389,,,1.0,f +48300,50%,,1.0,t +10298,,,1.0,t +39005,,,1.0,f +35068,100%,France,3.0,t +34145,,,1.0,t +40416,100%,Turks and Caicos Islands,2.0,t +20658,100%,Papua New Guinea,1.0,t +7641,,,1.0,f +35973,,French Polynesia,2.0,t +23545,100%,Kenya,2.0,t +3248,100%,,1.0,f +27345,100%,Guinea,1.0,f +46283,,,2.0,t +11730,100%,Isle of Man,1.0,t +15394,100%,Tunisia,2.0,t +20387,100%,Malta,12.0,t +27126,,,1.0,t +20387,100%,Malta,12.0,t +20387,100%,Malta,12.0,t +41804,,Guinea,1.0,t +20387,100%,Malta,12.0,t +45712,,Tonga,1.0,t +556,,United Kingdom,1.0,t +20048,,El Salvador,5.0,t +49722,,Guinea,1.0,f +48210,100%,,1.0,f +33312,100%,Svalbard & Jan Mayen Islands,2.0,t +40181,100%,Russian Federation,2.0,t +5571,,Turks and Caicos Islands,1.0,f +883,,,1.0,t +14156,,,1.0,f +38805,,Isle of Man,1.0,t +8571,,Maldives,1.0,f +44471,,Gibraltar,2.0,t +112,100%,Venezuela,1.0,t +5083,,,1.0,t +38818,,,1.0,t +25311,,,1.0,f +13546,100%,Rwanda,15.0,f +32768,,Ukraine,1.0,f +3907,100%,Sao Tome and Principe,2.0,t +45005,,,1.0,f +9955,100%,Isle of Man,2.0,t +46607,100%,Brazil,4.0,f +27150,100%,Nauru,1.0,t +38341,,,2.0,t +20077,,,1.0,t +5644,100%,,1.0,t +37021,,,1.0,t +5228,,Malawi,1.0,t +13910,,Papua New Guinea,1.0,f +8557,,Uzbekistan,1.0,t +16167,,,1.0,t +42992,100%,Rwanda,2.0,f +38030,,Reunion,1.0,f +34144,,Sao Tome and Principe,1.0,f +26414,,,1.0,f +43617,,Suriname,2.0,f +43152,100%,Nicaragua,82.0,t +25028,,,1.0,f +4586,,,2.0,f +11882,,Sao Tome and Principe,2.0,t +23608,,Rwanda,1.0,t +39870,,Slovakia (Slovak Republic),21.0,t +27435,100%,Rwanda,1.0,t +22697,,Maldives,1.0,f +34977,,Finland,1.0,f +38155,,,1.0,t +27092,,Brazil,2.0,f +6099,,Costa Rica,1.0,t +14535,88%,Montserrat,18.0,f +24896,100%,Algeria,50.0,t +12715,100%,Estonia,29.0,f +44090,100%,Marshall Islands,1.0,t +7454,88%,Tonga,1.0,f +31124,100%,France,3.0,f +11247,100%,,1.0,t +34655,100%,Ecuador,7.0,f +6959,95%,Slovakia (Slovak Republic),20.0,t +3127,100%,Rwanda,36.0,f +9670,,Zimbabwe,1.0,f +43646,,Sao Tome and Principe,1.0,f +38162,100%,Niger,8.0,f +14172,,Reunion,2.0,f +1439,100%,Tanzania,1.0,t +14138,100%,,2.0,f +20157,,Lebanon,1.0,t +42780,100%,,2.0,t +35869,,Reunion,2.0,t +29690,,,1.0,f +11345,,Tunisia,1.0,t +42379,100%,Cocos (Keeling) Islands,5.0,f +30348,,Nicaragua,2.0,f +30977,,,1.0,f +24896,100%,Algeria,50.0,t +13663,100%,Russian Federation,1.0,f +7429,,Sao Tome and Principe,1.0,f +47462,100%,Nicaragua,1.0,t +31762,,Finland,1.0,f +37162,100%,,1.0,t +172,,Niue,4.0,f +35842,,Netherlands,1.0,t +172,,Niue,4.0,f +172,,Niue,4.0,f +5449,,Gibraltar,1.0,t +17370,,China,2.0,t +33911,100%,Kiribati,2.0,t +31124,100%,France,3.0,f +1229,,Reunion,1.0,t +24158,100%,Costa Rica,1.0,t +23893,,,1.0,f +13546,100%,Rwanda,15.0,f +16601,,,1.0,t +11918,50%,Philippines,1.0,t +11358,100%,Iceland,4.0,t +42038,,Malta,1.0,t +35667,100%,Isle of Man,1.0,t +11325,0%,Tonga,18.0,f +16476,86%,Micronesia,1.0,f +15189,79%,China,21.0,f +16966,,Denmark,2.0,t +43110,,Malta,1.0,t +14656,100%,Monaco,1.0,t +19992,,,1.0,f +36239,100%,Lebanon,3.0,t +46916,,,1.0,f +22468,,,1.0,f +23153,100%,Gibraltar,2.0,t +48441,83%,,2.0,f +5642,100%,El Salvador,1.0,t +13083,,,1.0,f +10244,100%,Philippines,10.0,f +32498,100%,Russian Federation,1.0,f +24791,,Uzbekistan,2.0,t +15413,80%,Vanuatu,7.0,t +21036,,Niue,1.0,t +29362,100%,Svalbard & Jan Mayen Islands,1.0,t +5972,,Cocos (Keeling) Islands,1.0,f +10560,,Bosnia and Herzegovina,1.0,f +28329,100%,Guernsey,1.0,f +13546,100%,Rwanda,15.0,f +15413,80%,Vanuatu,7.0,t +15413,80%,Vanuatu,7.0,t +11130,,,1.0,f +13725,,Zimbabwe,1.0,f +27761,,,1.0,t +44429,,,1.0,t +20104,,Uganda,1.0,t +15172,,Rwanda,2.0,t +39401,100%,Wallis and Futuna,2.0,t +8390,,Turkmenistan,1.0,t +45823,,Niue,1.0,t +21486,,,1.0,f +16300,,,1.0,f +12769,,Kiribati,1.0,f +28135,,Isle of Man,1.0,t +24416,,,1.0,t +13546,100%,Rwanda,15.0,f +7425,,,1.0,f +39328,,Sao Tome and Principe,3.0,t +34306,91%,Wallis and Futuna,30.0,t +16648,100%,France,1.0,t +28914,,Chile,1.0,t +38842,100%,Uzbekistan,1.0,f +19882,,Philippines,1.0,t +38740,,,1.0,f +43169,,Tonga,1.0,f +17760,,Anguilla,2.0,f +13546,100%,Rwanda,15.0,f +39970,100%,,2.0,f +17782,100%,Niger,1.0,t +22013,100%,Micronesia,4.0,f +48395,0%,,1.0,t +27244,,Guinea,1.0,f +32331,100%,Jersey,2.0,t +2950,100%,,1.0,t +43087,,Cuba,1.0,t +46947,,,1.0,f +43103,100%,Monaco,3.0,t +19076,,Togo,1.0,t +40624,,Lebanon,1.0,f +31139,90%,,1.0,t +23710,100%,Gambia,5.0,f +42532,,Lebanon,1.0,f +9041,100%,Wallis and Futuna,1.0,t +12376,,,1.0,f +22794,50%,Cape Verde,36.0,t +17760,,Anguilla,2.0,f +931,,Marshall Islands,1.0,f +24827,100%,Gibraltar,3.0,f +23966,100%,Malta,1.0,f +21389,,Faroe Islands,1.0,t +38321,,Uzbekistan,2.0,t +29347,100%,Zimbabwe,2.0,f +24269,100%,,1.0,t +2311,,,3.0,t +9528,,Lebanon,1.0,t +33975,,Nicaragua,1.0,f +47124,,Lebanon,1.0,t +11872,,,13.0,f +27672,,Slovenia,3.0,t +48364,100%,,4.0,f +35938,,Estonia,1.0,f +8143,,Guinea,1.0,t +45470,,Estonia,1.0,f +17716,,Vanuatu,2.0,t +19958,100%,Congo,40.0,t +48165,,Malta,1.0,f +46297,100%,Sao Tome and Principe,12.0,t +35080,,Cocos (Keeling) Islands,1.0,t +11964,,Chad,1.0,t +14521,100%,Svalbard & Jan Mayen Islands,1.0,t +1354,,Christmas Island,1.0,f +34946,67%,Micronesia,1.0,f +40143,,Russian Federation,1.0,t +24795,,Russian Federation,1.0,t +36239,100%,Lebanon,3.0,t +43620,100%,Denmark,1.0,f +39366,100%,Ghana,3.0,t +109,,,1.0,f +16257,100%,Turkmenistan,1.0,t +29579,,Jersey,1.0,t +47620,100%,Chad,1.0,f +3094,,Bahrain,1.0,f +4022,50%,,1.0,t +45737,,Tonga,29.0,t +27869,,Turkmenistan,1.0,f +46213,,,1.0,t +19685,,Marshall Islands,1.0,t +46095,,Guernsey,1.0,t +5299,,,1.0,f +14356,,Papua New Guinea,1.0,f +39169,,France,1.0,f +3383,,Tonga,1.0,t +48146,,,3.0,t +10574,,Anguilla,1.0,f +12158,,Russian Federation,1.0,f +48308,,United Kingdom,1.0,f +8900,,Cape Verde,1.0,t +11666,73%,Tonga,5.0,t +27062,,,1.0,f +7736,71%,,2.0,f +14540,92%,Niue,5.0,f +26879,100%,Niue,2.0,t +49744,,Russian Federation,1.0,f +36344,,,1.0,t +46799,,Maldives,1.0,f +26244,,,1.0,f +39199,,Croatia,1.0,t +35180,,Sao Tome and Principe,1.0,t +3776,,,1.0,f +34170,100%,Marshall Islands,1.0,t +30200,,China,1.0,f +14383,0%,Russian Federation,1.0,f +26948,,Kenya,1.0,t +11178,,Turks and Caicos Islands,1.0,f +23535,100%,Tonga,1.0,f +31108,,Svalbard & Jan Mayen Islands,2.0,t +39685,,Papua New Guinea,1.0,t +49480,,Russian Federation,1.0,t +32172,,,1.0,t +23428,,Zimbabwe,1.0,f +38807,,Indonesia,2.0,t +39679,91%,Kiribati,4.0,t +26822,,Uzbekistan,1.0,t +36650,,,1.0,f +36957,,Nicaragua,1.0,f +31584,90%,,1.0,t +18640,,Jersey,1.0,t +48146,,,3.0,t +22469,,Sao Tome and Principe,1.0,t +31565,,Faroe Islands,1.0,f +1903,75%,,1.0,f +35008,,Faroe Islands,1.0,f +41083,,,1.0,t +17035,,Malta,1.0,f +30462,0%,Lithuania,1.0,t +47996,,Niue,1.0,f +45002,,Svalbard & Jan Mayen Islands,2.0,f +39126,100%,Guinea,9.0,f +39355,80%,Zimbabwe,2.0,t +40059,83%,Svalbard & Jan Mayen Islands,1.0,t +34341,,,1.0,f +32897,80%,Somalia,1.0,f +17494,,Uzbekistan,1.0,f +47212,100%,,1.0,f +43485,,Russian Federation,2.0,t +30268,,Maldives,1.0,f +31065,,,16.0,f +49257,,Chad,1.0,t +31065,,,16.0,f +42285,100%,Chile,1.0,t +14834,,Brazil,1.0,t +35815,97%,Slovakia (Slovak Republic),8.0,t +15349,100%,Sao Tome and Principe,1.0,f +35815,97%,Slovakia (Slovak Republic),8.0,t +27113,,Estonia,5.0,f +2717,,Uzbekistan,3.0,f +24977,,Micronesia,1.0,f +27113,,Estonia,5.0,f +27113,,Estonia,5.0,f +27113,,Estonia,5.0,f +27113,,Estonia,5.0,f +27931,,Cape Verde,1.0,f +3459,100%,Christmas Island,1.0,t +12053,,Gambia,1.0,f +28470,,,1.0,f +37168,90%,Jersey,2.0,f +50061,100%,Niue,2.0,f +20637,,,1.0,t +46461,100%,,1.0,t +50008,,Philippines,1.0,f +48816,100%,Maldives,1.0,t +27733,,,1.0,f +21613,,,1.0,t +32130,,Cuba,2.0,t +39126,100%,Guinea,9.0,f +9906,100%,,1.0,f +28261,100%,Tanzania,2.0,f +10159,,Gambia,2.0,f +21126,,Jersey,1.0,f +49264,,Kiribati,4.0,t +36932,,Faroe Islands,1.0,f +23268,100%,,1.0,t +20924,,Isle of Man,1.0,f +2441,100%,Mauritania,1.0,t +34306,91%,Wallis and Futuna,30.0,t +7191,100%,Uzbekistan,2.0,f +10609,,Croatia,1.0,t +26813,100%,Russian Federation,1.0,t +4906,100%,Senegal,2.0,t +861,,Russian Federation,2.0,t +18820,90%,Honduras,2.0,t +24259,,,1.0,t +26996,,Sao Tome and Principe,1.0,f +13546,100%,Rwanda,15.0,f +28888,100%,,1.0,t +13546,100%,Rwanda,15.0,f +20277,,Tonga,2.0,f +36425,100%,,1.0,f +29008,,Sao Tome and Principe,1.0,f +50061,100%,Niue,2.0,f +15312,,Kiribati,2.0,f +39012,,,1.0,t +28828,100%,Isle of Man,198.0,t +37636,,Marshall Islands,2.0,t +39375,,Uzbekistan,1.0,t +37422,100%,Brazil,4.0,t +1626,100%,Uganda,2.0,t +8225,95%,Barbados,31.0,f +29201,,,2.0,f +14951,,Vanuatu,1.0,f +31498,100%,Zimbabwe,2.0,f +22764,100%,,1.0,f +47784,,Rwanda,1.0,f +5535,90%,Vanuatu,1.0,f +8225,95%,Barbados,31.0,f +39178,,,1.0,f +81,,Isle of Man,1.0,t +27386,,Chad,2.0,f +37090,,Congo,1.0,t +38359,,Malta,1.0,t +10703,,Nicaragua,1.0,t +5192,,Turks and Caicos Islands,1.0,t +44378,,Niue,1.0,f +25055,,,1.0,f +8928,,Montserrat,1.0,t +24727,100%,,1.0,f +27369,,Micronesia,2.0,t +39278,100%,France,1.0,f +46710,,,1.0,t +40139,,Palestinian Territory,1.0,t +12156,,Russian Federation,1.0,t +16280,,Russian Federation,1.0,f +44972,,Micronesia,2.0,f +42724,,Mauritania,1.0,t +32839,,,1.0,f +44494,,Malta,2.0,f +41219,,,2.0,t +22725,,,1.0,f +42228,,Lithuania,1.0,t +38321,,Uzbekistan,2.0,t +17583,,Lebanon,1.0,f +7559,100%,Micronesia,1.0,t +27593,,Kenya,1.0,f +44390,,,1.0,f +27122,100%,,1.0,t +20886,,French Guiana,1.0,t +7978,,Kenya,1.0,f +24690,,,1.0,f +16734,,,1.0,t +33694,100%,Niue,2.0,t +42567,100%,Palestinian Territory,1.0,f +24844,100%,Uzbekistan,6.0,f +15439,100%,Switzerland,1.0,f +13619,,,1.0,t +25895,,French Guiana,1.0,f +6309,100%,Kiribati,1.0,t +31065,,,16.0,f +40275,,Micronesia,2.0,f +33796,,Uzbekistan,1.0,t +48910,63%,Monaco,1.0,t +15627,100%,Anguilla,1.0,t +1662,,Estonia,1.0,t +30036,,Slovakia (Slovak Republic),1.0,f +18865,,,1.0,t +27736,,,1.0,t +17586,,French Guiana,1.0,f +23610,,Uzbekistan,1.0,t +14487,,Malawi,1.0,t +4546,100%,Slovakia (Slovak Republic),2.0,t +6729,,,1.0,f +20484,,,1.0,f +10246,,Russian Federation,1.0,f +45192,100%,,1.0,t +16858,,,1.0,f +20695,,,1.0,f +21650,,,1.0,t +11666,73%,Tonga,5.0,t +12776,100%,,1.0,t +39858,,,1.0,t +33368,,Maldives,1.0,t +16816,,Faroe Islands,1.0,t +24778,,China,1.0,t +19828,,Lebanon,1.0,f +28024,,,1.0,f +27012,,Tonga,1.0,t +44025,,Tonga,1.0,t +17380,50%,Jersey,1.0,t +29283,,Tonga,1.0,f +30802,100%,Micronesia,2.0,t +17799,,Djibouti,1.0,f +16570,,French Polynesia,1.0,f +16316,100%,,2.0,t +35181,,Anguilla,2.0,t +11567,100%,Niger,31.0,t +31732,100%,Sao Tome and Principe,2.0,t +6559,,,1.0,f +343,100%,Brazil,2.0,t +30802,100%,Micronesia,2.0,t +9961,,Isle of Man,1.0,t +33127,50%,Denmark,1.0,f +26303,50%,,1.0,t +28985,100%,Monaco,1.0,t +23797,100%,United Kingdom,1.0,t +13546,100%,Rwanda,15.0,f +33060,,,1.0,f +17132,100%,Niue,1.0,t +17754,100%,Mauritania,1.0,f +10150,100%,Anguilla,1.0,f +32293,,El Salvador,1.0,t +4518,100%,Niue,3.0,f +18806,100%,Vietnam,6.0,t +20585,,Tonga,1.0,t +14529,,Peru,2.0,t +39785,100%,Faroe Islands,1.0,f +17486,100%,Montserrat,4.0,t +17486,100%,Montserrat,4.0,t +48610,100%,Niue,3.0,f +39755,,,1.0,f +17675,60%,Svalbard & Jan Mayen Islands,2.0,t +37476,100%,Guernsey,1.0,f +45235,,,1.0,f +11282,,Senegal,1.0,f +2030,100%,Estonia,1.0,t +17486,100%,Montserrat,4.0,t +34614,0%,,1.0,f +4829,100%,Lebanon,2.0,t +29885,,Guinea,1.0,f +49355,,France,2.0,t +26828,,Russian Federation,1.0,f +29033,,Lebanon,1.0,f +11346,100%,Guinea,2.0,t +12699,,Lebanon,1.0,f +34526,,Brazil,1.0,t +35426,,,2.0,f +32018,,Sao Tome and Principe,1.0,f +48296,,Kenya,1.0,f +25446,50%,Mexico,1.0,t +36444,,,1.0,t +27099,,Tanzania,1.0,t +22885,,Sao Tome and Principe,1.0,f +40254,,,1.0,t +29324,86%,Russian Federation,2.0,f +26357,,Nicaragua,1.0,f +40422,,,1.0,t +10393,,Chad,1.0,t +49047,,Djibouti,1.0,t +7990,100%,Puerto Rico,3.0,f +31592,100%,,1.0,t +25481,,,1.0,t +46298,0%,Lebanon,1.0,f +46216,100%,French Guiana,4.0,f +49921,,,1.0,t +47831,100%,Malawi,1.0,t +28002,100%,,1.0,f +23260,100%,Peru,1.0,f +29517,,El Salvador,1.0,f +25801,,Lebanon,1.0,t +10886,,Lebanon,1.0,t +41877,,Cuba,1.0,t +49091,100%,Guinea,1.0,t +41878,91%,Maldives,47.0,f +34717,100%,Niue,3.0,t +41878,91%,Maldives,47.0,f +15629,,,1.0,f +28637,,Chad,1.0,f +20161,,Tonga,1.0,f +4097,100%,Croatia,7.0,f +32488,,Senegal,17.0,t +18844,,Anguilla,1.0,t +39185,60%,Grenada,1.0,f +47022,,,1.0,f +21277,100%,Isle of Man,1.0,t +47739,50%,,1.0,f +19377,,Cocos (Keeling) Islands,1.0,t +17283,,,1.0,f +32434,,Niue,1.0,f +736,,Costa Rica,1.0,f +31065,,,16.0,f +37422,100%,Brazil,4.0,t +35032,90%,Afghanistan,1.0,t +49750,100%,Kenya,2.0,t +12759,,Vanuatu,1.0,f +10412,,Sao Tome and Principe,1.0,f +34225,,,1.0,t +48552,100%,Libyan Arab Jamahiriya,1.0,t +26421,,Gambia,1.0,t +22672,,French Guiana,2.0,t +24150,,Russian Federation,1.0,t +19943,63%,Isle of Man,34.0,f +18112,100%,Malta,1.0,t +31124,100%,France,3.0,f +25488,100%,Gambia,1.0,t +37665,100%,Wallis and Futuna,4.0,t +5379,,Zimbabwe,1.0,t +27458,100%,,1.0,t +14457,,Niue,1.0,t +6689,,,1.0,t +4350,,,2.0,t +28748,,Afghanistan,1.0,t +8202,100%,Kiribati,1.0,f +4687,100%,Tonga,1.0,f +27277,,,1.0,t +32161,100%,Nicaragua,5.0,t +25323,,,1.0,t +28063,100%,Malta,2.0,f +8817,,Isle of Man,1.0,t +20164,,,1.0,t +26104,90%,,1.0,t +943,,Rwanda,1.0,f +26463,,Malta,1.0,f +15218,,Micronesia,2.0,f +38121,,Marshall Islands,1.0,f +47095,,Palestinian Territory,1.0,f +27419,,,1.0,t +1941,100%,El Salvador,1.0,t +12536,,Maldives,1.0,t +45415,,,1.0,f +45546,100%,Cape Verde,19.0,t +11943,100%,Brazil,1.0,f +36054,,French Guiana,3.0,t +5594,,,1.0,f +20555,100%,Tanzania,3.0,t +6691,100%,Monaco,1.0,t +7650,,Libyan Arab Jamahiriya,1.0,t +35001,100%,Christmas Island,2.0,t +26458,,Bahrain,1.0,t +28108,100%,Niue,4.0,t +49489,,,1.0,f +29833,,Zimbabwe,1.0,f +45740,100%,Afghanistan,2.0,t +487,,,1.0,f +7052,,Bouvet Island (Bouvetoya),1.0,f +7226,,Croatia,2.0,t +4127,,,1.0,f +41722,,,1.0,f +11910,100%,Ecuador,1.0,f +47215,,,2.0,f +10666,,Vietnam,1.0,f +19554,,Lebanon,2.0,f +25488,100%,Gambia,1.0,t +30950,100%,French Guiana,3.0,t +2315,,Marshall Islands,1.0,t +31488,,Wallis and Futuna,1.0,t +32842,0%,,1.0,t +3304,100%,,2.0,t +42930,,French Guiana,1.0,f +38833,,Ukraine,2.0,t +23034,99%,Monaco,54.0,f +22146,,Guinea,1.0,t +33038,,Niger,1.0,f +47975,,Russian Federation,1.0,t +31379,100%,France,5.0,t +5382,,Niue,1.0,t +28962,,,2.0,f +9018,50%,Chad,1.0,t +32427,,Guinea,1.0,f +24508,,Mauritania,2.0,f +28213,,French Guiana,1.0,t +15258,100%,Turks and Caicos Islands,1.0,f +37636,,Marshall Islands,2.0,t +6710,,Lebanon,1.0,t +14524,0%,Maldives,1.0,f +32057,100%,Chile,1.0,t +34278,,Gambia,1.0,f +17632,71%,Afghanistan,1.0,t +34114,,Saint Helena,1.0,t +28828,100%,Isle of Man,198.0,t +41878,91%,Maldives,47.0,f +13546,100%,Rwanda,15.0,f +41878,91%,Maldives,47.0,f +45213,,,1.0,t +12279,100%,Lithuania,2.0,t +28962,,,2.0,f +33844,,Jersey,1.0,f +23312,,,1.0,t +12508,70%,Holy See (Vatican City State),3.0,t +47239,100%,,2.0,f +30085,,Niue,1.0,t +23193,,French Guiana,1.0,t +30656,,Denmark,1.0,f +41370,,Uzbekistan,1.0,t +18584,,Reunion,1.0,f +27050,60%,Turks and Caicos Islands,2.0,f +41878,91%,Maldives,47.0,f +40902,,,1.0,f +39126,100%,Guinea,9.0,f +10027,100%,,1.0,t +17116,,Tonga,1.0,t +41499,,Croatia,1.0,f +34915,,Monaco,1.0,t +9332,,Zimbabwe,1.0,t +46698,,,1.0,t +22595,100%,,1.0,t +5595,,,1.0,f +44003,100%,Russian Federation,1.0,t +24007,100%,Uganda,4.0,t +11417,,,1.0,f +49264,,Kiribati,4.0,t +8024,100%,Tonga,1.0,t +7205,,Turkmenistan,1.0,t +35148,,Cook Islands,1.0,t +27478,100%,,2.0,t +44228,,Jersey,1.0,f +1574,,Turks and Caicos Islands,1.0,t +45067,75%,,3.0,t +17063,100%,Micronesia,1.0,f +20288,,,1.0,t +6959,95%,Slovakia (Slovak Republic),20.0,t +25394,,Kiribati,1.0,t +16375,100%,,2.0,f +30475,92%,Vietnam,40.0,f +22906,,,1.0,t +20031,,,2.0,f +42095,100%,Rwanda,3.0,f +42095,100%,Rwanda,3.0,f +1023,,Canada,1.0,f +43858,,Turkmenistan,2.0,t +40519,,Croatia,1.0,t +27984,,,1.0,f +47501,100%,Indonesia,3.0,t +35386,100%,Venezuela,1.0,f +10673,100%,Malta,1.0,f +35762,86%,Russian Federation,1.0,f +45319,,,1.0,t +41878,91%,Maldives,47.0,f +21763,,,1.0,t +40828,,Kenya,1.0,f +23034,99%,Monaco,54.0,f +28327,,Greenland,1.0,t +41915,50%,Russian Federation,1.0,t +15461,,,1.0,t +27092,,Brazil,2.0,f +25844,,Grenada,1.0,t +47822,,Zimbabwe,1.0,t +15593,,Kiribati,1.0,f +46216,100%,French Guiana,4.0,f +22179,,Uzbekistan,1.0,t +272,,,2.0,t +47902,,,1.0,f +41070,100%,,1.0,t +37200,,,1.0,f +26348,,Malta,1.0,f +15731,,,1.0,t +11882,,Sao Tome and Principe,2.0,t +8212,100%,Russian Federation,2.0,t +41138,100%,Turks and Caicos Islands,3.0,t +41138,100%,Turks and Caicos Islands,3.0,t +630,,Netherlands,1.0,f +15959,100%,Russian Federation,2.0,t +32674,,El Salvador,1.0,t +27796,100%,,1.0,f +44232,,Togo,1.0,t +48455,89%,Uzbekistan,20.0,t +11194,100%,Russian Federation,1.0,t +44857,100%,Zimbabwe,24.0,t +24036,,Guernsey,1.0,f +36078,100%,Barbados,1.0,t +43915,,,1.0,t +4085,,Tonga,1.0,f +35579,,Brazil,1.0,f +19257,100%,Malta,1.0,t +6039,100%,Russian Federation,1.0,f +37955,80%,Slovakia (Slovak Republic),3.0,t +33222,67%,Croatia,1.0,f +13599,100%,,2.0,t +33303,100%,Tanzania,1.0,t +40336,,Rwanda,2.0,f +19504,0%,Gambia,1.0,f +15848,,Ghana,1.0,f +8523,100%,Sao Tome and Principe,3.0,t +46133,,Lebanon,2.0,t +36097,100%,Monaco,1.0,t +11257,100%,Maldives,2.0,t +25593,100%,Mauritania,1.0,t +1530,,Niue,1.0,f +42531,,,1.0,f +20411,100%,Pakistan,4.0,t +34033,100%,Afghanistan,2.0,t +10023,,Zimbabwe,1.0,f +42628,100%,Peru,2.0,f +26290,,Guinea,4.0,t +26290,,Guinea,4.0,t +27386,,Chad,2.0,f +24680,,Nicaragua,1.0,t +48946,,Gibraltar,1.0,t +36339,,Kenya,1.0,t +47556,,Jersey,1.0,f +16,,,1.0,t +48782,100%,Bosnia and Herzegovina,2.0,f +6398,,,1.0,f +30071,100%,Gambia,1.0,t +10768,100%,,1.0,t +19029,,,1.0,t +23242,0%,,1.0,t +47923,100%,Niue,1.0,f +847,100%,Chile,1.0,t +35152,,Tonga,1.0,t +10693,,El Salvador,1.0,t +16599,,,1.0,t +4714,,,1.0,t +44679,,Monaco,1.0,f +13623,,,1.0,f +36054,,French Guiana,3.0,t +30407,,Peru,1.0,t +8523,100%,Sao Tome and Principe,3.0,t +16242,100%,Sao Tome and Principe,3.0,t +50076,,Togo,1.0,f +16061,100%,Marshall Islands,1.0,t +36491,33%,El Salvador,1.0,t +39126,100%,Guinea,9.0,f +39126,100%,Guinea,9.0,f +48629,,Micronesia,1.0,f +823,0%,,1.0,f +12167,,Malta,1.0,t +13081,100%,Jersey,3.0,f +46215,,Jersey,1.0,t +24992,,Niue,2.0,t +14767,,,1.0,f +36937,,,1.0,f +13920,100%,,3.0,t +39088,,,1.0,t +23912,50%,,1.0,t +3388,,Sao Tome and Principe,1.0,t +7221,,,1.0,f +35863,,Afghanistan,3.0,t +27758,,El Salvador,1.0,f +39436,100%,United Kingdom,2.0,f +15613,,Philippines,1.0,f +34109,,,1.0,t +47851,100%,Marshall Islands,1.0,t +36463,,Uzbekistan,1.0,t +8617,100%,Guernsey,4.0,t +30475,92%,Vietnam,40.0,f +5411,100%,Marshall Islands,1.0,t +30188,89%,El Salvador,2.0,t +49961,100%,Russian Federation,3.0,t +796,,,1.0,f +31162,100%,,1.0,f +4227,,Niue,1.0,f +18545,94%,Isle of Man,8.0,t +48487,100%,Tunisia,2.0,t +7226,,Croatia,2.0,t +6858,,Kenya,1.0,f +30521,,Anguilla,1.0,f +2380,,Saint Helena,1.0,t +29188,100%,French Guiana,3.0,t +28915,100%,,1.0,t +4300,100%,,1.0,t +29790,,Korea,1.0,t +37802,,Micronesia,1.0,f +38609,,Brazil,1.0,f +1745,,Bosnia and Herzegovina,1.0,f +36897,,Tonga,1.0,t +23914,,Micronesia,1.0,f +17635,,United Kingdom,1.0,t +32695,,Isle of Man,1.0,f +3575,,,1.0,f +8562,,Brazil,1.0,t +7544,,Kenya,1.0,t +40833,,Lebanon,1.0,t +9759,100%,Isle of Man,1.0,t +3326,,,1.0,t +14416,,Gambia,1.0,t +45035,,,1.0,t +15336,,,1.0,t +15037,,,1.0,f +38203,100%,Guinea,2.0,t +2973,,Philippines,1.0,f +18712,95%,Turks and Caicos Islands,11.0,t +35402,100%,Croatia,2.0,t +37,,Montserrat,1.0,f +45919,100%,Montserrat,9.0,t +14514,,China,80.0,t +5038,,Guinea,1.0,f +20240,,Uzbekistan,1.0,f +14514,,China,80.0,t +44032,,Tanzania,2.0,t +44550,0%,,1.0,t +10488,100%,Niger,17.0,t +1157,100%,Nicaragua,1.0,f +5275,100%,Cuba,1.0,f +5542,,Mauritania,1.0,f +24997,,Palestinian Territory,1.0,t +6503,100%,United Kingdom,1.0,t +33324,,Peru,1.0,f +12859,0%,,1.0,f +38130,,Sao Tome and Principe,1.0,f +41584,,,1.0,t +17319,,Isle of Man,1.0,t +43911,,Maldives,1.0,f +13853,90%,Niue,1.0,t +47208,,Malta,1.0,f +28580,100%,Kiribati,1.0,f +503,,Maldives,3.0,t +35444,100%,Anguilla,1.0,f +36518,,Chile,1.0,f +26290,,Guinea,4.0,t +26028,,Maldives,1.0,t +30684,100%,Niue,2.0,t +38585,100%,,1.0,t +6774,,,1.0,t +27855,100%,Russian Federation,2.0,t +47359,,Estonia,1.0,f +30475,92%,Vietnam,40.0,f +23194,100%,Ecuador,1.0,t +34903,0%,Lebanon,1.0,t +583,,Bouvet Island (Bouvetoya),1.0,t +15860,100%,Maldives,11.0,f +43152,100%,Nicaragua,82.0,t +46661,100%,,1.0,f +35385,,,3.0,t +16994,,French Guiana,1.0,t +48000,100%,Afghanistan,1.0,f +2213,,Uzbekistan,1.0,t +50,100%,Kenya,1.0,t +41312,100%,Uganda,1.0,t +43152,100%,Nicaragua,82.0,t +22321,100%,United Kingdom,16.0,f +46765,,Croatia,2.0,f +7265,100%,Lithuania,1.0,t +46956,63%,Jersey,2.0,t +31850,100%,Kenya,1.0,f +20684,80%,Russian Federation,1.0,t +14888,,,1.0,f +13508,100%,Gibraltar,1.0,t +4949,,,1.0,f +15556,,Monaco,1.0,f +15474,,Sao Tome and Principe,1.0,t +14488,,Venezuela,1.0,f +35385,,,3.0,t +40530,,,1.0,t +17546,100%,Denmark,1.0,f +49988,,Faroe Islands,1.0,t +4584,,Finland,1.0,f +29658,100%,United Kingdom,4.0,f +32931,,Lebanon,2.0,t +5528,,Lebanon,1.0,t +38673,,,1.0,t +25877,100%,Uzbekistan,2.0,f +10905,100%,,2.0,f +48561,,Sao Tome and Principe,1.0,f +45537,60%,Russian Federation,1.0,t +33241,,Cocos (Keeling) Islands,1.0,f +37148,,,1.0,t +30957,,Nicaragua,1.0,t +23034,99%,Monaco,54.0,f +15306,,Barbados,8.0,t +38002,,,1.0,t +7845,,Mauritania,1.0,t +11392,,Kiribati,2.0,f +12272,50%,Zimbabwe,1.0,t +44726,,,1.0,f +21991,100%,Djibouti,2.0,f +25243,,,1.0,f +23025,,,1.0,f +28766,100%,Estonia,16.0,f +42530,,Niue,1.0,f +49604,,Afghanistan,2.0,t +17593,,Russian Federation,1.0,t +10727,,Croatia,1.0,f +26975,100%,Holy See (Vatican City State),2.0,t +40026,,Niue,1.0,t +27638,60%,Guernsey,1.0,f +24987,100%,Switzerland,1.0,t +36325,100%,Nauru,2.0,f +37309,,Niue,1.0,t +23002,,Guinea,1.0,t +1316,100%,Faroe Islands,1.0,t +28287,,Monaco,1.0,t +24595,100%,Guinea,3.0,t +37811,100%,Isle of Man,1.0,t +18484,100%,Gambia,108.0,f +37755,,Ukraine,1.0,t +34096,100%,Andorra,10.0,f +36555,,,1.0,f +46498,,Vanuatu,1.0,f +18358,100%,Zimbabwe,1.0,t +20868,100%,Montserrat,2.0,t +6853,,Gibraltar,1.0,f +37836,100%,,1.0,t +36242,,,1.0,f +23617,,,2.0,t +7598,,France,1.0,f +33912,,Zimbabwe,2.0,f +18400,,Estonia,1.0,f +10305,,Somalia,3.0,t +49216,83%,,1.0,t +42733,88%,,4.0,t +25172,,,1.0,f +8064,100%,,1.0,f +29351,90%,Isle of Man,3.0,t +7020,,Niue,1.0,t +46648,100%,Faroe Islands,4.0,t +46648,100%,Faroe Islands,4.0,t +37815,88%,Kenya,3.0,f +3928,100%,United Kingdom,1.0,t +39026,,Nicaragua,1.0,t +16056,,Cocos (Keeling) Islands,1.0,f +21714,,Indonesia,1.0,f +40601,,,1.0,f +7252,100%,Nicaragua,1.0,f +29172,0%,Gambia,1.0,f +22255,,Anguilla,1.0,f +36280,,,1.0,f +2631,100%,Togo,2.0,f +2500,,Maldives,1.0,t +13443,,Bahrain,1.0,t +32628,40%,United Kingdom,1.0,t +24172,,Togo,1.0,f +29292,100%,Malta,3.0,t +30337,100%,,1.0,t +48666,50%,Niue,1.0,t +42749,,,1.0,f +37442,,,1.0,t +31323,,Togo,1.0,t +43502,,,1.0,t +22229,100%,Afghanistan,3.0,t +2331,,,1.0,t +4876,,Senegal,9.0,f +11938,,,1.0,f +42542,,,1.0,t +33151,100%,,1.0,f +28037,,China,1.0,f +13195,,Costa Rica,1.0,t +39687,100%,Nicaragua,1.0,t +28981,,Turkmenistan,1.0,t +44092,100%,Malawi,1.0,t +7417,,Isle of Man,1.0,t +38762,100%,Rwanda,1.0,f +39475,100%,,1.0,f +17640,,,1.0,t +15432,,Gibraltar,1.0,f +16562,,Tunisia,1.0,t +35586,,Guernsey,1.0,t +17646,,,1.0,f +23,,El Salvador,1.0,t +449,100%,Micronesia,1.0,f +20639,100%,Nicaragua,1.0,f +15387,,Russian Federation,1.0,t +33863,,El Salvador,1.0,t +6804,,Christmas Island,1.0,t +40786,,,1.0,t +15980,,,1.0,f +25457,,Chad,1.0,f +7371,,Maldives,1.0,f +27111,100%,France,1.0,t +34383,,Philippines,1.0,t +47061,,,1.0,f +22246,,,1.0,t +1715,,,1.0,f +13469,,Libyan Arab Jamahiriya,1.0,t +19342,,Lebanon,1.0,f +42442,,Maldives,1.0,f +39038,,Bosnia and Herzegovina,2.0,f +39804,,Russian Federation,1.0,f +29234,100%,Togo,9.0,t +43419,,,1.0,f +49356,100%,,1.0,t +11232,,,1.0,t +13734,,Zimbabwe,1.0,f +25841,,,1.0,t +14564,,Lebanon,1.0,t +41785,,Anguilla,1.0,f +16382,100%,Somalia,5.0,t +35890,,Saint Helena,1.0,f +22495,,Nicaragua,1.0,t +24881,,,2.0,f +46076,100%,Russian Federation,2.0,t +28975,100%,,1.0,t +14825,,Uzbekistan,1.0,f +34402,79%,Reunion,28.0,f +26894,100%,Philippines,1.0,f +40182,100%,Brunei Darussalam,2.0,f +30475,92%,Vietnam,40.0,f +7341,,Faroe Islands,1.0,t +12632,,Uzbekistan,1.0,f +7670,100%,Isle of Man,1.0,t +902,,Niue,1.0,t +6359,,Nicaragua,1.0,t +10650,,,1.0,f +15088,,Monaco,1.0,t +40763,,,1.0,t +35330,,,1.0,t +38988,,Lebanon,1.0,t +15939,,,1.0,t +6274,,,1.0,f +575,,Sao Tome and Principe,1.0,t +19838,,Chad,1.0,f +23510,100%,Malta,3.0,f +40206,100%,,1.0,t +26595,,Mauritania,1.0,f +20558,,,1.0,t +926,,Turkmenistan,1.0,f +23510,100%,Malta,3.0,f +13081,100%,Jersey,3.0,f +10137,,,2.0,f +33040,,French Guiana,1.0,t +44663,,,1.0,t +15894,,,1.0,t +24583,,Bahrain,1.0,f +32469,,Sao Tome and Principe,1.0,f +14182,,Micronesia,1.0,t +4947,,,1.0,t +29309,,Micronesia,1.0,t +1648,,,1.0,t +767,100%,Uganda,2.0,f +15674,100%,Pakistan,5.0,f +3599,,Vanuatu,2.0,t +27999,,Maldives,1.0,t +29647,100%,Peru,1305.0,f +10339,,,2.0,t +14627,100%,,4.0,t +3450,,,1.0,t +15775,,Tonga,1.0,t +8121,,Rwanda,1.0,f +33814,,Faroe Islands,9.0,f +40414,95%,Somalia,4.0,f +12569,,Lebanon,1.0,f +1525,100%,Uzbekistan,1.0,t +28807,,Isle of Man,7.0,t +23697,,,2.0,f +22312,100%,,1.0,t +41929,,Mauritania,1.0,t +12027,100%,Uzbekistan,4.0,t +3329,,Uzbekistan,4.0,f +14647,,Isle of Man,1.0,f +10244,100%,Philippines,10.0,f +43749,100%,Nicaragua,1.0,f +42997,,Zimbabwe,1.0,t +46406,100%,,1.0,t +31148,,,1.0,f +31532,,,1.0,f +46751,,Spain,1.0,t +18460,60%,Monaco,6.0,f +17115,100%,Gambia,2.0,t +24519,,Saint Martin,2.0,f +34827,,Turkmenistan,1.0,t +29601,,Faroe Islands,6.0,t +7660,,Papua New Guinea,1.0,t +1083,,,2.0,f +45988,,Togo,1.0,f +48419,,Lithuania,1.0,f +44454,,,1.0,t +26122,,Nicaragua,2.0,f +27797,,Switzerland,2.0,t +3159,,Isle of Man,1.0,t +852,100%,Marshall Islands,1.0,t +16354,100%,Hong Kong,4.0,f +47568,,Greenland,1.0,f +28277,,Lebanon,1.0,f +9272,,Lebanon,1.0,f +23246,,,1.0,f +48020,,,1.0,f +12287,,Bosnia and Herzegovina,1.0,t +3011,,Guinea,2.0,f +5515,100%,Monaco,2.0,t +11221,,Sao Tome and Principe,1.0,t +799,,Uganda,1.0,f +32973,,Rwanda,1.0,t +14189,,Niue,1.0,t +41805,,Croatia,1.0,t +30287,,Lebanon,1.0,t +24992,,Niue,2.0,t +47924,0%,Cocos (Keeling) Islands,3.0,f +47924,0%,Cocos (Keeling) Islands,3.0,f +27496,,Marshall Islands,1.0,t +15699,100%,Niue,4.0,f +20911,,Papua New Guinea,1.0,t +34895,100%,Estonia,16.0,t +41006,,,1.0,t +41015,,Sao Tome and Principe,1.0,t +4264,,,2.0,t +25052,64%,,5.0,t +25052,64%,,5.0,t +35404,,,1.0,f +46691,90%,Uzbekistan,38.0,f +29319,,Kenya,1.0,f +4243,100%,,1.0,t +1172,,French Guiana,1.0,t +7646,0%,El Salvador,1.0,t +19523,100%,,1.0,f +24096,,,1.0,t +41179,,Lebanon,1.0,f +49677,,,1.0,t +16870,,Gibraltar,1.0,f +44212,,Somalia,2.0,f +44212,,Somalia,2.0,f +15674,100%,Pakistan,5.0,f +26510,100%,,1.0,f +35385,,,3.0,t +13626,100%,Cape Verde,1.0,t +25963,,El Salvador,1.0,t +15674,100%,Pakistan,5.0,f +31447,,Nicaragua,1.0,t +46691,90%,Uzbekistan,38.0,f +15674,100%,Pakistan,5.0,f +15674,100%,Pakistan,5.0,f +14075,100%,Indonesia,2.0,t +28566,78%,Slovakia (Slovak Republic),79.0,t +28828,100%,Isle of Man,198.0,t +19840,100%,,1.0,f +22307,,Fiji,1.0,f +46755,100%,Micronesia,1.0,t +39721,,Tunisia,1.0,f +41716,,,1.0,f +24128,54%,Suriname,9.0,t +34402,79%,Reunion,28.0,f +13824,100%,Turks and Caicos Islands,2.0,f +6414,,Guernsey,1.0,f +19349,,,1.0,f +2345,,Marshall Islands,1.0,t +34791,90%,,1.0,t +35867,,United Kingdom,1.0,t +7972,100%,Uzbekistan,2.0,t +14477,100%,Reunion,26.0,t +8810,,,1.0,t +39654,90%,Uzbekistan,1.0,t +38949,100%,,2.0,t +33004,100%,Russian Federation,2.0,t +33004,100%,Russian Federation,2.0,t +44110,,Croatia,1.0,t +28333,33%,Jersey,1.0,t +28984,,Tanzania,1.0,f +35973,,French Polynesia,2.0,t +952,,Grenada,2.0,f +15618,,Mauritania,1.0,f +46691,90%,Uzbekistan,38.0,f +1985,,,1.0,f +77,50%,Monaco,2.0,f +44665,0%,Micronesia,1.0,t +36625,,Niger,1.0,f +19975,,Bahrain,1.0,f +49178,,,1.0,t +11733,,Guinea,1.0,t +17379,,Monaco,1.0,t +13498,,Monaco,1.0,f +14798,,Jersey,1.0,t +4413,,Kiribati,1.0,t +8898,100%,Ecuador,2.0,t +8274,,Chile,1.0,t +27050,60%,Turks and Caicos Islands,2.0,f +8797,,Isle of Man,1.0,f +28124,100%,Costa Rica,2.0,t +15296,,Russian Federation,1.0,f +46466,,Sao Tome and Principe,2.0,t +24844,100%,Uzbekistan,6.0,f +35661,,,1.0,f +331,0%,,1.0,t +25717,100%,Tonga,2.0,t +4996,,,1.0,f +23895,100%,Jersey,2.0,f +42360,100%,Marshall Islands,1.0,f +8659,100%,,1.0,t +20891,100%,Niue,2.0,t +482,,Svalbard & Jan Mayen Islands,1.0,f +17069,,,1.0,f +15362,,Guinea,1.0,t +20794,,Isle of Man,1.0,t +32325,,Croatia,1.0,f +15441,,,1.0,t +48722,,,1.0,t +3585,,,1.0,t +12133,100%,Mexico,4.0,f +32222,,Gambia,4.0,f +23401,,Chile,3.0,f +4260,,,1.0,t +23423,,Guernsey,1.0,t +3711,,,1.0,t +23006,100%,Estonia,1.0,f +460,,Lebanon,1.0,t +7274,,,1.0,f +5703,,,1.0,f +2536,,,1.0,f +26854,,Ecuador,1.0,f +6894,80%,Estonia,47.0,t +8429,100%,Cape Verde,2.0,t +31590,,Russian Federation,1.0,f +40241,,Reunion,1.0,t +3423,,Nauru,3.0,f +36696,,,1.0,f +40866,,,1.0,f +34874,60%,Jersey,1.0,f +29731,,Lithuania,1.0,t +13032,,Niger,1.0,f +28699,,Bouvet Island (Bouvetoya),1.0,f +32407,100%,Estonia,1.0,t +17721,100%,,1.0,f +27768,65%,Kiribati,15.0,t +13697,,,1.0,t +37766,,Bosnia and Herzegovina,1.0,f +6091,,Isle of Man,1.0,t +10819,100%,Mexico,6.0,f +40413,100%,Kiribati,2.0,f +30424,,United Kingdom,1.0,t +18778,,Bosnia and Herzegovina,1.0,t +42996,,Jersey,1.0,f +24878,100%,,1.0,t +3198,100%,,1.0,t +22430,100%,Mauritania,2.0,t +33194,,,1.0,f +25611,,Estonia,1.0,f +34016,100%,Maldives,1.0,t +28466,100%,Philippines,1.0,t +31494,100%,Puerto Rico,2.0,f +14419,92%,Cuba,2.0,t +17149,,Kenya,1.0,f +16212,100%,Svalbard & Jan Mayen Islands,1.0,t +3423,,Nauru,3.0,f +24760,,San Marino,1.0,f +3513,,Uganda,2.0,t +23034,99%,Monaco,54.0,f +30824,,Guernsey,1.0,f +47917,,Monaco,1.0,t +29347,100%,Zimbabwe,2.0,f +34518,100%,Sao Tome and Principe,1.0,f +30708,100%,Australia,5.0,f +30708,100%,Australia,5.0,f +17215,97%,Maldives,9.0,f +5662,100%,Bouvet Island (Bouvetoya),1.0,f +43966,,,1.0,f +29698,100%,Kiribati,3.0,f +34402,79%,Reunion,28.0,f +4909,90%,,2.0,f +29836,,Niue,1.0,f +23832,,Uzbekistan,1.0,f +14717,,Isle of Man,1.0,f +29926,67%,Zimbabwe,7.0,t +29926,67%,Zimbabwe,7.0,t +33680,100%,Rwanda,1.0,t +34402,79%,Reunion,28.0,f +43637,,Guernsey,1.0,f +24420,,Turks and Caicos Islands,1.0,f +6525,100%,Indonesia,3.0,t +34402,79%,Reunion,28.0,f +28726,,Russian Federation,1.0,f +7743,100%,,1.0,f +8859,90%,Ukraine,5.0,f +11391,,Rwanda,1.0,f +49612,,Kenya,1.0,f +38077,100%,Lebanon,1.0,t +30475,92%,Vietnam,40.0,f +4017,,Venezuela,1.0,t +31945,100%,,1.0,t +12850,,France,1.0,f +6838,96%,Spain,59.0,t +3436,100%,,2.0,f +30173,,,1.0,t +18179,100%,,1.0,t +43981,,Guinea,1.0,t +33136,,Isle of Man,1.0,f +12598,100%,Montserrat,3.0,f +37592,100%,Monaco,1.0,f +13213,,Lebanon,1.0,f +46156,,Sao Tome and Principe,1.0,t +5537,100%,Micronesia,1.0,f +5763,,Rwanda,1.0,t +44992,100%,,1.0,f +42229,100%,Fiji,25.0,f +38815,,Croatia,2.0,t +42714,100%,,1.0,f +43988,,Niue,1.0,t +46370,,Isle of Man,1.0,t +38194,,,1.0,f +43788,100%,,2.0,f +3208,,Maldives,1.0,t +43283,,Sao Tome and Principe,1.0,f +43096,,El Salvador,1.0,t +49697,,Bahrain,1.0,f +1996,,Isle of Man,1.0,f +10449,,Uzbekistan,1.0,f +27561,100%,Nicaragua,2.0,t +13718,50%,,2.0,t +16853,100%,,1.0,f +1034,,Maldives,1.0,t +44305,,Kiribati,1.0,t +45067,75%,,3.0,t +28828,100%,Isle of Man,198.0,t +21769,,Ecuador,1.0,t +1705,100%,Russian Federation,2.0,t +45900,,Monaco,1.0,f +30539,,Christmas Island,1.0,f +29804,,Malta,1.0,f +6209,80%,Nicaragua,9.0,t +9085,,Guinea,1.0,t +46823,,,1.0,f +49399,100%,Guinea,4.0,t +20979,,French Guiana,1.0,f +372,,,1.0,f +39675,100%,Estonia,1.0,f +14057,,Mauritania,1.0,t +8830,,United Kingdom,3.0,f +44054,,Marshall Islands,1.0,t +8830,,United Kingdom,3.0,f +42921,100%,Chile,3.0,f +37665,100%,Wallis and Futuna,4.0,t +45020,,Marshall Islands,1.0,t +26833,,France,1.0,f +27119,94%,Nicaragua,10.0,t +20821,,Zimbabwe,2.0,f +40156,100%,Niger,2.0,t +21206,,Isle of Man,2.0,t +10747,100%,Kiribati,2.0,t +28828,100%,Isle of Man,198.0,t +49283,,,1.0,t +9454,,,1.0,t +7706,,Jersey,1.0,t +32999,,French Guiana,1.0,t +2400,33%,,1.0,t +30399,,,1.0,f +4786,,Russian Federation,1.0,t +18779,100%,Mexico,4.0,t +26573,,Zimbabwe,1.0,f +40960,100%,Niue,1.0,t +12738,100%,Ecuador,2.0,t +27914,,,1.0,t +37665,100%,Wallis and Futuna,4.0,t +8275,70%,Gibraltar,2.0,f +27161,,Rwanda,1.0,f +8275,70%,Gibraltar,2.0,f +4964,100%,Malawi,1.0,t +49470,100%,,1.0,f +13642,,Kiribati,1.0,t +42127,,Chile,1.0,t +38675,100%,Slovakia (Slovak Republic),16.0,t +29324,86%,Russian Federation,2.0,f +6209,80%,Nicaragua,9.0,t +12389,100%,,1.0,t +11001,,Papua New Guinea,1.0,f +31438,100%,Nicaragua,5.0,t +36185,,,1.0,f +43414,,Afghanistan,1.0,f +39833,,Djibouti,1.0,t +46779,,Ukraine,2.0,t +20297,80%,Montserrat,17.0,f +1981,,,1.0,f +43074,100%,,1.0,f +2569,100%,Venezuela,3.0,t +21939,,Isle of Man,1.0,t +31341,,Russian Federation,2.0,f +31341,,Russian Federation,2.0,f +2569,100%,Venezuela,3.0,t +42524,,Nauru,1.0,t +38813,,Gambia,1.0,t +13920,100%,,3.0,t +6328,,China,1.0,f +58,,,1.0,t +43765,100%,Turkmenistan,1.0,t +33732,100%,Jersey,1.0,t +18217,,French Guiana,2.0,f +13963,100%,Malta,2.0,t +1900,100%,Tunisia,5.0,t +10819,100%,Mexico,6.0,f +43698,,,1.0,f +25388,,Switzerland,1.0,t +21303,,Nicaragua,1.0,t +41065,,Isle of Man,1.0,t +32338,,Bosnia and Herzegovina,2.0,t +2680,,,1.0,t +11820,100%,Sao Tome and Principe,1.0,f +45112,,Chad,1.0,t +40247,50%,,1.0,t +23245,,Lebanon,1.0,f +19400,100%,Gibraltar,7.0,f +10026,90%,Barbados,2.0,f +48907,100%,,2.0,t +36818,,Maldives,1.0,f +11453,,,1.0,t +46735,,Gibraltar,1.0,f +2620,,Pakistan,1.0,t +3510,,France,1.0,t +48025,,Lebanon,1.0,t +47168,100%,Netherlands,8.0,f +29966,,Russian Federation,1.0,f +12926,,,1.0,f +24896,100%,Algeria,50.0,t +35591,,Chad,1.0,f +44471,,Gibraltar,2.0,t +47594,100%,Kenya,17.0,t +40166,,,1.0,t +2615,100%,Maldives,2.0,t +40560,100%,Barbados,5.0,t +1166,,Lithuania,9.0,t +38157,,Isle of Man,1.0,f +36622,100%,,1.0,t +33451,,Gambia,1.0,f +35454,100%,China,9.0,f +8880,0%,Kiribati,1.0,f +44400,,Tanzania,1.0,t +14008,,,1.0,t +47195,100%,,1.0,f +25758,,Ghana,1.0,t +12507,,,1.0,t +19717,,United Kingdom,1.0,f +29181,,Niue,1.0,f +30497,100%,Slovakia (Slovak Republic),9.0,t +34698,100%,Faroe Islands,1.0,t +15445,,Tonga,1.0,t +4078,100%,Cape Verde,2.0,t +38380,,,1.0,f +14226,,,1.0,f +41473,,Niue,2.0,t +10464,,Sao Tome and Principe,1.0,f +31987,,Isle of Man,1.0,f +6955,,Nicaragua,1.0,t +964,,,1.0,t +48081,100%,Marshall Islands,1.0,f +46764,100%,Chile,3.0,t +34970,,,1.0,f +4656,,Niue,1.0,t +32742,100%,Nicaragua,3.0,t +1625,100%,Indonesia,1.0,f +41504,100%,Monaco,2.0,t +38980,,Cape Verde,1.0,f +35590,,Turkmenistan,1.0,f +26935,,Philippines,1.0,t +45698,,Vanuatu,1.0,t +32130,,Cuba,2.0,t +49782,90%,Kenya,3.0,t +27191,100%,Lebanon,1.0,f +12715,100%,Estonia,29.0,f +49626,,Tanzania,2.0,t +7989,,Mauritania,1.0,f +19400,100%,Gibraltar,7.0,f +28661,,Indonesia,1.0,t +20075,,,1.0,t +1814,,,1.0,t +30476,,,1.0,f +11112,,,1.0,t +17966,100%,Isle of Man,1.0,t +3657,,French Guiana,5.0,t +18370,100%,Mauritania,1.0,t +40514,,Ecuador,1.0,f +28364,,Guernsey,1.0,t +7947,,Anguilla,1.0,f +11764,,Gibraltar,1.0,t +16690,88%,Malawi,2.0,t +16865,,Micronesia,2.0,t +12218,,,1.0,t +1351,,Micronesia,1.0,t +23121,,Lithuania,1.0,t +4208,,Guernsey,1.0,t +9980,,,1.0,t +23058,100%,Philippines,1.0,f +21654,96%,Solomon Islands,5.0,t +49841,,,1.0,f +11656,,,1.0,f +30867,,,1.0,f +48907,100%,,2.0,t +21507,100%,Togo,2.0,f +314,,Libyan Arab Jamahiriya,1.0,t +26765,,,1.0,t +44613,100%,,1.0,t +4638,,Cape Verde,1.0,f +37711,100%,Niue,2.0,t +17496,,,1.0,f +8560,,,1.0,f +23925,,Sao Tome and Principe,1.0,f +28877,,Kiribati,1.0,t +1415,,Venezuela,1.0,f +38368,,,1.0,t +21414,,Russian Federation,1.0,f +13249,100%,,1.0,t +28828,100%,Isle of Man,198.0,t +6894,80%,Estonia,47.0,t +10694,,Somalia,1.0,t +46545,,Guinea,1.0,f +43178,100%,Marshall Islands,2.0,f +4246,100%,Gibraltar,2.0,t +38884,,,1.0,f +20805,,Nauru,2.0,t +19550,,Marshall Islands,1.0,t +48302,,Russian Federation,2.0,t +27038,,Ghana,1.0,f +38267,90%,United Kingdom,1.0,t +13071,100%,Sao Tome and Principe,1.0,f +39100,100%,,2.0,t +39586,75%,,1.0,f +45745,,Croatia,1.0,f +24047,,Tonga,2.0,t +40097,,Lebanon,1.0,f +13716,80%,,1.0,f +41253,90%,Sao Tome and Principe,3.0,t +48896,100%,Isle of Man,1.0,f +43444,,Chad,1.0,t +2972,,French Guiana,1.0,f +36651,,Guinea,1.0,f +15278,,Isle of Man,1.0,t +19555,100%,Faroe Islands,3.0,t +19555,100%,Faroe Islands,3.0,t +36222,100%,,2.0,f +13506,100%,Mexico,1.0,t +8504,,,1.0,t +2549,100%,Russian Federation,3.0,f +2549,100%,Russian Federation,3.0,f +48028,,Korea,1.0,f +22028,,,1.0,f +16823,,Faroe Islands,1.0,f +32975,100%,Micronesia,3.0,f +14364,100%,Nauru,9.0,f +28809,100%,,1.0,f +21243,,Russian Federation,1.0,t +2079,,Uganda,1.0,f +31545,,,1.0,f +6838,96%,Spain,59.0,t +33992,,Mauritania,2.0,f +5475,,Kenya,1.0,f +8953,90%,Micronesia,7.0,t +23476,,Uzbekistan,1.0,t +34987,,Russian Federation,2.0,t +43733,,Chile,1.0,f +20187,100%,Cuba,3.0,t +36986,,Isle of Man,2.0,t +23049,100%,,1.0,t +23843,100%,Isle of Man,3.0,t +31535,,Malta,2.0,t +31535,,Malta,2.0,t +41878,91%,Maldives,47.0,f +21666,,Nauru,1.0,t +10848,,Uzbekistan,1.0,f +16308,,,1.0,f +14813,,Philippines,1.0,f +4021,,Cocos (Keeling) Islands,1.0,t +20442,,Indonesia,2.0,t +4188,,Isle of Man,1.0,t +12462,,Brazil,1.0,t +3115,83%,Slovakia (Slovak Republic),17.0,t +24202,90%,Rwanda,1.0,f +37781,,Zimbabwe,1.0,f +47885,,,1.0,f +22610,,,1.0,f +4864,,Lebanon,1.0,f +26763,,Tonga,1.0,t +2546,,,1.0,t +25558,100%,Estonia,1.0,f +30389,,Niue,1.0,t +21388,100%,,1.0,t +23388,,Venezuela,1.0,f +9835,,Isle of Man,1.0,t +10244,100%,Philippines,10.0,f +16839,,,1.0,f +24932,80%,Kiribati,2.0,t +34031,,,1.0,t +44574,100%,Mexico,1.0,t +30406,,Russian Federation,2.0,f +3872,80%,Niue,1.0,f +28249,,Bosnia and Herzegovina,1.0,f +48099,,Ghana,1.0,f +44275,,,1.0,t +6825,,Croatia,1.0,t +49439,,,1.0,f +26812,100%,United Kingdom,1.0,t +16998,100%,Bahrain,2.0,f +4578,,Russian Federation,1.0,t +34461,,Kenya,1.0,t +3187,100%,Tonga,2.0,t +39893,100%,Niue,2.0,f +4180,,Niue,1.0,f +42744,,,1.0,t +19987,100%,French Polynesia,4.0,f +18827,,Gibraltar,1.0,f +35657,100%,Zimbabwe,2.0,t +39051,,,1.0,t +6894,80%,Estonia,47.0,t +41887,100%,,1.0,t +26792,,Bouvet Island (Bouvetoya),1.0,t +2784,,Pakistan,1.0,f +4585,,Philippines,1.0,t +29345,100%,Kenya,1.0,t +24678,,Faroe Islands,2.0,f +45001,,Ghana,1.0,f +28230,,French Guiana,1.0,t +10244,100%,Philippines,10.0,f +29194,,Barbados,3.0,t +42204,,Micronesia,2.0,t +5981,,,1.0,t +18641,100%,Maldives,2.0,t +48382,100%,Niue,3.0,t +20442,,Indonesia,2.0,t +14121,100%,,1.0,f +30446,0%,China,1.0,f +19287,,,1.0,f +41181,100%,Rwanda,2.0,f +46488,,Chad,1.0,t +20834,,Lebanon,2.0,f +6090,,Gambia,1.0,f +16516,,,1.0,f +30299,,Senegal,1.0,f +6550,,Micronesia,1.0,f +28901,,Maldives,1.0,f +19429,,Turkmenistan,1.0,f +15635,84%,,3.0,f +29082,100%,Ecuador,2.0,t +9626,100%,,1.0,f +36416,,Tonga,1.0,f +34000,,Monaco,1.0,f +42244,,Niue,1.0,t +48266,100%,Uganda,3.0,t +29647,100%,Peru,1305.0,f +6507,100%,Tanzania,1.0,t +37579,100%,,2.0,t +14298,100%,Zimbabwe,1.0,t +8574,100%,Niue,2.0,f +5515,100%,Monaco,2.0,t +29653,,,1.0,t +24226,,Chad,1.0,t +36765,,,1.0,f +29647,100%,Peru,1305.0,f +25672,,Reunion,1.0,f +28507,,,1.0,f +34402,79%,Reunion,28.0,f +5166,100%,Ecuador,16.0,t +5166,100%,Ecuador,16.0,t +5166,100%,Ecuador,16.0,t +5166,100%,Ecuador,16.0,t +31369,100%,French Guiana,1.0,t +29647,100%,Peru,1305.0,f +40148,,Slovakia (Slovak Republic),1.0,f +31846,,,1.0,t +36090,,Tonga,1.0,f +35302,,Guinea,1.0,f +2989,,,1.0,f +16835,,,1.0,f +23918,,Uzbekistan,1.0,t +40279,,Monaco,1.0,t +46902,,El Salvador,1.0,t +10893,,Turkmenistan,1.0,f +33800,,Chad,1.0,f +26840,,Nicaragua,1.0,f +13780,100%,Guinea,1.0,f +11253,,Ghana,7.0,f +14644,,Russian Federation,3.0,f +43154,100%,,1.0,t +944,,Vietnam,7.0,t +30227,,,1.0,f +16196,,,2.0,f +41773,78%,Maldives,2.0,t +982,99%,Marshall Islands,32.0,f +41860,,Niue,1.0,f +13876,,,1.0,t +4869,,,1.0,f +7057,,Sao Tome and Principe,1.0,f +36110,,Guernsey,1.0,t +5734,,,1.0,t +29926,67%,Zimbabwe,7.0,t +29647,100%,Peru,1305.0,f +25707,,,1.0,f +23130,100%,,1.0,t +535,,Nicaragua,1.0,f +551,95%,Rwanda,17.0,f +43404,,,2.0,f +42536,,Monaco,1.0,t +24047,,Tonga,2.0,t +17577,,Lebanon,1.0,t +16145,,French Guiana,1.0,f +34285,100%,Russian Federation,1.0,t +37471,88%,,1.0,f +35439,94%,United Kingdom,23.0,t +30475,92%,Vietnam,40.0,f +42248,,,1.0,f +45546,100%,Cape Verde,19.0,t +22706,,Mauritania,1.0,f +12021,,,1.0,t +19725,,,1.0,t +28980,,Nauru,1.0,t +11591,,,1.0,t +46935,90%,Costa Rica,2.0,t +12619,,Rwanda,1.0,t +18157,,,1.0,f +15323,75%,Slovakia (Slovak Republic),1.0,f +36643,98%,Maldives,17.0,f +41486,50%,Micronesia,2.0,f +29306,100%,,1.0,f +6648,,Turks and Caicos Islands,1.0,f +14414,,Tonga,1.0,t +25214,,,1.0,f +38162,100%,Niger,8.0,f +34318,,Isle of Man,1.0,t +34964,,Jersey,1.0,f +27741,100%,Rwanda,1.0,f +29647,100%,Peru,1305.0,f +37937,100%,Togo,1.0,f +1624,,Guernsey,1.0,f +46351,100%,Jersey,2.0,t +9987,,French Guiana,1.0,t +16678,,Micronesia,1.0,f +29647,100%,Peru,1305.0,f +19584,0%,Russian Federation,1.0,f +49538,,,1.0,f +5450,,,1.0,f +37710,,French Guiana,2.0,f +888,100%,Christmas Island,1.0,t +15366,,Micronesia,1.0,t +6036,,Isle of Man,1.0,f +17351,100%,Rwanda,2.0,f +29647,100%,Peru,1305.0,f +49416,,Rwanda,1.0,t +479,100%,Pakistan,4.0,f +30629,,Croatia,1.0,f +32704,,Nicaragua,1.0,t +48510,,Tonga,1.0,t +29647,100%,Peru,1305.0,f +45695,78%,,1.0,t +41559,100%,Montserrat,4.0,t +36171,,Sao Tome and Principe,6.0,t +29647,100%,Peru,1305.0,f +22251,100%,Gambia,11.0,f +40743,,Niger,2.0,t +28828,100%,Isle of Man,198.0,t +739,,Guinea,1.0,f +44196,,Faroe Islands,1.0,t +14597,,Andorra,1.0,f +5461,,Montserrat,1.0,t +34060,,Svalbard & Jan Mayen Islands,2.0,f +44325,,Lebanon,1.0,t +36282,100%,Zimbabwe,3.0,t +13966,,Ghana,1.0,f +49306,,French Guiana,1.0,f +15169,,,1.0,t +35312,100%,,1.0,f +38550,,Chad,1.0,f +24447,,Croatia,1.0,t +24562,,Lithuania,1.0,f +27886,,Barbados,1.0,f +16099,,Zimbabwe,1.0,f +32235,,Lebanon,1.0,t +17413,100%,Isle of Man,2.0,t +34060,,Svalbard & Jan Mayen Islands,2.0,f +46472,,Bouvet Island (Bouvetoya),1.0,t +41482,,Uzbekistan,1.0,t +16475,,,2.0,t +746,,Kiribati,4.0,f +22333,,Croatia,2.0,t +42771,,Russian Federation,1.0,t +38003,,Senegal,1.0,f +7154,,,1.0,f +28433,,Afghanistan,1.0,t +16622,,Monaco,1.0,f +44174,100%,Guinea,2.0,t +19458,,,1.0,t +21887,100%,Anguilla,1.0,f +12459,,Rwanda,1.0,f +11145,100%,,1.0,f +24000,100%,,1.0,f +30213,0%,United Kingdom,2.0,f +10340,,Ecuador,1.0,t +9800,,,1.0,f +10244,100%,Philippines,10.0,f +21172,,Niue,1.0,t +7355,,Slovenia,1.0,f +15699,100%,Niue,4.0,f +15699,100%,Niue,4.0,f +30554,,France,1.0,f +12963,,,1.0,f +3974,,Fiji,1.0,f +6754,,Niue,1.0,t +8302,,Costa Rica,1.0,f +33997,,Guinea,1.0,f +32947,,Netherlands,1.0,t +22650,100%,Marshall Islands,1.0,f +27297,,Isle of Man,1.0,t +4523,,,1.0,t +8360,,Isle of Man,1.0,t +33315,,Uzbekistan,1.0,t +35146,,Libyan Arab Jamahiriya,1.0,t +30865,67%,Marshall Islands,1.0,t +37630,100%,Tonga,1.0,f +23496,,Cape Verde,1.0,t +4344,,Lithuania,1.0,f +18695,,Kenya,1.0,f +42826,,,1.0,f +24194,,Palestinian Territory,1.0,t +540,,Turkmenistan,1.0,f +19018,,,1.0,t +30213,0%,United Kingdom,2.0,f +26429,50%,,1.0,f +11235,,Netherlands Antilles,1.0,f +5456,,Svalbard & Jan Mayen Islands,1.0,t +42315,,Gambia,1.0,f +31608,,Tanzania,1.0,f +40537,,Faroe Islands,1.0,t +40146,,Faroe Islands,1.0,t +29551,100%,Mauritania,2.0,f +3821,100%,,1.0,f +15931,100%,,4.0,f +8109,,,1.0,t +37356,,Guinea,3.0,f +25790,,,1.0,f +47649,,,1.0,t +39742,97%,,2.0,f +40350,,Mauritania,1.0,t +17918,100%,Mexico,1.0,f +8533,,Bouvet Island (Bouvetoya),1.0,f +23759,100%,,1.0,t +45943,100%,Micronesia,2.0,f +48676,,Monaco,2.0,t +30348,,Nicaragua,2.0,f +41940,,,1.0,t +36896,50%,Turkmenistan,1.0,f +15359,,,2.0,t +23504,,Lithuania,3.0,t +21772,,Saint Helena,1.0,f +26142,60%,Peru,2.0,t +35863,,Afghanistan,3.0,t +47538,90%,Tonga,1.0,f +16034,,Russian Federation,1.0,f +24573,100%,Sao Tome and Principe,1.0,t +1260,,Lebanon,1.0,f +7632,,French Guiana,1.0,f +15444,,Gambia,1.0,f +9030,,Russian Federation,1.0,f +4028,100%,,3.0,t +29647,100%,Peru,1305.0,f +31156,100%,,1.0,t +6765,,Russian Federation,1.0,t +18600,,,2.0,t +5840,,,1.0,t +41464,,Chad,1.0,f +26534,,,1.0,f +6461,,Niue,2.0,f +78,100%,Gambia,1.0,t +38094,,Lebanon,1.0,f +29647,100%,Peru,1305.0,f +30475,92%,Vietnam,40.0,f +30473,,Portugal,1.0,t +45177,,Chile,1.0,t +46977,100%,Nauru,1.0,f +20738,100%,Marshall Islands,1.0,t +29647,100%,Peru,1305.0,f +15301,,Niue,1.0,t +29926,67%,Zimbabwe,7.0,t +26250,100%,Tunisia,5.0,t +43605,,Saint Helena,2.0,t +22991,100%,Korea,4.0,t +17084,,Venezuela,1.0,t +34794,,Chad,2.0,t +2073,89%,,1.0,t +21075,,Uzbekistan,2.0,t +49156,,Guinea,1.0,t +43348,100%,Ecuador,1.0,t +30135,,Reunion,1.0,f +44554,100%,Uzbekistan,2.0,f +43115,100%,Maldives,1.0,t +20925,,,1.0,t +43607,100%,,2.0,f +31457,100%,,2.0,t +44554,100%,Uzbekistan,2.0,f +19240,,Niue,1.0,t +24582,,Netherlands,2.0,t +24395,,Maldives,1.0,f +6463,,Micronesia,1.0,f +38763,,Bouvet Island (Bouvetoya),1.0,f +4872,,Rwanda,1.0,t +30427,,Indonesia,1.0,f +4916,,Isle of Man,1.0,f +1410,100%,,1.0,f +20046,,,1.0,t +39747,,Monaco,1.0,f +28522,100%,Denmark,1.0,t +31559,,Kiribati,1.0,f +42061,,Uzbekistan,1.0,t +5545,,Bosnia and Herzegovina,1.0,t +29647,100%,Peru,1305.0,f +9542,,Costa Rica,1.0,f +27221,,,1.0,f +38393,,Reunion,1.0,f +13210,,Holy See (Vatican City State),1.0,t +44786,,,1.0,t +43080,,,1.0,f +46641,100%,Isle of Man,1.0,f +8481,100%,Rwanda,1.0,f +340,,Ghana,3.0,t +28537,,,1.0,f +17687,,,1.0,f +22602,100%,Ukraine,2.0,f +14347,,Chile,2.0,t +19088,,Ecuador,1.0,t +29647,100%,Peru,1305.0,f +43321,100%,France,40.0,f +12582,,,1.0,f +7949,,Guinea,1.0,f +21398,,Russian Federation,2.0,t +48676,,Monaco,2.0,t +29647,100%,Peru,1305.0,f +46555,,Marshall Islands,1.0,f +14503,80%,Marshall Islands,1.0,t +12904,,,2.0,f +29647,100%,Peru,1305.0,f +10860,,Uzbekistan,1.0,t +8574,100%,Niue,2.0,f +2389,,Bouvet Island (Bouvetoya),1.0,t +8353,,Montserrat,1.0,f +38902,,Marshall Islands,1.0,f +15931,100%,,4.0,f +23325,100%,Russian Federation,2.0,t +3206,,,1.0,t +24035,,Micronesia,1.0,f +16104,50%,,1.0,f +28267,,Gambia,1.0,t +28283,90%,Ecuador,1.0,t +20818,100%,Lithuania,2.0,f +47702,,,1.0,t +39677,100%,,1.0,t +1561,,Guinea,1.0,f +21555,,Niue,1.0,t +32197,,,1.0,t +11694,,Montserrat,1.0,f +20389,,Guinea,1.0,f +9976,100%,Russian Federation,2.0,f +27051,,,1.0,f +21135,,Afghanistan,1.0,t +32054,,,1.0,t +45661,,,1.0,t +5181,100%,Nicaragua,2.0,f +25639,,Lebanon,1.0,f +43391,50%,,2.0,f +43391,50%,,2.0,f +5181,100%,Nicaragua,2.0,f +27305,,Finland,1.0,f +7088,,Maldives,1.0,t +8049,,Rwanda,2.0,t +363,,Niue,1.0,f +5591,99%,Indonesia,16.0,t +5862,,,1.0,f +41114,,Jersey,1.0,t +5591,99%,Indonesia,16.0,t +42510,100%,,1.0,t +43043,,Chad,1.0,f +11278,100%,Chile,1.0,f +14706,,Somalia,1.0,f +34793,100%,,5.0,t +27457,,Svalbard & Jan Mayen Islands,1.0,f +30409,100%,,3.0,t +5614,,,1.0,t +49536,100%,,2.0,t +5448,,Bosnia and Herzegovina,2.0,t +41680,,Kiribati,1.0,f +36453,0%,Kiribati,1.0,f +5448,,Bosnia and Herzegovina,2.0,t +10137,,,2.0,f +28707,100%,Micronesia,2.0,t +10585,100%,Niue,1.0,t +8694,100%,Togo,2.0,f +17470,100%,Denmark,7.0,t +83,100%,,1.0,f +30892,100%,Lebanon,1.0,f +29872,,Gibraltar,2.0,t +34586,75%,,1.0,t +9132,,Isle of Man,1.0,f +38069,,Chile,1.0,t +25396,100%,Montserrat,2.0,f +9306,,Mauritania,1.0,f +30267,,Guernsey,1.0,f +13582,,Guinea,2.0,f +21045,100%,French Guiana,2.0,f +23034,99%,Monaco,54.0,f +45691,,Russian Federation,1.0,t +31805,99%,Mauritania,20.0,f +46730,100%,,1.0,f +44673,,Marshall Islands,1.0,f +16923,,,1.0,f +50000,,Uzbekistan,1.0,f +12399,,Costa Rica,2.0,f +29647,100%,Peru,1305.0,f +3175,100%,Gibraltar,2.0,t +19594,,,1.0,f +29647,100%,Peru,1305.0,f +17850,0%,Uganda,5.0,f +25033,,,1.0,f +47604,95%,Uzbekistan,4.0,t +21706,100%,,1.0,t +17850,0%,Uganda,5.0,f +17850,0%,Uganda,5.0,f +29629,,,1.0,t +17850,0%,Uganda,5.0,f +17850,0%,Uganda,5.0,f +40159,,,1.0,t +4682,100%,Vanuatu,5.0,f +21880,,Gambia,1.0,f +9755,100%,Micronesia,1.0,f +31493,100%,Fiji,2.0,f +42659,,Russian Federation,1.0,f +48057,,Niger,1.0,f +13196,,Isle of Man,1.0,t +12840,100%,Wallis and Futuna,1.0,t +20259,,El Salvador,1.0,f +23504,,Lithuania,3.0,t +1148,,Lebanon,1.0,f +45444,,Croatia,1.0,t +14219,,,1.0,t +34881,100%,China,6.0,f +46117,,Mauritania,1.0,f +19006,,Guinea,1.0,f +19544,100%,Korea,1.0,t +45719,,,1.0,f +23752,,Canada,1.0,f +7713,,Lebanon,1.0,f +11188,100%,Uzbekistan,2.0,t +40474,74%,Russian Federation,3.0,f +22032,,Maldives,1.0,f +16255,,,1.0,t +28750,100%,Cuba,2.0,t +40522,100%,Gambia,2.0,f +34579,,United Kingdom,1.0,t +25656,,Russian Federation,1.0,f +39464,,Gambia,1.0,t +24614,,Rwanda,1.0,f +22466,,Wallis and Futuna,1.0,f +30624,,Svalbard & Jan Mayen Islands,1.0,f +6461,,Niue,2.0,f +19102,,,1.0,f +13276,90%,United Kingdom,5.0,t +41191,,,1.0,f +39227,,Uzbekistan,2.0,f +47181,93%,Kiribati,5.0,t +30292,67%,Anguilla,6.0,f +30292,67%,Anguilla,6.0,f +41607,100%,Liechtenstein,3.0,f +4885,,Cuba,1.0,t +7695,,Venezuela,1.0,t +12904,,,2.0,f +27541,,Guernsey,1.0,t +47181,93%,Kiribati,5.0,t +19984,100%,Ecuador,14.0,t +32208,,Guinea,1.0,f +33467,,Brazil,1.0,t +8049,,Rwanda,2.0,t +37547,,Russian Federation,1.0,t +45144,100%,,1.0,f +15845,100%,Jersey,1.0,f +16035,,Niue,1.0,t +23574,,Isle of Man,1.0,t +39090,100%,Jersey,1.0,t +20805,,Nauru,2.0,t +35841,100%,Saint Helena,4.0,f +32836,100%,Isle of Man,1.0,f +5212,,Marshall Islands,1.0,f +8976,97%,Guinea,3.0,f +374,75%,Brazil,2.0,t +28839,,Anguilla,1.0,t +37871,,Chile,1.0,t +47181,93%,Kiribati,5.0,t +47181,93%,Kiribati,5.0,t +47181,93%,Kiribati,5.0,t +8263,100%,,1.0,f +45459,100%,Nicaragua,2.0,t +25845,,,1.0,f +40886,0%,Turks and Caicos Islands,3.0,f +18802,,Tunisia,2.0,t +44504,100%,,3.0,f +41229,100%,Zimbabwe,2.0,t +15726,,Cape Verde,1.0,f +3307,100%,,2.0,t +44263,,El Salvador,1.0,f +6917,,French Guiana,1.0,t +26062,,Gibraltar,1.0,f +2884,,,1.0,f +28162,,Ecuador,1.0,f +34927,100%,Niue,2.0,f +27186,100%,Zimbabwe,7.0,t +35611,,,1.0,f +47465,,Uganda,1.0,f +30617,,,1.0,f +7102,100%,Vanuatu,4.0,t +19850,100%,,1.0,t +21515,,Estonia,1.0,f +41460,,Kiribati,1.0,f +33849,100%,Marshall Islands,3.0,t +59,,,1.0,f +1342,,Bosnia and Herzegovina,1.0,t +48080,100%,,1.0,f +2225,,Micronesia,1.0,f +40193,,,1.0,t +12678,,Niger,1.0,f +7741,,Bosnia and Herzegovina,1.0,t +32688,,Isle of Man,1.0,f +15446,,Zimbabwe,1.0,f +38519,,,1.0,t +5301,70%,Gambia,1.0,f +30543,100%,Croatia,2.0,t +20782,,Cocos (Keeling) Islands,2.0,f +25957,,Lebanon,1.0,f +27846,,Puerto Rico,1.0,f +12012,,French Guiana,1.0,t +29052,100%,Kiribati,1.0,f +8844,,Marshall Islands,1.0,f +37758,,,1.0,f +18097,,Afghanistan,1.0,t +27899,,France,1.0,f +30700,100%,Russian Federation,2.0,f +13044,100%,Russian Federation,1.0,t +42149,,,1.0,t +19773,100%,,2.0,t +16262,100%,Guernsey,3.0,t +16938,,,1.0,t +47644,,French Guiana,1.0,t +20493,,,1.0,f +22485,,Uzbekistan,1.0,t +3915,100%,Ghana,2.0,t +6844,,Zimbabwe,1.0,f +14998,,Cocos (Keeling) Islands,1.0,t +27236,,Bosnia and Herzegovina,1.0,f +17139,,Tanzania,1.0,t +20292,71%,,2.0,t +40476,,Maldives,2.0,t +15645,,Peru,1.0,f +37984,,Uzbekistan,2.0,f +25112,,Togo,4.0,f +9229,,France,1.0,t +15040,,,1.0,f +17470,100%,Denmark,7.0,t +36053,,Maldives,1.0,t +10731,,,1.0,f +33006,100%,Niue,1.0,t +1811,100%,,3.0,f +26143,100%,,1.0,f +12412,,Sao Tome and Principe,1.0,f +4123,,Andorra,2.0,f +30177,100%,Niue,2.0,t +45367,,Niue,2.0,f +40886,0%,Turks and Caicos Islands,3.0,f +10320,92%,Tonga,10.0,f +4097,100%,Croatia,7.0,f +6538,100%,Sao Tome and Principe,1.0,t +43470,,Somalia,1.0,f +36559,,Marshall Islands,1.0,t +43683,,Finland,1.0,f +41523,,,1.0,t +11567,100%,Niger,31.0,t +43863,,Isle of Man,1.0,t +5907,,Wallis and Futuna,1.0,f +37683,,,1.0,f +27515,100%,Niue,1.0,t +44681,100%,Chad,1.0,f +40110,,Somalia,1.0,f +3645,,Togo,1.0,f +28659,,Brunei Darussalam,1.0,t +25476,100%,Fiji,11.0,f +39599,,Afghanistan,1.0,f +44391,100%,Kiribati,2.0,f +25274,,Gambia,1.0,f +20778,100%,Ecuador,1.0,t +30982,,Chad,3.0,f +554,,,1.0,f +5460,,Russian Federation,1.0,t +497,,Denmark,2.0,t +43024,,Croatia,1.0,t +11601,,,1.0,f +20235,,Jersey,1.0,t +14937,100%,,2.0,f +15400,100%,Micronesia,1.0,t +14937,100%,,2.0,f +24714,,Cape Verde,1.0,f +27159,,Isle of Man,1.0,t +12715,100%,Estonia,29.0,f +35889,,,1.0,t +41004,,Malta,1.0,f +45670,70%,Sao Tome and Principe,1.0,t +8164,,Cape Verde,1.0,f +38495,100%,,1.0,f +46037,,Grenada,1.0,t +17470,100%,Denmark,7.0,t +18800,,Isle of Man,1.0,f +20714,100%,Isle of Man,1.0,t +25884,88%,United Kingdom,1.0,f +7535,,Faroe Islands,1.0,t +4088,,,1.0,f +18492,,Sao Tome and Principe,1.0,t +44433,,,1.0,t +4126,,Uzbekistan,1.0,t +42733,88%,,4.0,t +1236,100%,Nauru,1.0,t +45753,100%,Tunisia,1.0,t +22151,,,1.0,f +33696,,Lebanon,2.0,t +6088,100%,,14.0,t +40939,100%,Maldives,1.0,t +26746,,China,1.0,t +12715,100%,Estonia,29.0,f +14543,,Isle of Man,1.0,t +40089,,Puerto Rico,8.0,f +7828,,Rwanda,1.0,f +30292,67%,Anguilla,6.0,f +2808,,Lebanon,1.0,f +45138,79%,Barbados,14.0,f +24538,,,1.0,f +17567,,,1.0,f +30292,67%,Anguilla,6.0,f +22025,,Guernsey,1.0,f +26892,100%,Togo,12.0,t +6933,,Malta,1.0,f +39460,100%,Malta,1.0,f +41730,,Puerto Rico,1.0,f +26892,100%,Togo,12.0,t +26892,100%,Togo,12.0,t +22049,,Djibouti,1.0,f +39126,100%,Guinea,9.0,f +26892,100%,Togo,12.0,t +49109,,Russian Federation,1.0,t +43691,,Anguilla,1.0,t +27506,100%,,1.0,t +46432,,Niue,1.0,f +6819,,Russian Federation,2.0,f +35350,,,1.0,f +23996,,,1.0,t +21622,,,1.0,t +1545,,,1.0,f +15970,,Mauritania,1.0,f +39357,100%,,1.0,f +48909,,,1.0,f +50044,,Uzbekistan,1.0,f +35602,,,1.0,f +30083,0%,Barbados,1.0,t +38812,,Micronesia,1.0,t +17438,,Turkmenistan,1.0,t +16866,,,1.0,f +32789,,Gambia,2.0,t +40240,90%,Niue,2.0,t +30225,,San Marino,1.0,f +7786,,,1.0,f +497,,Denmark,2.0,t +43199,,Svalbard & Jan Mayen Islands,2.0,t +7195,,,1.0,f +29375,,Jersey,1.0,t +14047,100%,Philippines,4.0,f +8801,70%,,1.0,t +6325,100%,Niger,1.0,f +11709,,Micronesia,1.0,f +28026,,Niue,1.0,t +34793,100%,,5.0,t +10029,,Niue,1.0,t +30044,,Eritrea,3.0,f +24072,,Bouvet Island (Bouvetoya),1.0,f +2516,67%,Lebanon,1.0,t +8294,0%,Zimbabwe,1.0,f +28618,100%,Malta,3.0,t +3543,100%,Slovakia (Slovak Republic),4.0,t +17389,,Gibraltar,1.0,f +16797,,Bosnia and Herzegovina,1.0,f +25334,,,1.0,t +47797,,Lebanon,1.0,t +48060,,Ecuador,1.0,f +12489,,Rwanda,1.0,f +39510,,Guinea,1.0,f +13403,96%,Maldives,21.0,t +24582,,Netherlands,2.0,t +12929,,Russian Federation,1.0,t +19098,100%,Turks and Caicos Islands,1.0,t +15925,100%,Niger,1.0,t +31656,,Nicaragua,1.0,f +24896,100%,Algeria,50.0,t +43445,,Kiribati,1.0,f +44315,,Mauritania,1.0,t +26371,100%,French Guiana,1.0,f +29647,100%,Peru,1305.0,f +27848,,,1.0,f +14459,40%,Ukraine,1.0,f +41559,100%,Montserrat,4.0,t +37466,100%,Marshall Islands,1.0,t +25462,100%,Brazil,2.0,t +26178,75%,United Kingdom,1.0,t +8529,100%,Uzbekistan,1.0,t +31594,100%,Philippines,19.0,t +13605,,Nicaragua,1.0,f +26722,,Marshall Islands,2.0,t +26722,,Marshall Islands,2.0,t +31802,100%,New Zealand,5.0,t +34793,100%,,5.0,t +21427,100%,United Kingdom,8.0,t +37407,,Zimbabwe,1.0,f +47495,100%,Gibraltar,2.0,t +12715,100%,Estonia,29.0,f +38203,100%,Guinea,2.0,t +38675,100%,Slovakia (Slovak Republic),16.0,t +29411,100%,Svalbard & Jan Mayen Islands,2.0,f +16510,,Venezuela,1.0,t +15092,,Bouvet Island (Bouvetoya),1.0,f +34793,100%,,5.0,t +36465,,,1.0,t +20012,,Costa Rica,2.0,f +40332,,Tonga,1.0,f +18514,,,1.0,f +42001,,Malta,2.0,t +31366,,Saint Helena,1.0,t +34688,100%,Gambia,2.0,t +46526,100%,,2.0,t +36481,95%,Kiribati,7.0,t +31551,97%,Kiribati,8.0,t +43605,,Saint Helena,2.0,t +19672,,Kenya,1.0,t +19418,100%,Costa Rica,1.0,t +27823,100%,,1.0,t +43588,100%,Fiji,7.0,f +5385,,Cape Verde,1.0,t +31108,,Svalbard & Jan Mayen Islands,2.0,t +35238,,Grenada,1.0,t +3800,,Tonga,1.0,f +44922,100%,Jersey,2.0,f +14610,100%,Niue,2.0,t +32581,,Philippines,1.0,t +25534,90%,Indonesia,5.0,t +33832,0%,Denmark,7.0,t +31551,97%,Kiribati,8.0,t +36481,95%,Kiribati,7.0,t +36481,95%,Kiribati,7.0,t +36481,95%,Kiribati,7.0,t +48183,,Bahrain,1.0,t +32161,100%,Nicaragua,5.0,t +48844,,,1.0,t +29307,,Guinea,1.0,f +15481,,Guinea,1.0,f +26265,,Venezuela,1.0,t +8523,100%,Sao Tome and Principe,3.0,t +6578,,,1.0,t +2503,,,1.0,f +10839,100%,Malta,1.0,t +47377,,Chad,2.0,t +19168,100%,Guinea,1.0,t +5504,,Cape Verde,2.0,t +19367,,Uzbekistan,1.0,f +12317,100%,,1.0,f +20459,,Russian Federation,1.0,t +8159,100%,Micronesia,3.0,f +25365,,,1.0,f +18849,,Isle of Man,1.0,t +39561,100%,,2.0,t +28682,,Chile,1.0,f +26533,,Kenya,1.0,t +44307,,Wallis and Futuna,1.0,f +31098,,,1.0,t +17990,100%,,2.0,f +46262,100%,Kenya,1.0,t +4271,,Turks and Caicos Islands,1.0,f +30259,,,1.0,t +515,100%,Mauritania,1.0,f +20759,100%,,1.0,f +36250,,Tonga,1.0,t +45530,,Pakistan,1.0,t +19254,,,1.0,t +42671,,Niue,1.0,f +36402,,Lebanon,2.0,f +48372,100%,Barbados,12.0,t +29511,,Indonesia,1.0,t +23252,,,1.0,f +9854,,Niger,1.0,f +19407,,Maldives,1.0,f +46594,100%,Vietnam,1.0,t +6854,,Estonia,1.0,f +14637,100%,,1.0,f +38616,,Zimbabwe,1.0,f +13226,,,1.0,f +11807,,Indonesia,2.0,f +32337,,Cocos (Keeling) Islands,1.0,f +24635,,Gambia,1.0,f +43199,,Svalbard & Jan Mayen Islands,2.0,t +26462,,Gambia,1.0,t +17747,,Niue,1.0,t +1699,100%,United Kingdom,1.0,f +38810,100%,Micronesia,3.0,f +2339,100%,Marshall Islands,3.0,t +2490,,Niue,1.0,t +7455,,Chad,1.0,t +26567,70%,Guinea,2.0,f +44217,100%,,1.0,f +38437,,Rwanda,1.0,t +9952,,,1.0,f +8879,,Niue,1.0,f +36658,94%,China,20.0,t +49215,,,1.0,f +8565,0%,Russian Federation,2.0,t +11696,,Gibraltar,1.0,f +21639,,Korea,1.0,t +12621,100%,,1.0,t +40413,100%,Kiribati,2.0,f +19490,100%,Gambia,1.0,t +36621,,France,1.0,f +6545,,,1.0,t +30862,,Tunisia,2.0,t +5555,100%,Denmark,11.0,t +16943,,French Guiana,2.0,t +14973,100%,Chad,1.0,t +20404,,United Kingdom,1.0,f +36643,98%,Maldives,17.0,f +7558,,Russian Federation,1.0,t +38431,,Russian Federation,1.0,t +28363,100%,,1.0,t +22549,100%,Indonesia,2.0,t +49730,100%,Zimbabwe,1.0,t +34168,83%,Indonesia,3.0,f +11528,,Montserrat,1.0,f +13493,,Tonga,2.0,t +34845,,Russian Federation,1.0,t +36658,94%,China,20.0,t +9462,,Somalia,1.0,t +4579,100%,Marshall Islands,2.0,f +17716,,Vanuatu,2.0,t +39426,,Somalia,1.0,t +34258,,Vietnam,7.0,t +13255,100%,,1.0,f +6399,95%,Marshall Islands,5.0,f +31638,100%,Sao Tome and Principe,1.0,t +27868,100%,,2.0,t +28035,,Croatia,1.0,t +33814,,Faroe Islands,9.0,f +47099,,,1.0,t +47217,,Micronesia,1.0,t +36492,,,1.0,f +38810,100%,Micronesia,3.0,f +36658,94%,China,20.0,t +36658,94%,China,20.0,t +6209,80%,Nicaragua,9.0,t +36658,94%,China,20.0,t +36658,94%,China,20.0,t +21213,94%,Kiribati,5.0,t +36658,94%,China,20.0,t +36658,94%,China,20.0,t +746,,Kiribati,4.0,f +25408,,Russian Federation,1.0,t +14364,100%,Nauru,9.0,f +8898,100%,Ecuador,2.0,t +13003,,Montserrat,1.0,f +45694,,Guinea,1.0,f +29031,,Russian Federation,1.0,t +34402,79%,Reunion,28.0,f +30033,,Niue,1.0,t +21924,,French Guiana,1.0,t +38231,100%,Gibraltar,1.0,t +16917,100%,Guinea,2.0,t +25286,,Netherlands,1.0,f +18970,0%,,1.0,f +36343,,Uzbekistan,1.0,f +26599,,Lebanon,2.0,t +25874,100%,Malta,1.0,t +2619,100%,Uzbekistan,1.0,f +10562,100%,Zimbabwe,3.0,f +42139,,,1.0,t +6994,100%,France,2.0,t +14364,100%,Nauru,9.0,f +36591,,Indonesia,2.0,t +17678,0%,Isle of Man,1.0,f +49775,,Svalbard & Jan Mayen Islands,1.0,f +30982,,Chad,3.0,f +37035,,,1.0,f +22691,0%,Marshall Islands,2.0,t +24721,100%,Lebanon,1.0,f +50069,,Marshall Islands,1.0,t +14703,89%,,1.0,f +44323,90%,Ecuador,3.0,t +2189,,Maldives,1.0,t +37883,95%,United Kingdom,3.0,f +36271,,Sao Tome and Principe,2.0,t +4370,,,1.0,f +30265,,United Kingdom,2.0,t +47058,,,4.0,f +7270,100%,Anguilla,1.0,t +12542,98%,Mauritania,19.0,t +13242,,Bouvet Island (Bouvetoya),1.0,t +14441,,Micronesia,1.0,t +527,92%,,1.0,t +9217,,Monaco,1.0,t +47268,,Kiribati,1.0,t +17168,,,1.0,f +31789,,,1.0,f +944,,Vietnam,7.0,t +15899,100%,Slovenia,2.0,f +16160,,,4.0,t +15609,,,1.0,f +41184,,,1.0,f +29202,,Kiribati,1.0,t +26549,100%,Malta,3.0,t +10760,,Ghana,1.0,f +32908,,Brazil,1.0,f +1793,,,1.0,f +10631,100%,,1.0,t +22828,100%,Lebanon,2.0,t +14816,,Niger,1.0,t +8469,100%,Peru,1.0,f +41905,,Svalbard & Jan Mayen Islands,1.0,t +35239,,Marshall Islands,1.0,t +28926,,Gambia,1.0,t +33333,,Bouvet Island (Bouvetoya),1.0,f +48266,100%,Uganda,3.0,t +44294,,,1.0,t +39418,,Niue,1.0,t +19919,75%,,1.0,f +33849,100%,Marshall Islands,3.0,t +35081,,Canada,1.0,f +6797,100%,Gibraltar,2.0,f +31408,90%,,1.0,t +22302,90%,Monaco,2.0,t +31355,,Russian Federation,1.0,f +21850,100%,Gambia,2.0,t +49277,,Cocos (Keeling) Islands,1.0,f +6019,100%,Grenada,2.0,f +10747,100%,Kiribati,2.0,t +35683,,Isle of Man,2.0,f +23959,,Tunisia,1.0,t +36382,,Uzbekistan,1.0,t +30533,,,1.0,t +43265,100%,Anguilla,3.0,f +40240,90%,Niue,2.0,t +25583,,Jersey,1.0,t +17123,100%,,2.0,f +44117,,Cuba,1.0,t +46530,90%,Malawi,1.0,t +19943,63%,Isle of Man,34.0,f +43406,100%,Nicaragua,1.0,t +33316,,Kiribati,1.0,f +4446,100%,Uganda,58.0,f +48247,,Turks and Caicos Islands,1.0,f +4446,100%,Uganda,58.0,f +23901,,Bouvet Island (Bouvetoya),1.0,f +49598,,Switzerland,4.0,t +40416,100%,Turks and Caicos Islands,2.0,t +593,,,1.0,f +26002,,Turks and Caicos Islands,1.0,f +49013,,France,1.0,t +29977,100%,Uzbekistan,1.0,f +24797,,,1.0,t +45542,,Slovakia (Slovak Republic),2.0,f +48872,,,3.0,t +42679,,Cocos (Keeling) Islands,2.0,t +2616,100%,,2.0,t +11464,100%,Papua New Guinea,11.0,f +16003,100%,,1.0,f +45542,,Slovakia (Slovak Republic),2.0,f +26853,,Russian Federation,1.0,t +33727,,,1.0,t +27179,100%,,1.0,f +25182,100%,,2.0,t +45352,,,1.0,f +3599,,Vanuatu,2.0,t +30696,,,1.0,t +35298,90%,Indonesia,8.0,t +8860,90%,Micronesia,3.0,t +8860,90%,Micronesia,3.0,t +33155,,Anguilla,1.0,f +20701,,Cook Islands,3.0,f +7102,100%,Vanuatu,4.0,t +38682,100%,Gambia,1.0,f +28828,100%,Isle of Man,198.0,t +22771,,United Kingdom,2.0,t +30863,100%,,1.0,t +41704,100%,Zimbabwe,1.0,t +48932,100%,Monaco,5.0,t +20233,100%,,1.0,t +25908,100%,Netherlands,1.0,t +17073,,Andorra,1.0,t +7016,0%,Papua New Guinea,1.0,f +33894,100%,,1.0,t +37193,,China,1.0,f +26146,,,2.0,t +17857,100%,Denmark,2.0,f +25810,,,1.0,t +25229,100%,Niger,2.0,f +37477,,Costa Rica,1.0,f +37886,,Reunion,1.0,t +6370,100%,Isle of Man,1.0,t +14209,100%,Malawi,3.0,f +48921,,Sao Tome and Principe,1.0,t +45703,0%,Faroe Islands,1.0,t +38477,,Lebanon,1.0,f +18529,100%,,1.0,f +8430,,Peru,7.0,t +26091,,Zimbabwe,1.0,f +27368,,,1.0,t +7048,,Rwanda,1.0,f +39946,,Niue,1.0,f +32385,,Guinea,1.0,t +27410,,Nicaragua,1.0,f +20690,0%,Guinea,1.0,t +29954,100%,Zimbabwe,1.0,t +6681,,Philippines,2.0,t +42484,,,1.0,t +49648,100%,Niue,2.0,f +8974,,,1.0,f +23027,,Anguilla,1.0,f +4880,100%,,1.0,f +983,100%,Marshall Islands,1.0,f +33712,,Lebanon,1.0,f +31990,100%,,2.0,t +44209,100%,,1.0,f +26723,,,1.0,t +14307,,,1.0,t +2576,,,1.0,f +42818,89%,Anguilla,1.0,f +31022,,Sao Tome and Principe,1.0,t +38444,100%,Nicaragua,2.0,t +32502,0%,Lebanon,1.0,t +11464,100%,Papua New Guinea,11.0,f +48256,100%,Tunisia,1.0,t +6426,,Ghana,1.0,f +40476,,Maldives,2.0,t +39121,100%,,1.0,f +33424,,Togo,1.0,f +24201,,France,1.0,f +31802,100%,New Zealand,5.0,t +27468,,Estonia,1.0,f +24353,100%,Isle of Man,1.0,f +9198,,French Polynesia,1.0,t +10655,,French Guiana,1.0,f +32722,,,1.0,t +45140,,Kiribati,1.0,t +22896,,Reunion,2.0,t +1055,,Mauritania,1.0,f +30258,,Kenya,1.0,t +10847,,Sao Tome and Principe,1.0,t +37011,,Svalbard & Jan Mayen Islands,2.0,f +775,,Togo,1.0,f +3171,,Maldives,1.0,f +36676,,Marshall Islands,1.0,t +46791,,Rwanda,1.0,f +18907,,Isle of Man,1.0,f +11491,100%,Kiribati,1.0,f +10343,,Bouvet Island (Bouvetoya),2.0,f +30475,92%,Vietnam,40.0,f +14992,100%,Tonga,1.0,t +50059,100%,Barbados,7.0,f +24520,,,1.0,t +17648,100%,Niue,1.0,t +28843,,,1.0,f +6735,,Isle of Man,1.0,t +27830,100%,Tunisia,1.0,t +24014,100%,Christmas Island,1.0,f +3983,,Guinea,1.0,f +1103,100%,Zimbabwe,1.0,t +24708,,Niue,1.0,t +23069,,Russian Federation,1.0,t +4223,100%,,2.0,t +27817,,,1.0,f +48476,,Cape Verde,1.0,f +9523,100%,Vietnam,2.0,t +29883,90%,Isle of Man,26.0,t +15388,,Micronesia,1.0,f +29883,90%,Isle of Man,26.0,t +29883,90%,Isle of Man,26.0,t +12987,,Lebanon,1.0,f +29883,90%,Isle of Man,26.0,t +29668,100%,Nicaragua,4.0,t +27605,90%,Guinea,1.0,f +48011,,,1.0,f +29666,100%,Anguilla,2.0,f +38746,99%,Vietnam,13.0,f +48150,100%,,2.0,t +32069,,Zimbabwe,1.0,t +49488,100%,,1.0,t +42627,,,1.0,f +1852,100%,Chad,2.0,t +32608,,French Guiana,1.0,f +41050,,Venezuela,1.0,t +10087,,Marshall Islands,1.0,t +14723,,Puerto Rico,1.0,t +8307,100%,Monaco,1.0,f +29883,90%,Isle of Man,26.0,t +19481,,,1.0,f +23565,100%,Slovakia (Slovak Republic),6.0,t +7615,,Niue,1.0,t +38746,99%,Vietnam,13.0,f +1682,100%,,1.0,t +5155,100%,Monaco,2.0,t +46139,0%,Gambia,1.0,t +29883,90%,Isle of Man,26.0,t +30062,,,1.0,f +35061,,,1.0,f +29883,90%,Isle of Man,26.0,t +34402,79%,Reunion,28.0,f +33609,,,1.0,f +13346,100%,,2.0,t +7242,100%,Niue,1.0,t +29883,90%,Isle of Man,26.0,t +36967,100%,Barbados,7.0,t +38191,100%,Monaco,2.0,f +25559,,Jersey,1.0,f +45732,,,1.0,t +43198,14%,,2.0,t +6397,,Niue,1.0,t +8610,100%,Jersey,1.0,f +22348,,Russian Federation,2.0,t +13268,,Gambia,1.0,t +48335,,,1.0,f +34286,,,1.0,f +1734,,,1.0,f +29130,100%,Kenya,2.0,t +27972,94%,Brazil,27.0,f +48758,100%,Ecuador,3.0,t +49577,100%,Isle of Man,1.0,f +157,,,1.0,t +30475,92%,Vietnam,40.0,f +15417,,Jersey,1.0,t +32666,,Russian Federation,1.0,t +24456,,Isle of Man,1.0,t +29676,,France,1.0,f +46034,,,3.0,f +40297,,French Guiana,1.0,f +15876,100%,Vanuatu,1.0,t +42404,100%,Nicaragua,1.0,t +7408,56%,,2.0,t +590,,Guinea,2.0,t +4727,0%,,1.0,f +1262,,Estonia,1.0,t +9225,,Sao Tome and Principe,2.0,t +7118,,Monaco,1.0,t +31854,100%,,2.0,f +44059,,Greenland,1.0,t +48805,100%,,1.0,f +20599,,,1.0,t +21159,,Niue,1.0,f +39379,100%,Guinea,1.0,f +4559,,Uruguay,1.0,t +48502,100%,Nicaragua,11.0,t +15680,,Micronesia,1.0,f +20543,,Marshall Islands,1.0,f +12907,100%,Marshall Islands,1.0,f +13173,,Jersey,1.0,t +29500,,Nauru,1.0,t +14225,,Kenya,1.0,t +11763,,Zimbabwe,1.0,t +42552,,Uganda,1.0,f +27428,100%,Uzbekistan,2.0,f +38695,100%,United Kingdom,4.0,t +39679,91%,Kiribati,4.0,t +39748,,Bosnia and Herzegovina,3.0,t +33589,100%,Cuba,1.0,f +30102,100%,Togo,2.0,t +18940,,,1.0,f +19332,,Togo,1.0,t +46438,,Svalbard & Jan Mayen Islands,1.0,f +40472,,,1.0,f +36067,,Micronesia,1.0,f +22933,100%,Zimbabwe,4.0,f +48838,,Niue,1.0,f +24156,100%,Maldives,1.0,f +43441,100%,,1.0,t +41715,,Tonga,1.0,f +46374,,Monaco,2.0,t +37908,100%,Niue,1.0,t +17481,,Anguilla,3.0,t +29781,,Turkmenistan,2.0,t +18807,67%,,3.0,t +48002,,Tonga,2.0,t +16481,,,1.0,t +39445,,,1.0,f +34152,100%,Russian Federation,1.0,t +16029,100%,Faroe Islands,2.0,t +47510,,Russian Federation,1.0,f +36798,80%,,1.0,t +6157,,Indonesia,1.0,t +33544,,Sao Tome and Principe,1.0,t +35861,50%,Switzerland,1.0,f +28691,83%,Tonga,1.0,t +45043,100%,Chad,10.0,f +34906,100%,Uzbekistan,1.0,t +7887,,Micronesia,1.0,f +3127,100%,Rwanda,36.0,f +10072,,Zimbabwe,1.0,f +19152,,Croatia,1.0,f +36201,100%,Croatia,1.0,t +31083,100%,,3.0,f +46798,,Micronesia,2.0,f +11094,,Marshall Islands,1.0,t +12782,,,1.0,f +1868,100%,China,4.0,t +25676,,Faroe Islands,2.0,f +5825,100%,French Guiana,1.0,f +4895,,United Kingdom,1.0,t +25676,,Faroe Islands,2.0,f +12641,90%,Micronesia,2.0,t +18921,,,1.0,t +13153,100%,Zimbabwe,1.0,f +20782,,Cocos (Keeling) Islands,2.0,f +34346,,,1.0,t +26902,100%,Netherlands,2.0,t +19197,,Guernsey,1.0,f +3087,100%,,1.0,f +16887,100%,China,11.0,f +1010,,,1.0,f +34988,100%,,1.0,f +30475,92%,Vietnam,40.0,f +33444,,Reunion,1.0,f +26892,100%,Togo,12.0,t +1692,100%,Jersey,15.0,t +26127,,Cook Islands,1.0,t +42106,,Somalia,1.0,t +20334,99%,Niger,171.0,t +7900,,Somalia,1.0,t +14531,100%,Tonga,3.0,f +46691,90%,Uzbekistan,38.0,f +27405,,Niue,1.0,f +11755,,Algeria,2.0,f +48683,100%,Uzbekistan,2.0,t +47062,,Isle of Man,1.0,f +27055,,Lebanon,1.0,t +37446,,Faroe Islands,1.0,t +8860,90%,Micronesia,3.0,t +36323,,Guinea,2.0,t +49433,,,1.0,t +18989,,China,4.0,f +39608,,United Kingdom,1.0,t +42119,100%,Djibouti,2.0,t +39164,100%,Cocos (Keeling) Islands,3.0,f +29004,,Togo,1.0,f +20997,100%,,1.0,t +13665,,Ukraine,1.0,f +13493,,Tonga,2.0,t +23504,,Lithuania,3.0,t +8711,50%,,1.0,f +23582,98%,Montserrat,17.0,f +23582,98%,Montserrat,17.0,f +22449,,,1.0,f +39289,,,1.0,f +23582,98%,Montserrat,17.0,f +32697,,Lithuania,1.0,t +15034,100%,Guinea,1.0,t +32412,,Mauritania,1.0,f +7497,100%,United Kingdom,1.0,t +7977,,,1.0,f +6576,100%,Gibraltar,3.0,t +7450,,Turkmenistan,1.0,t +3034,,,1.0,f +41474,,Turkmenistan,2.0,t +45926,100%,,2.0,f +41585,,,1.0,f +11982,67%,Niue,1.0,f +2562,100%,Micronesia,2.0,f +37490,100%,,2.0,t +9191,,Chile,3.0,t +38642,,Croatia,2.0,f +28100,100%,Afghanistan,1.0,t +38225,,Gibraltar,1.0,f +41016,,Ecuador,2.0,t +48372,100%,Barbados,12.0,t +30721,0%,United Kingdom,1.0,f +28268,80%,,7.0,t +24302,100%,Cape Verde,6.0,f +30343,,,1.0,t +19144,100%,San Marino,1.0,f +2497,,Nauru,1.0,f +4839,,Sao Tome and Principe,1.0,f +21150,100%,Zimbabwe,1.0,t +37517,,Nicaragua,1.0,t +47852,,Mauritania,1.0,t +4663,,,1.0,f +38892,,Isle of Man,2.0,t +25828,,Russian Federation,1.0,t +4465,100%,Rwanda,1.0,t +22854,100%,Russian Federation,2.0,t +29784,,Gibraltar,1.0,t +24181,,,1.0,f +7880,100%,Russian Federation,1.0,t +47274,100%,Tonga,48.0,f +12922,100%,Costa Rica,1.0,t +8777,67%,,1.0,f +2956,,Svalbard & Jan Mayen Islands,1.0,f +6838,96%,Spain,59.0,t +985,100%,,1.0,t +28373,,Maldives,1.0,t +26084,,Vietnam,4.0,t +29742,,Denmark,2.0,f +16389,,Niue,1.0,t +29882,,French Guiana,1.0,t +26892,100%,Togo,12.0,t +40522,100%,Gambia,2.0,f +24656,100%,Finland,4.0,t +48830,,United Kingdom,1.0,f +36799,,Sao Tome and Principe,1.0,t +29742,,Denmark,2.0,f +46849,100%,Guinea,1.0,f +31462,,Russian Federation,1.0,t +28828,100%,Isle of Man,198.0,t +12274,100%,Lebanon,1.0,f +12875,86%,,3.0,f +17996,,Lebanon,1.0,t +2569,100%,Venezuela,3.0,t +12690,100%,Gambia,4.0,t +5190,,Netherlands,1.0,f +24733,,,1.0,t +16887,100%,China,11.0,f +44494,,Malta,2.0,f +46018,,Russian Federation,1.0,f +19338,,Guernsey,1.0,f +16887,100%,China,11.0,f +18551,,Faroe Islands,1.0,f +45799,,Kiribati,6.0,t +24124,80%,Uzbekistan,2.0,t +33849,100%,Marshall Islands,3.0,t +33529,,,1.0,t +10324,,,1.0,f +747,100%,Gambia,2.0,f +26128,,,1.0,f +11726,100%,Niue,1.0,t +1692,100%,Jersey,15.0,t +24422,100%,Zimbabwe,1.0,t +15318,100%,Croatia,1.0,f +5588,,French Guiana,1.0,t +2257,,Gambia,1.0,f +10653,100%,,1.0,f +10010,90%,,1.0,t +46465,100%,Niue,1.0,t +37250,,Russian Federation,1.0,f +957,100%,Guinea,1.0,t +26464,100%,Kiribati,1.0,t +7267,100%,France,2.0,f +29746,96%,Tonga,5.0,f +20963,,,1.0,f +32111,,,1.0,t +48624,100%,Russian Federation,1.0,t +31083,100%,,3.0,f +44170,,Niue,2.0,t +12856,100%,,1.0,f +35310,100%,,2.0,t +9576,38%,,1.0,f +17481,,Anguilla,3.0,t +30941,93%,Barbados,3.0,f +17481,,Anguilla,3.0,t +7629,100%,Niue,1.0,t +47457,,Lebanon,1.0,f +26727,,Peru,1.0,f +15660,,Uzbekistan,1.0,f +347,,,7.0,t +19844,,Guinea,2.0,t +49138,0%,Denmark,1.0,t +47865,80%,,4.0,t +20299,,Uganda,1.0,f +11516,100%,,1.0,t +19577,83%,Niue,2.0,t +19844,,Guinea,2.0,t +20970,,China,1.0,f +40788,,French Guiana,1.0,f +1284,,Turkmenistan,1.0,f +36449,100%,,1.0,t +14554,,,1.0,t +11328,,,1.0,f +23985,100%,,1.0,t +21723,100%,Niue,2.0,t +6928,,,3.0,t +2860,,,1.0,f +46798,,Micronesia,2.0,f +2731,,French Guiana,1.0,t +10368,,,1.0,f +23040,,Turks and Caicos Islands,1.0,t +29975,,,1.0,f +30366,100%,Holy See (Vatican City State),2.0,t +19457,70%,Monaco,1.0,t +9492,,,1.0,t +17293,100%,Cape Verde,1.0,t +4099,,Uganda,2.0,f +16283,100%,,1.0,t +36377,,Russian Federation,1.0,t +17045,,Vanuatu,1.0,t +13711,,Brazil,1.0,t +15206,100%,Malta,2.0,t +17620,,,1.0,t +33597,,,1.0,f +32423,90%,Turks and Caicos Islands,2.0,t +20387,100%,Malta,12.0,t +11872,,,13.0,f +22719,,Estonia,1.0,f +2882,50%,,1.0,t +46075,,Gambia,1.0,t +40478,83%,,2.0,t +19934,100%,Svalbard & Jan Mayen Islands,2.0,t +42746,78%,Somalia,2.0,t +38115,100%,Uruguay,1.0,t +36703,,Monaco,1.0,t +35776,100%,Isle of Man,1.0,t +27154,100%,Russian Federation,3.0,t +46749,100%,,2.0,f +26070,100%,Holy See (Vatican City State),6.0,t +5851,,Russian Federation,1.0,t +16291,33%,Slovenia,1.0,f +1692,100%,Jersey,15.0,t +18077,100%,Sao Tome and Principe,139.0,f +1332,,,1.0,f +23122,100%,Malta,1.0,t +1692,100%,Jersey,15.0,t +38488,,Malta,1.0,t +34756,100%,Sao Tome and Principe,1.0,t +50074,100%,Montserrat,8.0,f +23870,100%,Brazil,1.0,f +30744,,Lebanon,1.0,t +27921,,Uzbekistan,1.0,f +30475,92%,Vietnam,40.0,f +18212,,,1.0,f +36189,100%,Brazil,2.0,t +27674,,Wallis and Futuna,1.0,t +28828,100%,Isle of Man,198.0,t +29554,,Tonga,1.0,t +12139,,Russian Federation,1.0,f +49256,,,1.0,f +18667,,,1.0,f +249,,Nauru,1.0,f +6837,,Lebanon,1.0,f +10163,,,1.0,f +37104,100%,Bouvet Island (Bouvetoya),1.0,t +42141,,Lebanon,1.0,f +39105,100%,Guernsey,3.0,t +13624,93%,Uzbekistan,2.0,t +36259,,,1.0,t +40996,100%,Kenya,1.0,f +37914,100%,Malta,2.0,f +45734,,Guinea,2.0,f +45214,,Grenada,1.0,f +20797,,Russian Federation,1.0,t +24508,,Mauritania,2.0,f +44934,100%,Philippines,17.0,f +10381,100%,,1.0,t +39264,100%,Senegal,2.0,f +16189,,France,1.0,f +18554,,Niue,1.0,t +5849,,Malta,1.0,t +10473,,Cape Verde,1.0,f +43969,,Nauru,1.0,f +27098,100%,,1.0,f +45294,,Chile,1.0,t +35895,100%,Anguilla,1.0,t +7267,100%,France,2.0,f +9433,100%,Chad,2.0,t +12514,100%,,1.0,t +14780,,Estonia,1.0,t +19531,100%,Holy See (Vatican City State),1.0,t +49137,,,3.0,f +5836,100%,Faroe Islands,3.0,f +39264,100%,Senegal,2.0,f +2871,,Maldives,1.0,f +40243,,Somalia,1.0,t +32979,100%,Ecuador,2.0,t +28686,,Sao Tome and Principe,1.0,t +14740,0%,,1.0,f +49582,,,1.0,t +35072,,,1.0,t +23806,,Indonesia,1.0,f +6275,,,2.0,f +10564,,Niue,1.0,f +20370,100%,Niue,2.0,t +23848,,Zimbabwe,1.0,t +31279,100%,Kiribati,1.0,t +16489,100%,Russian Federation,42.0,t +14517,100%,Gibraltar,2.0,t +41655,100%,,2.0,f +26681,100%,Niue,1.0,f +49254,,Gambia,1.0,f +16302,100%,Kenya,1.0,t +20331,100%,Turks and Caicos Islands,1.0,f +15091,,Denmark,1.0,t +21427,100%,United Kingdom,8.0,t +43846,100%,Tonga,2.0,t +29668,100%,Nicaragua,4.0,t +6104,100%,Uzbekistan,3.0,t +44401,100%,United Kingdom,1.0,t +10158,100%,Ukraine,6.0,t +5982,,Gibraltar,1.0,t +14010,100%,Tonga,1.0,t +45166,100%,Tonga,1.0,f +17630,,Russian Federation,1.0,t +39693,100%,Guinea,3.0,f +49720,,Micronesia,1.0,t +10323,,Sao Tome and Principe,1.0,f +23949,100%,Slovakia (Slovak Republic),6.0,t +18489,,Jersey,1.0,f +18766,,Chad,2.0,t +4953,,Saint Helena,1.0,f +12780,75%,,1.0,f +23378,,Russian Federation,1.0,f +4737,100%,Brunei Darussalam,2.0,f +35398,100%,Isle of Man,1.0,f +44460,,Niue,1.0,t +29647,100%,Peru,1305.0,f +16098,,Russian Federation,1.0,f +25695,,,1.0,t +40820,0%,Guinea,1.0,t +38695,100%,United Kingdom,4.0,t +28266,,Malawi,1.0,t +33730,,Russian Federation,1.0,t +46058,100%,Turkmenistan,3.0,t +3625,90%,Marshall Islands,2.0,t +5436,100%,Kenya,3.0,t +10459,100%,Anguilla,1.0,f +2440,75%,France,1.0,f +27639,100%,,1.0,f +4580,,Uzbekistan,1.0,f +38168,100%,,1.0,t +28029,43%,,1.0,f +130,100%,Russian Federation,1.0,t +12588,100%,Slovenia,3.0,f +41792,,,1.0,f +24479,,Micronesia,1.0,t +14313,100%,Fiji,1.0,f +700,,Guinea,2.0,t +29448,,Mauritania,1.0,t +1405,100%,,1.0,f +38649,100%,Ecuador,3.0,t +16354,100%,Hong Kong,4.0,f +7068,,,1.0,f +38649,100%,Ecuador,3.0,t +19916,,Nicaragua,1.0,t +17068,,,1.0,f +24016,100%,Bosnia and Herzegovina,29.0,f +1728,,Papua New Guinea,1.0,t +11137,80%,Niue,2.0,t +3255,,China,1.0,f +38559,,,1.0,t +43747,,Isle of Man,1.0,f +40035,,,1.0,t +11860,100%,,2.0,t +21236,,Suriname,1.0,f +26553,,Jersey,1.0,f +32985,100%,France,1.0,f +36668,33%,Niger,1.0,f +27945,100%,Chile,1.0,t +49498,,Russian Federation,1.0,f +41106,100%,Jersey,1.0,f +7384,100%,Faroe Islands,2.0,t +48031,,Chad,1.0,t +24217,67%,Gambia,1.0,f +11835,,,1.0,t +12364,100%,Russian Federation,1.0,f +14823,,French Guiana,1.0,t +16301,,,1.0,t +37452,100%,,1.0,f +4655,100%,,3.0,t +1646,,Niue,1.0,t +14163,100%,Micronesia,1.0,f +41611,100%,,1.0,t +26043,,Niue,1.0,t +32367,,Malawi,1.0,f +6978,,Faroe Islands,1.0,f +46560,,Nicaragua,1.0,t +33549,90%,,1.0,t +42520,,Isle of Man,1.0,f +8812,100%,Saint Helena,1.0,f +12588,100%,Slovenia,3.0,f +38596,,Niue,1.0,t +7526,,Malta,1.0,f +19379,,Kiribati,1.0,f +23680,,,1.0,t +3240,,Chile,1.0,t +14836,,Vanuatu,1.0,f +36334,,Malta,1.0,t +9013,100%,,2.0,f +13501,100%,Russian Federation,1.0,t +48385,100%,Isle of Man,1.0,f +6551,,,1.0,t +42384,,,2.0,t +42384,,,2.0,t +1526,100%,France,1.0,t +12931,100%,,1.0,t +46966,100%,Monaco,1.0,t +25892,,Uganda,1.0,t +24684,,Togo,1.0,f +29647,100%,Peru,1305.0,f +30581,100%,,1.0,t +35733,100%,Lithuania,1.0,t +29647,100%,Peru,1305.0,f +8433,100%,Cocos (Keeling) Islands,1.0,t +16580,,French Guiana,3.0,t +29647,100%,Peru,1305.0,f +39164,100%,Cocos (Keeling) Islands,3.0,f +29647,100%,Peru,1305.0,f +17384,,Malawi,1.0,f +26092,,Papua New Guinea,1.0,f +29647,100%,Peru,1305.0,f +1692,100%,Jersey,15.0,t +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +44692,,Switzerland,1.0,f +46333,100%,,1.0,t +49364,,Reunion,3.0,t +29647,100%,Peru,1305.0,f +33866,100%,,1.0,t +9937,100%,Guernsey,1.0,f +29267,,,1.0,f +12421,,Russian Federation,1.0,f +21479,100%,Marshall Islands,1.0,f +14547,100%,Gibraltar,2.0,f +7140,,,1.0,t +28831,80%,Maldives,1.0,t +14364,100%,Nauru,9.0,f +618,,French Guiana,1.0,t +8694,100%,Togo,2.0,f +2661,,Korea,1.0,t +16180,,Russian Federation,1.0,t +13794,100%,Afghanistan,1.0,t +39506,100%,Nauru,2.0,t +14047,100%,Philippines,4.0,f +41334,100%,Anguilla,1.0,f +10420,,,1.0,t +29488,100%,,1.0,f +10158,100%,Ukraine,6.0,t +2111,,,1.0,f +2297,100%,Pakistan,1.0,f +42920,,Turkmenistan,1.0,t +29647,100%,Peru,1305.0,f +31392,,,1.0,t +29647,100%,Peru,1305.0,f +49038,100%,Gibraltar,1.0,t +9324,100%,Niger,1.0,f +18931,,Slovakia (Slovak Republic),1.0,f +30255,100%,,1.0,f +18989,,China,4.0,f +18535,,,1.0,f +29647,100%,Peru,1305.0,f +16584,,Guinea,1.0,t +29647,100%,Peru,1305.0,f +3861,,,1.0,t +34402,79%,Reunion,28.0,f +48934,,Gambia,2.0,f +16170,100%,Nicaragua,2.0,t +26844,100%,,6.0,f +7095,50%,,2.0,f +22275,,Kiribati,1.0,f +20749,,,1.0,t +49519,25%,,1.0,f +34314,,Lebanon,1.0,t +7680,100%,,1.0,f +33868,,Pakistan,1.0,t +7829,100%,,2.0,t +40818,,,1.0,f +28828,100%,Isle of Man,198.0,t +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +2823,100%,Vietnam,1.0,t +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +9445,,Bosnia and Herzegovina,1.0,t +23994,100%,El Salvador,2.0,f +29647,100%,Peru,1305.0,f +674,100%,Gibraltar,4.0,f +1692,100%,Jersey,15.0,t +27211,,Sao Tome and Principe,1.0,f +18838,,Guinea,1.0,f +46691,90%,Uzbekistan,38.0,f +29647,100%,Peru,1305.0,f +11464,100%,Papua New Guinea,11.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +39941,100%,Malawi,1.0,t +48349,100%,Isle of Man,2.0,f +38782,100%,Papua New Guinea,1.0,t +1036,100%,Isle of Man,1.0,f +33592,,Chile,1.0,f +14591,,,1.0,t +5610,,Russian Federation,1.0,f +35800,,,1.0,t +30784,,Nauru,2.0,t +21396,,Chile,1.0,t +21507,100%,Togo,2.0,f +3281,0%,Chad,1.0,f +41808,,Brazil,1.0,t +23717,,Denmark,2.0,f +16861,70%,Anguilla,3.0,f +35860,98%,Vietnam,4.0,t +12729,100%,Maldives,6.0,t +29647,100%,Peru,1305.0,f +41486,50%,Micronesia,2.0,f +17964,,Rwanda,1.0,f +14214,,Niue,1.0,f +29647,100%,Peru,1305.0,f +38061,100%,United Kingdom,1.0,t +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +41326,,,2.0,t +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +8716,80%,Sao Tome and Principe,2.0,t +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +47814,,Turkmenistan,1.0,t +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +21732,100%,Cocos (Keeling) Islands,5.0,t +29647,100%,Peru,1305.0,f +12123,80%,Puerto Rico,8.0,t +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +25269,60%,Reunion,1.0,t +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +986,,Russian Federation,1.0,t +9990,,Afghanistan,1.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +19639,100%,Monaco,1.0,t +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +33860,100%,Niger,1.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +43390,100%,,2.0,f +41487,,Maldives,1.0,f +32970,,Chile,1.0,f +17470,100%,Denmark,7.0,t +17470,100%,Denmark,7.0,t +33688,,,2.0,t +20707,,,1.0,f +31650,100%,,1.0,t +29647,100%,Peru,1305.0,f +42329,,El Salvador,1.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +13144,,,1.0,t +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29965,100%,Russian Federation,3.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +22581,,,1.0,f +18741,,Uruguay,1.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +1692,100%,Jersey,15.0,t +7352,,China,1.0,t +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +1692,100%,Jersey,15.0,t +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +15763,,,1.0,t +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +41326,,,2.0,t +1692,100%,Jersey,15.0,t +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +19962,100%,,2.0,t +33629,73%,Sao Tome and Principe,1.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +21732,100%,Cocos (Keeling) Islands,5.0,t +19962,100%,,2.0,t +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +28609,100%,Zimbabwe,1.0,f +12494,,Ghana,3.0,t +10757,100%,,1.0,f +17432,,Gibraltar,1.0,f +50037,91%,Guernsey,4.0,t +35561,,Lebanon,1.0,f +21323,100%,Guinea,2.0,t +2510,50%,Sao Tome and Principe,1.0,f +27208,50%,French Guiana,1.0,t +25807,,Lebanon,1.0,f +1084,,,1.0,f +18029,,,1.0,t +50030,,Russian Federation,2.0,f +44861,,Puerto Rico,1.0,f +18068,,Svalbard & Jan Mayen Islands,1.0,f +3051,,,1.0,f +37528,,Svalbard & Jan Mayen Islands,1.0,f +28097,,Turkmenistan,1.0,f +40985,100%,Guinea,15.0,t +44414,100%,Vietnam,2.0,t +24424,,Lebanon,1.0,f +11912,,Chad,1.0,t +49661,100%,Costa Rica,1.0,t +33921,0%,,1.0,t +24481,,,1.0,f +31551,97%,Kiribati,8.0,t +31551,97%,Kiribati,8.0,t +31712,100%,Russian Federation,2.0,t +13207,100%,,1.0,f +11924,,,3.0,f +8697,,Greenland,2.0,f +7468,,Jersey,1.0,t +50037,91%,Guernsey,4.0,t +19285,,Micronesia,1.0,f +6104,100%,Uzbekistan,3.0,t +21732,100%,Cocos (Keeling) Islands,5.0,t +24193,,Saint Helena,1.0,t +21732,100%,Cocos (Keeling) Islands,5.0,t +21732,100%,Cocos (Keeling) Islands,5.0,t +46908,100%,Turkmenistan,1.0,f +43198,14%,,2.0,t +29812,100%,Tanzania,2.0,t +21255,,,1.0,t +43149,90%,,2.0,f +21802,,Lebanon,2.0,f +27358,,Bahrain,1.0,f +39516,,Rwanda,1.0,f +33253,,United Kingdom,1.0,t +34136,,Chad,1.0,t +17470,100%,Denmark,7.0,t +7136,100%,,1.0,t +37065,100%,Mauritania,2.0,t +28593,,Nicaragua,1.0,t +17470,100%,Denmark,7.0,t +35958,,Tonga,1.0,t +46173,,Afghanistan,1.0,t +20571,,,1.0,t +4158,100%,Holy See (Vatican City State),1.0,f +7652,89%,Venezuela,2.0,f +4639,100%,Monaco,3.0,t +28799,,Brazil,1.0,t +34408,,Jersey,1.0,t +32854,100%,Sao Tome and Principe,1.0,t +29162,,Rwanda,2.0,f +17079,,Niue,1.0,t +35948,100%,Brazil,8.0,f +28818,100%,Sao Tome and Principe,1.0,t +7422,,,1.0,t +5659,100%,Tanzania,1.0,t +49986,100%,,1.0,t +46642,,,1.0,f +12690,100%,Gambia,4.0,t +39780,100%,,2.0,f +23782,,Uzbekistan,1.0,t +5487,,Niue,1.0,f +19641,100%,,1.0,t +28534,100%,Palestinian Territory,1.0,f +35562,,Zimbabwe,1.0,t +19958,100%,Congo,40.0,t +8500,100%,,1.0,t +37293,92%,Russian Federation,15.0,f +19988,100%,Niue,1.0,t +27591,100%,Russian Federation,1.0,f +21983,100%,Kenya,1.0,f +6297,,,1.0,f +14311,100%,,1.0,t +2751,,,1.0,f +23982,,Brazil,1.0,f +23210,,,1.0,t +23291,,Jersey,1.0,f +2700,,,1.0,f +43153,100%,Peru,1.0,f +21072,100%,Lebanon,2.0,t +38652,100%,Uzbekistan,9.0,f +46562,,Mauritania,1.0,t +5057,100%,Zimbabwe,23.0,t +24124,80%,Uzbekistan,2.0,t +35758,70%,Somalia,12.0,f +37787,100%,Barbados,5.0,f +4732,80%,Micronesia,2.0,t +18662,70%,Uruguay,4.0,t +28520,100%,Slovakia (Slovak Republic),2.0,t +21223,,Isle of Man,1.0,f +16989,,Reunion,1.0,f +27334,100%,China,16.0,f +32594,,Nicaragua,2.0,t +40527,,,1.0,t +473,100%,Guinea,1.0,f +12847,100%,France,2.0,f +11137,80%,Niue,2.0,t +34207,,Estonia,1.0,t +9033,,Micronesia,1.0,f +46749,100%,,2.0,f +3254,,Tonga,16.0,t +18545,94%,Isle of Man,8.0,t +18545,94%,Isle of Man,8.0,t +37914,100%,Malta,2.0,f +3254,,Tonga,16.0,t +15490,,Tanzania,1.0,t +14760,100%,Guinea,1.0,t +32721,100%,Uganda,2.0,t +36166,,,1.0,f +46068,,Suriname,1.0,f +12845,100%,Niue,1.0,t +2903,100%,Nicaragua,2.0,t +18506,30%,Sao Tome and Principe,1.0,t +46013,100%,Denmark,1.0,t +16767,,Niue,2.0,t +27760,100%,,1.0,f +24052,100%,Guinea,1.0,t +30715,,,1.0,f +26841,,,1.0,f +2022,100%,,1.0,f +27450,,Nicaragua,1.0,f +9631,,,1.0,t +38438,,Venezuela,1.0,f +45854,,Niger,1.0,f +38746,99%,Vietnam,13.0,f +28454,100%,Kiribati,3.0,f +43063,100%,Sao Tome and Principe,1.0,f +17388,100%,,2.0,t +40952,,,1.0,t +44795,,French Guiana,1.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +27946,100%,Libyan Arab Jamahiriya,2.0,f +12180,100%,Kenya,2.0,t +14948,,Switzerland,2.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +22342,100%,Marshall Islands,1.0,t +29647,100%,Peru,1305.0,f +13212,100%,Zimbabwe,12.0,t +6385,,Maldives,1.0,t +13963,100%,Malta,2.0,t +49386,,,1.0,f +17179,,Philippines,1.0,f +22646,100%,Anguilla,1.0,t +25178,100%,Marshall Islands,1.0,f +22779,,Poland,5.0,f +36384,100%,,1.0,f +48581,,Montserrat,8.0,t +44195,100%,Marshall Islands,1.0,f +23583,,Ghana,1.0,t +13795,100%,Rwanda,1.0,t +18880,,Faroe Islands,1.0,f +49641,100%,,3.0,t +45980,,Faroe Islands,1.0,t +49641,100%,,3.0,t +29647,100%,Peru,1305.0,f +44192,,,2.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +34306,91%,Wallis and Futuna,30.0,t +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +36800,0%,,1.0,f +29647,100%,Peru,1305.0,f +16103,100%,,1.0,t +15514,,Australia,1.0,f +45164,50%,,1.0,t +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +17509,100%,Nicaragua,3.0,f +17509,100%,Nicaragua,3.0,f +27972,94%,Brazil,27.0,f +34402,79%,Reunion,28.0,f +14181,70%,Uzbekistan,1.0,f +29647,100%,Peru,1305.0,f +42464,,Senegal,1.0,t +35935,,Tunisia,1.0,t +34172,,Jersey,1.0,f +3254,,Tonga,16.0,t +41310,,,2.0,t +19707,,Uganda,1.0,t +26844,100%,,6.0,f +43447,,Ghana,5.0,t +17944,,Venezuela,1.0,t +30284,100%,Montserrat,1.0,f +14948,,Switzerland,2.0,f +21167,80%,Cocos (Keeling) Islands,1.0,f +26323,80%,Tanzania,1.0,t +4422,100%,,1.0,f +29647,100%,Peru,1305.0,f +34402,79%,Reunion,28.0,f +34883,,,1.0,t +29647,100%,Peru,1305.0,f +17365,,,1.0,f +29647,100%,Peru,1305.0,f +34402,79%,Reunion,28.0,f +35844,,Uzbekistan,1.0,f +29647,100%,Peru,1305.0,f +24814,100%,,3.0,f +43094,,Monaco,1.0,f +26844,100%,,6.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +47650,96%,Mauritania,2.0,t +26844,100%,,6.0,f +11113,,Greenland,1.0,t +21086,,,1.0,f +2352,,,1.0,t +28233,,Fiji,2.0,t +19462,,Isle of Man,1.0,t +49098,,,1.0,t +49966,,Niue,1.0,f +16438,,,1.0,t +4330,94%,Ukraine,60.0,t +4097,100%,Croatia,7.0,f +13928,,,1.0,t +49144,100%,Vietnam,1.0,f +21423,,Uzbekistan,1.0,f +16819,100%,Niue,2.0,t +5555,100%,Denmark,11.0,t +13139,,Niue,1.0,t +34559,100%,Isle of Man,1.0,t +46600,,Canada,1.0,f +29121,,Kenya,2.0,t +22601,,,1.0,f +47728,,Jersey,1.0,f +10518,,Kenya,1.0,t +28432,,Isle of Man,1.0,f +1397,,Chile,1.0,f +38569,,,1.0,f +39171,,,2.0,t +18231,93%,Uganda,7.0,t +23846,,Niue,1.0,t +30366,100%,Holy See (Vatican City State),2.0,t +17235,100%,,1.0,f +16493,,,1.0,f +41526,,Gambia,1.0,f +15025,,Niue,1.0,t +16722,,Mauritania,1.0,t +7271,100%,Bouvet Island (Bouvetoya),2.0,t +32190,100%,Niue,4.0,f +48075,,United Kingdom,4.0,t +29609,100%,Niue,1.0,t +24751,100%,Puerto Rico,1.0,t +37724,100%,Gibraltar,1.0,t +41128,100%,Uzbekistan,4.0,f +11102,100%,Russian Federation,1.0,f +22827,,,1.0,t +29897,,,1.0,f +27706,,,1.0,t +3483,100%,Micronesia,4.0,t +29336,,Cape Verde,1.0,f +6517,,Niue,1.0,t +31594,100%,Philippines,19.0,t +4,80%,Guinea,1.0,f +18168,95%,Ecuador,3.0,f +40987,100%,Maldives,2.0,t +29057,,Sao Tome and Principe,1.0,t +19465,100%,Chad,2.0,t +2969,,,1.0,t +41146,,,1.0,f +23003,,Uganda,1.0,f +4111,100%,Isle of Man,1.0,t +45377,,,1.0,t +10251,,Niue,1.0,t +27522,,Chile,1.0,f +14030,,,1.0,f +46433,,Bouvet Island (Bouvetoya),1.0,t +21218,,,1.0,f +32095,,Rwanda,1.0,f +30004,100%,Marshall Islands,1.0,f +19671,,Australia,1.0,t +16861,70%,Anguilla,3.0,f +22807,100%,Gibraltar,1.0,f +18108,100%,Tonga,1.0,t +22451,100%,Guinea,1.0,f +19246,100%,Monaco,1.0,t +36933,,,1.0,t +22370,100%,Turkmenistan,1.0,t +13278,95%,Isle of Man,7.0,f +27811,100%,Ukraine,4.0,t +44271,100%,,1.0,t +45942,,,1.0,t +30706,,Libyan Arab Jamahiriya,1.0,t +21258,70%,,2.0,t +40791,93%,Ghana,3.0,f +11390,,,1.0,f +29811,,Micronesia,1.0,f +20084,,Tonga,1.0,t +10663,100%,Malta,1.0,f +12729,100%,Maldives,6.0,t +21854,100%,Isle of Man,3.0,t +30154,50%,Mauritania,1.0,f +13052,,Brazil,1.0,t +29686,,Sao Tome and Principe,1.0,t +20115,86%,Isle of Man,2.0,t +24393,,,1.0,t +24480,,,1.0,t +2314,,Tonga,1.0,t +45862,,Tonga,1.0,t +42379,100%,Cocos (Keeling) Islands,5.0,f +42379,100%,Cocos (Keeling) Islands,5.0,f +30475,92%,Vietnam,40.0,f +20603,100%,Peru,1.0,f +15872,100%,Tonga,6.0,t +15872,100%,Tonga,6.0,t +15872,100%,Tonga,6.0,t +13129,,Tonga,3.0,f +36639,100%,,2.0,t +47215,,,2.0,f +36295,,,2.0,f +34402,79%,Reunion,28.0,f +8100,,Netherlands,1.0,t +21814,,Gibraltar,1.0,t +19999,100%,Kenya,1.0,t +23082,,Niue,1.0,t +34306,91%,Wallis and Futuna,30.0,t +38746,99%,Vietnam,13.0,f +13081,100%,Jersey,3.0,f +37422,100%,Brazil,4.0,t +42092,,,1.0,t +35686,,,1.0,t +12729,100%,Maldives,6.0,t +38652,100%,Uzbekistan,9.0,f +17878,100%,Greenland,1.0,f +47828,100%,Gibraltar,2.0,f +48637,,,1.0,t +33989,,Russian Federation,1.0,t +8122,,Monaco,2.0,t +28898,85%,Maldives,5.0,t +29357,,United Kingdom,1.0,t +11203,,Niue,3.0,f +28065,,Rwanda,4.0,f +11066,100%,Chad,1.0,t +44267,,Chad,1.0,t +16384,,Togo,1.0,t +12326,50%,France,3.0,t +43321,100%,France,40.0,f +11314,,,1.0,f +16015,,,1.0,t +7798,,China,1.0,t +40791,93%,Ghana,3.0,f +13830,100%,Faroe Islands,2.0,t +37646,100%,Estonia,60.0,f +28898,85%,Maldives,5.0,t +18484,100%,Gambia,108.0,f +24264,,Kiribati,1.0,t +37646,100%,Estonia,60.0,f +20388,,Guinea,1.0,f +40623,100%,Holy See (Vatican City State),2.0,t +8901,,Indonesia,1.0,t +28898,85%,Maldives,5.0,t +46668,100%,Malta,2.0,t +42275,,Niue,1.0,f +5491,100%,Malawi,3.0,t +13983,,Micronesia,3.0,t +27334,100%,China,16.0,f +39693,100%,Guinea,3.0,f +50059,100%,Barbados,7.0,f +50059,100%,Barbados,7.0,f +12648,,,1.0,f +3428,100%,Lebanon,4.0,t +29630,100%,Monaco,1.0,t +7030,100%,Guernsey,6.0,f +46011,,Gambia,1.0,t +16910,100%,Slovakia (Slovak Republic),5.0,t +16910,100%,Slovakia (Slovak Republic),5.0,t +16910,100%,Slovakia (Slovak Republic),5.0,t +17120,100%,Uzbekistan,2.0,t +47422,99%,Uzbekistan,30.0,f +47422,99%,Uzbekistan,30.0,f +37646,100%,Estonia,60.0,f +37646,100%,Estonia,60.0,f +22447,,,1.0,f +34306,91%,Wallis and Futuna,30.0,t +7132,100%,,2.0,f +16371,95%,Bouvet Island (Bouvetoya),29.0,f +6600,80%,,1.0,f +40594,,Niger,1.0,t +43321,100%,France,40.0,f +2444,,,1.0,f +43321,100%,France,40.0,f +11543,44%,,2.0,f +28828,100%,Isle of Man,198.0,t +16811,100%,,1.0,t +9175,,Lebanon,1.0,t +8080,,Marshall Islands,1.0,f +46691,90%,Uzbekistan,38.0,f +43260,,Marshall Islands,1.0,f +6159,,,1.0,f +10022,,,2.0,f +30475,92%,Vietnam,40.0,f +24715,100%,,1.0,f +41335,,,1.0,t +31244,57%,Niger,4.0,t +5845,,,1.0,f +34379,,Isle of Man,1.0,f +5066,100%,,1.0,t +28857,100%,Niue,1.0,f +39236,,Afghanistan,3.0,f +16474,100%,,1.0,t +15069,100%,Montserrat,3.0,t +8963,100%,,3.0,t +35948,100%,Brazil,8.0,f +35948,100%,Brazil,8.0,f +43623,,Guinea,1.0,f +39137,80%,Jersey,1.0,t +998,60%,Niue,1.0,t +33767,,Micronesia,1.0,f +49106,100%,Uganda,1.0,t +47875,,Turks and Caicos Islands,2.0,f +22750,,Barbados,4.0,t +43152,100%,Nicaragua,82.0,t +43152,100%,Nicaragua,82.0,t +27337,100%,,2.0,f +21041,81%,Vietnam,3.0,f +31911,,Lebanon,1.0,t +6630,,,1.0,f +4486,100%,Russian Federation,1.0,t +48558,,Monaco,1.0,t +21291,,Bosnia and Herzegovina,1.0,t +22085,,Vanuatu,1.0,t +21955,,Svalbard & Jan Mayen Islands,1.0,f +8471,,,1.0,f +5425,100%,Russian Federation,2.0,t +15307,,,1.0,f +10064,,Russian Federation,1.0,t +49104,,,1.0,f +36661,100%,,1.0,t +30215,,Nicaragua,2.0,t +25258,100%,,1.0,f +24302,100%,Cape Verde,6.0,f +29341,100%,Zimbabwe,2.0,t +12030,100%,Bouvet Island (Bouvetoya),1.0,t +10816,,Kenya,1.0,t +416,,Finland,1.0,f +35088,,Russian Federation,1.0,f +30543,100%,Croatia,2.0,t +15070,,French Guiana,1.0,t +43400,,,1.0,t +40363,,Bosnia and Herzegovina,1.0,t +28348,100%,Sao Tome and Principe,3.0,t +42190,96%,Croatia,4.0,t +45513,,Russian Federation,1.0,f +40924,,French Guiana,1.0,f +42190,96%,Croatia,4.0,t +17058,100%,,1.0,t +29470,100%,Slovakia (Slovak Republic),2.0,f +47026,90%,Vietnam,3.0,f +6525,100%,Indonesia,3.0,t +45546,100%,Cape Verde,19.0,t +17643,,,1.0,f +19247,100%,Cuba,5.0,f +36234,97%,Fiji,12.0,t +37925,100%,Gambia,2.0,t +45221,100%,Turkmenistan,1.0,t +6249,,Tanzania,1.0,t +12508,70%,Holy See (Vatican City State),3.0,t +27842,100%,,1.0,f +15114,,Ecuador,1.0,f +46425,,Cuba,1.0,t +33464,,Lebanon,1.0,t +45430,,Kenya,2.0,t +24329,,Monaco,1.0,t +8141,100%,Rwanda,2.0,t +27314,,,1.0,f +47002,,Uzbekistan,1.0,t +18110,,Bosnia and Herzegovina,1.0,t +7096,100%,Niue,4.0,t +29944,0%,,1.0,f +3725,,Tonga,1.0,f +37356,,Guinea,3.0,f +37490,100%,,2.0,t +11911,100%,Lithuania,1.0,t +48671,100%,Guinea,3.0,t +11106,0%,,2.0,t +34168,83%,Indonesia,3.0,f +34168,83%,Indonesia,3.0,f +41375,,,1.0,f +41507,100%,Sao Tome and Principe,1.0,t +32521,100%,Montserrat,4.0,t +47723,100%,Guinea,2.0,f +23333,91%,Kiribati,3.0,t +33033,89%,,1.0,t +18257,,Zimbabwe,1.0,f +37537,100%,,2.0,t +35345,,Zimbabwe,1.0,t +45724,,,1.0,f +32799,,Mauritania,1.0,t +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +27387,96%,Tonga,5.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +14048,100%,Finland,6.0,t +16410,100%,Australia,1.0,t +17200,,,1.0,t +9255,,Vietnam,10.0,f +30475,92%,Vietnam,40.0,f +31682,,Isle of Man,1.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +44096,,,2.0,t +42566,,,1.0,f +29647,100%,Peru,1305.0,f +510,,Greenland,1.0,f +36866,,Guinea,1.0,f +23275,,Micronesia,5.0,t +19858,,,1.0,f +31817,,Faroe Islands,1.0,t +29746,96%,Tonga,5.0,f +17489,100%,,1.0,f +35439,94%,United Kingdom,23.0,t +3651,,Mauritania,2.0,t +356,99%,Wallis and Futuna,32.0,t +37039,100%,,5.0,f +37568,90%,Sao Tome and Principe,1.0,f +44372,,,1.0,f +1468,100%,Papua New Guinea,1.0,t +27972,94%,Brazil,27.0,f +424,,Peru,1.0,t +18530,,China,1.0,t +11745,,,1.0,f +4337,,,1.0,f +44163,,,2.0,t +27837,,Marshall Islands,1.0,f +15568,,,1.0,t +38305,,,1.0,t +2559,,Cocos (Keeling) Islands,1.0,f +25409,60%,Malawi,1.0,f +35798,,Canada,1.0,f +9501,90%,,2.0,f +23335,100%,,3.0,f +26356,90%,Jersey,2.0,f +25261,100%,Tonga,1.0,f +22573,,,7.0,f +30985,100%,Uzbekistan,5.0,f +27972,94%,Brazil,27.0,f +38409,100%,,1.0,f +7537,100%,Rwanda,2.0,f +9851,100%,Nicaragua,1.0,t +42534,100%,Marshall Islands,2.0,t +39110,100%,Jersey,1.0,t +44752,,,1.0,f +12249,,Denmark,2.0,f +1717,,Niue,1.0,f +6220,90%,Gambia,1.0,f +32686,78%,Micronesia,2.0,t +4485,95%,China,7.0,t +43409,100%,,1.0,t +36298,0%,Malta,1.0,t +5486,100%,Svalbard & Jan Mayen Islands,12.0,f +29411,100%,Svalbard & Jan Mayen Islands,2.0,f +34265,100%,,1.0,f +42364,0%,Djibouti,1.0,f +38705,,Guinea,1.0,t +28898,85%,Maldives,5.0,t +45360,,France,1.0,t +35711,71%,Kiribati,2.0,t +22794,50%,Cape Verde,36.0,t +25785,,Ecuador,1.0,t +1889,100%,,1.0,t +30245,,Nicaragua,1.0,t +14477,100%,Reunion,26.0,t +7897,,Fiji,1.0,t +31440,,Switzerland,1.0,f +41883,,Svalbard & Jan Mayen Islands,1.0,t +17777,,Lebanon,1.0,t +15407,50%,,1.0,f +29781,,Turkmenistan,2.0,t +46258,100%,Philippines,1.0,t +39007,,,2.0,f +31413,100%,Estonia,1.0,t +41330,100%,Slovenia,1.0,f +3334,,Indonesia,2.0,t +22750,,Barbados,4.0,t +34777,,Somalia,1.0,f +12201,,Kenya,1.0,f +36643,98%,Maldives,17.0,f +2024,,,1.0,f +21918,100%,,1.0,f +37851,100%,Denmark,4.0,t +3677,100%,Russian Federation,1.0,f +33655,100%,,1.0,t +3254,,Tonga,16.0,t +47555,,Lebanon,1.0,t +12494,,Ghana,3.0,t +23333,91%,Kiribati,3.0,t +17896,,Canada,1.0,f +14856,,,1.0,f +6959,95%,Slovakia (Slovak Republic),20.0,t +14945,,,1.0,f +28866,,Cuba,5.0,f +4432,100%,Wallis and Futuna,18.0,f +6981,100%,Palestinian Territory,1.0,f +23333,91%,Kiribati,3.0,t +3054,,Croatia,1.0,f +31536,,Mauritania,1.0,f +30475,92%,Vietnam,40.0,f +42227,100%,,1.0,f +28866,,Cuba,5.0,f +38463,,,1.0,t +7946,,,1.0,t +39107,100%,Canada,2.0,f +6141,,Maldives,2.0,t +29883,90%,Isle of Man,26.0,t +29883,90%,Isle of Man,26.0,t +48351,,Malta,3.0,f +22234,,Chad,1.0,t +29883,90%,Isle of Man,26.0,t +30132,,Bahrain,1.0,f +2227,100%,Montserrat,5.0,t +44146,36%,Malawi,2.0,t +3658,,Micronesia,2.0,t +46194,100%,Tanzania,4.0,f +1114,,Bosnia and Herzegovina,1.0,t +32229,,Nicaragua,1.0,f +22602,100%,Ukraine,2.0,f +17704,100%,Vanuatu,1.0,f +36481,95%,Kiribati,7.0,t +25987,,Venezuela,7.0,t +5160,,,3.0,t +19983,,,1.0,t +22331,99%,Rwanda,50.0,t +14357,,,2.0,t +32143,,Ecuador,1.0,t +29883,90%,Isle of Man,26.0,t +29883,90%,Isle of Man,26.0,t +29883,90%,Isle of Man,26.0,t +28896,100%,Uganda,2.0,t +28866,,Cuba,5.0,f +29883,90%,Isle of Man,26.0,t +49939,,France,1.0,t +29883,90%,Isle of Man,26.0,t +13855,,Ghana,1.0,f +35241,,,1.0,t +45256,100%,Guinea,1.0,t +27972,94%,Brazil,27.0,f +23708,100%,,1.0,f +43829,,Kenya,1.0,f +43725,100%,China,4.0,t +5486,100%,Svalbard & Jan Mayen Islands,12.0,f +5663,,Russian Federation,8.0,t +45954,100%,Bosnia and Herzegovina,1.0,t +7483,100%,Russian Federation,2.0,f +43725,100%,China,4.0,t +17274,,France,1.0,f +16529,100%,,1.0,t +19723,85%,Reunion,2.0,f +40593,,Nauru,10.0,t +20189,100%,Niger,4.0,f +28864,100%,Niger,1.0,f +7789,,,1.0,f +18709,,,1.0,t +7881,100%,Niue,6.0,t +30410,,Uzbekistan,1.0,t +46516,,Indonesia,1.0,f +31749,100%,Uganda,9.0,t +22750,,Barbados,4.0,t +6942,90%,Tanzania,1.0,t +3527,,Turks and Caicos Islands,1.0,f +32209,,Lebanon,1.0,f +32215,,Isle of Man,1.0,f +2597,100%,Nicaragua,13.0,t +36008,100%,Niue,1.0,t +49022,,,1.0,t +31458,100%,Lithuania,2.0,f +26517,,,1.0,f +45892,,,1.0,f +19901,,Guinea,1.0,f +27202,100%,Mauritania,1.0,f +49767,100%,,1.0,t +50037,91%,Guernsey,4.0,t +14913,,,1.0,f +49620,,,1.0,t +49027,,Turkmenistan,1.0,f +35371,,,1.0,f +18598,,Monaco,1.0,f +46756,,Guernsey,1.0,f +40936,,Russian Federation,1.0,f +23478,,,1.0,t +23952,,,1.0,t +5442,,Guinea,1.0,t +9607,,Montserrat,1.0,t +43103,100%,Monaco,3.0,t +42497,,France,1.0,f +17303,100%,Russian Federation,5.0,t +31624,,Gibraltar,1.0,t +45201,,,1.0,f +7448,,Guinea,2.0,f +13547,,,1.0,t +40145,100%,Micronesia,1.0,t +21831,100%,,1.0,t +42146,100%,Niue,1.0,t +35899,100%,Andorra,1.0,t +46194,100%,Tanzania,4.0,f +49477,100%,,2.0,f +22122,,French Guiana,1.0,t +26354,100%,Bouvet Island (Bouvetoya),1.0,t +17479,,French Guiana,1.0,t +41116,,Estonia,1.0,f +10735,,Palestinian Territory,1.0,f +46004,,Vanuatu,1.0,f +4617,,Malta,1.0,f +3391,100%,Iran,58.0,t +36536,100%,Brazil,1.0,t +10259,100%,Gambia,1.0,f +7157,,Finland,1.0,f +47594,100%,Kenya,17.0,t +29271,,Micronesia,1.0,f +41767,100%,,1.0,t +28941,,Sao Tome and Principe,1.0,f +49361,,Jersey,2.0,t +6702,100%,Nicaragua,1.0,f +34575,86%,Cape Verde,4.0,f +45178,,,1.0,t +14021,,Guinea,2.0,f +3344,,,1.0,f +26334,,United Kingdom,1.0,f +34569,100%,Malawi,2.0,t +39868,,Chile,1.0,f +21608,50%,Christmas Island,2.0,f +18617,100%,Maldives,1.0,t +5663,,Russian Federation,8.0,t +47361,100%,Barbados,10.0,f +46564,,Mauritania,1.0,t +8933,,El Salvador,1.0,t +47704,,China,1.0,t +26866,83%,Monaco,1.0,f +25207,100%,,9.0,t +36162,100%,,4.0,t +30999,,,1.0,f +36162,100%,,4.0,t +39007,,,2.0,f +2491,,Bosnia and Herzegovina,1.0,f +49586,,Turkmenistan,1.0,t +7755,,Isle of Man,1.0,t +32873,,,1.0,t +12887,,,1.0,f +50046,,Switzerland,1.0,f +7715,100%,Montserrat,3.0,f +25648,,,1.0,t +16528,,Zimbabwe,1.0,t +563,,French Guiana,1.0,t +36248,,,1.0,f +17311,,Uzbekistan,1.0,t +24426,100%,,7.0,t +13021,,,1.0,t +13248,100%,Maldives,1.0,t +47183,,Estonia,1.0,f +10305,,Somalia,3.0,t +13175,100%,Chad,1.0,f +2227,100%,Montserrat,5.0,t +40142,80%,Lebanon,1.0,t +4804,100%,,1.0,t +46478,,Nauru,1.0,f +42859,,,1.0,f +32848,,Ukraine,2.0,f +12038,100%,,1.0,t +34952,,,1.0,t +49667,,Chad,1.0,f +40760,,Philippines,1.0,t +33553,,,1.0,f +9969,50%,,1.0,f +49162,,Niue,1.0,t +25207,100%,,9.0,t +42087,,,1.0,f +44330,100%,,1.0,f +3162,100%,Montserrat,6.0,t +1523,100%,Uganda,2.0,t +6983,100%,,1.0,f +29405,,,1.0,f +24260,,,1.0,f +6300,33%,,1.0,t +34580,,,1.0,t +6868,100%,Croatia,1.0,t +12723,,Croatia,1.0,t +10890,100%,,2.0,t +38504,100%,Malawi,2.0,f +17691,90%,Zimbabwe,4.0,t +20748,,,1.0,f +33388,,Gambia,1.0,t +14871,,Maldives,1.0,f +49675,100%,,2.0,f +8430,,Peru,7.0,t +15669,,Sao Tome and Principe,6.0,t +1343,,Isle of Man,2.0,f +49561,,,1.0,f +23163,100%,,1.0,t +31551,97%,Kiribati,8.0,t +4994,,Chad,1.0,f +10743,,,2.0,f +33274,,Niue,1.0,f +33700,,Togo,1.0,f +22836,100%,,2.0,t +19139,100%,Mauritania,1.0,f +12629,,Tonga,1.0,f +7480,,Lebanon,1.0,f +30569,100%,United Kingdom,5.0,t +2350,100%,Tonga,1.0,t +5785,100%,Isle of Man,2.0,t +44084,,Togo,1.0,f +4802,,,1.0,f +7654,100%,Tonga,2.0,t +42156,,French Guiana,1.0,t +31264,,Malta,2.0,f +506,,,1.0,t +26603,,Uzbekistan,1.0,t +36773,95%,Venezuela,4.0,t +12283,,Montserrat,1.0,f +29429,100%,Kiribati,1.0,f +48364,100%,,4.0,f +12341,100%,Lithuania,1.0,t +31749,100%,Uganda,9.0,t +46736,,Afghanistan,1.0,t +26507,,Mauritania,1.0,t +42781,,Isle of Man,1.0,f +21954,,Switzerland,1.0,t +8011,100%,Papua New Guinea,1.0,f +9529,,,1.0,t +36733,100%,Tanzania,1.0,t +17376,,Bouvet Island (Bouvetoya),1.0,t +25182,100%,,2.0,t +45729,100%,,1.0,t +6713,100%,Mauritania,10.0,f +34856,,Maldives,2.0,f +24783,,Chad,1.0,t +40266,100%,Netherlands,1.0,f +28308,,,1.0,f +6088,100%,,14.0,t +36912,,Costa Rica,1.0,t +39840,,China,2.0,t +6768,100%,,1.0,t +1850,,,1.0,f +43437,,Niue,1.0,f +22375,100%,,1.0,f +34402,79%,Reunion,28.0,f +27428,100%,Uzbekistan,2.0,f +1255,,,1.0,t +14769,100%,Kiribati,4.0,t +34784,60%,Faroe Islands,19.0,t +26910,100%,,1.0,t +21300,,United Kingdom,1.0,f +35150,,Uruguay,1.0,t +40599,100%,United Kingdom,1.0,t +3503,100%,Ukraine,2.0,t +10305,,Somalia,3.0,t +24261,,,1.0,f +18272,90%,Vietnam,3.0,f +33179,100%,Rwanda,13.0,f +28398,100%,El Salvador,7.0,t +13127,100%,Niger,22.0,f +46476,,Chile,1.0,t +25825,,Malta,1.0,f +41392,,Guinea,1.0,t +38078,100%,Uzbekistan,2.0,t +31749,100%,Uganda,9.0,t +39771,100%,,8.0,f +8722,,,1.0,t +29765,,,1.0,t +45603,,Jersey,1.0,t +33527,,Tonga,1.0,t +11472,100%,,1.0,f +11184,,Nauru,2.0,t +42300,100%,Lithuania,1.0,t +6929,,Greenland,1.0,f +18834,,Kiribati,1.0,t +8201,,Guinea,1.0,f +38982,,Cocos (Keeling) Islands,1.0,t +8846,,Russian Federation,1.0,t +24842,100%,Jersey,4.0,t +44156,,Monaco,1.0,t +46285,100%,Turkmenistan,3.0,t +39853,,Micronesia,1.0,f +8704,,Lebanon,2.0,f +48458,100%,Nauru,1.0,t +28517,,Lebanon,2.0,t +6082,100%,Russian Federation,2.0,t +34140,,Brazil,1.0,t +39494,,Niue,1.0,f +26433,,Estonia,1.0,t +14000,,Lebanon,2.0,t +37263,,French Polynesia,1.0,f +44064,100%,,1.0,t +6390,,,1.0,t +31348,,Russian Federation,1.0,t +38389,,Nicaragua,1.0,f +30101,,Andorra,1.0,t +39299,,Svalbard & Jan Mayen Islands,1.0,f +48276,,,1.0,f +19950,,,1.0,f +37631,,Russian Federation,1.0,t +36691,,,3.0,f +8650,100%,,1.0,t +13993,100%,,1.0,f +39082,,Russian Federation,1.0,t +46153,100%,Kenya,1.0,f +45000,100%,Montserrat,10.0,t +16027,,Barbados,8.0,t +28997,100%,Slovenia,2.0,t +22897,,Bosnia and Herzegovina,1.0,f +19091,95%,Cook Islands,18.0,t +7540,100%,,1.0,f +9475,89%,,1.0,f +11006,,,1.0,f +40846,,Sao Tome and Principe,3.0,t +29647,100%,Peru,1305.0,f +13319,,Tunisia,2.0,t +40658,,,1.0,t +34959,,Maldives,2.0,t +29647,100%,Peru,1305.0,f +29746,96%,Tonga,5.0,f +1833,,Isle of Man,1.0,f +29647,100%,Peru,1305.0,f +36623,,,1.0,f +29647,100%,Peru,1305.0,f +45309,,Niue,1.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +31595,,,1.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +14343,100%,Bouvet Island (Bouvetoya),2.0,f +14040,,,1.0,t +12494,,Ghana,3.0,t +6664,,,1.0,t +23370,40%,Nicaragua,3.0,f +24917,100%,Uganda,11.0,t +33583,,Costa Rica,1.0,f +49165,,,1.0,t +17008,,,1.0,t +20190,,Denmark,1.0,t +6629,,,2.0,t +5258,,Turkmenistan,3.0,t +18939,,Reunion,3.0,t +4083,,,1.0,f +30497,100%,Slovakia (Slovak Republic),9.0,t +14641,100%,,1.0,t +5680,0%,,1.0,f +841,,Mauritania,1.0,f +46034,,,3.0,f +23652,,Russian Federation,1.0,t +16027,,Barbados,8.0,t +16580,,French Guiana,3.0,t +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +46691,90%,Uzbekistan,38.0,f +29647,100%,Peru,1305.0,f +23623,100%,Montserrat,11.0,t +29647,100%,Peru,1305.0,f +6104,100%,Uzbekistan,3.0,t +29647,100%,Peru,1305.0,f +27330,,Niue,1.0,t +33582,,Faroe Islands,1.0,f +31476,,Zimbabwe,1.0,t +2048,100%,Brazil,1.0,t +10692,100%,Gambia,1.0,t +45333,,United Kingdom,1.0,f +18484,100%,Gambia,108.0,f +34402,79%,Reunion,28.0,f +34402,79%,Reunion,28.0,f +30418,,Cuba,1.0,t +18527,,Lebanon,1.0,f +44461,,Congo,1.0,f +13968,,,1.0,f +40494,,French Guiana,1.0,t +24917,100%,Uganda,11.0,t +23127,,Niue,1.0,t +3409,,Rwanda,1.0,f +37890,,Bahrain,1.0,f +26304,,French Guiana,1.0,f +24148,,Estonia,1.0,t +34889,,Somalia,1.0,t +47377,,Chad,2.0,t +31710,,Guinea,3.0,f +28372,100%,Indonesia,12.0,f +44580,,Maldives,1.0,t +29385,100%,Grenada,1.0,t +39567,,,1.0,t +17302,,Anguilla,1.0,t +10924,,,1.0,t +14610,100%,Niue,2.0,t +20234,,,1.0,t +47553,,Brazil,2.0,t +32392,83%,Tunisia,1.0,t +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +35367,100%,Malta,1.0,t +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +47161,,Nicaragua,1.0,t +23470,0%,Croatia,1.0,t +11617,,,2.0,f +47565,100%,Kiribati,1.0,t +5724,100%,,1.0,f +46836,,,1.0,f +28947,100%,Palestinian Territory,1.0,f +35571,,Bosnia and Herzegovina,3.0,t +37646,100%,Estonia,60.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +7520,100%,Ukraine,15.0,t +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +44136,,Montserrat,1.0,f +34238,100%,Saint Barthelemy,5.0,t +29647,100%,Peru,1305.0,f +8061,,Indonesia,2.0,f +26791,,Sao Tome and Principe,1.0,f +44984,,Reunion,1.0,f +23401,,Chile,3.0,f +19829,,Russian Federation,1.0,f +17504,,,2.0,t +45680,,Russian Federation,1.0,t +8265,100%,,1.0,f +24249,100%,,1.0,t +8376,100%,Guinea,3.0,t +41295,,Russian Federation,1.0,f +11288,100%,,1.0,t +3907,100%,Sao Tome and Principe,2.0,t +42458,97%,Indonesia,14.0,t +7288,,Russian Federation,1.0,f +6576,100%,Gibraltar,3.0,t +1649,100%,Reunion,2.0,t +41253,90%,Sao Tome and Principe,3.0,t +41253,90%,Sao Tome and Principe,3.0,t +14586,,Somalia,1.0,f +49641,100%,,3.0,t +29940,90%,Uzbekistan,1.0,t +35553,,Russian Federation,1.0,f +14514,,China,80.0,t +49062,50%,,1.0,f +13033,80%,Moldova,3.0,t +22191,100%,Cape Verde,2.0,f +22191,100%,Cape Verde,2.0,f +19589,100%,,3.0,f +7518,,Micronesia,1.0,t +44018,,,1.0,f +23623,100%,Montserrat,11.0,t +18902,100%,Russian Federation,1.0,f +16330,100%,Kenya,2.0,f +17395,,Russian Federation,1.0,f +48094,,,1.0,f +28111,,Russian Federation,1.0,f +2143,,France,2.0,t +47616,100%,Finland,1.0,t +22954,,Tonga,1.0,t +8547,,Nicaragua,1.0,t +22481,,Brazil,1.0,f +49235,,Micronesia,1.0,t +32786,,Nauru,1.0,f +415,100%,Zimbabwe,1.0,f +49441,,Grenada,1.0,f +49474,,,1.0,f +31146,,,1.0,t +566,,,1.0,t +23776,100%,Micronesia,2.0,t +25977,100%,Slovakia (Slovak Republic),2.0,t +49783,,,1.0,t +25755,,El Salvador,1.0,t +4476,,Maldives,1.0,t +49708,,Afghanistan,3.0,t +7485,100%,Tonga,3.0,f +1356,,Senegal,2.0,f +33687,,Russian Federation,1.0,t +4929,,Netherlands,1.0,t +12048,,Barbados,1.0,f +3789,64%,Fiji,2.0,f +10942,96%,Uganda,3.0,f +40593,,Nauru,10.0,t +44841,100%,Sao Tome and Principe,3.0,t +34631,,,1.0,f +25805,,Monaco,1.0,t +15915,94%,,4.0,t +27681,100%,Maldives,1.0,t +16027,,Barbados,8.0,t +28828,100%,Isle of Man,198.0,t +30195,,,1.0,t +49044,,Cape Verde,2.0,t +1124,100%,Jersey,2.0,f +20547,,,1.0,f +38242,85%,Rwanda,3.0,t +47316,,Zimbabwe,1.0,t +14724,,Greenland,1.0,f +2033,,,1.0,f +49460,,Faroe Islands,1.0,f +12109,100%,Lebanon,1.0,t +6859,,Philippines,2.0,t +29084,100%,Mexico,2.0,t +38098,100%,Zimbabwe,7.0,t +38228,100%,Guinea,1.0,f +37304,,,1.0,f +40434,50%,Kiribati,1.0,f +7490,,Libyan Arab Jamahiriya,1.0,f +26136,,Malta,1.0,t +36839,100%,,1.0,t +19459,90%,Lebanon,2.0,f +43998,,Philippines,1.0,t +13553,93%,Vietnam,5.0,f +30680,,Guinea,4.0,f +7862,,Russian Federation,2.0,t +4290,,Sao Tome and Principe,1.0,f +25551,60%,Tonga,1.0,t +17979,,,1.0,t +16494,90%,,1.0,t +35476,100%,,1.0,t +17934,,Tanzania,1.0,t +16163,100%,France,2.0,f +38098,100%,Zimbabwe,7.0,t +1770,100%,,1.0,f +29068,,,1.0,t +39126,100%,Guinea,9.0,f +2927,100%,Uganda,10.0,t +2927,100%,Uganda,10.0,t +2927,100%,Uganda,10.0,t +25205,,Isle of Man,1.0,f +35357,,Chad,1.0,t +33777,,Cape Verde,1.0,t +48051,0%,Brazil,1.0,t +40251,33%,Ecuador,1.0,f +20433,,,1.0,t +47671,,Sao Tome and Principe,1.0,f +18236,100%,,4.0,t +34542,100%,,1.0,t +40581,100%,Micronesia,1.0,f +33340,,,2.0,f +38746,99%,Vietnam,13.0,f +49166,,Lithuania,1.0,f +36458,,Uzbekistan,1.0,t +37008,,Cape Verde,1.0,t +12853,,Rwanda,4.0,t +18726,,Niue,2.0,t +39735,,Zimbabwe,2.0,t +12853,,Rwanda,4.0,t +12403,92%,Vietnam,3.0,t +40612,,,2.0,f +36592,,Tonga,1.0,t +12403,92%,Vietnam,3.0,t +12403,92%,Vietnam,3.0,t +14000,,Lebanon,2.0,t +42487,,Russian Federation,1.0,t +28881,,Ghana,2.0,f +37037,,,1.0,f +33409,100%,,1.0,t +36789,100%,Vietnam,1.0,f +40710,90%,Russian Federation,3.0,t +40067,,,1.0,f +40710,90%,Russian Federation,3.0,t +26169,,,1.0,f +21157,,Somalia,1.0,t +5932,75%,,1.0,f +5944,,Estonia,1.0,t +38923,,Tonga,1.0,f +44900,,Gibraltar,1.0,t +39885,69%,French Guiana,2.0,t +34959,,Maldives,2.0,t +7019,100%,Tuvalu,2.0,f +17536,100%,Finland,1.0,t +6838,96%,Spain,59.0,t +9278,100%,Netherlands,10.0,f +41072,100%,Estonia,1.0,t +27387,96%,Tonga,5.0,f +3483,100%,Micronesia,4.0,t +38853,,Russian Federation,1.0,f +5065,,Guinea,1.0,t +23732,,Tanzania,1.0,f +48037,,,1.0,t +16738,100%,Jersey,2.0,t +3162,100%,Montserrat,6.0,t +44191,100%,,3.0,f +29689,100%,,1.0,t +34575,86%,Cape Verde,4.0,f +10709,,Lebanon,1.0,f +13864,,,1.0,f +11587,100%,Micronesia,2.0,t +26033,,,1.0,t +44813,,,1.0,f +38575,,Brazil,1.0,f +47575,,,1.0,f +41217,,Ghana,1.0,f +14160,90%,Slovakia (Slovak Republic),4.0,t +24016,100%,Bosnia and Herzegovina,29.0,f +28141,83%,Uzbekistan,2.0,t +262,97%,Maldives,16.0,t +39870,,Slovakia (Slovak Republic),21.0,t +16862,,Peru,1.0,t +37853,,Isle of Man,1.0,f +47011,,Malawi,4.0,t +15944,100%,Vietnam,2.0,t +20308,100%,Guinea,5.0,t +262,97%,Maldives,16.0,t +22441,100%,,1.0,f +14525,,Russian Federation,2.0,t +1902,,Tonga,1.0,f +9245,,El Salvador,2.0,t +22989,,China,2.0,t +4954,,Christmas Island,2.0,f +262,97%,Maldives,16.0,t +17012,,Tonga,3.0,t +364,,,4.0,f +26879,100%,Niue,2.0,t +19809,,Chad,1.0,t +35310,100%,,2.0,t +29215,,Mexico,1.0,f +3823,,Gibraltar,1.0,f +26029,,Tonga,1.0,f +21395,100%,Costa Rica,1.0,t +44867,,Guinea,2.0,f +14514,,China,80.0,t +48691,,Russian Federation,1.0,t +35492,,,1.0,t +39115,,Uzbekistan,1.0,t +2296,,Saint Helena,1.0,t +31749,100%,Uganda,9.0,t +24917,100%,Uganda,11.0,t +24917,100%,Uganda,11.0,t +31749,100%,Uganda,9.0,t +24917,100%,Uganda,11.0,t +39639,100%,Niue,19.0,f +25259,,Barbados,1.0,t +29264,,,1.0,f +40611,,,1.0,f +25309,,Cape Verde,1.0,t +2309,,Bouvet Island (Bouvetoya),2.0,t +36120,88%,Tonga,4.0,t +19842,85%,Turkmenistan,53.0,f +29320,,,1.0,f +19842,85%,Turkmenistan,53.0,f +19842,85%,Turkmenistan,53.0,f +20087,100%,Isle of Man,1.0,t +4331,,Nauru,1.0,f +14880,,Nicaragua,1.0,f +11872,,,13.0,f +5552,,,1.0,t +12622,,,1.0,f +1812,,Uganda,1.0,t +36367,100%,Palestinian Territory,3.0,f +44048,,Indonesia,2.0,f +44048,,Indonesia,2.0,f +13301,100%,Togo,2.0,f +14738,,,1.0,t +14427,,Guernsey,1.0,f +33561,,Gibraltar,1.0,f +2349,,Malawi,1.0,f +25315,100%,Uganda,2.0,t +31083,100%,,3.0,f +25427,,Turkmenistan,1.0,t +31084,,,1.0,f +27806,100%,Malta,1.0,t +12912,,Lebanon,1.0,f +46691,90%,Uzbekistan,38.0,f +42735,,,1.0,t +46691,90%,Uzbekistan,38.0,f +14969,,Lebanon,1.0,t +2205,,Niue,1.0,f +24917,100%,Uganda,11.0,t +27448,,,1.0,f +34940,,Niger,1.0,t +19842,85%,Turkmenistan,53.0,f +46764,100%,Chile,3.0,t +48957,,Sao Tome and Principe,1.0,f +1845,,Honduras,2.0,t +22641,86%,Chad,1.0,t +37174,,Kenya,1.0,f +29430,0%,Philippines,3.0,f +31749,100%,Uganda,9.0,t +2927,100%,Uganda,10.0,t +24239,100%,Kiribati,8.0,t +5261,100%,Jersey,3.0,t +27615,,,1.0,t +38254,,Jersey,1.0,f +14391,100%,Guinea,1.0,f +32449,,Gambia,1.0,t +8163,,Kenya,3.0,f +4072,,Sao Tome and Principe,1.0,f +23884,,,1.0,t +49708,,Afghanistan,3.0,t +33949,80%,Marshall Islands,1.0,f +6784,100%,Lebanon,1.0,t +7326,100%,Kiribati,3.0,t +18688,100%,Chile,1.0,t +34387,100%,Malta,1.0,f +15302,100%,Bahrain,5.0,t +31749,100%,Uganda,9.0,t +15302,100%,Bahrain,5.0,t +16879,,Chile,2.0,t +11616,100%,Uzbekistan,12.0,t +24272,,Gambia,1.0,t +36371,100%,Kiribati,1.0,t +10552,100%,Togo,2.0,f +3816,100%,United Kingdom,1.0,t +17517,100%,Russian Federation,2.0,t +24239,100%,Kiribati,8.0,t +41729,100%,Zimbabwe,2.0,f +2753,75%,Monaco,1.0,t +10563,,Greenland,1.0,t +20573,,Sao Tome and Principe,1.0,t +8579,100%,Lithuania,2.0,f +30383,90%,Mauritania,6.0,t +12640,,Kenya,1.0,t +33100,100%,Monaco,1.0,t +23644,100%,Mauritania,4.0,t +12136,,Brazil,1.0,f +36319,75%,France,2.0,t +10431,,Finland,2.0,t +29799,,Maldives,1.0,f +27377,,Marshall Islands,1.0,f +23539,0%,Niue,1.0,f +35185,100%,Lebanon,2.0,t +4394,,,1.0,f +11488,90%,Slovakia (Slovak Republic),2.0,f +27334,100%,China,16.0,f +25541,,,1.0,f +33663,,,2.0,f +22140,,Chad,1.0,f +24794,,Russian Federation,2.0,f +19842,85%,Turkmenistan,53.0,f +19842,85%,Turkmenistan,53.0,f +19842,85%,Turkmenistan,53.0,f +19842,85%,Turkmenistan,53.0,f +2696,,Maldives,2.0,f +19842,85%,Turkmenistan,53.0,f +19842,85%,Turkmenistan,53.0,f +19842,85%,Turkmenistan,53.0,f +19842,85%,Turkmenistan,53.0,f +26596,60%,Jersey,2.0,t +5375,100%,,1.0,f +19842,85%,Turkmenistan,53.0,f +24239,100%,Kiribati,8.0,t +19842,85%,Turkmenistan,53.0,f +19842,85%,Turkmenistan,53.0,f +19842,85%,Turkmenistan,53.0,f +19842,85%,Turkmenistan,53.0,f +47382,,Uganda,1.0,f +18450,,,1.0,f +342,,,1.0,f +20115,86%,Isle of Man,2.0,t +45926,100%,,2.0,f +4823,100%,,1.0,t +40533,100%,Philippines,1.0,f +48047,,,1.0,t +45117,,Brazil,1.0,t +10819,100%,Mexico,6.0,f +12555,,Faroe Islands,1.0,t +16792,100%,Senegal,2.0,f +32483,,Niue,1.0,t +41878,91%,Maldives,47.0,f +15501,,,1.0,t +5261,100%,Jersey,3.0,t +21631,33%,Niue,1.0,f +9931,,Russian Federation,1.0,f +25019,,Malta,3.0,f +20553,83%,Barbados,4.0,f +7873,100%,Malta,1.0,f +28874,,Lebanon,1.0,t +35381,100%,,3.0,t +33310,,,1.0,f +16650,100%,Niue,1.0,t +38098,100%,Zimbabwe,7.0,t +15650,100%,Sao Tome and Principe,2.0,f +33073,100%,China,2.0,f +42456,,,1.0,f +28909,0%,,1.0,t +49896,,,2.0,f +17975,80%,,1.0,f +4553,,Malta,1.0,f +3141,,Monaco,1.0,t +47434,100%,Senegal,4.0,t +28801,,Sao Tome and Principe,1.0,t +6197,100%,Montserrat,1.0,t +12000,,Nicaragua,1.0,f +37353,,,2.0,t +37135,,Chad,1.0,t +37794,90%,Niue,1.0,f +5797,,Gambia,2.0,f +33385,100%,,1.0,f +22165,,Russian Federation,3.0,t +24209,,,1.0,f +1649,100%,Reunion,2.0,t +340,,Ghana,3.0,t +44133,,,1.0,t +30940,100%,Marshall Islands,2.0,t +6840,,Micronesia,2.0,f +39162,67%,Micronesia,2.0,f +37192,,El Salvador,1.0,t +13413,,Chile,3.0,t +40504,,,1.0,f +44343,,Bosnia and Herzegovina,2.0,t +45405,,Estonia,1.0,f +10811,,Gambia,1.0,f +21956,,,1.0,f +48543,100%,Micronesia,1.0,f +22139,,Chile,1.0,f +45332,,Croatia,2.0,f +32712,,Canada,1.0,f +37020,,Chile,1.0,t +40359,,Chile,2.0,t +49398,88%,Barbados,18.0,t +4911,,Kenya,1.0,t +44443,,Papua New Guinea,2.0,f +48631,,,1.0,t +44443,,Papua New Guinea,2.0,f +31749,100%,Uganda,9.0,t +7679,100%,Niger,4.0,t +32132,80%,Barbados,11.0,t +5261,100%,Jersey,3.0,t +38820,,Fiji,1.0,f +36844,,Slovenia,1.0,f +11715,,Costa Rica,5.0,f +26971,,,1.0,t +5079,,,1.0,f +15138,,Lebanon,2.0,t +33055,,Isle of Man,1.0,t +36717,100%,Guinea,3.0,t +13378,,,1.0,f +6466,100%,,2.0,f +34987,,Russian Federation,2.0,t +19947,100%,Gambia,2.0,t +36295,,,2.0,f +39970,100%,,2.0,f +28375,,Guinea,1.0,t +2095,,,2.0,t +39267,,Bouvet Island (Bouvetoya),1.0,f +34575,86%,Cape Verde,4.0,f +22918,,,1.0,f +511,,,1.0,t +15121,,Uzbekistan,1.0,f +359,,Gambia,1.0,t +46691,90%,Uzbekistan,38.0,f +27146,,Russian Federation,1.0,f +34390,,,1.0,f +48473,,,2.0,t +26058,0%,,1.0,f +47595,100%,Nauru,4.0,f +48134,,Nicaragua,1.0,f +32677,,Niue,1.0,f +25485,100%,Kiribati,1.0,f +29755,,Maldives,1.0,f +46130,,,2.0,f +29647,100%,Peru,1305.0,f +12037,,Chile,2.0,t +29647,100%,Peru,1305.0,f +48687,100%,Chad,1.0,t +14904,100%,Russian Federation,1.0,t +29647,100%,Peru,1305.0,f +9278,100%,Netherlands,10.0,f +8707,73%,Rwanda,21.0,t +29647,100%,Peru,1305.0,f +31749,100%,Uganda,9.0,t +19537,,Micronesia,1.0,t +24917,100%,Uganda,11.0,t +47531,100%,,2.0,f +34568,,El Salvador,1.0,f +41878,91%,Maldives,47.0,f +5092,,Russian Federation,1.0,t +31386,,Niger,1.0,t +11996,,,1.0,f +48305,100%,Guinea,2.0,t +31468,100%,,1.0,t +43383,100%,Cape Verde,3.0,t +49089,,Denmark,1.0,f +11688,,Afghanistan,1.0,f +13347,,,1.0,f +2915,100%,Philippines,1.0,t +9954,,,1.0,t +6986,,Micronesia,1.0,t +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +371,,Niger,2.0,f +48705,,Guernsey,1.0,f +29647,100%,Peru,1305.0,f +40643,,Croatia,1.0,f +13580,100%,,1.0,t +12724,,Brazil,1.0,f +45279,,Monaco,2.0,t +14338,,Zimbabwe,1.0,f +10948,100%,Denmark,3.0,f +7097,,Korea,1.0,f +24917,100%,Uganda,11.0,t +5861,,Malawi,1.0,t +26544,,Isle of Man,1.0,t +24586,,Kiribati,2.0,t +11821,,Guinea,1.0,f +34402,79%,Reunion,28.0,f +45523,100%,Russian Federation,1.0,t +3115,83%,Slovakia (Slovak Republic),17.0,t +2998,70%,France,4.0,t +14250,,Marshall Islands,3.0,t +16027,,Barbados,8.0,t +38811,,,1.0,t +40436,,Isle of Man,1.0,f +33669,100%,Malta,2.0,t +44143,100%,,1.0,f +6427,,,1.0,f +29005,100%,Peru,3.0,f +24015,,Turkmenistan,2.0,f +37704,96%,Fiji,26.0,f +16020,,Andorra,1.0,t +39555,100%,Marshall Islands,13.0,t +37704,96%,Fiji,26.0,f +20025,,Mauritania,1.0,t +37704,96%,Fiji,26.0,f +6693,,French Guiana,1.0,f +9015,100%,Malta,1.0,f +24243,,,2.0,t +35060,,Guinea,1.0,t +16544,,Guinea,1.0,t +17318,100%,Micronesia,1.0,t +25293,,,1.0,f +49558,100%,Malta,5.0,t +45279,,Monaco,2.0,t +14236,,Bosnia and Herzegovina,4.0,t +17158,,Afghanistan,1.0,t +21072,100%,Lebanon,2.0,t +12715,100%,Estonia,29.0,f +48502,100%,Nicaragua,11.0,t +48502,100%,Nicaragua,11.0,t +39957,,Monaco,1.0,t +3127,100%,Rwanda,36.0,f +44930,100%,Denmark,2.0,t +14144,,Guernsey,1.0,t +13447,,Cape Verde,1.0,t +47037,100%,Lithuania,1.0,t +41878,91%,Maldives,47.0,f +489,,,1.0,t +6279,,,1.0,t +1029,,Isle of Man,4.0,t +43084,,El Salvador,2.0,t +13599,100%,,2.0,t +12588,100%,Slovenia,3.0,f +8939,,Isle of Man,1.0,t +20302,100%,,1.0,t +27495,,,1.0,f +32350,,,2.0,f +49052,100%,,1.0,f +24026,98%,Cape Verde,69.0,t +46281,,Russian Federation,1.0,f +28098,100%,Afghanistan,6.0,t +43644,,Estonia,1.0,t +43657,,,1.0,f +20815,0%,,1.0,t +6959,95%,Slovakia (Slovak Republic),20.0,t +30285,60%,Micronesia,2.0,f +38175,,Gibraltar,1.0,f +28098,100%,Afghanistan,6.0,t +11727,,Togo,1.0,t +28098,100%,Afghanistan,6.0,t +17664,,,1.0,f +21139,,Guinea,1.0,t +50042,,Russian Federation,1.0,f +18534,,,2.0,t +4314,100%,Russian Federation,1.0,t +26637,,,1.0,f +340,,Ghana,3.0,t +15238,,Pakistan,1.0,f +12715,100%,Estonia,29.0,f +31510,75%,Kenya,2.0,t +718,100%,Uganda,3.0,t +33049,,,1.0,f +1011,97%,Russian Federation,8.0,t +20553,83%,Barbados,4.0,f +15080,100%,Venezuela,3.0,f +18088,100%,Marshall Islands,3.0,t +8487,,Russian Federation,1.0,t +43810,,,1.0,t +2237,0%,Jersey,1.0,f +3536,100%,France,1.0,t +47639,100%,France,2.0,f +10471,,Estonia,1.0,t +43077,,Chad,1.0,f +29708,100%,,1.0,t +24023,,France,1.0,t +30403,,Zimbabwe,1.0,t +20122,,Philippines,1.0,t +2666,,Niue,1.0,t +48233,100%,Togo,1.0,f +32521,100%,Montserrat,4.0,t +27119,94%,Nicaragua,10.0,t +10313,100%,Brazil,1.0,t +26026,100%,Saint Helena,3.0,f +10959,,,1.0,f +34446,,Cocos (Keeling) Islands,2.0,t +35222,,Uzbekistan,1.0,f +49347,,Niue,1.0,f +26654,,,1.0,f +44572,0%,Zimbabwe,1.0,f +25112,,Togo,4.0,f +47891,,Lebanon,1.0,t +38284,100%,Puerto Rico,4.0,t +5779,,Tonga,1.0,f +30215,,Nicaragua,2.0,t +8153,,Rwanda,1.0,t +48315,90%,Guernsey,1.0,t +2864,,Denmark,1.0,t +10532,,Holy See (Vatican City State),1.0,f +9194,100%,,1.0,t +41878,91%,Maldives,47.0,f +15134,,Uganda,1.0,f +7235,,Rwanda,1.0,t +41878,91%,Maldives,47.0,f +33149,,,1.0,t +49672,,,1.0,f +26862,100%,Chad,3.0,t +28262,,Guinea,2.0,t +29129,100%,Zimbabwe,1.0,f +28822,,Isle of Man,1.0,t +5958,100%,Faroe Islands,9.0,f +31924,100%,,2.0,f +39043,,Jersey,1.0,t +32100,,Chad,1.0,t +13190,100%,,4.0,t +19998,100%,,1.0,t +42222,100%,,1.0,f +48413,100%,Faroe Islands,1.0,t +13190,100%,,4.0,t +44482,100%,,1.0,t +41230,100%,Togo,2.0,f +31767,,Russian Federation,1.0,f +19890,,Somalia,1.0,f +19478,,Chile,1.0,t +40031,100%,Marshall Islands,1.0,t +31792,,,1.0,f +4690,,Bouvet Island (Bouvetoya),3.0,t +41781,,Guernsey,1.0,f +3811,,Micronesia,1.0,t +35805,,Guinea,1.0,f +12372,,,1.0,f +30676,,Pakistan,1.0,f +1628,100%,Niue,1.0,f +7298,75%,,1.0,t +16693,100%,Kenya,1.0,t +22475,100%,Marshall Islands,1.0,f +49398,88%,Barbados,18.0,t +2664,,Ghana,1.0,t +2714,100%,Bosnia and Herzegovina,8.0,f +25587,,,1.0,f +34896,,,1.0,f +7388,100%,,1.0,f +19902,,,1.0,t +13296,100%,Vietnam,1.0,t +6065,88%,,2.0,t +47696,,,1.0,f +4634,100%,Gibraltar,2.0,f +40686,,,1.0,f +16464,,Isle of Man,1.0,f +17566,,Vanuatu,1.0,t +24153,,Rwanda,1.0,t +20096,92%,,2.0,t +25906,,Uzbekistan,1.0,f +15669,,Sao Tome and Principe,6.0,t +49617,,Kiribati,1.0,t +38876,0%,,3.0,t +12899,50%,,1.0,t +32953,,,1.0,f +13408,91%,Indonesia,4.0,t +5425,100%,Russian Federation,2.0,t +44934,100%,Philippines,17.0,f +16100,,Bosnia and Herzegovina,1.0,t +23324,,Bosnia and Herzegovina,1.0,t +10981,,Malta,1.0,t +38341,,,2.0,t +16052,,Mexico,1.0,t +19800,,,1.0,t +11016,100%,Venezuela,1.0,f +18184,,,1.0,f +2034,,Lithuania,2.0,t +42763,,Estonia,1.0,f +47595,100%,Nauru,4.0,f +31154,,Brazil,1.0,t +40399,100%,,3.0,t +29978,89%,Uzbekistan,26.0,f +22369,,,1.0,t +660,,,1.0,f +31875,100%,Maldives,12.0,t +9964,,Afghanistan,2.0,t +5658,,,1.0,f +21190,100%,Uganda,3.0,f +38284,100%,Puerto Rico,4.0,t +37083,100%,,1.0,t +38284,100%,Puerto Rico,4.0,t +10252,,Lebanon,1.0,f +8053,,Philippines,1.0,t +4750,,Guernsey,1.0,f +12322,,Ghana,1.0,t +43366,,Gibraltar,1.0,t +39836,100%,Ecuador,2.0,t +591,100%,Niue,2.0,f +718,100%,Uganda,3.0,t +591,100%,Niue,2.0,f +24591,,,1.0,t +5117,33%,Chile,2.0,t +49211,,,1.0,f +43898,,Montserrat,1.0,f +6032,,,1.0,t +13237,,Isle of Man,1.0,f +9808,,Portugal,1.0,f +18610,,,1.0,f +5279,100%,Gambia,1.0,f +17683,100%,,2.0,t +24325,,,1.0,f +33107,,,1.0,t +13408,91%,Indonesia,4.0,t +35508,,,1.0,t +2667,100%,Niue,3.0,f +29260,,,1.0,t +3115,83%,Slovakia (Slovak Republic),17.0,t +2591,,Lebanon,1.0,t +29884,100%,,3.0,f +14990,,,1.0,t +14477,100%,Reunion,26.0,t +9778,,Isle of Man,1.0,f +30619,100%,Djibouti,1.0,t +11124,100%,Sao Tome and Principe,3.0,f +21724,,Sao Tome and Principe,3.0,t +24026,98%,Cape Verde,69.0,t +39422,100%,Russian Federation,1.0,f +35470,,Indonesia,1.0,f +3400,,Holy See (Vatican City State),1.0,t +42559,,Gibraltar,2.0,t +18712,95%,Turks and Caicos Islands,11.0,t +29189,,,1.0,t +21991,100%,Djibouti,2.0,f +12324,,Maldives,1.0,t +4763,,Uruguay,2.0,f +20701,,Cook Islands,3.0,f +14875,100%,Tanzania,1.0,t +3513,,Uganda,2.0,t +36025,100%,Djibouti,6.0,t +35031,,Tanzania,1.0,f +15420,100%,Cape Verde,1.0,f +20701,,Cook Islands,3.0,f +49747,,,1.0,t +47508,,French Guiana,1.0,t +47233,100%,Saint Helena,3.0,t +6642,,Gambia,1.0,t +15374,100%,Russian Federation,1.0,t +24652,80%,,2.0,f +20830,,Zimbabwe,2.0,t +25684,,,1.0,f +8897,,,1.0,t +3893,,Isle of Man,1.0,t +20536,100%,Marshall Islands,3.0,t +20232,,Maldives,1.0,f +36234,97%,Fiji,12.0,t +11593,100%,Monaco,2.0,t +21505,100%,,1.0,t +8976,97%,Guinea,3.0,f +7911,,,1.0,t +46191,100%,Monaco,1.0,t +12923,,Lebanon,1.0,t +37588,,,1.0,t +32137,,,1.0,t +5247,46%,Estonia,3.0,t +10153,,,1.0,t +21412,,Czech Republic,2.0,t +11715,,Costa Rica,5.0,f +32837,100%,Togo,1.0,f +22101,,,1.0,f +13408,91%,Indonesia,4.0,t +3254,,Tonga,16.0,t +26361,100%,Vanuatu,3.0,f +6921,100%,,1.0,f +13844,,Brazil,1.0,f +40424,100%,Guernsey,1.0,f +13408,91%,Indonesia,4.0,t +22570,,,2.0,f +22570,,,2.0,f +37784,100%,Finland,2.0,t +789,,Mexico,2.0,t +33118,,Russian Federation,1.0,t +13185,,Philippines,1.0,f +18465,,Korea,1.0,t +38163,100%,Venezuela,3.0,f +36756,,Indonesia,2.0,t +7496,,,1.0,f +49280,,Turkmenistan,1.0,f +48002,,Tonga,2.0,t +11082,100%,Maldives,1.0,t +6930,,Guernsey,1.0,t +49962,,Isle of Man,2.0,f +11715,,Costa Rica,5.0,f +20277,,Tonga,2.0,f +16738,100%,Jersey,2.0,t +36366,,Lebanon,2.0,t +12314,,,1.0,f +26987,,Chad,1.0,f +47601,,,1.0,f +17679,100%,Togo,1.0,f +29921,100%,Turkmenistan,1.0,t +39310,,Faroe Islands,2.0,f +16371,95%,Bouvet Island (Bouvetoya),29.0,f +23280,,Sao Tome and Principe,1.0,t +43171,,,1.0,t +28760,100%,Indonesia,1.0,t +14769,100%,Kiribati,4.0,t +50081,,,1.0,t +37132,,,1.0,f +36402,,Lebanon,2.0,f +16174,100%,,1.0,t +31873,99%,Uzbekistan,22.0,f +19780,100%,,3.0,f +33300,,Marshall Islands,1.0,f +20054,,,1.0,f +32222,,Gambia,4.0,f +1460,,,1.0,f +33383,100%,,1.0,f +35592,,,1.0,f +23701,,,1.0,f +29382,100%,Ghana,4.0,f +7999,100%,,1.0,t +40593,,Nauru,10.0,t +9586,100%,Guinea,2.0,t +9482,100%,Malta,2.0,t +50010,0%,Denmark,1.0,t +34878,,Guinea,1.0,t +15483,100%,,2.0,f +18751,100%,Sao Tome and Principe,1.0,t +44643,,Turkmenistan,1.0,t +41823,,Guinea,1.0,f +33018,100%,,1.0,f +46390,,Mauritania,1.0,f +40741,,Saint Helena,1.0,t +49297,,Togo,1.0,f +34979,100%,Anguilla,4.0,f +21011,,Russian Federation,1.0,f +42136,100%,Vanuatu,2.0,t +8714,100%,,2.0,f +30012,100%,,1.0,t +8714,100%,,2.0,f +27746,,Anguilla,3.0,f +45679,,Russian Federation,1.0,f +37646,100%,Estonia,60.0,f +13677,,Lebanon,1.0,t +44974,,Nicaragua,1.0,f +38331,,Guernsey,1.0,t +29349,,Tonga,1.0,t +456,,Cocos (Keeling) Islands,1.0,t +43369,,Faroe Islands,1.0,t +1059,,Nauru,1.0,f +29857,,Somalia,1.0,f +33865,,,1.0,f +39646,,Brazil,2.0,t +49792,10%,Gambia,1.0,f +34096,100%,Andorra,10.0,f +16859,100%,Slovakia (Slovak Republic),1.0,t +36569,,Turkmenistan,1.0,t +35133,100%,France,1.0,f +9195,,Suriname,1.0,f +1404,,,1.0,f +48999,100%,Somalia,1.0,f +33025,,Tonga,1.0,f +25150,,Marshall Islands,1.0,t +25929,,,1.0,t +46935,90%,Costa Rica,2.0,t +22261,,,1.0,f +17860,,,1.0,t +28931,,Canada,1.0,t +11292,,,1.0,t +6141,,Maldives,2.0,t +33888,,Sao Tome and Principe,1.0,f +18127,100%,Marshall Islands,1.0,f +24026,98%,Cape Verde,69.0,t +8921,,,1.0,t +40421,96%,Jersey,29.0,t +20536,100%,Marshall Islands,3.0,t +16362,0%,Palestinian Territory,2.0,f +8707,73%,Rwanda,21.0,t +8707,73%,Rwanda,21.0,t +545,,Uganda,1.0,f +8707,73%,Rwanda,21.0,t +23917,,Guinea,1.0,f +8707,73%,Rwanda,21.0,t +24026,98%,Cape Verde,69.0,t +8707,73%,Rwanda,21.0,t +29035,,Nicaragua,2.0,f +4610,,Bouvet Island (Bouvetoya),1.0,t +18651,,,1.0,t +3486,,,1.0,t +17129,100%,Isle of Man,1.0,t +5491,100%,Malawi,3.0,t +46941,,,1.0,f +27189,,Micronesia,2.0,t +500,,,2.0,t +5491,100%,Malawi,3.0,t +12289,,,1.0,t +49980,,Monaco,1.0,t +19832,100%,Cocos (Keeling) Islands,1.0,f +29095,,Jersey,1.0,f +1029,,Isle of Man,4.0,t +4123,,Andorra,2.0,f +29391,100%,Niger,1.0,t +15066,,Russian Federation,1.0,t +40598,,French Polynesia,1.0,t +3638,100%,Lithuania,1.0,t +34307,,,1.0,t +11843,,,1.0,f +31741,,Guinea,1.0,f +28775,,Turks and Caicos Islands,1.0,f +707,,El Salvador,1.0,f +31716,100%,Venezuela,4.0,f +22098,80%,Marshall Islands,2.0,t +24805,,China,2.0,t +18912,100%,Gibraltar,1.0,f +3758,100%,Zimbabwe,1.0,f +16772,,Niue,2.0,t +13558,,,1.0,t +33968,,,1.0,f +19596,,Nicaragua,1.0,f +12188,,Niger,2.0,f +48931,,Maldives,1.0,f +22181,,Kenya,2.0,t +12100,,Bouvet Island (Bouvetoya),1.0,t +3115,83%,Slovakia (Slovak Republic),17.0,t +33466,100%,Greenland,1.0,t +29647,100%,Peru,1305.0,f +3734,,Chad,1.0,t +22794,50%,Cape Verde,36.0,t +16513,100%,Gambia,2.0,t +45457,,,1.0,t +37009,80%,Lebanon,3.0,t +6207,,Mauritania,1.0,t +16148,100%,Svalbard & Jan Mayen Islands,1.0,f +3115,83%,Slovakia (Slovak Republic),17.0,t +28188,100%,Nicaragua,4.0,t +24026,98%,Cape Verde,69.0,t +44388,,,1.0,t +14003,,Chile,1.0,f +19944,100%,Kiribati,12.0,f +23623,100%,Montserrat,11.0,t +14828,,Kiribati,1.0,t +10802,,Chad,1.0,t +35517,,Guinea,1.0,f +38916,,Uzbekistan,1.0,f +20656,,Bouvet Island (Bouvetoya),1.0,t +28366,,,1.0,t +6064,,Lebanon,1.0,t +20660,,Russian Federation,1.0,t +10639,100%,Mauritania,1.0,f +44695,,,1.0,t +9818,100%,,1.0,f +32976,,Turkmenistan,1.0,t +10629,,,1.0,t +18786,,Russian Federation,1.0,t +3606,,,1.0,f +36851,,Uganda,1.0,f +46503,,,1.0,t +37204,100%,,1.0,t +48482,,Chad,1.0,t +12323,,Sao Tome and Principe,1.0,t +11825,,Rwanda,3.0,f +11825,,Rwanda,3.0,f +16230,100%,Cuba,1.0,f +14765,,Russian Federation,1.0,t +48268,67%,Isle of Man,1.0,t +46038,,Vanuatu,1.0,t +38163,100%,Venezuela,3.0,f +19923,100%,,1.0,t +35613,,Svalbard & Jan Mayen Islands,1.0,f +25566,100%,Puerto Rico,1.0,t +34078,,Tanzania,1.0,t +39808,100%,,1.0,t +34137,,,1.0,f +36545,,Mexico,1.0,t +2453,100%,Uzbekistan,1.0,t +39870,,Slovakia (Slovak Republic),21.0,t +46463,,Cocos (Keeling) Islands,1.0,f +24289,,Costa Rica,1.0,f +35996,100%,Nauru,1.0,f +30326,,,1.0,t +2156,,,1.0,f +32301,100%,Saint Helena,1.0,t +2130,100%,Tonga,2.0,t +28138,,Mauritania,1.0,f +29440,,,1.0,t +44838,,Tonga,1.0,f +33093,,El Salvador,1.0,t +14580,,El Salvador,1.0,t +42405,67%,Indonesia,3.0,f +24101,71%,,2.0,f +24101,71%,,2.0,f +42419,,Bosnia and Herzegovina,1.0,f +15026,,Russian Federation,1.0,t +36006,100%,,2.0,f +20904,,Uzbekistan,1.0,t +25057,100%,,1.0,f +952,,Grenada,2.0,f +3438,100%,Estonia,2.0,t +3423,,Nauru,3.0,f +10485,100%,Togo,2.0,t +16929,100%,,1.0,t +30191,,,1.0,f +42250,100%,,2.0,t +19944,100%,Kiribati,12.0,f +21079,50%,Costa Rica,1.0,t +28753,100%,Lithuania,1.0,f +39771,100%,,8.0,f +43694,,,1.0,f +19601,100%,,1.0,t +49690,,China,1.0,f +28566,78%,Slovakia (Slovak Republic),79.0,t +7961,,,1.0,t +33179,100%,Rwanda,13.0,f +600,100%,Canada,1.0,t +25216,,France,2.0,t +31430,,Niger,1.0,f +27840,,Lithuania,1.0,t +32257,100%,Russian Federation,2.0,t +16371,95%,Bouvet Island (Bouvetoya),29.0,f +12734,100%,Malta,3.0,t +24026,98%,Cape Verde,69.0,t +3115,83%,Slovakia (Slovak Republic),17.0,t +44617,,,1.0,f +11814,100%,Micronesia,7.0,t +36573,,Sao Tome and Principe,1.0,f +25145,100%,Slovenia,1.0,t +34476,,Lebanon,1.0,f +17622,100%,Congo,2.0,t +26113,,Costa Rica,1.0,t +28617,100%,,1.0,t +32597,100%,,1.0,t +24177,,Venezuela,4.0,t +42541,,,1.0,t +16787,100%,Niue,2.0,f +36366,,Lebanon,2.0,t +18780,,Senegal,1.0,t +43452,,Guinea,1.0,f +10254,,Russian Federation,1.0,f +18621,,Marshall Islands,1.0,t +19958,100%,Congo,40.0,t +38126,100%,Guinea,2.0,f +30176,,Sao Tome and Principe,2.0,t +28945,,Kiribati,2.0,f +34879,,Afghanistan,1.0,f +24262,,Somalia,1.0,f +28680,,,1.0,f +47429,,,1.0,t +33720,100%,,2.0,f +21059,89%,,1.0,t +13742,90%,El Salvador,5.0,t +24652,80%,,2.0,f +28742,,,1.0,f +14250,,Marshall Islands,3.0,t +4820,100%,Lithuania,2.0,t +38750,,Russian Federation,1.0,t +5433,,Cape Verde,4.0,t +19958,100%,Congo,40.0,t +26204,,Guinea,1.0,f +30753,100%,Anguilla,2.0,t +34900,,,1.0,f +15944,100%,Vietnam,2.0,t +28600,100%,,1.0,t +186,100%,Chile,1.0,t +28819,92%,Montserrat,3.0,t +23005,100%,Anguilla,1.0,f +25550,100%,Nicaragua,8.0,t +31968,100%,Jersey,1.0,t +14475,,China,1.0,f +29311,,Venezuela,1.0,t +19581,100%,Russian Federation,1.0,f +29358,,French Guiana,1.0,t +40470,100%,Uganda,1.0,f +19554,,Lebanon,2.0,f +16181,100%,Tanzania,2.0,f +16125,,,2.0,t +19215,,,1.0,f +1669,100%,,1.0,f +25237,,Zimbabwe,1.0,t +41592,100%,Svalbard & Jan Mayen Islands,1.0,f +43670,,Monaco,2.0,f +24303,100%,Gambia,1.0,f +15139,,,1.0,f +5321,0%,Russian Federation,1.0,f +18967,100%,,1.0,t +1753,,,1.0,t +4814,,Russian Federation,1.0,t +41345,100%,Anguilla,1.0,t +26363,,,1.0,f +30510,,Russian Federation,1.0,f +43495,,Niue,1.0,f +38357,0%,,1.0,t +34435,,,1.0,t +44542,100%,Brazil,2.0,f +9639,,,1.0,f +45032,,Guinea,1.0,f +24705,,Sao Tome and Principe,1.0,t +29647,100%,Peru,1305.0,f +5762,,,1.0,t +19498,,Mexico,1.0,t +49398,88%,Barbados,18.0,t +29647,100%,Peru,1305.0,f +29219,,Senegal,1.0,f +29647,100%,Peru,1305.0,f +38126,100%,Guinea,2.0,f +17419,,Kiribati,1.0,f +39564,,,1.0,t +18484,100%,Gambia,108.0,f +43533,100%,,3.0,t +29647,100%,Peru,1305.0,f +28752,,Kenya,1.0,t +25496,,Barbados,1.0,f +44957,100%,Uzbekistan,8.0,t +49922,100%,Portugal,3.0,f +44957,100%,Uzbekistan,8.0,t +715,,,1.0,f +25836,,Tonga,2.0,t +19294,50%,Lebanon,2.0,f +10227,,,1.0,f +23349,,El Salvador,1.0,f +29736,100%,,1.0,t +11909,100%,Chile,1.0,t +224,100%,,1.0,t +28883,100%,,1.0,t +26420,,,1.0,f +30515,,Gibraltar,1.0,f +22951,,,1.0,t +47414,,Bosnia and Herzegovina,1.0,t +22022,,Bouvet Island (Bouvetoya),1.0,f +14111,,Palestinian Territory,1.0,t +30637,,,1.0,f +31197,,Kiribati,1.0,f +14343,100%,Bouvet Island (Bouvetoya),2.0,f +35111,,,1.0,t +25978,100%,France,1.0,f +30940,100%,Marshall Islands,2.0,t +39771,100%,,8.0,f +31329,,Christmas Island,2.0,t +47762,,Tonga,2.0,t +39771,100%,,8.0,f +39771,100%,,8.0,f +19575,100%,Nicaragua,1.0,t +39771,100%,,8.0,f +39771,100%,,8.0,f +39771,100%,,8.0,f +49157,,Uzbekistan,1.0,t +44469,,Niue,1.0,f +29807,100%,Brazil,2.0,t +32040,,,1.0,t +47473,100%,,1.0,t +29647,100%,Peru,1305.0,f +24016,100%,Bosnia and Herzegovina,29.0,f +27201,,,1.0,f +23783,100%,Nicaragua,1.0,t +49792,10%,Gambia,1.0,f +43057,100%,Niue,1.0,t +14159,,Cocos (Keeling) Islands,1.0,f +1733,,Maldives,1.0,t +6769,,Svalbard & Jan Mayen Islands,1.0,t +48761,,,1.0,f +18829,100%,Indonesia,4.0,t +33366,100%,Puerto Rico,1.0,f +36253,100%,Nauru,21.0,t +36253,100%,Nauru,21.0,t +36253,100%,Nauru,21.0,t +373,100%,Nicaragua,2.0,t +25626,100%,Canada,2.0,f +373,100%,Nicaragua,2.0,t +47681,,Ecuador,1.0,t +7350,,,2.0,t +14536,13%,Netherlands,1.0,f +32864,,Cape Verde,1.0,f +2920,100%,Togo,1.0,f +7813,,,1.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +20415,,Turks and Caicos Islands,1.0,t +7762,,,1.0,f +29647,100%,Peru,1305.0,f +7155,,,1.0,t +25013,,Tonga,1.0,t +39876,100%,Cuba,3.0,f +47762,,Tonga,2.0,t +19973,,Guinea,1.0,f +43152,100%,Nicaragua,82.0,t +49769,,El Salvador,1.0,t +37594,100%,Russian Federation,1.0,f +30803,,Tonga,1.0,t +22331,99%,Rwanda,50.0,t +30098,100%,Croatia,1.0,t +33021,,,1.0,t +27790,,,1.0,f +4074,50%,Isle of Man,17.0,f +17601,,France,2.0,f +4074,50%,Isle of Man,17.0,f +43204,100%,,1.0,f +43914,100%,,3.0,t +4229,,Lebanon,1.0,f +7505,,,1.0,t +48854,,Kiribati,3.0,f +49015,,Lebanon,1.0,t +38458,100%,Montserrat,6.0,t +46405,100%,Vietnam,8.0,t +39126,100%,Guinea,9.0,f +33742,100%,Montserrat,1.0,f +36641,100%,Vietnam,5.0,f +43195,90%,Wallis and Futuna,2.0,f +2034,,Lithuania,2.0,t +43652,,Nicaragua,1.0,t +19943,63%,Isle of Man,34.0,f +10602,100%,Niger,1.0,t +29647,100%,Peru,1305.0,f +66,100%,French Guiana,1.0,t +8953,90%,Micronesia,7.0,t +12605,,Russian Federation,1.0,t +38458,100%,Montserrat,6.0,t +18683,,Finland,1.0,t +17428,,Sao Tome and Principe,1.0,f +18712,95%,Turks and Caicos Islands,11.0,t +19138,,Russian Federation,1.0,f +39473,100%,Rwanda,1.0,t +11872,,,13.0,f +27814,100%,Barbados,2.0,t +15221,,,1.0,f +12715,100%,Estonia,29.0,f +23222,,,1.0,t +32883,,French Polynesia,1.0,f +25931,100%,,1.0,t +21533,100%,Uganda,1.0,t +23765,,,1.0,f +1151,100%,Jersey,1.0,t +18799,,Tanzania,1.0,f +46307,100%,Zimbabwe,3.0,f +41993,100%,Gambia,3.0,t +41993,100%,Gambia,3.0,t +20510,75%,Marshall Islands,1.0,t +49048,100%,Russian Federation,1.0,t +27675,,Rwanda,1.0,t +35490,,,1.0,f +995,83%,Malta,2.0,f +14027,100%,Gambia,3.0,f +27036,100%,Marshall Islands,1.0,t +46603,,,1.0,f +32865,,Svalbard & Jan Mayen Islands,1.0,f +23943,100%,Nicaragua,2.0,t +6209,80%,Nicaragua,9.0,t +21619,,,1.0,t +20651,,Sao Tome and Principe,2.0,f +6849,,,1.0,f +4432,100%,Wallis and Futuna,18.0,f +4432,100%,Wallis and Futuna,18.0,f +45223,0%,Vanuatu,1.0,f +45722,100%,,1.0,t +4432,100%,Wallis and Futuna,18.0,f +4432,100%,Wallis and Futuna,18.0,f +35359,,,1.0,t +9255,,Vietnam,10.0,f +37329,,Mauritania,1.0,t +14044,,Chad,2.0,f +42462,100%,,1.0,t +35149,100%,,1.0,t +42975,,Philippines,1.0,f +12056,,Turkmenistan,1.0,t +23028,100%,,1.0,t +25367,,Sao Tome and Principe,1.0,t +2170,100%,,2.0,t +27998,100%,Rwanda,1.0,f +44252,100%,,2.0,t +34028,100%,Brazil,2.0,t +42642,,,1.0,f +32416,100%,,1.0,t +1102,,United Kingdom,2.0,t +22341,,Micronesia,1.0,f +14715,,Rwanda,1.0,f +49597,,Bahrain,1.0,t +1798,,Faroe Islands,2.0,t +36070,,,1.0,f +8239,,Chad,1.0,f +36049,,Isle of Man,3.0,f +27611,,Brazil,1.0,f +35556,,,1.0,t +25514,100%,,3.0,t +28945,,Kiribati,2.0,f +37827,,Chile,2.0,t +45136,,,1.0,t +48536,100%,,1.0,f +32158,,Faroe Islands,1.0,f +37454,100%,,2.0,f +4041,,Russian Federation,1.0,f +48314,,French Guiana,1.0,t +24676,,Guinea,1.0,f +43142,100%,Uzbekistan,3.0,t +2053,,,1.0,t +1661,100%,Guinea,1.0,t +46511,100%,Holy See (Vatican City State),2.0,f +11310,100%,Congo,4.0,t +37317,,Isle of Man,1.0,f +19750,,Niger,1.0,f +31954,,Niue,1.0,f +3254,,Tonga,16.0,t +3254,,Tonga,16.0,t +49575,,Estonia,1.0,f +6284,,,1.0,f +5272,100%,Mexico,1.0,t +4432,100%,Wallis and Futuna,18.0,f +4432,100%,Wallis and Futuna,18.0,f +4432,100%,Wallis and Futuna,18.0,f +37142,,,1.0,t +43476,100%,Gibraltar,2.0,t +43476,100%,Gibraltar,2.0,t +1350,,,1.0,t +18419,100%,,7.0,t +47284,25%,,1.0,f +19686,,Lebanon,1.0,t +39735,,Zimbabwe,2.0,t +47422,99%,Uzbekistan,30.0,f +33145,,,1.0,f +28116,,Papua New Guinea,2.0,f +48522,,,1.0,f +31997,,Kiribati,2.0,t +34182,100%,Bahrain,1.0,f +21892,100%,Micronesia,1.0,f +13221,0%,Faroe Islands,2.0,f +13221,0%,Faroe Islands,2.0,f +23632,,,1.0,f +36063,,Tonga,1.0,t +41095,100%,Monaco,1.0,f +16209,80%,Ecuador,3.0,f +7380,,Sao Tome and Principe,1.0,f +34955,43%,Russian Federation,1.0,t +32638,,Niue,1.0,f +34779,,Canada,1.0,f +41797,,,2.0,t +41797,,,2.0,t +29855,,,1.0,t +8465,,Kiribati,1.0,f +31744,100%,Afghanistan,1.0,t +20102,100%,,1.0,t +25598,100%,,1.0,f +9317,,,2.0,t +947,,Nicaragua,1.0,t +4032,80%,,1.0,t +23876,,Malta,3.0,t +23876,,Malta,3.0,t +6683,0%,Mauritania,1.0,t +8337,,,1.0,t +44989,100%,Mauritania,8.0,t +26780,100%,Guinea,7.0,f +41677,0%,,1.0,t +40071,,French Guiana,1.0,t +14649,,Djibouti,1.0,f +19091,95%,Cook Islands,18.0,t +22297,100%,Guernsey,1.0,t +612,,,1.0,t +12358,,Lebanon,1.0,t +45306,89%,Rwanda,7.0,t +19650,,Slovakia (Slovak Republic),1.0,f +281,,Chad,1.0,f +17601,,France,2.0,f +36114,100%,Guinea,4.0,t +14428,,,1.0,t +14104,100%,France,1.0,f +3820,,,1.0,f +45110,,Nicaragua,1.0,f +16952,,Sao Tome and Principe,1.0,t +34082,100%,,1.0,f +5871,,Tonga,1.0,t +11057,100%,,1.0,t +13798,100%,France,2.0,t +17006,,,2.0,t +31855,100%,Kenya,2.0,t +20127,,France,1.0,f +39956,,Monaco,2.0,t +36161,,China,1.0,f +20897,0%,Mauritania,1.0,t +17471,,,1.0,t +45079,75%,Tonga,1.0,t +3681,100%,Rwanda,1.0,f +29810,,,1.0,t +45198,,Sao Tome and Principe,1.0,t +16089,83%,Maldives,5.0,f +10250,,Afghanistan,1.0,t +14292,,Rwanda,1.0,t +8847,,Anguilla,1.0,t +35052,100%,Marshall Islands,1.0,t +24917,100%,Uganda,11.0,t +11464,100%,Papua New Guinea,11.0,f +16706,100%,France,1.0,t +4971,,Niger,1.0,f +24016,100%,Bosnia and Herzegovina,29.0,f +16239,,Sao Tome and Principe,1.0,t +31266,75%,Nauru,2.0,t +21055,100%,,2.0,t +26498,100%,Russian Federation,3.0,f +38407,100%,Guernsey,2.0,t +47178,,Chile,1.0,f +24561,,Ghana,1.0,f +30204,,Guernsey,1.0,t +17340,,Tonga,1.0,t +25647,,,2.0,t +3306,,Lebanon,1.0,t +31854,100%,,2.0,f +15962,,Maldives,1.0,t +5403,,,1.0,f +3169,,,1.0,f +790,100%,Monaco,1.0,t +30711,,Micronesia,1.0,f +223,,Russian Federation,1.0,t +5329,,Palestinian Territory,1.0,f +20696,100%,,1.0,f +28116,,Papua New Guinea,2.0,f +21002,,Croatia,1.0,f +48218,100%,Lebanon,1.0,t +6928,,,3.0,t +13528,100%,Kiribati,2.0,f +36253,100%,Nauru,21.0,t +36253,100%,Nauru,21.0,t +46511,100%,Holy See (Vatican City State),2.0,f +26159,100%,Turkmenistan,1.0,t +48055,,Philippines,1.0,f +49454,,Uzbekistan,2.0,t +20460,,,1.0,t +3768,,,1.0,f +39905,100%,Bosnia and Herzegovina,3.0,f +37946,,Malta,1.0,f +2170,100%,,2.0,t +46379,100%,,2.0,f +14461,,Uganda,1.0,f +33530,,,1.0,f +10141,,,1.0,f +18885,70%,El Salvador,7.0,t +12812,99%,Croatia,32.0,f +28304,100%,,1.0,t +37950,,Anguilla,1.0,t +23898,,Isle of Man,1.0,f +28202,100%,,2.0,t +32431,,Russian Federation,1.0,t +7631,50%,Croatia,1.0,f +32044,70%,,3.0,f +31451,,Turks and Caicos Islands,4.0,f +43806,,Brunei Darussalam,1.0,t +42093,100%,Micronesia,2.0,f +48746,100%,Uganda,5.0,f +570,100%,Niue,1.0,t +35876,,Suriname,1.0,f +31030,,Tunisia,2.0,f +9278,100%,Netherlands,10.0,f +6617,60%,,1.0,t +41458,,Wallis and Futuna,1.0,t +7096,100%,Niue,4.0,t +25887,,Uzbekistan,1.0,t +14464,,Lebanon,2.0,f +16354,100%,Hong Kong,4.0,f +2126,,Venezuela,1.0,f +26498,100%,Russian Federation,3.0,f +10849,,,1.0,f +18502,,Lebanon,1.0,t +46660,,China,1.0,t +37521,,Uganda,1.0,t +1827,100%,Uzbekistan,3.0,t +41993,100%,Gambia,3.0,t +42386,100%,Ecuador,6.0,t +12320,100%,Bosnia and Herzegovina,20.0,f +40674,100%,Maldives,3.0,f +45708,75%,French Guiana,1.0,t +46187,100%,Gibraltar,2.0,f +3476,100%,Wallis and Futuna,1.0,f +40674,100%,Maldives,3.0,f +14499,,Monaco,3.0,f +41324,89%,Slovakia (Slovak Republic),2.0,t +22530,100%,Uzbekistan,3.0,f +22177,100%,,1.0,t +42808,,Mexico,1.0,f +134,,,1.0,t +12853,,Rwanda,4.0,t +2143,,France,2.0,t +35726,100%,,1.0,t +31481,,France,1.0,f +25275,100%,Micronesia,1.0,t +33035,,Gibraltar,1.0,t +34855,,,1.0,t +47580,90%,Micronesia,2.0,t +12768,,Faroe Islands,1.0,f +20477,,Micronesia,1.0,t +48150,100%,,2.0,t +22890,100%,Niue,1.0,t +40218,100%,Estonia,6.0,f +14429,,France,1.0,t +37391,,,1.0,f +5454,,Zimbabwe,1.0,f +3608,90%,Somalia,1.0,f +22003,100%,Sao Tome and Principe,1.0,t +14394,70%,,2.0,t +31451,,Turks and Caicos Islands,4.0,f +47628,100%,El Salvador,2.0,t +35079,100%,,1.0,t +11263,,,1.0,f +31451,,Turks and Caicos Islands,4.0,f +23653,,,1.0,f +1273,100%,Lithuania,3.0,f +40938,,Tunisia,1.0,t +29639,100%,,1.0,t +40415,,Monaco,1.0,f +14178,,France,1.0,t +29234,100%,Togo,9.0,t +8980,,Mauritania,1.0,t +10569,,,1.0,t +13098,100%,Maldives,1.0,f +16632,100%,Kiribati,1.0,t +29741,,Turkmenistan,1.0,f +12180,100%,Kenya,2.0,t +49053,94%,Indonesia,4.0,t +41313,100%,Denmark,10.0,t +49774,,Russian Federation,1.0,t +8532,,United Kingdom,1.0,f +38260,,Russian Federation,1.0,t +7272,,Jersey,1.0,f +39821,,,1.0,t +4432,100%,Wallis and Futuna,18.0,f +29323,100%,Guinea,3.0,f +16408,,Zimbabwe,1.0,t +10428,,Isle of Man,3.0,f +21494,,Christmas Island,1.0,f +33092,,Andorra,1.0,t +1568,,Costa Rica,1.0,t +37454,100%,,2.0,f +12895,,Bosnia and Herzegovina,1.0,f +29323,100%,Guinea,3.0,f +997,,Niger,1.0,t +45573,,Cocos (Keeling) Islands,1.0,f +17186,,China,2.0,f +49922,100%,Portugal,3.0,f +29323,100%,Guinea,3.0,f +20387,100%,Malta,12.0,t +29250,,,1.0,f +23593,,,1.0,t +7437,,Niue,1.0,t +1606,,Sao Tome and Principe,1.0,t +45686,,Marshall Islands,1.0,t +4848,,Croatia,1.0,f +21762,67%,Isle of Man,1.0,f +39844,89%,Lebanon,2.0,t +2608,100%,Bahrain,4.0,t +6179,,Faroe Islands,1.0,f +2608,100%,Bahrain,4.0,t +2608,100%,Bahrain,4.0,t +25413,,Svalbard & Jan Mayen Islands,1.0,t +45920,100%,Pakistan,1.0,t +23825,,Chad,1.0,f +12812,99%,Croatia,32.0,f +28120,90%,,1.0,t +12553,,,1.0,f +23022,67%,Niue,10.0,t +24007,100%,Uganda,4.0,t +19943,63%,Isle of Man,34.0,f +12986,,Uzbekistan,1.0,t +46001,,French Guiana,1.0,t +30946,,Denmark,1.0,f +37962,100%,Gibraltar,1.0,t +174,100%,Denmark,1.0,f +22812,,Chile,1.0,t +22968,100%,Micronesia,1.0,t +23932,69%,Montserrat,6.0,f +6086,100%,El Salvador,1.0,t +32911,,China,1.0,t +27364,,Zimbabwe,1.0,t +9231,,Palestinian Territory,1.0,t +1250,,Mauritania,1.0,f +29497,100%,,1.0,f +16160,,,4.0,t +30561,,Reunion,1.0,f +48455,89%,Uzbekistan,20.0,t +7972,100%,Uzbekistan,2.0,t +26508,,French Guiana,1.0,f +18627,,Cuba,1.0,t +48008,,,1.0,t +20650,100%,Uzbekistan,3.0,t +41741,100%,Brazil,9.0,t +6368,,,1.0,f +11768,,,1.0,t +26609,,Bahrain,1.0,f +38783,,,1.0,t +3571,100%,Bouvet Island (Bouvetoya),3.0,t +33814,,Faroe Islands,9.0,f +4432,100%,Wallis and Futuna,18.0,f +26736,,Tonga,1.0,t +1287,,Canada,1.0,t +32267,100%,,1.0,t +19944,100%,Kiribati,12.0,f +7459,,,1.0,t +49151,90%,,2.0,f +37646,100%,Estonia,60.0,f +14100,,,1.0,f +37646,100%,Estonia,60.0,f +49177,,Anguilla,2.0,t +29176,,,1.0,f +18469,,,1.0,t +38007,,Micronesia,2.0,f +39339,,Guernsey,1.0,t +4156,,,1.0,f +38664,,Nicaragua,1.0,f +29470,100%,Slovakia (Slovak Republic),2.0,f +18583,,French Guiana,1.0,t +42390,100%,Wallis and Futuna,96.0,t +37405,,Bosnia and Herzegovina,2.0,f +22344,,Niue,1.0,f +43809,,Niue,1.0,t +20334,99%,Niger,171.0,t +19678,90%,Cocos (Keeling) Islands,1.0,t +49572,,Lebanon,2.0,f +36895,,Jersey,1.0,f +20334,99%,Niger,171.0,t +20334,99%,Niger,171.0,t +31610,90%,Kiribati,1.0,f +31030,,Tunisia,2.0,f +42390,100%,Wallis and Futuna,96.0,t +11567,100%,Niger,31.0,t +25210,,Russian Federation,2.0,f +42914,100%,Cocos (Keeling) Islands,2.0,f +42390,100%,Wallis and Futuna,96.0,t +4058,,Isle of Man,1.0,t +3203,100%,Uzbekistan,8.0,f +3203,100%,Uzbekistan,8.0,f +13846,,Grenada,1.0,f +3203,100%,Uzbekistan,8.0,f +16236,,Kenya,2.0,f +45132,90%,Cook Islands,3.0,t +48538,,,1.0,t +17844,100%,,3.0,t +9255,,Vietnam,10.0,f +7937,100%,Senegal,2.0,t +4155,,Philippines,1.0,t +3616,100%,Cape Verde,14.0,t +2477,,Faroe Islands,2.0,t +41154,,,1.0,f +8352,0%,,1.0,f +39844,89%,Lebanon,2.0,t +28790,,Gambia,2.0,f +40155,100%,Tonga,4.0,f +45358,100%,Micronesia,3.0,t +26103,100%,,1.0,t +38354,100%,Niue,3.0,f +9546,,,1.0,f +42390,100%,Wallis and Futuna,96.0,t +7710,100%,French Guiana,1.0,t +47418,100%,Sao Tome and Principe,1.0,f +19748,100%,Maldives,3.0,f +47738,100%,,1.0,f +36278,100%,Central African Republic,2.0,f +50074,100%,Montserrat,8.0,f +27648,50%,,1.0,t +10106,,,1.0,f +15178,,United Kingdom,1.0,f +21476,100%,,1.0,t +37265,,Niue,2.0,t +9667,,Gibraltar,1.0,f +21517,100%,Malta,2.0,t +3862,,,2.0,t +38528,,Mauritania,2.0,t +38528,,Mauritania,2.0,t +4398,,Faroe Islands,1.0,f +24017,,,1.0,f +9853,,France,1.0,f +13360,100%,,1.0,f +28398,100%,El Salvador,7.0,t +8461,88%,Guinea,1.0,f +43696,,Bouvet Island (Bouvetoya),1.0,f +34402,79%,Reunion,28.0,f +22331,99%,Rwanda,50.0,t +43477,,Russian Federation,1.0,t +46506,,,1.0,t +31679,,,1.0,t +14184,,France,1.0,f +39263,100%,Rwanda,2.0,t +47530,,,1.0,t +45195,100%,,2.0,f +12419,,Turkmenistan,1.0,t +26769,,Philippines,2.0,t +4400,,Reunion,1.0,t +42424,100%,Congo,3.0,t +21362,,Isle of Man,1.0,t +11081,,Faroe Islands,2.0,f +45506,,Gambia,2.0,t +35195,,Faroe Islands,4.0,t +12475,100%,,1.0,t +35820,100%,Turkmenistan,2.0,t +21256,,Russian Federation,1.0,t +45506,,Gambia,2.0,t +33591,,Reunion,1.0,f +37218,100%,Slovakia (Slovak Republic),4.0,t +4246,100%,Gibraltar,2.0,t +16371,95%,Bouvet Island (Bouvetoya),29.0,f +11906,,Guinea,1.0,f +22958,,,1.0,t +9004,,,1.0,f +20088,,Monaco,2.0,f +21905,,Uzbekistan,2.0,t +20088,,Monaco,2.0,f +31825,,,1.0,f +25387,90%,,1.0,t +12360,,Gambia,1.0,f +9170,100%,,1.0,t +37698,,Kenya,2.0,f +492,100%,Gibraltar,1.0,t +15105,,,1.0,f +4809,,Anguilla,1.0,f +27199,88%,Turkmenistan,2.0,f +40265,,,2.0,f +12153,,Uruguay,1.0,t +34036,,Turks and Caicos Islands,1.0,t +37405,,Bosnia and Herzegovina,2.0,f +24908,,,1.0,t +37261,,Faroe Islands,1.0,f +12457,,Turks and Caicos Islands,1.0,f +40265,,,2.0,f +30938,100%,,1.0,f +49598,,Switzerland,4.0,t +20034,,Estonia,2.0,t +47054,,Brunei Darussalam,6.0,f +43861,,,1.0,t +45613,100%,,1.0,t +20655,,,1.0,f +41324,89%,Slovakia (Slovak Republic),2.0,t +29624,100%,,1.0,t +41904,67%,Uzbekistan,5.0,t +36234,97%,Fiji,12.0,t +43223,,Malta,2.0,f +38746,99%,Vietnam,13.0,f +24016,100%,Bosnia and Herzegovina,29.0,f +44536,29%,,1.0,t +13816,,Lebanon,1.0,f +1817,,Lithuania,1.0,f +47693,,Bosnia and Herzegovina,2.0,t +45547,100%,,2.0,f +7096,100%,Niue,4.0,t +28828,100%,Isle of Man,198.0,t +49492,100%,Jersey,1.0,t +22565,90%,Guinea,2.0,t +8707,73%,Rwanda,21.0,t +44853,100%,Lebanon,2.0,f +19947,100%,Gambia,2.0,t +41428,100%,,1.0,f +15460,100%,Monaco,1.0,t +12170,100%,,1.0,t +49748,100%,Bosnia and Herzegovina,1.0,t +43023,,Maldives,1.0,t +12150,,Croatia,1.0,f +37529,,Tonga,1.0,f +5111,90%,,1.0,t +37191,100%,Guinea,3.0,t +1693,100%,Russian Federation,1.0,f +11086,,Philippines,1.0,t +25620,,Bosnia and Herzegovina,1.0,f +37191,100%,Guinea,3.0,t +41441,75%,Nauru,2.0,t +24811,100%,Russian Federation,2.0,t +39080,100%,Russian Federation,1.0,t +33557,90%,Netherlands,2.0,t +33612,100%,Marshall Islands,1.0,t +21603,,Mauritania,1.0,t +26321,100%,Faroe Islands,2.0,t +13456,,Nauru,2.0,t +32230,,Zimbabwe,1.0,t +24668,,Sao Tome and Principe,1.0,f +29251,,Sao Tome and Principe,1.0,f +3625,90%,Marshall Islands,2.0,t +3541,,Gibraltar,1.0,f +26187,,,1.0,t +31643,,France,1.0,f +31410,,Togo,1.0,t +24268,,Greenland,5.0,f +34118,100%,Micronesia,2.0,t +8042,100%,Micronesia,1.0,t +39213,,Tonga,1.0,t +34924,100%,Sao Tome and Principe,1.0,t +48706,,Monaco,1.0,t +12338,,,1.0,f +30530,100%,Jersey,1.0,t +6536,100%,Malta,3.0,t +34329,,,1.0,t +10406,,Mauritania,1.0,t +21604,40%,,1.0,t +20165,94%,Ukraine,30.0,f +27119,94%,Nicaragua,10.0,t +17950,,,1.0,t +36267,,,1.0,t +9036,,,1.0,t +354,100%,,2.0,t +31997,,Kiribati,2.0,t +13456,,Nauru,2.0,t +39802,,El Salvador,1.0,f +45290,,,1.0,f +34490,,Turkmenistan,1.0,t +37732,,,1.0,f +28492,,,1.0,f +15261,,,1.0,f +30979,100%,,1.0,t +23986,100%,,1.0,f +5876,,,1.0,f +28328,100%,,1.0,t +28828,100%,Isle of Man,198.0,t +41660,,Isle of Man,1.0,f +7829,100%,,2.0,t +16371,95%,Bouvet Island (Bouvetoya),29.0,f +21862,100%,Chad,1.0,f +19091,95%,Cook Islands,18.0,t +25207,100%,,9.0,t +11930,100%,Russian Federation,1.0,t +25780,100%,United Kingdom,2.0,t +17578,,Vietnam,2.0,t +48027,,,1.0,t +2766,100%,United Kingdom,4.0,f +8238,91%,Barbados,15.0,t +40439,,Gibraltar,1.0,t +29402,50%,Canada,1.0,f +10488,100%,Niger,17.0,t +30723,,Bouvet Island (Bouvetoya),1.0,f +15076,,Niue,1.0,t +28828,100%,Isle of Man,198.0,t +35333,100%,,1.0,t +35618,,Chad,1.0,f +23821,,Maldives,2.0,t +46289,100%,Bouvet Island (Bouvetoya),5.0,f +5637,,,1.0,t +19114,,French Guiana,1.0,t +3391,100%,Iran,58.0,t +33045,,Bahrain,1.0,f +42027,,Isle of Man,1.0,f +4165,100%,Niue,2.0,t +33536,,,1.0,f +25216,,France,2.0,t +35515,,Christmas Island,2.0,t +33780,,Guinea,1.0,f +31831,100%,,2.0,t +25965,,Russian Federation,1.0,f +17091,,Guernsey,1.0,f +42051,100%,Nicaragua,11.0,t +42051,100%,Nicaragua,11.0,t +43221,,,1.0,f +45306,89%,Rwanda,7.0,t +20060,,Guernsey,5.0,t +45197,,Christmas Island,1.0,f +34402,79%,Reunion,28.0,f +8756,,Maldives,1.0,t +37535,,,1.0,f +20341,,,1.0,f +26275,,Montserrat,1.0,f +4074,50%,Isle of Man,17.0,f +15755,100%,Tonga,2.0,t +39434,90%,Monaco,1.0,f +23209,100%,Peru,1.0,f +41533,,Bouvet Island (Bouvetoya),1.0,f +11305,,,23.0,f +11305,,,23.0,f +17186,,China,2.0,f +34101,,Afghanistan,1.0,t +27688,,Rwanda,1.0,f +16939,,Senegal,11.0,t +23265,70%,,2.0,f +4531,,Lithuania,1.0,t +49702,100%,Faroe Islands,1.0,t +13888,100%,Lebanon,2.0,t +29292,100%,Malta,3.0,t +48556,100%,Zimbabwe,1.0,f +14514,,China,80.0,t +9916,100%,Niger,4.0,f +17857,100%,Denmark,2.0,f +9944,100%,Nicaragua,1.0,t +2660,,Uzbekistan,2.0,f +15841,100%,Faroe Islands,2.0,t +9916,100%,Niger,4.0,f +32274,,,1.0,f +10834,,,1.0,f +21879,,Sao Tome and Principe,1.0,f +22959,100%,Niue,1.0,t +34484,,Isle of Man,1.0,f +13817,,,1.0,f +27768,65%,Kiribati,15.0,t +624,100%,Barbados,4.0,f +46875,100%,,1.0,t +18048,,Micronesia,1.0,f +1370,100%,Isle of Man,1.0,t +8838,100%,Zimbabwe,1.0,f +29789,,,1.0,f +32189,100%,Marshall Islands,1.0,t +40633,100%,Guinea,2.0,t +27299,,,1.0,t +21116,,,1.0,f +50012,,Mauritania,1.0,t +12189,,Mauritania,1.0,f +12082,100%,,3.0,t +29647,100%,Peru,1305.0,f +42390,100%,Wallis and Futuna,96.0,t +28082,100%,Turkmenistan,2.0,t +18717,100%,,1.0,t +19966,,Svalbard & Jan Mayen Islands,1.0,f +42390,100%,Wallis and Futuna,96.0,t +40421,96%,Jersey,29.0,t +37525,100%,,2.0,f +37583,,Svalbard & Jan Mayen Islands,2.0,t +42390,100%,Wallis and Futuna,96.0,t +42390,100%,Wallis and Futuna,96.0,t +18642,,Chad,1.0,t +42390,100%,Wallis and Futuna,96.0,t +42390,100%,Wallis and Futuna,96.0,t +42390,100%,Wallis and Futuna,96.0,t +25575,,Costa Rica,1.0,t +42390,100%,Wallis and Futuna,96.0,t +27896,100%,Marshall Islands,2.0,t +44735,100%,,1.0,t +2705,,Maldives,1.0,t +12137,99%,Sao Tome and Principe,33.0,t +6904,100%,,1.0,t +28425,100%,Guinea,3.0,t +39337,,Anguilla,1.0,t +36563,,Rwanda,2.0,f +17773,100%,Anguilla,2.0,t +30667,,,1.0,f +43453,,United Kingdom,1.0,t +17773,100%,Anguilla,2.0,t +9135,,,1.0,t +27198,,Jersey,1.0,t +25968,100%,,1.0,f +33804,100%,Marshall Islands,1.0,t +4862,0%,Zimbabwe,1.0,f +22026,,,1.0,t +44426,100%,Wallis and Futuna,2.0,t +175,100%,Mauritania,1.0,t +32522,,,1.0,f +19161,,,1.0,t +28409,,Bosnia and Herzegovina,1.0,f +38460,,Indonesia,1.0,f +42390,100%,Wallis and Futuna,96.0,t +42390,100%,Wallis and Futuna,96.0,t +42390,100%,Wallis and Futuna,96.0,t +29939,,Lebanon,2.0,f +37426,100%,Zimbabwe,3.0,t +29524,100%,Sao Tome and Principe,1.0,f +42556,,Kenya,1.0,f +36082,,Tonga,1.0,f +8884,67%,China,3.0,f +1692,100%,Jersey,15.0,t +3520,,,1.0,t +29647,100%,Peru,1305.0,f +42390,100%,Wallis and Futuna,96.0,t +29647,100%,Peru,1305.0,f +25260,,Russian Federation,1.0,t +10421,,Guernsey,1.0,t +27991,,Guinea,1.0,f +29647,100%,Peru,1305.0,f +11757,,Nauru,1.0,t +42390,100%,Wallis and Futuna,96.0,t +29647,100%,Peru,1305.0,f +24694,,Sao Tome and Principe,1.0,f +14769,100%,Kiribati,4.0,t +43297,,Vanuatu,1.0,f +31262,,,1.0,f +1718,,,1.0,f +23007,100%,Tanzania,1.0,t +1578,,French Guiana,1.0,f +20858,,Chad,1.0,f +45658,,,1.0,f +38009,,Nicaragua,1.0,t +14077,,Marshall Islands,1.0,f +40205,67%,,1.0,f +10423,,,1.0,f +48369,100%,,1.0,f +49026,,Russian Federation,1.0,t +31345,,Brazil,1.0,t +8865,,China,1.0,f +10859,75%,,1.0,f +8333,,,1.0,t +4168,,Monaco,2.0,t +1197,,Guinea,1.0,t +46347,,Somalia,6.0,t +33731,,Monaco,1.0,f +2548,97%,Marshall Islands,3.0,f +46347,,Somalia,6.0,t +4460,,,1.0,f +46347,,Somalia,6.0,t +24379,,,1.0,f +42390,100%,Wallis and Futuna,96.0,t +42390,100%,Wallis and Futuna,96.0,t +43649,100%,Slovakia (Slovak Republic),1.0,t +39839,100%,Cook Islands,3.0,t +5131,100%,Sao Tome and Principe,2.0,t +44822,100%,Kenya,1.0,f +3986,,,1.0,t +10763,100%,,1.0,t +35445,,Ghana,1.0,f +10643,100%,Lebanon,1.0,f +30373,100%,Gambia,2.0,t +41851,100%,,3.0,t +8668,100%,Guinea,1.0,f +30988,,Tunisia,1.0,t +16168,,Mauritania,1.0,t +39288,,Sao Tome and Principe,1.0,t +47540,75%,,1.0,t +47218,100%,Malta,1.0,t +47151,80%,,3.0,f +13156,,United Kingdom,1.0,t +31128,100%,Montserrat,2.0,t +37428,100%,Nauru,1.0,f +26356,90%,Jersey,2.0,f +42565,100%,Montserrat,1.0,t +28971,,Maldives,1.0,f +3662,,Maldives,1.0,f +323,75%,,1.0,t +9214,,,1.0,f +25859,,Niue,1.0,f +30231,100%,Svalbard & Jan Mayen Islands,2.0,f +32387,,Isle of Man,1.0,t +23598,,,1.0,t +3203,100%,Uzbekistan,8.0,f +8309,100%,Brunei Darussalam,1.0,t +3203,100%,Uzbekistan,8.0,f +26080,,,1.0,t +41617,,,2.0,f +3124,,Senegal,1.0,f +47351,100%,,1.0,t +47734,100%,Ecuador,1.0,t +21128,,Niger,4.0,f +8836,,Niue,1.0,f +17509,100%,Nicaragua,3.0,f +33190,0%,Anguilla,1.0,t +42611,100%,Tonga,1.0,f +1997,0%,Pakistan,1.0,f +13723,100%,Gambia,4.0,t +22329,,,1.0,f +10803,100%,Nicaragua,1.0,f +17334,,Ecuador,2.0,t +27430,100%,Christmas Island,4.0,t +49092,,Turkmenistan,1.0,t +26250,100%,Tunisia,5.0,t +32080,,Nicaragua,3.0,f +32133,90%,,1.0,t +22192,,,1.0,t +21163,100%,Estonia,2.0,f +21403,95%,Vietnam,8.0,f +17060,100%,Monaco,1.0,f +37356,,Guinea,3.0,f +30924,,Sao Tome and Principe,7.0,t +11088,,France,1.0,f +30073,,,1.0,f +17414,,Venezuela,1.0,t +44512,,Guinea,1.0,f +10531,,Gibraltar,1.0,t +25989,,Uzbekistan,1.0,f +28368,,Jersey,1.0,t +24090,,Niue,1.0,f +1911,,Venezuela,1.0,t +15151,100%,Sao Tome and Principe,1.0,f +28676,,Anguilla,1.0,f +42325,,,1.0,t +4267,100%,Senegal,22.0,t +41203,,,1.0,t +37265,,Niue,2.0,t +21292,,Gambia,1.0,t +34494,100%,Niue,2.0,t +34587,,Isle of Man,22.0,t +15947,,Faroe Islands,1.0,f +5547,,Papua New Guinea,1.0,f +2515,100%,France,1.0,t +16406,100%,Bouvet Island (Bouvetoya),16.0,f +8399,,Nauru,1.0,t +46514,,Montserrat,1.0,t +14749,100%,,1.0,t +44952,100%,Uzbekistan,1.0,f +21057,,Niue,1.0,t +36478,75%,Holy See (Vatican City State),1.0,t +48221,,,1.0,f +10040,100%,,1.0,f +5555,100%,Denmark,11.0,t +38635,,,1.0,f +1483,,Kiribati,1.0,f +32921,,,2.0,t +40912,,,1.0,t +42395,,Nicaragua,1.0,t +32956,,Bouvet Island (Bouvetoya),3.0,t +10911,,Niue,1.0,t +326,100%,Gambia,1.0,t +3116,100%,Nicaragua,1.0,t +45251,100%,Holy See (Vatican City State),1.0,t +32253,100%,Gambia,1.0,t +31192,,Guinea,1.0,f +11832,,Jersey,1.0,t +23450,,Kiribati,2.0,f +23450,,Kiribati,2.0,f +45374,,French Guiana,2.0,f +7964,,,1.0,f +38005,,Russian Federation,1.0,t +29695,,Uganda,1.0,t +12188,,Niger,2.0,f +5591,99%,Indonesia,16.0,t +29647,100%,Peru,1305.0,f +11466,50%,Kiribati,1.0,t +20334,99%,Niger,171.0,t +17367,100%,Malta,1.0,f +47800,,,1.0,f +47133,,Nauru,1.0,f +26139,,,1.0,t +15137,100%,Marshall Islands,10.0,t +20379,,,1.0,t +37453,0%,,1.0,t +19089,100%,Spain,1.0,t +40073,,,1.0,f +4775,,Niue,1.0,f +46618,100%,Mauritania,1.0,f +33280,,,1.0,t +10958,,Sao Tome and Principe,1.0,f +39186,,Kenya,1.0,t +8507,,Mauritania,1.0,t +2252,,,1.0,f +47422,99%,Uzbekistan,30.0,f +41314,,Maldives,2.0,f +18668,100%,Costa Rica,1.0,t +4299,80%,Ukraine,1.0,t +17067,100%,Micronesia,1.0,f +23022,67%,Niue,10.0,t +22108,,Kenya,11.0,f +40985,100%,Guinea,15.0,t +6088,100%,,14.0,t +35468,100%,Sao Tome and Principe,1.0,t +27486,100%,,1.0,f +30833,,,1.0,f +40985,100%,Guinea,15.0,t +40713,100%,Gibraltar,1.0,t +44856,100%,,1.0,f +10428,,Isle of Man,3.0,f +10428,,Isle of Man,3.0,f +6894,80%,Estonia,47.0,t +49913,100%,Micronesia,1.0,f +49532,,,1.0,t +46662,,Kiribati,1.0,f +30990,50%,,1.0,t +46974,0%,,1.0,f +16371,95%,Bouvet Island (Bouvetoya),29.0,f +43281,100%,Micronesia,5.0,f +47417,100%,Finland,1.0,t +17066,100%,,1.0,t +7045,,,1.0,f +46945,,,1.0,t +3530,,,1.0,f +33766,,Bosnia and Herzegovina,2.0,t +42281,100%,Marshall Islands,39.0,f +42281,100%,Marshall Islands,39.0,f +42281,100%,Marshall Islands,39.0,f +3310,,Nicaragua,1.0,t +48600,,,1.0,f +32119,,,1.0,t +4383,,Micronesia,1.0,f +43152,100%,Nicaragua,82.0,t +14237,,France,1.0,t +43091,,Turkmenistan,1.0,f +42458,97%,Indonesia,14.0,t +21876,,Mexico,1.0,t +31421,,,1.0,t +34768,,Chad,1.0,t +44658,100%,,1.0,t +24274,100%,,1.0,t +3847,,Chad,2.0,t +3847,,Chad,2.0,t +21878,100%,Turkmenistan,1.0,t +29734,,,1.0,f +21076,90%,Kiribati,2.0,t +15834,,,1.0,t +46221,,,1.0,t +25926,100%,Slovakia (Slovak Republic),1.0,t +9370,90%,Niue,2.0,t +3103,100%,Turks and Caicos Islands,4.0,f +3203,100%,Uzbekistan,8.0,f +48649,100%,Kiribati,2.0,f +13888,100%,Lebanon,2.0,t +16901,100%,,1.0,t +34447,,Isle of Man,2.0,t +43579,,,1.0,t +28469,100%,Vanuatu,3.0,t +20984,,Zimbabwe,1.0,f +18077,100%,Sao Tome and Principe,139.0,f +10297,,Chad,1.0,t +44910,,Cook Islands,1.0,t +30604,,Pakistan,1.0,f +3809,100%,,1.0,t +48339,100%,Slovakia (Slovak Republic),2.0,f +39547,50%,Sao Tome and Principe,1.0,t +7891,100%,Barbados,1.0,f +21905,,Uzbekistan,2.0,t +28566,78%,Slovakia (Slovak Republic),79.0,t +43152,100%,Nicaragua,82.0,t +29583,,,3.0,t +19217,98%,Marshall Islands,46.0,f +22814,,Niger,1.0,f +1585,,Bosnia and Herzegovina,2.0,f +48321,100%,China,17.0,f +27279,,Maldives,1.0,f +41010,100%,Bhutan,2.0,f +26112,50%,Russian Federation,1.0,t +32415,100%,,2.0,t +46753,,Micronesia,1.0,f +13253,50%,Mauritania,1.0,t +9645,,Faroe Islands,1.0,f +18407,100%,Rwanda,3.0,f +6880,100%,,5.0,f +48305,100%,Guinea,2.0,t +8657,,Kiribati,1.0,f +13527,,Russian Federation,3.0,t +48187,,,1.0,f +31528,,Zimbabwe,2.0,t +6807,100%,Mexico,9.0,f +15746,83%,China,3.0,f +30174,,Malta,1.0,t +29390,100%,Denmark,2.0,t +49922,100%,Portugal,3.0,f +28216,,,4.0,t +38354,100%,Niue,3.0,f +37670,,Niue,1.0,f +42390,100%,Wallis and Futuna,96.0,t +42390,100%,Wallis and Futuna,96.0,t +18814,,,1.0,f +10020,90%,China,5.0,f +42390,100%,Wallis and Futuna,96.0,t +42390,100%,Wallis and Futuna,96.0,t +39757,100%,Pakistan,1.0,f +27263,80%,China,5.0,f +6163,,Marshall Islands,1.0,t +4635,100%,,1.0,t +30092,50%,Indonesia,5.0,f +46501,,,1.0,f +42390,100%,Wallis and Futuna,96.0,t +30067,,Niue,1.0,t +26546,50%,Lebanon,3.0,t +40652,,,1.0,t +1355,100%,Sao Tome and Principe,1.0,t +42390,100%,Wallis and Futuna,96.0,t +15796,,Chile,1.0,f +46096,,El Salvador,1.0,f +18407,100%,Rwanda,3.0,f +42281,100%,Marshall Islands,39.0,f +785,,,1.0,f +377,,Turks and Caicos Islands,1.0,f +42277,,Malawi,2.0,f +13723,100%,Gambia,4.0,t +43905,,Libyan Arab Jamahiriya,1.0,t +16922,100%,,2.0,t +2608,100%,Bahrain,4.0,t +44474,,,2.0,t +45635,100%,Vanuatu,2.0,f +29326,,,1.0,t +43384,,Holy See (Vatican City State),1.0,f +23079,,Peru,1.0,f +5347,100%,Malta,1.0,f +40668,100%,Micronesia,2.0,t +3438,100%,Estonia,2.0,t +36643,98%,Maldives,17.0,f +43914,100%,,3.0,t +40045,,Marshall Islands,1.0,t +5674,,,1.0,t +27597,100%,Portugal,7.0,t +3616,100%,Cape Verde,14.0,t +32023,100%,Chad,1.0,t +43123,,Nicaragua,1.0,t +33575,,Guernsey,1.0,t +49694,100%,Montserrat,2.0,f +43914,100%,,3.0,t +37003,,France,1.0,f +12197,,,1.0,t +43293,,Denmark,2.0,f +27136,,Reunion,1.0,f +46130,,,2.0,f +39662,,Isle of Man,1.0,t +21549,,,1.0,f +43328,,Saint Helena,2.0,f +29514,100%,Korea,1.0,t +1798,,Faroe Islands,2.0,t +42515,,French Guiana,1.0,f +27705,,Malta,1.0,t +17828,100%,Guernsey,1.0,f +35143,0%,,4.0,f +11723,,,1.0,f +29433,,Somalia,2.0,f +49136,,Denmark,1.0,t +27592,100%,,1.0,f +34118,100%,Micronesia,2.0,t +16088,100%,Fiji,2.0,t +26349,100%,,1.0,t +25121,,Venezuela,1.0,t +6677,,,1.0,t +48572,,,1.0,f +41142,100%,French Guiana,1.0,t +45253,,Sao Tome and Principe,1.0,t +43262,,Russian Federation,1.0,f +39912,100%,,1.0,f +23048,,Nicaragua,1.0,f +16326,100%,Faroe Islands,1.0,t +49239,,,1.0,t +15704,100%,Anguilla,2.0,t +17534,100%,Isle of Man,1.0,t +40817,,Lebanon,1.0,f +48660,100%,Nicaragua,2.0,t +18294,,,1.0,t +18011,100%,,6.0,t +18323,100%,,3.0,t +8707,73%,Rwanda,21.0,t +11567,100%,Niger,31.0,t +20124,100%,France,2.0,t +3924,,Malta,2.0,f +27746,,Anguilla,3.0,f +43130,100%,Puerto Rico,5.0,f +17837,100%,Bouvet Island (Bouvetoya),1.0,t +47115,,,1.0,t +25685,,Barbados,2.0,t +21516,,Marshall Islands,1.0,t +22666,,Togo,1.0,f +39932,,Ukraine,1.0,f +17095,,,1.0,t +356,99%,Wallis and Futuna,32.0,t +18313,,Guinea,1.0,f +42390,100%,Wallis and Futuna,96.0,t +23703,100%,Monaco,3.0,t +42390,100%,Wallis and Futuna,96.0,t +20092,90%,Kiribati,1.0,f +12802,100%,Niger,3.0,t +29820,100%,Guinea,2.0,f +10777,,Zimbabwe,1.0,f +43226,,,1.0,t +13406,,Nicaragua,1.0,f +26360,,,1.0,t +12142,80%,,1.0,f +32350,,,2.0,f +27461,100%,,1.0,f +48472,,Niue,1.0,t +13667,100%,Isle of Man,2.0,t +23954,100%,,1.0,f +17505,,Zimbabwe,1.0,t +42046,,Kiribati,7.0,t +18183,100%,Netherlands,5.0,t +37093,100%,Croatia,1.0,f +20850,90%,Isle of Man,7.0,t +5154,,Tonga,1.0,f +42277,,Malawi,2.0,f +44359,,Canada,1.0,t +16911,,Libyan Arab Jamahiriya,2.0,f +21817,,Vanuatu,1.0,t +17343,,,2.0,f +14027,100%,Gambia,3.0,f +11659,100%,Puerto Rico,2.0,f +18712,95%,Turks and Caicos Islands,11.0,t +11659,100%,Puerto Rico,2.0,f +36234,97%,Fiji,12.0,t +15615,,Chad,1.0,t +24128,54%,Suriname,9.0,t +37804,,,1.0,t +44202,,,1.0,f +42320,,,1.0,f +28199,,Gibraltar,1.0,t +3718,,,1.0,f +49466,89%,Isle of Man,1.0,t +42944,,Wallis and Futuna,1.0,f +1374,,Rwanda,1.0,f +30852,100%,Netherlands,2.0,f +6579,0%,,1.0,f +1206,,Tonga,1.0,f +36658,94%,China,20.0,t +32286,100%,Kenya,2.0,t +36658,94%,China,20.0,t +18654,,Papua New Guinea,1.0,t +40633,100%,Guinea,2.0,t +42502,100%,Philippines,2.0,f +36658,94%,China,20.0,t +13275,,Maldives,1.0,t +9861,100%,Guernsey,2.0,f +42390,100%,Wallis and Futuna,96.0,t +6681,,Philippines,2.0,t +34741,100%,Svalbard & Jan Mayen Islands,2.0,f +34575,86%,Cape Verde,4.0,f +17932,100%,Costa Rica,8.0,t +49668,100%,Marshall Islands,2.0,f +26691,,Pakistan,1.0,t +5044,,Uzbekistan,1.0,f +43130,100%,Puerto Rico,5.0,f +29925,100%,Tonga,2.0,t +17266,100%,Canada,2.0,f +41410,,,1.0,t +14660,,,1.0,t +19795,100%,Estonia,8.0,f +28819,92%,Montserrat,3.0,t +11619,80%,,1.0,f +35978,,Russian Federation,1.0,t +22479,,,1.0,f +15472,100%,Niue,2.0,t +25166,100%,,1.0,f +4776,,French Guiana,1.0,f +20596,83%,Sao Tome and Principe,2.0,t +46863,,Marshall Islands,1.0,f +17720,100%,United Kingdom,1.0,t +7301,,Sao Tome and Principe,1.0,t +29199,,El Salvador,1.0,t +28596,,Uruguay,1.0,t +21995,100%,,1.0,t +37199,,Brazil,1.0,f +43034,100%,Rwanda,1.0,f +25885,,,1.0,f +35537,100%,Isle of Man,4.0,t +11009,,Niue,1.0,f +34835,86%,Turkmenistan,2.0,t +5051,100%,El Salvador,12.0,f +23454,100%,Uganda,2.0,t +34407,,Jersey,1.0,f +35923,,Maldives,2.0,t +12540,100%,Lebanon,1.0,t +4648,,Nicaragua,1.0,f +29360,,Kiribati,1.0,f +34794,,Chad,2.0,t +9478,100%,Faroe Islands,1.0,t +3829,,Pakistan,1.0,f +30981,0%,,1.0,f +17867,75%,,2.0,t +17867,75%,,2.0,t +7138,90%,Bosnia and Herzegovina,1.0,t +9034,,Russian Federation,1.0,f +16420,,,1.0,t +16027,,Barbados,8.0,t +32201,,Bouvet Island (Bouvetoya),1.0,t +22864,100%,,1.0,t +23932,69%,Montserrat,6.0,f +46656,50%,France,2.0,f +33121,100%,,1.0,f +14027,100%,Gambia,3.0,f +14682,,French Polynesia,3.0,t +14682,,French Polynesia,3.0,t +37965,,Guinea,1.0,t +48746,100%,Uganda,5.0,f +16489,100%,Russian Federation,42.0,t +15064,,,1.0,t +34116,,,1.0,f +1643,100%,Costa Rica,1.0,f +14587,100%,Vanuatu,1.0,f +19855,100%,Kiribati,37.0,t +31925,,,1.0,f +24026,98%,Cape Verde,69.0,t +6324,,Niue,1.0,f +29797,,Niue,1.0,t +26224,,,1.0,t +15348,,,1.0,f +30377,100%,Micronesia,1.0,f +39443,75%,France,1.0,f +896,,Gambia,1.0,t +17401,100%,Russian Federation,4.0,f +15898,,,1.0,t +2577,,Vanuatu,1.0,f +35850,,Philippines,1.0,t +13999,,Nicaragua,3.0,f +7753,,Russian Federation,2.0,t +40014,,Bosnia and Herzegovina,2.0,f +48746,100%,Uganda,5.0,f +17401,100%,Russian Federation,4.0,f +8731,,Gibraltar,1.0,t +25229,100%,Niger,2.0,f +38879,,Mexico,1.0,t +16152,89%,,2.0,f +32866,100%,Kiribati,1.0,t +25440,,Indonesia,4.0,t +13028,100%,Zimbabwe,2.0,t +37648,100%,Lithuania,1.0,t +48947,,Portugal,2.0,t +17006,,,2.0,t +11239,,,1.0,f +48568,100%,Vanuatu,2.0,t +36903,,,1.0,f +8386,100%,,1.0,t +34659,100%,United Kingdom,2.0,f +42386,100%,Ecuador,6.0,t +2442,,,1.0,t +22838,100%,,5.0,t +30142,,Jersey,1.0,t +24896,100%,Algeria,50.0,t +24157,,Guinea,4.0,f +17458,,Andorra,1.0,f +42386,100%,Ecuador,6.0,t +43267,50%,,1.0,t +24157,,Guinea,4.0,f +13245,,,1.0,t +32177,100%,Jersey,2.0,t +18318,,,1.0,t +1203,80%,Marshall Islands,1.0,f +47938,100%,Niue,4.0,f +23092,,Isle of Man,1.0,t +14514,,China,80.0,t +24722,100%,,1.0,t +24026,98%,Cape Verde,69.0,t +22268,100%,,1.0,f +46567,,Estonia,1.0,f +1317,,Christmas Island,2.0,f +27590,100%,Suriname,8.0,t +23306,,,1.0,f +50049,,,1.0,f +30612,,,1.0,f +17050,,Faroe Islands,1.0,f +10065,100%,Niue,1.0,t +16155,100%,,1.0,t +36682,,,1.0,t +28871,100%,,1.0,f +31362,,Somalia,2.0,f +17932,100%,Costa Rica,8.0,t +41090,,Lebanon,1.0,f +35845,80%,Gambia,1.0,t +28528,,,1.0,f +8832,,,1.0,f +34096,100%,Andorra,10.0,f +40299,,,1.0,f +45767,,,1.0,t +35009,,,1.0,t +18098,100%,,1.0,f +46972,,Senegal,2.0,f +10879,,Somalia,1.0,t +4372,,Mexico,1.0,t +29972,,United Kingdom,1.0,f +29926,67%,Zimbabwe,7.0,t +31979,100%,Kenya,10.0,f +37769,,Tanzania,1.0,t +13149,100%,,1.0,f +43730,,Kenya,1.0,t +48174,,Denmark,1.0,f +32906,,Netherlands,1.0,t +11875,100%,Micronesia,2.0,t +32015,,,1.0,f +26779,100%,Uzbekistan,2.0,t +25521,,French Guiana,1.0,t +47130,100%,United Kingdom,2.0,t +21343,,,1.0,f +7573,,Papua New Guinea,1.0,t +30597,67%,Zimbabwe,1.0,f +31904,,Niue,3.0,t +28122,,Svalbard & Jan Mayen Islands,1.0,t +34790,,Sao Tome and Principe,1.0,f +44005,,,2.0,t +47663,,Turkmenistan,1.0,t +35437,81%,Slovakia (Slovak Republic),2.0,t +42386,100%,Ecuador,6.0,t +14386,100%,Nicaragua,8.0,f +28798,,Micronesia,1.0,f +1984,,Mauritania,3.0,t +16478,100%,Isle of Man,1.0,t +49634,,Faroe Islands,1.0,t +27942,,Guinea,1.0,t +26775,100%,,1.0,t +12558,,Monaco,1.0,t +15240,,,1.0,t +33832,0%,Denmark,7.0,t +7365,100%,,1.0,f +16029,100%,Faroe Islands,2.0,t +44150,,,1.0,f +14688,100%,,1.0,f +3254,,Tonga,16.0,t +43371,100%,Kiribati,2.0,t +9877,,Niue,1.0,t +1800,,,1.0,t +5344,100%,,1.0,f +43764,,Niue,1.0,t +47624,100%,Marshall Islands,1.0,t +3254,,Tonga,16.0,t +47481,,Togo,1.0,t +9291,,,1.0,t +9280,100%,Lithuania,1.0,f +42459,100%,,1.0,t +43651,,,1.0,t +42817,,French Polynesia,1.0,t +46115,100%,Cocos (Keeling) Islands,2.0,f +27302,,Micronesia,1.0,t +2384,,Isle of Man,1.0,f +25360,100%,Tonga,6.0,f +36838,,,1.0,t +1333,,,1.0,t +31362,,Somalia,2.0,f +32102,,Niue,2.0,f +24247,100%,Zimbabwe,1.0,f +12642,100%,United Kingdom,7.0,t +20432,100%,,1.0,t +29484,80%,,1.0,t +18565,,,1.0,f +48756,100%,Maldives,59.0,f +48756,100%,Maldives,59.0,f +42616,,Pakistan,4.0,f +39502,,Rwanda,1.0,t +23623,100%,Montserrat,11.0,t +34854,,,1.0,t +21473,,Vanuatu,1.0,t +4371,100%,Marshall Islands,4.0,t +24883,100%,Russian Federation,1.0,f +129,,Niger,1.0,f +48516,,,2.0,f +19316,90%,,1.0,t +7230,,Turkmenistan,1.0,f +48930,,Bosnia and Herzegovina,1.0,f +23332,100%,Bosnia and Herzegovina,2.0,f +14007,,Zimbabwe,2.0,t +44720,,,1.0,f +5352,,Lebanon,1.0,f +22929,,Isle of Man,1.0,f +16721,100%,Tonga,1.0,f +35290,100%,Papua New Guinea,1.0,t +4166,,Gibraltar,1.0,f +31886,,,1.0,t +5940,,Isle of Man,1.0,t +38941,,,3.0,t +19978,100%,,2.0,f +46212,100%,China,4.0,f +34267,,Chad,1.0,f +12966,,Chile,1.0,f +48375,,Nauru,1.0,f +14007,,Zimbabwe,2.0,t +4450,,,1.0,t +24963,100%,China,1.0,f +31107,100%,Isle of Man,3.0,t +2667,100%,Niue,3.0,f +36934,,Bosnia and Herzegovina,1.0,t +3485,,Nicaragua,1.0,t +22024,,,1.0,t +41315,100%,Holy See (Vatican City State),1.0,t +46949,100%,Tunisia,4.0,f +29647,100%,Peru,1305.0,f +2927,100%,Uganda,10.0,t +6703,80%,Gambia,1.0,f +11646,100%,Gambia,2.0,f +23573,,Costa Rica,1.0,f +24319,,Moldova,1.0,f +46949,100%,Tunisia,4.0,f +43833,,,1.0,t +41970,,Afghanistan,1.0,f +25360,100%,Tonga,6.0,f +36514,,San Marino,1.0,f +34306,91%,Wallis and Futuna,30.0,t +48756,100%,Maldives,59.0,f +29647,100%,Peru,1305.0,f +20852,100%,Marshall Islands,1.0,t +31793,100%,,1.0,t +28566,78%,Slovakia (Slovak Republic),79.0,t +30626,100%,Isle of Man,1.0,f +29647,100%,Peru,1305.0,f +32067,100%,Togo,1.0,t +43152,100%,Nicaragua,82.0,t +40988,100%,,4.0,f +28060,100%,,1.0,t +29647,100%,Peru,1305.0,f +15052,,,1.0,t +25165,93%,Uzbekistan,7.0,f +45799,,Kiribati,6.0,t +10906,,Chad,1.0,f +18887,,,1.0,t +21900,,Russian Federation,1.0,f +6728,,Vietnam,3.0,t +9245,,El Salvador,2.0,t +22838,100%,,5.0,t +22838,100%,,5.0,t +22838,100%,,5.0,t +45391,,,1.0,f +706,,,1.0,f +44894,,Russian Federation,1.0,f +46238,100%,Lebanon,1.0,t +16196,,,2.0,f +4581,100%,,1.0,f +42820,100%,Gibraltar,6.0,f +26713,,Afghanistan,4.0,t +34555,67%,Estonia,2.0,t +39485,100%,Marshall Islands,1.0,t +47140,,,1.0,t +29647,100%,Peru,1305.0,f +11895,,,1.0,f +29647,100%,Peru,1305.0,f +24026,98%,Cape Verde,69.0,t +34306,91%,Wallis and Futuna,30.0,t +48870,,Marshall Islands,1.0,f +13959,100%,Pitcairn Islands,3.0,t +22190,,,1.0,f +5924,,Canada,1.0,t +50040,100%,Micronesia,15.0,t +29647,100%,Peru,1305.0,f +25360,100%,Tonga,6.0,f +5978,100%,Zimbabwe,3.0,t +36635,100%,Indonesia,10.0,f +49380,100%,Micronesia,1.0,f +27687,100%,,1.0,t +16891,,,1.0,t +29647,100%,Peru,1305.0,f +25241,,Monaco,1.0,f +26386,100%,Fiji,25.0,t +19217,98%,Marshall Islands,46.0,f +28697,100%,Nauru,5.0,t +25360,100%,Tonga,6.0,f +29647,100%,Peru,1305.0,f +30492,100%,,1.0,t +46631,,France,1.0,t +29439,,,1.0,t +29647,100%,Peru,1305.0,f +24026,98%,Cape Verde,69.0,t +29647,100%,Peru,1305.0,f +25360,100%,Tonga,6.0,f +29647,100%,Peru,1305.0,f +44766,100%,Russian Federation,1.0,t +27263,80%,China,5.0,f +19896,100%,,1.0,f +46500,99%,Pakistan,73.0,f +28812,,Malta,3.0,t +5998,,Maldives,1.0,t +33903,,Togo,2.0,t +25739,,Malawi,1.0,f +3127,100%,Rwanda,36.0,f +30834,,Gambia,1.0,t +9093,100%,,1.0,t +23561,,,1.0,t +41912,100%,Lebanon,2.0,t +4621,,,1.0,t +39958,,,1.0,t +17299,,Anguilla,2.0,f +31285,,Gambia,1.0,t +46500,99%,Pakistan,73.0,f +10060,,Sao Tome and Principe,2.0,f +46500,99%,Pakistan,73.0,f +46500,99%,Pakistan,73.0,f +28963,,Afghanistan,1.0,t +46500,99%,Pakistan,73.0,f +46500,99%,Pakistan,73.0,f +46500,99%,Pakistan,73.0,f +46500,99%,Pakistan,73.0,f +14535,88%,Montserrat,18.0,f +31136,,Micronesia,1.0,t +19387,,El Salvador,1.0,f +32811,,,1.0,t +29647,100%,Peru,1305.0,f +35998,90%,,2.0,t +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +8677,,Marshall Islands,1.0,f +22157,,Rwanda,1.0,t +46066,,,1.0,f +28650,100%,Zimbabwe,2.0,f +958,,Denmark,2.0,t +41035,,Malta,1.0,t +38961,,Togo,1.0,f +10486,,Mauritania,1.0,f +27485,100%,Uzbekistan,2.0,t +16361,86%,,1.0,t +36100,100%,Rwanda,17.0,t +39848,100%,,1.0,t +24969,,China,1.0,t +46500,99%,Pakistan,73.0,f +24026,98%,Cape Verde,69.0,t +7283,,United Kingdom,1.0,f +31979,100%,Kenya,10.0,f +17644,,Zimbabwe,1.0,t +9505,,,1.0,f +4397,100%,French Guiana,1.0,t +48064,,Gibraltar,1.0,t +46041,,Libyan Arab Jamahiriya,1.0,f +26786,,,1.0,t +36075,0%,Kiribati,1.0,f +46500,99%,Pakistan,73.0,f +45151,100%,Tonga,1.0,f +46500,99%,Pakistan,73.0,f +28555,100%,Russian Federation,3.0,f +47783,100%,Isle of Man,3.0,t +14302,,,1.0,f +19938,,Indonesia,1.0,t +14406,100%,,1.0,f +7745,,Jersey,2.0,f +724,100%,Zimbabwe,8.0,f +43026,,Anguilla,1.0,t +33616,100%,Kenya,4.0,t +37351,,,1.0,f +40131,,Croatia,1.0,f +41405,,Guinea,2.0,f +27813,,Faroe Islands,1.0,f +20109,100%,El Salvador,1.0,f +36810,,,1.0,f +13603,,Kiribati,1.0,t +47422,99%,Uzbekistan,30.0,f +24026,98%,Cape Verde,69.0,t +20479,,,1.0,t +47422,99%,Uzbekistan,30.0,f +27133,100%,,4.0,f +40357,,,1.0,t +33193,100%,Brazil,10.0,f +24866,,,2.0,t +41554,,Faroe Islands,1.0,f +9186,,,1.0,f +39035,,,1.0,f +1516,,Turkmenistan,1.0,t +39626,,,1.0,t +31119,,,1.0,t +19892,100%,Monaco,1.0,f +48593,100%,Faroe Islands,1.0,t +49194,,Congo,1.0,t +2976,100%,Tanzania,2.0,t +29350,,,1.0,f +40270,,Cape Verde,1.0,f +3333,,,1.0,t +27561,100%,Nicaragua,2.0,t +29394,,Sao Tome and Principe,1.0,f +41269,,Philippines,7.0,f +23081,,Uzbekistan,1.0,t +8862,100%,Nicaragua,3.0,f +17425,100%,Afghanistan,1.0,t +18223,,,1.0,f +39384,100%,,1.0,f +14896,100%,Malta,3.0,t +35923,,Maldives,2.0,t +13314,,,1.0,f +2611,,Russian Federation,1.0,f +17784,,,1.0,t +23960,100%,,1.0,f +22659,100%,,1.0,t +11574,,,1.0,t +40421,96%,Jersey,29.0,t +27900,,Guinea,1.0,f +27947,,Tonga,1.0,t +4545,100%,,1.0,t +36892,,Kiribati,2.0,f +33920,,Zimbabwe,2.0,t +31606,100%,Marshall Islands,54.0,t +43593,100%,Guernsey,1.0,t +3616,100%,Cape Verde,14.0,t +33044,,Guinea,1.0,f +2798,100%,Togo,1.0,t +14386,100%,Nicaragua,8.0,f +33007,100%,Croatia,1.0,t +43196,,,1.0,t +28814,,Afghanistan,2.0,f +3084,100%,Isle of Man,1.0,t +10505,100%,,1.0,t +13349,,Indonesia,1.0,t +6544,100%,,1.0,t +5486,100%,Svalbard & Jan Mayen Islands,12.0,f +45424,,,2.0,t +41405,,Guinea,2.0,f +48563,,,1.0,f +33920,,Zimbabwe,2.0,t +44656,100%,Faroe Islands,3.0,t +14346,,,3.0,t +39235,,,1.0,f +4463,,Russian Federation,1.0,t +11438,,Tonga,1.0,t +47185,100%,Isle of Man,2.0,t +46500,99%,Pakistan,73.0,f +46500,99%,Pakistan,73.0,f +31979,100%,Kenya,10.0,f +9209,,Uzbekistan,1.0,t +35143,0%,,4.0,f +20206,,Monaco,1.0,t +3941,100%,,3.0,f +31979,100%,Kenya,10.0,f +49418,,Niue,2.0,f +10288,,United Kingdom,1.0,t +29820,100%,Guinea,2.0,f +31979,100%,Kenya,10.0,f +5429,100%,,2.0,t +47944,,,1.0,f +45218,100%,Marshall Islands,1.0,t +24061,,Zimbabwe,1.0,f +16594,,,1.0,t +35488,,Kiribati,1.0,f +48655,,,1.0,t +33785,,Nicaragua,2.0,f +17889,,Russian Federation,1.0,t +4850,,,1.0,t +30585,,,1.0,t +37833,,China,1.0,t +23868,67%,,15.0,t +33785,,Nicaragua,2.0,f +41269,,Philippines,7.0,f +3639,100%,,1.0,f +31860,100%,,1.0,t +47701,,,1.0,t +27142,,Guinea,1.0,t +46622,,,1.0,f +2856,,Switzerland,1.0,f +27862,,,2.0,t +33766,,Bosnia and Herzegovina,2.0,t +36234,97%,Fiji,12.0,t +48746,100%,Uganda,5.0,f +14632,,,1.0,f +11580,,,1.0,f +46404,,,1.0,f +15314,,Christmas Island,1.0,f +20230,100%,,1.0,t +44063,,,1.0,f +43050,100%,,2.0,t +41647,,Chile,1.0,t +3376,,Nicaragua,8.0,t +46181,,Sao Tome and Principe,1.0,f +39069,,Bouvet Island (Bouvetoya),1.0,f +18484,100%,Gambia,108.0,f +20685,,,1.0,f +34025,,Nicaragua,6.0,f +12718,100%,Indonesia,2.0,f +25803,,Cook Islands,1.0,t +11671,100%,,1.0,f +39750,100%,,1.0,f +35414,,Uzbekistan,1.0,f +14364,100%,Nauru,9.0,f +34447,,Isle of Man,2.0,t +35411,100%,Mauritania,2.0,f +26802,,Sao Tome and Principe,2.0,f +10659,,,1.0,t +30671,,Marshall Islands,1.0,t +30279,,Kenya,1.0,f +41265,,Zimbabwe,1.0,t +31585,,,1.0,f +44640,100%,French Polynesia,4.0,t +43378,,,1.0,f +49373,,Russian Federation,2.0,t +24875,80%,Malawi,1.0,t +30913,,Nauru,1.0,t +18753,100%,Gambia,1.0,t +49364,,Reunion,3.0,t +47783,100%,Isle of Man,3.0,t +47783,100%,Isle of Man,3.0,t +28256,,,1.0,f +1243,,Kenya,1.0,t +28919,,Malawi,2.0,t +20426,,Slovakia (Slovak Republic),2.0,f +4984,,Tonga,2.0,t +4984,,Tonga,2.0,t +35607,100%,Tonga,1.0,t +31334,,Maldives,2.0,f +26389,100%,Vietnam,1.0,f +13162,,Bosnia and Herzegovina,1.0,t +45137,,,1.0,t +5392,,,1.0,f +38289,,Uzbekistan,1.0,t +13721,,Maldives,1.0,f +22331,99%,Rwanda,50.0,t +2348,,Chile,1.0,t +18680,0%,,1.0,t +30126,100%,Togo,5.0,t +25201,100%,France,1.0,f +14716,,Faroe Islands,2.0,t +26676,,Uzbekistan,1.0,t +11425,,Greenland,1.0,t +21979,,,1.0,t +41692,90%,Guinea,2.0,f +41623,,,1.0,f +9333,,Guinea,1.0,f +8707,73%,Rwanda,21.0,t +41732,,Isle of Man,1.0,t +5062,,Mexico,1.0,t +8707,73%,Rwanda,21.0,t +23886,100%,Anguilla,1.0,t +16371,95%,Bouvet Island (Bouvetoya),29.0,f +21926,,,1.0,f +2745,,Russian Federation,1.0,f +37995,,Somalia,1.0,t +19842,85%,Turkmenistan,53.0,f +18145,100%,United Kingdom,1.0,f +45731,,Uzbekistan,1.0,t +17844,100%,,3.0,t +9936,,Canada,1.0,t +40234,100%,Isle of Man,1.0,f +28751,,Grenada,1.0,t +19842,85%,Turkmenistan,53.0,f +33900,80%,Nauru,1.0,f +23676,,,1.0,t +20133,,Turkmenistan,1.0,f +10,,,1.0,t +4389,0%,,1.0,f +354,100%,,2.0,t +15904,100%,Afghanistan,2.0,f +18792,,Micronesia,1.0,f +9950,,Denmark,1.0,t +27562,,Gambia,1.0,t +36358,,Zimbabwe,1.0,t +31193,,Uganda,3.0,t +5486,100%,Svalbard & Jan Mayen Islands,12.0,f +21569,100%,Libyan Arab Jamahiriya,1.0,t +41742,90%,Slovakia (Slovak Republic),3.0,t +41742,90%,Slovakia (Slovak Republic),3.0,t +32479,100%,Cocos (Keeling) Islands,1.0,t +1577,100%,Peru,8.0,t +12682,100%,,1.0,t +35011,,Brazil,1.0,f +40608,,,1.0,f +21132,,Costa Rica,1.0,t +16027,,Barbados,8.0,t +19780,100%,,3.0,f +19780,100%,,3.0,f +42273,100%,,1.0,f +37014,,,1.0,f +49373,,Russian Federation,2.0,t +49645,,Brunei Darussalam,1.0,f +22223,,Bouvet Island (Bouvetoya),1.0,f +44940,50%,Croatia,2.0,t +1738,,Lebanon,1.0,f +11056,100%,Uzbekistan,3.0,f +20534,,Brunei Darussalam,1.0,f +23034,99%,Monaco,54.0,f +1789,100%,Uganda,1.0,f +48976,100%,Philippines,4.0,f +19393,,Russian Federation,2.0,f +42806,,Gibraltar,1.0,f +24632,100%,Croatia,4.0,t +188,100%,Nauru,1.0,t +1252,,Isle of Man,1.0,f +38746,99%,Vietnam,13.0,f +19493,,,1.0,t +42055,,Isle of Man,1.0,f +38746,99%,Vietnam,13.0,f +38746,99%,Vietnam,13.0,f +38746,99%,Vietnam,13.0,f +24410,100%,,1.0,f +17042,,Russian Federation,1.0,f +39432,100%,Puerto Rico,1.0,t +36949,98%,,11.0,t +3254,,Tonga,16.0,t +45370,,,1.0,f +8406,,Anguilla,1.0,f +24279,,Sao Tome and Principe,1.0,t +8036,,,1.0,t +42529,,Russian Federation,1.0,t +2074,100%,Lebanon,1.0,f +41269,,Philippines,7.0,f +48735,89%,Gambia,1.0,t +45594,,,1.0,f +2505,,,1.0,t +40353,,,1.0,f +36635,100%,Indonesia,10.0,f +33474,83%,,1.0,t +10442,,Isle of Man,1.0,f +8599,100%,,1.0,t +47597,,,1.0,t +48756,100%,Maldives,59.0,f +13198,,,1.0,f +46420,,,1.0,f +958,,Denmark,2.0,t +22194,,,1.0,t +24836,100%,Kiribati,4.0,f +46334,100%,Micronesia,1.0,f +14309,,Turkmenistan,1.0,f +193,100%,Estonia,3.0,t +16378,,Gambia,1.0,f +46269,,Monaco,1.0,t +9958,,,1.0,t +2214,,,1.0,f +6838,96%,Spain,59.0,t +22108,,Kenya,11.0,f +4452,,Russian Federation,1.0,f +44522,,Rwanda,1.0,f +49655,,,1.0,t +14290,,Monaco,1.0,f +3096,,,1.0,t +1730,100%,Chad,2.0,t +10890,100%,,2.0,t +624,100%,Barbados,4.0,f +23983,,Finland,1.0,f +46673,,Djibouti,1.0,t +1599,100%,,2.0,f +45938,,,1.0,f +39886,100%,Malta,2.0,f +38242,85%,Rwanda,3.0,t +10863,,,1.0,t +20689,0%,Micronesia,1.0,f +33335,100%,Gibraltar,3.0,t +48240,,Somalia,1.0,t +14354,40%,,3.0,t +26803,,Kiribati,1.0,t +15733,,Chile,1.0,t +20334,99%,Niger,171.0,t +49325,,Saint Pierre and Miquelon,781.0,t +37646,100%,Estonia,60.0,f +24917,100%,Uganda,11.0,t +6405,100%,Russian Federation,2.0,t +42385,100%,Nauru,2.0,t +4250,100%,,2.0,f +27090,100%,Tonga,2.0,t +33734,,,1.0,f +33429,,Russian Federation,2.0,f +28246,,Russian Federation,1.0,t +34747,,Lebanon,3.0,t +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +35143,0%,,4.0,f +46888,100%,Mauritania,3.0,f +29647,100%,Peru,1305.0,f +17795,100%,Uzbekistan,11.0,t +7441,100%,Niue,1.0,f +34493,,,1.0,t +32222,,Gambia,4.0,f +15602,,Uzbekistan,2.0,t +45469,,Reunion,2.0,f +5439,45%,,6.0,f +10905,100%,,2.0,f +36629,,,1.0,t +1807,100%,,1.0,f +49958,,Barbados,1.0,f +25454,,Bouvet Island (Bouvetoya),1.0,f +42665,,Zimbabwe,1.0,t +6724,,Lithuania,1.0,t +5915,,Russian Federation,4.0,f +970,100%,Marshall Islands,2.0,f +42928,100%,,1.0,t +5904,100%,Mauritania,2.0,f +4698,,United Kingdom,1.0,t +33217,,France,1.0,f +43208,,,1.0,t +42802,100%,,1.0,t +19727,,Chile,1.0,t +3669,80%,Guinea,2.0,f +6604,,,1.0,t +29559,,,1.0,f +3959,,Pakistan,1.0,f +37872,38%,,1.0,t +12902,,Guernsey,1.0,f +18993,100%,Reunion,2.0,t +8438,62%,Nicaragua,9.0,t +5439,45%,,6.0,f +5439,45%,,6.0,f +5439,45%,,6.0,f +36635,100%,Indonesia,10.0,f +40181,100%,Russian Federation,2.0,t +3629,60%,,1.0,f +45263,100%,France,1.0,t +49293,,French Guiana,1.0,f +8627,90%,Gambia,1.0,t +19435,100%,,1.0,f +9587,100%,,1.0,f +19859,100%,Puerto Rico,2.0,t +23356,100%,Netherlands,1.0,f +36638,100%,,1.0,f +23514,,Australia,1.0,t +9265,,French Guiana,1.0,f +31970,,Niue,2.0,f +43769,,,1.0,t +16848,,,1.0,f +40512,100%,Indonesia,2.0,t +42509,100%,Nicaragua,1.0,t +25927,,,1.0,t +16287,100%,,2.0,f +16772,,Niue,2.0,t +31044,,,1.0,t +18927,,Congo,1.0,t +34321,,Maldives,1.0,t +32019,,Lebanon,1.0,t +20217,90%,,2.0,t +6830,,,1.0,t +17372,,Russian Federation,1.0,t +43744,,Cocos (Keeling) Islands,1.0,t +27499,100%,,1.0,t +25813,100%,Cocos (Keeling) Islands,1.0,f +38846,100%,Micronesia,1.0,t +12973,100%,United Kingdom,1.0,t +16371,95%,Bouvet Island (Bouvetoya),29.0,f +5821,100%,,1.0,f +47605,67%,,1.0,t +30740,,Gambia,2.0,t +32548,,,1.0,t +23526,,,1.0,f +2173,,Ghana,1.0,t +49296,,,1.0,t +17076,,Bahrain,1.0,t +49663,,Chile,2.0,t +29647,100%,Peru,1305.0,f +5636,,,1.0,t +17285,,Micronesia,1.0,f +29647,100%,Peru,1305.0,f +45760,,Faroe Islands,1.0,t +29647,100%,Peru,1305.0,f +44111,100%,Vanuatu,1.0,f +9604,100%,,1.0,t +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +17360,,Turkmenistan,1.0,t +47086,100%,Mauritania,4.0,t +49241,50%,Libyan Arab Jamahiriya,1.0,t +29647,100%,Peru,1305.0,f +44959,,,1.0,f +29647,100%,Peru,1305.0,f +24026,98%,Cape Verde,69.0,t +30800,100%,Micronesia,2.0,f +24307,,Denmark,1.0,f +16564,,Russian Federation,1.0,f +6441,,Nicaragua,1.0,t +45843,,,1.0,f +47474,,Lebanon,1.0,f +8187,,,1.0,f +25555,,Malta,1.0,f +17806,,Faroe Islands,1.0,f +2653,,Lithuania,1.0,t +11956,,Gibraltar,4.0,t +20498,100%,,1.0,t +6377,,French Guiana,1.0,t +39101,100%,Micronesia,1.0,t +14173,90%,Brazil,3.0,t +33547,100%,Uzbekistan,1.0,t +39898,,,1.0,t +13611,,Denmark,1.0,t +11440,,,1.0,f +32808,,Gambia,1.0,f +4056,,Brunei Darussalam,1.0,f +1614,,Tanzania,1.0,t +7055,100%,,1.0,f +32099,,Sao Tome and Principe,1.0,f +7296,100%,Zimbabwe,2.0,t +5236,,Croatia,1.0,t +15073,,French Guiana,1.0,t +16673,,France,1.0,t +35143,0%,,4.0,f +39965,100%,Tonga,3.0,t +11058,,Niue,1.0,f +21027,,Estonia,1.0,t +43379,,Palestinian Territory,1.0,f +23346,,,1.0,t +16319,100%,Zimbabwe,1.0,f +8688,,Brazil,2.0,f +29950,,France,1.0,t +3376,,Nicaragua,8.0,t +3376,,Nicaragua,8.0,t +23807,,,1.0,t +28549,,Guinea,1.0,f +33381,100%,Turks and Caicos Islands,1.0,t +25655,100%,Ukraine,2.0,f +33331,,Tonga,1.0,f +32352,100%,French Guiana,2.0,f +15069,100%,Montserrat,3.0,t +47199,100%,Tanzania,2.0,t +41784,100%,Rwanda,3.0,f +35619,,Indonesia,1.0,f +9709,,Tunisia,1.0,f +49727,,,2.0,f +31740,,,1.0,f +47789,,,1.0,t +39931,,Guinea,1.0,f +31069,,,1.0,t +38330,100%,Montserrat,1.0,f +22132,,Kenya,1.0,f +17947,,French Guiana,2.0,t +38568,,Turks and Caicos Islands,4.0,f +27944,,France,1.0,f +46194,100%,Tanzania,4.0,f +49795,,Chile,1.0,t +24404,,,1.0,f +37513,,Malta,1.0,f +15965,,Russian Federation,1.0,t +19041,100%,Indonesia,4.0,t +1004,,Holy See (Vatican City State),2.0,t +35809,,,1.0,f +38590,,,1.0,f +16049,,,1.0,f +26321,100%,Faroe Islands,2.0,t +15647,100%,Bosnia and Herzegovina,2.0,t +27162,100%,Isle of Man,1.0,f +18704,,,1.0,t +34714,100%,,2.0,t +44466,,,1.0,t +8438,62%,Nicaragua,9.0,t +39050,100%,,1.0,t +12492,,,1.0,t +36299,100%,Rwanda,13.0,t +29078,0%,Tonga,1.0,f +47220,,,1.0,f +48746,100%,Uganda,5.0,f +5427,,Monaco,1.0,f +29154,,El Salvador,1.0,f +25421,67%,Svalbard & Jan Mayen Islands,2.0,f +8076,,Lithuania,1.0,f +36036,,Ghana,1.0,t +21496,0%,Turkmenistan,1.0,t +44317,0%,,1.0,t +30136,,Brazil,1.0,f +13694,,Gibraltar,1.0,f +34605,,Chile,1.0,f +6351,,,2.0,f +13637,60%,,5.0,t +14490,100%,Denmark,1.0,t +21615,100%,Montserrat,4.0,f +42465,,Zimbabwe,1.0,f +28566,78%,Slovakia (Slovak Republic),79.0,t +36137,,Lebanon,1.0,t +12320,100%,Bosnia and Herzegovina,20.0,f +36262,,Andorra,1.0,t +39396,100%,Zimbabwe,1.0,t +33617,,Canada,1.0,f +18180,,,1.0,t +18885,70%,El Salvador,7.0,t +8219,,Micronesia,1.0,t +26279,,Lebanon,1.0,t +25437,100%,,1.0,t +32224,,,1.0,f +38962,100%,Gibraltar,2.0,t +27759,0%,Monaco,1.0,t +3182,,,1.0,f +27253,,French Guiana,1.0,f +25609,0%,,1.0,f +23008,100%,Russian Federation,1.0,t +3965,,Canada,1.0,t +38482,100%,Jersey,1.0,f +3669,80%,Guinea,2.0,f +24775,97%,Montserrat,44.0,f +23747,100%,Niger,4.0,t +40189,100%,Marshall Islands,1.0,f +20590,,,1.0,f +29338,100%,,2.0,t +6624,,Russian Federation,1.0,t +39625,100%,Zimbabwe,1.0,t +14617,100%,,1.0,t +14934,,Anguilla,1.0,f +26892,100%,Togo,12.0,t +46614,100%,,1.0,t +47297,,,1.0,t +35759,100%,,1.0,t +37230,,,1.0,t +48334,100%,Guinea,12.0,f +1546,,,2.0,f +14833,,,1.0,f +37287,,Maldives,1.0,t +35300,,,1.0,t +28335,,,1.0,t +48334,100%,Guinea,12.0,f +39952,100%,Tonga,21.0,f +12116,,Uganda,1.0,f +26504,,Niue,1.0,f +30695,,Guinea,1.0,f +48334,100%,Guinea,12.0,f +35231,,,1.0,f +45902,,Sao Tome and Principe,5.0,t +48207,,Faroe Islands,1.0,f +30995,,,7.0,f +17959,,Lebanon,1.0,t +27380,,Peru,1.0,f +21864,100%,Micronesia,1.0,t +18282,,Niue,1.0,f +42773,,,1.0,f +27772,100%,Chad,2.0,t +29866,100%,Isle of Man,2.0,f +26146,,,2.0,t +26621,25%,,1.0,t +14566,100%,Korea,4.0,t +36836,,Tanzania,1.0,f +24539,100%,,1.0,t +29702,,,1.0,t +18140,,Bosnia and Herzegovina,2.0,f +4367,,,1.0,t +29692,,Faroe Islands,1.0,f +1953,,,1.0,f +9558,,Maldives,1.0,f +19778,,Russian Federation,1.0,t +31295,,Lebanon,1.0,t +47451,100%,Turkmenistan,1.0,t +8206,,Maldives,1.0,t +6001,,,1.0,f +39742,97%,,2.0,f +9226,,Mauritania,5.0,f +41008,100%,Venezuela,6.0,f +23037,,Lebanon,1.0,t +30560,,,1.0,f +31072,100%,Montserrat,6.0,t +3279,,Uzbekistan,1.0,t +29647,100%,Peru,1305.0,f +20739,,,1.0,f +29647,100%,Peru,1305.0,f +44510,,,1.0,f +29647,100%,Peru,1305.0,f +49082,,Pakistan,1.0,f +23843,100%,Isle of Man,3.0,t +29647,100%,Peru,1305.0,f +1369,100%,Russian Federation,1.0,t +29647,100%,Peru,1305.0,f +2417,,Cocos (Keeling) Islands,1.0,f +29647,100%,Peru,1305.0,f +980,,Djibouti,4.0,f +25163,,Afghanistan,1.0,t +37922,50%,,1.0,t +15602,,Uzbekistan,2.0,t +13084,,,1.0,t +42290,,,1.0,f +2982,,,1.0,t +48660,100%,Nicaragua,2.0,t +25903,,China,1.0,f +48504,,Netherlands,5.0,f +24647,,Guinea,2.0,t +39693,100%,Guinea,3.0,f +48214,100%,Canada,1.0,f +11320,,Guinea,1.0,t +40440,,Portugal,1.0,t +38793,100%,Svalbard & Jan Mayen Islands,2.0,f +37370,,Russian Federation,1.0,t +41118,,,1.0,f +34272,,Papua New Guinea,1.0,t +9439,,,1.0,f +24779,,,1.0,t +24241,,,1.0,t +25839,,Congo,1.0,t +1009,,Lebanon,1.0,t +5439,45%,,6.0,f +15294,,,1.0,f +24615,,,1.0,t +49270,,Faroe Islands,1.0,f +24836,100%,Kiribati,4.0,f +8438,62%,Nicaragua,9.0,t +8438,62%,Nicaragua,9.0,t +44468,,France,1.0,f +20163,100%,Lebanon,1.0,t +1040,,,1.0,t +31376,,Cocos (Keeling) Islands,1.0,f +28828,100%,Isle of Man,198.0,t +32443,,Costa Rica,4.0,t +11775,,Bouvet Island (Bouvetoya),1.0,t +16787,100%,Niue,2.0,f +6229,,Venezuela,1.0,t +40104,,Somalia,1.0,t +5069,,Holy See (Vatican City State),1.0,f +40752,100%,Tunisia,5.0,t +44420,100%,Faroe Islands,2.0,f +7882,,,1.0,t +2347,100%,Russian Federation,1.0,t +7981,100%,Sao Tome and Principe,4.0,t +4023,,Estonia,1.0,f +48290,100%,,1.0,f +14272,,Guinea,1.0,t +33192,,Russian Federation,2.0,t +24587,100%,Nicaragua,2.0,f +42579,29%,Anguilla,1.0,f +31461,,Gambia,1.0,f +16506,,Christmas Island,1.0,f +15994,50%,,1.0,f +30924,,Sao Tome and Principe,7.0,t +28182,,Isle of Man,1.0,f +43963,,,1.0,f +40292,,,1.0,f +1984,,Mauritania,3.0,t +8238,91%,Barbados,15.0,t +43248,100%,Tanzania,2.0,t +25276,90%,Denmark,1.0,f +26166,,Isle of Man,1.0,t +2035,40%,,1.0,f +2399,,Costa Rica,1.0,t +19586,,Libyan Arab Jamahiriya,1.0,f +41313,100%,Denmark,10.0,t +43248,100%,Tanzania,2.0,t +3544,,,1.0,t +11944,,Russian Federation,1.0,f +20474,,Lebanon,1.0,t +180,,,1.0,f +44407,,Bouvet Island (Bouvetoya),1.0,t +6575,,Ghana,1.0,f +26518,100%,Turkmenistan,1.0,t +23486,,,1.0,f +33284,,Gambia,3.0,f +11734,100%,,3.0,t +47808,,Niue,1.0,f +44940,50%,Croatia,2.0,t +35616,,Nauru,1.0,f +11817,,Tonga,3.0,f +22270,100%,,3.0,t +2172,100%,,2.0,t +35455,,,1.0,f +41080,89%,Tonga,10.0,t +13582,,Guinea,2.0,f +4717,,Isle of Man,1.0,f +41080,89%,Tonga,10.0,t +29647,100%,Peru,1305.0,f +42158,100%,,15.0,f +42158,100%,,15.0,f +42158,100%,,15.0,f +42158,100%,,15.0,f +42158,100%,,15.0,f +42158,100%,,15.0,f +42158,100%,,15.0,f +42158,100%,,15.0,f +42158,100%,,15.0,f +42158,100%,,15.0,f +50075,,Chad,1.0,t +37779,100%,,1.0,t +12316,100%,Micronesia,2.0,t +34930,,,2.0,t +41080,89%,Tonga,10.0,t +47876,,Estonia,1.0,t +16197,,,1.0,t +17537,,,1.0,f +37498,,,1.0,f +20119,,Lithuania,1.0,f +24445,,Niger,1.0,f +42582,,Niue,1.0,f +3276,,Marshall Islands,1.0,t +10043,0%,French Guiana,1.0,f +29812,100%,Tanzania,2.0,t +43217,75%,,1.0,t +19397,100%,Niue,2.0,t +18077,100%,Sao Tome and Principe,139.0,f +7906,,Costa Rica,1.0,t +24011,100%,,1.0,t +15414,,Afghanistan,1.0,t +26312,100%,,3.0,t +12316,100%,Micronesia,2.0,t +27465,100%,,1.0,f +30031,100%,Turks and Caicos Islands,2.0,t +9780,,Isle of Man,2.0,t +37152,,,2.0,f +26738,,,1.0,t +9564,,,1.0,t +7011,,,1.0,f +32217,,,1.0,f +13145,,Cuba,2.0,t +47086,100%,Mauritania,4.0,t +48310,20%,Lebanon,1.0,t +21252,,Guinea,1.0,t +10700,100%,Gambia,1.0,t +40607,,Uganda,1.0,t +2039,,Jersey,1.0,t +23669,100%,,1.0,f +195,,Slovenia,1.0,f +47772,,Montserrat,1.0,f +33072,100%,El Salvador,4.0,f +6740,,,1.0,t +34156,100%,Svalbard & Jan Mayen Islands,2.0,t +21852,100%,,3.0,f +5526,100%,Isle of Man,3.0,t +11430,90%,,1.0,t +18555,80%,Uzbekistan,1.0,f +42519,,Nauru,1.0,t +13798,100%,France,2.0,t +13717,,,1.0,t +14152,,Gambia,1.0,t +9204,11%,Russian Federation,1.0,t +35641,,Netherlands,15.0,t +7867,75%,Philippines,1.0,t +30924,,Sao Tome and Principe,7.0,t +24016,100%,Bosnia and Herzegovina,29.0,f +18391,,Svalbard & Jan Mayen Islands,2.0,f +21054,,Russian Federation,1.0,t +34198,,United Kingdom,1.0,t +34714,100%,,2.0,t +38675,100%,Slovakia (Slovak Republic),16.0,t +43346,,Cocos (Keeling) Islands,1.0,f +54,,Turkmenistan,2.0,t +14264,,Malta,1.0,t +3576,,Uruguay,1.0,f +40105,,,1.0,t +19082,,Micronesia,1.0,f +17418,,Tunisia,1.0,t +48043,100%,,1.0,f +14015,,,1.0,t +43242,,Niue,1.0,t +27154,100%,Russian Federation,3.0,t +46318,100%,Rwanda,1.0,f +1050,,,1.0,f +30416,,,1.0,f +22147,80%,,2.0,f +29978,89%,Uzbekistan,26.0,f +37657,,Turkmenistan,1.0,t +38340,,,2.0,t +26641,,,1.0,f +26747,,,1.0,f +33671,90%,Brazil,1.0,f +16899,,,1.0,f +15412,,Svalbard & Jan Mayen Islands,1.0,t +41962,,Afghanistan,1.0,f +18673,,Guernsey,1.0,f +36516,,,1.0,t +8631,,,1.0,t +14026,,Cocos (Keeling) Islands,1.0,f +1012,,,1.0,f +42874,,Togo,1.0,f +26514,99%,Vietnam,10.0,f +26514,99%,Vietnam,10.0,f +26514,99%,Vietnam,10.0,f +23168,,Bouvet Island (Bouvetoya),3.0,t +45017,100%,Lithuania,1.0,t +32222,,Gambia,4.0,f +27460,50%,Denmark,2.0,f +26514,99%,Vietnam,10.0,f +48756,100%,Maldives,59.0,f +39882,,Somalia,1.0,f +26514,99%,Vietnam,10.0,f +26514,99%,Vietnam,10.0,f +231,,Barbados,1.0,f +22900,,Guinea,1.0,f +49468,100%,Kenya,1.0,t +43331,,,1.0,t +37054,,Sao Tome and Principe,1.0,t +15480,,Portugal,1.0,f +38340,,,2.0,t +7542,,Russian Federation,1.0,f +23429,,,1.0,f +34784,60%,Faroe Islands,19.0,t +33814,,Faroe Islands,9.0,f +12980,100%,Uzbekistan,3.0,t +9867,100%,Guernsey,1.0,t +36635,100%,Indonesia,10.0,f +38568,,Turks and Caicos Islands,4.0,f +18435,100%,,1.0,f +6505,,Brazil,1.0,f +49426,,,1.0,t +24747,100%,Nicaragua,6.0,f +2921,,Cuba,2.0,t +1088,,Turkmenistan,1.0,f +48855,,,1.0,t +33027,,,1.0,f +19393,,Russian Federation,2.0,f +19049,,Kiribati,2.0,t +24979,,,1.0,t +5813,90%,France,1.0,t +18351,,Micronesia,1.0,t +28841,,Guinea,1.0,t +49432,,Monaco,1.0,f +17544,67%,,1.0,t +47841,,Chad,1.0,t +29234,100%,Togo,9.0,t +34895,100%,Estonia,16.0,t +28235,,,1.0,t +32488,,Senegal,17.0,t +41290,,,1.0,f +20566,100%,Sao Tome and Principe,2.0,f +21313,,Kiribati,1.0,f +8225,95%,Barbados,31.0,f +7293,,Barbados,3.0,f +18375,50%,,1.0,t +18077,100%,Sao Tome and Principe,139.0,f +18077,100%,Sao Tome and Principe,139.0,f +18077,100%,Sao Tome and Principe,139.0,f +47640,,Denmark,1.0,f +16193,,,1.0,f +30000,,,1.0,t +28828,100%,Isle of Man,198.0,t +16530,100%,Senegal,3.0,f +6941,,Brazil,1.0,f +35039,,Turkmenistan,1.0,f +45055,,Brazil,3.0,t +48839,,Australia,1.0,t +29471,,,1.0,f +1041,,Lebanon,1.0,t +42681,,Georgia,4.0,f +38568,,Turks and Caicos Islands,4.0,f +47423,,Marshall Islands,1.0,t +38568,,Turks and Caicos Islands,4.0,f +37970,100%,,1.0,t +2295,100%,,1.0,f +69,,Canada,1.0,f +45042,,Guernsey,1.0,t +47447,,Portugal,2.0,f +39816,,,1.0,t +4330,94%,Ukraine,60.0,t +608,,Russian Federation,3.0,f +15541,,Puerto Rico,1.0,f +2613,,,2.0,t +37219,,,1.0,t +5328,,Sao Tome and Principe,1.0,f +31666,,,1.0,t +28762,,Korea,1.0,f +37785,,,1.0,f +11759,,,1.0,t +33531,100%,Mexico,1.0,f +9062,100%,Palestinian Territory,5.0,f +12742,100%,Nicaragua,2.0,t +47719,,,1.0,f +46639,,,1.0,f +5892,,Turkmenistan,1.0,t +15915,94%,,4.0,t +12264,100%,Slovakia (Slovak Republic),1.0,t +1244,100%,Ecuador,1.0,t +16795,,Andorra,2.0,t +22583,,Somalia,1.0,t +4235,,Bosnia and Herzegovina,3.0,f +14364,100%,Nauru,9.0,f +356,99%,Wallis and Futuna,32.0,t +7965,,Niue,1.0,f +49674,100%,Lebanon,1.0,f +19849,,Russian Federation,2.0,t +7491,,Kenya,1.0,t +20225,,,1.0,f +48877,,,1.0,f +4942,100%,,3.0,f +14022,100%,Uganda,1.0,t +41590,,Cocos (Keeling) Islands,1.0,f +36224,,,1.0,f +31538,,,1.0,t +4330,94%,Ukraine,60.0,t +39949,83%,Turks and Caicos Islands,1.0,t +41621,100%,,1.0,f +10745,100%,Faroe Islands,2.0,f +8156,,Russian Federation,3.0,f +7806,,Russian Federation,1.0,t +20117,,Faroe Islands,1.0,f +20848,,Saint Helena,1.0,t +13500,,Brazil,1.0,f +41983,90%,United Kingdom,1.0,f +24925,,,1.0,f +14310,,Faroe Islands,1.0,f +15780,,,1.0,t +41413,,,1.0,t +18238,,,2.0,t +9370,90%,Niue,2.0,t +9666,33%,,1.0,t +982,99%,Marshall Islands,32.0,f +24870,,Turks and Caicos Islands,1.0,f +14173,90%,Brazil,3.0,t +44293,,,1.0,f +46403,,,1.0,f +49069,,,1.0,f +35118,,Bouvet Island (Bouvetoya),1.0,t +468,,,1.0,f +33546,,French Guiana,1.0,f +42118,,,1.0,t +18391,,Svalbard & Jan Mayen Islands,2.0,f +32051,,,1.0,f +16850,100%,Sao Tome and Principe,3.0,t +18903,,,2.0,t +5611,,,1.0,t +12359,80%,Croatia,1.0,f +34688,100%,Gambia,2.0,t +13060,100%,Montserrat,2.0,f +34623,,Isle of Man,1.0,f +13554,,Faroe Islands,1.0,t +28713,,Tonga,1.0,f +43815,,,1.0,t +49708,,Afghanistan,3.0,t +17925,33%,,2.0,t +13240,100%,Estonia,1.0,t +6572,100%,Venezuela,1.0,f +5153,100%,France,1.0,f +41644,,Isle of Man,1.0,t +14167,,,1.0,f +27154,100%,Russian Federation,3.0,t +20217,90%,,2.0,t +14110,,Tanzania,1.0,f +48035,,Togo,1.0,f +21390,90%,,2.0,f +24985,90%,,7.0,t +31587,,,1.0,f +33295,,Tonga,2.0,t +250,,Togo,1.0,f +13123,,Kenya,1.0,f +35902,100%,,1.0,f +39001,,Russian Federation,1.0,f +12292,,Guinea,1.0,f +35,,Micronesia,1.0,f +22621,,,1.0,t +36542,0%,,1.0,t +356,99%,Wallis and Futuna,32.0,t +32771,,Korea,1.0,t +39207,,Denmark,3.0,t +2099,100%,Tonga,1.0,t +32932,,Reunion,1.0,f +14931,100%,Jersey,4.0,f +16278,,Korea,1.0,t +36256,,Russian Federation,1.0,f +37223,,,1.0,f +3917,,,1.0,t +15382,,Guinea,2.0,f +39126,100%,Guinea,9.0,f +4618,,Tonga,3.0,f +34439,,Guinea,1.0,f +26214,,,1.0,f +45512,100%,Barbados,2.0,t +24681,,Russian Federation,1.0,t +2962,100%,Sao Tome and Principe,2.0,t +33814,,Faroe Islands,9.0,f +35355,100%,Gambia,3.0,f +6487,,,1.0,f +48961,90%,Turkmenistan,2.0,t +22908,100%,Micronesia,6.0,t +11958,100%,,1.0,f +12370,,,1.0,f +18393,100%,Canada,2.0,t +9585,,Zimbabwe,1.0,t +29338,100%,,2.0,t +7100,,,1.0,f +23754,88%,,1.0,t +18357,,,1.0,f +31082,,Zimbabwe,1.0,f +10285,,,2.0,f +4579,100%,Marshall Islands,2.0,f +6623,,Uzbekistan,1.0,f +32961,,United Kingdom,6.0,t +9806,100%,Lithuania,2.0,t +6418,,,1.0,t +18678,100%,,1.0,f +32961,,United Kingdom,6.0,t +21272,100%,Niue,6.0,f +44823,,Micronesia,2.0,f +42187,,Costa Rica,1.0,t +42852,,,1.0,t +33805,,,2.0,t +23763,100%,,1.0,t +27897,,,1.0,t +37881,100%,Guinea,1.0,f +48333,100%,Chad,2.0,t +12594,,,1.0,t +37570,,Svalbard & Jan Mayen Islands,1.0,f +34151,100%,Guinea,3.0,f +23034,99%,Monaco,54.0,f +41902,,Zimbabwe,1.0,t +39381,,Russian Federation,1.0,f +2522,,,1.0,f +39980,,Jersey,1.0,f +1420,100%,Afghanistan,2.0,f +48379,,El Salvador,1.0,f +48692,,Uganda,1.0,f +7216,,,1.0,f +46005,,Nicaragua,1.0,f +8509,,Malta,1.0,t +17124,88%,Turks and Caicos Islands,4.0,t +29647,100%,Peru,1305.0,f +24345,100%,Lebanon,1.0,t +503,,Maldives,3.0,t +42767,100%,,1.0,t +21766,,Tonga,1.0,f +37739,,,1.0,t +20060,,Guernsey,5.0,t +764,,Faroe Islands,1.0,f +1011,97%,Russian Federation,8.0,t +13011,,Uzbekistan,1.0,t +37704,96%,Fiji,26.0,f +22599,,,1.0,f +20334,99%,Niger,171.0,t +37704,96%,Fiji,26.0,f +43748,,France,1.0,t +16602,,Gambia,2.0,t +40328,,Netherlands,1.0,f +37637,100%,,1.0,t +11281,100%,,2.0,t +37704,96%,Fiji,26.0,f +28739,,Faroe Islands,1.0,f +41357,,Tonga,1.0,t +48359,,Niger,2.0,f +13476,,,1.0,f +13589,100%,China,1.0,f +22211,,,1.0,t +33086,,Niue,1.0,t +11281,100%,,2.0,t +12118,,Niue,1.0,f +5164,,Guinea,1.0,f +19091,95%,Cook Islands,18.0,t +24351,,Marshall Islands,1.0,t +19603,98%,Cuba,12.0,f +34730,100%,,2.0,f +16795,,Andorra,2.0,t +32462,,Puerto Rico,1.0,f +47449,100%,Guinea,1.0,f +29666,100%,Anguilla,2.0,f +28620,,,1.0,t +21724,,Sao Tome and Principe,3.0,t +21998,,,1.0,f +201,,Bouvet Island (Bouvetoya),1.0,t +25272,,,1.0,f +34730,100%,,2.0,f +26240,,Cuba,1.0,f +4116,,Kiribati,1.0,f +20387,100%,Malta,12.0,t +34570,100%,,1.0,f +26312,100%,,3.0,t +17119,,Russian Federation,1.0,t +21545,,Turks and Caicos Islands,1.0,f +42185,,Wallis and Futuna,1.0,t +15827,,Bouvet Island (Bouvetoya),1.0,f +6392,,Nicaragua,1.0,t +45055,,Brazil,3.0,t +8862,100%,Nicaragua,3.0,f +36955,,,1.0,f +37692,,Micronesia,1.0,t +45839,,,1.0,f +24294,100%,Brazil,1.0,t +31813,,Marshall Islands,1.0,t +39956,,Monaco,2.0,t +14566,100%,Korea,4.0,t +2927,100%,Uganda,10.0,t +29601,,Faroe Islands,6.0,t +42344,100%,Libyan Arab Jamahiriya,1.0,t +48807,100%,Micronesia,1.0,f +12441,,,1.0,f +28237,,Malta,1.0,f +34941,,,1.0,f +4282,,Maldives,2.0,t +48756,100%,Maldives,59.0,f +29647,100%,Peru,1305.0,f +30742,,Guinea,1.0,t +29647,100%,Peru,1305.0,f +10386,,,1.0,f +46431,,,1.0,f +6996,100%,Turkmenistan,1.0,t +29647,100%,Peru,1305.0,f +39560,,Pakistan,1.0,f +23655,100%,Jersey,1.0,t +19944,100%,Kiribati,12.0,f +23221,100%,Chad,1.0,f +25336,100%,Vanuatu,1.0,f +47106,100%,,2.0,t +47879,0%,Jersey,2.0,f +37854,,,1.0,t +18913,,,1.0,t +17124,88%,Turks and Caicos Islands,4.0,t +22503,100%,,1.0,f +1588,,Malta,1.0,t +16611,0%,,1.0,t +35625,98%,Estonia,25.0,t +35903,,,1.0,t +30203,100%,Svalbard & Jan Mayen Islands,1.0,t +17746,,Mauritania,1.0,f +10770,,,1.0,t +32041,,Canada,1.0,f +9222,100%,Brazil,18.0,t +13693,100%,United Kingdom,5.0,t +13867,,Uzbekistan,2.0,f +41998,,Vanuatu,2.0,f +7884,,Montserrat,1.0,f +7116,,United Kingdom,1.0,f +18002,100%,,1.0,f +43141,,,1.0,t +17466,,Cocos (Keeling) Islands,2.0,t +16677,,Rwanda,3.0,t +3053,100%,Turks and Caicos Islands,1.0,f +29647,100%,Peru,1305.0,f +14499,,Monaco,3.0,f +19603,98%,Cuba,12.0,f +19603,98%,Cuba,12.0,f +420,100%,Tonga,1.0,f +6894,80%,Estonia,47.0,t +19943,63%,Isle of Man,34.0,f +19603,98%,Cuba,12.0,f +15852,,Niue,1.0,f +12013,100%,Costa Rica,1.0,t +855,100%,Russian Federation,2.0,t +21387,,Micronesia,1.0,t +29647,100%,Peru,1305.0,f +8595,100%,Lebanon,3.0,t +17887,,,1.0,t +24083,100%,France,2.0,t +18244,,Malta,1.0,f +30982,,Chad,3.0,f +26073,,,1.0,t +24026,98%,Cape Verde,69.0,t +10224,,Nicaragua,2.0,t +30924,,Sao Tome and Principe,7.0,t +30295,,,1.0,f +24026,98%,Cape Verde,69.0,t +15586,,Niue,1.0,t +22863,,,1.0,f +22373,100%,Rwanda,1.0,f +26296,100%,Cape Verde,1.0,f +28434,,Bouvet Island (Bouvetoya),1.0,t +36066,96%,Isle of Man,2.0,t +29404,,Sao Tome and Principe,1.0,t +49486,,Isle of Man,1.0,f +47431,,Isle of Man,1.0,t +3929,,Lebanon,1.0,t +15915,94%,,4.0,t +27703,,Sao Tome and Principe,1.0,f +18938,,Vanuatu,1.0,t +28805,,,1.0,f +22664,,Isle of Man,1.0,f +47810,100%,Tonga,3.0,f +42334,,Chile,1.0,f +36066,96%,Isle of Man,2.0,t +16039,,,1.0,t +20572,0%,,2.0,t +800,,,1.0,t +26501,100%,Maldives,2.0,t +10506,,,1.0,t +24522,,,1.0,f +25692,,Lebanon,1.0,t +35635,,Malawi,1.0,f +19958,100%,Congo,40.0,t +5277,100%,Vietnam,10.0,f +7613,,Uzbekistan,1.0,t +13022,,Pakistan,1.0,f +16775,,Faroe Islands,1.0,f +27764,,Bouvet Island (Bouvetoya),1.0,f +45033,100%,Marshall Islands,1.0,t +8273,,Guernsey,1.0,t +48603,100%,Guinea,40.0,f +26698,100%,Uganda,5.0,t +40302,100%,Rwanda,2.0,t +33472,,,1.0,t +15892,,Mexico,3.0,t +8305,100%,Brazil,1.0,f +10314,,Faroe Islands,1.0,f +47721,100%,,1.0,f +18240,,Gambia,1.0,t +24268,,Greenland,5.0,f +24754,,Anguilla,1.0,f +42117,100%,,1.0,f +26679,100%,Finland,1.0,t +45159,,,1.0,f +29353,,Lebanon,1.0,f +29096,60%,Niue,1.0,f +48603,100%,Guinea,40.0,f +35511,90%,Cocos (Keeling) Islands,2.0,f +39207,,Denmark,3.0,t +28124,100%,Costa Rica,2.0,t +23592,,,1.0,f +2457,,,1.0,t +18003,,Papua New Guinea,1.0,f +48603,100%,Guinea,40.0,f +29947,100%,Niue,1.0,t +32177,100%,Jersey,2.0,t +6894,80%,Estonia,47.0,t +33047,,Jersey,1.0,f +42764,100%,Guernsey,13.0,t +28350,,Maldives,1.0,t +43186,100%,Vietnam,3.0,t +28855,,China,2.0,t +47325,,,1.0,t +37279,,,1.0,f +47631,100%,Faroe Islands,3.0,f +3254,,Tonga,16.0,t +29567,100%,Vanuatu,1.0,t +39756,,Monaco,1.0,f +17405,,Niue,1.0,t +5553,100%,,2.0,t +12312,100%,Malawi,2.0,f +6916,,Isle of Man,1.0,f +29933,100%,Faroe Islands,3.0,t +30477,,,1.0,f +48603,100%,Guinea,40.0,f +7343,100%,Peru,1.0,t +40980,,,1.0,t +11973,100%,Niue,7.0,t +22829,,Guinea,1.0,t +13995,,Malawi,1.0,t +12241,100%,,2.0,t +18417,,,1.0,t +34661,100%,Marshall Islands,1.0,t +24786,,Sao Tome and Principe,1.0,f +12241,100%,,2.0,t +19570,0%,Greenland,1.0,f +5439,45%,,6.0,f +17642,,Isle of Man,1.0,f +29372,,Canada,1.0,f +43736,100%,,1.0,t +26843,,,1.0,f +46853,0%,,1.0,f +23258,,,1.0,f +40455,,Guinea,1.0,f +49544,,Zimbabwe,2.0,f +37669,,Cape Verde,1.0,t +13729,,,2.0,f +49611,100%,Russian Federation,1.0,t +21304,,Uzbekistan,1.0,t +7166,,Marshall Islands,1.0,f +5196,,Gambia,2.0,t +25577,100%,Marshall Islands,2.0,f +30586,,Holy See (Vatican City State),1.0,t +29772,,Congo,2.0,f +9720,,,1.0,t +43907,,Malta,1.0,t +35906,,Greenland,1.0,t +8745,,Korea,1.0,f +44095,,,1.0,f +28627,,Kenya,1.0,f +23352,90%,,2.0,t +48321,100%,China,17.0,f +47842,80%,Vanuatu,1.0,f +14344,,,1.0,f +48114,80%,China,3.0,t +23989,100%,Russian Federation,3.0,t +16437,,Zimbabwe,1.0,t +36658,94%,China,20.0,t +34978,,,1.0,f +23682,57%,Uganda,4.0,f +5609,100%,Russian Federation,1.0,t +19397,100%,Niue,2.0,t +41022,100%,Cape Verde,3.0,t +12089,100%,Zimbabwe,1.0,t +32115,100%,Faroe Islands,1.0,t +31205,,Anguilla,1.0,t +17388,100%,,2.0,t +23672,96%,,3.0,t +23086,,Russian Federation,1.0,f +32287,,Monaco,1.0,f +11945,,,1.0,f +15792,,,1.0,t +46141,100%,,3.0,f +36576,100%,Tonga,4.0,t +28526,,Philippines,2.0,f +5087,,,2.0,t +26820,100%,Tonga,1.0,t +39347,,Nicaragua,1.0,f +16132,,,2.0,t +876,90%,,1.0,f +46073,0%,,1.0,f +36162,100%,,4.0,t +34976,100%,,1.0,t +28467,100%,Faroe Islands,3.0,t +43589,,Faroe Islands,2.0,t +35477,,Togo,1.0,f +19326,,,1.0,t +29647,100%,Peru,1305.0,f +8231,,,1.0,t +14642,,,1.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +48492,,Zimbabwe,1.0,f +300,100%,France,2.0,t +21923,90%,Guinea,1.0,f +4070,100%,,1.0,t +34788,,Niue,1.0,t +3781,,,1.0,f +29933,100%,Faroe Islands,3.0,t +2600,,Canada,1.0,f +23614,100%,Ecuador,4.0,t +29045,100%,,1.0,t +20509,100%,Kenya,2.0,t +12991,,,2.0,t +29612,,,1.0,t +30495,,Indonesia,1.0,t +31142,,,1.0,f +49140,,,1.0,t +44837,,Niue,1.0,t +29390,100%,Denmark,2.0,t +3391,100%,Iran,58.0,t +8195,,,1.0,t +20890,90%,Uzbekistan,3.0,t +14776,,Isle of Man,1.0,f +20130,,United Kingdom,1.0,f +3391,100%,Iran,58.0,t +17499,33%,Somalia,1.0,t +3361,,Turks and Caicos Islands,1.0,t +12096,100%,,1.0,t +5748,100%,France,1.0,f +2351,,,1.0,t +46886,50%,,2.0,t +3391,100%,Iran,58.0,t +3391,100%,Iran,58.0,t +3391,100%,Iran,58.0,t +20324,100%,United Kingdom,2.0,f +24839,100%,Mauritania,2.0,t +24896,100%,Algeria,50.0,t +24233,,,1.0,f +41998,,Vanuatu,2.0,f +21610,,Niue,1.0,t +34001,,Fiji,1.0,t +22977,,Bouvet Island (Bouvetoya),1.0,f +6391,,Montserrat,1.0,t +4570,100%,Guinea,4.0,t +26743,,Monaco,1.0,t +34306,91%,Wallis and Futuna,30.0,t +19182,,Russian Federation,1.0,t +47725,,,1.0,f +25090,,Monaco,1.0,f +3540,40%,French Guiana,1.0,t +19783,100%,Rwanda,1.0,t +28592,,,1.0,f +26084,,Vietnam,4.0,t +23857,100%,Isle of Man,1.0,f +36845,100%,Denmark,1.0,t +4082,,France,1.0,f +21287,82%,Lithuania,1.0,t +37818,100%,Tonga,2.0,f +25228,,Kenya,1.0,f +16455,,,1.0,t +31622,,Djibouti,1.0,t +22294,,Sao Tome and Principe,1.0,f +31213,100%,Denmark,1.0,t +46371,,,1.0,f +17464,,Philippines,8.0,t +14640,0%,,2.0,f +30866,,,1.0,f +18117,,,1.0,f +25207,100%,,9.0,t +46163,,Jersey,1.0,t +40836,100%,Togo,6.0,t +48345,,Peru,1.0,f +14711,,Tonga,1.0,f +387,,Niger,1.0,f +12183,,Turkmenistan,1.0,f +37426,100%,Zimbabwe,3.0,t +6059,,Faroe Islands,1.0,t +19243,,Zimbabwe,1.0,f +35348,,Suriname,2.0,t +13574,100%,,1.0,f +9075,,,1.0,f +12742,100%,Nicaragua,2.0,t +476,,Guernsey,1.0,t +15628,,,1.0,t +10649,,,1.0,f +8439,97%,Rwanda,17.0,t +46851,100%,Gibraltar,1.0,t +6894,80%,Estonia,47.0,t +29647,100%,Peru,1305.0,f +24896,100%,Algeria,50.0,t +24026,98%,Cape Verde,69.0,t +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +16371,95%,Bouvet Island (Bouvetoya),29.0,f +37122,,,1.0,t +43417,,Tonga,1.0,t +29647,100%,Peru,1305.0,f +29216,,,1.0,f +29647,100%,Peru,1305.0,f +48523,100%,Zimbabwe,1.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +11118,,,1.0,f +29,,China,1.0,f +15684,,,1.0,f +22824,,Rwanda,1.0,f +38754,,,1.0,t +22247,100%,Slovakia (Slovak Republic),5.0,t +7006,,,1.0,f +1306,,Faroe Islands,1.0,f +25042,,Canada,1.0,t +41733,,,1.0,f +8135,100%,Russian Federation,1.0,t +37522,100%,Russian Federation,1.0,f +35299,,,1.0,t +42406,,Somalia,1.0,t +13973,100%,Gabon,2.0,t +47920,,American Samoa,3.0,t +40836,100%,Togo,6.0,t +29634,,Sao Tome and Principe,1.0,f +608,,Russian Federation,3.0,f +608,,Russian Federation,3.0,f +40836,100%,Togo,6.0,t +40836,100%,Togo,6.0,t +41282,100%,Marshall Islands,1.0,f +45728,,,1.0,t +23740,,Maldives,1.0,f +22554,,Afghanistan,1.0,f +16132,,,2.0,t +49197,90%,,3.0,f +1641,,Lebanon,1.0,t +45766,,,2.0,t +4210,,Lebanon,1.0,f +12909,,Anguilla,1.0,t +10222,100%,,4.0,t +24175,,French Guiana,1.0,f +1881,,Turkmenistan,1.0,f +1595,,,1.0,f +8147,,French Guiana,1.0,t +46970,,,1.0,f +8792,100%,Svalbard & Jan Mayen Islands,1.0,f +22790,,,1.0,t +37359,,Gambia,1.0,t +5819,,United Kingdom,1.0,f +19154,100%,France,2.0,t +35158,,Turkmenistan,1.0,f +5553,100%,,2.0,t +24961,,,1.0,t +8953,90%,Micronesia,7.0,t +19603,98%,Cuba,12.0,f +8953,90%,Micronesia,7.0,t +8953,90%,Micronesia,7.0,t +42889,100%,Canada,2.0,t +15189,79%,China,21.0,f +34943,,French Polynesia,1.0,f +9282,100%,Slovakia (Slovak Republic),34.0,f +16371,95%,Bouvet Island (Bouvetoya),29.0,f +17278,100%,,1.0,t +9344,,Indonesia,1.0,t +17913,,Rwanda,1.0,t +12729,100%,Maldives,6.0,t +19231,100%,Ukraine,2.0,t +37019,,,1.0,f +25450,,,1.0,f +41255,,,1.0,f +7773,,Kenya,7.0,f +4711,,Cocos (Keeling) Islands,1.0,f +8225,95%,Barbados,31.0,f +1083,,,2.0,f +23354,,Sao Tome and Principe,1.0,f +42590,,Mexico,1.0,f +14514,,China,80.0,t +13729,,,2.0,f +5916,100%,Papua New Guinea,1.0,t +11470,,,1.0,f +15662,100%,Tonga,1.0,t +5791,,,1.0,f +16043,,Slovenia,1.0,t +22088,,China,1.0,f +39730,,Marshall Islands,3.0,t +29015,,Monaco,1.0,f +24587,100%,Nicaragua,2.0,f +28552,,Cocos (Keeling) Islands,1.0,t +14173,90%,Brazil,3.0,t +17180,0%,,1.0,f +44132,90%,Denmark,1.0,f +39730,,Marshall Islands,3.0,t +13659,,,1.0,t +7622,100%,Mauritania,1.0,f +28574,,,1.0,f +14929,,United Kingdom,1.0,f +34923,,Faroe Islands,1.0,t +8642,100%,,1.0,f +18569,0%,,1.0,f +5025,,,1.0,f +45786,,Jersey,1.0,f +40274,0%,Bouvet Island (Bouvetoya),1.0,t +6838,96%,Spain,59.0,t +24058,100%,Canada,2.0,t +27669,,Sao Tome and Principe,1.0,t +2045,,Denmark,1.0,f +29700,,,1.0,t +43726,100%,,1.0,t +40756,100%,Mexico,1.0,f +16426,,,1.0,t +18925,,Philippines,1.0,f +49,,,1.0,t +7553,,Lithuania,2.0,f +2017,,Reunion,1.0,f +23034,99%,Monaco,54.0,f +5187,,Maldives,2.0,t +39207,,Denmark,3.0,t +26634,,Zimbabwe,1.0,f +46697,,Sao Tome and Principe,1.0,f +48103,,Reunion,1.0,f +41846,,Slovakia (Slovak Republic),1.0,t +27939,100%,Nauru,2.0,f +9027,,,1.0,f +17031,80%,Reunion,7.0,t +34709,,Faroe Islands,1.0,f +22966,,Finland,1.0,t +46666,,,1.0,f +7752,,Niue,1.0,t +4752,100%,Chile,1.0,f +35153,,Chad,1.0,t +39780,100%,,2.0,f +32271,100%,,1.0,f +18388,,El Salvador,1.0,t +18021,,,1.0,f +47388,,Russian Federation,1.0,f +25574,100%,Isle of Man,2.0,t +7475,,Lebanon,1.0,f +18458,,Guinea,1.0,t +28517,,Lebanon,2.0,t +26185,,Chad,1.0,f +36826,,,1.0,t +19346,,Nicaragua,1.0,f +12539,,Tanzania,1.0,f +19754,0%,Indonesia,1.0,t +15447,,Russian Federation,1.0,t +6673,,Kenya,3.0,t +23199,,Isle of Man,1.0,f +49629,,Isle of Man,1.0,f +11132,,Bosnia and Herzegovina,1.0,f +22860,100%,Turkmenistan,2.0,t +37723,,Kenya,1.0,f +39130,,Puerto Rico,1.0,f +36490,100%,Venezuela,1.0,t +12463,,Isle of Man,1.0,t +28578,,Russian Federation,1.0,t +12394,,French Guiana,1.0,f +2158,100%,,2.0,t +6171,0%,,1.0,t +44402,,Micronesia,1.0,f +43218,,,1.0,t +39479,,,1.0,t +3858,,,1.0,t +9049,,Guinea,1.0,t +15237,,,1.0,f +43381,100%,Sao Tome and Principe,2.0,t +47058,,,4.0,f +40419,,,1.0,f +7858,,,1.0,f +32645,,Ghana,1.0,t +27249,,,1.0,f +11915,100%,,2.0,f +22186,,San Marino,1.0,f +7825,,El Salvador,1.0,t +44435,,,1.0,f +46958,100%,,1.0,f +15350,,,1.0,t +35601,,Zimbabwe,1.0,f +47127,,Palestinian Territory,1.0,f +33578,100%,Isle of Man,6.0,t +31842,,Guinea,1.0,t +6215,,Mauritania,1.0,t +42924,,,1.0,f +42029,,Ukraine,1.0,f +5817,,Cocos (Keeling) Islands,1.0,f +32162,,,1.0,t +38573,100%,,1.0,f +19978,100%,,2.0,f +22763,,Guinea,1.0,t +43856,,Afghanistan,1.0,f +27264,,,1.0,f +20813,100%,Togo,2.0,f +45495,,Anguilla,1.0,t +39388,0%,,2.0,t +5904,100%,Mauritania,2.0,f +26061,,Philippines,1.0,t +44890,95%,Wallis and Futuna,9.0,t +41250,,,1.0,f +47847,96%,Indonesia,3.0,f +36150,,Anguilla,1.0,f +32921,,,2.0,t +5967,,Jersey,2.0,f +41249,20%,Niue,3.0,t +20862,,,1.0,t +17291,,,1.0,f +26079,100%,Zimbabwe,1.0,f +41249,20%,Niue,3.0,t +1265,100%,,1.0,f +10686,86%,Tonga,21.0,f +7092,,Guinea,1.0,t +38104,,Marshall Islands,1.0,f +17576,,,1.0,t +50091,,,1.0,f +23594,70%,French Guiana,2.0,t +14375,100%,,1.0,t +2714,100%,Bosnia and Herzegovina,8.0,f +42602,,Sao Tome and Principe,1.0,t +19843,100%,Turkmenistan,3.0,t +19804,,Uzbekistan,2.0,t +12320,100%,Bosnia and Herzegovina,20.0,f +32211,,Anguilla,1.0,f +4989,,Afghanistan,1.0,f +4351,,,1.0,t +22237,,Croatia,1.0,f +15174,,,1.0,f +5915,,Russian Federation,4.0,f +13325,,Maldives,1.0,t +35625,98%,Estonia,25.0,t +20079,100%,,1.0,f +42172,,,1.0,t +22836,100%,,2.0,t +28127,,,1.0,f +5144,,,1.0,f +22232,,Rwanda,3.0,t +23380,100%,Tonga,2.0,f +34609,,Guinea,1.0,f +13842,,,1.0,t +16002,,Uzbekistan,1.0,t +48105,,Uganda,1.0,f +12918,100%,China,9.0,f +7348,100%,Mauritania,1.0,t +22501,100%,Brazil,1.0,t +43535,,Isle of Man,1.0,f +10866,100%,,1.0,t +15484,75%,,1.0,t +814,,,1.0,f +19943,63%,Isle of Man,34.0,f +31357,,French Guiana,2.0,f +21932,100%,,1.0,f +31831,100%,,2.0,t +7933,,,1.0,t +44979,75%,,1.0,f +19949,,Gambia,2.0,t +27801,80%,Niue,1.0,f +47952,100%,,1.0,f +41293,100%,Niue,1.0,f +43961,100%,Gibraltar,9.0,t +17652,50%,Isle of Man,1.0,f +32746,100%,,1.0,t +36528,,Nicaragua,1.0,t +8713,,Maldives,1.0,t +10179,100%,,2.0,f +10283,,Bouvet Island (Bouvetoya),1.0,t +23584,,Bouvet Island (Bouvetoya),1.0,f +4187,,Rwanda,1.0,t +45058,,Reunion,1.0,t +29991,,,1.0,t +45737,,Tonga,29.0,t +1815,,Marshall Islands,2.0,t +24662,,Mexico,1.0,f +32335,,Sao Tome and Principe,1.0,t +37864,,Suriname,1.0,f +11539,,Nicaragua,1.0,f +2714,100%,Bosnia and Herzegovina,8.0,f +46549,,French Guiana,1.0,f +37610,,,1.0,f +9338,100%,Rwanda,1.0,t +25401,,French Guiana,1.0,t +41322,,,1.0,t +42383,,,1.0,f +23118,,,1.0,f +9681,,Vietnam,1.0,t +18051,,Sao Tome and Principe,1.0,f +20334,99%,Niger,171.0,t +3216,100%,Sao Tome and Principe,3.0,f +5967,,Jersey,2.0,f +30125,,,1.0,f +31116,,Sao Tome and Principe,1.0,f +44448,,Venezuela,1.0,t +31753,,,1.0,t +25099,,,1.0,t +4255,,Chad,1.0,t +38796,,Tanzania,1.0,t +42833,,Anguilla,1.0,f +25431,100%,Sao Tome and Principe,1.0,t +29647,100%,Peru,1305.0,f +12493,70%,Sao Tome and Principe,4.0,t +10555,0%,Gambia,1.0,f +8139,,,1.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +44418,,Russian Federation,1.0,f +15055,,Turkmenistan,1.0,f +14713,100%,,1.0,t +49071,,Kenya,1.0,f +47496,,,1.0,f +33490,100%,Niue,1.0,t +18837,100%,Ecuador,5.0,t +43363,,Faroe Islands,2.0,f +21147,,,2.0,t +1627,,Nicaragua,1.0,t +39152,,,1.0,t +34398,100%,,3.0,t +2455,,Kenya,1.0,t +42112,,Guinea,2.0,t +10450,70%,Cape Verde,4.0,t +3203,100%,Uzbekistan,8.0,f +285,,Malta,1.0,t +33912,,Zimbabwe,2.0,f +151,,,1.0,t +3666,,,1.0,f +21552,,Nicaragua,6.0,f +50037,91%,Guernsey,4.0,t +37131,,,1.0,f +30970,,Papua New Guinea,1.0,t +20929,,,1.0,t +25341,100%,Niue,1.0,t +21957,,Chad,1.0,t +22794,50%,Cape Verde,36.0,t +49284,100%,Gambia,1.0,f +29647,100%,Peru,1305.0,f +4619,,Canada,1.0,t +19795,100%,Estonia,8.0,f +20939,,Niue,1.0,t +7346,,Uzbekistan,1.0,t +32848,,Ukraine,2.0,f +14364,100%,Nauru,9.0,f +13911,100%,Philippines,1.0,t +39195,90%,Brazil,2.0,t +11255,93%,Suriname,41.0,f +16395,100%,Micronesia,2.0,t +21578,100%,,1.0,f +32530,100%,Chad,1.0,t +16563,,Togo,1.0,t +18292,,Niue,1.0,t +47235,,,1.0,f +7372,,Uruguay,1.0,t +32014,100%,,2.0,f +12093,43%,Slovenia,1.0,t +45551,100%,Jersey,2.0,t +9318,,,1.0,f +35137,,Faroe Islands,1.0,f +16406,100%,Bouvet Island (Bouvetoya),16.0,f +15100,100%,,1.0,t +18460,60%,Monaco,6.0,f +21169,,Ghana,1.0,f +9913,70%,Somalia,2.0,t +41397,0%,Guinea,1.0,t +7253,,Russian Federation,1.0,t +11828,,Russian Federation,1.0,f +15422,,Suriname,1.0,t +38998,,Uzbekistan,1.0,t +5146,100%,Afghanistan,1.0,f +43687,,,1.0,f +42820,100%,Gibraltar,6.0,f +43281,100%,Micronesia,5.0,f +37646,100%,Estonia,60.0,f +8667,,,2.0,f +14892,100%,Turkmenistan,1.0,t +7879,,,1.0,t +45604,,,1.0,t +2183,100%,Isle of Man,3.0,f +6100,,Jersey,1.0,f +40764,,Anguilla,1.0,t +30349,,El Salvador,1.0,f +31734,,Lebanon,1.0,f +47292,78%,,1.0,f +10545,,,1.0,f +44247,100%,Russian Federation,3.0,f +3583,,Niue,1.0,f +4084,100%,,2.0,t +46707,100%,,1.0,f +9865,,Lebanon,1.0,t +15115,80%,,1.0,t +15696,,Uzbekistan,1.0,f +27528,100%,Gambia,2.0,t +48169,,Uganda,1.0,t +3430,40%,Niger,1.0,f +28228,,,1.0,f +5953,,Tunisia,1.0,f +8444,0%,,1.0,t +19016,100%,Kiribati,1.0,t +34159,100%,,2.0,f +36186,,Marshall Islands,1.0,f +40122,67%,Philippines,1.0,f +19618,100%,Uganda,1.0,f +24459,,,1.0,f +6894,80%,Estonia,47.0,t +22334,100%,,1.0,t +20846,,,1.0,f +36870,,Mexico,1.0,f +21970,,,1.0,f +882,,Vanuatu,2.0,t +7042,,,1.0,f +44266,,,1.0,t +34165,,,1.0,f +44563,100%,Nicaragua,1.0,f +31415,,Tonga,4.0,t +17795,100%,Uzbekistan,11.0,t +4886,100%,Philippines,2.0,f +12628,,,1.0,t +2021,100%,,1.0,f +38469,100%,Cocos (Keeling) Islands,3.0,t +36964,,Croatia,1.0,t +15327,,,2.0,t +32741,100%,Isle of Man,3.0,f +18430,,Lebanon,2.0,t +4274,100%,Guernsey,2.0,t +34133,100%,,1.0,f +15014,100%,Rwanda,3.0,f +35304,100%,Tonga,12.0,t +13754,,Mexico,1.0,t +38581,,,1.0,f +20975,100%,Gambia,2.0,f +21336,,Guinea,1.0,f +31773,100%,,1.0,t +32554,,Guinea,1.0,f +32180,,Sao Tome and Principe,1.0,f +32185,,Russian Federation,1.0,f +21856,,Canada,1.0,f +23195,,,1.0,t +14545,100%,Turks and Caicos Islands,1.0,t +868,,Kenya,1.0,t +14966,100%,,1.0,t +6780,,Zimbabwe,2.0,t +6894,80%,Estonia,47.0,t +41575,,Niue,1.0,f +5106,,Kenya,1.0,f +33657,50%,Montserrat,1.0,t +33498,,,1.0,f +8218,,Monaco,1.0,f +38111,0%,Djibouti,1.0,t +10921,,Kenya,1.0,f +3605,,,1.0,t +42830,,Peru,1.0,t +47652,,Kenya,1.0,f +14419,92%,Cuba,2.0,t +33822,,Chad,1.0,f +43636,,,1.0,f +10185,,Mexico,1.0,t +32373,,Afghanistan,1.0,t +547,,Guinea,1.0,t +25419,,,1.0,t +24838,100%,Isle of Man,2.0,t +29393,73%,Zimbabwe,1.0,t +3203,100%,Uzbekistan,8.0,f +34326,,Guinea,1.0,t +33962,,Korea,1.0,f +9993,,,1.0,t +17558,100%,Chile,1.0,f +29933,100%,Faroe Islands,3.0,t +39136,100%,,1.0,f +1187,,,1.0,t +34287,,Tanzania,1.0,f +46864,,Denmark,1.0,f +30678,100%,Tanzania,2.0,t +10359,100%,United Kingdom,1.0,t +44827,,Senegal,1.0,f +19958,100%,Congo,40.0,t +34697,,Indonesia,1.0,f +11454,100%,Montserrat,2.0,f +20381,,,1.0,t +45021,,Russian Federation,1.0,t +1011,97%,Russian Federation,8.0,t +5434,,French Guiana,2.0,t +46202,100%,,2.0,t +5805,100%,,1.0,t +11854,,,1.0,f +9374,100%,Puerto Rico,1.0,t +9356,,Nauru,1.0,f +33942,,Ghana,1.0,f +2720,,Isle of Man,1.0,f +14741,,,1.0,t +23424,,Lebanon,1.0,t +19468,,Niue,1.0,f +43446,,Nauru,1.0,f +10213,,,1.0,f +22933,100%,Zimbabwe,4.0,f +32980,100%,Micronesia,1.0,f +27511,,,1.0,t +36951,100%,,1.0,t +34944,,,1.0,t +2326,,Marshall Islands,1.0,t +21055,100%,,2.0,t +39961,,Russian Federation,1.0,f +28828,100%,Isle of Man,198.0,t +44938,100%,Cape Verde,1.0,t +2644,100%,Zimbabwe,11.0,t +5376,100%,Isle of Man,2.0,t +27031,,Rwanda,1.0,f +8699,100%,Niue,1.0,t +10366,,United Kingdom,1.0,t +39629,,,1.0,f +2362,,,1.0,f +356,99%,Wallis and Futuna,32.0,t +35499,94%,Andorra,4.0,f +3101,100%,Puerto Rico,27.0,f +19944,100%,Kiribati,12.0,f +4423,,Jersey,1.0,f +22410,,,1.0,f +44677,100%,Bosnia and Herzegovina,1.0,t +21178,100%,,1.0,t +48023,,Russian Federation,3.0,f +26237,0%,Korea,1.0,f +21993,,Zimbabwe,1.0,t +5596,100%,Monaco,1.0,f +31713,,,1.0,f +26206,100%,Mexico,3.0,f +41058,,Afghanistan,1.0,t +49714,100%,Montserrat,1.0,t +22052,,,1.0,f +46120,100%,Poland,4.0,t +38236,,Finland,2.0,f +27920,,Guinea,1.0,f +25137,,Guinea,1.0,t +20476,,,1.0,f +29014,100%,,1.0,f +42224,,,1.0,t +16881,100%,Vietnam,1.0,t +80,,Russian Federation,1.0,f +14023,,Monaco,1.0,t +19943,63%,Isle of Man,34.0,f +41734,,,1.0,t +24922,,Finland,1.0,t +21560,,,1.0,t +45186,100%,,1.0,t +48603,100%,Guinea,40.0,f +5184,,Mauritania,1.0,t +32691,100%,Nicaragua,1.0,f +32647,,Zimbabwe,1.0,t +46884,100%,Turks and Caicos Islands,2.0,f +16315,100%,,1.0,t +11135,,,1.0,f +6992,100%,Isle of Man,1.0,f +12758,100%,,1.0,f +45200,,,1.0,t +40277,,Lebanon,1.0,t +35120,,Malta,2.0,t +46887,100%,Gambia,1.0,f +21209,,Reunion,1.0,t +39861,100%,,1.0,t +3101,100%,Puerto Rico,27.0,f +24164,0%,,1.0,f +3101,100%,Puerto Rico,27.0,f +8883,,Jersey,1.0,f +3101,100%,Puerto Rico,27.0,f +3101,100%,Puerto Rico,27.0,f +12262,100%,Niue,2.0,f +35134,,Ecuador,2.0,f +9660,,Lebanon,2.0,t +3101,100%,Puerto Rico,27.0,f +20394,67%,United Kingdom,1.0,f +22794,50%,Cape Verde,36.0,t +46154,100%,,1.0,t +17205,,San Marino,1.0,f +11114,100%,,1.0,t +20035,,,1.0,f +9678,,,2.0,t +499,100%,,2.0,t +44661,100%,Uzbekistan,1.0,f +41542,,,2.0,t +38361,100%,Nauru,1.0,f +20016,,,1.0,f +32310,,Estonia,1.0,f +29647,100%,Peru,1305.0,f +47213,,Nicaragua,1.0,f +9255,,Vietnam,10.0,f +32922,,Malta,1.0,t +2134,100%,Montserrat,1.0,f +16939,,Senegal,11.0,t +32824,100%,Indonesia,1.0,t +19027,,Russian Federation,1.0,t +1295,,,2.0,t +12102,,,1.0,t +33311,100%,,1.0,t +23666,,Sao Tome and Principe,1.0,t +28983,,,1.0,t +16068,100%,Russian Federation,5.0,t +30574,,El Salvador,2.0,t +12801,,,1.0,t +982,99%,Marshall Islands,32.0,f +40595,100%,Turkmenistan,1.0,f +46975,100%,Lebanon,1.0,t +37531,,Chile,1.0,t +20356,,Montserrat,1.0,t +12601,,Gibraltar,2.0,t +12688,100%,,1.0,t +16266,90%,,3.0,f +41531,,Wallis and Futuna,1.0,f +46819,,,1.0,f +37015,,,1.0,t +15564,,,1.0,t +18460,60%,Monaco,6.0,f +27863,,Chad,1.0,t +39472,,,2.0,t +10994,,Russian Federation,2.0,t +16374,,,2.0,f +11039,,,1.0,t +30841,,,1.0,t +24625,100%,Micronesia,1.0,t +10242,100%,,1.0,f +18014,,Isle of Man,1.0,f +39712,,Turkmenistan,1.0,f +20902,,,1.0,f +1866,,Estonia,1.0,f +46886,50%,,2.0,t +9001,100%,,1.0,t +33073,100%,China,2.0,f +2165,,Gambia,1.0,t +31453,,United Kingdom,1.0,t +21808,,Brazil,1.0,t +39530,,Marshall Islands,1.0,t +18059,,,1.0,f +14926,100%,Gambia,2.0,t +9660,,Lebanon,2.0,t +15035,,,1.0,f +28489,90%,Malta,5.0,t +47030,70%,,1.0,f +30242,,,1.0,f +47847,96%,Indonesia,3.0,f +33269,,Ecuador,4.0,f +30724,,Lebanon,1.0,f +10827,,,1.0,f +13440,,Micronesia,1.0,t +9429,100%,,4.0,f +9957,,Chad,3.0,t +3193,100%,Latvia,2.0,f +15887,,,1.0,f +44445,100%,,1.0,f +24243,,,2.0,t +48392,,,1.0,f +22616,,Cocos (Keeling) Islands,1.0,f +10450,70%,Cape Verde,4.0,t +5518,,Lithuania,1.0,f +19217,98%,Marshall Islands,46.0,f +29460,,Isle of Man,1.0,t +40474,74%,Russian Federation,3.0,f +26049,,,1.0,f +10320,92%,Tonga,10.0,f +10320,92%,Tonga,10.0,f +17387,,Malawi,1.0,t +16489,100%,Russian Federation,42.0,t +44105,,Afghanistan,1.0,f +4817,,Russian Federation,1.0,t +40013,100%,El Salvador,3.0,t +27526,100%,,2.0,t +17466,,Cocos (Keeling) Islands,2.0,t +31750,100%,,2.0,f +15509,,,1.0,t +40085,,Russian Federation,1.0,f +30222,,Somalia,1.0,t +39346,,Guinea,1.0,t +1117,,France,1.0,f +29458,,Russian Federation,1.0,t +46143,100%,Ecuador,3.0,f +23710,100%,Gambia,5.0,f +49807,100%,,1.0,t +45108,,Holy See (Vatican City State),1.0,f +28828,100%,Isle of Man,198.0,t +18077,100%,Sao Tome and Principe,139.0,f +49991,90%,,1.0,f +8693,,Lebanon,1.0,t +29729,,,1.0,f +48354,,,1.0,f +18354,100%,Gibraltar,1.0,t +5814,100%,Venezuela,1.0,f +41193,100%,Rwanda,1.0,f +10909,100%,Turks and Caicos Islands,3.0,t +11672,100%,Kiribati,6.0,t +39549,,French Guiana,1.0,f +31325,100%,,1.0,t +48635,100%,El Salvador,1.0,t +33340,,,2.0,f +12122,75%,,1.0,t +43180,,,1.0,f +45737,,Tonga,29.0,t +28044,95%,Brazil,1.0,f +15074,,Rwanda,1.0,f +16266,90%,,3.0,f +43804,,,1.0,f +42342,,Tanzania,1.0,t +41471,,Chad,1.0,f +37623,100%,,1.0,t +31294,,,1.0,t +4044,,Malta,1.0,f +14618,,Russian Federation,1.0,t +41569,,Denmark,1.0,t +13987,,United Kingdom,1.0,f +36643,98%,Maldives,17.0,f +21096,,Uzbekistan,1.0,t +47058,,,4.0,f +48709,100%,Andorra,2.0,t +27176,,Montserrat,1.0,t +11443,,,1.0,t +31357,,French Guiana,2.0,f +16884,,French Polynesia,1.0,f +25019,,Malta,3.0,f +18609,,Anguilla,1.0,f +16403,,China,1.0,f +22301,100%,Marshall Islands,1.0,t +40271,50%,Niue,1.0,f +10912,,Reunion,1.0,f +15451,,Bouvet Island (Bouvetoya),1.0,f +683,,Lebanon,1.0,t +45985,,,1.0,t +15300,100%,Russian Federation,3.0,t +29472,80%,Anguilla,1.0,f +33922,50%,Tanzania,1.0,t +25784,,Peru,1.0,f +38929,,Niue,1.0,f +45412,100%,Tanzania,2.0,t +37839,100%,,2.0,t +38436,,,1.0,f +9898,,French Guiana,1.0,f +28566,78%,Slovakia (Slovak Republic),79.0,t +45553,90%,Brazil,16.0,t +34769,80%,Pakistan,3.0,t +10923,,Brazil,1.0,t +18740,,Niue,1.0,f +23879,,Isle of Man,1.0,f +5575,67%,Niue,1.0,t +2486,,,1.0,f +20248,,Niger,1.0,f +22792,,,1.0,t +9282,100%,Slovakia (Slovak Republic),34.0,f +37591,,,1.0,f +418,,Niger,1.0,t +35810,,,1.0,f +9783,,China,1.0,t +23817,,Lebanon,1.0,f +15360,,,2.0,t +27288,50%,Nicaragua,2.0,f +16625,,,1.0,f +38724,,Isle of Man,1.0,f +25742,100%,Rwanda,1.0,f +11825,,Rwanda,3.0,f +20311,,Monaco,1.0,f +19534,50%,Uganda,3.0,t +1570,,,1.0,f +17795,100%,Uzbekistan,11.0,t +46010,100%,,1.0,f +5137,,Chad,2.0,t +35117,100%,Venezuela,1.0,t +40429,,,1.0,t +48905,100%,,1.0,f +4332,,Uzbekistan,1.0,t +7173,,Cocos (Keeling) Islands,1.0,f +42800,100%,Tunisia,5.0,t +22236,,Niue,1.0,t +87,,Maldives,1.0,t +25195,,Isle of Man,1.0,f +48190,,Sao Tome and Principe,1.0,t +46855,,Jersey,1.0,t +40409,,Marshall Islands,1.0,f +13024,,Reunion,3.0,t +8596,,Brazil,1.0,f +31028,,,1.0,f +29105,100%,Zimbabwe,1.0,t +2929,,,1.0,f +26947,,Chad,1.0,t +47143,100%,Anguilla,1.0,t +24985,90%,,7.0,t +26213,100%,Guinea,1.0,f +21973,,,1.0,t +7617,,China,1.0,t +7654,100%,Tonga,2.0,t +30048,,Palestinian Territory,1.0,t +9813,,,1.0,f +43152,100%,Nicaragua,82.0,t +33520,100%,Malawi,1.0,f +28756,100%,Jersey,1.0,t +28749,,Isle of Man,1.0,t +23523,,Mauritania,1.0,f +18626,100%,Nicaragua,1.0,t +26712,,,1.0,t +16972,,Kiribati,1.0,f +47821,69%,Indonesia,2.0,t +45960,,Peru,1.0,f +20878,100%,,1.0,f +44803,,Uzbekistan,1.0,f +44021,100%,Maldives,1.0,f +27725,100%,Lithuania,1.0,f +42293,100%,,1.0,t +33768,,United Kingdom,1.0,f +27727,,Gambia,1.0,f +49044,,Cape Verde,2.0,t +2019,100%,Malta,7.0,f +1676,,Kenya,1.0,f +32302,,,1.0,t +44308,97%,Niue,5.0,f +31400,,Niue,1.0,t +29647,100%,Peru,1305.0,f +4010,100%,,1.0,t +45870,100%,Puerto Rico,2.0,t +36704,,,1.0,f +26789,,Guinea,3.0,t +29870,,,1.0,t +22124,,Tonga,1.0,t +34424,,,1.0,t +35625,98%,Estonia,25.0,t +28828,100%,Isle of Man,198.0,t +48603,100%,Guinea,40.0,f +49331,,Isle of Man,1.0,t +14890,100%,Svalbard & Jan Mayen Islands,1.0,t +48603,100%,Guinea,40.0,f +3941,100%,,3.0,f +36576,100%,Tonga,4.0,t +11495,,Guinea,1.0,f +49619,,Gibraltar,1.0,f +23241,,,1.0,t +345,100%,French Guiana,1.0,f +20831,,Gibraltar,3.0,t +3958,100%,United Kingdom,1.0,t +32713,,Kiribati,2.0,t +47233,100%,Saint Helena,3.0,t +1147,,Tonga,1.0,t +47254,50%,,2.0,t +48603,100%,Guinea,40.0,f +18824,100%,,1.0,t +13723,100%,Gambia,4.0,t +49518,,,1.0,f +4878,,Micronesia,1.0,t +8094,,Sao Tome and Principe,1.0,f +24007,100%,Uganda,4.0,t +35674,,Niue,1.0,f +41067,,Turkmenistan,2.0,t +8705,,Lebanon,1.0,f +18971,91%,,1.0,f +7359,,Lebanon,2.0,t +33832,0%,Denmark,7.0,t +39504,,France,1.0,f +21827,,,1.0,t +879,,,1.0,f +16334,,China,1.0,f +31715,100%,Tonga,1.0,f +10279,,,1.0,t +33717,,French Guiana,1.0,t +14124,100%,,2.0,t +10179,100%,,2.0,f +8156,,Russian Federation,3.0,f +10277,67%,,1.0,f +15378,100%,Gambia,1.0,t +36938,,Tonga,1.0,f +44815,100%,Slovakia (Slovak Republic),1.0,f +18086,,,1.0,t +17922,100%,Jersey,2.0,t +45240,,,1.0,t +27894,,Zimbabwe,1.0,f +8412,100%,,1.0,f +11999,,,1.0,f +24597,100%,,1.0,t +38215,100%,,1.0,f +44666,100%,Uzbekistan,1.0,t +7091,100%,Korea,1.0,f +18646,,,1.0,t +2339,100%,Marshall Islands,3.0,t +21964,,Peru,1.0,f +5050,,,1.0,t +46141,100%,,3.0,f +46210,,French Guiana,1.0,t +27538,,Russian Federation,1.0,f +18113,,Greenland,1.0,t +38654,100%,Jersey,2.0,f +33832,0%,Denmark,7.0,t +29508,,,1.0,f +33832,0%,Denmark,7.0,t +19600,100%,Uzbekistan,1.0,t +30490,100%,Venezuela,2.0,t +27301,,French Guiana,2.0,t +28905,,,1.0,t +21899,,Isle of Man,1.0,t +39512,,Kenya,1.0,t +30566,,France,1.0,f +16279,100%,Uzbekistan,1.0,t +17922,100%,Jersey,2.0,t +31575,,,1.0,t +47233,100%,Saint Helena,3.0,t +23106,100%,,3.0,f +23480,100%,,3.0,t +14456,,Turkmenistan,1.0,t +8577,100%,Malta,1.0,t +42819,100%,Lebanon,2.0,f +35154,,Kiribati,1.0,t +19633,,Brazil,1.0,t +46978,,El Salvador,1.0,f +27809,,Zimbabwe,1.0,t +39466,,,1.0,f +29449,86%,Bosnia and Herzegovina,1.0,f +15903,,,1.0,t +45665,100%,Lithuania,1.0,t +10856,40%,,1.0,f +8917,,Rwanda,1.0,f +33302,,Micronesia,1.0,t +43792,,Russian Federation,1.0,t +15595,,,1.0,f +17088,,Korea,1.0,t +44022,,,1.0,f +48603,100%,Guinea,40.0,f +28828,100%,Isle of Man,198.0,t +35795,100%,Vanuatu,2.0,t +9501,90%,,2.0,f +45651,0%,,1.0,f +39514,,Philippines,1.0,t +13998,,,1.0,t +28629,100%,,2.0,t +35892,,El Salvador,1.0,f +2409,100%,,3.0,t +6610,,Guinea,1.0,t +37224,,El Salvador,2.0,f +26249,,Cuba,2.0,t +39449,100%,Rwanda,1.0,f +39342,100%,Micronesia,3.0,f +48505,,Chad,1.0,f +10105,,Faroe Islands,1.0,f +2402,,,1.0,f +13355,,Maldives,1.0,f +8971,,,1.0,t +29113,,Gambia,1.0,f +49454,,Uzbekistan,2.0,t +36535,100%,Mauritania,1.0,f +46007,100%,,1.0,f +10233,,Barbados,2.0,f +33019,,,1.0,t +12506,,Ghana,3.0,t +46832,100%,Niue,2.0,t +17268,,Mexico,1.0,t +2051,70%,Fiji,4.0,f +48010,100%,Jersey,1.0,f +29114,,Monaco,1.0,f +45676,,Tanzania,1.0,f +49751,100%,,2.0,f +8016,100%,French Guiana,1.0,t +17043,100%,Monaco,1.0,f +23833,100%,Barbados,1.0,f +9319,,French Guiana,1.0,t +48636,,Monaco,1.0,f +15410,100%,Gambia,1.0,f +11255,93%,Suriname,41.0,f +36664,,Gibraltar,1.0,t +9623,,Somalia,1.0,f +10075,90%,Jersey,2.0,f +46314,100%,Russian Federation,1.0,t +31766,,Jersey,1.0,f +18427,,,1.0,f +42654,100%,,1.0,t +18567,,Nicaragua,1.0,t +42884,,Netherlands Antilles,1.0,t +6947,100%,Afghanistan,1.0,f +29682,,China,1.0,t +44727,,Chile,1.0,t +6117,,Mauritania,1.0,t +2266,100%,Tonga,10.0,t +4403,,Turkmenistan,1.0,f +13130,100%,,1.0,t +43099,,,1.0,f +7618,,,1.0,t +7367,,,1.0,t +8244,,Togo,2.0,t +39108,,Puerto Rico,1.0,f +32135,100%,Libyan Arab Jamahiriya,1.0,t +27933,100%,Sao Tome and Principe,1.0,f +23739,,Uzbekistan,1.0,f +27608,,,1.0,f +31283,,Guinea,1.0,t +13106,,Marshall Islands,1.0,f +47875,,Turks and Caicos Islands,2.0,f +26014,,,1.0,f +32739,,,1.0,t +9400,,,1.0,f +47169,100%,French Polynesia,1.0,f +28828,100%,Isle of Man,198.0,t +30565,100%,Venezuela,1.0,f +37646,100%,Estonia,60.0,f +28183,,,5.0,f +37646,100%,Estonia,60.0,f +12178,,,1.0,f +43588,100%,Fiji,7.0,f +20064,,Montserrat,1.0,f +9594,,Nicaragua,1.0,t +49210,,,1.0,f +44201,,Rwanda,1.0,f +4439,,Chad,3.0,t +39472,,,2.0,t +6725,,Lebanon,2.0,t +43111,,Tonga,1.0,f +22331,99%,Rwanda,50.0,t +36547,,Turks and Caicos Islands,1.0,t +7661,100%,Venezuela,1.0,f +30432,0%,,1.0,f +1972,,,1.0,f +33703,100%,French Guiana,1.0,f +11072,,Russian Federation,1.0,f +43394,,Russian Federation,1.0,f +38057,,Chad,1.0,f +21147,,,2.0,t +21566,,Rwanda,1.0,t +21480,,Faroe Islands,1.0,f +24836,100%,Kiribati,4.0,f +16959,,Marshall Islands,1.0,f +41878,91%,Maldives,47.0,f +32355,,Svalbard & Jan Mayen Islands,1.0,t +41008,100%,Venezuela,6.0,f +31810,,Chile,1.0,t +12321,100%,,1.0,f +9056,,Marshall Islands,1.0,t +28258,89%,Bouvet Island (Bouvetoya),2.0,t +2927,100%,Uganda,10.0,t +4503,100%,Guinea,2.0,f +27957,,Niue,1.0,t +35120,,Malta,2.0,t +18379,100%,,1.0,t +12164,100%,Nicaragua,8.0,f +40355,96%,Maldives,8.0,t +18712,95%,Turks and Caicos Islands,11.0,t +9724,100%,,1.0,f +29749,100%,Senegal,1.0,t +31347,,France,1.0,t +17778,100%,Indonesia,3.0,f +35665,,Jersey,2.0,t +27018,,Uzbekistan,1.0,t +12718,100%,Indonesia,2.0,f +37360,,Lithuania,1.0,f +23581,,Russian Federation,1.0,t +4081,100%,,1.0,f +8877,,Micronesia,1.0,f +46089,100%,Sao Tome and Principe,3.0,t +17126,,,1.0,t +6939,,,1.0,t +22696,100%,Gambia,2.0,f +43253,,,1.0,t +9155,,,1.0,f +16371,95%,Bouvet Island (Bouvetoya),29.0,f +21963,,,1.0,f +37646,100%,Estonia,60.0,f +28828,100%,Isle of Man,198.0,t +33832,0%,Denmark,7.0,t +39064,,Nicaragua,1.0,f +33832,0%,Denmark,7.0,t +11459,,Micronesia,1.0,f +35770,,Russian Federation,1.0,t +23712,,Russian Federation,1.0,f +16309,,,1.0,f +46765,,Croatia,2.0,f +9842,,Netherlands Antilles,1.0,t +44129,,Senegal,2.0,f +33313,,Djibouti,1.0,f +27630,100%,French Guiana,1.0,t +31883,,Uganda,1.0,t +18077,100%,Sao Tome and Principe,139.0,f +401,,Mexico,1.0,f +39739,,Afghanistan,1.0,f +35411,100%,Mauritania,2.0,f +32923,,Cocos (Keeling) Islands,1.0,f +4424,,Malawi,1.0,t +21749,,,1.0,f +24026,98%,Cape Verde,69.0,t +35784,,,1.0,t +49868,100%,,2.0,t +23493,,Vanuatu,1.0,f +30488,,Croatia,1.0,t +14005,,Faroe Islands,1.0,f +19976,,Cape Verde,1.0,t +4876,,Senegal,9.0,f +39515,100%,United Kingdom,5.0,t +8244,,Togo,2.0,t +22001,,,1.0,t +1437,,,1.0,f +4876,,Senegal,9.0,f +12075,,Zimbabwe,1.0,f +45019,50%,,1.0,t +12495,,Lebanon,1.0,t +8736,,Niue,1.0,t +47308,100%,,1.0,f +47384,100%,Vanuatu,2.0,f +44858,,Niger,1.0,t +41866,100%,,4.0,t +21445,100%,,1.0,t +24529,,Maldives,2.0,f +47241,,Togo,3.0,f +5579,,Anguilla,1.0,f +18771,,Russian Federation,1.0,f +12739,,Vanuatu,1.0,t +19981,,,1.0,f +35415,,Isle of Man,1.0,f +12974,,Venezuela,1.0,t +19944,100%,Kiribati,12.0,f +44100,100%,Niue,1.0,f +12704,,Kenya,1.0,t +2488,100%,Slovakia (Slovak Republic),1.0,t +31415,,Tonga,4.0,t +43789,,,1.0,f +31415,,Tonga,4.0,t +2266,100%,Tonga,10.0,t +6462,100%,,1.0,f +42810,,Niue,1.0,t +46633,,Nicaragua,1.0,f +7498,,Zimbabwe,2.0,t +19217,98%,Marshall Islands,46.0,f +2927,100%,Uganda,10.0,t +12220,,El Salvador,1.0,t +40336,,Rwanda,2.0,f +39623,100%,Niger,3.0,t +31249,,,1.0,f +47857,,French Guiana,1.0,t +46615,100%,,1.0,t +44924,,Niue,1.0,f +17136,,Niue,1.0,f +28056,,,1.0,t +13485,100%,Malta,2.0,t +15934,,Niue,2.0,f +15934,,Niue,2.0,f +32531,100%,Togo,4.0,f +42450,100%,Jersey,1.0,t +1027,,Gibraltar,1.0,t +7756,70%,Isle of Man,2.0,t +45642,40%,Nicaragua,1.0,f +48061,,Russian Federation,1.0,t +13067,,Isle of Man,1.0,f +23173,100%,Nicaragua,1.0,f +36387,,,1.0,f +4159,,Niue,1.0,f +3600,,,1.0,t +26352,,Somalia,1.0,f +43440,,French Guiana,1.0,t +44066,,Philippines,1.0,t +32986,100%,,1.0,t +32675,100%,Kiribati,4.0,t +44478,,Bouvet Island (Bouvetoya),1.0,t +31899,100%,Bouvet Island (Bouvetoya),6.0,f +34670,,Niue,1.0,f +48208,100%,,2.0,f +24204,,Maldives,1.0,t +4824,,,1.0,f +12132,100%,,1.0,t +29647,100%,Peru,1305.0,f +10711,93%,Uganda,108.0,t +45103,100%,,1.0,t +1971,,Somalia,1.0,f +32675,100%,Kiribati,4.0,t +46408,,,1.0,f +24903,,French Guiana,1.0,t +2267,,,1.0,f +1004,,Holy See (Vatican City State),2.0,t +44798,,United Kingdom,1.0,f +23380,100%,Tonga,2.0,f +13342,,Denmark,1.0,t +50018,,Rwanda,1.0,f +35319,,Micronesia,1.0,f +19730,,Bahrain,1.0,t +24627,90%,,1.0,t +46347,,Somalia,6.0,t +17015,100%,France,1.0,t +36243,,,1.0,f +32390,,,1.0,f +9282,100%,Slovakia (Slovak Republic),34.0,f +17604,67%,,1.0,t +49353,,,1.0,t +17013,100%,,1.0,f +11959,100%,Gibraltar,2.0,t +32042,,Tonga,1.0,t +7988,100%,Mauritania,1.0,f +42386,100%,Ecuador,6.0,t +18806,100%,Vietnam,6.0,t +11000,,Brunei Darussalam,1.0,f +10759,,Ecuador,1.0,t +33611,,Canada,1.0,t +41328,90%,French Guiana,1.0,t +48564,100%,Vanuatu,1.0,t +10593,,Netherlands,1.0,f +43705,,,1.0,f +11531,,Marshall Islands,2.0,t +15582,,,1.0,f +24801,,,1.0,t +34553,100%,Tonga,1.0,t +24043,,Chad,1.0,t +41463,75%,Zimbabwe,1.0,t +30282,,Rwanda,1.0,f +42574,,Jersey,10.0,t +6293,,Sao Tome and Principe,1.0,f +24555,0%,,1.0,f +42784,,,1.0,t +41273,,Bosnia and Herzegovina,1.0,f +42745,100%,,1.0,t +27014,,Denmark,1.0,t +30627,,Ghana,1.0,f +42580,100%,Costa Rica,3.0,f +970,100%,Marshall Islands,2.0,f +9804,100%,Russian Federation,1.0,f +1984,,Mauritania,3.0,t +13049,100%,,1.0,t +40355,96%,Maldives,8.0,t +9233,,Greenland,1.0,f +27742,,Kiribati,1.0,t +42574,,Jersey,10.0,t +42574,,Jersey,10.0,t +6640,,Micronesia,1.0,f +17744,,Nicaragua,1.0,t +36513,,Tonga,1.0,t +28229,100%,Russian Federation,1.0,t +12333,100%,,1.0,t +4904,100%,Guinea,1.0,f +11625,,French Guiana,1.0,t +435,,Somalia,1.0,t +5872,,,1.0,f +25705,,Russian Federation,1.0,t +12483,,,1.0,t +16700,,Svalbard & Jan Mayen Islands,1.0,f +27252,100%,Russian Federation,1.0,f +41051,100%,Gambia,1.0,t +33425,,,1.0,f +14783,100%,Nicaragua,1.0,t +11638,,,1.0,f +29234,100%,Togo,9.0,t +49482,,Vietnam,1.0,t +27186,100%,Zimbabwe,7.0,t +35760,,Isle of Man,1.0,t +29783,,Russian Federation,1.0,t +33231,100%,Sao Tome and Principe,2.0,f +4200,100%,Turks and Caicos Islands,1.0,t +1298,100%,,1.0,t +41071,100%,Faroe Islands,1.0,f +3737,,Turkmenistan,1.0,f +34715,,Guinea,1.0,t +49616,,Ukraine,1.0,t +40710,90%,Russian Federation,3.0,t +39571,67%,Togo,2.0,f +25933,100%,Slovenia,1.0,t +27290,100%,Brazil,3.0,f +24774,,,1.0,t +14946,,Somalia,1.0,t +1238,100%,,1.0,t +32686,78%,Micronesia,2.0,t +34509,,Gibraltar,1.0,f +18983,50%,,1.0,f +24473,,Costa Rica,17.0,f +42774,,Guinea,1.0,t +44144,100%,,1.0,f +1232,100%,,21.0,f +25886,,France,1.0,f +49733,,,1.0,t +28101,67%,Gibraltar,1.0,f +31711,,,1.0,f +27603,100%,Pakistan,1.0,t +23022,67%,Niue,10.0,t +19175,,,1.0,f +49155,,Russian Federation,1.0,f +45007,100%,Niue,1.0,f +49926,,Marshall Islands,3.0,f +4599,,,1.0,f +29051,,Maldives,1.0,t +44531,,Cocos (Keeling) Islands,2.0,f +45902,,Sao Tome and Principe,5.0,t +9966,,Chad,1.0,f +42173,100%,Turkmenistan,1.0,t +45902,,Sao Tome and Principe,5.0,t +41166,80%,,1.0,f +48292,,,1.0,f +28070,,Isle of Man,2.0,t +45902,,Sao Tome and Principe,5.0,t +5466,100%,,1.0,t +35658,,Zimbabwe,1.0,f +29050,,,1.0,t +40078,100%,Croatia,7.0,t +46034,,,3.0,f +10817,96%,Slovakia (Slovak Republic),3.0,t +18875,100%,,1.0,f +10817,96%,Slovakia (Slovak Republic),3.0,t +47103,100%,,1.0,f +18285,,Niue,1.0,t +33903,,Togo,2.0,t +1000,,French Guiana,1.0,t +32950,,Zimbabwe,1.0,t +40483,50%,Niue,1.0,f +1358,,,1.0,f +34961,,United Kingdom,1.0,t +136,,,1.0,t +10711,93%,Uganda,108.0,t +35514,,French Guiana,1.0,f +41936,90%,Afghanistan,1.0,t +10711,93%,Uganda,108.0,t +23473,,Niue,1.0,t +8258,,Guinea,1.0,t +38938,100%,Zimbabwe,1.0,t +40069,,France,1.0,t +3195,,,1.0,f +19394,,,1.0,f +12219,,Jersey,1.0,f +26946,100%,,2.0,f +2541,100%,Ecuador,1.0,t +19842,85%,Turkmenistan,53.0,f +19420,,,1.0,f +19842,85%,Turkmenistan,53.0,f +46481,,Philippines,4.0,t +14579,100%,Uzbekistan,1.0,t +8394,,,1.0,t +28183,,,5.0,f +17511,88%,Niue,1.0,f +28070,,Isle of Man,2.0,t +4037,100%,Kiribati,11.0,f +5364,100%,,1.0,f +14083,100%,,2.0,t +48756,100%,Maldives,59.0,f +48712,,Rwanda,1.0,f +11924,,,3.0,f +2507,,Gambia,1.0,f +38790,,,1.0,t +975,100%,,1.0,f +8862,100%,Nicaragua,3.0,f +27230,,Tonga,1.0,t +19842,85%,Turkmenistan,53.0,f +34306,91%,Wallis and Futuna,30.0,t +29034,100%,Tonga,1.0,f +31117,80%,Croatia,3.0,t +40674,100%,Maldives,3.0,f +44746,,Russian Federation,1.0,f +37665,100%,Wallis and Futuna,4.0,t +9282,100%,Slovakia (Slovak Republic),34.0,f +2634,,Russian Federation,1.0,t +22020,,,1.0,f +27718,100%,,1.0,t +12411,,,1.0,t +7194,,,1.0,f +45225,,Sao Tome and Principe,1.0,f +10817,96%,Slovakia (Slovak Republic),3.0,t +17935,,,1.0,f +26946,100%,,2.0,f +19842,85%,Turkmenistan,53.0,f +6526,,Lebanon,2.0,t +19842,85%,Turkmenistan,53.0,f +19842,85%,Turkmenistan,53.0,f +47149,,United Kingdom,1.0,f +32090,100%,,1.0,t +29513,,Netherlands,1.0,f +19842,85%,Turkmenistan,53.0,f +19842,85%,Turkmenistan,53.0,f +29254,100%,Russian Federation,1.0,t +7778,100%,Mauritania,7.0,t +19842,85%,Turkmenistan,53.0,f +19842,85%,Turkmenistan,53.0,f +32467,100%,Lithuania,3.0,t +48683,100%,Uzbekistan,2.0,t +43588,100%,Fiji,7.0,f +12891,,Lebanon,1.0,t +42723,,Denmark,1.0,f +21489,100%,,1.0,f +45701,100%,Nauru,2.0,f +30733,100%,Malawi,1.0,t +21315,100%,Uzbekistan,2.0,f +14623,,Afghanistan,1.0,f +46293,,,1.0,f +36730,,,2.0,f +5827,,Anguilla,1.0,t +46278,,,1.0,f +47120,100%,Philippines,1.0,t +45859,,Guinea,1.0,f +20679,,Chile,1.0,f +37545,,Saint Helena,1.0,f +11660,100%,Marshall Islands,1.0,f +43956,,,1.0,t +44078,,Indonesia,1.0,f +35472,100%,Senegal,1.0,t +13616,,Bahrain,1.0,f +41320,,China,1.0,t +20808,90%,Gambia,3.0,t +35704,100%,Papua New Guinea,5.0,t +16371,95%,Bouvet Island (Bouvetoya),29.0,f +33450,100%,Jersey,1.0,t +21371,,Guinea,2.0,f +37845,14%,,1.0,t +42914,100%,Cocos (Keeling) Islands,2.0,f +26908,,,1.0,t +3041,,Estonia,1.0,f +37198,,United Kingdom,1.0,t +899,,Jersey,2.0,t +1150,,Nauru,4.0,t +9282,100%,Slovakia (Slovak Republic),34.0,f +28755,100%,Brazil,1.0,f +18964,100%,Marshall Islands,2.0,f +7885,,French Polynesia,1.0,f +39743,,Lebanon,1.0,f +33721,100%,,1.0,t +32642,,Canada,1.0,f +26937,,Chad,1.0,f +31805,99%,Mauritania,20.0,f +1518,,,1.0,f +28073,100%,Marshall Islands,1.0,t +47659,,Isle of Man,1.0,f +10572,100%,Niue,1.0,f +31805,99%,Mauritania,20.0,f +45464,,Isle of Man,2.0,f +41299,,Russian Federation,1.0,t +7913,,Sao Tome and Principe,1.0,f +22657,100%,United Kingdom,1.0,f +25396,100%,Montserrat,2.0,f +26618,,Gibraltar,1.0,t +27832,,El Salvador,1.0,f +31983,100%,French Guiana,1.0,f +19747,,Gibraltar,1.0,f +20145,100%,Togo,1.0,t +37658,100%,,1.0,t +18283,,Barbados,2.0,t +46157,100%,,2.0,t +43939,,Vanuatu,1.0,t +14799,100%,,1.0,f +8686,100%,Tanzania,1.0,f +29196,100%,Gambia,1.0,f +33595,,,1.0,t +34155,100%,Tonga,4.0,t +18430,,Lebanon,2.0,t +15866,100%,Papua New Guinea,2.0,f +20424,,Turkmenistan,1.0,t +10753,,Chad,1.0,f +21934,0%,,1.0,t +10949,,Bosnia and Herzegovina,1.0,f +23103,,Micronesia,1.0,f +22778,100%,,1.0,f +3937,100%,Russian Federation,1.0,t +38584,100%,,1.0,t +16677,,Rwanda,3.0,t +20789,98%,Sao Tome and Principe,13.0,f +46724,100%,Netherlands,2.0,t +14335,,Holy See (Vatican City State),2.0,t +29006,,Guernsey,1.0,t +18835,,,1.0,f +34425,100%,Isle of Man,1.0,f +3002,,,1.0,t +9655,100%,,2.0,f +13214,,,1.0,f +23151,100%,Andorra,3.0,f +23813,,Jersey,1.0,t +32710,,Nauru,1.0,t +31490,,Gambia,1.0,f +23684,,,1.0,t +39142,,,1.0,f +43761,100%,,1.0,t +24123,,,1.0,t +15866,100%,Papua New Guinea,2.0,f +28048,100%,,5.0,f +28048,100%,,5.0,f +12531,,Niue,1.0,f +5152,,Venezuela,1.0,f +2921,,Cuba,2.0,t +1068,100%,France,1.0,t +33287,,Russian Federation,1.0,t +37191,100%,Guinea,3.0,t +6298,,Brazil,1.0,f +7201,100%,Denmark,1.0,f +23112,100%,Micronesia,1.0,f +1466,,Chad,1.0,t +47983,100%,,1.0,f +17512,100%,Anguilla,2.0,t +44961,0%,,1.0,f +14065,100%,Guinea,2.0,t +45947,,Isle of Man,1.0,t +49192,100%,Monaco,2.0,f +39784,,,1.0,f +36730,,,2.0,f +9389,100%,,1.0,f +22121,,,2.0,f +43580,100%,,1.0,f +24499,92%,Marshall Islands,1.0,f +35097,,Costa Rica,1.0,t +9459,,,1.0,t +34404,100%,Malta,1.0,f +31719,100%,Pakistan,1.0,t +40050,,Somalia,2.0,f +32736,100%,Maldives,1.0,f +22687,100%,Russian Federation,1.0,f +46072,100%,,1.0,t +43161,,Micronesia,1.0,f +40050,,Somalia,2.0,f +23467,80%,,4.0,t +25533,,Gibraltar,1.0,t +22724,,Venezuela,1.0,t +42820,100%,Gibraltar,6.0,f +35930,,Montserrat,1.0,t +46805,43%,Marshall Islands,1.0,t +33969,,Niue,1.0,f +4557,,,1.0,t +42820,100%,Gibraltar,6.0,f +49770,100%,Zimbabwe,1.0,f +31407,,,1.0,f +40956,,Kenya,1.0,t +4627,50%,Moldova,1.0,f +34823,,Russian Federation,1.0,t +33229,100%,,1.0,f +3284,100%,Kiribati,4.0,f +40158,,Marshall Islands,1.0,t +3874,,,1.0,t +48021,,Chile,1.0,f +41206,,Micronesia,1.0,f +19164,,Isle of Man,1.0,t +8373,,Malta,1.0,t +49590,,Micronesia,1.0,f +6410,100%,,1.0,f +13036,100%,Tonga,2.0,t +16097,100%,,1.0,t +30615,100%,Svalbard & Jan Mayen Islands,1.0,f +45515,,,1.0,f +34358,50%,Marshall Islands,2.0,f +12071,,,1.0,t +34984,,Suriname,1.0,f +22631,,,1.0,f +33824,100%,,1.0,t +25817,,,1.0,t +19173,0%,,1.0,f +28205,,Iraq,22.0,f +38551,,,1.0,f +32692,,Venezuela,1.0,f +48528,,Holy See (Vatican City State),1.0,t +18077,100%,Sao Tome and Principe,139.0,f +25699,,Isle of Man,1.0,t +43342,100%,Finland,2.0,t +19557,100%,Kiribati,1.0,f +26726,,Niue,1.0,f +42236,,Anguilla,2.0,t +18661,83%,Niue,1.0,f +21134,,United Kingdom,1.0,f +12715,100%,Estonia,29.0,f +11290,100%,Reunion,12.0,f +12715,100%,Estonia,29.0,f +48950,100%,,1.0,t +44840,100%,,2.0,t +28828,100%,Isle of Man,198.0,t +21411,100%,Marshall Islands,2.0,f +3038,100%,Niue,1.0,f +37401,60%,Russian Federation,1.0,f +13880,,Korea,1.0,f +23624,,Holy See (Vatican City State),1.0,f +11290,100%,Reunion,12.0,f +6595,100%,Monaco,1.0,t +2464,,Rwanda,1.0,f +20614,,,1.0,t +11731,,,1.0,t +47380,100%,Russian Federation,4.0,f +34317,100%,Turkmenistan,1.0,t +23600,,Nicaragua,1.0,t +35172,100%,Barbados,1.0,t +44276,100%,Togo,13.0,t +15090,,,1.0,t +38292,88%,Tunisia,1.0,t +241,,Korea,1.0,f +31829,,Philippines,1.0,f +45464,,Isle of Man,2.0,f +35573,,Greenland,1.0,t +16026,,,1.0,f +16519,,Cocos (Keeling) Islands,1.0,f +50027,,Maldives,1.0,t +32148,,Nicaragua,1.0,t +19694,100%,,1.0,t +14083,100%,,2.0,t +15371,,,1.0,f +47280,,,1.0,t +17085,,Djibouti,1.0,t +40723,,,1.0,t +2873,,,1.0,f +18806,100%,Vietnam,6.0,t +6107,90%,Kiribati,4.0,f +6107,90%,Kiribati,4.0,f +5771,98%,Vietnam,8.0,f +5771,98%,Vietnam,8.0,f +45494,,French Guiana,1.0,t +28590,,Mauritania,1.0,t +25534,90%,Indonesia,5.0,t +21729,,Micronesia,1.0,f +5075,,,1.0,f +10730,80%,,2.0,t +43555,,Peru,1.0,f +5999,100%,Denmark,2.0,t +3091,,El Salvador,1.0,t +21826,,,1.0,t +17869,100%,Reunion,5.0,t +38065,,,1.0,f +11180,,French Guiana,1.0,f +39068,100%,Djibouti,6.0,t +576,,French Guiana,1.0,t +38651,50%,Slovakia (Slovak Republic),2.0,f +8707,73%,Rwanda,21.0,t +12852,100%,Guinea,1.0,t +25059,100%,Russian Federation,3.0,t +13058,,Mexico,1.0,t +24076,,,1.0,t +36025,100%,Djibouti,6.0,t +43212,67%,,1.0,f +45097,100%,Gambia,1.0,t +48920,100%,,3.0,t +3417,,Fiji,32.0,t +5678,,,1.0,t +3155,,,3.0,t +27007,0%,,1.0,t +33508,100%,,1.0,f +27715,,Kenya,1.0,t +9281,,,2.0,t +18304,,Estonia,1.0,t +21705,14%,,1.0,f +48393,100%,,1.0,t +18587,,,1.0,f +28004,100%,,1.0,t +46854,100%,,1.0,f +44703,86%,,1.0,t +45211,100%,Micronesia,2.0,t +42192,,Nicaragua,1.0,t +42309,,,1.0,f +15747,,Vanuatu,1.0,t +13540,100%,Uganda,2.0,f +14761,80%,Uzbekistan,1.0,t +42931,,,1.0,t +19207,,Isle of Man,1.0,f +29647,100%,Peru,1305.0,f +20664,100%,Nauru,4.0,f +42390,100%,Wallis and Futuna,96.0,t +15450,,Niue,1.0,f +5244,100%,,2.0,t +24048,,,1.0,f +808,,Venezuela,1.0,f +9222,100%,Brazil,18.0,t +14511,100%,Uganda,1.0,t +44983,50%,Lebanon,1.0,t +48872,,,3.0,t +33633,100%,China,8.0,f +29984,,Montserrat,1.0,t +36552,,Maldives,4.0,f +47594,100%,Kenya,17.0,t +39839,100%,Cook Islands,3.0,t +49193,100%,Faroe Islands,1.0,f +34847,100%,Niue,1.0,f +41408,,,1.0,t +16704,,,1.0,t +47067,100%,United Kingdom,1.0,f +17356,,,1.0,f +17562,100%,Gambia,1.0,f +19030,,,1.0,f +44178,,,1.0,f +16120,,,1.0,t +49968,,,1.0,f +50059,100%,Barbados,7.0,f +2190,,,1.0,f +10013,,Marshall Islands,2.0,t +47354,100%,Vanuatu,1.0,t +35992,,Uganda,1.0,t +32930,100%,,1.0,f +14094,,,1.0,t +12625,,Indonesia,1.0,t +37276,,Saint Helena,1.0,f +23343,,,1.0,t +42490,,Lebanon,1.0,f +28887,100%,Ghana,8.0,f +23948,100%,,2.0,t +11810,,French Guiana,1.0,t +19530,,,1.0,t +45771,,,1.0,f +45718,100%,,2.0,t +42574,,Jersey,10.0,t +47454,100%,France,1.0,f +28887,100%,Ghana,8.0,f +42574,,Jersey,10.0,t +42574,,Jersey,10.0,t +8250,100%,,2.0,f +21962,,,1.0,t +40929,,Zimbabwe,1.0,t +15193,100%,Tanzania,2.0,t +13790,,Niue,1.0,f +46214,,,1.0,t +25975,,Sao Tome and Principe,1.0,t +42249,,,1.0,f +34694,90%,Malta,2.0,t +27668,46%,Micronesia,3.0,f +20301,,Niue,2.0,t +20185,,Guinea,1.0,f +7702,70%,Russian Federation,3.0,t +1694,,Lebanon,1.0,f +49650,,Isle of Man,1.0,t +41068,,,1.0,t +22750,,Barbados,4.0,t +5251,100%,Brazil,2.0,f +11827,90%,Venezuela,2.0,t +40474,74%,Russian Federation,3.0,f +34949,83%,,4.0,f +42574,,Jersey,10.0,t +42574,,Jersey,10.0,t +42574,,Jersey,10.0,t +42574,,Jersey,10.0,t +3127,100%,Rwanda,36.0,f +3127,100%,Rwanda,36.0,f +8531,,,1.0,f +41541,100%,,1.0,t +10878,100%,,1.0,f +26337,,,1.0,t +19763,90%,,1.0,t +2967,100%,,1.0,t +16568,,,1.0,f +43159,100%,,1.0,f +30689,70%,Pitcairn Islands,2.0,t +11646,100%,Gambia,2.0,f +3082,,Chad,1.0,t +3672,,Bouvet Island (Bouvetoya),1.0,t +43130,100%,Puerto Rico,5.0,f +6122,,,1.0,f +18010,,Reunion,1.0,t +42570,,,1.0,f +11530,,Indonesia,2.0,t +7773,,Kenya,7.0,f +29647,100%,Peru,1305.0,f +35491,100%,,2.0,f +6958,,Bosnia and Herzegovina,1.0,f +37170,100%,Turks and Caicos Islands,2.0,f +13929,100%,,1.0,t +46491,,Venezuela,12.0,t +42747,,,2.0,t +19223,100%,Malta,1.0,t +17940,67%,,1.0,f +9655,100%,,2.0,f +27214,,Tonga,1.0,t +37182,,,2.0,f +46491,,Venezuela,12.0,t +3207,,Monaco,1.0,f +24016,100%,Bosnia and Herzegovina,29.0,f +288,100%,,1.0,f +2178,100%,Jersey,2.0,t +20051,100%,,1.0,t +967,100%,Netherlands,1.0,t +46800,,Uzbekistan,1.0,f +13516,,,1.0,t +50019,100%,,1.0,f +34936,,Maldives,1.0,t +35795,100%,Vanuatu,2.0,t +11765,100%,,2.0,f +19448,100%,French Guiana,1.0,t +15036,100%,Micronesia,1.0,f +11765,100%,,2.0,f +20831,,Gibraltar,3.0,t +15993,50%,,1.0,t +29071,,Micronesia,1.0,f +33183,,,1.0,f +26708,100%,,1.0,t +19788,,Anguilla,1.0,f +19944,100%,Kiribati,12.0,f +23467,80%,,4.0,t +35361,100%,Brazil,1.0,t +35752,100%,Tonga,2.0,t +40041,,Tuvalu,3.0,t +14065,100%,Guinea,2.0,t +22511,,Nicaragua,1.0,f +8033,,,1.0,f +30574,,El Salvador,2.0,t +12020,100%,Congo,4.0,t +17795,100%,Uzbekistan,11.0,t +49111,100%,,2.0,t +35215,,Maldives,1.0,f +36823,100%,Russian Federation,2.0,t +19361,,Bosnia and Herzegovina,1.0,t +25747,,Zimbabwe,4.0,f +19855,100%,Kiribati,37.0,t +42800,100%,Tunisia,5.0,t +2220,,,1.0,t +37278,,,1.0,t +10619,,,1.0,f +29234,100%,Togo,9.0,t +30901,100%,Indonesia,2.0,t +20002,,,1.0,f +42800,100%,Tunisia,5.0,t +18892,100%,Gibraltar,2.0,t +27622,,Niue,1.0,t +18526,100%,,2.0,f +48926,100%,,1.0,t +25077,100%,France,1.0,t +1484,100%,Gibraltar,2.0,f +2727,67%,Jersey,1.0,f +20819,,,2.0,t +19534,50%,Uganda,3.0,t +47253,100%,Indonesia,1.0,t +24535,,,1.0,t +46159,,,1.0,t +47450,100%,,1.0,t +44578,100%,Niue,2.0,t +16364,,,3.0,t +41578,100%,,1.0,t +46551,100%,Russian Federation,1.0,f +27884,50%,Marshall Islands,1.0,f +16017,,Micronesia,1.0,t +20504,100%,Uzbekistan,1.0,t +34090,,,1.0,t +9178,70%,French Guiana,2.0,f +31962,100%,Russian Federation,1.0,f +31393,29%,,1.0,f +28804,100%,,1.0,t +20418,67%,Korea,1.0,t +43890,,,1.0,t +43672,,,1.0,t +48341,70%,,1.0,t +18960,92%,,1.0,f +7169,,,2.0,f +47271,,Russian Federation,2.0,f +10454,0%,,1.0,f +13428,100%,Isle of Man,1.0,f +25059,100%,Russian Federation,3.0,t +25059,100%,Russian Federation,3.0,t +40900,,,3.0,f +40900,,,3.0,f +45072,90%,Isle of Man,1.0,f +28183,,,5.0,f +40226,,,1.0,f +21429,,Tonga,2.0,f +9926,100%,Uganda,19.0,f +10887,67%,Russian Federation,1.0,f +17984,,,1.0,f +6953,,,1.0,f +336,100%,Ecuador,7.0,f +40566,,,1.0,t +32874,,Monaco,1.0,f +17914,,Marshall Islands,3.0,t +11509,100%,Uganda,6.0,f +3798,100%,,2.0,f +29607,,Russian Federation,2.0,t +336,100%,Ecuador,7.0,f +33935,,,1.0,t +20098,,Niue,1.0,t +49411,100%,Canada,4.0,f +36670,,,2.0,f +6838,96%,Spain,59.0,t +49177,,Anguilla,2.0,t +13587,,Niger,2.0,t +16289,,Portugal,3.0,t +4148,,United Kingdom,2.0,t +18666,,Cocos (Keeling) Islands,2.0,t +16802,100%,,1.0,f +4148,,United Kingdom,2.0,t +28205,,Iraq,22.0,f +47255,,Lebanon,1.0,f +594,100%,Cuba,2.0,f +38732,,Chad,2.0,t +38511,100%,Puerto Rico,1.0,t +41192,100%,French Guiana,1.0,f +9926,100%,Uganda,19.0,f +38731,,Sao Tome and Principe,1.0,f +34825,100%,,1.0,t +9926,100%,Uganda,19.0,f +9926,100%,Uganda,19.0,f +1450,,,1.0,t +4216,,Cuba,9.0,t +18999,100%,Chile,2.0,f +16340,90%,,1.0,f +16525,,Lebanon,1.0,t +5196,,Gambia,2.0,t +36234,97%,Fiji,12.0,t +5057,100%,Zimbabwe,23.0,t +2224,,,3.0,t +19070,,Sao Tome and Principe,1.0,t +4216,,Cuba,9.0,t +37433,100%,,1.0,f +18403,,Estonia,2.0,f +23272,,,1.0,f +10411,,Isle of Man,1.0,f +50074,100%,Montserrat,8.0,f +50074,100%,Montserrat,8.0,f +4216,,Cuba,9.0,t +2224,,,3.0,t +7922,100%,Canada,1.0,f +5591,99%,Indonesia,16.0,t +4216,,Cuba,9.0,t +3721,,Turkmenistan,1.0,f +29241,100%,Lebanon,1.0,f +16165,,France,3.0,f +28687,,China,1.0,t +4216,,Cuba,9.0,t +29168,,,1.0,t +8850,,,1.0,t +40421,96%,Jersey,29.0,t +43303,0%,,1.0,f +14449,,,1.0,f +46100,90%,Rwanda,1.0,f +36031,,Uzbekistan,2.0,f +5451,,,1.0,t +49409,,,1.0,t +37752,80%,Uzbekistan,2.0,t +36627,,,2.0,t +42389,,Gambia,1.0,t +33791,100%,Guinea,2.0,t +23344,100%,Grenada,1.0,f +18592,,,1.0,t +22443,80%,Tanzania,1.0,t +4957,100%,Puerto Rico,1.0,f +10289,,Turkmenistan,1.0,f +32895,100%,Sao Tome and Principe,1.0,f +21315,100%,Uzbekistan,2.0,f +3967,100%,Guernsey,1.0,t +9596,,,1.0,f +13367,100%,Marshall Islands,3.0,t +35055,,,1.0,f +47669,100%,Bahrain,1.0,t +16565,,Denmark,1.0,f +38283,,,1.0,t +28196,,Svalbard & Jan Mayen Islands,3.0,t +47867,100%,,1.0,t +9627,,,1.0,t +23056,100%,Denmark,2.0,f +7773,,Kenya,7.0,f +22691,0%,Marshall Islands,2.0,t +26155,,Niue,2.0,f +48098,,,1.0,t +12340,0%,,1.0,t +1487,,Sao Tome and Principe,1.0,t +43286,,Fiji,8.0,t +15433,40%,United Kingdom,1.0,f +41053,,,1.0,t +16526,,Niue,2.0,t +14519,,Indonesia,1.0,f +33814,,Faroe Islands,9.0,f +46815,,Tanzania,1.0,t +42086,,,1.0,f +27005,,,1.0,t +23500,100%,Brazil,1.0,t +30887,,,2.0,f +18549,,Cape Verde,1.0,t +355,80%,China,9.0,t +23056,100%,Denmark,2.0,f +44728,,,3.0,f +43066,100%,,1.0,t +46882,100%,Turkmenistan,3.0,f +45916,,,1.0,f +5373,,Croatia,1.0,t +43428,73%,Faroe Islands,9.0,t +21271,,,1.0,t +46861,100%,Isle of Man,1.0,t +18175,100%,,1.0,f +41878,91%,Maldives,47.0,f +38522,100%,Sao Tome and Principe,9.0,f +41878,91%,Maldives,47.0,f +19721,100%,Tonga,3.0,t +3351,,Russian Federation,1.0,f +31571,100%,,1.0,t +36556,100%,,1.0,f +17709,50%,,3.0,f +49372,100%,Jersey,1.0,t +34310,,,1.0,t +26015,86%,Russian Federation,1.0,t +41164,,Chile,1.0,f +40411,,,1.0,t +17901,,Russian Federation,1.0,t +32475,,French Guiana,1.0,f +13909,0%,,1.0,f +27017,100%,Senegal,2.0,t +33835,,Monaco,1.0,t +36773,95%,Venezuela,4.0,t +34531,,Chad,1.0,f +3602,100%,,1.0,t +27105,50%,Turkmenistan,1.0,f +15870,,,1.0,f +13645,94%,Mauritania,1.0,f +13352,,Tunisia,1.0,t +47869,100%,Gambia,1.0,f +694,,,1.0,t +28311,100%,,1.0,t +16287,100%,,2.0,f +21552,,Nicaragua,6.0,f +2224,,,3.0,t +33791,100%,Guinea,2.0,t +43962,100%,Tonga,2.0,t +23414,100%,,1.0,t +49182,83%,Tunisia,2.0,t +24896,100%,Algeria,50.0,t +31115,100%,Puerto Rico,1.0,f +24305,100%,,1.0,t +47011,,Malawi,4.0,t +39094,,,1.0,t +16407,,Kiribati,1.0,t +24647,,Guinea,2.0,t +4037,100%,Kiribati,11.0,f +49894,100%,,1.0,t +26760,,Chad,1.0,f +17077,,,1.0,f +31805,99%,Mauritania,20.0,f +44981,100%,Micronesia,1.0,f +40118,,,1.0,t +25136,,,1.0,t +37017,100%,,1.0,t +7773,,Kenya,7.0,f +7773,,Kenya,7.0,f +26818,,Chad,1.0,t +16350,,Uzbekistan,2.0,f +1590,0%,,1.0,t +35704,100%,Papua New Guinea,5.0,t +29100,,Uzbekistan,1.0,f +203,,,1.0,f +39638,,Afghanistan,1.0,f +17493,100%,,2.0,t +46901,,,1.0,t +34034,,Svalbard & Jan Mayen Islands,1.0,t +46882,100%,Turkmenistan,3.0,f +19732,100%,Guinea,1.0,f +36410,,Kenya,1.0,t +28737,,,1.0,f +20744,,Niger,2.0,f +18392,100%,,1.0,f +34901,,Kenya,1.0,f +43700,,,1.0,t +4677,100%,Maldives,2.0,f +47380,100%,Russian Federation,4.0,f +54,,Turkmenistan,2.0,t +38108,100%,Lebanon,2.0,t +15736,,Finland,1.0,f +11207,100%,United Kingdom,6.0,f +35286,100%,,1.0,t +42059,80%,Lebanon,1.0,f +4432,100%,Wallis and Futuna,18.0,f +41222,,Congo,3.0,t +4432,100%,Wallis and Futuna,18.0,f +26827,100%,Isle of Man,1.0,t +141,,Bosnia and Herzegovina,1.0,f +27939,100%,Nauru,2.0,f +14782,,France,1.0,t +45787,100%,,1.0,f +36467,100%,Isle of Man,1.0,f +7663,100%,Christmas Island,1.0,t +9762,100%,,1.0,t +29303,,Montserrat,1.0,t +19569,,Russian Federation,1.0,t +262,97%,Maldives,16.0,t +47953,100%,,1.0,f +18608,100%,Jersey,4.0,t +262,97%,Maldives,16.0,t +3366,90%,Zimbabwe,1.0,t +11207,100%,United Kingdom,6.0,f +11207,100%,United Kingdom,6.0,f +5377,,,1.0,f +11207,100%,United Kingdom,6.0,f +11207,100%,United Kingdom,6.0,f +32994,,,1.0,f +262,97%,Maldives,16.0,t +37920,70%,,17.0,t +17851,,,1.0,t +41029,100%,,1.0,t +41159,,Jersey,1.0,f +13550,,Micronesia,1.0,f +23013,90%,Isle of Man,1.0,f +24396,100%,Venezuela,1.0,f +9984,100%,,1.0,t +21519,100%,Jersey,3.0,f +12853,,Rwanda,4.0,t +18411,100%,,2.0,t +43817,,French Guiana,1.0,t +21904,100%,,1.0,t +37170,100%,Turks and Caicos Islands,2.0,f +22754,100%,Isle of Man,3.0,t +39942,100%,Niue,1.0,f +18776,,Marshall Islands,1.0,f +6718,100%,Estonia,2.0,f +22251,100%,Gambia,11.0,f +46820,100%,,1.0,f +46043,,Chad,3.0,t +31269,,,1.0,f +4438,100%,Denmark,1.0,f +25130,100%,Russian Federation,1.0,t +30980,100%,Palestinian Territory,1.0,t +20854,,Gambia,3.0,f +28038,,Zimbabwe,1.0,t +25872,100%,,1.0,t +30939,,,1.0,f +43962,100%,Tonga,2.0,t +17369,,,1.0,t +28205,,Iraq,22.0,f +7407,,,7.0,t +42679,,Cocos (Keeling) Islands,2.0,t +6506,,,1.0,t +15821,100%,,1.0,f +37156,,Zimbabwe,1.0,t +30889,,,1.0,t +19789,,,1.0,f +37345,,Venezuela,1.0,t +40219,,,1.0,t +24450,100%,Russian Federation,1.0,t +5800,,Niue,1.0,f +673,,,1.0,t +28462,,,1.0,f +40421,96%,Jersey,29.0,t +26640,,,1.0,t +6923,100%,Anguilla,1.0,t +18666,,Cocos (Keeling) Islands,2.0,t +18230,,El Salvador,1.0,f +6105,,,1.0,f +31845,,,1.0,t +25916,100%,,1.0,t +17816,100%,Brazil,1.0,f +15954,,Uzbekistan,1.0,f +8755,,Malawi,1.0,f +40986,,,1.0,t +42400,100%,France,1.0,t +34616,,,1.0,t +49075,,Uzbekistan,1.0,t +29727,100%,Senegal,2.0,f +5268,100%,,1.0,f +38738,75%,,1.0,t +44428,71%,Malta,1.0,f +49711,100%,Senegal,1.0,f +13615,0%,,1.0,t +8140,,,1.0,f +19376,100%,Malawi,2.0,t +48577,,,1.0,t +6211,,,1.0,t +3252,,Rwanda,1.0,t +35860,98%,Vietnam,4.0,t +1359,,,1.0,f +2613,,,2.0,t +30148,,Uzbekistan,1.0,f +4267,100%,Senegal,22.0,t +2605,,El Salvador,1.0,t +7773,,Kenya,7.0,f +4935,0%,,1.0,t +41513,,Vietnam,1.0,t +7773,,Kenya,7.0,f +9669,,,1.0,t +17840,100%,Uganda,3.0,t +34389,,,1.0,f +27422,,,1.0,t +25479,,,2.0,t +44308,97%,Niue,5.0,f +405,,United Kingdom,2.0,t +5985,,,1.0,t +22338,100%,Turks and Caicos Islands,2.0,t +25278,100%,Gibraltar,2.0,t +31319,,Bosnia and Herzegovina,1.0,f +41982,60%,Nicaragua,2.0,f +30535,96%,,2.0,t +29793,,,1.0,t +17031,80%,Reunion,7.0,t +26954,,,1.0,f +30535,96%,,2.0,t +14844,50%,,1.0,f +28826,100%,Switzerland,2.0,f +37411,100%,Guernsey,3.0,f +35040,,Chad,1.0,t +565,0%,Faroe Islands,1.0,f +2707,,Montserrat,1.0,f +32166,100%,Bosnia and Herzegovina,4.0,t +33790,100%,,1.0,f +22713,100%,Uganda,1.0,f +36016,,,1.0,f +488,100%,Maldives,18.0,f +28,100%,,1.0,f +27668,46%,Micronesia,3.0,f +36154,100%,,2.0,t +14333,,Tonga,3.0,f +3512,,,1.0,t +25374,100%,Tonga,8.0,f +45234,100%,,1.0,f +28406,100%,Isle of Man,1.0,f +6351,,,2.0,f +47340,,Maldives,1.0,t +1696,,Togo,2.0,f +36234,97%,Fiji,12.0,t +6537,,France,4.0,t +44098,93%,,3.0,t +34227,,Lebanon,1.0,t +37842,100%,Nicaragua,1.0,t +12037,,Chile,2.0,t +17512,100%,Anguilla,2.0,t +30471,100%,Russian Federation,1.0,t +24041,,,1.0,f +46426,,Guinea,2.0,f +5486,100%,Svalbard & Jan Mayen Islands,12.0,f +12809,100%,,1.0,t +21615,100%,Montserrat,4.0,f +45646,,Tonga,1.0,t +49111,100%,,2.0,t +17031,80%,Reunion,7.0,t +8439,97%,Rwanda,17.0,t +28807,,Isle of Man,7.0,t +16472,67%,Sao Tome and Principe,1.0,t +42209,,Tonga,1.0,t +24128,54%,Suriname,9.0,t +31107,100%,Isle of Man,3.0,t +28807,,Isle of Man,7.0,t +28807,,Isle of Man,7.0,t +11714,80%,,1.0,t +28807,,Isle of Man,7.0,t +29647,100%,Peru,1305.0,f +43152,100%,Nicaragua,82.0,t +29647,100%,Peru,1305.0,f +23034,99%,Monaco,54.0,f +43152,100%,Nicaragua,82.0,t +23467,80%,,4.0,t +27702,,Chad,1.0,f +45489,,,1.0,f +10944,40%,Tonga,2.0,t +14680,100%,Bouvet Island (Bouvetoya),1.0,t +1765,,Rwanda,1.0,t +23692,,,1.0,t +8873,100%,,1.0,t +8225,95%,Barbados,31.0,f +8633,100%,,1.0,t +37006,100%,,1.0,t +13471,,,1.0,t +29647,100%,Peru,1305.0,f +43594,100%,,1.0,t +48756,100%,Maldives,59.0,f +26725,,,12.0,t +49688,,,1.0,t +43937,,Zimbabwe,1.0,f +42196,100%,Turkmenistan,1.0,t +22152,100%,Micronesia,2.0,t +10258,100%,Cape Verde,1.0,f +27381,100%,,1.0,f +25969,100%,Gibraltar,1.0,f +413,100%,,1.0,f +8270,,,1.0,t +3603,,,1.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +45553,90%,Brazil,16.0,t +21184,100%,Chad,2.0,t +46923,100%,Tonga,1.0,t +4674,100%,Zimbabwe,1.0,f +33406,100%,Reunion,4.0,f +2207,,Kiribati,4.0,f +49883,100%,,1.0,f +19404,100%,Kenya,1.0,t +29647,100%,Peru,1305.0,f +12691,100%,,1.0,t +29647,100%,Peru,1305.0,f +16948,100%,Suriname,1.0,f +37920,70%,,17.0,t +383,,Andorra,6.0,f +29647,100%,Peru,1305.0,f +39109,77%,Ukraine,24.0,t +1725,90%,France,3.0,f +42725,100%,Spain,3.0,t +2970,,Holy See (Vatican City State),1.0,f +10837,,,1.0,f +16669,,Mexico,1.0,f +25112,,Togo,4.0,f +43186,100%,Vietnam,3.0,t +18045,,,1.0,t +23421,,,1.0,t +42800,100%,Tunisia,5.0,t +49952,,,1.0,t +48118,100%,Guinea,1.0,t +42412,100%,Isle of Man,1.0,t +22095,,,1.0,t +34792,100%,,1.0,t +17484,,,1.0,f +34151,100%,Guinea,3.0,f +18083,,Guinea,1.0,t +22067,,,1.0,t +2644,100%,Zimbabwe,11.0,t +49955,100%,Togo,1.0,t +2644,100%,Zimbabwe,11.0,t +20872,100%,,2.0,t +49234,100%,Denmark,2.0,f +21761,100%,Montserrat,1.0,t +48642,,Malawi,1.0,t +40916,,Tonga,1.0,f +19958,100%,Congo,40.0,t +44238,100%,,1.0,f +22519,,Indonesia,3.0,f +22519,,Indonesia,3.0,f +24166,100%,Andorra,1.0,t +22519,,Indonesia,3.0,f +28898,85%,Maldives,5.0,t +25076,,Russian Federation,1.0,t +46882,100%,Turkmenistan,3.0,f +36337,,,1.0,t +45701,100%,Nauru,2.0,f +11348,,China,2.0,f +17284,,,1.0,t +36729,,Mauritania,1.0,f +20831,,Gibraltar,3.0,t +34132,90%,Niue,1.0,t +30247,100%,,2.0,f +34514,,Lebanon,1.0,t +17598,,Uzbekistan,1.0,t +13037,,Bosnia and Herzegovina,1.0,t +2277,,Nicaragua,1.0,f +39589,,Maldives,1.0,f +6537,,France,4.0,t +27776,,,1.0,t +20193,0%,Nicaragua,1.0,f +20256,100%,,3.0,t +3473,0%,Mexico,2.0,t +46888,100%,Mauritania,3.0,f +29800,,,1.0,t +10635,100%,Peru,1.0,t +16337,,Russian Federation,2.0,t +35437,81%,Slovakia (Slovak Republic),2.0,t +14067,80%,Chad,2.0,f +16258,100%,,1.0,t +4215,100%,,1.0,f +40759,,Venezuela,1.0,f +3256,100%,Estonia,2.0,f +38583,,,1.0,t +32941,100%,,1.0,t +48694,100%,,1.0,f +38542,,Croatia,1.0,t +22838,100%,,5.0,t +46585,,Russian Federation,2.0,t +28807,,Isle of Man,7.0,t +4455,100%,Uzbekistan,1.0,f +16784,100%,Turkmenistan,3.0,t +42719,,Uruguay,1.0,t +19511,100%,Turkmenistan,1.0,f +5123,,Guinea,1.0,t +31805,99%,Mauritania,20.0,f +44896,100%,Djibouti,1.0,f +2407,100%,Niue,2.0,t +7452,78%,,1.0,f +10175,,,1.0,f +16421,100%,Turkmenistan,1.0,t +15489,100%,Nicaragua,2.0,t +39369,,Brazil,1.0,f +10196,0%,,1.0,t +44184,100%,,1.0,f +42424,100%,Congo,3.0,t +2647,,Zimbabwe,1.0,f +13933,100%,,2.0,f +30869,100%,,2.0,t +42917,100%,,1.0,f +24866,,,2.0,t +29074,,Isle of Man,1.0,f +31834,,,1.0,f +28125,,Reunion,2.0,t +47578,,Sao Tome and Principe,2.0,t +33945,100%,,2.0,t +33097,100%,Uzbekistan,1.0,t +23615,100%,Marshall Islands,1.0,t +40846,,Sao Tome and Principe,3.0,t +7338,,,2.0,t +21691,100%,Kenya,2.0,t +20029,,,1.0,t +39991,,,1.0,f +34151,100%,Guinea,3.0,f +15822,80%,Sao Tome and Principe,1.0,f +4283,,Nicaragua,1.0,t +17572,100%,,1.0,f +42800,100%,Tunisia,5.0,t +1995,,,1.0,f +20256,100%,,3.0,t +12506,,Ghana,3.0,t +31349,100%,,1.0,t +20256,100%,,3.0,t +36306,,Brazil,1.0,t +19480,,Montserrat,1.0,t +29647,100%,Peru,1305.0,f +45275,,Russian Federation,1.0,f +18574,,,1.0,f +5372,,,1.0,f +11174,,,1.0,f +49555,100%,Saint Pierre and Miquelon,4.0,t +15093,,Guinea,1.0,t +8707,73%,Rwanda,21.0,t +11046,100%,Libyan Arab Jamahiriya,1.0,t +12719,100%,,2.0,t +21658,,French Guiana,1.0,f +7160,,Uzbekistan,1.0,f +44704,100%,,1.0,t +42482,0%,Russian Federation,3.0,f +47882,,,1.0,f +34276,,,1.0,t +15243,100%,Ecuador,1.0,t +26124,,,1.0,f +46870,100%,Uzbekistan,1.0,t +10479,100%,Palestinian Territory,3.0,t +2003,,Brazil,1.0,f +4039,100%,,1.0,t +26068,,,1.0,t +16165,,France,3.0,f +42380,80%,Denmark,1.0,f +5311,100%,Togo,1.0,f +34835,86%,Turkmenistan,2.0,t +19843,100%,Turkmenistan,3.0,t +24656,100%,Finland,4.0,t +21430,,,1.0,t +8707,73%,Rwanda,21.0,t +28807,,Isle of Man,7.0,t +26742,,,1.0,t +33419,,Kenya,1.0,f +42112,,Guinea,2.0,t +1303,100%,,1.0,t +39244,100%,Netherlands,3.0,f +8826,100%,Rwanda,1.0,f +33279,100%,,1.0,f +38141,,,1.0,f +23237,,Chad,1.0,f +13186,,Guinea,1.0,t +30568,,,2.0,f +31275,,Libyan Arab Jamahiriya,1.0,f +33353,,Denmark,1.0,t +30568,,,2.0,f +34050,,Togo,1.0,f +41683,100%,Andorra,2.0,t +11337,,,1.0,f +7674,,,1.0,f +18050,,Ghana,6.0,f +46106,100%,,4.0,t +35237,100%,Denmark,2.0,f +12506,,Ghana,3.0,t +2627,,Afghanistan,1.0,f +33695,100%,,1.0,t +15930,50%,Niue,1.0,f +488,100%,Maldives,18.0,f +6533,,Gibraltar,4.0,f +488,100%,Maldives,18.0,f +1134,,Nauru,7.0,t +488,100%,Maldives,18.0,f +42737,100%,,1.0,t +25436,90%,Isle of Man,1.0,t +488,100%,Maldives,18.0,f +34228,,Maldives,1.0,f +10626,,,1.0,t +488,100%,Maldives,18.0,f +24607,,,1.0,t +488,100%,Maldives,18.0,f +6959,95%,Slovakia (Slovak Republic),20.0,t +44188,,Russian Federation,1.0,t +45634,100%,Zimbabwe,1.0,t +8424,,Bosnia and Herzegovina,1.0,f +488,100%,Maldives,18.0,f +37095,50%,,1.0,t +488,100%,Maldives,18.0,f +383,,Andorra,6.0,f +383,,Andorra,6.0,f +383,,Andorra,6.0,f +37839,100%,,2.0,t +38766,100%,Montserrat,1.0,t +40731,,,1.0,t +44119,,Niue,1.0,t +8138,,Lebanon,8.0,f +25362,,Holy See (Vatican City State),1.0,t +39060,100%,Kiribati,3.0,f +10184,,,1.0,t +17202,,,1.0,t +43560,,Turks and Caicos Islands,1.0,f +24637,,Senegal,1.0,f +40213,,Montserrat,1.0,t +5712,100%,Vanuatu,1.0,f +46888,100%,Mauritania,3.0,f +23656,,Turks and Caicos Islands,2.0,f +44308,97%,Niue,5.0,f +29873,,French Guiana,1.0,f +44308,97%,Niue,5.0,f +28043,,,1.0,t +5424,,,2.0,t +14830,,Sao Tome and Principe,1.0,f +31251,,,1.0,t +6893,,Uganda,2.0,f +45154,100%,Lebanon,2.0,t +43991,,,1.0,t +11383,,Zimbabwe,1.0,f +24380,,Zimbabwe,2.0,f +34895,100%,Estonia,16.0,t +23567,100%,Guinea,2.0,t +8506,,,1.0,f +46295,100%,United Kingdom,1.0,f +9940,0%,,2.0,f +15932,100%,Isle of Man,3.0,t +41483,,Guinea,1.0,f +47744,100%,,3.0,t +20872,100%,,2.0,t +488,100%,Maldives,18.0,f +488,100%,Maldives,18.0,f +1831,100%,Niue,1.0,t +7293,,Barbados,3.0,f +84,,Gambia,2.0,f +4105,100%,Malawi,3.0,f +47498,,Mauritania,2.0,t +9434,,Gibraltar,1.0,f +4198,100%,,1.0,f +24240,100%,Isle of Man,4.0,t +47629,100%,Zimbabwe,1.0,f +23099,,Chad,1.0,t +15081,,Russian Federation,1.0,f +7957,,,1.0,f +35699,,Libyan Arab Jamahiriya,1.0,t +4274,100%,Guernsey,2.0,t +9926,100%,Uganda,19.0,f +9926,100%,Uganda,19.0,f +9926,100%,Uganda,19.0,f +941,100%,Bouvet Island (Bouvetoya),1.0,f +14891,,,1.0,f +12275,100%,Denmark,1.0,f +25270,,,1.0,f +7740,,Malawi,1.0,f +1218,,,1.0,f +32136,,Denmark,1.0,f +34047,,,1.0,t +21915,,,1.0,t +4060,100%,Russian Federation,1.0,f +2221,100%,,1.0,t +47525,100%,,2.0,t +29467,,,1.0,f +8027,100%,,1.0,t +43200,,,1.0,t +17124,88%,Turks and Caicos Islands,4.0,t +41387,,French Guiana,1.0,f +21845,,Marshall Islands,2.0,t +21845,,Marshall Islands,2.0,t +28912,100%,Papua New Guinea,2.0,t +47031,100%,,4.0,f +19944,100%,Kiribati,12.0,f +47523,100%,Bosnia and Herzegovina,1.0,f +32725,33%,,2.0,f +16852,,Costa Rica,1.0,t +2698,100%,Tanzania,1.0,f +47543,,Maldives,1.0,f +20390,,Niue,1.0,t +20879,,,, +20464,100%,,1.0,t +28155,,Costa Rica,1.0,f +19201,,Guinea,3.0,t +19201,,Guinea,3.0,t +35423,,Finland,2.0,t +13433,,,1.0,f +31630,100%,,1.0,t +13036,100%,Tonga,2.0,t +356,99%,Wallis and Futuna,32.0,t +40359,,Chile,2.0,t +13666,,Russian Federation,1.0,f +19621,70%,Ecuador,2.0,f +5057,100%,Zimbabwe,23.0,t +23063,,Zimbabwe,1.0,t +45918,100%,,1.0,t +42013,,Guinea,16.0,t +25847,,Faroe Islands,1.0,t +28828,100%,Isle of Man,198.0,t +48397,100%,,1.0,f +42013,,Guinea,16.0,t +47003,100%,France,1.0,f +36881,,Tonga,3.0,f +42013,,Guinea,16.0,t +4722,96%,Guinea,13.0,t +19375,,China,2.0,t +42013,,Guinea,16.0,t +42013,,Guinea,16.0,t +24421,100%,El Salvador,1.0,t +19375,,China,2.0,t +1603,100%,Vanuatu,2.0,f +12812,99%,Croatia,32.0,f +42013,,Guinea,16.0,t +24799,0%,Guinea,1.0,t +12812,99%,Croatia,32.0,f +37205,100%,Kiribati,3.0,t +5771,98%,Vietnam,8.0,f +48039,,,1.0,t +39907,100%,Turkmenistan,1.0,f +46141,100%,,3.0,f +29415,,Maldives,1.0,t +29510,,Guinea,1.0,t +23034,99%,Monaco,54.0,f +40449,100%,Sao Tome and Principe,1.0,f +45512,100%,Barbados,2.0,t +38441,,Maldives,1.0,t +26157,100%,Philippines,1.0,t +16612,,Jersey,1.0,t +4267,100%,Senegal,22.0,t +46382,,,1.0,t +1208,100%,Brunei Darussalam,4.0,t +39447,,Montserrat,3.0,f +1208,100%,Brunei Darussalam,4.0,t +1208,100%,Brunei Darussalam,4.0,t +17048,50%,Monaco,1.0,f +39918,,Russian Federation,1.0,t +35155,90%,Svalbard & Jan Mayen Islands,2.0,t +714,100%,Zimbabwe,1.0,f +23517,100%,,1.0,f +18050,,Ghana,6.0,f +9926,100%,Uganda,19.0,f +15949,100%,Svalbard & Jan Mayen Islands,3.0,t +34216,,Malawi,1.0,f +383,,Andorra,6.0,f +9926,100%,Uganda,19.0,f +9926,100%,Uganda,19.0,f +9926,100%,Uganda,19.0,f +18768,100%,Libyan Arab Jamahiriya,2.0,f +28575,100%,Andorra,1.0,f +3905,,Vanuatu,1.0,f +42126,,,1.0,t +9559,100%,Tonga,1.0,t +4618,,Tonga,3.0,f +4618,,Tonga,3.0,f +4560,,Bouvet Island (Bouvetoya),2.0,f +26099,99%,Reunion,15.0,f +33343,100%,Vanuatu,1.0,t +6807,100%,Mexico,9.0,f +32109,,Uzbekistan,1.0,t +15180,,Djibouti,1.0,t +26531,100%,Nicaragua,2.0,t +43587,100%,,1.0,t +4006,,,1.0,t +2438,100%,,1.0,f +11509,100%,Uganda,6.0,f +383,,Andorra,6.0,f +17039,,Vietnam,1.0,f +47774,,Bosnia and Herzegovina,2.0,t +12524,,Uzbekistan,1.0,t +14067,80%,Chad,2.0,f +35355,100%,Gambia,3.0,f +19113,67%,United Kingdom,1.0,f +9926,100%,Uganda,19.0,f +44534,,Venezuela,1.0,t +1484,100%,Gibraltar,2.0,f +22331,99%,Rwanda,50.0,t +46468,100%,Denmark,1.0,f +26236,,,1.0,f +48304,,,1.0,t +788,100%,Peru,2.0,t +27878,50%,Niue,1.0,t +42314,100%,,1.0,f +18050,,Ghana,6.0,f +18050,,Ghana,6.0,f +17660,,French Guiana,1.0,f +44308,97%,Niue,5.0,f +39340,100%,France,1.0,f +550,100%,Vietnam,2.0,f +29245,,Gibraltar,1.0,f +34530,,Afghanistan,1.0,t +23868,67%,,15.0,t +46405,100%,Vietnam,8.0,t +33363,,,1.0,f +34155,100%,Tonga,4.0,t +42572,,Sao Tome and Principe,1.0,f +2429,100%,Tonga,6.0,f +21102,,China,1.0,f +43798,100%,El Salvador,4.0,t +42639,,,1.0,f +29188,100%,French Guiana,3.0,t +23868,67%,,15.0,t +18075,,Tonga,2.0,f +39068,100%,Djibouti,6.0,t +45114,,Togo,1.0,f +42559,,Gibraltar,2.0,t +5562,,,1.0,f +2202,100%,Venezuela,2.0,t +43421,,Kiribati,2.0,t +47984,,,1.0,t +14549,100%,Anguilla,1.0,t +13764,,,1.0,f +36406,100%,,1.0,t +40768,100%,Anguilla,1.0,t +21638,90%,,3.0,t +23682,57%,Uganda,4.0,f +29647,100%,Peru,1305.0,f +17124,88%,Turks and Caicos Islands,4.0,t +47920,,American Samoa,3.0,t +1133,,,1.0,t +31996,,Niue,1.0,f +30383,90%,Mauritania,6.0,t +30757,90%,Croatia,2.0,f +45168,100%,Brunei Darussalam,1.0,t +9114,94%,Sao Tome and Principe,4.0,t +37481,100%,,1.0,t +29647,100%,Peru,1305.0,f +32847,,Malawi,1.0,t +11525,90%,Australia,1.0,t +16526,,Niue,2.0,t +10169,100%,,1.0,f +35695,100%,,1.0,f +29647,100%,Peru,1305.0,f +24013,,Turkmenistan,1.0,t +36565,100%,Micronesia,2.0,f +1531,100%,,1.0,f +1445,,Somalia,1.0,t +13682,100%,,2.0,f +13682,100%,,2.0,f +36552,,Maldives,4.0,f +44556,,Mauritania,1.0,f +19179,,,1.0,f +12222,,Russian Federation,1.0,t +9145,,Niue,2.0,f +27076,100%,Marshall Islands,1.0,t +17861,83%,Russian Federation,1.0,f +45593,100%,Micronesia,3.0,t +38885,100%,,1.0,f +22887,100%,,2.0,f +38965,,Chile,1.0,t +43206,100%,Zimbabwe,1.0,t +14933,100%,Marshall Islands,1.0,f +15468,,,1.0,f +48756,100%,Maldives,59.0,f +22066,,Bouvet Island (Bouvetoya),1.0,f +48756,100%,Maldives,59.0,f +31805,99%,Mauritania,20.0,f +31805,99%,Mauritania,20.0,f +31805,99%,Mauritania,20.0,f +28555,100%,Russian Federation,3.0,f +31805,99%,Mauritania,20.0,f +31805,99%,Mauritania,20.0,f +18077,100%,Sao Tome and Principe,139.0,f +9926,100%,Uganda,19.0,f +6910,,Maldives,4.0,f +23682,57%,Uganda,4.0,f +32852,,Isle of Man,1.0,f +6910,,Maldives,4.0,f +6910,,Maldives,4.0,f +6910,,Maldives,4.0,f +20387,100%,Malta,12.0,t +18662,70%,Uruguay,4.0,t +2183,100%,Isle of Man,3.0,f +38658,100%,Vanuatu,1.0,f +37397,100%,El Salvador,1.0,f +33407,50%,,2.0,t +41980,100%,Gibraltar,2.0,f +47677,100%,,1.0,t +31132,100%,,1.0,t +16477,100%,Guernsey,1.0,t +35221,100%,Turks and Caicos Islands,30.0,t +49168,,Kenya,2.0,t +9457,71%,Turks and Caicos Islands,1.0,f +25863,,,1.0,t +49555,100%,Saint Pierre and Miquelon,4.0,t +16489,100%,Russian Federation,42.0,t +11848,100%,,1.0,f +11849,,San Marino,1.0,t +11064,100%,,2.0,t +11064,100%,,2.0,t +1692,100%,Jersey,15.0,t +48949,100%,Anguilla,1.0,t +21768,,,1.0,f +3875,100%,Isle of Man,2.0,f +23868,67%,,15.0,t +23868,67%,,15.0,t +43029,,,1.0,f +19842,85%,Turkmenistan,53.0,f +23868,67%,,15.0,t +43146,100%,,1.0,f +23868,67%,,15.0,t +23868,67%,,15.0,t +23868,67%,,15.0,t +23868,67%,,15.0,t +23665,100%,,1.0,t +28395,,Russian Federation,1.0,t +23034,99%,Monaco,54.0,f +48603,100%,Guinea,40.0,f +19616,,Australia,1.0,t +658,100%,Sao Tome and Principe,5.0,f +48882,,Gibraltar,1.0,f +5514,100%,Ecuador,3.0,f +38120,100%,Russian Federation,4.0,t +30246,100%,Denmark,1.0,f +39800,,Chile,1.0,t +35569,,Marshall Islands,1.0,f +48603,100%,Guinea,40.0,f +48603,100%,Guinea,40.0,f +3282,100%,,1.0,t +48603,100%,Guinea,40.0,f +48679,100%,Reunion,3.0,t +10982,100%,,1.0,f +42748,,Papua New Guinea,2.0,t +44447,,Guinea,1.0,f +48603,100%,Guinea,40.0,f +19842,85%,Turkmenistan,53.0,f +19842,85%,Turkmenistan,53.0,f +19842,85%,Turkmenistan,53.0,f +19842,85%,Turkmenistan,53.0,f +19842,85%,Turkmenistan,53.0,f +19842,85%,Turkmenistan,53.0,f +19842,85%,Turkmenistan,53.0,f +19842,85%,Turkmenistan,53.0,f +19842,85%,Turkmenistan,53.0,f +19842,85%,Turkmenistan,53.0,f +5165,,Uzbekistan,1.0,f +12708,100%,Chad,1.0,t +26099,99%,Reunion,15.0,f +47717,,Turkmenistan,1.0,f +16234,67%,Afghanistan,1.0,t +27178,,,1.0,f +17054,100%,Nicaragua,1.0,f +28326,,France,1.0,f +32259,,Sao Tome and Principe,1.0,t +47613,100%,Denmark,2.0,t +25515,,,1.0,t +12086,,Chad,1.0,t +22063,100%,Nicaragua,2.0,f +41581,100%,,1.0,f +31015,100%,Sao Tome and Principe,1.0,t +11950,,Gambia,1.0,t +38198,,Bouvet Island (Bouvetoya),2.0,f +17160,100%,Isle of Man,1.0,t +47019,100%,Isle of Man,1.0,t +18088,100%,Marshall Islands,3.0,t +26012,,Cook Islands,1.0,f +7919,,Mauritania,1.0,t +11587,100%,Micronesia,2.0,t +22678,100%,Portugal,1.0,t +869,100%,,1.0,f +16655,80%,,1.0,f +23357,100%,Monaco,1.0,f +2093,100%,Kiribati,1.0,f +23270,100%,Indonesia,4.0,f +20744,,Niger,2.0,f +40013,100%,El Salvador,3.0,t +21844,,,1.0,t +43088,,,1.0,f +5424,,,2.0,t +16520,100%,Marshall Islands,22.0,f +1477,,,1.0,f +22739,100%,Gambia,3.0,t +35919,90%,Peru,1.0,t +26084,,Vietnam,4.0,t +28216,,,4.0,t +14566,100%,Korea,4.0,t +10978,,Maldives,2.0,t +37482,100%,Niue,1.0,f +13747,100%,Niue,1.0,t +48581,,Montserrat,8.0,t +12337,,,1.0,t +20920,70%,Gambia,2.0,t +47422,99%,Uzbekistan,30.0,f +14566,100%,Korea,4.0,t +28948,100%,,1.0,t +699,100%,Uzbekistan,3.0,f +38068,,,1.0,f +35997,,Monaco,2.0,f +38708,,Peru,1.0,t +24363,,Lebanon,1.0,t +27075,100%,El Salvador,2.0,f +31428,,Micronesia,3.0,f +30367,,Faroe Islands,1.0,f +44379,80%,El Salvador,8.0,t +38712,100%,Monaco,1.0,t +21889,,Vietnam,1.0,t +22331,99%,Rwanda,50.0,t +35997,,Monaco,2.0,f +37293,92%,Russian Federation,15.0,f +31805,99%,Mauritania,20.0,f +20483,,,1.0,t +30927,100%,Indonesia,1.0,f +49764,,Micronesia,1.0,f +24813,,,1.0,t +9282,100%,Slovakia (Slovak Republic),34.0,f +9282,100%,Slovakia (Slovak Republic),34.0,f +37773,0%,,2.0,f +24071,100%,Indonesia,22.0,f +3330,,Niger,2.0,f +9105,,Tonga,1.0,t +10131,,Chad,1.0,f +7260,100%,Sao Tome and Principe,1.0,t +21699,100%,Brazil,4.0,t +27540,,,1.0,t +41878,91%,Maldives,47.0,f +43309,,Niue,1.0,t +29300,,Bouvet Island (Bouvetoya),1.0,f +7338,,,2.0,t +21316,,,1.0,t +22063,100%,Nicaragua,2.0,f +24828,100%,,1.0,t +49872,,Lebanon,1.0,f +49113,83%,Barbados,1.0,t +13270,100%,Anguilla,3.0,t +18448,,,1.0,t +46043,,Chad,3.0,t +19936,100%,Slovakia (Slovak Republic),1.0,t +38049,100%,Cape Verde,1.0,t +6990,100%,Guinea,1.0,f +29490,91%,Tanzania,2.0,t +25233,,Togo,1.0,f +31916,,Malta,2.0,t +13372,,Niue,1.0,f +22331,99%,Rwanda,50.0,t +29647,100%,Peru,1305.0,f +45774,,,1.0,f +33542,,Guinea,1.0,f +21968,,,1.0,f +16920,100%,,1.0,f +22772,,Anguilla,1.0,f +9072,100%,Niue,1.0,t +3376,,Nicaragua,8.0,t +45000,100%,Montserrat,10.0,t +47369,100%,Marshall Islands,4.0,t +38044,,,1.0,t +2421,100%,,2.0,t +32321,80%,Anguilla,1.0,f +27610,,Turkmenistan,1.0,t +44688,,Isle of Man,1.0,f +13446,33%,,2.0,f +19228,100%,Svalbard & Jan Mayen Islands,8.0,f +13446,33%,,2.0,f +37504,100%,Micronesia,3.0,t +33814,,Faroe Islands,9.0,f +43361,100%,Maldives,1.0,f +1816,,Lithuania,1.0,t +42303,,,1.0,t +11972,,,1.0,t +47058,,,4.0,f +18122,,Christmas Island,1.0,f +13148,33%,,1.0,t +34505,,Uzbekistan,4.0,f +31902,98%,Kiribati,5.0,t +38837,,Denmark,1.0,f +47221,100%,,1.0,f +29560,,Croatia,4.0,t +40614,100%,Faroe Islands,1.0,f +12045,100%,,2.0,t +21758,100%,Guinea,1.0,f +39978,100%,Niue,1.0,t +15281,,Bosnia and Herzegovina,1.0,f +35628,,,1.0,t +16873,,Afghanistan,1.0,t +10707,100%,Somalia,3.0,t +34850,,United Kingdom,1.0,f +44218,100%,Kiribati,3.0,f +24621,100%,Tonga,2.0,f +3442,100%,Tonga,2.0,t +321,,Zimbabwe,1.0,f +49934,100%,Liberia,9.0,t +16162,100%,Svalbard & Jan Mayen Islands,2.0,t +14495,100%,United Kingdom,1.0,t +39826,,,1.0,t +22587,70%,,1.0,t +7308,,Ghana,1.0,f +33985,100%,,1.0,t +9282,100%,Slovakia (Slovak Republic),34.0,f +46940,,Rwanda,1.0,t +45921,100%,France,1.0,f +34196,,,1.0,t +23649,100%,Malawi,1.0,f +46846,,Rwanda,1.0,t +8543,80%,Kenya,1.0,f +28938,,,1.0,t +29530,100%,Guinea,1.0,t +34163,,,1.0,f +26082,100%,,1.0,f +6674,,Tonga,2.0,t +3376,,Nicaragua,8.0,t +47341,100%,Lithuania,2.0,t +13943,100%,Cape Verde,1.0,f +21616,,China,14.0,t +21155,100%,Libyan Arab Jamahiriya,1.0,f +11464,100%,Papua New Guinea,11.0,f +18645,100%,United Kingdom,1.0,t +11715,,Costa Rica,5.0,f +22041,100%,Guinea,1.0,f +21717,57%,,1.0,t +13450,,Kiribati,1.0,t +21073,100%,,1.0,t +7413,100%,Cape Verde,1.0,t +14514,,China,80.0,t +5915,,Russian Federation,4.0,f +32648,100%,Micronesia,2.0,f +22895,,Gambia,1.0,t +11464,100%,Papua New Guinea,11.0,f +1407,,,1.0,t +33338,,Gibraltar,1.0,t +48679,100%,Reunion,3.0,t +20219,,,1.0,f +21470,100%,Monaco,1.0,f +40937,100%,Nauru,1.0,f +1239,100%,Gambia,1.0,t +9539,,,1.0,t +29386,100%,,1.0,t +16689,,Monaco,2.0,t +9282,100%,Slovakia (Slovak Republic),34.0,f +18750,80%,,1.0,f +20249,,Papua New Guinea,2.0,t +9282,100%,Slovakia (Slovak Republic),34.0,f +16290,60%,United Kingdom,3.0,f +8116,100%,Estonia,1.0,t +28828,100%,Isle of Man,198.0,t +34505,,Uzbekistan,4.0,f +31510,75%,Kenya,2.0,t +905,,Somalia,1.0,t +27907,100%,Puerto Rico,21.0,f +9926,100%,Uganda,19.0,f +9926,100%,Uganda,19.0,f +43027,,Guinea,1.0,t +23764,,El Salvador,1.0,t +30240,100%,Sao Tome and Principe,1.0,t +31923,100%,France,1.0,f +33218,,Peru,1.0,f +6838,96%,Spain,59.0,t +34155,100%,Tonga,4.0,t +42608,,,1.0,t +27248,,Guernsey,1.0,f +9926,100%,Uganda,19.0,f +20189,100%,Niger,4.0,f +3529,,Croatia,1.0,f +15291,100%,,3.0,f +18791,100%,Zimbabwe,8.0,t +32961,,United Kingdom,6.0,t +12236,,,1.0,f +46772,,,1.0,t +40701,100%,Guinea,1.0,t +19201,,Guinea,3.0,t +3149,100%,Chile,1.0,t +45000,100%,Montserrat,10.0,t +11290,100%,Reunion,12.0,f +48603,100%,Guinea,40.0,f +49430,,,1.0,f +18214,,,1.0,t +17555,100%,United Kingdom,1.0,f +7764,100%,Tonga,1.0,t +1860,,Portugal,1.0,t +9926,100%,Uganda,19.0,f +45381,,Venezuela,1.0,t +27044,,Sao Tome and Principe,1.0,t +14863,,United Kingdom,1.0,f +29281,100%,Russian Federation,1.0,t +37646,100%,Estonia,60.0,f +47307,,Guinea,3.0,f +28207,,,2.0,f +42113,100%,Guernsey,2.0,f +45280,,Gambia,1.0,t +29825,100%,Indonesia,1.0,t +23297,100%,,1.0,f +47307,,Guinea,3.0,f +47307,,Guinea,3.0,f +29982,,Bosnia and Herzegovina,1.0,t +13176,33%,Fiji,1.0,t +25443,,Estonia,1.0,t +38479,100%,Russian Federation,2.0,t +34695,,,1.0,t +9037,,Niue,1.0,f +34841,100%,Zimbabwe,22.0,t +30186,100%,,1.0,t +19855,100%,Kiribati,37.0,t +25128,100%,Barbados,5.0,t +45000,100%,Montserrat,10.0,t +32845,,Holy See (Vatican City State),1.0,t +48347,100%,,2.0,t +19143,100%,,3.0,t +11279,,Kenya,1.0,f +14289,100%,,2.0,f +37856,,Netherlands,3.0,f +42580,100%,Costa Rica,3.0,f +28678,,Anguilla,1.0,f +29647,100%,Peru,1305.0,f +10711,93%,Uganda,108.0,t +14924,,Sao Tome and Principe,2.0,f +29647,100%,Peru,1305.0,f +10711,93%,Uganda,108.0,t +39323,,Portugal,1.0,f +34969,,Canada,3.0,f +10711,93%,Uganda,108.0,t +7192,100%,Maldives,2.0,f +12647,,Pakistan,1.0,f +29647,100%,Peru,1305.0,f +40480,100%,Lebanon,1.0,t +42199,,Russian Federation,1.0,t +29647,100%,Peru,1305.0,f +45000,100%,Montserrat,10.0,t +16089,83%,Maldives,5.0,f +18077,100%,Sao Tome and Principe,139.0,f +18077,100%,Sao Tome and Principe,139.0,f +10287,,,1.0,t +11814,100%,Micronesia,7.0,t +49868,100%,,2.0,t +12934,,Micronesia,1.0,f +34030,100%,Senegal,2.0,f +31805,99%,Mauritania,20.0,f +31805,99%,Mauritania,20.0,f +6615,100%,Isle of Man,2.0,t +34841,100%,Zimbabwe,22.0,t +49359,100%,Isle of Man,1.0,f +6894,80%,Estonia,47.0,t +33994,,Denmark,1.0,t +14126,,,1.0,t +11814,100%,Micronesia,7.0,t +17475,100%,France,2.0,f +43070,100%,Gibraltar,1.0,f +12606,,Lebanon,1.0,f +30601,50%,Niue,1.0,f +9861,100%,Guernsey,2.0,f +31805,99%,Mauritania,20.0,f +11181,100%,,2.0,f +15669,,Sao Tome and Principe,6.0,t +44109,100%,United Kingdom,20.0,f +16527,100%,Palestinian Territory,2.0,f +28717,100%,Chad,2.0,t +31805,99%,Mauritania,20.0,f +43040,,,8.0,t +12429,,,1.0,f +22970,100%,Guernsey,1.0,f +5219,25%,,1.0,t +47011,,Malawi,4.0,t +9149,,,1.0,f +41567,100%,Chile,1.0,t +40170,,Guinea,1.0,f +8825,,,1.0,f +42820,100%,Gibraltar,6.0,f +45366,,Niue,1.0,t +16290,60%,United Kingdom,3.0,f +47086,100%,Mauritania,4.0,t +14744,100%,,1.0,t +28837,100%,Wallis and Futuna,3.0,f +25922,100%,,1.0,t +18628,90%,Svalbard & Jan Mayen Islands,1.0,f +38222,100%,,3.0,t +19845,,,1.0,t +49668,100%,Marshall Islands,2.0,f +36850,,,1.0,f +11258,100%,Brazil,1.0,f +23362,100%,Monaco,1.0,t +23761,,Somalia,5.0,t +29223,,Venezuela,1.0,t +47931,100%,Cocos (Keeling) Islands,1.0,t +4330,94%,Ukraine,60.0,t +34884,100%,,1.0,t +38947,100%,Kenya,1.0,f +10828,,Anguilla,1.0,f +9007,,Indonesia,1.0,f +7103,100%,Montserrat,1.0,t +35379,100%,Tonga,4.0,f +16739,,,2.0,f +13102,,,1.0,f +33087,,Russian Federation,1.0,t +48607,,Maldives,1.0,f +27643,,Kenya,1.0,f +35878,,Chad,2.0,t +34316,,,1.0,t +34077,,,2.0,f +10925,,,1.0,f +9237,,,1.0,t +32240,100%,,1.0,t +42095,100%,Rwanda,3.0,f +27783,70%,Nicaragua,1.0,f +14924,,Sao Tome and Principe,2.0,f +37402,80%,Gambia,1.0,f +45827,100%,Sao Tome and Principe,2.0,t +22899,100%,,1.0,t +44549,100%,Niue,1.0,t +47000,100%,Brazil,1.0,f +15291,100%,,3.0,f +7918,,Togo,2.0,f +30887,,,2.0,f +38275,100%,,1.0,f +4270,,,1.0,t +20877,100%,Malta,1.0,f +46106,100%,,4.0,t +18289,,Guinea,1.0,f +41980,100%,Gibraltar,2.0,f +22335,100%,Russian Federation,3.0,t +36881,,Tonga,3.0,f +4054,,Jersey,3.0,t +22933,100%,Zimbabwe,4.0,f +48381,90%,Netherlands,1.0,f +43588,100%,Fiji,7.0,f +13392,,Libyan Arab Jamahiriya,1.0,f +44743,100%,Faroe Islands,1.0,t +8707,73%,Rwanda,21.0,t +7089,,,1.0,t +23034,99%,Monaco,54.0,f +9911,100%,,1.0,f +6343,50%,Micronesia,1.0,t +43588,100%,Fiji,7.0,f +30664,,United Kingdom,1.0,f +9989,100%,,1.0,t +44965,,,1.0,f +31805,99%,Mauritania,20.0,f +44772,100%,Netherlands,2.0,f +44652,100%,Niue,2.0,t +47370,,Marshall Islands,3.0,t +36954,,Sao Tome and Principe,1.0,f +49719,86%,,1.0,t +18209,,Mauritania,1.0,t +15257,0%,,1.0,t +26516,100%,El Salvador,1.0,t +14646,,,1.0,f +49855,,Togo,2.0,f +3376,,Nicaragua,8.0,t +43342,100%,Finland,2.0,t +48645,40%,Faroe Islands,1.0,f +28656,,,1.0,f +29647,100%,Peru,1305.0,f +45950,,Uzbekistan,1.0,t +20290,100%,Bahrain,1.0,t +1772,,Gibraltar,1.0,f +37474,,Tonga,1.0,t +32169,,Denmark,3.0,t +1762,,French Guiana,1.0,t +16803,100%,Brazil,2.0,t +12944,50%,,1.0,t +10089,,Libyan Arab Jamahiriya,1.0,t +40280,,French Guiana,1.0,t +8361,,Monaco,1.0,t +3278,90%,Guinea,2.0,t +24991,100%,Indonesia,14.0,f +29505,100%,Guinea,1.0,f +49746,100%,,2.0,t +40137,100%,Anguilla,1.0,t +17817,100%,Croatia,13.0,t +4739,100%,Micronesia,1.0,t +27976,100%,Monaco,1.0,t +17817,100%,Croatia,13.0,t +17817,100%,Croatia,13.0,t +28730,,Bosnia and Herzegovina,1.0,t +49957,,Zimbabwe,3.0,t +40407,,Kenya,1.0,t +17863,100%,Slovakia (Slovak Republic),1.0,t +49592,,Marshall Islands,1.0,f +21299,,Malawi,1.0,f +18161,,Denmark,3.0,f +18298,0%,Uzbekistan,1.0,f +5583,,Tonga,1.0,t +25713,,,1.0,f +36914,100%,Nauru,1.0,t +24464,100%,Venezuela,2.0,f +30235,,,1.0,f +45420,,France,2.0,t +49948,,Lebanon,1.0,t +39515,100%,United Kingdom,5.0,t +14499,,Monaco,3.0,f +18258,90%,Niue,2.0,f +48803,,,1.0,f +16253,,Canada,1.0,t +24991,100%,Indonesia,14.0,f +40636,100%,Gibraltar,1.0,f +43301,100%,Tunisia,1.0,f +24991,100%,Indonesia,14.0,f +14517,100%,Gibraltar,2.0,t +31049,100%,,2.0,f +22592,,Maldives,1.0,t +44711,,Croatia,1.0,t +25976,100%,Niue,1.0,t +2690,100%,Guinea,2.0,t +39109,77%,Ukraine,24.0,t +45820,0%,,3.0,f +43997,90%,France,1.0,f +43390,100%,,2.0,f +6160,,Vanuatu,1.0,f +27078,,El Salvador,1.0,t +31514,75%,Gibraltar,2.0,f +44374,,,1.0,t +36234,97%,Fiji,12.0,t +10711,93%,Uganda,108.0,t +10711,93%,Uganda,108.0,t +49494,89%,Russian Federation,1.0,f +10711,93%,Uganda,108.0,t +17788,0%,Australia,2.0,t +20634,,Estonia,1.0,f +30499,,,1.0,f +39109,77%,Ukraine,24.0,t +17005,,,1.0,t +5057,100%,Zimbabwe,23.0,t +11415,,Russian Federation,1.0,f +39999,100%,Niue,3.0,f +39999,100%,Niue,3.0,f +39999,100%,Niue,3.0,f +14694,,,1.0,f +41369,100%,Turkmenistan,1.0,t +35847,,,1.0,t +28912,100%,Papua New Guinea,2.0,t +7331,99%,Indonesia,8.0,t +512,,Nicaragua,1.0,f +48881,,French Guiana,2.0,t +22539,100%,Isle of Man,1.0,f +20823,,Jersey,1.0,f +22794,50%,Cape Verde,36.0,t +35017,100%,,1.0,t +6496,83%,Cuba,2.0,t +39214,88%,Vietnam,2.0,f +36175,,Ecuador,1.0,t +22624,100%,,1.0,t +17730,,Sao Tome and Principe,1.0,t +21838,100%,Guinea,1.0,t +25477,,Lebanon,2.0,t +48745,,Niue,1.0,f +38714,,Uganda,1.0,f +12554,,Micronesia,1.0,f +22131,,,1.0,f +30784,,Nauru,2.0,t +45710,100%,,2.0,t +2892,,Niger,1.0,t +10883,100%,Niger,8.0,t +26361,100%,Vanuatu,3.0,f +41976,,,1.0,f +17031,80%,Reunion,7.0,t +44241,,,1.0,t +43410,,Niue,3.0,t +48173,89%,Jersey,1.0,t +44207,80%,Djibouti,8.0,t +44207,80%,Djibouti,8.0,t +28268,80%,,7.0,t +50040,100%,Micronesia,15.0,t +32488,,Senegal,17.0,t +29583,,,3.0,t +4157,100%,Malta,4.0,f +9557,,Niue,1.0,f +37646,100%,Estonia,60.0,f +7580,100%,Faroe Islands,1.0,f +14162,,Lebanon,1.0,f +31049,100%,,2.0,f +39304,75%,Togo,2.0,t +29846,100%,Maldives,7.0,f +37116,,Malawi,1.0,t +29647,100%,Peru,1305.0,f +45609,100%,,1.0,t +15729,,French Guiana,1.0,t +29647,100%,Peru,1305.0,f +802,,Saint Helena,1.0,t +41874,,Malta,1.0,f +6308,,Togo,1.0,f +34969,,Canada,3.0,f +32618,100%,Anguilla,2.0,f +31314,100%,Guinea,4.0,t +37600,,,1.0,f +21328,,Australia,1.0,t +7315,100%,Monaco,1.0,f +12288,100%,,1.0,t +16156,,Marshall Islands,1.0,t +15305,100%,,1.0,t +14326,,,1.0,f +9073,50%,,1.0,t +27872,,Denmark,3.0,t +1208,100%,Brunei Darussalam,4.0,t +47647,,Chad,1.0,f +18060,,,1.0,t +11770,,Lebanon,2.0,t +32169,,Denmark,3.0,t +41690,,Kiribati,1.0,t +434,,Croatia,1.0,t +8474,,,1.0,t +16713,,Niger,1.0,t +44180,,Chad,1.0,t +20836,,,1.0,f +48338,100%,Maldives,4.0,t +31915,,,1.0,f +18308,,Croatia,1.0,t +36923,,Kenya,1.0,f +28195,,Isle of Man,1.0,f +29703,100%,Niue,1.0,f +24572,100%,Malta,3.0,t +28555,100%,Russian Federation,3.0,f +37496,,Guinea,1.0,f +22002,100%,Anguilla,2.0,t +40848,100%,Niue,3.0,f +7781,,,1.0,f +19944,100%,Kiribati,12.0,f +28265,100%,,1.0,t +2282,,,1.0,f +2223,100%,Zimbabwe,1.0,t +29762,0%,Brazil,1.0,t +37702,100%,Gibraltar,1.0,f +30368,,Uganda,1.0,f +4765,,Lebanon,1.0,t +4933,100%,Uganda,3.0,t +2484,100%,,2.0,t +18332,100%,,2.0,f +13873,50%,,2.0,t +13238,100%,Andorra,1.0,f +39515,100%,United Kingdom,5.0,t +42905,100%,Kiribati,1.0,f +23834,,French Polynesia,1.0,t +17868,100%,Niue,2.0,f +6170,70%,Russian Federation,1.0,t +16237,100%,Sao Tome and Principe,1.0,t +39897,100%,Sao Tome and Principe,1.0,f +11664,,,6.0,f +49342,40%,,1.0,f +4287,,Micronesia,1.0,t +2412,60%,,1.0,f +48120,,Jersey,1.0,f +45769,100%,Niue,1.0,f +13957,,,1.0,t +13671,100%,,1.0,f +31195,,Russian Federation,1.0,f +13039,80%,Russian Federation,2.0,t +32556,90%,Estonia,11.0,t +31936,100%,Vanuatu,2.0,f +6305,100%,,1.0,t +27233,100%,Zimbabwe,1.0,t +8709,,Anguilla,2.0,t +8712,100%,Congo,1.0,f +9684,100%,Monaco,1.0,t +41332,100%,,4.0,f +24858,100%,Indonesia,2.0,t +23101,80%,,1.0,t +23477,,Sao Tome and Principe,1.0,t +36959,,Peru,1.0,f +13076,50%,,1.0,t +367,,,1.0,f +17695,71%,,2.0,f +32198,100%,France,3.0,t +44863,100%,Jersey,1.0,t +1659,,Rwanda,1.0,t +16647,,,1.0,t +39386,,,2.0,f +48422,100%,,1.0,t +2832,,,1.0,f +212,100%,,1.0,f +43189,100%,Croatia,2.0,t +42911,100%,Vietnam,1.0,t +43189,100%,Croatia,2.0,t +13412,90%,,1.0,f +44933,,Niue,1.0,f +11191,,,1.0,f +28960,100%,Papua New Guinea,1.0,f +963,,Vietnam,2.0,f +38553,,,2.0,f +40659,,,1.0,f +10748,,,1.0,f +38553,,,2.0,f +17277,,,2.0,f +40717,100%,France,1.0,f +40656,100%,Sao Tome and Principe,1.0,f +9363,95%,Ukraine,50.0,f +33672,50%,,1.0,f +33855,,,1.0,t +24896,100%,Algeria,50.0,t +1321,0%,Uzbekistan,2.0,f +35792,80%,,2.0,f +28404,100%,Croatia,1.0,t +716,,Korea,1.0,t +18246,,,1.0,f +12137,99%,Sao Tome and Principe,33.0,t +23270,100%,Indonesia,4.0,f +40589,100%,,1.0,t +11476,,Faroe Islands,1.0,f +22488,100%,,2.0,t +48608,100%,Gambia,1.0,f +49835,,Chad,1.0,t +47938,100%,Niue,4.0,f +44810,,,2.0,t +9363,95%,Ukraine,50.0,f +31986,100%,Uzbekistan,1.0,t +41775,100%,Togo,2.0,t +1259,,Sao Tome and Principe,1.0,f +13833,,,1.0,f +12105,,Uzbekistan,1.0,t +1353,,France,1.0,t +41775,100%,Togo,2.0,t +33294,,,1.0,f +43268,,Anguilla,1.0,t +15666,100%,Russian Federation,3.0,f +33269,,Ecuador,4.0,f +20796,100%,Togo,2.0,f +6362,,Nauru,1.0,f +49772,100%,Jersey,1.0,f +19402,,,1.0,f +1505,100%,Costa Rica,1.0,t +50060,,Russian Federation,1.0,f +47017,100%,Turks and Caicos Islands,3.0,t +14386,100%,Nicaragua,8.0,f +41888,,,1.0,f +8952,100%,Montserrat,4.0,t +2550,,Tonga,2.0,t +29890,100%,United Kingdom,2.0,t +15914,90%,,1.0,f +35177,,Kenya,1.0,t +14386,100%,Nicaragua,8.0,f +20949,,,1.0,t +26857,,Nauru,3.0,t +47957,,,1.0,f +20089,100%,Rwanda,1.0,t +6924,100%,Uzbekistan,1.0,f +35019,50%,,1.0,t +45784,100%,,1.0,t +39407,,,2.0,t +5283,100%,Guinea,1.0,t +20678,93%,Gibraltar,1.0,f +9391,100%,Croatia,2.0,t +34040,,,1.0,f +27558,0%,,1.0,f +2550,,Tonga,2.0,t +3796,,Togo,1.0,f +16453,,Denmark,1.0,f +16313,,Cape Verde,1.0,f +16708,90%,,1.0,f +34795,,Indonesia,1.0,f +24621,100%,Tonga,2.0,f +45264,100%,Costa Rica,1.0,f +46086,,,2.0,f +959,100%,United Kingdom,1.0,t +33705,90%,,1.0,f +862,100%,,1.0,f +35236,100%,Chile,1.0,t +37206,67%,Tanzania,1.0,t +35525,100%,,1.0,t +4902,80%,Djibouti,3.0,t +6134,,,3.0,t +49122,0%,,1.0,f +14294,,,1.0,f +48442,100%,Nicaragua,5.0,t +9227,90%,,3.0,t +6078,,Cocos (Keeling) Islands,1.0,t +33148,100%,Turkmenistan,1.0,f +29647,100%,Peru,1305.0,f +43410,,Niue,3.0,t +39636,,Lebanon,1.0,f +28413,100%,Faroe Islands,2.0,t +24540,,Cocos (Keeling) Islands,1.0,t +45288,,Niue,1.0,f +35792,80%,,2.0,f +16960,100%,Togo,2.0,t +17669,100%,Russian Federation,3.0,f +17669,100%,Russian Federation,3.0,f +44463,,,1.0,t +7415,100%,Uzbekistan,8.0,f +17031,80%,Reunion,7.0,t +30611,33%,,1.0,t +10299,,Tunisia,1.0,t +30754,,Niue,2.0,t +15971,100%,Anguilla,2.0,t +23609,100%,Indonesia,4.0,f +40985,100%,Guinea,15.0,t +12157,90%,,3.0,f +48840,100%,Uzbekistan,9.0,f +39397,,Guinea,3.0,t +37119,75%,United Kingdom,1.0,f +18077,100%,Sao Tome and Principe,139.0,f +31151,100%,Gambia,1.0,t +15149,,,1.0,t +26952,,Russian Federation,3.0,t +20243,100%,,1.0,t +38996,90%,Guinea,3.0,f +35753,93%,Cocos (Keeling) Islands,3.0,t +23192,,Ghana,1.0,t +31652,100%,Kenya,8.0,t +42261,100%,Niue,1.0,f +9840,,Malta,2.0,t +49751,100%,,2.0,f +7697,,,1.0,f +11664,,,6.0,f +11664,,,6.0,f +37459,100%,,4.0,f +37459,100%,,4.0,f +37459,100%,,4.0,f +39717,,Barbados,1.0,t +28828,100%,Isle of Man,198.0,t +13840,,Isle of Man,1.0,f +2183,100%,Isle of Man,3.0,f +11888,,Brunei Darussalam,2.0,f +36656,,Russian Federation,1.0,t +633,,Denmark,1.0,f +7135,,,1.0,f +1834,100%,Niue,1.0,t +19266,100%,Isle of Man,2.0,t +44121,100%,Nicaragua,5.0,f +18222,100%,Barbados,2.0,f +31339,,,3.0,t +28851,100%,Guinea,4.0,t +21181,100%,Guinea,1.0,t +28218,,,1.0,t +49530,67%,Brunei Darussalam,1.0,f +23847,100%,,1.0,f +39979,80%,Guernsey,1.0,t +9467,100%,,2.0,f +38802,90%,Mexico,2.0,t +8451,,Ecuador,1.0,f +18181,100%,Costa Rica,1.0,t +26557,,Togo,1.0,f +8414,,,1.0,t +9282,100%,Slovakia (Slovak Republic),34.0,f +44759,100%,Isle of Man,1.0,t +29455,100%,Kenya,3.0,f +44772,100%,Netherlands,2.0,f +1936,,Lithuania,1.0,f +20137,,,1.0,f +10050,,Rwanda,1.0,t +10356,,Lebanon,1.0,f +32357,70%,,1.0,f +48665,,Sao Tome and Principe,1.0,f +12598,100%,Montserrat,3.0,f +7677,,Ecuador,3.0,t +16677,,Rwanda,3.0,t +45802,100%,Cape Verde,2.0,t +26225,100%,El Salvador,2.0,t +6757,,Cuba,1.0,t +26225,100%,El Salvador,2.0,t +45243,100%,,3.0,t +32683,90%,Libyan Arab Jamahiriya,2.0,f +49768,80%,Montserrat,7.0,t +18965,100%,,1.0,f +27318,,Rwanda,2.0,f +20917,,Turkmenistan,2.0,t +35749,,Nauru,1.0,t +28573,,Jersey,1.0,t +42782,,Gibraltar,1.0,t +24698,86%,Russian Federation,2.0,f +18348,100%,Guinea,1.0,t +21273,80%,Marshall Islands,2.0,t +31041,96%,Ecuador,35.0,f +4102,100%,Malta,1.0,f +29583,,,3.0,t +43818,,,1.0,f +39255,100%,Anguilla,2.0,t +46909,,Jersey,2.0,t +187,100%,Uzbekistan,1.0,t +3784,,,1.0,f +41162,,Niue,2.0,f +30208,,Cocos (Keeling) Islands,1.0,f +26856,100%,Mauritania,1.0,t +21013,100%,Isle of Man,1.0,t +43131,100%,Vanuatu,2.0,f +43131,100%,Vanuatu,2.0,f +19997,100%,,1.0,t +9255,,Vietnam,10.0,f +41049,100%,,1.0,f +43572,100%,Portugal,1.0,t +49768,80%,Montserrat,7.0,t +22008,0%,,1.0,f +13287,100%,,1.0,f +15192,,Sao Tome and Principe,2.0,t +34956,,Afghanistan,1.0,f +29647,100%,Peru,1305.0,f +48130,,,1.0,f +30426,100%,Kenya,1.0,f +29647,100%,Peru,1305.0,f +25824,100%,Croatia,1.0,t +49262,,Isle of Man,1.0,t +32990,100%,Uganda,1.0,f +26731,50%,,1.0,t +14180,,Russian Federation,1.0,t +28452,100%,Mauritania,2.0,t +40188,,Mexico,1.0,f +30522,100%,,1.0,f +6796,,Turks and Caicos Islands,1.0,f +21295,,,1.0,f +4248,50%,Tunisia,2.0,f +30140,100%,Lebanon,4.0,t +31909,,El Salvador,2.0,t +33015,,Marshall Islands,1.0,t +27972,94%,Brazil,27.0,f +14195,100%,,2.0,f +39255,100%,Anguilla,2.0,t +9282,100%,Slovakia (Slovak Republic),34.0,f +9282,100%,Slovakia (Slovak Republic),34.0,f +35833,83%,Estonia,9.0,t +9282,100%,Slovakia (Slovak Republic),34.0,f +34969,,Canada,3.0,f +9282,100%,Slovakia (Slovak Republic),34.0,f +9282,100%,Slovakia (Slovak Republic),34.0,f +24157,,Guinea,4.0,f +9282,100%,Slovakia (Slovak Republic),34.0,f +9282,100%,Slovakia (Slovak Republic),34.0,f +9282,100%,Slovakia (Slovak Republic),34.0,f +9282,100%,Slovakia (Slovak Republic),34.0,f +9282,100%,Slovakia (Slovak Republic),34.0,f +2403,50%,Gibraltar,2.0,f +43813,,Chad,1.0,t +2219,,Uganda,1.0,t +31783,88%,,1.0,f +27770,,French Polynesia,1.0,f +21617,,Niue,1.0,f +11681,,Monaco,1.0,t +26627,71%,Monaco,1.0,f +14859,,Turkmenistan,1.0,t +9282,100%,Slovakia (Slovak Republic),34.0,f +25290,,Svalbard & Jan Mayen Islands,1.0,t +9282,100%,Slovakia (Slovak Republic),34.0,f +27695,,Maldives,1.0,f +9282,100%,Slovakia (Slovak Republic),34.0,f +46517,100%,Uzbekistan,2.0,f +9282,100%,Slovakia (Slovak Republic),34.0,f +18596,100%,France,1.0,t +12598,100%,Montserrat,3.0,f +9282,100%,Slovakia (Slovak Republic),34.0,f +4248,50%,Tunisia,2.0,f +29213,,Kenya,1.0,f +9187,100%,Zimbabwe,3.0,f +43256,,Micronesia,3.0,f +9282,100%,Slovakia (Slovak Republic),34.0,f +9282,100%,Slovakia (Slovak Republic),34.0,f +9282,100%,Slovakia (Slovak Republic),34.0,f +9282,100%,Slovakia (Slovak Republic),34.0,f +26930,,Jersey,1.0,f +9282,100%,Slovakia (Slovak Republic),34.0,f +9282,100%,Slovakia (Slovak Republic),34.0,f +9282,100%,Slovakia (Slovak Republic),34.0,f +9282,100%,Slovakia (Slovak Republic),34.0,f +40985,100%,Guinea,15.0,t +2644,100%,Zimbabwe,11.0,t +40985,100%,Guinea,15.0,t +40985,100%,Guinea,15.0,t +93,100%,,1.0,f +38163,100%,Venezuela,3.0,f +214,,,1.0,t +29340,,Isle of Man,1.0,t +32233,80%,Gibraltar,1.0,f +19167,,,1.0,f +45865,50%,,3.0,f +10285,,,2.0,f +3744,,Togo,1.0,t +36178,100%,,4.0,t +37152,,,2.0,f +22279,90%,Finland,3.0,t +7678,,Rwanda,1.0,f +32938,,Lebanon,1.0,t +31707,100%,Niger,48.0,f +30147,,China,1.0,t +40782,60%,,1.0,f +31707,100%,Niger,48.0,f +31707,100%,Niger,48.0,f +49365,70%,Rwanda,2.0,t +10049,,Ecuador,1.0,t +11126,100%,Anguilla,3.0,t +19811,90%,Nicaragua,21.0,t +40868,,Turkmenistan,1.0,t +31760,100%,,2.0,t +18134,,Mauritania,1.0,f +10371,,Jersey,1.0,f +49593,100%,,1.0,f +1267,100%,,1.0,f +47707,,,1.0,f +13329,100%,,3.0,t +13329,100%,,3.0,t +38315,100%,,1.0,t +38802,90%,Mexico,2.0,t +34974,100%,,2.0,t +15402,,Zimbabwe,1.0,t +7719,33%,Tanzania,1.0,t +34974,100%,,2.0,t +35563,,French Guiana,1.0,f +39913,85%,Mauritania,1.0,f +46322,,Denmark,1.0,f +35101,,Russian Federation,1.0,t +11207,100%,United Kingdom,6.0,f +46166,100%,Jersey,2.0,t +24223,100%,Mexico,2.0,f +12591,100%,Maldives,4.0,t +22289,100%,Guinea,1.0,t +3236,100%,France,1.0,t +22310,,,1.0,f +32491,,Sao Tome and Principe,1.0,t +31707,100%,Niger,48.0,f +37113,,,1.0,f +27472,100%,,1.0,f +982,99%,Marshall Islands,32.0,f +10402,100%,Guinea,1.0,t +33977,,Faroe Islands,1.0,f +28413,100%,Faroe Islands,2.0,t +21003,,Micronesia,1.0,t +1954,100%,,1.0,f +31707,100%,Niger,48.0,f +49429,99%,Bosnia and Herzegovina,49.0,f +31707,100%,Niger,48.0,f +19248,25%,Maldives,3.0,f +13912,100%,Malta,1.0,t +11325,0%,Tonga,18.0,f +3909,,Bosnia and Herzegovina,1.0,t +720,100%,,1.0,f +18674,,Bosnia and Herzegovina,1.0,f +3695,,,1.0,f +37504,100%,Micronesia,3.0,t +4811,100%,Wallis and Futuna,2.0,f +25806,100%,Spain,3.0,t +28191,,,3.0,t +20391,,,1.0,t +7692,,,1.0,f +19577,83%,Niue,2.0,t +42188,,Niger,1.0,f +5718,,Yemen,4.0,t +28424,,Venezuela,2.0,f +26963,,Guinea,1.0,t +26662,,Jersey,1.0,t +36197,100%,Niue,1.0,f +4480,,Barbados,2.0,t +28095,67%,Peru,1.0,f +19958,100%,Congo,40.0,t +12460,,Australia,2.0,f +18638,,Togo,1.0,f +984,,Malta,1.0,t +27065,,Brazil,1.0,f +46685,100%,Tonga,1.0,t +20789,98%,Sao Tome and Principe,13.0,f +45399,,United Kingdom,1.0,f +17522,78%,,1.0,t +15732,,,1.0,f +3818,100%,,1.0,f +42190,96%,Croatia,4.0,t +17201,100%,Uzbekistan,1.0,f +23360,83%,Svalbard & Jan Mayen Islands,2.0,f +24059,,,1.0,t +29786,100%,,1.0,t +12591,100%,Maldives,4.0,t +31091,,Christmas Island,1.0,t +29522,80%,Isle of Man,1.0,t +29978,89%,Uzbekistan,26.0,f +35348,,Suriname,2.0,t +33091,,Croatia,1.0,t +35374,100%,Denmark,2.0,f +48285,,Anguilla,1.0,f +44062,,,1.0,t +16840,100%,Mexico,1.0,t +48769,100%,Indonesia,4.0,t +21462,100%,Guinea,4.0,t +16740,,Uganda,1.0,t +23146,100%,,6.0,f +29229,,,1.0,f +22152,100%,Micronesia,2.0,t +20618,100%,Chile,1.0,t +40949,100%,Papua New Guinea,1.0,t +20934,90%,El Salvador,1.0,t +40564,83%,Cape Verde,1.0,f +29989,100%,Marshall Islands,2.0,t +31199,,Niue,1.0,f +14335,,Holy See (Vatican City State),2.0,t +36787,50%,,1.0,f +31805,99%,Mauritania,20.0,f +37806,100%,Russian Federation,3.0,t +1067,,,1.0,f +1292,0%,Maldives,1.0,f +16694,,Russian Federation,3.0,f +29994,,Saint Helena,1.0,t +35788,100%,Isle of Man,1.0,t +11080,100%,Guinea,1.0,f +19708,,,1.0,t +16694,,Russian Federation,3.0,f +13424,89%,Tonga,1.0,t +2429,100%,Tonga,6.0,f +16102,,Bosnia and Herzegovina,1.0,f +45185,83%,,4.0,f +38264,88%,Russian Federation,4.0,f +45130,,El Salvador,1.0,t +1761,,Lebanon,1.0,t +21077,100%,Togo,1.0,t +25468,,Guinea,1.0,f +37704,96%,Fiji,26.0,f +1193,100%,,1.0,f +21912,,Brazil,1.0,f +13252,100%,Tonga,1.0,f +8198,100%,,5.0,f +37704,96%,Fiji,26.0,f +22121,,,2.0,f +30996,,Tanzania,1.0,t +7503,,Nicaragua,1.0,t +49428,100%,Croatia,1.0,f +46297,100%,Sao Tome and Principe,12.0,t +46297,100%,Sao Tome and Principe,12.0,t +46297,100%,Sao Tome and Principe,12.0,t +43152,100%,Nicaragua,82.0,t +10730,80%,,2.0,t +37704,96%,Fiji,26.0,f +16444,,Brazil,1.0,f +2976,100%,Tanzania,2.0,t +12631,,,1.0,f +37704,96%,Fiji,26.0,f +3500,,Indonesia,1.0,t +10711,93%,Uganda,108.0,t +45863,100%,,2.0,t +2119,,,1.0,f +23022,67%,Niue,10.0,t +2454,,Sao Tome and Principe,1.0,t +26045,100%,Kiribati,4.0,t +26154,100%,,1.0,f +46255,,Isle of Man,1.0,f +30641,100%,,1.0,t +4434,100%,,1.0,f +42562,,,1.0,t +6934,,,1.0,t +9646,,Rwanda,1.0,f +256,100%,Rwanda,2.0,f +10096,,,1.0,f +29635,,,1.0,f +37704,96%,Fiji,26.0,f +29647,100%,Peru,1305.0,f +3355,78%,Faroe Islands,2.0,t +28568,100%,Faroe Islands,3.0,f +37704,96%,Fiji,26.0,f +29647,100%,Peru,1305.0,f +33344,100%,,1.0,t +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +15137,100%,Marshall Islands,10.0,t +29647,100%,Peru,1305.0,f +45835,100%,Peru,3.0,t +24026,98%,Cape Verde,69.0,t +43307,100%,Faroe Islands,1.0,f +14979,89%,Nicaragua,1.0,f +28014,,Monaco,1.0,f +2690,100%,Guinea,2.0,t +37704,96%,Fiji,26.0,f +15029,100%,Micronesia,1.0,t +38332,,Niue,1.0,f +10891,,,1.0,f +20713,,Guernsey,1.0,t +45043,100%,Chad,10.0,f +40020,100%,Zimbabwe,1.0,f +46349,,Niue,1.0,f +29647,100%,Peru,1305.0,f +3417,,Fiji,32.0,t +3028,,El Salvador,1.0,f +13365,100%,Indonesia,7.0,t +45076,100%,,1.0,t +10430,,Gambia,1.0,f +47709,,Nauru,1.0,t +1241,100%,Chile,1.0,f +49217,100%,Isle of Man,2.0,t +15658,100%,Afghanistan,1.0,t +2254,,Svalbard & Jan Mayen Islands,1.0,t +46474,100%,,1.0,t +319,,Ecuador,1.0,f +23936,,Cook Islands,2.0,t +16689,,Monaco,2.0,t +43727,100%,,1.0,t +7255,100%,Bouvet Island (Bouvetoya),8.0,t +47592,100%,,2.0,f +24584,100%,Spain,4.0,t +34774,100%,Zimbabwe,1.0,t +407,67%,Bahrain,1.0,f +32520,,,1.0,f +7161,,Jersey,1.0,f +29647,100%,Peru,1305.0,f +2198,100%,Marshall Islands,1.0,t +39645,100%,,1.0,t +1220,,Zimbabwe,2.0,f +34004,,,1.0,f +36088,100%,Niue,2.0,f +21821,,,1.0,t +17296,100%,,3.0,f +28924,100%,,1.0,f +3007,,Holy See (Vatican City State),1.0,f +18873,100%,Somalia,1.0,t +40749,,Estonia,1.0,f +21429,,Tonga,2.0,f +38617,100%,Isle of Man,1.0,t +22331,99%,Rwanda,50.0,t +48361,100%,,1.0,t +19357,,Croatia,1.0,f +17137,70%,Russian Federation,1.0,t +16027,,Barbados,8.0,t +45588,100%,,1.0,t +49640,100%,,2.0,t +18657,100%,Gambia,1.0,t +885,,Somalia,1.0,f +11783,100%,Turkmenistan,1.0,t +4665,100%,Reunion,4.0,t +47024,29%,,1.0,f +14213,,,1.0,f +9796,100%,,1.0,t +3375,50%,Uzbekistan,2.0,t +2560,,,1.0,t +49174,,,1.0,f +15409,100%,Ecuador,1.0,t +46883,100%,Tanzania,2.0,t +14360,,,1.0,t +33306,,Kenya,1.0,f +42927,,Jersey,1.0,f +33686,100%,,2.0,t +43101,100%,China,2.0,t +31707,100%,Niger,48.0,f +15838,90%,,1.0,t +3978,100%,,1.0,t +11567,100%,Niger,31.0,t +28191,,,3.0,t +9080,0%,Peru,1.0,t +34240,,Pakistan,1.0,t +28191,,,3.0,t +42390,100%,Wallis and Futuna,96.0,t +15383,63%,,1.0,f +42390,100%,Wallis and Futuna,96.0,t +42390,100%,Wallis and Futuna,96.0,t +32166,100%,Bosnia and Herzegovina,4.0,t +37686,90%,Monaco,1.0,t +31805,99%,Mauritania,20.0,f +43645,,Vanuatu,1.0,f +21457,100%,Russian Federation,4.0,t +43528,,Rwanda,1.0,f +15590,,Jersey,1.0,f +37989,100%,Micronesia,1.0,t +18475,100%,Nicaragua,1.0,f +42113,100%,Guernsey,2.0,f +3391,100%,Iran,58.0,t +38899,100%,Mauritania,1.0,t +3391,100%,Iran,58.0,t +41636,90%,,1.0,f +42903,100%,Cape Verde,1.0,t +13655,,,1.0,f +15198,,Rwanda,1.0,t +33269,,Ecuador,4.0,f +12157,90%,,3.0,f +24026,98%,Cape Verde,69.0,t +8198,100%,,5.0,f +12715,100%,Estonia,29.0,f +8138,,Lebanon,8.0,f +10061,100%,Mauritania,1.0,t +31072,100%,Montserrat,6.0,t +38186,100%,,3.0,t +6304,80%,,2.0,t +14401,,Jersey,2.0,t +10025,100%,Zimbabwe,4.0,t +30708,100%,Australia,5.0,f +20334,99%,Niger,171.0,t +10587,,Russian Federation,2.0,t +49118,100%,,1.0,f +36967,100%,Barbados,7.0,t +11405,,Maldives,2.0,f +20165,94%,Ukraine,30.0,f +16705,,Micronesia,1.0,f +10587,,Russian Federation,2.0,t +12620,,Denmark,1.0,f +2909,,,1.0,t +32619,100%,,1.0,t +36495,50%,Denmark,1.0,f +6820,100%,,2.0,f +10726,100%,,1.0,f +44682,100%,Guinea,2.0,f +19483,,Chad,1.0,t +41104,100%,Estonia,6.0,t +19071,100%,Niue,1.0,t +21032,,Jersey,1.0,f +9526,,,1.0,t +29949,80%,,2.0,t +8452,,Russian Federation,1.0,f +41979,100%,Sao Tome and Principe,1.0,t +45433,,Chad,1.0,t +29262,,Isle of Man,1.0,t +43233,,Tonga,1.0,f +13212,100%,Zimbabwe,12.0,t +2129,100%,,1.0,f +24664,,Holy See (Vatican City State),1.0,f +13212,100%,Zimbabwe,12.0,t +43410,,Niue,3.0,t +16684,100%,Tonga,1.0,t +48185,100%,Mexico,1.0,t +45737,,Tonga,29.0,t +10046,,Maldives,1.0,t +5104,90%,,2.0,f +36808,100%,Mexico,2.0,t +42945,100%,,1.0,f +5690,100%,Isle of Man,2.0,t +5463,100%,Peru,2.0,f +33974,100%,,1.0,t +11005,100%,,1.0,t +48810,,Uzbekistan,1.0,t +10202,89%,Nicaragua,10.0,f +27590,100%,Suriname,8.0,t +28673,100%,,1.0,f +400,,Lebanon,1.0,t +4570,100%,Guinea,4.0,t +34516,,Faroe Islands,1.0,t +36941,100%,Uzbekistan,3.0,t +25849,,Nauru,1.0,t +41809,100%,Uzbekistan,1.0,f +20646,,French Guiana,1.0,t +23733,,El Salvador,1.0,t +10752,0%,,1.0,f +21433,100%,Lebanon,1.0,t +2319,,Malta,1.0,f +23360,83%,Svalbard & Jan Mayen Islands,2.0,f +46151,100%,Croatia,1.0,t +12280,100%,Canada,2.0,t +5014,100%,,1.0,t +1363,100%,Brazil,1.0,t +32144,,Marshall Islands,1.0,f +38145,,Gambia,1.0,t +36043,,Mauritania,1.0,t +10296,,,1.0,f +3499,88%,Gibraltar,1.0,f +27237,100%,Malta,2.0,t +17342,100%,,1.0,t +26769,,Philippines,2.0,t +19944,100%,Kiribati,12.0,f +580,,Costa Rica,1.0,f +45866,100%,Isle of Man,1.0,t +7959,100%,Peru,1.0,f +23425,100%,Anguilla,2.0,f +4570,100%,Guinea,4.0,t +255,50%,Gibraltar,1.0,f +29647,100%,Peru,1305.0,f +22775,,,1.0,t +29647,100%,Peru,1305.0,f +23425,100%,Anguilla,2.0,f +43707,100%,Gibraltar,2.0,t +3941,100%,,3.0,f +39187,,,2.0,f +7714,100%,,2.0,t +46042,100%,Sao Tome and Principe,1.0,t +49768,80%,Montserrat,7.0,t +28625,100%,,2.0,t +15218,,Micronesia,2.0,f +39109,77%,Ukraine,24.0,t +42834,,,1.0,f +43581,100%,Reunion,1.0,t +38098,100%,Zimbabwe,7.0,t +31707,100%,Niger,48.0,f +5486,100%,Svalbard & Jan Mayen Islands,12.0,f +47803,,,1.0,f +36635,100%,Indonesia,10.0,f +5486,100%,Svalbard & Jan Mayen Islands,12.0,f +3114,,,1.0,f +27877,,Russian Federation,1.0,f +47114,100%,,2.0,f +31444,100%,Reunion,25.0,f +40803,,Zimbabwe,1.0,t +6950,,Bosnia and Herzegovina,1.0,f +5216,,Gambia,3.0,f +24026,98%,Cape Verde,69.0,t +8707,73%,Rwanda,21.0,t +32724,100%,Sao Tome and Principe,1.0,f +42418,,Somalia,1.0,t +20060,,Guernsey,5.0,t +32026,,Malawi,1.0,t +162,100%,Papua New Guinea,2.0,f +23635,100%,Turkmenistan,1.0,t +38775,,,1.0,f +36653,,,1.0,t +23563,,Isle of Man,1.0,f +11379,,,1.0,t +1110,,Cape Verde,1.0,t +32140,90%,Tunisia,1.0,t +24026,98%,Cape Verde,69.0,t +19350,100%,,2.0,t +36565,100%,Micronesia,2.0,f +11626,,,1.0,t +10711,93%,Uganda,108.0,t +36094,,Guinea,1.0,t +26045,100%,Kiribati,4.0,t +44804,,French Guiana,1.0,t +41104,100%,Estonia,6.0,t +28174,,Denmark,1.0,f +47774,,Bosnia and Herzegovina,2.0,t +9915,,Brunei Darussalam,2.0,f +49181,,,1.0,t +18474,,Finland,1.0,f +47895,,,1.0,f +11126,100%,Anguilla,3.0,t +4876,,Senegal,9.0,f +39959,71%,,2.0,t +2905,100%,Anguilla,1.0,f +25158,89%,,2.0,t +2131,100%,,1.0,t +13442,100%,Barbados,1.0,t +12134,50%,,1.0,f +39888,,,1.0,f +33440,88%,Isle of Man,3.0,f +38638,80%,,1.0,t +29647,100%,Peru,1305.0,f +9363,95%,Ukraine,50.0,f +30551,,Afghanistan,2.0,t +12423,100%,Netherlands Antilles,1.0,f +1451,,United Kingdom,1.0,f +32346,100%,United Kingdom,3.0,f +38370,,Kenya,1.0,f +29846,100%,Maldives,7.0,f +27972,94%,Brazil,27.0,f +20635,100%,Micronesia,1.0,t +49598,,Switzerland,4.0,t +29846,100%,Maldives,7.0,f +18452,90%,Barbados,2.0,f +42295,100%,,1.0,f +33135,100%,Indonesia,3.0,t +36237,100%,,1.0,t +48679,100%,Reunion,3.0,t +3412,100%,Papua New Guinea,1.0,f +32766,100%,Faroe Islands,2.0,f +34997,70%,,1.0,t +45737,,Tonga,29.0,t +5332,82%,,5.0,t +37857,,Turkmenistan,2.0,t +21961,82%,Lao People's Democratic Republic,2.0,t +21883,,Bahrain,11.0,t +7683,,Niue,1.0,f +15915,94%,,4.0,t +25389,,,1.0,f +35394,100%,Russian Federation,1.0,t +34323,100%,Cape Verde,1.0,f +31338,,,1.0,f +2334,100%,Netherlands Antilles,1.0,f +11433,,Lebanon,1.0,f +46691,90%,Uzbekistan,38.0,f +38303,100%,Peru,1.0,t +24235,,Libyan Arab Jamahiriya,1.0,t +26703,,Uganda,1.0,f +46691,90%,Uzbekistan,38.0,f +1217,,,1.0,f +21025,,,1.0,t +10711,93%,Uganda,108.0,t +23843,100%,Isle of Man,3.0,t +31875,100%,Maldives,12.0,t +38147,,,1.0,f +29946,,Malta,1.0,f +44814,,,1.0,f +9130,,Croatia,1.0,f +8349,,Guernsey,1.0,f +11375,,Saint Helena,2.0,t +36323,,Guinea,2.0,t +43322,,Nicaragua,1.0,f +24058,100%,Canada,2.0,t +22488,100%,,2.0,t +45835,100%,Peru,3.0,t +48455,89%,Uzbekistan,20.0,t +42266,100%,,2.0,t +44368,,Malawi,1.0,t +2789,100%,Russian Federation,2.0,t +25222,80%,Kenya,11.0,t +3403,100%,Gambia,1.0,f +30116,100%,Nicaragua,2.0,f +46691,90%,Uzbekistan,38.0,f +24408,,Micronesia,2.0,f +6964,,Niue,1.0,f +38244,,,1.0,f +28858,,Vanuatu,1.0,f +48610,100%,Niue,3.0,f +27676,100%,,1.0,t +8625,,,1.0,t +23656,,Turks and Caicos Islands,2.0,f +6027,82%,Wallis and Futuna,2.0,f +41742,90%,Slovakia (Slovak Republic),3.0,t +8492,,,1.0,t +31818,,,3.0,f +41353,,Rwanda,1.0,t +48182,100%,,1.0,f +10907,71%,,1.0,t +49657,,Indonesia,1.0,f +40878,,Anguilla,2.0,f +30234,,Saint Helena,1.0,t +12566,100%,Gambia,1.0,f +36071,,Sao Tome and Principe,1.0,f +46110,100%,Afghanistan,4.0,f +7190,,Greenland,1.0,f +39703,,,1.0,f +2656,,,1.0,t +2174,,,1.0,t +35717,89%,Brunei Darussalam,1.0,f +19,100%,Reunion,2.0,f +31428,,Micronesia,3.0,f +10293,100%,United Kingdom,1.0,t +7677,,Ecuador,3.0,t +18192,100%,,1.0,f +18727,,Gambia,2.0,t +21435,100%,Cape Verde,7.0,t +42206,,,1.0,t +39227,,Uzbekistan,2.0,f +26709,100%,Russian Federation,2.0,f +45343,100%,,1.0,t +31206,,,3.0,f +23660,,Mauritania,2.0,t +7419,,Malawi,1.0,t +19567,,,2.0,f +4480,,Barbados,2.0,t +38273,,Malta,1.0,t +25686,67%,Lebanon,1.0,t +36694,,,1.0,t +25161,100%,Anguilla,1.0,f +10228,,Russian Federation,1.0,t +3418,64%,,1.0,t +23327,100%,Uzbekistan,4.0,t +36234,97%,Fiji,12.0,t +23672,96%,,3.0,t +7137,100%,Russian Federation,1.0,f +28828,100%,Isle of Man,198.0,t +37783,,Bouvet Island (Bouvetoya),1.0,f +23019,,,1.0,f +25507,100%,Malta,3.0,f +48964,100%,Nicaragua,19.0,t +45705,100%,,1.0,t +44474,,,2.0,t +26184,,Uzbekistan,1.0,f +14425,,Gibraltar,2.0,t +2695,,Guernsey,1.0,t +13557,80%,,1.0,t +33948,100%,,2.0,f +40098,100%,Nicaragua,2.0,f +7231,100%,Uzbekistan,3.0,t +48932,100%,Monaco,5.0,t +9981,100%,Anguilla,1.0,f +14221,33%,,1.0,f +27127,100%,Marshall Islands,9.0,t +47484,100%,,1.0,f +49357,100%,Micronesia,2.0,f +3698,,Sao Tome and Principe,1.0,f +20683,,Faroe Islands,1.0,t +18077,100%,Sao Tome and Principe,139.0,f +10470,100%,Tonga,1.0,t +1334,,Isle of Man,1.0,f +20789,98%,Sao Tome and Principe,13.0,f +29647,100%,Peru,1305.0,f +39571,67%,Togo,2.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +28206,,Cocos (Keeling) Islands,1.0,f +29647,100%,Peru,1305.0,f +30009,,Montserrat,1.0,t +29647,100%,Peru,1305.0,f +11700,50%,Brazil,1.0,t +10711,93%,Uganda,108.0,t +29880,100%,Tanzania,1.0,f +24408,,Micronesia,2.0,f +8157,100%,Russian Federation,1.0,t +17122,100%,Cape Verde,1.0,t +40023,100%,Uganda,6.0,t +38181,100%,Philippines,1.0,t +45835,100%,Peru,3.0,t +34044,,,1.0,t +1934,,Chad,1.0,t +13896,,,1.0,f +48336,100%,Afghanistan,1.0,f +37857,,Turkmenistan,2.0,t +3168,,Micronesia,2.0,t +47266,100%,,1.0,f +42906,100%,Tonga,2.0,t +11119,,Indonesia,1.0,t +46866,100%,Kiribati,3.0,t +12325,80%,Gambia,1.0,f +21431,100%,,2.0,t +31797,100%,,1.0,f +14033,100%,Cocos (Keeling) Islands,1.0,t +5463,100%,Peru,2.0,f +21320,,Malta,1.0,t +6773,90%,Tunisia,1.0,f +11215,,Togo,1.0,f +36426,,United Kingdom,1.0,t +26158,,,1.0,t +35223,100%,Guinea,4.0,t +35106,,Togo,1.0,f +29053,,,2.0,f +29053,,,2.0,f +37915,,Marshall Islands,1.0,f +49838,,Rwanda,1.0,f +31639,86%,Lithuania,1.0,t +6886,100%,,1.0,t +26444,100%,Brazil,1.0,f +21290,,Zimbabwe,1.0,f +8866,90%,Tonga,2.0,t +43585,,,1.0,f +32605,100%,Cape Verde,1.0,t +1387,,Philippines,4.0,f +50059,100%,Barbados,7.0,f +20629,100%,,4.0,f +34131,,Bosnia and Herzegovina,1.0,f +15899,100%,Slovenia,2.0,f +20334,99%,Niger,171.0,t +20334,99%,Niger,171.0,t +11255,93%,Suriname,41.0,f +20334,99%,Niger,171.0,t +1488,100%,,1.0,f +47521,,Isle of Man,1.0,t +2998,70%,France,4.0,t +45432,100%,Togo,2.0,f +3256,100%,Estonia,2.0,f +36318,96%,United Kingdom,3.0,t +16211,,,1.0,f +13029,,,1.0,f +49110,0%,,1.0,f +37844,75%,,1.0,t +9830,100%,Barbados,3.0,t +45632,,Faroe Islands,1.0,f +44323,90%,Ecuador,3.0,t +23298,100%,Chile,2.0,t +29158,67%,,2.0,f +6154,86%,Sao Tome and Principe,1.0,f +13174,,,1.0,f +25643,,Mauritania,1.0,t +18992,95%,,3.0,f +49954,100%,,1.0,f +34951,100%,Uzbekistan,1.0,f +42013,,Guinea,16.0,t +17612,100%,Peru,2.0,t +16634,,,1.0,f +42013,,Guinea,16.0,t +17612,100%,Peru,2.0,t +42013,,Guinea,16.0,t +19852,86%,Guinea,1.0,t +33823,78%,France,17.0,t +41529,,,1.0,t +21741,90%,Marshall Islands,2.0,t +46500,99%,Pakistan,73.0,f +48192,,Chad,1.0,f +17750,,United Kingdom,2.0,t +46781,100%,Tonga,2.0,t +18995,,,1.0,f +36635,100%,Indonesia,10.0,f +31322,100%,,1.0,f +36635,100%,Indonesia,10.0,f +47279,,Mauritania,1.0,t +11839,,Uganda,11.0,f +11839,,Uganda,11.0,f +7219,,,1.0,t +20559,100%,,1.0,t +28884,100%,Micronesia,2.0,t +15171,,Kenya,1.0,t +41971,100%,Rwanda,1.0,t +3391,100%,Iran,58.0,t +39344,100%,,2.0,t +3391,100%,Iran,58.0,t +12715,100%,Estonia,29.0,f +42013,,Guinea,16.0,t +23034,99%,Monaco,54.0,f +22303,,Isle of Man,1.0,t +12715,100%,Estonia,29.0,f +30435,99%,Cape Verde,41.0,f +31513,90%,Monaco,1.0,t +42919,,Sao Tome and Principe,1.0,f +8013,,Russian Federation,1.0,f +16045,100%,Anguilla,1.0,t +46500,99%,Pakistan,73.0,f +44951,,Micronesia,2.0,t +46500,99%,Pakistan,73.0,f +46500,99%,Pakistan,73.0,f +46500,99%,Pakistan,73.0,f +46500,99%,Pakistan,73.0,f +46500,99%,Pakistan,73.0,f +46500,99%,Pakistan,73.0,f +46500,99%,Pakistan,73.0,f +46500,99%,Pakistan,73.0,f +21796,100%,Jersey,1.0,t +46500,99%,Pakistan,73.0,f +46500,99%,Pakistan,73.0,f +46500,99%,Pakistan,73.0,f +46500,99%,Pakistan,73.0,f +15455,,Uzbekistan,1.0,t +14861,,,1.0,t +32166,100%,Bosnia and Herzegovina,4.0,t +6684,,Sao Tome and Principe,1.0,f +45737,,Tonga,29.0,t +35339,,Canada,1.0,f +41749,,Cocos (Keeling) Islands,1.0,t +32376,100%,French Guiana,1.0,t +25679,100%,Barbados,3.0,t +3822,,Uzbekistan,5.0,f +3822,,Uzbekistan,5.0,f +28903,,Anguilla,1.0,f +5051,100%,El Salvador,12.0,f +13346,100%,,2.0,t +1899,,,1.0,t +18077,100%,Sao Tome and Principe,139.0,f +22889,,,1.0,f +37207,80%,Tonga,1.0,f +25391,,China,1.0,f +27467,100%,Monaco,1.0,t +31804,100%,,2.0,f +189,,,3.0,f +26616,100%,Isle of Man,10.0,f +8941,100%,France,1.0,f +37043,100%,Pakistan,11.0,f +39818,,,1.0,f +23612,100%,Tonga,1.0,f +22794,50%,Cape Verde,36.0,t +6273,100%,Lithuania,5.0,t +17525,,Micronesia,2.0,t +45737,,Tonga,29.0,t +43421,,Kiribati,2.0,t +35716,100%,Pakistan,4.0,f +6450,,,1.0,f +30323,100%,Tunisia,1.0,t +19820,,,1.0,t +45435,,,1.0,f +27572,67%,Niue,1.0,f +26911,100%,,1.0,t +29376,,Venezuela,1.0,f +32432,,Turks and Caicos Islands,4.0,f +8086,100%,France,1.0,t +18541,,United Kingdom,1.0,f +37338,,,1.0,t +30771,,,1.0,t +42516,,,2.0,t +37410,,Marshall Islands,2.0,f +37410,,Marshall Islands,2.0,f +46907,,Chile,1.0,t +6276,100%,Zimbabwe,5.0,f +43896,,Lebanon,1.0,t +20948,,Denmark,1.0,t +11219,100%,,1.0,f +23256,100%,,6.0,f +9281,,,2.0,t +43534,,,1.0,f +16238,,,1.0,t +11969,,France,1.0,f +36893,100%,Libyan Arab Jamahiriya,1.0,t +15905,100%,,2.0,f +37705,100%,Faroe Islands,2.0,t +1091,100%,Malta,1.0,f +12969,,Tonga,1.0,t +4053,,Ecuador,6.0,f +29999,100%,Rwanda,3.0,t +26264,100%,,1.0,t +46297,100%,Sao Tome and Principe,12.0,t +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +2654,100%,Afghanistan,2.0,t +2842,60%,Malawi,1.0,f +35219,97%,Tonga,4.0,f +17983,,Micronesia,1.0,f +40691,100%,Guernsey,2.0,t +17417,,Denmark,11.0,f +21927,100%,Brazil,1.0,f +35448,100%,,1.0,t +36299,100%,Rwanda,13.0,t +2888,,,1.0,f +33220,,United Kingdom,1.0,t +32370,100%,Costa Rica,3.0,t +22707,,Bosnia and Herzegovina,1.0,f +9423,,Uzbekistan,1.0,f +35374,100%,Denmark,2.0,f +30380,,Tanzania,1.0,f +31899,100%,Bouvet Island (Bouvetoya),6.0,f +41374,,,1.0,f +19431,,Uzbekistan,1.0,t +12227,100%,,2.0,t +39889,,,1.0,f +39044,,Tonga,1.0,t +3531,100%,,1.0,f +34364,,United Kingdom,1.0,f +41631,,Bosnia and Herzegovina,1.0,t +28013,,,1.0,f +3912,,Anguilla,1.0,t +37380,,Tonga,1.0,f +41396,100%,,1.0,f +31936,100%,Vanuatu,2.0,f +47277,,,1.0,f +47483,90%,Jersey,1.0,t +22721,100%,Ecuador,109.0,f +29647,100%,Peru,1305.0,f +28455,,Chile,1.0,f +29646,100%,Monaco,2.0,t +39344,100%,,2.0,t +199,,Niger,3.0,t +46223,70%,Maldives,1.0,t +29647,100%,Peru,1305.0,f +18264,,France,1.0,t +34963,,,1.0,f +29647,100%,Peru,1305.0,f +31701,60%,Bouvet Island (Bouvetoya),2.0,f +29647,100%,Peru,1305.0,f +32239,,China,1.0,f +24759,90%,Gambia,2.0,t +574,80%,Mauritania,1.0,t +5873,100%,Marshall Islands,2.0,t +22721,100%,Ecuador,109.0,f +133,0%,,1.0,f +29647,100%,Peru,1305.0,f +23406,,,1.0,t +22387,100%,Gibraltar,1.0,t +49365,70%,Rwanda,2.0,t +45285,,,1.0,f +4901,,Tanzania,1.0,f +34693,,Micronesia,1.0,f +16044,,Maldives,1.0,t +17301,,,1.0,f +31444,100%,Reunion,25.0,f +31444,100%,Reunion,25.0,f +31444,100%,Reunion,25.0,f +24026,98%,Cape Verde,69.0,t +45369,,Christmas Island,1.0,f +13534,,Christmas Island,2.0,f +35681,,,1.0,f +1951,90%,Marshall Islands,6.0,t +42157,,Rwanda,1.0,t +22721,100%,Ecuador,109.0,f +29647,100%,Peru,1305.0,f +22721,100%,Ecuador,109.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +1011,97%,Russian Federation,8.0,t +22721,100%,Ecuador,109.0,f +22721,100%,Ecuador,109.0,f +12644,,Sao Tome and Principe,1.0,f +9257,0%,,1.0,t +22721,100%,Ecuador,109.0,f +12271,100%,Brazil,3.0,t +22721,100%,Ecuador,109.0,f +2723,33%,,2.0,f +8904,,,1.0,f +22721,100%,Ecuador,109.0,f +7293,,Barbados,3.0,f +34731,100%,,1.0,t +45222,100%,Niger,2.0,t +22721,100%,Ecuador,109.0,f +24026,98%,Cape Verde,69.0,t +22721,100%,Ecuador,109.0,f +854,100%,Venezuela,4.0,t +47594,100%,Kenya,17.0,t +22721,100%,Ecuador,109.0,f +11737,100%,Venezuela,1.0,t +37043,100%,Pakistan,11.0,f +10136,100%,,1.0,f +13624,93%,Uzbekistan,2.0,t +33814,,Faroe Islands,9.0,f +24286,100%,,1.0,f +14185,,Micronesia,1.0,f +29705,100%,Denmark,1.0,f +45721,100%,Jersey,1.0,t +4115,100%,,2.0,f +49405,,,1.0,f +11029,,,1.0,t +50004,100%,,1.0,t +29647,100%,Peru,1305.0,f +18624,,,1.0,t +11290,100%,Reunion,12.0,f +26045,100%,Kiribati,4.0,t +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +18077,100%,Sao Tome and Principe,139.0,f +3166,100%,Turkmenistan,1.0,f +29647,100%,Peru,1305.0,f +22721,100%,Ecuador,109.0,f +29647,100%,Peru,1305.0,f +22721,100%,Ecuador,109.0,f +25823,,,1.0,t +36252,,Turkmenistan,1.0,f +15703,,,4.0,f +22721,100%,Ecuador,109.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +9363,95%,Ukraine,50.0,f +29647,100%,Peru,1305.0,f +20297,80%,Montserrat,17.0,f +47594,100%,Kenya,17.0,t +22721,100%,Ecuador,109.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +22721,100%,Ecuador,109.0,f +32529,,Bouvet Island (Bouvetoya),2.0,t +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +44594,,Rwanda,1.0,f +40878,,Anguilla,2.0,f +29647,100%,Peru,1305.0,f +31899,100%,Bouvet Island (Bouvetoya),6.0,f +3864,,,1.0,t +22721,100%,Ecuador,109.0,f +13567,90%,Marshall Islands,1.0,t +44369,,French Guiana,1.0,t +7778,100%,Mauritania,7.0,t +38986,,Estonia,2.0,t +24157,,Guinea,4.0,f +47441,100%,,1.0,f +41525,100%,,1.0,t +47032,,Tanzania,1.0,t +24590,,Venezuela,2.0,f +8913,100%,Guyana,2.0,t +20093,50%,Guernsey,1.0,t +24682,,Afghanistan,1.0,t +45704,100%,,1.0,t +47154,,,1.0,f +24601,100%,Isle of Man,1.0,f +9248,,French Guiana,2.0,f +18077,100%,Sao Tome and Principe,139.0,f +29601,,Faroe Islands,6.0,t +9489,,Niue,1.0,t +42396,91%,Indonesia,1.0,f +31398,,,1.0,f +1571,,Tonga,1.0,t +9467,100%,,2.0,f +22721,100%,Ecuador,109.0,f +22721,100%,Ecuador,109.0,f +22721,100%,Ecuador,109.0,f +37735,100%,Uganda,13.0,t +40228,100%,Niger,1.0,t +32075,100%,Indonesia,2.0,f +48610,100%,Niue,3.0,f +16092,,Guinea,1.0,t +43428,73%,Faroe Islands,9.0,t +3822,,Uzbekistan,5.0,f +13327,100%,Ghana,1.0,t +32467,100%,Lithuania,3.0,t +33193,100%,Brazil,10.0,f +27780,,Switzerland,1.0,f +39948,,,1.0,t +25950,100%,Malta,1.0,t +40361,100%,Sao Tome and Principe,4.0,t +2949,100%,French Guiana,1.0,t +45432,100%,Togo,2.0,f +4598,,Nicaragua,1.0,f +45865,50%,,3.0,f +17616,,,1.0,t +34498,,Guinea,1.0,f +35564,,United Kingdom,1.0,t +14401,,Jersey,2.0,t +42470,100%,Malawi,2.0,f +6873,,Maldives,1.0,f +47733,0%,,1.0,f +24089,,Tonga,1.0,t +20664,100%,Nauru,4.0,f +5883,,Marshall Islands,1.0,f +45278,,,1.0,t +6482,100%,Tonga,3.0,f +31694,100%,Indonesia,1.0,t +5015,100%,Pakistan,2.0,f +8348,,,1.0,t +27326,100%,El Salvador,1.0,f +16752,100%,Malawi,2.0,t +10476,,Costa Rica,1.0,t +27860,,Isle of Man,1.0,t +35675,,,1.0,t +16686,100%,Turkmenistan,1.0,f +38316,100%,Cuba,1.0,t +22057,,Canada,1.0,f +13232,,,1.0,t +928,,,1.0,f +22335,100%,Russian Federation,3.0,t +13852,,Niger,1.0,f +5621,100%,Brazil,1.0,f +45210,,Zimbabwe,1.0,t +22908,100%,Micronesia,6.0,t +35502,,,1.0,f +27767,,Niue,1.0,f +39506,100%,Nauru,2.0,t +13696,,Cuba,1.0,f +33936,,Guinea,1.0,f +48726,,Brazil,1.0,f +34306,91%,Wallis and Futuna,30.0,t +722,100%,,1.0,t +23718,,Niger,1.0,t +23034,99%,Monaco,54.0,f +20501,,Uganda,1.0,f +35620,90%,Micronesia,3.0,f +48603,100%,Guinea,40.0,f +22998,,Uganda,1.0,f +22509,100%,Greenland,1.0,f +19401,100%,France,5.0,f +36442,,Svalbard & Jan Mayen Islands,1.0,t +36575,,Lebanon,1.0,t +18077,100%,Sao Tome and Principe,139.0,f +18077,100%,Sao Tome and Principe,139.0,f +49276,,Tanzania,1.0,t +44719,,United Kingdom,1.0,f +607,100%,France,1.0,f +49934,100%,Liberia,9.0,t +22721,100%,Ecuador,109.0,f +9173,100%,Cuba,1.0,t +22721,100%,Ecuador,109.0,f +1826,,Jersey,1.0,t +22696,100%,Gambia,2.0,f +10032,,,1.0,f +39997,,,1.0,f +15329,100%,Uzbekistan,1.0,t +688,,Nicaragua,1.0,f +10240,,,1.0,f +40985,100%,Guinea,15.0,t +8786,,Netherlands,2.0,f +40985,100%,Guinea,15.0,t +40985,100%,Guinea,15.0,t +40985,100%,Guinea,15.0,t +40985,100%,Guinea,15.0,t +19436,,Nauru,2.0,f +19436,,Nauru,2.0,f +8126,56%,,2.0,f +4349,,Lebanon,1.0,f +33066,100%,Canada,1.0,t +33685,100%,Tonga,1.0,f +14729,,Uruguay,1.0,f +32305,,Turks and Caicos Islands,1.0,f +34085,89%,Cocos (Keeling) Islands,3.0,t +33574,60%,Brazil,4.0,t +40421,96%,Jersey,29.0,t +31444,100%,Reunion,25.0,f +31444,100%,Reunion,25.0,f +41025,100%,,1.0,f +15,,Peru,1.0,t +30444,,Montserrat,1.0,f +32346,100%,United Kingdom,3.0,f +9513,,El Salvador,1.0,f +31444,100%,Reunion,25.0,f +31444,100%,Reunion,25.0,f +810,100%,Brazil,2.0,f +11255,93%,Suriname,41.0,f +44349,100%,Marshall Islands,1.0,f +7241,,Kiribati,1.0,f +49218,100%,Turkmenistan,1.0,t +48580,100%,Netherlands,1.0,f +4267,100%,Senegal,22.0,t +21891,,,2.0,t +8726,100%,Malta,1.0,t +49146,90%,Tunisia,2.0,t +46777,,,1.0,f +33309,,Zimbabwe,2.0,t +30028,,,1.0,f +12954,,Isle of Man,1.0,t +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +46245,100%,Nicaragua,2.0,f +13309,100%,Brazil,1.0,f +18484,100%,Gambia,108.0,f +4815,,Rwanda,1.0,t +48886,100%,Netherlands,4.0,t +17742,100%,French Polynesia,2.0,f +18077,100%,Sao Tome and Principe,139.0,f +2157,,,1.0,t +1308,,Sao Tome and Principe,1.0,t +19548,,Guinea,1.0,f +15194,,Gibraltar,1.0,f +691,,,1.0,f +33588,100%,Marshall Islands,1.0,t +577,100%,Philippines,1.0,f +39366,100%,Ghana,3.0,t +15365,100%,Faroe Islands,3.0,t +18545,94%,Isle of Man,8.0,t +12517,,Lebanon,3.0,t +8328,,Isle of Man,1.0,f +9145,,Niue,2.0,f +32881,,Uzbekistan,2.0,t +31609,,,1.0,f +5655,80%,Zimbabwe,3.0,t +21083,100%,Spain,3.0,t +24401,0%,Niue,3.0,f +45720,,,1.0,f +34738,,Guinea,1.0,f +35632,94%,Tonga,2.0,f +35269,,,1.0,f +22082,100%,Isle of Man,1.0,t +13391,,China,1.0,f +43033,,Tonga,1.0,t +14113,,French Polynesia,4.0,f +37043,100%,Pakistan,11.0,f +26750,100%,Kiribati,1.0,t +8332,,Uzbekistan,1.0,t +9416,100%,Micronesia,1.0,t +30289,,,1.0,t +35489,,,1.0,t +37076,,Bouvet Island (Bouvetoya),1.0,f +47534,100%,Ecuador,1.0,f +47932,,Guernsey,1.0,f +16486,,Guinea,1.0,f +29275,,Micronesia,1.0,f +14620,,,3.0,t +32048,,,1.0,t +10525,,El Salvador,1.0,t +27949,,Marshall Islands,1.0,f +45231,,,1.0,f +36330,,Malawi,1.0,f +1675,,,1.0,f +32519,0%,France,1.0,t +4052,,Maldives,1.0,t +38662,100%,,1.0,t +48351,,Malta,3.0,f +4418,,Niue,1.0,t +14113,,French Polynesia,4.0,f +14113,,French Polynesia,4.0,f +24297,,Philippines,1.0,t +14113,,French Polynesia,4.0,f +49142,,,1.0,f +39604,,Maldives,1.0,t +38080,,,1.0,f +30749,,Palestinian Territory,2.0,t +22721,100%,Ecuador,109.0,f +46691,90%,Uzbekistan,38.0,f +763,,,1.0,f +38903,25%,,1.0,f +22721,100%,Ecuador,109.0,f +36100,100%,Rwanda,17.0,t +13509,97%,Puerto Rico,6.0,f +33126,,,1.0,f +22721,100%,Ecuador,109.0,f +48334,100%,Guinea,12.0,f +13509,97%,Puerto Rico,6.0,f +48334,100%,Guinea,12.0,f +41519,,Togo,1.0,f +31448,100%,Ecuador,1.0,f +22721,100%,Ecuador,109.0,f +19128,100%,Uzbekistan,12.0,t +33622,,Micronesia,1.0,f +22721,100%,Ecuador,109.0,f +6500,,Reunion,2.0,f +6500,,Reunion,2.0,f +22721,100%,Ecuador,109.0,f +22721,100%,Ecuador,109.0,f +29512,100%,Guinea,1.0,t +22721,100%,Ecuador,109.0,f +35486,100%,French Guiana,1.0,t +22721,100%,Ecuador,109.0,f +42619,,Zimbabwe,3.0,t +46279,,Faroe Islands,1.0,t +22721,100%,Ecuador,109.0,f +46252,,Niue,2.0,t +17072,50%,Papua New Guinea,1.0,t +2568,50%,Gibraltar,1.0,f +10355,,,1.0,f +12989,100%,Gambia,2.0,f +19270,100%,Denmark,1.0,t +50033,,,1.0,f +48932,100%,Monaco,5.0,t +22914,100%,Jersey,6.0,t +47495,100%,Gibraltar,2.0,t +4471,67%,,2.0,f +29926,67%,Zimbabwe,7.0,t +21646,100%,Togo,2.0,f +26452,100%,Micronesia,2.0,f +16865,,Micronesia,2.0,t +16815,,,3.0,f +17452,100%,Marshall Islands,2.0,f +3919,,Zimbabwe,1.0,t +33599,,,1.0,t +1367,100%,,4.0,t +32853,,French Guiana,2.0,t +10098,100%,,2.0,t +10502,93%,Indonesia,9.0,f +5718,,Yemen,4.0,t +41169,,Chad,2.0,t +9363,95%,Ukraine,50.0,f +10052,100%,Niue,1.0,t +20447,,Maldives,1.0,t +49059,100%,Gambia,16.0,t +31597,80%,,2.0,t +9487,100%,Denmark,1.0,t +33864,,,1.0,t +35509,,,1.0,f +17175,100%,Malta,8.0,t +48286,,Rwanda,1.0,f +2636,,Sao Tome and Principe,1.0,f +27135,,Marshall Islands,1.0,t +12535,,,1.0,f +12592,,Denmark,1.0,f +40361,100%,Sao Tome and Principe,4.0,t +32788,100%,,1.0,t +30895,,Portugal,2.0,t +33854,86%,,1.0,t +3860,100%,Uzbekistan,1.0,t +35767,,Faroe Islands,1.0,t +29744,100%,Micronesia,1.0,f +1787,,Isle of Man,1.0,f +40758,,Sao Tome and Principe,1.0,f +26615,100%,Saint Helena,1.0,f +28487,,,1.0,f +42033,100%,Togo,1.0,f +35547,78%,Nicaragua,2.0,f +49830,,,1.0,f +29978,89%,Uzbekistan,26.0,f +40515,100%,Gibraltar,1.0,f +33505,,Marshall Islands,1.0,f +29978,89%,Uzbekistan,26.0,f +40335,100%,Costa Rica,1.0,f +29978,89%,Uzbekistan,26.0,f +44642,,,1.0,t +29978,89%,Uzbekistan,26.0,f +16618,,Fiji,1.0,f +356,99%,Wallis and Futuna,32.0,t +24009,100%,Australia,1.0,f +21634,100%,Saint Helena,1.0,t +27907,100%,Puerto Rico,21.0,f +25856,,Vanuatu,4.0,t +4482,,Afghanistan,1.0,f +13448,,,1.0,t +3390,100%,,1.0,f +969,,Pakistan,3.0,f +31672,75%,Maldives,6.0,f +38385,,Peru,1.0,t +32014,100%,,2.0,f +47287,,Anguilla,1.0,f +21848,100%,,1.0,f +25914,100%,France,2.0,t +8601,,Angola,16.0,f +4568,,,1.0,f +11567,100%,Niger,31.0,t +14477,100%,Reunion,26.0,t +29584,,El Salvador,1.0,t +6718,100%,Estonia,2.0,f +20912,100%,Turkmenistan,1.0,t +23761,,Somalia,5.0,t +26431,,,1.0,f +40423,100%,Russian Federation,1.0,f +15189,79%,China,21.0,f +29847,100%,Russian Federation,2.0,t +35442,,Russian Federation,14.0,f +32450,,Russian Federation,1.0,t +22721,100%,Ecuador,109.0,f +29647,100%,Peru,1305.0,f +30610,100%,Kiribati,1.0,t +15605,70%,El Salvador,1.0,f +2768,100%,Christmas Island,2.0,t +9131,100%,Gambia,5.0,f +17624,,,1.0,f +10909,100%,Turks and Caicos Islands,3.0,t +14477,100%,Reunion,26.0,t +36044,,Bouvet Island (Bouvetoya),1.0,f +2768,100%,Christmas Island,2.0,t +31118,100%,Turks and Caicos Islands,1.0,t +21750,,,1.0,f +26741,,Philippines,1.0,t +1633,,,1.0,t +338,100%,,1.0,t +7920,100%,Zimbabwe,3.0,t +18382,,France,1.0,f +44216,,United Kingdom,1.0,t +31957,,Russian Federation,1.0,t +34979,100%,Anguilla,4.0,f +2857,100%,Montserrat,4.0,f +49768,80%,Montserrat,7.0,t +13906,,,1.0,f +34308,,Costa Rica,1.0,t +19211,100%,,1.0,t +44166,100%,,1.0,t +23590,,Venezuela,2.0,f +14477,100%,Reunion,26.0,t +47264,,,1.0,t +16225,100%,Micronesia,2.0,t +29647,100%,Peru,1305.0,f +44157,,Rwanda,6.0,t +25278,100%,Gibraltar,2.0,t +22721,100%,Ecuador,109.0,f +14477,100%,Reunion,26.0,t +19745,67%,,1.0,t +14477,100%,Reunion,26.0,t +18727,,Gambia,2.0,t +8296,,Malawi,1.0,f +29647,100%,Peru,1305.0,f +17869,100%,Reunion,5.0,t +8684,,,1.0,f +49029,,Rwanda,1.0,t +25512,,Bosnia and Herzegovina,1.0,f +22721,100%,Ecuador,109.0,f +49269,,,1.0,t +38365,,,1.0,f +14384,,,1.0,t +22721,100%,Ecuador,109.0,f +29647,100%,Peru,1305.0,f +22721,100%,Ecuador,109.0,f +10527,,,1.0,t +12868,100%,Tonga,1.0,f +42392,100%,Greenland,4.0,f +21974,,Tanzania,1.0,f +13291,,France,1.0,t +27798,80%,,1.0,t +10933,0%,,1.0,f +5276,,Kiribati,1.0,f +34573,,,1.0,f +19108,100%,,1.0,t +49580,,Holy See (Vatican City State),1.0,t +36612,100%,Guinea,1.0,t +42853,67%,,1.0,f +7973,,Niue,1.0,t +25338,0%,,1.0,f +36999,100%,,2.0,f +28000,,,1.0,t +38110,100%,,1.0,f +390,100%,Niue,1.0,t +46347,,Somalia,6.0,t +13367,100%,Marshall Islands,3.0,t +29914,,Guinea,3.0,f +39886,100%,Malta,2.0,f +22721,100%,Ecuador,109.0,f +33892,,Niue,1.0,f +14177,100%,,1.0,t +22721,100%,Ecuador,109.0,f +15013,,,1.0,t +30678,100%,Tanzania,2.0,t +20518,100%,Togo,4.0,t +10519,100%,Marshall Islands,1.0,f +11155,70%,,1.0,f +22721,100%,Ecuador,109.0,f +27864,100%,,1.0,f +22721,100%,Ecuador,109.0,f +10711,93%,Uganda,108.0,t +22721,100%,Ecuador,109.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +2363,,Barbados,3.0,t +38004,0%,Palestinian Territory,2.0,f +12464,,Chile,5.0,t +47469,,Anguilla,1.0,f +3866,100%,Indonesia,8.0,t +3866,100%,Indonesia,8.0,t +4359,100%,Nauru,3.0,t +39150,100%,,1.0,t +48777,80%,Isle of Man,1.0,t +8366,100%,,1.0,f +28220,,Estonia,1.0,t +43697,,Niue,1.0,t +29539,,Brazil,1.0,f +16143,,Indonesia,1.0,f +10711,93%,Uganda,108.0,t +42587,100%,Vanuatu,3.0,f +23746,,Niue,1.0,t +34769,80%,Pakistan,3.0,t +43920,,Christmas Island,1.0,f +31204,,,1.0,f +19958,100%,Congo,40.0,t +10711,93%,Uganda,108.0,t +5682,100%,Guinea,2.0,t +10711,93%,Uganda,108.0,t +26386,100%,Fiji,25.0,t +22721,100%,Ecuador,109.0,f +21261,100%,Isle of Man,3.0,t +14477,100%,Reunion,26.0,t +9197,,,1.0,t +43556,,Moldova,1.0,f +27993,,Maldives,1.0,t +31340,100%,El Salvador,1.0,t +48442,100%,Nicaragua,5.0,t +29647,100%,Peru,1305.0,f +1205,,Uganda,1.0,f +46691,90%,Uzbekistan,38.0,f +44007,100%,,1.0,t +17929,100%,,1.0,t +39109,77%,Ukraine,24.0,t +22721,100%,Ecuador,109.0,f +11090,,Russian Federation,1.0,t +22721,100%,Ecuador,109.0,f +31612,100%,,3.0,t +23160,89%,Korea,1.0,t +34402,79%,Reunion,28.0,f +10711,93%,Uganda,108.0,t +22721,100%,Ecuador,109.0,f +46691,90%,Uzbekistan,38.0,f +22721,100%,Ecuador,109.0,f +40421,96%,Jersey,29.0,t +3213,100%,Mexico,1.0,f +29647,100%,Peru,1305.0,f +15426,100%,,1.0,f +22721,100%,Ecuador,109.0,f +29647,100%,Peru,1305.0,f +14477,100%,Reunion,26.0,t +22721,100%,Ecuador,109.0,f +6753,100%,French Guiana,1.0,f +22721,100%,Ecuador,109.0,f +25868,100%,Papua New Guinea,1.0,t +14477,100%,Reunion,26.0,t +22721,100%,Ecuador,109.0,f +17334,,Ecuador,2.0,t +29981,,,1.0,f +39177,,,1.0,t +20808,90%,Gambia,3.0,t +20808,90%,Gambia,3.0,t +2027,,Sao Tome and Principe,1.0,f +29767,,,1.0,t +33198,100%,Mauritania,12.0,f +49936,75%,,1.0,f +12196,,,1.0,f +45886,100%,El Salvador,3.0,f +2954,100%,Denmark,5.0,t +46561,100%,,1.0,t +20038,,,1.0,f +35754,0%,Lebanon,1.0,t +16558,,Philippines,1.0,t +19811,90%,Nicaragua,21.0,t +14563,100%,Cocos (Keeling) Islands,3.0,t +11402,,Tonga,1.0,t +40521,0%,Isle of Man,1.0,f +15725,100%,Uzbekistan,1.0,t +44535,100%,,1.0,t +21663,,Niue,1.0,t +3219,,Lebanon,1.0,f +30702,100%,Uzbekistan,1.0,t +15787,100%,French Guiana,1.0,t +2954,100%,Denmark,5.0,t +21599,,Brazil,1.0,t +16664,,,1.0,t +39031,100%,Uzbekistan,1.0,t +7966,,,1.0,f +21226,100%,Venezuela,1.0,f +2494,,,1.0,f +35990,100%,,1.0,t +13367,100%,Marshall Islands,3.0,t +19620,,,1.0,t +717,,Monaco,1.0,t +35567,100%,Niue,1.0,f +2201,,United Kingdom,1.0,f +9638,0%,Tonga,2.0,f +47585,100%,Jersey,1.0,t +36014,,Nauru,1.0,f +9638,0%,Tonga,2.0,f +30639,,Djibouti,1.0,f +10214,50%,,1.0,f +48237,100%,Netherlands Antilles,1.0,t +16146,100%,,1.0,f +29293,100%,Russian Federation,1.0,t +3170,,Brunei Darussalam,1.0,f +39103,,,1.0,t +7673,100%,Denmark,1.0,f +40661,,Sao Tome and Principe,2.0,t +3357,100%,Uganda,2.0,f +22980,,Bosnia and Herzegovina,1.0,f +12177,100%,France,6.0,t +9885,100%,Niue,1.0,f +21624,,Holy See (Vatican City State),1.0,f +44052,100%,Denmark,4.0,f +13744,,,1.0,t +37026,70%,,2.0,t +23314,,Mauritania,2.0,t +8151,,Lebanon,1.0,t +19186,,El Salvador,1.0,t +12715,100%,Estonia,29.0,f +6275,,,2.0,f +30829,,,1.0,f +11408,100%,,1.0,t +22721,100%,Ecuador,109.0,f +48965,100%,,1.0,f +17437,,Niue,1.0,t +12526,,Niue,1.0,f +22721,100%,Ecuador,109.0,f +7387,,French Guiana,2.0,t +37487,,,1.0,f +48507,100%,,2.0,t +25936,100%,Spain,1.0,f +14514,,China,80.0,t +32604,,,1.0,f +19946,100%,Vietnam,1.0,t +24361,100%,,2.0,f +22721,100%,Ecuador,109.0,f +10711,93%,Uganda,108.0,t +30433,,,4.0,t +39143,89%,,33.0,f +10711,93%,Uganda,108.0,t +39386,,,2.0,f +9022,,Indonesia,1.0,t +5899,,,1.0,t +26629,,Mauritania,1.0,f +30992,,Turkmenistan,1.0,f +21435,100%,Cape Verde,7.0,t +46335,100%,Nicaragua,1.0,t +41744,,,1.0,f +21435,100%,Cape Verde,7.0,t +8044,100%,Russian Federation,1.0,t +2556,100%,,1.0,f +12696,100%,Finland,1.0,f +11157,100%,,2.0,t +26198,,Brazil,1.0,t +5990,,,1.0,f +46649,,Guinea,3.0,t +21641,100%,Russian Federation,1.0,f +38284,100%,Puerto Rico,4.0,t +34094,100%,Monaco,1.0,t +39248,97%,Cuba,5.0,f +37852,100%,,2.0,f +9028,,Russian Federation,1.0,f +19969,100%,Puerto Rico,1.0,f +15200,100%,Gibraltar,1.0,t +24623,,Lebanon,2.0,f +27318,,Rwanda,2.0,f +49202,,El Salvador,1.0,t +18077,100%,Sao Tome and Principe,139.0,f +47730,100%,Saint Helena,1.0,f +49036,,Kenya,4.0,t +26646,,,1.0,f +39301,100%,,1.0,f +6976,,Uzbekistan,2.0,f +39870,,Slovakia (Slovak Republic),21.0,t +32318,50%,Canada,3.0,f +18077,100%,Sao Tome and Principe,139.0,f +42899,100%,,1.0,f +41717,100%,Russian Federation,1.0,t +22721,100%,Ecuador,109.0,f +5281,,Anguilla,1.0,t +3357,100%,Uganda,2.0,f +45419,,,1.0,f +33843,100%,Bosnia and Herzegovina,1.0,t +11395,50%,Nauru,1.0,f +12715,100%,Estonia,29.0,f +36967,100%,Barbados,7.0,t +22721,100%,Ecuador,109.0,f +39943,,,1.0,t +43014,80%,Anguilla,2.0,t +14581,,Lithuania,1.0,f +19736,,Sao Tome and Principe,1.0,f +10581,75%,,1.0,f +24277,,,1.0,f +5526,100%,Isle of Man,3.0,t +21084,100%,,3.0,t +17802,,,1.0,t +20313,100%,Faroe Islands,3.0,t +17153,,Croatia,1.0,t +4629,,Niue,1.0,f +34348,100%,,1.0,t +47409,100%,Niue,3.0,t +884,100%,Jersey,1.0,t +14593,,Brazil,1.0,f +23823,100%,China,3.0,t +17886,70%,Nicaragua,2.0,f +9910,,Papua New Guinea,1.0,f +26711,,Kenya,1.0,f +43152,100%,Nicaragua,82.0,t +29647,100%,Peru,1305.0,f +16520,100%,Marshall Islands,22.0,f +2192,63%,Uzbekistan,1.0,f +14620,,,3.0,t +40646,100%,Turks and Caicos Islands,2.0,t +48227,100%,Isle of Man,1.0,f +28890,,Russian Federation,1.0,f +24991,100%,Indonesia,14.0,f +4975,0%,Togo,1.0,f +1057,100%,,1.0,t +16752,100%,Malawi,2.0,t +18077,100%,Sao Tome and Principe,139.0,f +24623,,Lebanon,2.0,f +447,,Uzbekistan,1.0,f +18989,,China,4.0,f +22584,,,1.0,f +41847,100%,El Salvador,3.0,t +16633,,Kiribati,1.0,f +14594,100%,Isle of Man,1.0,f +30844,,Gibraltar,1.0,f +43840,100%,Niue,4.0,t +19500,100%,Tonga,1.0,t +14041,100%,Isle of Man,1.0,f +33198,100%,Mauritania,12.0,f +3560,,,2.0,t +24402,,Estonia,1.0,f +27907,100%,Puerto Rico,21.0,f +22407,100%,Uzbekistan,1.0,t +6217,100%,,1.0,t +34839,,Jersey,1.0,t +24026,98%,Cape Verde,69.0,t +6482,100%,Tonga,3.0,f +1731,,,1.0,t +20988,,,1.0,f +148,0%,Bosnia and Herzegovina,1.0,t +23463,100%,San Marino,2.0,f +48836,,,1.0,f +17740,100%,,2.0,t +43102,100%,Isle of Man,1.0,f +19217,98%,Marshall Islands,46.0,f +23345,,,1.0,t +23555,,,1.0,f +48973,100%,Tonga,6.0,f +43965,,Maldives,1.0,t +16942,100%,Uganda,2.0,f +15051,100%,,1.0,f +43540,72%,Bosnia and Herzegovina,25.0,f +15932,100%,Isle of Man,3.0,t +30717,,,1.0,t +41878,91%,Maldives,47.0,f +6976,,Uzbekistan,2.0,f +49217,100%,Isle of Man,2.0,t +25291,58%,Gibraltar,3.0,t +46961,,,1.0,t +17112,,Chile,2.0,t +10963,,Cocos (Keeling) Islands,1.0,t +48168,100%,,1.0,f +31764,0%,Nauru,1.0,f +44296,,Pakistan,1.0,t +10056,,,1.0,f +9379,100%,El Salvador,1.0,f +12451,100%,Nauru,4.0,t +43819,100%,Grenada,2.0,t +16259,,Brazil,1.0,t +49036,,Kenya,4.0,t +11934,,Papua New Guinea,1.0,f +19871,,China,1.0,t +40217,100%,,1.0,t +5320,,,1.0,f +39545,100%,Niue,1.0,f +6789,100%,Gambia,2.0,t +41045,,,1.0,t +8280,90%,Uzbekistan,3.0,f +41878,91%,Maldives,47.0,f +3592,,,1.0,t +5844,,Chile,1.0,f +38001,,,1.0,f +39294,,Russian Federation,1.0,t +41532,100%,Nicaragua,1.0,t +14483,,Barbados,1.0,t +31672,75%,Maldives,6.0,f +12508,70%,Holy See (Vatican City State),3.0,t +5417,,Lebanon,1.0,t +16411,,Switzerland,1.0,t +45827,100%,Sao Tome and Principe,2.0,t +11968,100%,,3.0,f +19801,100%,,1.0,t +28240,,Uzbekistan,1.0,f +3749,90%,,1.0,t +48709,100%,Andorra,2.0,t +2084,,Faroe Islands,1.0,t +14671,,Sao Tome and Principe,1.0,f +11715,,Costa Rica,5.0,f +11908,100%,Sao Tome and Principe,5.0,f +5405,,,1.0,t +45930,33%,,1.0,f +35262,,Lebanon,1.0,t +5803,,,1.0,t +13312,,,1.0,f +31409,100%,,1.0,f +23488,100%,Uzbekistan,1.0,t +860,,,1.0,t +12211,,Tanzania,1.0,t +9156,,Cook Islands,1.0,f +35915,,Rwanda,1.0,f +9271,,Faroe Islands,2.0,t +9248,,French Guiana,2.0,f +20907,100%,Chile,1.0,t +9184,,,1.0,t +43424,,Russian Federation,2.0,f +34220,100%,Estonia,1.0,t +37694,,Micronesia,1.0,t +4428,100%,Isle of Man,1.0,t +14380,100%,Niue,1.0,f +36049,,Isle of Man,3.0,f +891,100%,Chile,2.0,t +24999,100%,France,6.0,f +38042,,Uzbekistan,2.0,t +20989,100%,Marshall Islands,8.0,f +29668,100%,Nicaragua,4.0,t +4143,100%,Canada,1.0,t +20989,100%,Marshall Islands,8.0,f +7276,,Turkmenistan,2.0,f +23115,,Guinea,1.0,t +37816,,Russian Federation,1.0,t +41407,,,1.0,f +31371,100%,,1.0,t +14118,100%,Denmark,3.0,t +28828,100%,Isle of Man,198.0,t +49768,80%,Montserrat,7.0,t +18403,,Estonia,2.0,f +44047,,Faroe Islands,1.0,f +13135,,,1.0,t +2395,,Palestinian Territory,8.0,t +45737,,Tonga,29.0,t +2395,,Palestinian Territory,8.0,t +48648,,Tanzania,1.0,f +2395,,Palestinian Territory,8.0,t +45737,,Tonga,29.0,t +16322,,,1.0,t +7796,100%,,1.0,f +28776,,,1.0,f +16851,,Tonga,2.0,t +12520,100%,Isle of Man,2.0,t +18573,,,5.0,f +4054,,Jersey,3.0,t +33646,,Turkmenistan,1.0,t +43774,,,1.0,f +39940,100%,Cape Verde,3.0,f +28683,60%,Somalia,2.0,f +23582,98%,Montserrat,17.0,f +17836,100%,,1.0,t +46565,,Isle of Man,1.0,f +9991,100%,Monaco,1.0,t +39173,,Lebanon,2.0,t +33198,100%,Mauritania,12.0,f +23582,98%,Montserrat,17.0,f +27972,94%,Brazil,27.0,f +45737,,Tonga,29.0,t +5197,,French Polynesia,1.0,f +817,,Lebanon,1.0,f +470,,Bosnia and Herzegovina,2.0,t +29955,,United Kingdom,2.0,t +31705,,Lebanon,1.0,t +21360,,United Kingdom,1.0,t +7004,,Mexico,1.0,f +41412,100%,Saint Helena,2.0,f +16774,,,1.0,f +23690,,,1.0,f +46617,93%,Guinea,2.0,f +41104,100%,Estonia,6.0,t +45737,,Tonga,29.0,t +2821,,,1.0,t +41104,100%,Estonia,6.0,t +37629,,Russian Federation,1.0,t +39550,0%,Denmark,1.0,f +34064,,Christmas Island,3.0,t +29586,100%,,1.0,t +26585,100%,Venezuela,1.0,f +49870,,Isle of Man,1.0,f +33998,,Cape Verde,1.0,t +32783,90%,Isle of Man,1.0,t +2485,60%,,2.0,t +13403,96%,Maldives,21.0,t +375,,,1.0,t +21640,,Turkmenistan,1.0,t +23582,98%,Montserrat,17.0,f +38894,100%,Isle of Man,1.0,t +21722,,,1.0,f +49002,,Maldives,1.0,f +16520,100%,Marshall Islands,22.0,f +29611,,Libyan Arab Jamahiriya,1.0,t +513,80%,Uganda,1.0,f +9967,,Nicaragua,2.0,f +6429,100%,Monaco,3.0,t +18702,100%,Gibraltar,2.0,t +4701,100%,Senegal,3.0,f +9555,92%,,1.0,t +47442,,Zimbabwe,1.0,f +5956,100%,Marshall Islands,1.0,t +47373,,,1.0,t +42336,,Bouvet Island (Bouvetoya),2.0,f +47391,,,2.0,t +9683,100%,Pitcairn Islands,3.0,t +25994,,,1.0,t +23449,100%,,1.0,t +11446,,Svalbard & Jan Mayen Islands,1.0,t +41774,,Tunisia,1.0,t +41634,,,1.0,t +8843,,,1.0,f +19841,100%,Bouvet Island (Bouvetoya),1.0,f +24425,100%,Mauritania,2.0,t +12147,,Afghanistan,1.0,t +36493,100%,Croatia,1.0,f +48708,100%,,1.0,t +2158,100%,,2.0,t +15907,,Rwanda,1.0,f +22389,,Montserrat,1.0,t +41352,100%,,1.0,f +15631,86%,,1.0,f +40389,100%,Guinea,2.0,f +11664,,,6.0,f +3415,,Guinea,2.0,t +24026,98%,Cape Verde,69.0,t +32465,100%,Isle of Man,3.0,t +49187,,Nauru,1.0,f +16982,,Marshall Islands,1.0,t +46691,90%,Uzbekistan,38.0,f +30635,,Russian Federation,1.0,t +17978,100%,Kiribati,2.0,t +35103,100%,Faroe Islands,1.0,t +3048,,,2.0,f +47603,,Svalbard & Jan Mayen Islands,1.0,f +30484,80%,Rwanda,1.0,t +13006,,,1.0,t +48280,,,1.0,f +3048,,,2.0,f +38577,,,1.0,f +34851,100%,,4.0,f +13850,,,1.0,f +23463,100%,San Marino,2.0,f +18077,100%,Sao Tome and Principe,139.0,f +6533,,Gibraltar,4.0,f +26471,,Kenya,1.0,f +17338,100%,Kiribati,1.0,t +10681,,,1.0,f +15669,,Sao Tome and Principe,6.0,t +39217,,,1.0,f +23110,100%,,1.0,f +45121,100%,Andorra,5.0,t +15043,100%,Rwanda,1.0,f +6574,,Uzbekistan,1.0,t +356,99%,Wallis and Futuna,32.0,t +8449,,,1.0,f +44527,100%,Malta,2.0,f +9731,100%,Gambia,4.0,f +10129,,,1.0,t +6770,90%,Gambia,1.0,f +9731,100%,Gambia,4.0,f +5977,,,1.0,f +17892,,Denmark,1.0,f +31037,100%,,1.0,t +5051,100%,El Salvador,12.0,f +16202,,Isle of Man,1.0,t +40985,100%,Guinea,15.0,t +40985,100%,Guinea,15.0,t +11664,,,6.0,f +40985,100%,Guinea,15.0,t +5222,100%,Christmas Island,1.0,t +47344,,Micronesia,1.0,f +644,100%,,1.0,f +18269,86%,Fiji,12.0,f +38140,,Uzbekistan,1.0,t +25280,100%,Chad,1.0,t +25938,,Holy See (Vatican City State),1.0,f +29647,100%,Peru,1305.0,f +10407,100%,Ecuador,1.0,f +291,,Afghanistan,1.0,f +13565,,Brazil,1.0,t +14698,100%,,7.0,f +6263,100%,Andorra,1.0,t +48900,,Micronesia,2.0,f +13981,100%,Zimbabwe,1.0,f +20270,,,1.0,f +21361,,,1.0,t +37729,100%,Niue,1.0,f +5927,,Togo,1.0,f +2846,62%,United Kingdom,2.0,t +2740,,Estonia,5.0,f +17339,67%,Niue,1.0,f +29117,,Chad,2.0,t +13104,,Gambia,1.0,f +36685,,United Kingdom,1.0,t +854,100%,Venezuela,4.0,t +21982,90%,Nicaragua,2.0,t +19007,100%,Indonesia,1.0,t +25313,,Mexico,1.0,t +26830,,,1.0,t +27119,94%,Nicaragua,10.0,t +19534,50%,Uganda,3.0,t +19093,100%,Nicaragua,4.0,t +42180,100%,,1.0,t +49504,100%,Guinea,2.0,f +43130,100%,Puerto Rico,5.0,f +49501,100%,Afghanistan,1.0,t +5166,100%,Ecuador,16.0,t +14514,,China,80.0,t +45886,100%,El Salvador,3.0,f +5166,100%,Ecuador,16.0,t +5166,100%,Ecuador,16.0,t +29647,100%,Peru,1305.0,f +25008,,Tonga,3.0,t +37479,,Ecuador,1.0,t +21357,,Gambia,1.0,t +20413,67%,El Salvador,1.0,f +8418,,Denmark,2.0,f +8520,,,1.0,f +21982,90%,Nicaragua,2.0,t +48936,100%,,1.0,t +18062,,,1.0,f +34441,,Ecuador,2.0,f +3966,100%,Micronesia,2.0,t +9363,95%,Ukraine,50.0,f +45462,,Estonia,1.0,f +2419,100%,Isle of Man,1.0,t +25351,100%,Fiji,6.0,f +42494,100%,Mauritania,2.0,f +37576,,,1.0,f +17403,100%,Togo,1.0,t +36999,100%,,2.0,f +32031,100%,Zimbabwe,1.0,t +40316,,Malta,1.0,f +11672,100%,Kiribati,6.0,t +20518,100%,Togo,4.0,t +35077,100%,Cocos (Keeling) Islands,4.0,f +40811,,Sao Tome and Principe,1.0,f +7228,,,1.0,t +3147,,Nicaragua,1.0,f +45951,86%,Lithuania,1.0,f +6762,,China,1.0,t +25836,,Tonga,2.0,t +7410,,Russian Federation,1.0,f +21584,71%,Anguilla,2.0,t +30296,100%,,1.0,f +16485,,Bosnia and Herzegovina,1.0,f +43308,100%,,1.0,t +41412,100%,Saint Helena,2.0,f +46336,,,1.0,t +46925,,,1.0,t +7285,100%,Mauritania,1.0,f +28183,,,5.0,f +46626,,Chile,2.0,t +38637,91%,,1.0,f +37427,,,1.0,t +25850,,Chad,1.0,t +23761,,Somalia,5.0,t +26924,100%,Zimbabwe,3.0,f +25670,,Zimbabwe,1.0,f +46969,0%,Russian Federation,1.0,t +26696,100%,France,4.0,t +42205,88%,Netherlands,2.0,t +35860,98%,Vietnam,4.0,t +28851,100%,Guinea,4.0,t +34708,100%,Senegal,1.0,f +27002,100%,Indonesia,1.0,t +28564,,Turks and Caicos Islands,1.0,f +49905,,United Kingdom,2.0,t +41104,100%,Estonia,6.0,t +19958,100%,Congo,40.0,t +43367,92%,Rwanda,1.0,f +49940,100%,,1.0,t +23800,25%,Uzbekistan,1.0,t +17328,,,1.0,t +6761,100%,Zimbabwe,1.0,t +44957,100%,Uzbekistan,8.0,t +7087,0%,Lebanon,1.0,t +46696,100%,,1.0,f +19718,100%,Turks and Caicos Islands,10.0,f +24371,,France,1.0,f +8225,95%,Barbados,31.0,f +19718,100%,Turks and Caicos Islands,10.0,f +19718,100%,Turks and Caicos Islands,10.0,f +19718,100%,Turks and Caicos Islands,10.0,f +35268,100%,Isle of Man,1.0,f +25162,50%,Ecuador,1.0,f +19718,100%,Turks and Caicos Islands,10.0,f +28065,,Rwanda,4.0,f +19718,100%,Turks and Caicos Islands,10.0,f +38702,,Micronesia,1.0,f +28568,100%,Faroe Islands,3.0,f +42516,,,2.0,t +26583,,El Salvador,1.0,t +41128,100%,Uzbekistan,4.0,f +10463,,Gibraltar,1.0,t +28028,,Cape Verde,1.0,t +20320,100%,French Guiana,1.0,t +1381,,Anguilla,1.0,t +46122,,Uzbekistan,1.0,f +12803,100%,Niue,4.0,t +2403,50%,Gibraltar,2.0,f +2935,100%,Isle of Man,3.0,t +19206,67%,Faroe Islands,1.0,f +20565,100%,,1.0,t +22542,,,1.0,f +22502,,French Guiana,1.0,f +9323,,Marshall Islands,1.0,f +48779,,Malta,1.0,f +3640,,Jersey,1.0,f +40506,,,1.0,t +11290,100%,Reunion,12.0,f +18161,,Denmark,3.0,f +13953,100%,,1.0,f +36030,,Croatia,2.0,f +7942,,Brazil,4.0,t +7942,,Brazil,4.0,t +12715,100%,Estonia,29.0,f +7942,,Brazil,4.0,t +18161,,Denmark,3.0,f +47273,,,1.0,f +21450,,Niger,2.0,t +29647,100%,Peru,1305.0,f +38139,,Micronesia,1.0,t +24505,60%,,2.0,f +42600,100%,Malawi,1.0,t +48178,17%,Estonia,5.0,t +1378,,Guinea,1.0,t +17550,100%,Mexico,2.0,f +20702,,Svalbard & Jan Mayen Islands,1.0,t +7141,,Reunion,1.0,f +9463,,,1.0,f +34895,100%,Estonia,16.0,t +36755,100%,,2.0,t +21061,,Brazil,1.0,t +48653,100%,Bouvet Island (Bouvetoya),4.0,f +33610,100%,Guinea,1.0,t +37134,100%,Tonga,1.0,t +11780,,Niue,1.0,f +10749,100%,,3.0,t +20246,,,1.0,f +1357,,,1.0,f +22749,,,1.0,f +35077,100%,Cocos (Keeling) Islands,4.0,f +48178,17%,Estonia,5.0,t +25092,100%,Malta,1.0,f +12491,100%,Pakistan,3.0,f +15225,,Turkmenistan,1.0,t +2857,100%,Montserrat,4.0,f +43344,60%,Maldives,5.0,f +36812,,Cook Islands,2.0,f +38167,100%,,1.0,t +22439,,Gambia,1.0,t +35077,100%,Cocos (Keeling) Islands,4.0,f +46240,100%,Nicaragua,1.0,t +35077,100%,Cocos (Keeling) Islands,4.0,f +24685,100%,,1.0,f +1900,100%,Tunisia,5.0,t +43831,,,1.0,f +9193,90%,Venezuela,1.0,f +29551,100%,Mauritania,2.0,f +20719,,,1.0,f +19074,,,1.0,t +7938,,Lebanon,1.0,t +33852,,Chile,1.0,t +25919,100%,Bouvet Island (Bouvetoya),1.0,t +35833,83%,Estonia,9.0,t +13394,100%,United Kingdom,5.0,f +45454,100%,Pakistan,1.0,f +12451,100%,Nauru,4.0,t +20648,,United Kingdom,1.0,f +46473,,,1.0,t +33774,,Chile,1.0,t +25225,,Ukraine,1.0,f +40975,100%,Marshall Islands,1.0,t +32318,50%,Canada,3.0,f +44164,100%,Mexico,5.0,t +1686,,Zimbabwe,1.0,f +24669,100%,Tonga,2.0,t +32758,,,1.0,f +13609,,Ghana,1.0,t +39308,,,1.0,f +14202,100%,,1.0,f +49450,100%,,1.0,f +2159,,,1.0,f +39321,,,1.0,t +26889,100%,Indonesia,10.0,f +32463,,Uganda,1.0,t +24026,98%,Cape Verde,69.0,t +4356,,,1.0,t +47727,0%,Sao Tome and Principe,1.0,t +10546,,,1.0,t +13068,100%,Svalbard & Jan Mayen Islands,1.0,f +11477,,,1.0,f +4941,,Turkmenistan,1.0,t +41418,100%,Nicaragua,1.0,f +12601,,Gibraltar,2.0,t +33461,,Lebanon,2.0,t +26335,,Guernsey,1.0,t +14514,,China,80.0,t +40906,,Netherlands,1.0,t +27820,100%,Tonga,2.0,t +19401,100%,France,5.0,f +20889,100%,Isle of Man,2.0,f +24385,,Maldives,1.0,t +3250,,Switzerland,2.0,t +43156,100%,Papua New Guinea,1.0,t +29647,100%,Peru,1305.0,f +23323,100%,Venezuela,1.0,f +29647,100%,Peru,1305.0,f +44792,,,1.0,t +10975,,,1.0,t +11711,,Korea,1.0,t +17163,,Marshall Islands,1.0,t +14118,100%,Denmark,3.0,t +35716,100%,Pakistan,4.0,f +34712,,,1.0,f +44857,100%,Zimbabwe,24.0,t +19355,,Jersey,1.0,f +35636,100%,Mauritania,1.0,t +2064,100%,Wallis and Futuna,2.0,f +21490,100%,,1.0,f +18876,60%,Netherlands,26.0,f +28062,,Isle of Man,1.0,f +23565,100%,Slovakia (Slovak Republic),6.0,t +23565,100%,Slovakia (Slovak Republic),6.0,t +21171,100%,El Salvador,2.0,f +3391,100%,Iran,58.0,t +2935,100%,Isle of Man,3.0,t +22582,,,1.0,f +24971,,,4.0,f +3055,,Niue,1.0,t +25769,100%,Uzbekistan,1.0,f +24010,100%,Turkmenistan,2.0,t +2495,,Bouvet Island (Bouvetoya),1.0,f +37544,100%,Malta,2.0,f +29647,100%,Peru,1305.0,f +43466,100%,,1.0,f +24372,80%,,1.0,t +19345,100%,Niue,2.0,t +16521,100%,Cocos (Keeling) Islands,1.0,t +29647,100%,Peru,1305.0,f +1564,100%,Indonesia,12.0,f +34512,,Monaco,1.0,f +14048,100%,Finland,6.0,t +1564,100%,Indonesia,12.0,f +8362,100%,Malawi,2.0,t +7860,100%,,1.0,f +10664,100%,Marshall Islands,5.0,f +7028,100%,Fiji,4.0,t +20518,100%,Togo,4.0,t +6839,,,1.0,t +13278,95%,Isle of Man,7.0,f +48917,,,1.0,f +47427,75%,,1.0,t +23147,,,1.0,f +3365,100%,,1.0,t +4554,,Marshall Islands,1.0,f +25588,,Jersey,2.0,f +13278,95%,Isle of Man,7.0,f +36454,,United Kingdom,1.0,f +43840,100%,Niue,4.0,t +40199,100%,Uzbekistan,6.0,f +11573,,,1.0,f +28396,,Croatia,1.0,t +40199,100%,Uzbekistan,6.0,f +14024,100%,,2.0,f +35324,100%,Kiribati,1.0,f +36086,100%,Sao Tome and Principe,4.0,t +18573,,,5.0,f +35922,100%,Switzerland,5.0,t +18573,,,5.0,f +38132,,,1.0,t +12422,100%,Andorra,3.0,f +31434,100%,Malawi,1.0,t +31041,96%,Ecuador,35.0,f +44094,,,1.0,f +3394,100%,Barbados,2.0,f +2743,97%,China,23.0,f +22797,100%,,2.0,t +28423,,United Kingdom,1.0,t +12087,,Jersey,2.0,f +728,100%,Solomon Islands,2.0,t +31041,96%,Ecuador,35.0,f +36627,,,2.0,t +31041,96%,Ecuador,35.0,f +31041,96%,Ecuador,35.0,f +37650,,,7.0,t +15644,,Gambia,1.0,f +31041,96%,Ecuador,35.0,f +31041,96%,Ecuador,35.0,f +5381,,French Guiana,1.0,t +40690,100%,,1.0,f +48278,,Estonia,1.0,f +15814,100%,Brazil,4.0,f +31041,96%,Ecuador,35.0,f +31041,96%,Ecuador,35.0,f +10711,93%,Uganda,108.0,t +31041,96%,Ecuador,35.0,f +45853,100%,Monaco,1.0,t +9393,100%,,1.0,t +35504,,Cuba,1.0,f +30433,,,4.0,t +48442,100%,Nicaragua,5.0,t +26593,33%,,1.0,f +9978,100%,Puerto Rico,3.0,t +39433,,Puerto Rico,1.0,f +33940,0%,Niue,1.0,f +8453,100%,Rwanda,6.0,t +35572,,Nicaragua,1.0,f +10679,,Bosnia and Herzegovina,1.0,f +4026,,Turkmenistan,1.0,t +15785,,Niue,1.0,t +31972,100%,,1.0,t +49761,100%,Turkmenistan,1.0,f +36061,,,1.0,t +42540,,Mexico,1.0,f +11741,,United Kingdom,1.0,f +46909,,Jersey,2.0,t +8514,100%,,1.0,t +28383,,Micronesia,1.0,t +14118,100%,Denmark,3.0,t +23384,,,1.0,t +2538,67%,Monaco,1.0,f +35833,83%,Estonia,9.0,t +21874,,Finland,2.0,t +39555,100%,Marshall Islands,13.0,t +3925,,,1.0,f +25717,100%,Tonga,2.0,t +50074,100%,Montserrat,8.0,f +12898,100%,,1.0,t +36778,100%,Uzbekistan,1.0,f +42895,,Marshall Islands,2.0,t +19400,100%,Gibraltar,7.0,f +46617,93%,Guinea,2.0,f +24517,,Russian Federation,1.0,t +28829,,,1.0,f +17932,100%,Costa Rica,8.0,t +37524,100%,Lebanon,1.0,f +47196,,Russian Federation,1.0,f +13278,95%,Isle of Man,7.0,f +19313,,,1.0,t +43237,40%,Montserrat,24.0,f +37210,100%,Tonga,1.0,f +8101,,Chile,1.0,t +45737,,Tonga,29.0,t +2935,100%,Isle of Man,3.0,t +12238,100%,,1.0,t +45737,,Tonga,29.0,t +27091,,,1.0,f +9704,,,1.0,t +22956,100%,Faroe Islands,1.0,f +30095,,,1.0,t +31144,,Maldives,1.0,t +42110,67%,Guinea,2.0,f +2794,100%,Indonesia,3.0,f +23353,67%,,1.0,t +12476,100%,Holy See (Vatican City State),1.0,f +20803,,,1.0,f +44670,,Monaco,1.0,f +31354,100%,Niger,8.0,t +15024,100%,Puerto Rico,3.0,f +18614,100%,,1.0,t +43237,40%,Montserrat,24.0,f +42972,,Gibraltar,1.0,t +30831,100%,Turkmenistan,1.0,f +46869,100%,Micronesia,2.0,t +15805,,,1.0,t +47274,100%,Tonga,48.0,f +47274,100%,Tonga,48.0,f +950,,Chile,1.0,f +6533,,Gibraltar,4.0,f +28300,100%,Russian Federation,1.0,t +6969,,,3.0,f +6969,,,3.0,f +6969,,,3.0,f +36684,,Croatia,1.0,f +17915,100%,Russian Federation,1.0,f +8001,100%,,1.0,t +8304,,,1.0,t +6119,,Niger,1.0,f +28007,100%,,1.0,t +6948,,Costa Rica,1.0,f +21469,100%,Djibouti,1.0,f +275,100%,Tunisia,3.0,t +5885,,,1.0,f +13422,,Isle of Man,1.0,f +19302,,Cape Verde,1.0,f +2990,,Somalia,1.0,f +18409,,Cape Verde,1.0,f +30091,,,1.0,f +414,100%,Uganda,17.0,t +414,100%,Uganda,17.0,t +42603,100%,,1.0,f +21633,,Tanzania,1.0,t +1426,100%,,1.0,t +6394,100%,Micronesia,1.0,f +25519,100%,Slovakia (Slovak Republic),9.0,t +46539,100%,,2.0,f +22069,,Guinea,1.0,t +9874,100%,Montserrat,4.0,t +18453,,United Kingdom,1.0,f +5331,100%,Russian Federation,1.0,t +414,100%,Uganda,17.0,t +20011,,Marshall Islands,1.0,t +8567,,Maldives,1.0,t +31041,96%,Ecuador,35.0,f +31041,96%,Ecuador,35.0,f +21891,,,2.0,t +5931,100%,Reunion,2.0,t +49749,,,1.0,t +11184,,Nauru,2.0,t +9753,,,1.0,f +13654,0%,Chad,1.0,f +8056,,Micronesia,1.0,t +1261,100%,Malawi,3.0,t +31041,96%,Ecuador,35.0,f +5170,,Turks and Caicos Islands,1.0,t +25590,100%,Gambia,1.0,t +1042,,,1.0,t +31041,96%,Ecuador,35.0,f +16011,100%,Rwanda,1.0,f +31041,96%,Ecuador,35.0,f +6261,,,1.0,f +17852,100%,Cape Verde,1.0,t +29647,100%,Peru,1305.0,f +15622,,Reunion,1.0,f +1225,,,1.0,t +41402,,,1.0,f +31041,96%,Ecuador,35.0,f +31041,96%,Ecuador,35.0,f +31041,96%,Ecuador,35.0,f +31041,96%,Ecuador,35.0,f +31041,96%,Ecuador,35.0,f +31041,96%,Ecuador,35.0,f +44093,,Mexico,1.0,f +31041,96%,Ecuador,35.0,f +6383,,Djibouti,1.0,t +31041,96%,Ecuador,35.0,f +2555,,Malta,1.0,t +39143,89%,,33.0,f +3127,100%,Rwanda,36.0,f +3127,100%,Rwanda,36.0,f +3127,100%,Rwanda,36.0,f +45190,,Barbados,1.0,f +50003,,Zimbabwe,1.0,t +16986,,Chile,1.0,t +39004,100%,Kiribati,2.0,f +46291,50%,Chad,1.0,t +36290,100%,Cuba,1.0,t +14325,,Maldives,2.0,t +414,100%,Uganda,17.0,t +37967,,,1.0,t +8806,,,1.0,t +48756,100%,Maldives,59.0,f +39876,100%,Cuba,3.0,f +13398,,,3.0,t +28828,100%,Isle of Man,198.0,t +3081,100%,Switzerland,1.0,t +7675,,,1.0,t +31335,90%,China,1.0,f +28873,,,2.0,t +23336,,Puerto Rico,1.0,f +31041,96%,Ecuador,35.0,f +21112,,Greenland,1.0,f +17826,,,1.0,f +2963,,United Kingdom,1.0,t +36649,,Gibraltar,1.0,f +10711,93%,Uganda,108.0,t +26619,100%,Nicaragua,1.0,f +22654,100%,,2.0,f +18269,86%,Fiji,12.0,f +8159,100%,Micronesia,3.0,f +44207,80%,Djibouti,8.0,t +4439,,Chad,3.0,t +414,100%,Uganda,17.0,t +44207,80%,Djibouti,8.0,t +414,100%,Uganda,17.0,t +10143,100%,Sao Tome and Principe,2.0,f +17016,,,1.0,t +19653,,Cook Islands,1.0,f +23407,,Maldives,2.0,f +11797,,Isle of Man,1.0,f +32038,100%,Indonesia,35.0,f +21286,100%,Tonga,6.0,t +18905,,Turkmenistan,1.0,t +31041,96%,Ecuador,35.0,f +44213,,,1.0,t +31041,96%,Ecuador,35.0,f +9222,100%,Brazil,18.0,t +31053,,France,1.0,t +43595,,,1.0,f +47274,100%,Tonga,48.0,f +40549,100%,Maldives,2.0,t +15996,,,1.0,t +24064,100%,Niue,2.0,t +6606,0%,,1.0,f +22251,100%,Gambia,11.0,f +15551,,Tonga,1.0,t +28068,,Micronesia,1.0,f +43840,100%,Niue,4.0,t +22251,100%,Gambia,11.0,f +30496,,,1.0,f +7303,,,1.0,f +12454,,Faroe Islands,1.0,t +37639,100%,Nauru,11.0,f +5490,100%,United Kingdom,1.0,t +12767,,,1.0,f +32029,100%,Saint Helena,2.0,t +15124,,Philippines,1.0,f +7881,100%,Niue,6.0,t +5024,,Niue,1.0,t +46645,,Ukraine,1.0,f +3391,100%,Iran,58.0,t +11363,,,1.0,t +11860,100%,,2.0,t +3560,,,2.0,t +42368,,,1.0,f +1727,,Guinea,1.0,f +1534,80%,Uzbekistan,3.0,t +41997,100%,Tunisia,1.0,t +15015,,,1.0,t +24959,86%,Turkmenistan,1.0,f +39179,,Cuba,1.0,t +21251,,Malta,1.0,f +29647,100%,Peru,1305.0,f +31041,96%,Ecuador,35.0,f +8700,,,1.0,t +31041,96%,Ecuador,35.0,f +31041,96%,Ecuador,35.0,f +41898,,Maldives,1.0,t +31041,96%,Ecuador,35.0,f +1549,100%,Malta,1.0,t +10711,93%,Uganda,108.0,t +10711,93%,Uganda,108.0,t +46682,,Philippines,3.0,f +1301,,Micronesia,1.0,f +31041,96%,Ecuador,35.0,f +39109,77%,Ukraine,24.0,t +18037,100%,Brazil,2.0,f +32635,,Guinea,1.0,f +2714,100%,Bosnia and Herzegovina,8.0,f +20654,100%,Tanzania,1.0,f +21286,100%,Tonga,6.0,t +49126,100%,Guinea,3.0,t +13204,100%,Russian Federation,2.0,t +41125,80%,Vanuatu,1.0,f +21697,,,1.0,t +8279,,,1.0,f +18939,,Reunion,3.0,t +33744,,,1.0,f +19344,,,1.0,t +7471,,Turkmenistan,1.0,t +11891,100%,Russian Federation,1.0,t +9368,67%,,1.0,f +47745,,,1.0,t +34441,,Ecuador,2.0,f +2057,100%,Brazil,1.0,f +124,,,1.0,t +47594,100%,Kenya,17.0,t +49527,,,1.0,t +31444,100%,Reunion,25.0,f +31444,100%,Reunion,25.0,f +46917,100%,,2.0,t +31492,,Denmark,1.0,t +30152,,French Guiana,1.0,t +22259,,,1.0,f +49750,100%,Kenya,2.0,t +31444,100%,Reunion,25.0,f +31444,100%,Reunion,25.0,f +31444,100%,Reunion,25.0,f +23582,98%,Montserrat,17.0,f +31444,100%,Reunion,25.0,f +1755,,Sao Tome and Principe,1.0,t +30760,,Guinea,1.0,t +5555,100%,Denmark,11.0,t +17004,100%,United Kingdom,1.0,f +19900,,Kiribati,1.0,f +21190,100%,Uganda,3.0,f +33627,89%,Gambia,3.0,t +29849,100%,Turkmenistan,1.0,t +16204,100%,Reunion,1.0,t +23582,98%,Montserrat,17.0,f +275,100%,Tunisia,3.0,t +27580,,Monaco,1.0,f +24976,100%,Russian Federation,1.0,t +35397,100%,,1.0,t +8717,,Ecuador,1.0,t +9150,,Chile,1.0,f +23868,67%,,15.0,t +10020,90%,China,5.0,f +6030,,Nauru,2.0,t +23974,0%,United Kingdom,1.0,f +36658,94%,China,20.0,t +36658,94%,China,20.0,t +19271,100%,Jersey,11.0,f +31669,,San Marino,1.0,t +48537,,Kenya,1.0,t +20740,,,2.0,t +42163,,Rwanda,1.0,t +49398,88%,Barbados,18.0,t +4084,100%,,2.0,t +41974,,,1.0,f +46917,100%,,2.0,t +41228,,Fiji,1.0,f +15469,,Lebanon,1.0,f +33555,,Maldives,1.0,f +45674,,Mauritania,1.0,f +18129,,Niue,1.0,t +29409,,,1.0,f +28972,100%,Russian Federation,1.0,t +29217,,Anguilla,3.0,t +22520,,Kenya,1.0,t +7925,,Russian Federation,1.0,f +21282,,,1.0,t +10927,100%,Gambia,2.0,t +36180,100%,,1.0,t +40840,70%,,1.0,f +4561,,Niue,1.0,f +6134,,,3.0,t +14766,100%,Rwanda,2.0,t +1864,,,1.0,f +46319,,,2.0,t +19271,100%,Jersey,11.0,f +3569,,Mauritania,1.0,f +13819,,,1.0,f +23480,100%,,3.0,t +30441,100%,Guinea,1.0,t +41247,,,1.0,f +47729,,Kiribati,1.0,t +20017,100%,Faroe Islands,1.0,t +28273,100%,,2.0,f +50095,,Cocos (Keeling) Islands,1.0,f +19132,,Lithuania,1.0,t +20004,100%,Marshall Islands,1.0,t +41169,,Chad,2.0,t +30030,,,1.0,f +21242,,,1.0,f +17421,,Anguilla,1.0,f +14270,,Rwanda,1.0,f +4049,,,1.0,t +2857,100%,Montserrat,4.0,f +38631,100%,,5.0,t +3394,100%,Barbados,2.0,f +37102,,,1.0,f +11853,100%,,2.0,t +36222,100%,,2.0,f +6714,,Costa Rica,1.0,f +792,,,1.0,t +36234,97%,Fiji,12.0,t +18420,,Wallis and Futuna,1.0,t +45737,,Tonga,29.0,t +30588,100%,Nauru,12.0,t +22273,100%,,2.0,f +1744,100%,,1.0,f +28828,100%,Isle of Man,198.0,t +42988,,Guinea,2.0,t +17866,100%,Tanzania,2.0,t +48756,100%,Maldives,59.0,f +1037,100%,El Salvador,1.0,f +48756,100%,Maldives,59.0,f +23394,,Finland,1.0,f +38858,100%,Zimbabwe,2.0,f +39295,100%,Gibraltar,2.0,t +4931,,Chad,1.0,f +33501,,Svalbard & Jan Mayen Islands,1.0,f +29255,,Mauritania,1.0,t +28321,,Turks and Caicos Islands,1.0,f +31479,,Barbados,1.0,f +24785,,,1.0,t +14866,100%,Faroe Islands,1.0,t +22685,90%,Brazil,1.0,f +35442,,Russian Federation,14.0,f +38050,,,1.0,f +44485,,Brazil,1.0,t +9054,100%,Seychelles,4.0,t +48756,100%,Maldives,59.0,f +11224,,,1.0,f +31287,,,1.0,f +33376,0%,Brazil,1.0,f +33590,100%,,2.0,t +3962,100%,,1.0,f +7902,,Cape Verde,1.0,f +39686,,,1.0,f +15946,100%,,1.0,t +7146,,Mauritania,1.0,t +5905,,,1.0,f +49799,100%,,1.0,f +28919,,Malawi,2.0,t +40778,100%,Pakistan,7.0,f +36658,94%,China,20.0,t +36658,94%,China,20.0,t +313,0%,,1.0,t +4866,100%,,1.0,f +10749,100%,,3.0,t +19363,0%,Uzbekistan,1.0,f +17246,,,1.0,t +31652,100%,Kenya,8.0,t +28651,,Uzbekistan,1.0,t +28629,100%,,2.0,t +39285,,Barbados,1.0,t +23727,,,1.0,t +14858,,Croatia,1.0,f +4330,94%,Ukraine,60.0,t +37519,100%,Indonesia,1.0,f +48615,,Netherlands,1.0,f +31250,,,1.0,f +22427,,Russian Federation,2.0,t +27272,100%,China,1.0,f +46658,100%,,1.0,t +45739,80%,Maldives,6.0,t +40872,,Pakistan,1.0,f +27158,100%,Indonesia,1.0,f +41007,,Guinea,1.0,f +46972,,Senegal,2.0,f +49117,,,1.0,t +20435,,Russian Federation,2.0,t +43827,100%,Marshall Islands,2.0,f +27075,100%,El Salvador,2.0,f +5057,100%,Zimbabwe,23.0,t +20435,,Russian Federation,2.0,t +41470,,Saint Helena,1.0,t +21849,,Maldives,1.0,t +32880,,Uzbekistan,1.0,t +15738,,Montserrat,1.0,t +9435,100%,Estonia,1.0,t +5507,,Uganda,1.0,f +8354,33%,Russian Federation,1.0,t +38152,100%,Zimbabwe,2.0,t +43822,,Costa Rica,1.0,t +37097,90%,Afghanistan,1.0,t +30965,,Gibraltar,1.0,t +50074,100%,Montserrat,8.0,f +42299,100%,Marshall Islands,1.0,f +16556,100%,Tonga,1.0,f +24118,98%,Ghana,21.0,t +29647,100%,Peru,1305.0,f +28125,,Reunion,2.0,t +42795,,French Guiana,1.0,f +47594,100%,Kenya,17.0,t +15637,,,1.0,t +13894,100%,Isle of Man,5.0,f +48442,100%,Nicaragua,5.0,t +38031,100%,Venezuela,1.0,t +48442,100%,Nicaragua,5.0,t +42008,,,1.0,t +34085,89%,Cocos (Keeling) Islands,3.0,t +42793,,Monaco,1.0,f +45308,,Isle of Man,1.0,f +10711,93%,Uganda,108.0,t +15817,100%,Barbados,4.0,t +47244,50%,Guernsey,1.0,t +28435,,,1.0,f +8715,100%,Uganda,2.0,f +25986,,Croatia,2.0,t +41438,,Russian Federation,1.0,t +46626,,Chile,2.0,t +49367,,,1.0,f +27439,100%,Tanzania,1.0,t +29837,100%,,1.0,t +28974,70%,,1.0,t +34068,,,1.0,f +48532,100%,,1.0,f +39423,100%,,6.0,t +39236,,Afghanistan,3.0,f +33532,,,1.0,t +9685,100%,French Guiana,1.0,f +35360,,France,1.0,f +45160,100%,,2.0,t +46019,100%,,1.0,t +18231,93%,Uganda,7.0,t +19217,98%,Marshall Islands,46.0,f +6894,80%,Estonia,47.0,t +12487,,Turkmenistan,1.0,f +29647,100%,Peru,1305.0,f +14743,100%,Gambia,1.0,t +15752,100%,Bouvet Island (Bouvetoya),2.0,f +20730,,Djibouti,1.0,t +25974,100%,Tonga,1.0,f +50074,100%,Montserrat,8.0,f +46275,,Bosnia and Herzegovina,1.0,t +31707,100%,Niger,48.0,f +32171,100%,Micronesia,1.0,f +31707,100%,Niger,48.0,f +20097,,,1.0,f +31707,100%,Niger,48.0,f +2679,0%,United Kingdom,1.0,f +36092,80%,Gambia,3.0,t +49689,100%,Niger,6.0,f +38367,,Costa Rica,1.0,t +36092,80%,Gambia,3.0,t +29939,,Lebanon,2.0,f +6717,,,1.0,f +10711,93%,Uganda,108.0,t +28323,,Malta,1.0,t +33698,100%,Cocos (Keeling) Islands,1.0,t +40602,,Slovenia,1.0,f +29892,,,1.0,t +35275,75%,,1.0,f +10711,93%,Uganda,108.0,t +4881,,Kenya,1.0,f +13922,,Chile,3.0,t +13922,,Chile,3.0,t +49755,,Uzbekistan,1.0,f +22423,,,1.0,t +34312,100%,,1.0,f +7930,,,1.0,f +27349,100%,France,1.0,t +28828,100%,Isle of Man,198.0,t +36915,100%,Senegal,1.0,f +40886,0%,Turks and Caicos Islands,3.0,f +8892,,French Guiana,1.0,t +4675,100%,,1.0,f +38072,100%,Niue,3.0,t +49378,90%,,2.0,t +36507,,Micronesia,1.0,t +4500,,Isle of Man,1.0,t +6018,,Marshall Islands,1.0,f +23278,,Kenya,1.0,t +3658,,Micronesia,2.0,t +45714,100%,,1.0,f +49114,,Venezuela,1.0,f +46866,100%,Kiribati,3.0,t +44249,,,1.0,f +12258,,,1.0,t +31707,100%,Niger,48.0,f +45898,100%,Andorra,1.0,t +27514,,Jersey,1.0,t +16553,,Cocos (Keeling) Islands,1.0,t +26310,100%,El Salvador,1.0,t +13529,75%,Sao Tome and Principe,1.0,f +11808,100%,Gibraltar,4.0,f +8918,100%,,1.0,t +19271,100%,Jersey,11.0,f +24344,,Guernsey,2.0,f +34584,,Faroe Islands,2.0,f +42386,100%,Ecuador,6.0,t +48719,,,1.0,t +10036,,,2.0,t +26592,,,1.0,t +46759,,,1.0,f +14321,,Russian Federation,2.0,t +22651,,,1.0,t +11808,100%,Gibraltar,4.0,f +35723,90%,French Guiana,1.0,t +4509,,Vanuatu,1.0,f +31594,100%,Philippines,19.0,t +24898,,France,1.0,t +9465,100%,Slovakia (Slovak Republic),3.0,t +26174,,,1.0,f +20334,99%,Niger,171.0,t +14160,90%,Slovakia (Slovak Republic),4.0,t +13394,100%,United Kingdom,5.0,f +19218,100%,Philippines,1.0,f +45153,83%,,2.0,t +11120,,,1.0,t +5166,100%,Ecuador,16.0,t +18077,100%,Sao Tome and Principe,139.0,f +6952,,,1.0,f +5166,100%,Ecuador,16.0,t +20334,99%,Niger,171.0,t +21795,,Bosnia and Herzegovina,1.0,t +17639,90%,Kenya,3.0,f +24434,,Marshall Islands,1.0,t +47296,100%,,1.0,f +37716,,Micronesia,1.0,t +36643,98%,Maldives,17.0,f +23585,,Jersey,1.0,f +39793,100%,Uzbekistan,1.0,t +35727,,,1.0,f +35676,80%,Uganda,2.0,t +9222,100%,Brazil,18.0,t +10850,100%,,1.0,f +19271,100%,Jersey,11.0,f +41851,100%,,3.0,t +14258,50%,Senegal,1.0,f +40688,100%,Holy See (Vatican City State),3.0,t +12965,100%,Vietnam,11.0,t +19670,100%,Ecuador,1.0,f +42119,100%,Djibouti,2.0,t +9578,,Mexico,1.0,f +2735,100%,Netherlands,6.0,f +17554,,Montserrat,1.0,t +35293,,,1.0,f +37228,,,1.0,t +21106,100%,Tonga,1.0,f +18889,,Pakistan,1.0,t +42811,100%,Isle of Man,1.0,f +12350,100%,Niger,2.0,t +37038,67%,,1.0,f +31712,100%,Russian Federation,2.0,t +206,100%,China,5.0,t +9363,95%,Ukraine,50.0,f +39119,93%,Marshall Islands,1.0,f +6722,100%,,1.0,t +16522,90%,Anguilla,1.0,f +20138,100%,,1.0,t +35436,99%,Nicaragua,21.0,f +4192,,Nicaragua,4.0,f +44958,100%,Senegal,1.0,t +21922,75%,Sao Tome and Principe,1.0,t +19706,100%,Turkmenistan,1.0,f +34376,,Nauru,1.0,f +14996,60%,Maldives,1.0,f +7481,100%,,1.0,f +31074,100%,Malta,4.0,t +31074,100%,Malta,4.0,t +49398,88%,Barbados,18.0,t +41672,100%,,1.0,t +47110,,Nauru,1.0,t +26064,,,1.0,f +30883,,Peru,1.0,f +16452,80%,Afghanistan,1.0,t +14573,,,1.0,t +37827,,Chile,2.0,t +35820,100%,Turkmenistan,2.0,t +13464,,Afghanistan,2.0,t +36526,100%,Russian Federation,1.0,f +699,100%,Uzbekistan,3.0,f +30607,,Nicaragua,3.0,t +8479,,Gambia,1.0,f +30041,100%,Vietnam,1.0,t +6988,88%,United Kingdom,2.0,f +40088,,Mauritania,1.0,t +19558,,Kenya,1.0,f +43106,,,1.0,f +6417,,Gibraltar,1.0,t +6214,,El Salvador,1.0,t +30315,,,1.0,t +16134,,Andorra,1.0,f +43387,,,1.0,f +19718,100%,Turks and Caicos Islands,10.0,f +46512,,Indonesia,4.0,t +33624,100%,,1.0,f +5687,100%,,1.0,t +33534,,Sao Tome and Principe,1.0,f +32508,,Malta,2.0,f +34611,100%,,1.0,t +8149,,Tonga,1.0,t +19248,25%,Maldives,3.0,f +19248,25%,Maldives,3.0,f +34895,100%,Estonia,16.0,t +43469,,,1.0,f +43677,50%,,1.0,f +10751,,,3.0,t +33696,,Lebanon,2.0,t +32855,,Montserrat,1.0,t +4518,100%,Niue,3.0,f +33164,60%,Togo,6.0,f +33164,60%,Togo,6.0,f +25642,,Lebanon,1.0,f +29647,100%,Peru,1305.0,f +45249,57%,Philippines,1.0,t +13602,,Anguilla,2.0,f +13602,,Anguilla,2.0,f +22639,,,1.0,f +5959,100%,Tunisia,1.0,t +8970,70%,Faroe Islands,2.0,t +3291,100%,,1.0,f +9238,100%,Uganda,1.0,t +46664,100%,Croatia,2.0,t +46760,,Lebanon,1.0,f +24844,100%,Uzbekistan,6.0,f +31215,100%,Sao Tome and Principe,2.0,f +42155,,Uzbekistan,1.0,f +40398,,,1.0,f +46316,,,1.0,f +18046,,Chad,1.0,t +39320,,,1.0,f +46934,100%,Gibraltar,2.0,t +31780,,French Guiana,1.0,f +14435,,,1.0,t +4525,98%,El Salvador,9.0,t +13265,,Philippines,2.0,t +46220,100%,,2.0,f +34385,,,1.0,f +40846,,Sao Tome and Principe,3.0,t +24775,97%,Montserrat,44.0,f +15549,100%,,1.0,t +7192,100%,Maldives,2.0,f +3391,100%,Iran,58.0,t +29815,100%,Monaco,2.0,t +3391,100%,Iran,58.0,t +29214,,Togo,1.0,f +42547,,Guinea,1.0,t +9408,,Anguilla,1.0,f +44116,100%,Zimbabwe,1.0,t +9215,100%,Anguilla,2.0,f +45737,,Tonga,29.0,t +46110,100%,Afghanistan,4.0,f +29647,100%,Peru,1305.0,f +14805,,Ghana,2.0,f +9589,100%,Faroe Islands,1.0,f +2954,100%,Denmark,5.0,t +49059,100%,Gambia,16.0,t +5536,,Barbados,1.0,t +36202,100%,Niue,1.0,f +47077,100%,Bouvet Island (Bouvetoya),2.0,f +49059,100%,Gambia,16.0,t +39558,,Lebanon,1.0,t +28828,100%,Isle of Man,198.0,t +13374,67%,,2.0,f +40100,100%,Nicaragua,1.0,t +22384,,Niue,1.0,t +30869,100%,,2.0,t +34806,100%,Vanuatu,1.0,f +41104,100%,Estonia,6.0,t +6653,,El Salvador,1.0,f +28241,97%,Maldives,10.0,f +3103,100%,Turks and Caicos Islands,4.0,f +29647,100%,Peru,1305.0,f +42575,,Nauru,1.0,t +16091,100%,Kiribati,1.0,t +2460,,Vietnam,2.0,f +7035,,Costa Rica,1.0,f +46682,,Philippines,3.0,f +39109,77%,Ukraine,24.0,t +2709,,Chile,1.0,f +16877,,Malta,1.0,t +29166,100%,Mauritania,3.0,f +24896,100%,Algeria,50.0,t +11719,,Gibraltar,1.0,t +14802,,Faroe Islands,2.0,t +654,100%,Peru,1.0,t +10124,,Cape Verde,1.0,t +22785,100%,,3.0,f +23818,,Congo,1.0,f +25694,,,1.0,f +36031,,Uzbekistan,2.0,f +25796,,Niue,2.0,f +49146,90%,Tunisia,2.0,t +12715,100%,Estonia,29.0,f +19857,,Marshall Islands,1.0,f +23408,,Kenya,1.0,t +8407,100%,Gibraltar,1.0,f +17591,,,1.0,t +2833,100%,Cuba,1.0,t +26084,,Vietnam,4.0,t +45584,0%,Kenya,2.0,t +15122,100%,,2.0,f +17524,100%,Reunion,4.0,t +3433,100%,Faroe Islands,1.0,t +40054,0%,Jersey,2.0,f +16964,100%,Cape Verde,3.0,t +48498,,,1.0,t +23775,,Cocos (Keeling) Islands,1.0,f +24775,97%,Montserrat,44.0,f +15530,,,1.0,f +24182,100%,Jersey,2.0,t +47668,,Turkmenistan,1.0,f +26312,100%,,3.0,t +6598,100%,,1.0,t +8097,100%,Anguilla,2.0,t +5446,,Zimbabwe,2.0,f +37898,100%,Peru,1.0,f +24775,97%,Montserrat,44.0,f +8225,95%,Barbados,31.0,f +24501,100%,Andorra,2.0,t +10664,100%,Marshall Islands,5.0,f +15497,100%,Jersey,1.0,f +46629,,Zimbabwe,1.0,t +4703,,Rwanda,1.0,f +47661,,Costa Rica,1.0,f +31005,,,1.0,f +24772,90%,Denmark,10.0,f +11562,100%,Ghana,5.0,f +11753,100%,Gambia,11.0,t +27382,,Ecuador,1.0,f +13125,,Guinea,1.0,f +3190,,Russian Federation,1.0,t +39364,90%,Brazil,1.0,f +3425,,,2.0,f +28241,97%,Maldives,10.0,f +40076,90%,Montserrat,2.0,f +18297,,,1.0,t +12979,,,1.0,t +3059,88%,Isle of Man,1.0,t +488,100%,Maldives,18.0,f +4525,98%,El Salvador,9.0,t +25727,,Monaco,1.0,f +10677,100%,Venezuela,1.0,f +49348,60%,French Guiana,2.0,f +49548,100%,Faroe Islands,2.0,t +1839,100%,,1.0,f +23034,99%,Monaco,54.0,f +4525,98%,El Salvador,9.0,t +21765,,Mauritania,1.0,t +23350,,,1.0,f +41795,,Denmark,1.0,t +19958,100%,Congo,40.0,t +29988,,French Guiana,5.0,t +29851,100%,Uzbekistan,1.0,t +13464,,Afghanistan,2.0,t +32379,,Tonga,1.0,t +25154,100%,,2.0,t +36901,100%,,6.0,t +41492,100%,,1.0,t +11562,100%,Ghana,5.0,f +43902,100%,,2.0,t +49095,0%,,1.0,f +3841,40%,Isle of Man,1.0,f +39940,100%,Cape Verde,3.0,f +40129,,Kiribati,1.0,t +41878,91%,Maldives,47.0,f +9182,100%,El Salvador,1.0,t +22090,100%,Marshall Islands,1.0,t +39787,,Uzbekistan,1.0,f +21165,,Indonesia,1.0,t +26586,,Sao Tome and Principe,2.0,t +26972,100%,,1.0,f +15145,100%,,1.0,t +34584,,Faroe Islands,2.0,f +31267,,Faroe Islands,1.0,f +897,,Bahrain,1.0,t +548,100%,,3.0,f +6256,100%,,1.0,f +15816,,Russian Federation,1.0,t +9446,,Malta,1.0,f +24227,100%,,1.0,f +11561,,France,1.0,f +20271,0%,,1.0,f +9043,100%,Gibraltar,3.0,f +38631,100%,,5.0,t +3391,100%,Iran,58.0,t +6123,,Gambia,1.0,t +8043,,Zimbabwe,2.0,f +19271,100%,Jersey,11.0,f +46110,100%,Afghanistan,4.0,f +42620,100%,,1.0,f +20574,100%,Malawi,1.0,t +39365,,,1.0,t +49387,,Turkmenistan,1.0,t +46758,100%,,1.0,t +976,100%,Zimbabwe,2.0,t +12366,100%,,1.0,f +3425,,,2.0,f +5873,100%,Marshall Islands,2.0,t +36386,,United Kingdom,1.0,t +37043,100%,Pakistan,11.0,f +47617,100%,Philippines,2.0,f +10664,100%,Marshall Islands,5.0,f +42701,90%,Tanzania,4.0,t +9308,75%,Chile,2.0,f +37043,100%,Pakistan,11.0,f +42701,90%,Tanzania,4.0,t +36701,,,5.0,f +33203,100%,,3.0,f +10372,,Guinea,1.0,t +29153,100%,Malta,1.0,f +8168,,Indonesia,1.0,t +480,100%,Nicaragua,1.0,f +6980,,Costa Rica,1.0,t +42856,,,1.0,t +29030,,Croatia,1.0,t +42813,,Jersey,1.0,f +12623,,,1.0,t +37934,,Portugal,1.0,t +27785,100%,Uzbekistan,58.0,f +42584,100%,Maldives,2.0,t +27521,,Chile,2.0,t +14991,100%,,1.0,f +13497,,,1.0,t +32436,100%,,1.0,t +4905,,Bouvet Island (Bouvetoya),1.0,t +5964,0%,,2.0,f +1692,100%,Jersey,15.0,t +9657,67%,French Guiana,1.0,f +27347,,,1.0,f +36345,,Uganda,1.0,f +41671,100%,Kenya,2.0,t +41514,,Malta,1.0,f +31707,100%,Niger,48.0,f +12813,100%,Mauritania,2.0,t +7401,90%,Korea,2.0,f +32178,,Niue,4.0,t +29988,,French Guiana,5.0,t +22251,100%,Gambia,11.0,f +22549,100%,Indonesia,2.0,t +30247,100%,,2.0,f +9996,100%,Christmas Island,1.0,f +26889,100%,Indonesia,10.0,f +41965,,Kiribati,1.0,t +29647,100%,Peru,1305.0,f +28946,100%,Vanuatu,1.0,t +43064,,Guinea,1.0,t +48623,100%,Zimbabwe,1.0,t +17417,,Denmark,11.0,f +31102,,,1.0,t +28416,100%,,1.0,t +32178,,Niue,4.0,t +37501,,Togo,1.0,f +35871,,Marshall Islands,1.0,f +32178,,Niue,4.0,t +9731,100%,Gambia,4.0,f +48792,,Faroe Islands,1.0,t +14321,,Russian Federation,2.0,t +20120,100%,Wallis and Futuna,10.0,f +29988,,French Guiana,5.0,t +22019,100%,Monaco,1.0,t +29988,,French Guiana,5.0,t +14940,100%,Marshall Islands,2.0,f +43474,86%,,1.0,f +47650,96%,Mauritania,2.0,t +2859,90%,Bahrain,1.0,f +42601,,Peru,1.0,t +11939,100%,,2.0,t +37828,50%,Afghanistan,1.0,f +14450,100%,Zimbabwe,1.0,f +9287,,Nauru,1.0,f +9603,,Jersey,1.0,f +19271,100%,Jersey,11.0,f +49398,88%,Barbados,18.0,t +62,,Bosnia and Herzegovina,1.0,t +26952,,Russian Federation,3.0,t +38695,100%,United Kingdom,4.0,t +18941,,,1.0,f +24118,98%,Ghana,21.0,t +24118,98%,Ghana,21.0,t +41081,,,1.0,t +28625,100%,,2.0,t +2292,,Croatia,1.0,t +40683,100%,United Kingdom,2.0,t +24290,,Kiribati,1.0,f +29157,100%,Canada,1.0,t +18077,100%,Sao Tome and Principe,139.0,f +2928,100%,Marshall Islands,3.0,t +46412,,Brazil,1.0,t +38032,,Svalbard & Jan Mayen Islands,1.0,t +24775,97%,Montserrat,44.0,f +24775,97%,Montserrat,44.0,f +39973,100%,Micronesia,1.0,f +31354,100%,Niger,8.0,t +8824,,,1.0,f +12469,,,1.0,f +8097,100%,Anguilla,2.0,t +33601,100%,,3.0,f +27576,50%,,1.0,t +30870,,,1.0,t +2378,100%,Uzbekistan,2.0,f +43133,,Rwanda,1.0,f +32508,,Malta,2.0,f +29673,,Chad,1.0,t +41208,,Anguilla,1.0,f +5412,,Nicaragua,1.0,f +1577,100%,Peru,8.0,t +17269,100%,Maldives,5.0,t +6182,,Montserrat,1.0,t +38840,,,1.0,f +11291,100%,,1.0,f +21917,100%,,1.0,f +34494,100%,Niue,2.0,t +15992,100%,Maldives,2.0,t +39579,100%,Uzbekistan,2.0,t +20324,100%,United Kingdom,2.0,f +41466,71%,,1.0,f +19513,,,1.0,f +30948,,,1.0,f +49309,100%,Switzerland,1.0,f +43162,72%,China,7.0,f +10310,100%,Togo,2.0,f +43162,72%,China,7.0,f +8041,96%,Bouvet Island (Bouvetoya),2.0,f +34625,,Malawi,1.0,f +49479,,Russian Federation,1.0,t +21589,100%,Zimbabwe,1.0,f +19944,100%,Kiribati,12.0,f +46398,,Niue,1.0,f +21161,100%,Marshall Islands,1.0,f +29266,,,1.0,t +28365,,China,4.0,t +46532,,Sao Tome and Principe,1.0,f +12663,,Senegal,2.0,f +48409,,Estonia,60.0,t +10071,,Gambia,1.0,f +7769,100%,Niue,1.0,f +29066,,Rwanda,1.0,t +2703,,,1.0,f +39109,77%,Ukraine,24.0,t +31327,,Russian Federation,1.0,t +49503,,Nicaragua,1.0,t +37470,100%,,1.0,t +48409,,Estonia,60.0,t +1631,100%,,1.0,f +8997,100%,Lithuania,1.0,t +41646,,Maldives,3.0,f +37390,,Niue,1.0,f +44558,,Tanzania,1.0,f +13532,,,1.0,t +46016,100%,,1.0,t +9706,100%,Niger,1.0,t +32756,67%,,1.0,f +49339,,,1.0,f +32227,,,1.0,f +9213,100%,,1.0,f +28759,,,1.0,f +29549,,Micronesia,1.0,f +45957,,El Salvador,1.0,f +2752,,,1.0,f +4043,100%,,1.0,t +35963,,El Salvador,1.0,t +8985,100%,Gibraltar,1.0,t +28165,,Chile,1.0,f +19870,100%,Russian Federation,1.0,f +14860,,Sao Tome and Principe,1.0,t +37354,,Rwanda,1.0,f +8629,,Svalbard & Jan Mayen Islands,1.0,f +1189,100%,Lebanon,1.0,t +40641,,United Kingdom,1.0,f +24251,100%,,1.0,t +29217,,Anguilla,3.0,t +36023,,Niue,1.0,t +28338,,Anguilla,1.0,t +12257,,Isle of Man,1.0,f +20382,100%,Svalbard & Jan Mayen Islands,4.0,t +2677,100%,,1.0,t +26472,50%,Indonesia,2.0,t +12397,100%,Niue,1.0,f +12374,83%,Niue,2.0,f +16855,,,1.0,f +17264,,Tonga,1.0,t +2922,,Russian Federation,1.0,t +49449,,Jersey,4.0,f +41952,,Lebanon,1.0,t +872,100%,Tonga,1.0,f +3242,,,1.0,f +44640,100%,French Polynesia,4.0,t +49449,,Jersey,4.0,f +49449,,Jersey,4.0,f +46342,60%,,1.0,f +49449,,Jersey,4.0,f +20309,,El Salvador,1.0,f +31129,100%,Marshall Islands,3.0,t +31594,100%,Philippines,19.0,t +1470,,,2.0,f +44710,100%,Nicaragua,6.0,f +36880,100%,Micronesia,1.0,f +14532,100%,Guinea,1.0,f +20544,,,1.0,t +16469,100%,Lithuania,1.0,t +13112,100%,Faroe Islands,2.0,t +23689,,Russian Federation,1.0,t +1773,100%,Barbados,1.0,t +414,100%,Uganda,17.0,t +414,100%,Uganda,17.0,t +42006,100%,Bahrain,2.0,t +34155,100%,Tonga,4.0,t +32556,90%,Estonia,11.0,t +14195,100%,,2.0,f +33095,,Uzbekistan,1.0,t +40836,100%,Togo,6.0,t +8601,,Angola,16.0,f +15669,,Sao Tome and Principe,6.0,t +23180,100%,,1.0,t +36642,100%,Holy See (Vatican City State),4.0,t +37549,100%,Chile,1.0,t +45503,100%,Nicaragua,2.0,f +19512,,Uganda,1.0,t +3086,,,2.0,t +36642,100%,Holy See (Vatican City State),4.0,t +34402,79%,Reunion,28.0,f +31612,100%,,3.0,t +7824,100%,Monaco,2.0,t +29647,100%,Peru,1305.0,f +40945,100%,Afghanistan,1.0,t +26889,100%,Indonesia,10.0,f +42689,60%,,1.0,t +6895,100%,Denmark,1.0,f +49398,88%,Barbados,18.0,t +44024,100%,,1.0,f +10561,100%,Guinea,1.0,t +4472,80%,Pakistan,1.0,t +39940,100%,Cape Verde,3.0,f +33065,100%,Uzbekistan,6.0,f +12141,,,1.0,t +24775,97%,Montserrat,44.0,f +37144,100%,,2.0,f +2431,100%,United Kingdom,1.0,t +24775,97%,Montserrat,44.0,f +45961,100%,,1.0,f +24775,97%,Montserrat,44.0,f +48338,100%,Maldives,4.0,t +4185,100%,Russian Federation,1.0,t +42740,100%,Canada,3.0,f +41671,100%,Kenya,2.0,t +42740,100%,Canada,3.0,f +12702,,China,3.0,f +36958,100%,Papua New Guinea,2.0,t +29225,,,1.0,f +20305,70%,United Kingdom,1.0,t +19411,,Nauru,1.0,f +39015,,Montserrat,1.0,f +13756,100%,Guinea,3.0,f +35641,,Netherlands,15.0,t +47910,,Guinea,1.0,t +10835,,Niger,1.0,f +24482,100%,,1.0,f +44618,100%,,1.0,t +35010,,Lebanon,1.0,t +35614,,Guinea,1.0,f +44625,100%,Russian Federation,2.0,f +30588,100%,Nauru,12.0,t +14297,,Chile,1.0,t +6885,,Gambia,1.0,f +42812,,Uganda,1.0,f +30588,100%,Nauru,12.0,t +30588,100%,Nauru,12.0,t +14835,100%,,3.0,t +25207,100%,,9.0,t +40029,90%,Niger,2.0,t +13417,100%,Pakistan,8.0,t +35068,100%,France,3.0,t +35191,,Jersey,1.0,f +44715,,,1.0,f +24983,,,1.0,t +28365,,China,4.0,t +13050,,,1.0,t +41553,100%,Tonga,2.0,f +34202,,,1.0,t +6196,25%,Malta,2.0,t +45583,100%,,3.0,f +44224,100%,Marshall Islands,1.0,f +47906,,Puerto Rico,1.0,f +35442,,Russian Federation,14.0,f +6196,25%,Malta,2.0,t +11036,,Maldives,1.0,f +44828,,France,1.0,f +13630,,Faroe Islands,1.0,t +17269,100%,Maldives,5.0,t +31964,100%,Russian Federation,1.0,f +44311,,,1.0,f +26206,100%,Mexico,3.0,f +30519,100%,,1.0,t +27387,96%,Tonga,5.0,f +5204,100%,Denmark,1.0,f +30374,100%,Guinea,1.0,t +9136,,,1.0,t +833,,Rwanda,1.0,f +41338,,,1.0,t +29069,,Puerto Rico,1.0,f +8678,100%,Saint Helena,2.0,t +48034,,Faroe Islands,1.0,t +21439,,Faroe Islands,1.0,t +35261,,Tonga,1.0,f +44553,100%,,1.0,t +22858,,,1.0,t +31600,,Papua New Guinea,1.0,f +25912,100%,Svalbard & Jan Mayen Islands,1.0,f +8225,95%,Barbados,31.0,f +13244,100%,Svalbard & Jan Mayen Islands,1.0,f +45737,,Tonga,29.0,t +45737,,Tonga,29.0,t +9948,,Ukraine,2.0,t +17211,100%,,2.0,t +3001,,Zimbabwe,1.0,f +25440,,Indonesia,4.0,t +31819,,Zimbabwe,1.0,t +40558,100%,,2.0,f +19421,,,1.0,f +19682,100%,Faroe Islands,15.0,t +10425,,Lebanon,1.0,f +5355,,,1.0,f +42432,63%,,2.0,f +12991,,,2.0,t +6706,100%,Lebanon,1.0,t +27290,100%,Brazil,3.0,f +28585,,Uzbekistan,1.0,t +887,,Turkmenistan,1.0,f +33442,100%,Holy See (Vatican City State),2.0,f +29555,,Christmas Island,1.0,t +1806,,Sao Tome and Principe,1.0,f +26688,67%,Jersey,1.0,t +42258,,Vanuatu,1.0,t +30475,92%,Vietnam,40.0,f +23440,,Chad,1.0,t +12613,,Gibraltar,2.0,t +4838,,,1.0,t +40102,100%,Turks and Caicos Islands,2.0,f +21534,,Russian Federation,1.0,f +21308,,Bosnia and Herzegovina,1.0,f +38119,,,1.0,t +15961,,Tonga,1.0,t +17596,,Maldives,1.0,t +4192,,Nicaragua,4.0,f +13889,,,1.0,f +11981,,French Guiana,1.0,f +34679,100%,Niger,2.0,t +25291,58%,Gibraltar,3.0,t +38433,100%,,1.0,t +11473,100%,,1.0,t +7717,100%,,1.0,f +13018,100%,Guernsey,4.0,t +44409,,Russian Federation,1.0,f +24730,,,1.0,f +22758,,,1.0,f +9275,100%,Papua New Guinea,1.0,f +36663,,Ghana,5.0,t +23976,,,1.0,t +43490,,Guinea,1.0,t +8068,100%,Cuba,1.0,t +13587,,Niger,2.0,t +982,99%,Marshall Islands,32.0,f +47604,95%,Uzbekistan,4.0,t +9826,,Palestinian Territory,2.0,f +29930,,Russian Federation,1.0,f +43269,100%,Grenada,1.0,f +45840,100%,Mauritania,2.0,t +23185,,,1.0,f +48852,60%,Rwanda,3.0,t +12517,,Lebanon,3.0,t +30588,100%,Nauru,12.0,t +42347,,Jersey,1.0,t +20329,100%,Reunion,21.0,f +27119,94%,Nicaragua,10.0,t +37205,100%,Kiribati,3.0,t +28075,,Niue,1.0,f +7224,,Brunei Darussalam,1.0,t +15971,100%,Anguilla,2.0,t +43641,100%,,3.0,t +47741,,Uzbekistan,1.0,f +24460,,,2.0,t +28828,100%,Isle of Man,198.0,t +31288,100%,Isle of Man,1.0,f +34726,90%,,2.0,t +42871,100%,Reunion,1.0,t +11567,100%,Niger,31.0,t +31167,100%,Sao Tome and Principe,1.0,f +21883,,Bahrain,11.0,t +8356,100%,Togo,2.0,t +28561,100%,Ukraine,1.0,f +41778,100%,,1.0,f +37952,100%,Congo,3.0,t +33743,100%,Denmark,2.0,f +8819,,,3.0,f +1048,0%,,1.0,f +11567,100%,Niger,31.0,t +30504,90%,Afghanistan,2.0,f +30428,100%,Turkmenistan,1.0,t +49097,67%,Niger,5.0,t +31554,100%,Marshall Islands,1.0,t +34851,100%,,4.0,f +18480,90%,Monaco,4.0,t +24501,100%,Andorra,2.0,t +26868,100%,Mauritania,1.0,t +30750,,,3.0,t +23565,100%,Slovakia (Slovak Republic),6.0,t +13967,100%,Malta,1.0,t +28009,,,1.0,f +31382,,,1.0,f +17110,100%,,1.0,f +28828,100%,Isle of Man,198.0,t +10000,,Micronesia,1.0,t +20987,100%,,1.0,f +30140,100%,Lebanon,4.0,t +5997,100%,Kenya,3.0,t +11567,100%,Niger,31.0,t +5233,100%,Montserrat,6.0,t +38290,100%,Gambia,1.0,f +25835,100%,Turks and Caicos Islands,1.0,f +18526,100%,,2.0,f +10385,,United Kingdom,1.0,f +22545,100%,,2.0,f +31955,,Gambia,1.0,t +34180,100%,,1.0,t +48151,,,1.0,f +11253,,Ghana,7.0,f +9754,100%,Brazil,6.0,f +21510,100%,,1.0,f +22296,,Jersey,1.0,f +19984,100%,Ecuador,14.0,t +40018,90%,Slovakia (Slovak Republic),1.0,t +49571,,Portugal,1.0,f +30764,100%,Slovakia (Slovak Republic),8.0,t +18164,100%,Marshall Islands,5.0,f +23686,,,1.0,t +21136,100%,Mauritania,1.0,f +28763,67%,Rwanda,2.0,f +27151,100%,Netherlands Antilles,1.0,t +15042,,Faroe Islands,1.0,f +24819,100%,Palestinian Territory,2.0,t +31404,100%,Maldives,2.0,t +15523,100%,,2.0,f +42594,,Guinea,3.0,f +38591,0%,,1.0,f +21573,100%,Kiribati,1.0,f +10916,100%,,1.0,t +9754,100%,Brazil,6.0,f +38220,,,1.0,f +39350,,,1.0,f +45375,,,1.0,t +30924,,Sao Tome and Principe,7.0,t +7770,,Russian Federation,1.0,t +3264,100%,Niue,1.0,t +29184,,Jersey,1.0,t +45138,79%,Barbados,14.0,f +48409,,Estonia,60.0,t +24141,,,1.0,t +4860,,,1.0,f +26309,,,1.0,t +45154,100%,Lebanon,2.0,t +2085,,Russian Federation,1.0,f +21554,83%,Philippines,3.0,t +48372,100%,Barbados,12.0,t +19271,100%,Jersey,11.0,f +19271,100%,Jersey,11.0,f +11253,,Ghana,7.0,f +29647,100%,Peru,1305.0,f +398,,Uzbekistan,1.0,t +28607,90%,Isle of Man,1.0,t +5257,,Russian Federation,1.0,t +29647,100%,Peru,1305.0,f +8819,,,3.0,f +4793,100%,Isle of Man,1.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +20169,100%,Niue,2.0,f +4735,100%,,2.0,f +38719,,,2.0,t +19271,100%,Jersey,11.0,f +6590,,Maldives,2.0,f +5618,,,1.0,f +30373,100%,Gambia,2.0,t +5273,,Slovakia (Slovak Republic),2.0,t +22000,,,1.0,t +22692,,Maldives,3.0,f +14728,0%,Philippines,4.0,t +14047,100%,Philippines,4.0,f +9749,100%,Marshall Islands,1.0,t +6130,,Lebanon,1.0,f +27532,,,1.0,t +9926,100%,Uganda,19.0,f +7757,100%,Reunion,1.0,t +20334,99%,Niger,171.0,t +21192,,Russian Federation,1.0,f +5455,,Sao Tome and Principe,1.0,t +26889,100%,Indonesia,10.0,f +33406,100%,Reunion,4.0,f +5351,,Marshall Islands,1.0,f +28365,,China,4.0,t +2549,100%,Russian Federation,3.0,f +20334,99%,Niger,171.0,t +2469,67%,,1.0,t +18120,100%,,1.0,t +36370,100%,Puerto Rico,1.0,f +25412,100%,,2.0,f +15004,100%,Uzbekistan,88.0,f +46087,,Sao Tome and Principe,1.0,f +30308,,,1.0,t +49599,100%,Monaco,4.0,t +48840,100%,Uzbekistan,9.0,f +22785,100%,,3.0,f +27752,100%,Zimbabwe,2.0,f +23510,100%,Malta,3.0,f +13147,100%,Marshall Islands,2.0,t +7227,100%,Senegal,1.0,f +43416,100%,Costa Rica,1.0,t +12880,100%,Chile,1.0,f +44001,,France,1.0,t +7334,,,1.0,f +10715,90%,,1.0,t +3501,,Isle of Man,1.0,t +18885,70%,El Salvador,7.0,t +20060,,Guernsey,5.0,t +12784,100%,Malta,1.0,f +1891,,,1.0,f +34851,100%,,4.0,f +33960,,,1.0,t +45919,100%,Montserrat,9.0,t +6236,100%,,3.0,t +16883,,,2.0,f +39592,100%,,1.0,t +50074,100%,Montserrat,8.0,f +32248,,Malta,1.0,t +41662,,,1.0,t +19271,100%,Jersey,11.0,f +49652,,,1.0,t +33627,89%,Gambia,3.0,t +2715,,,2.0,t +9253,100%,Faroe Islands,2.0,f +121,,United Kingdom,1.0,f +41548,,Chile,2.0,t +379,50%,Guinea,1.0,f +39356,100%,Malta,2.0,t +1842,,Tanzania,1.0,t +47908,100%,China,1.0,f +30339,,Croatia,1.0,t +10713,80%,El Salvador,1.0,f +17890,100%,France,1.0,f +17755,100%,Indonesia,1.0,t +42939,,Finland,1.0,t +45492,100%,Mauritania,2.0,f +48894,,Jersey,1.0,t +4012,,French Polynesia,1.0,f +16310,100%,Montserrat,2.0,f +414,100%,Uganda,17.0,t +36271,,Sao Tome and Principe,2.0,t +2785,,Gibraltar,1.0,f +414,100%,Uganda,17.0,t +19087,100%,Estonia,2.0,t +31505,100%,Indonesia,1.0,f +2913,100%,,1.0,t +2811,,Peru,2.0,t +982,99%,Marshall Islands,32.0,f +4517,100%,El Salvador,3.0,t +34458,90%,Kiribati,4.0,t +26286,,,1.0,t +16310,100%,Montserrat,2.0,f +982,99%,Marshall Islands,32.0,f +3420,,,1.0,t +3134,100%,Libyan Arab Jamahiriya,1.0,t +46816,,Turks and Caicos Islands,1.0,t +24271,,Kenya,1.0,f +40551,,Bouvet Island (Bouvetoya),3.0,t +30997,,,1.0,t +31822,100%,Faroe Islands,1.0,f +6403,,,1.0,t +43797,90%,,6.0,t +14914,90%,,1.0,t +28476,,Chile,1.0,t +38984,90%,,1.0,t +38042,,Uzbekistan,2.0,t +132,100%,,1.0,t +15650,100%,Sao Tome and Principe,2.0,f +22739,100%,Gambia,3.0,t +30481,100%,Slovakia (Slovak Republic),2.0,t +8637,100%,,1.0,f +27197,,Russian Federation,1.0,f +44633,,Gambia,2.0,t +44633,,Gambia,2.0,t +2783,100%,Afghanistan,1.0,t +39930,,,1.0,f +32579,,Nicaragua,1.0,f +36515,100%,Slovakia (Slovak Republic),3.0,t +36515,100%,Slovakia (Slovak Republic),3.0,t +36515,100%,Slovakia (Slovak Republic),3.0,t +982,99%,Marshall Islands,32.0,f +23671,,,1.0,t +982,99%,Marshall Islands,32.0,f +982,99%,Marshall Islands,32.0,f +982,99%,Marshall Islands,32.0,f +34402,79%,Reunion,28.0,f +1307,33%,Brazil,1.0,t +15004,100%,Uzbekistan,88.0,f +8819,,,3.0,f +30638,,,1.0,t +15832,0%,Denmark,1.0,f +31832,,Cocos (Keeling) Islands,3.0,f +29988,,French Guiana,5.0,t +982,99%,Marshall Islands,32.0,f +31832,,Cocos (Keeling) Islands,3.0,f +982,99%,Marshall Islands,32.0,f +42359,100%,,1.0,f +982,99%,Marshall Islands,32.0,f +982,99%,Marshall Islands,32.0,f +46416,,,1.0,f +44320,,,1.0,f +982,99%,Marshall Islands,32.0,f +8453,100%,Rwanda,6.0,t +23955,,Canada,1.0,f +6741,80%,Nicaragua,2.0,t +982,99%,Marshall Islands,32.0,f +982,99%,Marshall Islands,32.0,f +44377,100%,Malta,1.0,t +18077,100%,Sao Tome and Principe,139.0,f +18077,100%,Sao Tome and Principe,139.0,f +982,99%,Marshall Islands,32.0,f +23196,100%,Guinea,4.0,t +982,99%,Marshall Islands,32.0,f +982,99%,Marshall Islands,32.0,f +28757,78%,Uzbekistan,1.0,t +35255,89%,Micronesia,1.0,t +982,99%,Marshall Islands,32.0,f +42983,100%,Costa Rica,2.0,t +6674,,Tonga,2.0,t +18077,100%,Sao Tome and Principe,139.0,f +45919,100%,Montserrat,9.0,t +10831,100%,Turkmenistan,3.0,f +37430,,,1.0,f +23888,90%,Netherlands,1.0,t +19233,,Vanuatu,1.0,t +20891,100%,Niue,2.0,t +35369,100%,Kenya,1.0,f +30192,,Uzbekistan,1.0,t +41587,,China,1.0,t +28461,,Australia,1.0,f +34705,,Sao Tome and Principe,1.0,f +14301,100%,,1.0,f +41344,100%,,1.0,t +37040,,Tonga,1.0,f +45539,,Marshall Islands,2.0,f +16371,95%,Bouvet Island (Bouvetoya),29.0,f +33495,,Afghanistan,1.0,f +948,,,1.0,f +42517,,Kenya,1.0,t +20329,100%,Reunion,21.0,f +18030,100%,,1.0,f +10734,100%,Niue,2.0,t +42699,,Fiji,1.0,f +2385,100%,,1.0,f +21344,,,1.0,t +20280,,,3.0,t +45845,,,1.0,f +20280,,,3.0,t +619,,Brazil,1.0,f +33697,,Nicaragua,1.0,f +9977,,Sao Tome and Principe,3.0,f +42885,,,1.0,f +37485,100%,,1.0,t +18151,,French Guiana,1.0,f +15004,100%,Uzbekistan,88.0,f +15004,100%,Uzbekistan,88.0,f +26778,100%,Kiribati,2.0,f +48581,,Montserrat,8.0,t +1687,,,1.0,f +13129,,Tonga,3.0,f +41034,,,1.0,f +22591,100%,,1.0,t +18360,,Chad,1.0,f +34910,,,1.0,t +36132,,Malawi,1.0,t +25972,,,1.0,f +6224,100%,Wallis and Futuna,2.0,t +15507,100%,Micronesia,2.0,f +21883,,Bahrain,11.0,t +30911,100%,United Kingdom,1.0,f +6532,100%,Russian Federation,2.0,t +6532,100%,Russian Federation,2.0,t +13053,100%,Mauritania,1.0,t +23480,100%,,3.0,t +17680,,Malta,1.0,t +27519,100%,Ghana,4.0,f +7715,100%,Montserrat,3.0,f +12960,100%,Indonesia,9.0,f +20329,100%,Reunion,21.0,f +19400,100%,Gibraltar,7.0,f +35671,,Tonga,1.0,t +11988,,Malawi,1.0,t +27109,,Uganda,2.0,t +25128,100%,Barbados,5.0,t +16900,,,7.0,f +26407,,,1.0,t +16900,,,7.0,f +26870,80%,Sao Tome and Principe,2.0,t +16900,,,7.0,f +2052,100%,,2.0,t +26045,100%,Kiribati,4.0,t +15863,,Vanuatu,1.0,t +43574,,,1.0,f +2323,67%,Turkmenistan,1.0,f +40669,100%,Chad,3.0,f +29978,89%,Uzbekistan,26.0,f +32882,,Turks and Caicos Islands,2.0,f +24460,,,2.0,t +28828,100%,Isle of Man,198.0,t +47564,,,1.0,t +33886,,Gambia,9.0,t +38406,96%,Russian Federation,6.0,t +33886,,Gambia,9.0,t +28542,100%,Isle of Man,1.0,f +12960,100%,Indonesia,9.0,f +45378,,Kiribati,1.0,t +12960,100%,Indonesia,9.0,f +12960,100%,Indonesia,9.0,f +34457,81%,,3.0,t +12960,100%,Indonesia,9.0,f +34457,81%,,3.0,t +9771,100%,Bosnia and Herzegovina,7.0,t +23318,100%,Lebanon,1.0,t +38306,100%,France,2.0,t +34578,,Zimbabwe,1.0,f +31579,,United Kingdom,2.0,t +12320,100%,Bosnia and Herzegovina,20.0,f +23623,100%,Montserrat,11.0,t +36088,100%,Niue,2.0,f +12960,100%,Indonesia,9.0,f +24118,98%,Ghana,21.0,t +12960,100%,Indonesia,9.0,f +3137,100%,French Guiana,1.0,f +38797,,Malta,1.0,t +42779,,,2.0,f +9316,100%,,1.0,f +39501,100%,,1.0,t +23196,100%,Guinea,4.0,t +39939,100%,Papua New Guinea,1.0,f +11947,100%,,2.0,f +3127,100%,Rwanda,36.0,f +3127,100%,Rwanda,36.0,f +3127,100%,Rwanda,36.0,f +29062,100%,,1.0,f +35989,100%,,1.0,f +38906,,Malawi,1.0,t +414,100%,Uganda,17.0,t +37892,100%,,1.0,t +26230,,France,3.0,f +24427,100%,,2.0,t +20183,100%,,1.0,t +18911,100%,,1.0,t +9225,,Sao Tome and Principe,2.0,t +15004,100%,Uzbekistan,88.0,f +15004,100%,Uzbekistan,88.0,f +414,100%,Uganda,17.0,t +15004,100%,Uzbekistan,88.0,f +37293,92%,Russian Federation,15.0,f +15004,100%,Uzbekistan,88.0,f +9516,99%,Pakistan,45.0,t +15004,100%,Uzbekistan,88.0,f +15004,100%,Uzbekistan,88.0,f +15004,100%,Uzbekistan,88.0,f +31772,,Bouvet Island (Bouvetoya),2.0,t +15004,100%,Uzbekistan,88.0,f +15004,100%,Uzbekistan,88.0,f +15004,100%,Uzbekistan,88.0,f +15004,100%,Uzbekistan,88.0,f +15004,100%,Uzbekistan,88.0,f +15004,100%,Uzbekistan,88.0,f +15004,100%,Uzbekistan,88.0,f +15004,100%,Uzbekistan,88.0,f +27519,100%,Ghana,4.0,f +20542,80%,Kenya,7.0,t +13121,,Djibouti,1.0,t +15869,50%,Lebanon,1.0,t +17269,100%,Maldives,5.0,t +38309,,,1.0,f +11585,,Maldives,1.0,t +33795,100%,Monaco,1.0,f +35626,,Gambia,1.0,t +28998,,Cape Verde,1.0,t +2462,100%,,1.0,t +19718,100%,Turks and Caicos Islands,10.0,f +19718,100%,Turks and Caicos Islands,10.0,f +28275,100%,,2.0,f +26391,100%,Guinea,1.0,t +46745,100%,,1.0,f +16432,100%,,2.0,t +43557,,Switzerland,2.0,t +5601,,,1.0,t +6628,100%,Micronesia,1.0,f +38113,100%,Marshall Islands,2.0,t +49941,100%,Gambia,1.0,f +10658,80%,Wallis and Futuna,2.0,f +17440,,,1.0,t +8673,,Russian Federation,1.0,f +35961,100%,United Kingdom,1.0,t +34665,,,1.0,f +30109,,Russian Federation,2.0,f +11980,,French Guiana,1.0,t +2554,,Cuba,1.0,f +8227,,Marshall Islands,2.0,t +22260,,Lebanon,1.0,f +43237,40%,Montserrat,24.0,f +44043,,,1.0,f +3863,100%,Niue,1.0,t +9159,100%,Faroe Islands,1.0,f +43404,,,2.0,f +11665,100%,,1.0,t +14560,100%,Barbados,2.0,f +12772,100%,Niger,1.0,f +11641,100%,Guinea,2.0,t +28770,,,1.0,t +25019,,Malta,3.0,f +9839,,Turkmenistan,1.0,t +23169,,Holy See (Vatican City State),1.0,t +30214,100%,,10.0,t +37408,91%,Papua New Guinea,5.0,t +23822,,Ghana,1.0,f +28828,100%,Isle of Man,198.0,t +708,100%,Gambia,2.0,f +708,100%,Gambia,2.0,f +41516,,Russian Federation,1.0,f +2298,83%,Korea,1.0,f +47602,97%,Puerto Rico,18.0,f +16371,95%,Bouvet Island (Bouvetoya),29.0,f +20968,100%,,2.0,t +16371,95%,Bouvet Island (Bouvetoya),29.0,f +15123,100%,,1.0,t +20329,100%,Reunion,21.0,f +6749,,Portugal,1.0,f +5049,100%,Sao Tome and Principe,15.0,t +41037,100%,El Salvador,2.0,t +21331,100%,Holy See (Vatican City State),1.0,f +45965,100%,Estonia,8.0,f +28175,,,1.0,f +26191,100%,Bosnia and Herzegovina,1.0,t +8764,,Maldives,4.0,t +15004,100%,Uzbekistan,88.0,f +30886,100%,Montserrat,1.0,t +15004,100%,Uzbekistan,88.0,f +39366,100%,Ghana,3.0,t +142,100%,,3.0,f +15004,100%,Uzbekistan,88.0,f +36695,100%,Turks and Caicos Islands,1.0,t +15004,100%,Uzbekistan,88.0,f +15004,100%,Uzbekistan,88.0,f +33348,,,1.0,t +47602,97%,Puerto Rico,18.0,f +44299,100%,Jersey,1.0,t +15004,100%,Uzbekistan,88.0,f +24477,,Micronesia,1.0,f +15004,100%,Uzbekistan,88.0,f +19038,100%,Lebanon,3.0,t +16371,95%,Bouvet Island (Bouvetoya),29.0,f +15004,100%,Uzbekistan,88.0,f +32084,100%,,1.0,t +19038,100%,Lebanon,3.0,t +42734,100%,Senegal,1.0,f +33837,,Nicaragua,2.0,t +15913,,Cuba,1.0,f +40366,97%,Micronesia,14.0,t +22263,,Chile,1.0,t +14989,,,1.0,t +15703,,,4.0,f +43042,100%,Niue,3.0,f +47995,,Maldives,2.0,t +41596,100%,United Kingdom,1.0,t +33416,100%,,1.0,t +4432,100%,Wallis and Futuna,18.0,f +9811,,Guernsey,1.0,f +10193,,France,1.0,t +901,83%,United Kingdom,1.0,f +6811,100%,Monaco,3.0,f +18926,100%,,1.0,t +50029,,,1.0,t +17215,97%,Maldives,9.0,f +13674,90%,Fiji,2.0,t +13423,,Barbados,1.0,t +18231,93%,Uganda,7.0,t +46860,,Guinea,1.0,f +27649,100%,Kiribati,4.0,t +37366,,,1.0,t +27519,100%,Ghana,4.0,f +36138,,Lebanon,1.0,t +15467,,United Kingdom,2.0,t +16371,95%,Bouvet Island (Bouvetoya),29.0,f +28151,,Sao Tome and Principe,1.0,f +28210,100%,,1.0,t +27519,100%,Ghana,4.0,f +47602,97%,Puerto Rico,18.0,f +45106,,Kenya,1.0,f +47602,97%,Puerto Rico,18.0,f +12960,100%,Indonesia,9.0,f +4734,100%,Mauritania,1.0,f +6466,100%,,2.0,f +47602,97%,Puerto Rico,18.0,f +47602,97%,Puerto Rico,18.0,f +36247,100%,Chad,1.0,t +47602,97%,Puerto Rico,18.0,f +47602,97%,Puerto Rico,18.0,f +38787,,Faroe Islands,10.0,f +4197,100%,,1.0,f +47602,97%,Puerto Rico,18.0,f +47602,97%,Puerto Rico,18.0,f +5549,100%,Libyan Arab Jamahiriya,1.0,t +12123,80%,Puerto Rico,8.0,t +36953,100%,Sao Tome and Principe,1.0,f +12123,80%,Puerto Rico,8.0,t +12123,80%,Puerto Rico,8.0,t +10711,93%,Uganda,108.0,t +1863,,Denmark,1.0,t +25372,78%,Brazil,1.0,f +15004,100%,Uzbekistan,88.0,f +15004,100%,Uzbekistan,88.0,f +15004,100%,Uzbekistan,88.0,f +15004,100%,Uzbekistan,88.0,f +4667,100%,Marshall Islands,2.0,f +582,100%,Turkmenistan,2.0,f +33065,100%,Uzbekistan,6.0,f +45620,100%,Slovakia (Slovak Republic),1.0,t +36483,,,1.0,f +25534,90%,Indonesia,5.0,t +34762,100%,Isle of Man,3.0,t +18077,100%,Sao Tome and Principe,139.0,f +15739,,,1.0,f +6168,,Bouvet Island (Bouvetoya),14.0,t +12813,100%,Mauritania,2.0,t +24570,88%,,1.0,t +42738,100%,,1.0,t +31802,100%,New Zealand,5.0,t +582,100%,Turkmenistan,2.0,f +29258,100%,Barbados,1.0,f +23270,100%,Indonesia,4.0,f +26921,98%,Nicaragua,6.0,t +14048,100%,Finland,6.0,t +40361,100%,Sao Tome and Principe,4.0,t +38420,90%,Christmas Island,8.0,f +36869,100%,Faroe Islands,1.0,f +22274,,,1.0,f +49957,,Zimbabwe,3.0,t +42678,,Sao Tome and Principe,1.0,t +45277,100%,Niue,1.0,f +29978,89%,Uzbekistan,26.0,f +29492,40%,,1.0,f +32660,0%,Rwanda,1.0,f +29978,89%,Uzbekistan,26.0,f +11290,100%,Reunion,12.0,f +29978,89%,Uzbekistan,26.0,f +40220,,Tonga,3.0,f +22367,100%,Canada,3.0,t +29647,100%,Peru,1305.0,f +29978,89%,Uzbekistan,26.0,f +29978,89%,Uzbekistan,26.0,f +5172,,,1.0,f +41222,,Congo,3.0,t +15168,100%,Venezuela,2.0,f +1581,,Kiribati,1.0,f +5312,100%,,1.0,t +38835,100%,,4.0,t +3616,100%,Cape Verde,14.0,t +44192,,,2.0,f +40669,100%,Chad,3.0,f +40669,100%,Chad,3.0,f +45337,90%,Tonga,3.0,f +27569,83%,Vanuatu,1.0,t +27955,0%,Tonga,1.0,f +44073,100%,Togo,2.0,t +13073,,Isle of Man,1.0,f +42896,,Lithuania,1.0,f +39109,77%,Ukraine,24.0,t +7647,,Brazil,1.0,t +29007,,Maldives,1.0,f +18077,100%,Sao Tome and Principe,139.0,f +11290,100%,Reunion,12.0,f +5293,100%,,1.0,t +37344,80%,Niue,1.0,t +16728,100%,,3.0,t +23196,100%,Guinea,4.0,t +29065,100%,Peru,2.0,t +39131,100%,Lithuania,4.0,t +11290,100%,Reunion,12.0,f +12482,0%,,1.0,t +32098,100%,Togo,1.0,f +14802,,Faroe Islands,2.0,t +45307,100%,,1.0,t +5931,100%,Reunion,2.0,t +3573,,Mauritania,2.0,f +7665,100%,Russian Federation,1.0,t +13962,100%,Bouvet Island (Bouvetoya),2.0,f +44794,100%,,2.0,f +19958,100%,Congo,40.0,t +43373,100%,Indonesia,2.0,f +8106,,,1.0,f +21951,100%,,2.0,t +38858,100%,Zimbabwe,2.0,f +42458,97%,Indonesia,14.0,t +18293,,Jersey,1.0,t +36524,100%,Saint Helena,8.0,t +23567,100%,Guinea,2.0,t +11350,,,1.0,t +4276,100%,Gibraltar,1.0,f +46954,,,1.0,t +5663,,Russian Federation,8.0,t +15039,90%,Maldives,1.0,f +35057,,French Polynesia,1.0,f +38726,100%,Guinea,2.0,t +44157,,Rwanda,6.0,t +46842,75%,Portugal,13.0,t +24016,100%,Bosnia and Herzegovina,29.0,f +7030,100%,Guernsey,6.0,f +25160,75%,Gibraltar,1.0,t +29647,100%,Peru,1305.0,f +47355,,,2.0,f +1658,,,1.0,t +46910,,,1.0,t +42047,,,1.0,f +24736,100%,Isle of Man,1.0,t +44029,,,1.0,t +35901,100%,Ecuador,2.0,t +22011,100%,Tanzania,1.0,f +7202,,,1.0,f +44288,100%,,2.0,t +5248,,Puerto Rico,1.0,f +44279,,Tonga,2.0,f +36643,98%,Maldives,17.0,f +4089,,,1.0,f +16868,100%,,1.0,t +8796,100%,Somalia,3.0,t +26862,100%,Chad,3.0,t +41022,100%,Cape Verde,3.0,t +11975,100%,,1.0,t +44465,,Tonga,1.0,f +28216,,,4.0,t +4330,94%,Ukraine,60.0,t +36973,100%,,1.0,t +45644,100%,Malawi,1.0,t +25855,,Maldives,1.0,t +11925,,,1.0,t +48864,100%,Micronesia,1.0,f +8287,,Kiribati,1.0,t +47820,,Kenya,1.0,t +16263,,Isle of Man,2.0,f +49008,100%,Libyan Arab Jamahiriya,1.0,t +44386,100%,Tonga,1.0,f +35221,100%,Turks and Caicos Islands,30.0,t +19021,100%,,1.0,f +31406,,Indonesia,1.0,f +40881,,Sao Tome and Principe,1.0,t +17430,,,1.0,f +46928,,Tanzania,1.0,t +26844,100%,,6.0,f +4192,,Nicaragua,4.0,f +4192,,Nicaragua,4.0,f +37218,100%,Slovakia (Slovak Republic),4.0,t +16041,90%,,1.0,f +48633,75%,Lebanon,2.0,f +11902,,Micronesia,1.0,f +21163,100%,Estonia,2.0,f +9784,,,1.0,f +17370,,China,2.0,t +23214,,,1.0,t +11795,100%,,1.0,f +35073,,Chad,1.0,f +46559,100%,Malta,1.0,f +4777,,Somalia,1.0,f +30161,100%,Niger,1.0,f +35862,100%,,1.0,f +2398,100%,,1.0,t +1102,,United Kingdom,2.0,t +3505,,Bosnia and Herzegovina,1.0,t +11552,50%,France,1.0,t +47995,,Maldives,2.0,t +19226,,Jersey,1.0,t +23736,,Jersey,1.0,f +31013,,,1.0,t +27325,,,1.0,f +43186,100%,Vietnam,3.0,t +33616,100%,Kenya,4.0,t +10965,,,1.0,t +603,100%,Niue,2.0,f +38808,100%,Cape Verde,1.0,f +33616,100%,Kenya,4.0,t +31330,,Togo,1.0,f +45337,90%,Tonga,3.0,f +36223,,Niger,1.0,t +15421,,Saint Helena,2.0,t +3632,100%,Philippines,4.0,t +35537,100%,Isle of Man,4.0,t +13219,100%,Marshall Islands,1.0,f +5166,100%,Ecuador,16.0,t +5166,100%,Ecuador,16.0,t +27072,,Chile,1.0,f +4439,,Chad,3.0,t +42458,97%,Indonesia,14.0,t +30764,100%,Slovakia (Slovak Republic),8.0,t +18281,100%,Isle of Man,2.0,f +40013,100%,El Salvador,3.0,t +14611,,Sao Tome and Principe,1.0,t +35757,,Gambia,1.0,t +26844,100%,,6.0,f +26860,,,1.0,f +4405,94%,Indonesia,3.0,f +19954,100%,Uruguay,3.0,t +47674,100%,United Kingdom,1.0,f +27452,100%,Puerto Rico,3.0,t +23308,100%,Tonga,2.0,t +34460,,,1.0,f +43152,100%,Nicaragua,82.0,t +44036,100%,Somalia,1.0,t +2240,100%,,2.0,t +14725,100%,Lebanon,3.0,f +34750,,,1.0,t +10711,93%,Uganda,108.0,t +47459,100%,Zimbabwe,1.0,f +26078,,Reunion,1.0,t +23771,100%,Uganda,1.0,t +46194,100%,Tanzania,4.0,f +26632,,,2.0,f +14751,100%,,1.0,t +37504,100%,Micronesia,3.0,t +40781,100%,Guinea,5.0,f +3901,,Russian Federation,1.0,f +49057,,United Kingdom,1.0,t +14253,100%,Kenya,1.0,f +5850,,Pakistan,1.0,f +20969,50%,,1.0,t +8175,100%,,1.0,t +14781,83%,Isle of Man,1.0,t +39993,93%,China,3.0,f +22302,90%,Monaco,2.0,t +44145,100%,Rwanda,4.0,t +21721,100%,Nicaragua,8.0,t +36120,88%,Tonga,4.0,t +21427,100%,United Kingdom,8.0,t +14244,100%,,3.0,f +10263,100%,,3.0,t +32512,100%,Saint Helena,9.0,f +32306,100%,Turkmenistan,1.0,t +13885,,,1.0,f +19217,98%,Marshall Islands,46.0,f +41616,100%,Anguilla,3.0,f +3214,,Sao Tome and Principe,1.0,f +1096,,Anguilla,2.0,t +8146,100%,,1.0,t +24805,,China,2.0,t +35998,90%,,2.0,t +45162,,Maldives,20.0,f +44622,100%,Micronesia,4.0,t +12993,100%,Montserrat,3.0,t +20334,99%,Niger,171.0,t +49406,100%,Somalia,2.0,f +43990,100%,Uganda,7.0,f +13304,100%,Cocos (Keeling) Islands,2.0,f +33916,100%,Svalbard & Jan Mayen Islands,3.0,f +8947,,Montserrat,2.0,f +20334,99%,Niger,171.0,t +39640,100%,Russian Federation,1.0,t +4025,,Zimbabwe,1.0,t +11253,,Ghana,7.0,f +40015,100%,,1.0,f +40066,,Croatia,1.0,f +17215,97%,Maldives,9.0,f +10516,,Niue,1.0,f +11143,,Faroe Islands,1.0,t +48559,,,1.0,f +19087,100%,Estonia,2.0,t +20357,100%,,3.0,t +41409,100%,Isle of Man,1.0,t +45996,100%,Zimbabwe,2.0,t +22909,80%,,1.0,f +27490,100%,Cuba,1.0,f +30277,,Russian Federation,1.0,t +38306,100%,France,2.0,t +47594,100%,Kenya,17.0,t +46988,,Somalia,4.0,t +19958,100%,Congo,40.0,t +25848,100%,French Guiana,1.0,f +20564,,Turks and Caicos Islands,1.0,t +21462,100%,Guinea,4.0,t +9644,,Micronesia,1.0,f +40102,100%,Turks and Caicos Islands,2.0,f +7474,,Lebanon,1.0,f +13417,100%,Pakistan,8.0,t +36835,,Bouvet Island (Bouvetoya),1.0,f +43930,100%,Kenya,1.0,t +2924,,Puerto Rico,1.0,f +6314,100%,,2.0,f +44281,100%,,1.0,f +47355,,,2.0,f +17097,,Netherlands,1.0,t +2928,100%,Marshall Islands,3.0,t +28496,100%,Nicaragua,38.0,f +49689,100%,Niger,6.0,f +32580,,,1.0,t +39109,77%,Ukraine,24.0,t +5420,100%,Tonga,41.0,f +7386,100%,Sao Tome and Principe,1.0,f +3866,100%,Indonesia,8.0,t +35439,94%,United Kingdom,23.0,t +22609,0%,,2.0,f +35178,100%,Niue,1.0,f +29768,100%,Uganda,1.0,f +36047,100%,,6.0,t +24310,,Russian Federation,1.0,f +19143,100%,,3.0,t +43398,100%,Isle of Man,1.0,t +30842,100%,Maldives,3.0,f +33803,,Lebanon,1.0,f +17994,,Holy See (Vatican City State),1.0,t +34746,100%,,2.0,f +20103,,Nicaragua,1.0,t +18219,100%,Jersey,1.0,t +13118,70%,,2.0,f +44286,100%,,1.0,f +8550,100%,Jersey,1.0,t +17215,97%,Maldives,9.0,f +49539,100%,,1.0,t +13863,,Kiribati,1.0,f +6984,100%,Suriname,9.0,f +1760,100%,Malta,1.0,t +10558,100%,,1.0,t +1052,,Montserrat,5.0,f +32772,80%,,1.0,t +29538,100%,Guinea,1.0,t +20521,,,7.0,t +19217,98%,Marshall Islands,46.0,f +18767,100%,Marshall Islands,1.0,f +27820,100%,Tonga,2.0,t +31487,,Sao Tome and Principe,1.0,t +16371,95%,Bouvet Island (Bouvetoya),29.0,f +32512,100%,Saint Helena,9.0,f +37392,100%,Micronesia,7.0,t +16398,,,1.0,t +4494,94%,Barbados,3.0,t +8947,,Montserrat,2.0,f +6372,0%,Switzerland,1.0,f +33000,,Lebanon,1.0,f +49746,100%,,2.0,t +38420,90%,Christmas Island,8.0,f +40393,100%,Guinea,2.0,f +34262,100%,Niue,1.0,f +26702,100%,,1.0,t +28170,50%,,1.0,f +7483,100%,Russian Federation,2.0,f +1463,,French Guiana,1.0,f +33364,,Lebanon,1.0,f +3496,,Moldova,2.0,f +38281,,Korea,1.0,t +804,,China,1.0,f +47607,50%,,1.0,f +3391,100%,Iran,58.0,t +24071,100%,Indonesia,22.0,f +12743,100%,,1.0,f +32575,100%,Kenya,3.0,t +27267,95%,Tonga,6.0,f +1915,,,1.0,f +45546,100%,Cape Verde,19.0,t +12121,75%,Nauru,1.0,f +7917,100%,,1.0,f +24772,90%,Denmark,10.0,f +13971,,Chad,1.0,t +36213,,,1.0,f +6286,71%,,1.0,t +31901,100%,Gibraltar,1.0,f +18576,,Christmas Island,2.0,t +29659,,Tonga,1.0,f +28674,100%,Russian Federation,2.0,t +6643,,Guernsey,1.0,f +3985,,Faroe Islands,1.0,f +7225,,Marshall Islands,1.0,t +22465,100%,Denmark,1.0,t +13534,,Christmas Island,2.0,f +31003,,Niue,3.0,t +38520,100%,Malta,1.0,t +48204,,Montserrat,1.0,t +32983,,,1.0,f +12757,100%,,1.0,t +4236,,Costa Rica,1.0,f +27907,100%,Puerto Rico,21.0,f +27795,,Nicaragua,1.0,f +10128,,,1.0,t +29519,100%,France,1.0,t +39135,,Niger,1.0,f +21580,100%,,3.0,f +35949,,French Guiana,2.0,t +1886,,,1.0,t +39451,100%,,2.0,t +17753,,Guinea,1.0,f +12187,,,1.0,f +39262,80%,,1.0,f +21713,,Svalbard & Jan Mayen Islands,1.0,f +26541,100%,Nicaragua,12.0,f +28275,100%,,2.0,f +49406,100%,Somalia,2.0,f +4315,100%,,2.0,t +40805,90%,Uzbekistan,2.0,f +18759,,,1.0,f +45516,60%,French Guiana,2.0,f +37246,,Malta,1.0,t +41218,100%,,1.0,t +21458,,,1.0,f +50020,100%,Somalia,2.0,f +42071,,Lebanon,1.0,f +25547,,Costa Rica,1.0,f +39649,100%,Uzbekistan,2.0,t +30007,,Niue,2.0,t +31908,75%,San Marino,1.0,t +32982,,Togo,2.0,f +32927,,Peru,1.0,t +11798,,French Guiana,1.0,t +40762,92%,Niue,2.0,t +31897,100%,French Polynesia,1.0,f +15279,,Afghanistan,22.0,t +23284,100%,,1.0,t +8858,100%,El Salvador,1.0,t +9698,,Malta,1.0,f +5534,,,1.0,f +17227,,Micronesia,1.0,f +18513,,,1.0,t +14325,,Maldives,2.0,t +42398,100%,Gambia,1.0,f +11335,100%,Montserrat,3.0,t +28475,,Nicaragua,1.0,f +32315,100%,,1.0,f +43954,86%,,1.0,f +19401,100%,France,5.0,f +29287,100%,Indonesia,2.0,t +5586,0%,,1.0,t +30109,,Russian Federation,2.0,f +35803,100%,Jersey,2.0,f +23139,,Niger,2.0,t +41741,100%,Brazil,9.0,t +25971,75%,,1.0,f +46310,100%,,1.0,f +32116,88%,,3.0,t +18985,100%,Philippines,2.0,f +4847,100%,Indonesia,3.0,t +20342,,,1.0,f +3142,100%,,1.0,t +33,,,1.0,t +24334,100%,,1.0,t +23743,,,1.0,f +43122,100%,Sao Tome and Principe,1.0,f +30422,,,1.0,t +22721,100%,Ecuador,109.0,f +31736,,Chile,1.0,t +16406,100%,Bouvet Island (Bouvetoya),16.0,f +11103,72%,Russian Federation,3.0,f +8995,,,1.0,t +48814,,,1.0,f +16240,100%,Tanzania,2.0,t +33550,100%,Guinea,1.0,t +39569,,,1.0,t +40626,93%,United Kingdom,5.0,t +953,100%,,1.0,f +8861,100%,Tunisia,2.0,t +35454,100%,China,9.0,f +21933,90%,Niue,2.0,t +30791,,Lebanon,1.0,t +32402,100%,,1.0,f +50063,100%,Gambia,1.0,t +9516,99%,Pakistan,45.0,t +2063,100%,Senegal,1.0,t +68,,,1.0,f +20334,99%,Niger,171.0,t +44730,100%,,2.0,f +13212,100%,Zimbabwe,12.0,t +4042,,,1.0,f +32378,90%,China,6.0,t +8191,100%,Mauritania,8.0,f +18671,,,1.0,t +196,60%,,1.0,f +34929,100%,Vanuatu,1.0,f +30370,,,1.0,t +20329,100%,Reunion,21.0,f +43670,,Monaco,2.0,f +42960,,Kiribati,1.0,f +38936,90%,Isle of Man,1.0,t +10244,100%,Philippines,10.0,f +48470,90%,Pakistan,4.0,f +32512,100%,Saint Helena,9.0,f +32512,100%,Saint Helena,9.0,f +35641,,Netherlands,15.0,t +14036,100%,Micronesia,4.0,f +38909,100%,Nicaragua,1.0,t +9516,99%,Pakistan,45.0,t +32512,100%,Saint Helena,9.0,f +47362,,Russian Federation,1.0,t +36541,0%,,1.0,f +672,100%,,1.0,t +46780,,,1.0,t +48272,,French Guiana,1.0,t +23654,100%,Uzbekistan,23.0,f +4170,,French Guiana,1.0,f +32534,,Russian Federation,1.0,f +19928,60%,Finland,1.0,f +23347,100%,Anguilla,1.0,f +29965,100%,Russian Federation,3.0,f +28015,100%,Maldives,3.0,f +1577,100%,Peru,8.0,t +27112,,,1.0,t +2716,,French Guiana,1.0,f +42349,,Togo,1.0,f +37646,100%,Estonia,60.0,f +35439,94%,United Kingdom,23.0,t +42178,,Niue,1.0,t +19795,100%,Estonia,8.0,f +1457,,,1.0,f +43980,,Croatia,1.0,t +19491,100%,Vietnam,1.0,t +10883,100%,Niger,8.0,t +28828,100%,Isle of Man,198.0,t +17194,100%,Micronesia,1.0,f +35439,94%,United Kingdom,23.0,t +23654,100%,Uzbekistan,23.0,f +44882,,,1.0,f +23654,100%,Uzbekistan,23.0,f +46358,100%,Saint Helena,1.0,t +23654,100%,Uzbekistan,23.0,f +23654,100%,Uzbekistan,23.0,f +40860,,Malta,1.0,f +10960,100%,Micronesia,1.0,f +36769,,Russian Federation,1.0,t +4462,100%,,1.0,f +23287,,Gambia,1.0,f +30069,,,1.0,t +11079,100%,,1.0,f +12432,,,2.0,f +35147,95%,Mauritania,5.0,t +37110,100%,Afghanistan,2.0,f +27649,100%,Kiribati,4.0,t +4620,100%,,4.0,t +36808,100%,Mexico,2.0,t +3774,100%,Nicaragua,3.0,f +14036,100%,Micronesia,4.0,f +14036,100%,Micronesia,4.0,f +36502,70%,,2.0,f +26770,,,1.0,f +18077,100%,Sao Tome and Principe,139.0,f +43826,,Chile,1.0,f +15770,100%,Cuba,2.0,t +4705,,China,2.0,t +3793,,Kiribati,1.0,t +23321,100%,Isle of Man,1.0,t +34025,,Nicaragua,6.0,f +9516,99%,Pakistan,45.0,t +31697,,Marshall Islands,1.0,f +20888,,,1.0,t +35221,100%,Turks and Caicos Islands,30.0,t +10132,,,1.0,t +22513,90%,Jersey,4.0,t +22513,90%,Jersey,4.0,t +12548,90%,Togo,3.0,t +11264,,Sao Tome and Principe,2.0,f +10711,93%,Uganda,108.0,t +12320,100%,Bosnia and Herzegovina,20.0,f +17580,,Chad,1.0,t +30589,,Lebanon,1.0,t +46872,100%,Nicaragua,9.0,f +7440,,,1.0,t +34751,,Sao Tome and Principe,1.0,t +8225,95%,Barbados,31.0,f +19682,100%,Faroe Islands,15.0,t +34796,,,1.0,f +33198,100%,Mauritania,12.0,f +8796,100%,Somalia,3.0,t +22787,,,1.0,f +19622,,,1.0,f +16716,,,1.0,f +43508,,Guinea,2.0,t +41964,,Zimbabwe,1.0,t +24331,100%,,3.0,t +22228,83%,,1.0,f +27430,100%,Christmas Island,4.0,t +17462,,Cape Verde,1.0,f +16305,,Marshall Islands,1.0,f +12642,100%,United Kingdom,7.0,t +20334,99%,Niger,171.0,t +41227,,,1.0,f +31716,100%,Venezuela,4.0,f +42283,100%,Montserrat,4.0,t +7030,100%,Guernsey,6.0,f +34289,90%,Sao Tome and Principe,1.0,t +8458,100%,El Salvador,2.0,f +39814,,Costa Rica,1.0,f +42283,100%,Montserrat,4.0,t +42283,100%,Montserrat,4.0,t +45565,100%,,4.0,t +7699,100%,Tanzania,1.0,f +45162,,Maldives,20.0,f +40457,,,1.0,t +15754,,Rwanda,1.0,f +43814,,,1.0,f +45162,,Maldives,20.0,f +3573,,Mauritania,2.0,f +29516,,Chad,1.0,t +336,100%,Ecuador,7.0,f +18334,,San Marino,1.0,t +22396,100%,,2.0,t +31321,100%,Isle of Man,1.0,t +39166,90%,Uzbekistan,1.0,f +15734,,Turkmenistan,5.0,t +5420,100%,Tonga,41.0,f +25466,,Finland,1.0,t +32636,,Gibraltar,2.0,f +22562,,,1.0,t +42778,100%,Monaco,2.0,f +47321,,Guinea,1.0,t +2715,,,2.0,t +17701,100%,,4.0,t +15810,100%,Niger,2.0,f +19674,100%,,1.0,f +34087,0%,,1.0,f +7412,,Tonga,1.0,t +1696,,Togo,2.0,f +15949,100%,Svalbard & Jan Mayen Islands,3.0,t +26238,100%,Turkmenistan,2.0,t +15855,,Turkmenistan,1.0,f +36517,,,1.0,f +46224,,Mexico,1.0,t +18559,100%,,1.0,t +29843,,,1.0,f +32907,,Brazil,1.0,f +37374,0%,,1.0,f +5031,,El Salvador,1.0,f +44966,100%,Guinea,21.0,f +24213,100%,Estonia,1.0,f +22068,100%,Rwanda,3.0,f +35834,,Marshall Islands,1.0,t +39606,,,1.0,t +38774,,,1.0,t +15004,100%,Uzbekistan,88.0,f +47865,80%,,4.0,t +5363,,Puerto Rico,1.0,f +44857,100%,Zimbabwe,24.0,t +28241,97%,Maldives,10.0,f +17482,100%,French Guiana,1.0,f +11957,,Montserrat,2.0,f +19762,100%,Guernsey,1.0,f +24087,67%,,1.0,f +27649,100%,Kiribati,4.0,t +26668,,Kiribati,1.0,f +193,100%,Estonia,3.0,t +46604,,Ghana,3.0,t +17461,100%,Maldives,1.0,t +12993,100%,Montserrat,3.0,t +19819,100%,Lebanon,2.0,t +19170,,Denmark,1.0,f +46372,100%,Northern Mariana Islands,7.0,t +27261,0%,Micronesia,1.0,t +15669,,Sao Tome and Principe,6.0,t +21568,,Russian Federation,1.0,f +3807,,Russian Federation,1.0,f +5484,,Papua New Guinea,1.0,f +9343,100%,Afghanistan,10.0,t +31354,100%,Niger,8.0,t +43704,100%,Russian Federation,1.0,t +44652,100%,Niue,2.0,t +21580,100%,,3.0,f +29473,,Gambia,3.0,t +31530,50%,,1.0,t +12815,,Togo,1.0,t +46695,,Afghanistan,1.0,f +45468,100%,,4.0,f +23950,100%,Micronesia,2.0,t +19228,100%,Svalbard & Jan Mayen Islands,8.0,f +37735,100%,Uganda,13.0,t +42685,,Denmark,24.0,t +36578,100%,Faroe Islands,3.0,t +19129,,Malta,5.0,t +49223,100%,,1.0,t +29647,100%,Peru,1305.0,f +36413,,,1.0,f +37018,100%,Canada,2.0,f +24427,100%,,2.0,t +11811,,Denmark,4.0,f +19235,,,1.0,f +43377,80%,Denmark,1.0,t +20775,100%,,1.0,f +40116,,,1.0,f +27204,,,1.0,t +3155,,,3.0,t +43496,100%,Montserrat,18.0,t +10451,,,3.0,t +25134,,,1.0,t +832,,El Salvador,1.0,f +2200,,Sao Tome and Principe,1.0,t +26665,100%,,1.0,f +18918,100%,Tanzania,1.0,f +27502,90%,Mauritania,1.0,f +46272,,Micronesia,2.0,t +22789,,Lebanon,1.0,f +4539,,,1.0,f +29131,,Suriname,1.0,f +43383,100%,Cape Verde,3.0,t +42233,100%,,1.0,f +3892,,,1.0,t +47114,100%,,2.0,f +24606,,,1.0,f +18635,100%,Tonga,2.0,t +12,100%,,1.0,t +1560,,Indonesia,3.0,t +12608,,,1.0,f +33641,100%,Tanzania,1.0,f +25215,0%,Sao Tome and Principe,1.0,f +45596,100%,,4.0,t +33524,,France,1.0,t +14657,,Reunion,2.0,t +43951,,,1.0,f +34378,100%,United Kingdom,1.0,t +32487,100%,Brazil,1.0,t +3497,,Uzbekistan,2.0,t +28866,,Cuba,5.0,f +8977,,United Kingdom,2.0,f +33068,,Canada,1.0,f +2436,,Mexico,1.0,f +31675,,Rwanda,1.0,f +36596,100%,Bouvet Island (Bouvetoya),1.0,f +23279,,Senegal,1.0,f +19081,,Tonga,1.0,t +5869,,Costa Rica,1.0,f +27367,100%,Maldives,1.0,f +45486,,Marshall Islands,1.0,t +6435,100%,Brazil,1.0,f +5681,75%,Denmark,1.0,f +7337,,,1.0,t +24634,100%,Guinea,20.0,t +26787,100%,,1.0,f +39769,100%,Isle of Man,3.0,f +16630,90%,Lithuania,2.0,f +13841,0%,Kiribati,1.0,f +47682,100%,Niue,1.0,t +24892,100%,Isle of Man,1.0,t +7040,,Russian Federation,1.0,t +33584,100%,Niue,1.0,t +2018,,,1.0,f +2866,100%,,1.0,t +25072,,,1.0,f +49200,100%,Svalbard & Jan Mayen Islands,1.0,f +27972,94%,Brazil,27.0,f +11811,,Denmark,4.0,f +11811,,Denmark,4.0,f +11811,,Denmark,4.0,f +18091,90%,French Polynesia,2.0,f +18091,90%,French Polynesia,2.0,f +39987,100%,Portugal,1.0,f +9508,,Denmark,2.0,f +17988,100%,Jersey,1.0,f +11504,67%,,1.0,f +16630,90%,Lithuania,2.0,f +27140,100%,Uganda,1.0,t +28918,,Kenya,1.0,t +40526,90%,Kenya,1.0,f +12642,100%,United Kingdom,7.0,t +30995,,,7.0,f +12642,100%,United Kingdom,7.0,t +12642,100%,United Kingdom,7.0,t +12642,100%,United Kingdom,7.0,t +12642,100%,United Kingdom,7.0,t +11264,,Sao Tome and Principe,2.0,f +37704,96%,Fiji,26.0,f +23259,100%,Senegal,2.0,t +35851,,Russian Federation,2.0,t +37704,96%,Fiji,26.0,f +22172,100%,Marshall Islands,2.0,f +43347,100%,Bouvet Island (Bouvetoya),1.0,f +48238,,Venezuela,4.0,t +13826,,Malta,1.0,f +29647,100%,Peru,1305.0,f +35994,,Mauritania,1.0,f +19795,100%,Estonia,8.0,f +4448,95%,,4.0,t +42835,100%,,2.0,f +12165,,,1.0,f +37293,92%,Russian Federation,15.0,f +26210,,Lebanon,2.0,f +10711,93%,Uganda,108.0,t +39059,33%,,1.0,f +20334,99%,Niger,171.0,t +29144,100%,Nicaragua,3.0,t +29647,100%,Peru,1305.0,f +3596,100%,Marshall Islands,6.0,t +13607,100%,Russian Federation,1.0,f +42988,,Guinea,2.0,t +7153,,,2.0,f +20955,,Guernsey,1.0,f +18376,,Venezuela,1.0,f +40437,50%,,1.0,f +34134,25%,,1.0,f +41754,100%,Zimbabwe,1.0,t +4570,100%,Guinea,4.0,t +40466,100%,Russian Federation,5.0,f +45463,100%,Mauritania,2.0,t +5543,,,1.0,f +5933,,Micronesia,2.0,f +24081,100%,,2.0,f +31020,100%,Slovakia (Slovak Republic),3.0,t +35025,100%,Pakistan,4.0,f +31020,100%,Slovakia (Slovak Republic),3.0,t +31020,100%,Slovakia (Slovak Republic),3.0,t +45558,100%,Guinea,1.0,f +16910,100%,Slovakia (Slovak Republic),5.0,t +26459,100%,Slovakia (Slovak Republic),4.0,t +41813,,Zimbabwe,1.0,f +12729,100%,Maldives,6.0,t +26546,50%,Lebanon,3.0,t +14514,,China,80.0,t +40901,,Peru,1.0,f +20841,,French Guiana,1.0,t +10977,100%,,1.0,t +41126,90%,Saint Helena,1.0,f +37748,,Guinea,1.0,t +34396,,,1.0,t +27269,,,1.0,f +37245,100%,,1.0,f +645,,Kiribati,2.0,t +43496,100%,Montserrat,18.0,t +36524,100%,Saint Helena,8.0,t +3101,100%,Puerto Rico,27.0,f +11138,90%,,3.0,f +34939,,Micronesia,1.0,t +30812,,Guinea,1.0,f +38833,,Ukraine,2.0,t +3727,,,1.0,f +20787,100%,Isle of Man,1.0,t +40922,,,2.0,f +30055,,Jersey,1.0,t +3632,100%,Philippines,4.0,t +2855,80%,Sao Tome and Principe,1.0,f +30995,,,7.0,f +7960,,Peru,1.0,t +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +6750,100%,,1.0,t +46228,,,1.0,t +13636,,Kenya,1.0,t +17859,,Guernsey,1.0,f +29647,100%,Peru,1305.0,f +19572,100%,Rwanda,2.0,t +20989,100%,Marshall Islands,8.0,f +42069,50%,,1.0,f +43888,100%,Brazil,3.0,t +25086,100%,,2.0,t +34851,100%,,4.0,f +8480,,,1.0,t +49263,90%,Micronesia,3.0,t +19718,100%,Turks and Caicos Islands,10.0,f +24790,,,1.0,f +44725,100%,Slovakia (Slovak Republic),4.0,t +33990,90%,Cocos (Keeling) Islands,1.0,f +25063,,,1.0,f +18331,,Faroe Islands,1.0,f +8052,,Sao Tome and Principe,1.0,f +19734,100%,,1.0,t +34921,100%,Holy See (Vatican City State),1.0,f +30924,,Sao Tome and Principe,7.0,t +49788,,Uzbekistan,1.0,t +44680,100%,,1.0,t +5580,100%,Somalia,2.0,t +16883,,,2.0,f +3875,100%,Isle of Man,2.0,f +28005,,Russian Federation,1.0,f +30283,100%,Brazil,15.0,f +35046,,Sao Tome and Principe,2.0,t +37085,,Guinea,1.0,f +5361,100%,Niger,3.0,t +12849,100%,Niger,1.0,f +24634,100%,Guinea,20.0,t +30467,,Costa Rica,1.0,f +24634,100%,Guinea,20.0,t +30406,,Russian Federation,2.0,f +44149,,,1.0,t +26541,100%,Nicaragua,12.0,f +24634,100%,Guinea,20.0,t +24634,100%,Guinea,20.0,t +39324,,China,1.0,t +9702,,Pakistan,1.0,f +125,100%,Micronesia,1.0,t +24331,100%,,3.0,t +39718,,,1.0,f +23654,100%,Uzbekistan,23.0,f +38613,100%,,1.0,f +35407,100%,Gambia,1.0,t +24005,,El Salvador,1.0,t +44121,100%,Nicaragua,5.0,f +33468,100%,Monaco,2.0,t +45761,100%,Guinea,1.0,t +11960,0%,,1.0,f +16412,100%,Anguilla,2.0,t +30745,,,1.0,f +29570,100%,Vanuatu,1.0,f +29431,100%,Tonga,1.0,t +21261,100%,Isle of Man,3.0,t +47187,100%,Gambia,1.0,t +33506,100%,Russian Federation,1.0,f +45596,100%,,4.0,t +27845,,Gibraltar,1.0,t +42870,,Isle of Man,1.0,f +45596,100%,,4.0,t +44113,90%,,1.0,t +19086,,,1.0,t +13653,,Isle of Man,3.0,t +48927,,,1.0,t +25937,100%,Uzbekistan,1.0,f +2240,100%,,2.0,t +17250,75%,Palestinian Territory,1.0,f +1409,,Turks and Caicos Islands,1.0,f +31673,100%,Lebanon,3.0,t +248,91%,French Guiana,2.0,f +30458,,Malta,1.0,t +46324,,Cocos (Keeling) Islands,1.0,f +44288,100%,,2.0,t +23316,,Russian Federation,1.0,f +32117,100%,Cape Verde,2.0,t +31221,,,1.0,t +49227,,,1.0,t +25175,100%,Cocos (Keeling) Islands,2.0,f +49224,,,1.0,f +20249,,Papua New Guinea,2.0,t +46842,75%,Portugal,13.0,t +46842,75%,Portugal,13.0,t +46842,75%,Portugal,13.0,t +46842,75%,Portugal,13.0,t +46842,75%,Portugal,13.0,t +37687,100%,Turkmenistan,1.0,t +42283,100%,Montserrat,4.0,t +45911,0%,,2.0,f +40379,,,1.0,f +4338,80%,Micronesia,2.0,t +49737,,Faroe Islands,1.0,f +20334,99%,Niger,171.0,t +40982,94%,Bahrain,5.0,t +4722,96%,Guinea,13.0,t +43160,,Australia,1.0,t +32793,100%,El Salvador,1.0,t +8225,95%,Barbados,31.0,f +761,100%,,2.0,f +49965,100%,Kenya,5.0,t +28766,100%,Estonia,16.0,f +23034,99%,Monaco,54.0,f +9427,100%,Marshall Islands,3.0,f +21730,,Philippines,5.0,t +41468,,Tanzania,1.0,t +12771,,,1.0,t +6588,,,1.0,t +15571,100%,,1.0,f +30117,100%,Tunisia,7.0,t +26032,100%,,1.0,f +22075,,Sao Tome and Principe,1.0,f +24418,100%,Fiji,2.0,t +30117,100%,Tunisia,7.0,t +24500,,,3.0,f +29647,100%,Peru,1305.0,f +14698,100%,,7.0,f +17795,100%,Uzbekistan,11.0,t +32492,,Slovakia (Slovak Republic),1.0,t +20007,100%,Maldives,2.0,t +43773,100%,Turks and Caicos Islands,2.0,f +18480,90%,Monaco,4.0,t +20007,100%,Maldives,2.0,t +2985,100%,Mauritania,1.0,t +23586,,Saint Helena,1.0,t +4549,100%,Netherlands,1.0,f +12800,100%,Malawi,2.0,f +11226,,,1.0,f +38045,97%,Uzbekistan,7.0,f +24500,,,3.0,f +47141,,Indonesia,1.0,t +45468,100%,,4.0,f +4502,,Costa Rica,1.0,f +48932,100%,Monaco,5.0,t +29674,,,1.0,f +42626,,Lebanon,1.0,f +23376,100%,Estonia,2.0,t +45365,,Kiribati,3.0,t +14063,100%,Denmark,10.0,t +39842,,Sao Tome and Principe,1.0,t +49301,100%,,1.0,f +33065,100%,Uzbekistan,6.0,f +8225,95%,Barbados,31.0,f +29647,100%,Peru,1305.0,f +26459,100%,Slovakia (Slovak Republic),4.0,t +31706,,Niue,1.0,f +26459,100%,Slovakia (Slovak Republic),4.0,t +22545,100%,,2.0,f +2674,,Gambia,1.0,t +32892,,Mauritania,1.0,f +40164,100%,Kenya,1.0,f +6289,100%,Russian Federation,4.0,t +43940,100%,Guernsey,1.0,t +4707,,Lebanon,1.0,t +6289,100%,Russian Federation,4.0,t +37218,100%,Slovakia (Slovak Republic),4.0,t +21909,100%,Christmas Island,3.0,f +33164,60%,Togo,6.0,f +3408,,Rwanda,2.0,f +35439,94%,United Kingdom,23.0,t +1948,63%,Rwanda,3.0,f +26223,,Sao Tome and Principe,1.0,t +14462,,Canada,1.0,f +49599,100%,Monaco,4.0,t +724,100%,Zimbabwe,8.0,f +14276,,,1.0,f +38776,,Micronesia,1.0,f +22159,100%,Afghanistan,1.0,f +38719,,,2.0,t +37770,100%,Anguilla,2.0,t +46656,50%,France,2.0,f +6525,100%,Indonesia,3.0,t +11331,75%,,1.0,f +17086,100%,Saint Pierre and Miquelon,2.0,t +37012,100%,Monaco,3.0,t +48077,,Bosnia and Herzegovina,2.0,f +14928,100%,,1.0,t +37229,100%,Tanzania,2.0,f +15803,100%,Tonga,1.0,t +25291,58%,Gibraltar,3.0,t +40221,100%,,2.0,t +20687,,Lebanon,1.0,t +44226,,Uganda,1.0,t +47959,100%,Kiribati,1.0,t +15004,100%,Uzbekistan,88.0,f +26837,100%,Uzbekistan,1.0,f +20334,99%,Niger,171.0,t +25344,90%,Faroe Islands,8.0,f +4228,,Niger,11.0,f +26778,100%,Kiribati,2.0,f +15886,,Sao Tome and Principe,1.0,t +45667,,,1.0,t +11547,,Uzbekistan,1.0,f +3135,100%,Ecuador,2.0,f +15343,86%,Palestinian Territory,1.0,f +36737,,,1.0,t +4426,,,1.0,f +27534,,Chad,2.0,t +38446,,,1.0,f +1869,,Moldova,2.0,f +3037,100%,,2.0,f +31882,,,1.0,t +48125,100%,Puerto Rico,1.0,f +12885,,Kenya,1.0,f +40752,100%,Tunisia,5.0,t +26863,,Mexico,7.0,f +26283,100%,Zimbabwe,6.0,t +21196,,Niue,2.0,t +22721,100%,Ecuador,109.0,f +25480,,,1.0,f +30520,,Saint Helena,1.0,t +13656,100%,,1.0,f +31802,100%,New Zealand,5.0,t +17417,,Denmark,11.0,f +42002,,Malta,1.0,f +26555,,Monaco,1.0,f +529,100%,Faroe Islands,1.0,t +22721,100%,Ecuador,109.0,f +18421,90%,Nicaragua,1.0,t +44636,100%,Russian Federation,1.0,f +5663,,Russian Federation,8.0,t +10146,,,1.0,f +11126,100%,Anguilla,3.0,t +21897,90%,,3.0,f +5663,,Russian Federation,8.0,t +22188,100%,,3.0,f +36486,,,1.0,t +14024,100%,,2.0,f +37757,100%,,2.0,t +20453,,Isle of Man,1.0,f +48906,,,1.0,t +46195,89%,Maldives,6.0,t +5233,100%,Montserrat,6.0,t +32226,30%,,1.0,f +21431,100%,,2.0,t +14039,100%,Sao Tome and Principe,1.0,f +6186,,Bosnia and Herzegovina,3.0,t +18330,,Marshall Islands,3.0,f +3037,100%,,2.0,f +35025,100%,Pakistan,4.0,f +40208,100%,Saint Helena,2.0,t +2188,100%,Isle of Man,1.0,f +17211,100%,,2.0,t +37939,,,1.0,t +4228,,Niger,11.0,f +13874,100%,Guinea,2.0,f +23034,99%,Monaco,54.0,f +6065,88%,,2.0,t +26889,100%,Indonesia,10.0,f +42317,100%,Netherlands Antilles,1.0,t +27594,100%,Switzerland,1.0,t +10362,,Russian Federation,1.0,f +40218,100%,Estonia,6.0,f +46014,0%,Guinea,1.0,f +18828,100%,Ecuador,2.0,t +22721,100%,Ecuador,109.0,f +31451,,Turks and Caicos Islands,4.0,f +21858,100%,Cuba,2.0,f +26898,100%,,1.0,f +10461,,Somalia,1.0,t +25075,100%,Guinea,1.0,f +32339,100%,Russian Federation,1.0,f +37562,,Bosnia and Herzegovina,1.0,f +12014,100%,Pakistan,1.0,f +20572,0%,,2.0,t +4214,100%,Niue,3.0,t +6728,,Vietnam,3.0,t +48526,,Indonesia,1.0,f +24155,50%,Brunei Darussalam,1.0,f +606,100%,Nicaragua,1.0,f +32020,,Finland,1.0,f +2688,,Lebanon,1.0,t +5900,,,1.0,t +29142,100%,,1.0,t +16105,,,1.0,f +45780,91%,Palestinian Territory,5.0,f +12027,100%,Uzbekistan,4.0,t +12027,100%,Uzbekistan,4.0,t +40149,,Isle of Man,1.0,f +26889,100%,Indonesia,10.0,f +10798,100%,Madagascar,3.0,f +14835,100%,,3.0,t +16427,100%,Isle of Man,1.0,f +32878,,Uzbekistan,1.0,f +99,,,1.0,t +914,100%,Switzerland,2.0,f +39952,100%,Tonga,21.0,f +9364,80%,Nicaragua,1.0,t +39952,100%,Tonga,21.0,f +1560,,Indonesia,3.0,t +13432,,Rwanda,1.0,f +28481,,,1.0,f +21379,,Netherlands,2.0,t +38918,,,1.0,f +29473,,Gambia,3.0,t +5049,100%,Sao Tome and Principe,15.0,t +25833,,Micronesia,1.0,t +14179,100%,,2.0,t +17327,,Russian Federation,2.0,f +39840,,China,2.0,t +6894,80%,Estonia,47.0,t +8191,100%,Mauritania,8.0,f +49855,,Togo,2.0,f +18081,50%,Tajikistan,2.0,f +23305,100%,Philippines,11.0,f +33216,,Zimbabwe,1.0,t +8676,,,1.0,f +11253,,Ghana,7.0,f +29668,100%,Nicaragua,4.0,t +13357,100%,,1.0,f +11253,,Ghana,7.0,f +42855,,Holy See (Vatican City State),2.0,f +27133,100%,,4.0,f +39325,,France,1.0,f +20386,,,1.0,t +1074,,Monaco,1.0,t +4624,,,1.0,t +31524,100%,,1.0,f +3903,,,1.0,f +18720,50%,,1.0,f +3421,100%,,4.0,f +13742,90%,El Salvador,5.0,t +25371,100%,Bouvet Island (Bouvetoya),2.0,t +45030,,,1.0,t +5958,100%,Faroe Islands,9.0,f +5970,100%,El Salvador,2.0,f +13184,100%,Vietnam,7.0,f +13184,100%,Vietnam,7.0,f +13184,100%,Vietnam,7.0,f +48470,90%,Pakistan,4.0,f +13756,100%,Guinea,3.0,f +42638,100%,Zimbabwe,1.0,f +23688,100%,Brazil,1.0,t +47963,100%,,1.0,t +27724,,Lebanon,1.0,t +22345,,Lebanon,3.0,t +37997,,Venezuela,1.0,t +18330,,Marshall Islands,3.0,f +41923,100%,Puerto Rico,4.0,f +5362,,United Kingdom,1.0,t +26376,,Niue,1.0,f +22721,100%,Ecuador,109.0,f +13184,100%,Vietnam,7.0,f +13184,100%,Vietnam,7.0,f +14982,,Guinea,1.0,f +13184,100%,Vietnam,7.0,f +37646,100%,Estonia,60.0,f +9289,100%,Marshall Islands,1.0,t +6260,,,1.0,f +2062,,,1.0,t +29733,,Russian Federation,15.0,f +6894,80%,Estonia,47.0,t +45142,,,1.0,t +29558,,Guinea,1.0,f +4391,,Somalia,1.0,t +11110,88%,Kiribati,3.0,t +14289,100%,,2.0,f +19383,83%,Brazil,1.0,t +23411,,Nicaragua,1.0,t +39872,,Andorra,2.0,t +23698,,,1.0,f +46701,,,1.0,t +13555,100%,Kiribati,2.0,f +15987,67%,Costa Rica,1.0,f +22345,,Lebanon,3.0,t +29318,,Tonga,1.0,t +21190,100%,Uganda,3.0,f +22288,,,1.0,t +7311,,Congo,1.0,f +17164,,,1.0,f +45423,,Sao Tome and Principe,1.0,f +15655,,Venezuela,1.0,t +21312,,,1.0,t +48409,,Estonia,60.0,t +17639,90%,Kenya,3.0,f +28828,100%,Isle of Man,198.0,t +38185,100%,Papua New Guinea,10.0,f +21595,100%,,2.0,f +8601,,Angola,16.0,f +12375,100%,,1.0,f +7679,100%,Niger,4.0,t +29647,100%,Peru,1305.0,f +26889,100%,Indonesia,10.0,f +11567,100%,Niger,31.0,t +27430,100%,Christmas Island,4.0,t +42281,100%,Marshall Islands,39.0,f +13947,100%,France,3.0,t +613,100%,,1.0,t +42281,100%,Marshall Islands,39.0,f +8225,95%,Barbados,31.0,f +20334,99%,Niger,171.0,t +42281,100%,Marshall Islands,39.0,f +42281,100%,Marshall Islands,39.0,f +45138,79%,Barbados,14.0,f +39105,100%,Guernsey,3.0,t +22828,100%,Lebanon,2.0,t +25344,90%,Faroe Islands,8.0,f +41878,91%,Maldives,47.0,f +18442,100%,Reunion,5.0,t +30680,,Guinea,4.0,f +17542,,,1.0,f +4665,100%,Reunion,4.0,t +32218,,Isle of Man,1.0,f +30214,100%,,10.0,t +13304,100%,Cocos (Keeling) Islands,2.0,f +4998,,Gambia,1.0,f +35696,,,3.0,t +30319,,,1.0,t +3437,,,1.0,f +29978,89%,Uzbekistan,26.0,f +25967,100%,Anguilla,1.0,f +31681,100%,,2.0,f +15955,88%,Malta,4.0,t +4228,,Niger,11.0,f +6252,100%,,1.0,f +38933,100%,Montserrat,1.0,f +17299,,Anguilla,2.0,f +22324,100%,Venezuela,6.0,t +36112,100%,Denmark,1.0,f +40221,100%,,2.0,t +1835,100%,Ecuador,8.0,f +24008,,Brazil,1.0,f +3787,100%,,1.0,f +7534,90%,,1.0,f +26734,,United Kingdom,1.0,t +16683,,,1.0,f +204,100%,Guinea,1.0,f +10732,,Uganda,5.0,f +47550,100%,Guinea,4.0,t +39614,100%,Gambia,2.0,t +41923,100%,Puerto Rico,4.0,f +1097,100%,,1.0,t +42965,100%,Uzbekistan,11.0,t +42316,,Bahrain,1.0,t +42256,100%,,8.0,f +29886,0%,Zimbabwe,2.0,t +1758,,Bouvet Island (Bouvetoya),1.0,f +36759,100%,France,1.0,t +46069,50%,France,1.0,t +45706,100%,Kenya,2.0,t +38158,90%,Niger,2.0,f +3377,100%,,1.0,f +19172,,Guernsey,1.0,f +35774,90%,Brazil,1.0,t +4665,100%,Reunion,4.0,t +44909,,Uzbekistan,1.0,t +40236,,Rwanda,1.0,t +8906,75%,Philippines,1.0,f +2644,100%,Zimbabwe,11.0,t +24609,100%,Sao Tome and Principe,1.0,t +27133,100%,,4.0,f +951,,Monaco,1.0,t +43755,100%,,1.0,f +31716,100%,Venezuela,4.0,f +33421,,Rwanda,1.0,t +1276,,Cuba,1.0,t +41918,90%,France,2.0,f +47015,,El Salvador,1.0,t +24571,,Philippines,1.0,f +19345,100%,Niue,2.0,t +41878,91%,Maldives,47.0,f +20273,,France,1.0,f +43013,,Estonia,1.0,t +44289,,,1.0,t +42933,100%,Isle of Man,1.0,t +20047,,,1.0,t +37949,,Sao Tome and Principe,1.0,f +5049,100%,Sao Tome and Principe,15.0,t +5049,100%,Sao Tome and Principe,15.0,t +22784,100%,Rwanda,5.0,f +29824,100%,Sao Tome and Principe,6.0,t +23034,99%,Monaco,54.0,f +1999,,Niue,2.0,f +35260,100%,,1.0,t +3678,100%,Guinea,7.0,t +45204,,,2.0,t +49752,,Faroe Islands,2.0,f +15467,,United Kingdom,2.0,t +18077,100%,Sao Tome and Principe,139.0,f +36234,97%,Fiji,12.0,t +13096,100%,Togo,1.0,f +36983,,Isle of Man,1.0,f +48409,,Estonia,60.0,t +26283,100%,Zimbabwe,6.0,t +43754,,Kenya,1.0,f +49076,97%,Kenya,12.0,t +24683,100%,,1.0,t +47964,,Chile,3.0,f +14245,100%,,1.0,f +21692,100%,Ecuador,3.0,t +40220,,Tonga,3.0,f +19069,,Kiribati,1.0,t +8600,,Nicaragua,1.0,t +25106,,Costa Rica,2.0,t +10158,100%,Ukraine,6.0,t +18996,,Slovakia (Slovak Republic),5.0,f +41289,100%,,1.0,f +45600,100%,Gibraltar,2.0,f +46605,,Indonesia,1.0,t +7560,,Malta,1.0,t +38746,99%,Vietnam,13.0,f +14999,20%,Slovakia (Slovak Republic),3.0,f +19958,100%,Congo,40.0,t +46359,,Rwanda,2.0,t +16807,100%,,1.0,t +4840,,,1.0,f +30359,100%,Bosnia and Herzegovina,1.0,f +25335,,Croatia,1.0,t +19217,98%,Marshall Islands,46.0,f +26346,,Lebanon,1.0,f +33927,100%,Barbados,9.0,f +40373,,,1.0,f +37027,,Saint Helena,1.0,f +30435,99%,Cape Verde,41.0,f +11947,100%,,2.0,f +6759,,,1.0,t +23441,,Isle of Man,1.0,t +38162,100%,Niger,8.0,f +41889,96%,Uzbekistan,14.0,t +41889,96%,Uzbekistan,14.0,t +33203,100%,,3.0,f +24099,,France,4.0,f +35548,,Guernsey,1.0,t +15152,,Togo,1.0,t +3251,,,1.0,f +19364,33%,Guinea,1.0,f +31174,89%,,1.0,t +2966,100%,,1.0,t +49852,,,1.0,t +36710,100%,Somalia,1.0,t +45204,,,2.0,t +30764,100%,Slovakia (Slovak Republic),8.0,t +30764,100%,Slovakia (Slovak Republic),8.0,t +39503,,Togo,1.0,f +39228,100%,Rwanda,2.0,f +34194,100%,,7.0,t +4228,,Niger,11.0,f +48852,60%,Rwanda,3.0,t +49278,,Lebanon,1.0,t +1270,100%,France,1.0,f +6901,,,1.0,f +13915,100%,Micronesia,1.0,t +48360,,,1.0,t +31121,,Slovakia (Slovak Republic),1.0,f +41889,96%,Uzbekistan,14.0,t +17893,100%,,2.0,f +33390,,Isle of Man,1.0,f +41889,96%,Uzbekistan,14.0,t +41889,96%,Uzbekistan,14.0,t +31612,100%,,3.0,t +3678,100%,Guinea,7.0,t +30122,,Chile,1.0,t +46150,,,2.0,f +3217,,Nicaragua,1.0,f +44050,,Denmark,2.0,t +3678,100%,Guinea,7.0,t +27954,,,1.0,t +11805,,,1.0,t +41889,96%,Uzbekistan,14.0,t +45395,100%,Cocos (Keeling) Islands,1.0,f +3678,100%,Guinea,7.0,t +43496,100%,Montserrat,18.0,t +3792,,Reunion,1.0,f +29601,,Faroe Islands,6.0,t +27374,100%,Costa Rica,1.0,f +31909,,El Salvador,2.0,t +42256,100%,,8.0,f +28720,,,1.0,f +18607,100%,Niue,1.0,f +34687,100%,,2.0,f +8061,,Indonesia,2.0,f +1726,93%,Isle of Man,9.0,t +45160,100%,,2.0,t +3381,,Christmas Island,1.0,f +20910,,,1.0,t +39659,,Rwanda,1.0,t +3678,100%,Guinea,7.0,t +48591,0%,Gibraltar,1.0,t +42441,100%,Jersey,3.0,f +3678,100%,Guinea,7.0,t +3678,100%,Guinea,7.0,t +35969,,,1.0,f +20426,,Slovakia (Slovak Republic),2.0,f +41847,100%,El Salvador,3.0,t +8856,,Ecuador,1.0,t +16818,98%,Nicaragua,5.0,t +23305,100%,Philippines,11.0,f +7667,,,1.0,f +23305,100%,Philippines,11.0,f +32204,100%,Guinea,2.0,t +15676,,Gambia,1.0,f +10662,100%,,1.0,t +30435,99%,Cape Verde,41.0,f +46411,90%,Zimbabwe,1.0,f +49752,,Faroe Islands,2.0,f +33659,,Chad,1.0,f +39817,100%,,2.0,t +30383,90%,Mauritania,6.0,t +29081,98%,Uzbekistan,18.0,f +46286,100%,Venezuela,2.0,f +11652,100%,,1.0,f +9516,99%,Pakistan,45.0,t +20740,,,2.0,t +27473,100%,,2.0,f +2227,100%,Montserrat,5.0,t +31594,100%,Philippines,19.0,t +32142,100%,,1.0,f +9613,94%,United Kingdom,2.0,t +45306,89%,Rwanda,7.0,t +8439,97%,Rwanda,17.0,t +24550,,,1.0,t +49529,100%,,1.0,f +31067,,Tonga,1.0,t +43140,,,1.0,t +16412,100%,Anguilla,2.0,t +1528,67%,Zimbabwe,1.0,t +19143,100%,,3.0,t +3442,100%,Tonga,2.0,t +10926,100%,El Salvador,1.0,t +37621,,,1.0,f +8326,40%,,1.0,t +39627,,Russian Federation,2.0,t +42951,75%,Marshall Islands,1.0,f +19793,,Montserrat,1.0,t +19921,,Wallis and Futuna,1.0,t +33743,100%,Denmark,2.0,f +3887,,Niue,1.0,f +30620,70%,United Kingdom,1.0,t +33880,84%,Barbados,18.0,f +10796,,,1.0,t +33880,84%,Barbados,18.0,f +24876,,Russian Federation,1.0,f +20451,,Montserrat,1.0,f +40136,100%,,1.0,t +29115,100%,Isle of Man,1.0,f +15003,,Bosnia and Herzegovina,1.0,t +23317,,Palestinian Territory,1.0,f +5049,100%,Sao Tome and Principe,15.0,t +22106,100%,,2.0,t +5049,100%,Sao Tome and Principe,15.0,t +1999,,Niue,2.0,f +20329,100%,Reunion,21.0,f +33967,,Lebanon,1.0,t +20221,86%,Micronesia,1.0,t +22200,,Holy See (Vatican City State),1.0,f +42256,100%,,8.0,f +38314,100%,Portugal,2.0,f +30850,100%,Finland,5.0,t +28828,100%,Isle of Man,198.0,t +39993,93%,China,3.0,f +25915,75%,,2.0,t +2354,100%,Marshall Islands,4.0,t +39131,100%,Lithuania,4.0,t +19467,,,1.0,t +22164,,Gambia,3.0,t +19301,100%,,2.0,t +7449,,Isle of Man,1.0,f +27182,100%,,1.0,f +10001,,Malawi,1.0,t +25763,92%,Micronesia,4.0,f +39037,,Isle of Man,2.0,t +2425,,,1.0,f +48238,,Venezuela,4.0,t +20727,100%,Russian Federation,4.0,t +23766,100%,Guinea,2.0,f +48470,90%,Pakistan,4.0,f +32460,100%,Denmark,1.0,f +24302,100%,Cape Verde,6.0,f +7815,100%,Estonia,2.0,t +48632,100%,,1.0,t +5433,,Cape Verde,4.0,t +43234,,Netherlands,1.0,t +6348,,Sao Tome and Principe,1.0,f +36095,,,1.0,f +42256,100%,,8.0,f +11404,,Sao Tome and Principe,1.0,f +11754,90%,Cuba,2.0,f +5049,100%,Sao Tome and Principe,15.0,t +42256,100%,,8.0,f +17595,90%,,1.0,t +25349,100%,,1.0,t +32512,100%,Saint Helena,9.0,f +48494,,Uganda,1.0,t +47832,100%,Denmark,1.0,f +32512,100%,Saint Helena,9.0,f +22794,50%,Cape Verde,36.0,t +3943,,Wallis and Futuna,1.0,f +22794,50%,Cape Verde,36.0,t +21710,,Isle of Man,2.0,t +30066,,,1.0,t +42393,,Micronesia,1.0,t +6884,,Micronesia,2.0,t +46483,100%,,1.0,f +5049,100%,Sao Tome and Principe,15.0,t +27027,100%,Nicaragua,1.0,t +48756,100%,Maldives,59.0,f +5178,,,1.0,f +34300,0%,,1.0,f +46831,,Guinea,1.0,f +20155,100%,,2.0,t +46583,,Sao Tome and Principe,1.0,f +30649,,Brazil,1.0,t +3774,100%,Nicaragua,3.0,f +20772,,Turks and Caicos Islands,1.0,f +21681,100%,Sao Tome and Principe,1.0,f +37293,92%,Russian Federation,15.0,f +39109,77%,Ukraine,24.0,t +47905,,Kenya,1.0,f +40584,93%,Uzbekistan,1.0,t +42390,100%,Wallis and Futuna,96.0,t +45348,100%,Denmark,1.0,f +27740,100%,United Kingdom,6.0,t +49567,100%,Saint Helena,4.0,t +501,,France,2.0,t +355,80%,China,9.0,t +21909,100%,Christmas Island,3.0,f +46859,100%,Isle of Man,2.0,t +34702,100%,Denmark,1.0,t +11567,100%,Niger,31.0,t +43183,98%,Tonga,12.0,t +2088,100%,Isle of Man,2.0,t +15797,100%,Micronesia,2.0,f +14793,,,1.0,t +9767,,Sao Tome and Principe,1.0,f +18077,100%,Sao Tome and Principe,139.0,f +25175,100%,Cocos (Keeling) Islands,2.0,f +818,90%,,1.0,f +11567,100%,Niger,31.0,t +40125,100%,Ecuador,1.0,f +27972,94%,Brazil,27.0,f +41878,91%,Maldives,47.0,f +4228,,Niger,11.0,f +4954,,Christmas Island,2.0,f +48837,100%,,1.0,f +19009,0%,Micronesia,1.0,t +26560,,,1.0,t +19795,100%,Estonia,8.0,f +17449,,Lebanon,1.0,f +4228,,Niger,11.0,f +41643,100%,Montserrat,1.0,t +14050,100%,Lithuania,1.0,t +9765,,French Guiana,1.0,t +24648,,Rwanda,2.0,t +30061,100%,,1.0,f +7104,,,1.0,f +24775,97%,Montserrat,44.0,f +35499,94%,Andorra,4.0,f +38676,,Mexico,1.0,f +24775,97%,Montserrat,44.0,f +36746,100%,Isle of Man,1.0,t +30383,90%,Mauritania,6.0,t +12428,,Niue,1.0,t +42256,100%,,8.0,f +48409,,Estonia,60.0,t +13030,100%,Mauritania,1.0,t +26276,,Cook Islands,1.0,f +7582,100%,Lithuania,2.0,f +24001,100%,Chile,1.0,t +710,100%,Kenya,1.0,t +20367,71%,Zimbabwe,1.0,f +19217,98%,Marshall Islands,46.0,f +21173,,Niue,3.0,t +11070,100%,,1.0,t +39244,100%,Netherlands,3.0,f +47366,,,1.0,t +5049,100%,Sao Tome and Principe,15.0,t +30137,,Isle of Man,1.0,t +3692,,,1.0,f +8466,94%,Saint Helena,7.0,f +32809,,,1.0,f +19217,98%,Marshall Islands,46.0,f +29098,100%,Vanuatu,1.0,f +8466,94%,Saint Helena,7.0,f +8466,94%,Saint Helena,7.0,f +8466,94%,Saint Helena,7.0,f +19217,98%,Marshall Islands,46.0,f +22822,,,3.0,f +26690,,,1.0,f +33273,,,1.0,f +39125,100%,Montserrat,1.0,f +48317,70%,,1.0,t +40417,100%,Rwanda,1.0,f +45546,100%,Cape Verde,19.0,t +4665,100%,Reunion,4.0,t +18573,,,5.0,f +45919,100%,Montserrat,9.0,t +18077,100%,Sao Tome and Principe,139.0,f +21754,,Micronesia,1.0,t +2088,100%,Isle of Man,2.0,t +26386,100%,Fiji,25.0,t +15512,,Niue,1.0,f +17295,,Jersey,1.0,f +49599,100%,Monaco,4.0,t +29647,100%,Peru,1305.0,f +11100,100%,Nicaragua,1.0,f +32333,,Niue,1.0,f +36440,,Tonga,1.0,f +48981,100%,Sao Tome and Principe,1.0,t +19566,,Lebanon,1.0,t +14071,100%,Gambia,2.0,f +6738,100%,,2.0,f +40410,100%,Gibraltar,1.0,t +2877,100%,United Kingdom,1.0,t +9730,100%,,1.0,t +9057,90%,Kiribati,11.0,t +12528,0%,Fiji,1.0,f +6738,100%,,2.0,f +21455,,Costa Rica,1.0,t +36455,,Brazil,1.0,t +48409,,Estonia,60.0,t +28828,100%,Isle of Man,198.0,t +31444,100%,Reunion,25.0,f +30680,,Guinea,4.0,f +35664,,Svalbard & Jan Mayen Islands,1.0,t +18077,100%,Sao Tome and Principe,139.0,f +31444,100%,Reunion,25.0,f +18077,100%,Sao Tome and Principe,139.0,f +30680,,Guinea,4.0,f +38469,100%,Cocos (Keeling) Islands,3.0,t +46784,,,1.0,t +5790,100%,Jersey,1.0,t +47904,,Uganda,2.0,f +9057,90%,Kiribati,11.0,t +24254,,,1.0,f +9057,90%,Kiribati,11.0,t +25440,,Indonesia,4.0,t +46651,90%,Gambia,1.0,t +9057,90%,Kiribati,11.0,t +29647,100%,Peru,1305.0,f +5049,100%,Sao Tome and Principe,15.0,t +9057,90%,Kiribati,11.0,t +19738,,,1.0,f +7636,,Guinea,1.0,f +29647,100%,Peru,1305.0,f +17417,,Denmark,11.0,f +15705,100%,South Georgia and the South Sandwich Islands,2.0,f +27740,100%,United Kingdom,6.0,t +27740,100%,United Kingdom,6.0,t +12468,100%,Guinea,1.0,f +23801,,Wallis and Futuna,1.0,f +25984,100%,Russian Federation,1.0,f +37976,,Marshall Islands,1.0,t +14999,20%,Slovakia (Slovak Republic),3.0,f +4497,,Tonga,1.0,f +29647,100%,Peru,1305.0,f +15528,80%,,1.0,f +25371,100%,Bouvet Island (Bouvetoya),2.0,t +39273,67%,,1.0,t +23481,100%,,1.0,t +23034,99%,Monaco,54.0,f +8439,97%,Rwanda,17.0,t +15288,100%,,1.0,t +1919,,,4.0,f +9516,99%,Pakistan,45.0,t +12564,94%,Kiribati,2.0,f +35314,96%,,3.0,f +35314,96%,,3.0,f +3040,,,1.0,t +44847,,,1.0,f +45737,,Tonga,29.0,t +36464,,,1.0,f +15709,,Russian Federation,2.0,f +27888,100%,Tonga,1.0,t +7009,100%,Isle of Man,9.0,f +12618,,Isle of Man,1.0,f +41827,,Switzerland,1.0,t +1249,,Sao Tome and Principe,1.0,t +21883,,Bahrain,11.0,t +39801,,Holy See (Vatican City State),1.0,f +1618,100%,,1.0,t +35221,100%,Turks and Caicos Islands,30.0,t +23454,100%,Uganda,2.0,t +33184,,Micronesia,1.0,f +25289,100%,,1.0,t +41958,,,1.0,f +35221,100%,Turks and Caicos Islands,30.0,t +10508,,Micronesia,1.0,f +19766,40%,Monaco,3.0,f +4228,,Niger,11.0,f +26863,,Mexico,7.0,f +29647,100%,Peru,1305.0,f +24660,100%,Papua New Guinea,2.0,t +36479,,Jersey,1.0,f +29647,100%,Peru,1305.0,f +4267,100%,Senegal,22.0,t +14589,,,1.0,f +5051,100%,El Salvador,12.0,f +483,0%,,1.0,f +19918,,,1.0,f +8466,94%,Saint Helena,7.0,f +23703,100%,Monaco,3.0,t +15769,,Indonesia,1.0,t +36089,,Uzbekistan,1.0,t +22965,,Greenland,2.0,f +36820,100%,Uzbekistan,2.0,f +48109,,,1.0,t +34629,100%,Malta,1.0,t +18225,,Marshall Islands,1.0,f +34150,100%,Gibraltar,2.0,f +10830,,,1.0,t +5280,100%,Switzerland,1.0,t +3135,100%,Ecuador,2.0,f +33739,100%,,1.0,f +23799,,Jersey,1.0,t +26181,100%,Zimbabwe,1.0,t +34475,100%,,2.0,t +44747,100%,Croatia,1.0,f +32420,100%,French Guiana,1.0,f +8537,,Bouvet Island (Bouvetoya),1.0,f +26207,100%,,2.0,t +12996,,,1.0,f +38245,,Sao Tome and Principe,2.0,f +10083,88%,,1.0,f +39983,100%,,1.0,f +2227,100%,Montserrat,5.0,t +20771,,,1.0,t +1447,,Svalbard & Jan Mayen Islands,1.0,f +28499,,Lebanon,1.0,f +23305,100%,Philippines,11.0,f +7259,100%,Guinea,1.0,t +23047,100%,Uganda,1.0,t +12362,89%,Uganda,1.0,f +4077,,Niue,1.0,t +49818,100%,Denmark,1.0,f +42256,100%,,8.0,f +36072,,Guinea,1.0,f +40354,100%,Niue,2.0,t +4779,60%,Uzbekistan,1.0,t +34523,80%,,1.0,f +19154,100%,France,2.0,t +21679,100%,China,2.0,t +34992,,Croatia,1.0,f +46026,100%,,2.0,f +47537,,Gibraltar,1.0,t +46607,100%,Brazil,4.0,f +2217,,,9.0,f +49145,100%,,3.0,t +47646,,Estonia,1.0,t +26150,,,2.0,t +7072,,Guinea,1.0,f +18597,100%,Micronesia,2.0,f +48189,100%,Estonia,1.0,f +758,100%,Russian Federation,1.0,f +5804,,Kiribati,1.0,f +8212,100%,Russian Federation,2.0,t +40885,,,1.0,f +28339,,Rwanda,1.0,f +16742,83%,Monaco,1.0,f +17937,100%,Sao Tome and Principe,2.0,f +49627,100%,Croatia,1.0,f +10723,100%,,1.0,f +49074,100%,Korea,2.0,t +954,,Nicaragua,1.0,f +24075,100%,Cape Verde,1.0,t +8379,,,1.0,t +15951,,,1.0,f +9491,,Malawi,1.0,t +40771,60%,Slovakia (Slovak Republic),2.0,t +4133,90%,Maldives,6.0,f +19463,100%,Holy See (Vatican City State),1.0,t +42789,,,1.0,f +7725,71%,,1.0,f +46464,100%,,1.0,t +17175,100%,Malta,8.0,t +268,100%,,1.0,f +3421,100%,,4.0,f +48925,,Gibraltar,1.0,t +15250,90%,Gibraltar,2.0,t +18269,86%,Fiji,12.0,f +11509,100%,Uganda,6.0,f +6453,0%,Malta,1.0,t +4416,,Brazil,1.0,f +37667,100%,Kenya,1.0,f +43290,,,2.0,f +30851,100%,,1.0,f +33787,71%,,1.0,f +2482,100%,Sao Tome and Principe,1.0,f +19131,,Djibouti,1.0,f +47592,100%,,2.0,f +35283,,,1.0,t +31029,100%,Guinea,1.0,t +33929,,Zimbabwe,2.0,f +28886,,Isle of Man,1.0,t +22799,,,1.0,t +8453,100%,Rwanda,6.0,t +21484,,,1.0,f +44756,,,1.0,f +10861,,,2.0,f +28610,,,1.0,t +4525,98%,El Salvador,9.0,t +26863,,Mexico,7.0,f +20334,99%,Niger,171.0,t +18000,100%,Slovakia (Slovak Republic),7.0,t +38652,100%,Uzbekistan,9.0,f +40672,100%,,1.0,f +5835,,China,1.0,t +24026,98%,Cape Verde,69.0,t +7454,88%,Tonga,1.0,f +39764,,Venezuela,2.0,t +36551,100%,Niue,1.0,f +14947,,,1.0,t +19866,,Maldives,2.0,f +29647,100%,Peru,1305.0,f +21730,,Philippines,5.0,t +15250,90%,Gibraltar,2.0,t +46393,,Guernsey,1.0,f +31354,100%,Niger,8.0,t +30776,100%,Ecuador,1.0,f +34816,100%,,1.0,t +39588,,Micronesia,1.0,t +8621,,,1.0,f +20598,,Greenland,2.0,f +28828,100%,Isle of Man,198.0,t +37646,100%,Estonia,60.0,f +39883,,,1.0,f +48409,,Estonia,60.0,t +35206,100%,Marshall Islands,1.0,f +26283,100%,Zimbabwe,6.0,t +21966,86%,Croatia,1.0,t +1511,,,1.0,f +2964,,,1.0,f +18578,,Sao Tome and Principe,1.0,t +982,99%,Marshall Islands,32.0,f +4884,100%,Marshall Islands,3.0,f +38784,100%,Pakistan,3.0,f +35815,97%,Slovakia (Slovak Republic),8.0,t +38848,90%,,1.0,t +30214,100%,,10.0,t +29956,,Papua New Guinea,1.0,t +30214,100%,,10.0,t +17552,,,1.0,f +23305,100%,Philippines,11.0,f +45539,,Marshall Islands,2.0,f +982,99%,Marshall Islands,32.0,f +982,99%,Marshall Islands,32.0,f +17701,100%,,4.0,t +982,99%,Marshall Islands,32.0,f +5638,,Ecuador,1.0,t +32453,100%,,3.0,t +18545,94%,Isle of Man,8.0,t +28110,100%,,1.0,f +39622,90%,Venezuela,2.0,f +15363,88%,Tunisia,1.0,f +4749,,Brazil,1.0,f +47129,,,1.0,t +39729,,Russian Federation,1.0,f +1089,100%,Indonesia,1.0,f +18545,94%,Isle of Man,8.0,t +12873,,Monaco,1.0,f +23735,,Isle of Man,2.0,t +16523,,Papua New Guinea,1.0,t +43290,,,2.0,f +8264,100%,Solomon Islands,3.0,f +18165,,Guinea,1.0,f +10831,100%,Turkmenistan,3.0,f +36971,100%,France,1.0,f +3493,,China,2.0,t +35014,,United Kingdom,1.0,f +43017,0%,Gibraltar,2.0,t +17891,100%,Nicaragua,5.0,t +23462,,,1.0,f +22093,100%,,1.0,f +39870,,Slovakia (Slovak Republic),21.0,t +7403,100%,,1.0,f +19181,100%,Niue,1.0,f +39497,100%,,1.0,t +31678,,,1.0,f +46475,,Micronesia,1.0,t +13509,97%,Puerto Rico,6.0,f +14881,100%,Brazil,2.0,t +43004,100%,Croatia,1.0,t +27452,100%,Puerto Rico,3.0,t +40393,100%,Guinea,2.0,f +36874,80%,,2.0,f +44871,75%,Indonesia,1.0,f +19597,100%,Russian Federation,1.0,f +25054,,Anguilla,1.0,t +45371,100%,Rwanda,2.0,f +46490,88%,Croatia,1.0,f +34979,100%,Anguilla,4.0,f +14279,,Lebanon,1.0,t +30916,100%,Tunisia,3.0,f +46345,,,1.0,t +6772,100%,Maldives,1.0,t +18335,100%,,1.0,t +27108,,France,1.0,f +5486,100%,Svalbard & Jan Mayen Islands,12.0,f +42764,100%,Guernsey,13.0,t +13438,100%,,2.0,f +3391,100%,Iran,58.0,t +12320,100%,Bosnia and Herzegovina,20.0,f +12276,,,1.0,f +15741,100%,Cuba,14.0,f +39952,100%,Tonga,21.0,f +8431,,Mexico,1.0,t +3391,100%,Iran,58.0,t +32862,,,1.0,t +31045,,Isle of Man,1.0,f +36047,100%,,6.0,t +46099,98%,Uzbekistan,28.0,f +40033,100%,Slovenia,1.0,t +46099,98%,Uzbekistan,28.0,f +6023,,Chad,1.0,t +34761,,,1.0,f +40812,,Sao Tome and Principe,1.0,f +9534,88%,Bouvet Island (Bouvetoya),1.0,t +44577,100%,Slovakia (Slovak Republic),2.0,f +8958,,Togo,1.0,f +11566,,Fiji,1.0,t +3429,90%,,2.0,f +15215,,,1.0,f +3301,,,1.0,t +46170,,Jersey,1.0,t +37183,50%,,1.0,f +92,,,1.0,f +15741,100%,Cuba,14.0,f +25369,100%,Chad,1.0,t +35130,100%,Rwanda,13.0,t +15741,100%,Cuba,14.0,f +15741,100%,Cuba,14.0,f +28833,100%,Venezuela,5.0,f +28833,100%,Venezuela,5.0,f +33129,90%,Mexico,1.0,t +42588,,El Salvador,1.0,t +11509,100%,Uganda,6.0,f +46216,100%,French Guiana,4.0,f +20329,100%,Reunion,21.0,f +2416,100%,Guinea,5.0,f +8255,,Russian Federation,1.0,t +502,,,2.0,f +28814,,Afghanistan,2.0,f +25987,,Venezuela,7.0,t +32275,,Uganda,1.0,t +10551,100%,France,2.0,t +41941,,,1.0,t +5330,90%,Guinea,2.0,t +24026,98%,Cape Verde,69.0,t +21654,96%,Solomon Islands,5.0,t +42485,100%,Greenland,3.0,f +36093,100%,Denmark,18.0,t +17333,,Chile,1.0,f +25914,100%,France,2.0,t +36093,100%,Denmark,18.0,t +13676,,Niue,1.0,t +36093,100%,Denmark,18.0,t +45519,100%,Puerto Rico,2.0,f +36093,100%,Denmark,18.0,t +45300,,,1.0,t +27492,100%,Nicaragua,2.0,t +30243,100%,Mauritania,2.0,t +2266,100%,Tonga,10.0,t +41878,91%,Maldives,47.0,f +27492,100%,Nicaragua,2.0,t +49302,,Sao Tome and Principe,1.0,f +23546,,,1.0,t +33239,,,1.0,f +35025,100%,Pakistan,4.0,f +40094,,Maldives,2.0,t +10551,100%,France,2.0,t +21492,100%,,1.0,f +44718,,,1.0,f +27289,99%,Reunion,12.0,t +43541,100%,Malta,2.0,t +18078,100%,Montserrat,13.0,t +2735,100%,Netherlands,6.0,f +46687,100%,,1.0,f +8466,94%,Saint Helena,7.0,f +15395,100%,Indonesia,1.0,f +40711,100%,Micronesia,1.0,f +46172,100%,Niue,1.0,t +9849,100%,Isle of Man,2.0,f +39917,,Mexico,1.0,f +19002,100%,Malawi,1.0,f +41924,100%,Russian Federation,2.0,t +18588,,Anguilla,1.0,t +20598,,Greenland,2.0,f +26417,100%,Reunion,1.0,t +42441,100%,Jersey,3.0,f +23461,,Slovenia,1.0,f +8764,,Maldives,4.0,t +35130,100%,Rwanda,13.0,t +6712,100%,Portugal,1.0,f +15636,,Uzbekistan,2.0,f +29545,100%,,1.0,t +18135,100%,,1.0,f +18077,100%,Sao Tome and Principe,139.0,f +29373,,Tanzania,1.0,t +49375,100%,Peru,1.0,f +47545,97%,,2.0,t +28566,78%,Slovakia (Slovak Republic),79.0,t +27133,100%,,4.0,f +22746,,Nicaragua,1.0,t +19101,100%,Isle of Man,1.0,t +29647,100%,Peru,1305.0,f +26893,100%,,1.0,t +12262,100%,Niue,2.0,f +37421,90%,Isle of Man,2.0,t +37096,100%,Marshall Islands,1.0,t +9830,100%,Barbados,3.0,t +29733,,Russian Federation,15.0,f +2936,50%,Mauritania,1.0,t +29733,,Russian Federation,15.0,f +40284,100%,Gambia,1.0,f +40421,96%,Jersey,29.0,t +15846,,France,1.0,f +14036,100%,Micronesia,4.0,f +23124,100%,,1.0,f +28828,100%,Isle of Man,198.0,t +26572,,,1.0,f +20334,99%,Niger,171.0,t +20334,99%,Niger,171.0,t +33454,100%,Tonga,7.0,f +26283,100%,Zimbabwe,6.0,t +30850,100%,Finland,5.0,t +26283,100%,Zimbabwe,6.0,t +9610,100%,,1.0,f +26283,100%,Zimbabwe,6.0,t +30850,100%,Finland,5.0,t +5992,,,1.0,f +49154,100%,Indonesia,3.0,t +34784,60%,Faroe Islands,19.0,t +25675,,,1.0,f +39566,,Sao Tome and Principe,4.0,t +31716,100%,Venezuela,4.0,f +9923,100%,Gambia,2.0,f +26484,100%,,1.0,f +7024,,Nicaragua,2.0,f +23331,75%,Isle of Man,1.0,f +36388,,Tonga,1.0,t +47475,,Chile,1.0,f +45923,100%,,1.0,f +17788,0%,Australia,2.0,t +3356,,Tunisia,1.0,t +10883,100%,Niger,8.0,t +10897,0%,,1.0,t +17698,,,1.0,t +20181,100%,Turks and Caicos Islands,1.0,t +31471,,Niger,1.0,f +5330,90%,Guinea,2.0,t +35022,,Turkmenistan,1.0,f +45840,100%,Mauritania,2.0,t +21843,100%,,1.0,f +9533,,Senegal,16.0,t +39555,100%,Marshall Islands,13.0,t +48166,,,1.0,t +41448,,,1.0,t +44891,,Bouvet Island (Bouvetoya),1.0,f +21753,100%,,1.0,t +15279,,Afghanistan,22.0,t +21648,100%,,1.0,f +38144,,Russian Federation,1.0,f +39984,,Philippines,1.0,t +13509,97%,Puerto Rico,6.0,f +40891,,Uganda,1.0,f +24863,,,1.0,f +33747,,Mauritania,1.0,f +33929,,Zimbabwe,2.0,f +8692,,,1.0,f +5046,,,1.0,t +12008,100%,,1.0,f +42369,,Isle of Man,1.0,t +46458,29%,Rwanda,1.0,f +40532,100%,,1.0,t +34071,,,1.0,t +46494,,Cocos (Keeling) Islands,1.0,f +9377,100%,Turks and Caicos Islands,1.0,f +5446,,Zimbabwe,2.0,f +17305,100%,,1.0,t +28606,0%,Monaco,4.0,f +1086,100%,Zimbabwe,1.0,f +49175,,Zimbabwe,1.0,f +13466,,Anguilla,1.0,f +4774,100%,Niue,4.0,t +35165,100%,,1.0,f +28606,0%,Monaco,4.0,f +35585,,Bouvet Island (Bouvetoya),2.0,f +12271,100%,Brazil,3.0,t +18272,90%,Vietnam,3.0,f +26472,50%,Indonesia,2.0,t +25997,,Sao Tome and Principe,1.0,f +6655,100%,Niue,1.0,f +23978,100%,,1.0,t +28606,0%,Monaco,4.0,f +10590,,Malta,1.0,t +28606,0%,Monaco,4.0,f +15397,,Turkmenistan,1.0,t +24933,,,1.0,t +48236,,Turkmenistan,3.0,t +13449,,Cocos (Keeling) Islands,2.0,f +13726,,,1.0,t +17106,100%,,1.0,f +5101,67%,Nauru,1.0,f +28828,100%,Isle of Man,198.0,t +8758,100%,Russian Federation,1.0,f +42381,,,1.0,t +7415,100%,Uzbekistan,8.0,f +12794,100%,Sao Tome and Principe,1.0,f +5161,,Papua New Guinea,2.0,t +25440,,Indonesia,4.0,t +30412,0%,,1.0,f +22395,100%,China,2.0,f +31899,100%,Bouvet Island (Bouvetoya),6.0,f +24527,,Indonesia,1.0,f +43568,100%,Sao Tome and Principe,5.0,t +13755,,Mauritania,2.0,t +1461,100%,Brazil,3.0,f +31864,,,1.0,f +2863,100%,,1.0,f +20278,0%,Faroe Islands,1.0,f +40775,100%,,2.0,f +18330,,Marshall Islands,3.0,f +14514,,China,80.0,t +5049,100%,Sao Tome and Principe,15.0,t +37425,,United Kingdom,1.0,f +28828,100%,Isle of Man,198.0,t +11509,100%,Uganda,6.0,f +30126,100%,Togo,5.0,t +39769,100%,Isle of Man,3.0,f +43,100%,Niue,1.0,f +8225,95%,Barbados,31.0,f +18365,100%,,1.0,f +9444,67%,Guinea,2.0,t +15103,,,1.0,t +26066,100%,,2.0,t +40680,75%,Lebanon,1.0,f +32033,100%,,1.0,t +20864,,Pakistan,1.0,t +10380,100%,,1.0,f +46012,90%,Estonia,1.0,f +8780,100%,United Kingdom,1.0,t +42543,,,1.0,f +12542,98%,Mauritania,19.0,t +12542,98%,Mauritania,19.0,t +11240,,Svalbard & Jan Mayen Islands,1.0,t +18222,100%,Barbados,2.0,f +525,100%,,1.0,f +15959,100%,Russian Federation,2.0,t +21185,,Kiribati,1.0,t +47408,88%,,1.0,f +19310,100%,Indonesia,1.0,t +15578,,Zimbabwe,1.0,t +15830,100%,,1.0,t +47545,97%,,2.0,t +42062,,Lebanon,1.0,t +16875,100%,Svalbard & Jan Mayen Islands,3.0,t +47391,,,2.0,t +13129,,Tonga,3.0,f +13797,100%,Mauritania,1.0,f +8063,,Guinea,1.0,t +24026,98%,Cape Verde,69.0,t +42587,100%,Vanuatu,3.0,f +13593,,Finland,1.0,f +16875,100%,Svalbard & Jan Mayen Islands,3.0,t +39211,100%,,2.0,f +38995,,Mexico,2.0,t +4914,0%,,5.0,f +29647,100%,Peru,1305.0,f +4787,100%,Vanuatu,1.0,f +32354,,Isle of Man,1.0,f +22721,100%,Ecuador,109.0,f +14960,100%,Vietnam,2.0,f +10898,100%,Barbados,4.0,t +14351,100%,,1.0,f +26130,94%,Sao Tome and Principe,4.0,t +22721,100%,Ecuador,109.0,f +22721,100%,Ecuador,109.0,f +19217,98%,Marshall Islands,46.0,f +41061,,Maldives,1.0,t +42438,100%,,1.0,t +25071,100%,Somalia,1.0,f +26130,94%,Sao Tome and Principe,4.0,t +26130,94%,Sao Tome and Principe,4.0,t +29879,,French Guiana,1.0,f +22721,100%,Ecuador,109.0,f +24775,97%,Montserrat,44.0,f +42587,100%,Vanuatu,3.0,f +28178,100%,Faroe Islands,1.0,t +16846,,Lebanon,1.0,f +43780,100%,,1.0,f +2788,,,1.0,t +21464,100%,Mauritania,1.0,f +6074,100%,,2.0,f +39518,,Isle of Man,1.0,t +29209,,Vietnam,1.0,f +44615,100%,French Polynesia,2.0,t +45987,100%,Jersey,6.0,t +30532,67%,Russian Federation,1.0,f +7168,100%,Montserrat,1.0,f +32556,90%,Estonia,11.0,t +24530,100%,,1.0,t +27773,100%,Togo,1.0,f +7085,100%,Guinea,1.0,f +26625,,Estonia,1.0,t +34789,,Faroe Islands,1.0,f +3708,,Bosnia and Herzegovina,1.0,t +31607,,Montserrat,1.0,f +46781,100%,Tonga,2.0,t +11490,,Rwanda,1.0,f +47693,,Bosnia and Herzegovina,2.0,t +41656,100%,Gambia,4.0,t +14342,,Papua New Guinea,2.0,t +8513,,Tonga,1.0,f +12320,100%,Bosnia and Herzegovina,20.0,f +25917,,,1.0,t +43286,,Fiji,8.0,t +38941,,,3.0,t +6232,,Guinea,15.0,t +2959,,Niger,1.0,f +22244,100%,Finland,6.0,t +46099,98%,Uzbekistan,28.0,f +17510,,Philippines,22.0,f +17510,,Philippines,22.0,f +29647,100%,Peru,1305.0,f +17510,,Philippines,22.0,f +22244,100%,Finland,6.0,t +39117,,Moldova,1.0,t +27109,,Uganda,2.0,t +35921,,,1.0,t +31361,100%,,1.0,f +26307,,,1.0,f +8976,97%,Guinea,3.0,f +28112,,,1.0,f +10641,,,1.0,t +36643,98%,Maldives,17.0,f +36643,98%,Maldives,17.0,f +22134,75%,,1.0,f +2655,100%,Marshall Islands,2.0,t +24697,100%,Congo,1.0,t +47329,,,1.0,f +27990,50%,,1.0,f +28828,100%,Isle of Man,198.0,t +12107,100%,Fiji,2.0,t +47251,90%,,2.0,t +24026,98%,Cape Verde,69.0,t +29647,100%,Peru,1305.0,f +23022,67%,Niue,10.0,t +34399,,,1.0,t +44140,,Uzbekistan,1.0,t +5865,100%,Maldives,1.0,t +21776,,Monaco,1.0,f +19192,,French Polynesia,1.0,f +29647,100%,Peru,1305.0,f +12446,100%,,2.0,t +29647,100%,Peru,1305.0,f +34571,,,1.0,t +41609,100%,Niue,1.0,t +18,,Djibouti,1.0,t +20549,100%,Monaco,3.0,t +33469,,,1.0,f +10711,93%,Uganda,108.0,t +17378,,Gambia,1.0,t +28241,97%,Maldives,10.0,f +26404,100%,Kiribati,2.0,f +39211,100%,,2.0,f +17510,,Philippines,22.0,f +17510,,Philippines,22.0,f +17510,,Philippines,22.0,f +26669,100%,Uzbekistan,1.0,f +17510,,Philippines,22.0,f +12088,100%,Kiribati,8.0,f +17510,,Philippines,22.0,f +17510,,Philippines,22.0,f +36000,50%,Uganda,1.0,t +33284,,Gambia,3.0,f +33284,,Gambia,3.0,f +44098,93%,,3.0,t +49831,,Papua New Guinea,1.0,f +14923,100%,Canada,1.0,f +1341,,Sao Tome and Principe,1.0,t +42772,,Guinea,3.0,f +42772,,Guinea,3.0,f +46566,,,1.0,f +30127,,Lithuania,1.0,f +29641,100%,,1.0,t +35065,,French Guiana,1.0,t +7690,75%,Vietnam,1.0,t +11538,100%,Papua New Guinea,5.0,t +7826,50%,Kiribati,1.0,f +5949,,,1.0,f +20606,100%,Congo,6.0,t +24775,97%,Montserrat,44.0,f +5049,100%,Sao Tome and Principe,15.0,t +28177,100%,Kenya,1.0,f +26998,,Malta,1.0,f +17510,,Philippines,22.0,f +17510,,Philippines,22.0,f +17510,,Philippines,22.0,f +7893,100%,Isle of Man,1.0,t +17510,,Philippines,22.0,f +18712,95%,Turks and Caicos Islands,11.0,t +47594,100%,Kenya,17.0,t +4494,94%,Barbados,3.0,t +39540,,French Guiana,1.0,f +49232,100%,,1.0,f +31832,,Cocos (Keeling) Islands,3.0,f +12938,92%,Reunion,12.0,f +4511,100%,United Kingdom,1.0,t +12938,92%,Reunion,12.0,f +12938,92%,Reunion,12.0,f +12938,92%,Reunion,12.0,f +9057,90%,Kiribati,11.0,t +38279,93%,Mauritania,8.0,t +17510,,Philippines,22.0,f +17510,,Philippines,22.0,f +35568,60%,,1.0,t +34102,100%,Nicaragua,6.0,f +17510,,Philippines,22.0,f +17510,,Philippines,22.0,f +17510,,Philippines,22.0,f +22915,,Faroe Islands,1.0,t +5727,,Micronesia,1.0,f +26863,,Mexico,7.0,f +33365,,Russian Federation,2.0,f +47387,,,1.0,f +9850,100%,El Salvador,1.0,t +30609,100%,Turks and Caicos Islands,3.0,f +9057,90%,Kiribati,11.0,t +29450,,,2.0,t +22331,99%,Rwanda,50.0,t +20334,99%,Niger,171.0,t +46329,,,1.0,f +42697,,Maldives,1.0,t +17550,100%,Mexico,2.0,f +21491,80%,,1.0,f +35130,100%,Rwanda,13.0,t +18698,100%,,1.0,f +8199,,,1.0,t +4432,100%,Wallis and Futuna,18.0,f +44334,100%,Lebanon,1.0,t +5555,100%,Denmark,11.0,t +2274,,,1.0,f +10394,,Grenada,1.0,f +3353,,,1.0,t +38838,,,1.0,t +9609,,,1.0,f +9583,,Zimbabwe,1.0,f +36907,100%,Russian Federation,1.0,t +41124,100%,Zimbabwe,3.0,t +36643,98%,Maldives,17.0,f +8759,86%,Slovenia,1.0,t +41037,100%,El Salvador,2.0,t +37357,100%,Vanuatu,1.0,f +1315,100%,Jersey,1.0,t +10497,,,1.0,t +23511,,Cocos (Keeling) Islands,1.0,t +15670,100%,Russian Federation,1.0,t +14043,100%,Chad,1.0,f +49541,100%,French Guiana,6.0,f +11753,100%,Gambia,11.0,t +31133,90%,Montserrat,2.0,t +10900,100%,,1.0,t +17884,,Marshall Islands,1.0,t +8238,91%,Barbados,15.0,t +6355,100%,Kiribati,2.0,f +49964,,,1.0,t +33268,,Turkmenistan,1.0,f +39157,67%,,1.0,t +19795,100%,Estonia,8.0,f +11634,,Rwanda,2.0,f +25114,100%,Nicaragua,2.0,f +25114,100%,Nicaragua,2.0,f +27147,0%,,1.0,f +24873,,,1.0,f +38563,92%,Russian Federation,2.0,f +142,100%,,3.0,f +45282,100%,,1.0,t +27043,,Ghana,2.0,f +42648,,Kenya,1.0,f +18383,,Wallis and Futuna,1.0,t +8181,100%,,2.0,t +21369,,,1.0,t +7515,,Micronesia,2.0,f +40325,93%,Costa Rica,4.0,f +43257,100%,Gibraltar,1.0,t +45709,100%,,1.0,f +14792,,Mexico,1.0,f +13133,67%,Denmark,1.0,t +27281,,,1.0,f +12677,,,1.0,f +15498,,Malta,2.0,f +25918,100%,Tonga,1.0,f +2992,100%,Tonga,1.0,f +31047,100%,Turkmenistan,1.0,f +41066,,,1.0,f +48971,100%,Guernsey,1.0,t +20885,,Turks and Caicos Islands,1.0,t +17745,,Zimbabwe,1.0,f +37920,70%,,17.0,t +15479,100%,Kenya,3.0,t +18078,100%,Montserrat,13.0,t +43237,40%,Montserrat,24.0,f +27039,,,1.0,t +18012,100%,,2.0,t +49184,,,1.0,t +49741,100%,Chad,1.0,t +9869,,Rwanda,1.0,t +33198,100%,Mauritania,12.0,f +27153,100%,Russian Federation,2.0,f +30045,100%,El Salvador,5.0,f +13858,100%,Russian Federation,2.0,t +29647,100%,Peru,1305.0,f +34641,,Svalbard & Jan Mayen Islands,1.0,f +40815,,Nauru,1.0,f +14227,80%,Svalbard & Jan Mayen Islands,1.0,t +7461,100%,,1.0,t +24893,100%,Rwanda,9.0,f +49768,80%,Montserrat,7.0,t +40443,,Gambia,1.0,t +17787,,Kenya,2.0,t +5896,100%,China,3.0,t +32959,100%,Togo,2.0,t +21692,100%,Ecuador,3.0,t +21744,,,1.0,f +17447,100%,El Salvador,4.0,t +42508,,,1.0,t +27731,,Afghanistan,1.0,t +20334,99%,Niger,171.0,t +44124,67%,Niger,1.0,t +20989,100%,Marshall Islands,8.0,f +45000,100%,Montserrat,10.0,t +2416,100%,Guinea,5.0,f +17510,,Philippines,22.0,f +17510,,Philippines,22.0,f +17510,,Philippines,22.0,f +17510,,Philippines,22.0,f +19475,100%,Mauritania,2.0,t +21626,,,1.0,f +46023,,,1.0,f +1917,,Croatia,1.0,t +6636,,Zimbabwe,1.0,f +32527,100%,Tonga,7.0,f +49268,,Chad,1.0,t +2429,100%,Tonga,6.0,f +31367,100%,Uzbekistan,1.0,t +31024,,,1.0,t +17046,,,1.0,t +5519,100%,Tonga,1.0,f +3174,100%,,1.0,t +23787,,Christmas Island,1.0,f +15636,,Uzbekistan,2.0,f +43583,,Zimbabwe,1.0,f +15646,,Tonga,1.0,f +20814,,,1.0,f +9531,,Sao Tome and Principe,1.0,t +16401,100%,Guinea,2.0,t +35615,100%,,1.0,t +16489,100%,Russian Federation,42.0,t +47025,90%,Guinea,2.0,t +24874,100%,,1.0,t +13010,,Guernsey,1.0,t +488,100%,Maldives,18.0,f +28094,,,1.0,t +27851,,United Kingdom,6.0,t +4988,,Croatia,1.0,f +41371,,Marshall Islands,1.0,f +2545,100%,Chad,2.0,t +21071,100%,Marshall Islands,2.0,t +17600,,Croatia,1.0,f +43019,,,1.0,f +30214,100%,,10.0,t +31772,,Bouvet Island (Bouvetoya),2.0,t +28854,,,1.0,f +47594,100%,Kenya,17.0,t +24026,98%,Cape Verde,69.0,t +11643,,,1.0,t +23876,,Malta,3.0,t +48551,,Philippines,1.0,f +41978,40%,,1.0,t +40291,100%,,1.0,t +4129,100%,Niue,3.0,t +15004,100%,Uzbekistan,88.0,f +6360,,Faroe Islands,1.0,t +29647,100%,Peru,1305.0,f +9908,100%,,1.0,t +42289,0%,,1.0,f +8764,,Maldives,4.0,t +419,,Faroe Islands,1.0,t +14103,100%,Uzbekistan,1.0,f +37830,100%,,1.0,f +45143,100%,Brazil,2.0,t +41924,100%,Russian Federation,2.0,t +6739,100%,Gibraltar,1.0,t +2655,100%,Marshall Islands,2.0,t +46379,100%,,2.0,f +14881,100%,Brazil,2.0,t +18456,,Guinea,1.0,f +38592,90%,Senegal,2.0,f +28360,,Croatia,1.0,t +11753,100%,Gambia,11.0,t +44265,,,1.0,t +16913,100%,,2.0,t +25531,,Zimbabwe,1.0,f +37799,100%,Netherlands,2.0,f +42390,100%,Wallis and Futuna,96.0,t +40421,96%,Jersey,29.0,t +38338,,United Kingdom,1.0,f +10142,100%,Senegal,1.0,f +35130,100%,Rwanda,13.0,t +9057,90%,Kiribati,11.0,t +9057,90%,Kiribati,11.0,t +7122,,,1.0,t +13225,,Jersey,1.0,f +1314,,Zimbabwe,1.0,t +41966,100%,Micronesia,1.0,t +43344,60%,Maldives,5.0,f +19768,100%,Russian Federation,1.0,f +7247,100%,,1.0,t +23330,100%,Guinea,1.0,t +24189,,Tonga,1.0,f +12242,,Chile,1.0,f +37799,100%,Netherlands,2.0,f +15189,79%,China,21.0,f +18138,100%,Anguilla,1.0,f +18077,100%,Sao Tome and Principe,139.0,f +18077,100%,Sao Tome and Principe,139.0,f +27717,,,1.0,t +40899,100%,,1.0,t +19094,100%,Costa Rica,1.0,t +11815,100%,Russian Federation,2.0,t +39054,,Congo,1.0,t +3127,100%,Rwanda,36.0,f +42491,,Turkmenistan,1.0,f +3127,100%,Rwanda,36.0,f +28828,100%,Isle of Man,198.0,t +26580,100%,Uzbekistan,2.0,t +14678,92%,Russian Federation,3.0,f +35466,100%,,2.0,f +8710,,,1.0,t +48736,,Mauritania,1.0,f +13555,100%,Kiribati,2.0,f +18943,100%,Mauritania,2.0,f +31928,,,1.0,f +47147,,Anguilla,1.0,f +22214,100%,El Salvador,1.0,t +30850,100%,Finland,5.0,t +9939,100%,Philippines,24.0,f +10955,,,1.0,f +13048,100%,Uzbekistan,2.0,f +26336,100%,,1.0,f +32936,,,1.0,f +27581,,,1.0,f +47323,50%,Turks and Caicos Islands,7.0,f +9939,100%,Philippines,24.0,f +44348,100%,,3.0,t +10800,100%,China,2.0,t +24026,98%,Cape Verde,69.0,t +43880,60%,,1.0,t +37633,100%,,1.0,f +25173,,Russian Federation,1.0,f +33213,,Isle of Man,1.0,t +41878,91%,Maldives,47.0,f +9939,100%,Philippines,24.0,f +36308,,Barbados,1.0,f +9939,100%,Philippines,24.0,f +24026,98%,Cape Verde,69.0,t +8181,100%,,2.0,t +36194,,Somalia,1.0,f +44832,,Chad,1.0,f +38787,,Faroe Islands,10.0,f +47404,,Micronesia,1.0,f +29647,100%,Peru,1305.0,f +25716,,Ghana,2.0,f +42792,100%,Faroe Islands,2.0,t +4646,100%,Maldives,8.0,f +19237,,,1.0,f +23761,,Somalia,5.0,t +29647,100%,Peru,1305.0,f +15867,100%,United Kingdom,1.0,f +29647,100%,Peru,1305.0,f +27972,94%,Brazil,27.0,f +35219,97%,Tonga,4.0,f +36424,63%,Slovakia (Slovak Republic),12.0,f +43152,100%,Nicaragua,82.0,t +24769,100%,Isle of Man,1.0,t +30899,,Reunion,8.0,f +39751,100%,Niue,1.0,f +29647,100%,Peru,1305.0,f +30899,,Reunion,8.0,f +25745,,Sao Tome and Principe,1.0,t +30214,100%,,10.0,t +30314,100%,,1.0,f +4481,100%,,1.0,f +22463,80%,Montserrat,2.0,f +26541,100%,Nicaragua,12.0,f +9066,90%,Estonia,1.0,f +560,,,1.0,t +35130,100%,Rwanda,13.0,t +7025,100%,Jersey,1.0,f +36830,,Ghana,1.0,f +11685,,,1.0,t +47180,,,1.0,f +15482,,,1.0,t +11436,100%,,1.0,t +32314,100%,Jersey,7.0,t +7714,100%,,2.0,t +3846,100%,French Guiana,1.0,t +32314,100%,Jersey,7.0,t +17177,,Chad,2.0,f +32314,100%,Jersey,7.0,t +29480,100%,French Polynesia,6.0,f +48784,,,2.0,t +27339,100%,Cook Islands,3.0,t +28640,100%,Uzbekistan,3.0,t +9518,100%,,3.0,t +12576,,,1.0,t +11753,100%,Gambia,11.0,t +17539,100%,,1.0,f +11753,100%,Gambia,11.0,t +12177,100%,France,6.0,t +11753,100%,Gambia,11.0,t +4985,,,1.0,f +47275,,Nicaragua,1.0,f +18203,86%,,1.0,f +11012,100%,Puerto Rico,3.0,f +31444,100%,Reunion,25.0,f +19867,100%,,1.0,t +5751,,Brazil,1.0,f +48236,,Turkmenistan,3.0,t +35523,,Guinea,1.0,t +8096,100%,Vietnam,2.0,f +36151,,Zimbabwe,1.0,f +31444,100%,Reunion,25.0,f +9802,,Indonesia,38.0,t +14678,92%,Russian Federation,3.0,f +31444,100%,Reunion,25.0,f +14678,92%,Russian Federation,3.0,f +31444,100%,Reunion,25.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +33823,78%,France,17.0,t +18310,,,1.0,f +43152,100%,Nicaragua,82.0,t +20156,,,2.0,t +20156,,,2.0,t +16129,,Ecuador,2.0,t +48050,100%,,2.0,t +29647,100%,Peru,1305.0,f +33011,,Micronesia,1.0,t +12607,,Niue,1.0,f +39230,,Nauru,1.0,f +21170,83%,French Guiana,1.0,f +2485,60%,,2.0,t +6694,,Afghanistan,1.0,f +3484,,,1.0,t +30214,100%,,10.0,t +5049,100%,Sao Tome and Principe,15.0,t +35724,100%,Gambia,1.0,f +31912,80%,,1.0,t +12103,,,1.0,f +8680,,,1.0,f +2527,,,2.0,f +2527,,,2.0,f +4228,,Niger,11.0,f +6968,,Bouvet Island (Bouvetoya),2.0,f +10741,100%,Micronesia,2.0,f +5893,100%,Guinea,4.0,f +31738,,Croatia,1.0,f +25571,100%,Kiribati,3.0,t +48771,,French Guiana,1.0,t +23694,,Barbados,1.0,f +13965,,,1.0,f +13134,,,1.0,t +31217,60%,Bosnia and Herzegovina,1.0,f +20967,100%,Congo,3.0,t +14408,,Niue,1.0,t +42507,,Turks and Caicos Islands,1.0,f +16219,100%,Estonia,1.0,f +30661,100%,,2.0,f +49097,67%,Niger,5.0,t +30661,100%,,2.0,f +37999,100%,Senegal,20.0,t +37999,100%,Senegal,20.0,t +34603,,Gambia,1.0,f +40056,100%,Kiribati,1.0,f +37999,100%,Senegal,20.0,t +11628,,Kiribati,1.0,f +8331,70%,Uganda,2.0,f +47584,100%,,1.0,t +34035,,,1.0,t +14901,,,1.0,f +28372,100%,Indonesia,12.0,f +10492,,,1.0,f +17394,0%,Nicaragua,49.0,f +1778,,,1.0,f +33288,,,1.0,f +36034,57%,Mauritania,1.0,t +24719,,Niue,1.0,t +20662,0%,Wallis and Futuna,9.0,t +10883,100%,Niger,8.0,t +44740,,Bouvet Island (Bouvetoya),2.0,t +19401,100%,France,5.0,f +26958,,Afghanistan,1.0,f +12252,50%,,1.0,f +20662,0%,Wallis and Futuna,9.0,t +2644,100%,Zimbabwe,11.0,t +18630,,Costa Rica,1.0,f +16075,,Philippines,1.0,f +41989,100%,El Salvador,1.0,t +6299,100%,,1.0,t +30753,100%,Anguilla,2.0,t +12865,,Micronesia,1.0,f +30652,100%,Sao Tome and Principe,1.0,t +15688,,Papua New Guinea,1.0,f +3481,,Guernsey,1.0,t +44387,100%,Malta,1.0,f +35208,,Indonesia,1.0,f +4498,100%,,1.0,t +2387,100%,,1.0,t +26907,,,1.0,f +16804,,Vietnam,1.0,t +24889,100%,,1.0,t +16605,,Micronesia,1.0,f +15084,100%,Zimbabwe,1.0,t +2997,100%,,1.0,t +35692,88%,Philippines,1.0,f +22047,100%,,1.0,t +738,,Togo,1.0,t +18650,100%,Chad,1.0,t +20998,,Russian Federation,1.0,t +49804,100%,United Kingdom,1.0,t +37202,,Lebanon,1.0,t +26701,100%,,2.0,f +13270,100%,Anguilla,3.0,t +16047,80%,Uzbekistan,6.0,f +15699,100%,Niue,4.0,f +16141,,United Kingdom,1.0,f +31444,100%,Reunion,25.0,f +26074,100%,,1.0,t +31444,100%,Reunion,25.0,f +18619,100%,Slovakia (Slovak Republic),1.0,f +26661,,Netherlands,1.0,t +31444,100%,Reunion,25.0,f +48883,100%,Indonesia,1.0,f +13043,,Ukraine,1.0,f +8486,,,2.0,f +38379,100%,Jersey,2.0,f +30216,98%,Maldives,34.0,f +16460,,,1.0,f +13403,96%,Maldives,21.0,t +31444,100%,Reunion,25.0,f +21764,100%,Uganda,1.0,t +8111,,,1.0,t +34455,100%,Isle of Man,1.0,t +49785,,Ghana,9.0,f +45911,0%,,2.0,f +32093,,Svalbard & Jan Mayen Islands,1.0,t +47314,80%,Russian Federation,1.0,t +22266,,Monaco,1.0,t +11026,100%,Vanuatu,2.0,f +2835,100%,Vanuatu,1.0,f +29735,86%,Isle of Man,2.0,f +30809,100%,,1.0,f +14386,100%,Nicaragua,8.0,f +39952,100%,Tonga,21.0,f +40795,100%,Somalia,2.0,f +31899,100%,Bouvet Island (Bouvetoya),6.0,f +22345,,Lebanon,3.0,t +20761,90%,,1.0,t +15135,,,2.0,f +18100,,Niue,1.0,t +45723,,Uzbekistan,1.0,t +35084,,,1.0,f +146,100%,Sao Tome and Principe,1.0,t +45401,67%,Barbados,1.0,f +33037,50%,,1.0,f +24900,,Zimbabwe,1.0,f +45272,,,3.0,t +29040,100%,Lebanon,1.0,f +9795,,,1.0,f +41340,100%,Tanzania,3.0,t +40904,,Chad,2.0,f +23361,100%,Marshall Islands,3.0,t +46234,100%,Sao Tome and Principe,3.0,f +46326,,,1.0,f +30602,98%,,29.0,f +30602,98%,,29.0,f +30602,98%,,29.0,f +30602,98%,,29.0,f +30602,98%,,29.0,f +23219,,,1.0,f +6092,100%,,2.0,t +11365,,,1.0,t +37580,100%,Jersey,5.0,f +30602,98%,,29.0,f +30602,98%,,29.0,f +30602,98%,,29.0,f +30602,98%,,29.0,f +30602,98%,,29.0,f +11230,,Guinea,2.0,t +30602,98%,,29.0,f +30602,98%,,29.0,f +30602,98%,,29.0,f +34402,79%,Reunion,28.0,f +30602,98%,,29.0,f +30602,98%,,29.0,f +30602,98%,,29.0,f +30602,98%,,29.0,f +30602,98%,,29.0,f +30602,98%,,29.0,f +30602,98%,,29.0,f +37580,100%,Jersey,5.0,f +14514,,China,80.0,t +11822,70%,,7.0,t +43725,100%,China,4.0,t +33290,100%,Ecuador,4.0,t +11661,0%,Guernsey,2.0,f +13517,,,1.0,t +45919,100%,Montserrat,9.0,t +6030,,Nauru,2.0,t +14420,,El Salvador,1.0,f +20334,99%,Niger,171.0,t +39272,100%,Jersey,2.0,f +16489,100%,Russian Federation,42.0,t +16552,,,1.0,t +23097,100%,Niue,1.0,f +34833,,Barbados,1.0,f +38279,93%,Mauritania,8.0,t +48274,,Cape Verde,1.0,t +33913,,El Salvador,2.0,f +5,,,1.0,f +21836,100%,Mauritania,3.0,f +3421,100%,,4.0,f +42864,,,1.0,f +42330,100%,Isle of Man,1.0,f +45503,100%,Nicaragua,2.0,f +980,,Djibouti,4.0,f +4352,,United Kingdom,1.0,t +5233,100%,Montserrat,6.0,t +18845,,Svalbard & Jan Mayen Islands,2.0,f +46842,75%,Portugal,13.0,t +47438,,Kiribati,1.0,t +38420,90%,Christmas Island,8.0,f +43451,,Tonga,1.0,f +38420,90%,Christmas Island,8.0,f +28828,100%,Isle of Man,198.0,t +42421,100%,Costa Rica,5.0,t +7856,90%,Anguilla,2.0,t +48333,100%,Chad,2.0,t +22990,,Russian Federation,1.0,t +10434,100%,United Kingdom,4.0,f +18876,60%,Netherlands,26.0,f +50055,,,1.0,t +25249,0%,,1.0,f +13647,100%,,3.0,f +19751,,Turkmenistan,1.0,t +45458,100%,,3.0,f +2621,100%,,1.0,t +9102,,,1.0,f +9964,,Afghanistan,2.0,t +48866,,,1.0,t +20382,100%,Svalbard & Jan Mayen Islands,4.0,t +35817,,Somalia,1.0,f +46959,,,1.0,f +490,100%,Bosnia and Herzegovina,6.0,f +31567,50%,,1.0,f +15380,,,1.0,f +50072,100%,Marshall Islands,3.0,t +30602,98%,,29.0,f +235,100%,Kenya,1.0,f +37646,100%,Estonia,60.0,f +33290,100%,Ecuador,4.0,t +30185,100%,El Salvador,1.0,t +41167,,Turkmenistan,1.0,f +48409,,Estonia,60.0,t +20334,99%,Niger,171.0,t +38667,100%,Mauritania,2.0,f +30602,98%,,29.0,f +30602,98%,,29.0,f +21390,90%,,2.0,f +47274,100%,Tonga,48.0,f +25065,,Costa Rica,1.0,f +49808,,,1.0,f +22803,,Uganda,1.0,f +13686,,France,3.0,f +14463,,,1.0,t +30602,98%,,29.0,f +30602,98%,,29.0,f +30602,98%,,29.0,f +27090,100%,Tonga,2.0,t +27360,,Grenada,2.0,t +3896,100%,Niue,1.0,f +34371,,,1.0,t +46952,,United Kingdom,1.0,f +26059,,Niue,1.0,f +23022,67%,Niue,10.0,t +32169,,Denmark,3.0,t +13001,,Somalia,1.0,t +2025,,,1.0,f +24342,,Tonga,1.0,t +17394,0%,Nicaragua,49.0,f +9299,100%,Monaco,1.0,f +29911,100%,Russian Federation,4.0,f +22440,,Kenya,1.0,f +477,,,1.0,t +11562,100%,Ghana,5.0,f +13806,100%,,1.0,f +4876,,Senegal,9.0,f +45614,100%,Ecuador,1.0,t +25723,100%,Vietnam,3.0,t +20853,100%,,3.0,t +40421,96%,Jersey,29.0,t +33877,100%,Uzbekistan,2.0,f +48409,,Estonia,60.0,t +39410,100%,Marshall Islands,1.0,f +26020,,Palestinian Territory,1.0,f +13350,100%,Maldives,1.0,t +37646,100%,Estonia,60.0,f +48409,,Estonia,60.0,t +25710,90%,Ecuador,1.0,t +27537,,Niue,1.0,t +44309,,Gambia,1.0,t +29455,100%,Kenya,3.0,f +36320,100%,Niue,1.0,f +1366,25%,Fiji,4.0,f +32720,,Cocos (Keeling) Islands,1.0,f +28566,78%,Slovakia (Slovak Republic),79.0,t +34096,100%,Andorra,10.0,f +1366,25%,Fiji,4.0,f +42829,,Niue,1.0,f +21041,81%,Vietnam,3.0,f +37609,,Russian Federation,1.0,t +41878,91%,Maldives,47.0,f +27626,,Micronesia,4.0,f +21125,100%,Tonga,2.0,f +30536,100%,Pakistan,7.0,f +42764,100%,Guernsey,13.0,t +22336,,Venezuela,1.0,f +35130,100%,Rwanda,13.0,t +5132,,Russian Federation,1.0,t +20664,100%,Nauru,4.0,f +25955,100%,Kenya,1.0,t +3448,100%,Russian Federation,2.0,t +19958,100%,Congo,40.0,t +34776,100%,,1.0,f +1015,,,1.0,f +31202,90%,Kiribati,107.0,f +31202,90%,Kiribati,107.0,f +31202,90%,Kiribati,107.0,f +31202,90%,Kiribati,107.0,f +11935,,,1.0,f +29718,100%,Philippines,6.0,t +22463,80%,Montserrat,2.0,f +24046,,,1.0,f +31202,90%,Kiribati,107.0,f +24367,,Niue,1.0,t +47123,100%,Niue,1.0,t +14398,,Niger,1.0,f +4528,,Bosnia and Herzegovina,1.0,t +10059,100%,Kenya,1.0,t +50017,,Malawi,1.0,t +24197,100%,Ghana,1.0,f +28238,,El Salvador,1.0,f +40180,100%,Marshall Islands,1.0,f +13403,96%,Maldives,21.0,t +40317,100%,Uzbekistan,2.0,t +5465,,,1.0,f +42707,,Costa Rica,1.0,f +27304,,,1.0,t +33214,,,1.0,f +21488,,,1.0,f +2916,100%,Nicaragua,1.0,t +34102,100%,Nicaragua,6.0,f +34102,100%,Nicaragua,6.0,f +41769,100%,Brazil,4.0,t +48958,,,1.0,f +38598,100%,Marshall Islands,1.0,f +40482,100%,Niue,2.0,f +43389,,,1.0,f +35701,,Zimbabwe,2.0,t +25095,100%,Senegal,4.0,f +37580,100%,Jersey,5.0,f +15713,,Gibraltar,1.0,t +6963,100%,,2.0,t +26559,,Guinea,4.0,t +47915,90%,,2.0,t +40366,97%,Micronesia,14.0,t +46274,100%,,1.0,f +47125,93%,Kiribati,4.0,f +4432,100%,Wallis and Futuna,18.0,f +4432,100%,Wallis and Futuna,18.0,f +4432,100%,Wallis and Futuna,18.0,f +21497,,,1.0,f +4432,100%,Wallis and Futuna,18.0,f +19475,100%,Mauritania,2.0,t +43237,40%,Montserrat,24.0,f +40705,100%,,1.0,f +38915,,,1.0,f +38193,100%,French Guiana,1.0,t +13757,,Papua New Guinea,1.0,t +5319,100%,Kiribati,2.0,f +34864,,,1.0,t +31046,,,1.0,t +14305,100%,,1.0,t +47915,90%,,2.0,t +47219,,Gambia,1.0,f +49167,100%,Guinea,3.0,f +47323,50%,Turks and Caicos Islands,7.0,f +7151,,Uzbekistan,1.0,f +19228,100%,Svalbard & Jan Mayen Islands,8.0,f +2865,80%,,1.0,f +49167,100%,Guinea,3.0,f +42790,,Marshall Islands,1.0,t +19385,80%,Malawi,2.0,f +15176,,Vanuatu,10.0,f +31948,100%,Lebanon,1.0,t +2742,,,1.0,t +35432,,,1.0,t +31344,,Cape Verde,1.0,f +14772,,Zimbabwe,1.0,t +18272,90%,Vietnam,3.0,f +37578,100%,,1.0,t +13994,,China,3.0,f +42125,97%,Tonga,4.0,f +35701,,Zimbabwe,2.0,t +40242,100%,United Kingdom,1.0,t +19378,,Zimbabwe,1.0,t +17394,0%,Nicaragua,49.0,f +28064,70%,Svalbard & Jan Mayen Islands,5.0,f +30094,100%,,1.0,t +33290,100%,Ecuador,4.0,t +429,80%,Russian Federation,2.0,f +7510,100%,,1.0,t +39469,100%,Micronesia,11.0,t +15209,90%,Chad,1.0,t +41190,67%,Niue,1.0,t +14645,,Niue,1.0,f +1926,100%,Bahrain,1.0,t +20625,,Uzbekistan,1.0,t +33749,93%,Mauritania,7.0,f +22767,,,1.0,f +3775,100%,Uzbekistan,2.0,f +45413,,Montserrat,1.0,f +12519,100%,Cocos (Keeling) Islands,1.0,t +39894,,,1.0,f +31484,,El Salvador,1.0,t +33090,,Fiji,1.0,t +37765,,Somalia,1.0,t +36888,,,1.0,t +28806,100%,Mexico,2.0,t +45738,,,1.0,t +26171,100%,Uruguay,1.0,f +24939,0%,,1.0,f +19842,85%,Turkmenistan,53.0,f +19842,85%,Turkmenistan,53.0,f +7664,,,1.0,f +19842,85%,Turkmenistan,53.0,f +3200,75%,Turkmenistan,2.0,t +16937,70%,Cocos (Keeling) Islands,3.0,f +19842,85%,Turkmenistan,53.0,f +14379,,Bouvet Island (Bouvetoya),1.0,f +38760,,Uruguay,1.0,t +19842,85%,Turkmenistan,53.0,f +22575,,Micronesia,1.0,t +19842,85%,Turkmenistan,53.0,f +24453,,,1.0,t +7064,,Nicaragua,1.0,t +12786,100%,Mauritania,2.0,f +15176,,Vanuatu,10.0,f +15176,,Vanuatu,10.0,f +49009,,Guinea,1.0,f +12786,100%,Mauritania,2.0,f +13633,,,2.0,f +18017,,,1.0,t +18910,100%,Mauritania,5.0,f +35957,,Faroe Islands,2.0,t +5632,100%,Uganda,1.0,f +19943,63%,Isle of Man,34.0,f +28581,100%,Sao Tome and Principe,2.0,f +25018,100%,Eritrea,3.0,f +41933,,,1.0,f +27793,67%,,1.0,t +39053,,Palestinian Territory,1.0,f +43675,70%,Micronesia,2.0,f +11753,100%,Gambia,11.0,t +8439,97%,Rwanda,17.0,t +20334,99%,Niger,171.0,t +29272,100%,Suriname,1.0,f +21103,,Papua New Guinea,1.0,t +21890,,France,1.0,t +22555,100%,Somalia,1.0,t +49011,,Anguilla,1.0,t +20661,,Malawi,1.0,t +34037,0%,Togo,2.0,f +9429,100%,,4.0,f +7350,,,2.0,t +21026,,,1.0,f +22212,,French Guiana,1.0,f +23804,100%,Gambia,1.0,t +41932,100%,,2.0,t +39836,100%,Ecuador,2.0,t +30602,98%,,29.0,f +30602,98%,,29.0,f +37377,,,1.0,f +45169,80%,Bosnia and Herzegovina,1.0,f +17394,0%,Nicaragua,49.0,f +35712,100%,Marshall Islands,1.0,t +46125,,Uzbekistan,1.0,f +39304,75%,Togo,2.0,t +42232,100%,Malawi,1.0,t +26366,100%,Sao Tome and Principe,2.0,f +7478,,,2.0,t +47751,100%,,1.0,f +38779,100%,,2.0,f +30602,98%,,29.0,f +23273,50%,Switzerland,3.0,f +7807,,,1.0,t +48332,100%,,1.0,f +30594,100%,,1.0,t +3250,,Switzerland,2.0,t +7405,,Vanuatu,1.0,f +21570,,Mauritania,1.0,f +1932,,Palestinian Territory,1.0,f +22794,50%,Cape Verde,36.0,t +39002,100%,Peru,1.0,f +26125,33%,,1.0,t +35928,,,1.0,f +15529,,,1.0,f +12639,,Turkmenistan,1.0,t +43599,,Chile,1.0,t +39529,,Croatia,2.0,t +39208,100%,Papua New Guinea,2.0,f +23903,,Nauru,1.0,f +14528,,France,1.0,f +35442,,Russian Federation,14.0,f +34624,,Reunion,1.0,t +19083,,Kiribati,1.0,t +16232,,Lebanon,1.0,t +10725,100%,Bouvet Island (Bouvetoya),1.0,f +5792,100%,Bosnia and Herzegovina,1.0,t +36477,,Kenya,1.0,f +35766,,Uzbekistan,1.0,t +29718,100%,Philippines,6.0,t +20909,100%,Gambia,1.0,f +17524,100%,Reunion,4.0,t +39911,,,1.0,f +35393,,Russian Federation,1.0,f +12305,100%,Puerto Rico,1.0,f +26620,100%,Philippines,2.0,t +17524,100%,Reunion,4.0,t +41444,100%,,1.0,t +17524,100%,Reunion,4.0,t +11608,,,1.0,f +536,100%,Philippines,1.0,t +32371,,Isle of Man,2.0,t +6894,80%,Estonia,47.0,t +9577,,Chile,1.0,t +17525,,Micronesia,2.0,t +48609,100%,Uzbekistan,2.0,f +7414,100%,Russian Federation,1.0,t +10784,100%,Niue,1.0,f +20549,100%,Monaco,3.0,t +47163,,,1.0,f +28766,100%,Estonia,16.0,f +16014,,,1.0,f +40109,,,2.0,f +41901,,,1.0,f +29883,90%,Isle of Man,26.0,t +12128,100%,Djibouti,1.0,f +7875,,Togo,1.0,f +29883,90%,Isle of Man,26.0,t +34252,,,1.0,f +34475,100%,,2.0,t +46199,80%,Somalia,3.0,f +29883,90%,Isle of Man,26.0,t +44157,,Rwanda,6.0,t +48831,100%,Cape Verde,5.0,t +32386,97%,Indonesia,19.0,f +42792,100%,Faroe Islands,2.0,t +31202,90%,Kiribati,107.0,f +4284,100%,,1.0,f +4488,,,1.0,f +26298,,Venezuela,1.0,t +29883,90%,Isle of Man,26.0,t +29883,90%,Isle of Man,26.0,t +10338,,Sao Tome and Principe,1.0,t +32596,100%,Gibraltar,2.0,f +38247,100%,Russian Federation,1.0,t +16687,,Kenya,1.0,t +29883,90%,Isle of Man,26.0,t +29883,90%,Isle of Man,26.0,t +25039,,Saint Helena,7.0,t +37364,,Denmark,4.0,f +30536,100%,Pakistan,7.0,f +24026,98%,Cape Verde,69.0,t +29883,90%,Isle of Man,26.0,t +25116,,,1.0,f +37293,92%,Russian Federation,15.0,f +37364,,Denmark,4.0,f +23438,,,1.0,f +29883,90%,Isle of Man,26.0,t +31626,100%,Indonesia,1.0,t +8754,89%,El Salvador,1.0,f +42050,100%,Turks and Caicos Islands,1.0,f +31594,100%,Philippines,19.0,t +28091,,Sao Tome and Principe,1.0,t +14953,100%,Bouvet Island (Bouvetoya),4.0,t +30536,100%,Pakistan,7.0,f +47468,,,1.0,f +44696,,,1.0,f +28643,95%,Andorra,1.0,t +19231,100%,Ukraine,2.0,t +28188,100%,Nicaragua,4.0,t +3783,71%,Faroe Islands,1.0,f +46414,,,2.0,f +15749,,Uruguay,1.0,f +20067,100%,,1.0,f +40074,,,1.0,t +47823,,,1.0,f +25545,,,1.0,t +24912,100%,Sao Tome and Principe,5.0,f +11356,,Bosnia and Herzegovina,1.0,t +26788,100%,Kiribati,2.0,t +16429,,Kenya,1.0,t +41398,75%,,1.0,f +11914,,Brazil,1.0,f +49045,,,1.0,f +4315,100%,,2.0,t +44849,73%,Russian Federation,3.0,f +9519,,Tonga,1.0,t +28826,100%,Switzerland,2.0,f +5619,,Isle of Man,1.0,t +39704,,Montserrat,1.0,t +22278,100%,Micronesia,1.0,f +35841,100%,Saint Helena,4.0,f +19492,,Barbados,1.0,f +42207,100%,Kenya,1.0,f +10895,100%,,1.0,t +30252,,Lithuania,1.0,t +35130,100%,Rwanda,13.0,t +45023,88%,,1.0,f +4125,100%,Guernsey,1.0,t +29313,,Micronesia,1.0,f +34881,100%,China,6.0,f +17394,0%,Nicaragua,49.0,f +10688,100%,United Kingdom,1.0,f +15709,,Russian Federation,2.0,f +3444,,Indonesia,1.0,t +31193,,Uganda,3.0,t +32959,100%,Togo,2.0,t +23305,100%,Philippines,11.0,f +43152,100%,Nicaragua,82.0,t +24026,98%,Cape Verde,69.0,t +44089,,Kenya,1.0,t +47782,,,1.0,f +19091,95%,Cook Islands,18.0,t +15810,100%,Niger,2.0,f +25094,,,1.0,t +12774,100%,,1.0,f +30536,100%,Pakistan,7.0,f +30536,100%,Pakistan,7.0,f +2927,100%,Uganda,10.0,t +32465,100%,Isle of Man,3.0,t +1749,75%,,2.0,t +7408,56%,,2.0,t +11674,100%,Uzbekistan,4.0,f +8299,100%,Kiribati,1.0,t +35370,0%,Afghanistan,1.0,f +158,,Faroe Islands,1.0,f +8624,,Chad,1.0,t +33382,100%,Gambia,1.0,f +49854,,Chile,1.0,f +28828,100%,Isle of Man,198.0,t +11445,,Isle of Man,1.0,t +23808,100%,,1.0,f +27726,100%,Tonga,5.0,f +28934,,,1.0,t +23150,100%,Kenya,1.0,t +9857,100%,,1.0,t +34934,,,1.0,t +46858,,Gambia,1.0,f +45098,,,1.0,t +37996,,Cape Verde,4.0,t +29625,100%,Ecuador,2.0,f +49242,,Turkmenistan,1.0,t +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +47578,,Sao Tome and Principe,2.0,t +3654,100%,Guernsey,2.0,f +2740,,Estonia,5.0,f +30145,,,3.0,t +32346,100%,United Kingdom,3.0,f +34809,100%,Vietnam,2.0,t +6616,60%,Jersey,1.0,t +15861,100%,Chad,1.0,t +38513,,Congo,1.0,f +35625,98%,Estonia,25.0,t +30536,100%,Pakistan,7.0,f +30536,100%,Pakistan,7.0,f +803,,Cuba,1.0,f +34675,100%,Svalbard & Jan Mayen Islands,1.0,t +9717,,Russian Federation,1.0,f +20612,,,1.0,t +21118,100%,Russian Federation,1.0,t +7970,90%,Isle of Man,3.0,t +17047,,Vietnam,1.0,f +43723,100%,,1.0,t +1170,100%,Papua New Guinea,2.0,f +6088,100%,,14.0,t +30145,,,3.0,t +43137,,Svalbard & Jan Mayen Islands,1.0,t +2740,,Estonia,5.0,f +15679,,,1.0,f +21030,,Anguilla,3.0,f +28011,100%,Marshall Islands,1.0,t +40754,0%,,2.0,t +9227,90%,,3.0,t +9769,100%,Pakistan,1.0,f +12765,100%,Zimbabwe,1.0,t +28828,100%,Isle of Man,198.0,t +16606,100%,Svalbard & Jan Mayen Islands,2.0,t +17394,0%,Nicaragua,49.0,f +8975,100%,Ukraine,2.0,f +4951,50%,Brunei Darussalam,3.0,f +49658,,,1.0,t +13100,,Croatia,2.0,f +34146,,Niue,1.0,f +1900,100%,Tunisia,5.0,t +412,,,1.0,f +4390,,Zimbabwe,1.0,f +33339,,Bosnia and Herzegovina,1.0,f +36588,100%,Croatia,1.0,t +39216,,,1.0,t +12984,,Greenland,1.0,f +7147,100%,Malta,1.0,f +20182,,Maldives,1.0,f +40094,,Maldives,2.0,t +18910,100%,Mauritania,5.0,f +13100,,Croatia,2.0,f +38232,,,3.0,t +8524,,Faroe Islands,1.0,f +39435,100%,,1.0,t +4587,,El Salvador,1.0,f +42937,,Guinea,1.0,t +1560,,Indonesia,3.0,t +19811,90%,Nicaragua,21.0,t +24331,100%,,3.0,t +10711,93%,Uganda,108.0,t +15938,90%,,2.0,f +25327,100%,Kiribati,4.0,f +19958,100%,Congo,40.0,t +17564,100%,Kiribati,1.0,t +26551,,Sao Tome and Principe,1.0,t +43573,100%,,1.0,t +43926,80%,Zimbabwe,2.0,t +43428,73%,Faroe Islands,9.0,t +35641,,Netherlands,15.0,t +41562,,,1.0,t +41866,100%,,4.0,t +45196,100%,Niue,1.0,t +18385,100%,Brazil,2.0,t +39028,,,1.0,f +43850,100%,,1.0,f +1900,100%,Tunisia,5.0,t +37364,,Denmark,4.0,f +18143,,,1.0,f +30214,100%,,10.0,t +42005,,Faroe Islands,1.0,f +39896,100%,Chad,1.0,t +23369,,French Guiana,2.0,t +35122,100%,Guinea,1.0,t +22106,100%,,2.0,t +24809,100%,Lebanon,1.0,t +34277,100%,Niue,2.0,t +4504,,,1.0,f +9782,,,1.0,t +490,100%,Bosnia and Herzegovina,6.0,f +1456,100%,Uganda,1.0,t +6871,,Chad,2.0,t +48869,100%,Slovakia (Slovak Republic),22.0,f +17948,100%,,1.0,t +26921,98%,Nicaragua,6.0,t +15413,80%,Vanuatu,7.0,t +31594,100%,Philippines,19.0,t +47074,100%,Moldova,2.0,f +3088,100%,Jersey,1.0,f +10447,,,1.0,f +33580,100%,Barbados,4.0,t +46110,100%,Afghanistan,4.0,f +71,,Lithuania,2.0,t +30933,,Jersey,1.0,f +12177,100%,France,6.0,t +12304,,Zimbabwe,1.0,f +44639,100%,,1.0,f +17617,,Malta,1.0,t +40201,100%,Tonga,1.0,f +3103,100%,Turks and Caicos Islands,4.0,f +35787,100%,Pakistan,1.0,t +30562,,,1.0,f +19022,100%,Wallis and Futuna,1.0,t +37195,,,1.0,f +39124,100%,Guinea,2.0,f +7986,100%,,1.0,t +49798,,Malta,1.0,f +33221,,,1.0,f +37932,100%,Canada,2.0,t +6936,,Russian Federation,1.0,t +8551,100%,Lebanon,1.0,f +10549,100%,,1.0,f +40152,100%,El Salvador,1.0,t +19842,85%,Turkmenistan,53.0,f +34549,100%,Turks and Caicos Islands,2.0,f +48913,100%,Barbados,1.0,t +4951,50%,Brunei Darussalam,3.0,f +41160,,Papua New Guinea,1.0,t +19842,85%,Turkmenistan,53.0,f +25990,50%,Venezuela,1.0,t +19842,85%,Turkmenistan,53.0,f +30485,100%,Guinea,1.0,f +27317,,Somalia,1.0,f +17173,100%,,1.0,t +47265,100%,Lebanon,1.0,t +17352,100%,,1.0,t +6282,100%,,1.0,f +37935,100%,,1.0,f +6183,100%,Bosnia and Herzegovina,1.0,f +34043,,Venezuela,1.0,t +41654,100%,Turkmenistan,1.0,f +25946,100%,Lebanon,1.0,t +15191,100%,Guinea,2.0,f +18000,100%,Slovakia (Slovak Republic),7.0,t +21960,,Isle of Man,1.0,t +33748,30%,Uzbekistan,3.0,t +40351,88%,Chile,2.0,t +27115,100%,Guinea,2.0,f +11837,75%,Zimbabwe,1.0,f +44137,50%,,1.0,t +6894,80%,Estonia,47.0,t +48312,,,1.0,f +37996,,Cape Verde,4.0,t +5650,83%,Malawi,2.0,t +44376,,,3.0,t +36326,100%,,1.0,t +34533,,Peru,2.0,t +46872,100%,Nicaragua,9.0,f +44028,,Cape Verde,13.0,f +15657,,Zimbabwe,1.0,f +28378,,Senegal,1.0,f +47087,,,1.0,t +35192,,Jersey,1.0,f +4781,,Ghana,2.0,f +36508,,Russian Federation,1.0,f +20334,99%,Niger,171.0,t +43152,100%,Nicaragua,82.0,t +47874,,Cape Verde,1.0,t +2770,100%,Cape Verde,1.0,f +40593,,Nauru,10.0,t +14514,,China,80.0,t +36924,,Sao Tome and Principe,1.0,t +31320,,,1.0,f +45690,,Nauru,2.0,f +13364,91%,Netherlands,21.0,f +25524,100%,Barbados,1.0,t +30899,,Reunion,8.0,f +15027,,Isle of Man,1.0,f +4552,,Lebanon,1.0,t +30899,,Reunion,8.0,f +19439,,Uganda,2.0,t +25519,100%,Slovakia (Slovak Republic),9.0,t +48409,,Estonia,60.0,t +45746,,Faroe Islands,1.0,f +33103,,Nauru,1.0,f +1393,100%,Turks and Caicos Islands,2.0,f +9106,,,1.0,t +23177,100%,Estonia,5.0,f +31768,,El Salvador,1.0,f +39952,100%,Tonga,21.0,f +8615,,Estonia,1.0,f +40319,,Afghanistan,1.0,t +48108,80%,Sao Tome and Principe,1.0,f +46168,100%,Isle of Man,1.0,f +30985,100%,Uzbekistan,5.0,f +3564,100%,Russian Federation,3.0,f +48376,,,1.0,f +31878,,Lebanon,1.0,t +7940,100%,Niue,1.0,t +19798,,,1.0,f +8464,100%,Togo,1.0,f +6218,,Rwanda,1.0,t +9727,100%,Uzbekistan,1.0,f +25689,70%,,1.0,t +32127,,Tonga,1.0,f +47031,100%,,4.0,f +13545,,Papua New Guinea,1.0,t +17185,,Gibraltar,1.0,f +37953,100%,Sao Tome and Principe,6.0,f +13962,100%,Bouvet Island (Bouvetoya),2.0,f +20226,,,1.0,f +19952,100%,Zimbabwe,2.0,f +41089,100%,Gambia,3.0,t +11133,100%,Philippines,2.0,f +10668,,,2.0,f +34549,100%,Turks and Caicos Islands,2.0,f +29637,,,2.0,f +47075,,Chile,1.0,f +39647,100%,Barbados,2.0,f +45314,,Isle of Man,1.0,t +2458,,,1.0,f +48533,100%,Somalia,1.0,t +17995,,Netherlands,1.0,f +39952,100%,Tonga,21.0,f +14624,,Lebanon,1.0,f +20509,100%,Kenya,2.0,t +48470,90%,Pakistan,4.0,f +32675,100%,Kiribati,4.0,t +21083,100%,Spain,3.0,t +36499,75%,Anguilla,25.0,t +6232,,Guinea,15.0,t +15104,,Jersey,1.0,t +25016,,Holy See (Vatican City State),1.0,f +32403,100%,Rwanda,1.0,f +11312,100%,Senegal,1.0,f +21015,100%,Micronesia,1.0,f +3479,100%,,2.0,t +24974,,Niger,7.0,f +48416,100%,Mauritania,2.0,f +4969,100%,Niue,1.0,f +7102,100%,Vanuatu,4.0,t +45590,100%,Turkmenistan,2.0,t +2790,,Mexico,1.0,f +878,100%,Kiribati,3.0,t +29647,100%,Peru,1305.0,f +10202,89%,Nicaragua,10.0,f +29647,100%,Peru,1305.0,f +15063,90%,,1.0,f +39300,100%,Kenya,2.0,f +29647,100%,Peru,1305.0,f +27289,99%,Reunion,12.0,t +41157,100%,,1.0,f +29647,100%,Peru,1305.0,f +36499,75%,Anguilla,25.0,t +24551,100%,,1.0,t +7568,,,1.0,t +24999,100%,France,6.0,f +16545,,France,1.0,f +36904,89%,Croatia,1.0,f +36698,,Gibraltar,1.0,t +40183,,Montserrat,2.0,t +34942,,,1.0,t +33661,100%,,1.0,t +3258,,Chad,1.0,t +8209,,Maldives,1.0,f +1178,100%,Uzbekistan,1.0,t +45631,38%,China,1.0,t +37899,,,2.0,f +18992,95%,,3.0,f +4913,100%,Gambia,1.0,f +23654,100%,Uzbekistan,23.0,f +13150,,French Guiana,1.0,t +23720,,,1.0,f +18200,100%,Niue,2.0,t +47488,0%,Gambia,1.0,f +31959,,Rwanda,4.0,f +39541,100%,Papua New Guinea,1.0,f +49440,100%,Brazil,1.0,f +44179,,,1.0,t +20930,63%,,3.0,f +3740,100%,Marshall Islands,1.0,t +43181,,Jersey,1.0,f +11922,,,2.0,f +15800,100%,Kiribati,2.0,t +5208,,Indonesia,1.0,f +10054,,Nauru,1.0,f +45641,100%,,1.0,t +34787,,Turkmenistan,1.0,f +29840,,,1.0,t +6963,100%,,2.0,t +1908,100%,Sao Tome and Principe,2.0,t +15800,100%,Kiribati,2.0,t +18385,100%,Brazil,2.0,t +15721,100%,Bosnia and Herzegovina,1.0,f +31412,,,1.0,f +589,,,1.0,f +19943,63%,Isle of Man,34.0,f +24816,,,1.0,t +21235,100%,Brazil,1.0,f +1506,,,1.0,t +28540,100%,Vanuatu,12.0,f +2782,,,1.0,t +28540,100%,Vanuatu,12.0,f +37532,,Guinea,1.0,t +28540,100%,Vanuatu,12.0,f +28540,100%,Vanuatu,12.0,f +28540,100%,Vanuatu,12.0,f +43492,100%,Suriname,1.0,f +28540,100%,Vanuatu,12.0,f +13769,100%,Micronesia,1.0,f +35044,,,1.0,f +43902,100%,,2.0,t +30782,,Estonia,1.0,f +15569,,Portugal,1.0,f +5049,100%,Sao Tome and Principe,15.0,t +18702,100%,Gibraltar,2.0,t +22676,100%,Bouvet Island (Bouvetoya),1.0,t +3127,100%,Rwanda,36.0,f +14042,,Uzbekistan,2.0,f +24974,,Niger,7.0,f +7479,100%,,1.0,f +10644,,Guernsey,4.0,t +41340,100%,Tanzania,3.0,t +34587,,Isle of Man,22.0,t +28887,100%,Ghana,8.0,f +37115,,Costa Rica,1.0,f +28887,100%,Ghana,8.0,f +25654,100%,Isle of Man,1.0,f +6161,,,1.0,t +27596,,Russian Federation,2.0,t +34881,100%,China,6.0,f +6013,100%,,1.0,f +34892,71%,,1.0,f +25300,,,1.0,t +2587,100%,Niue,3.0,t +18152,100%,Nicaragua,1.0,f +46788,,,1.0,f +8681,,,1.0,f +22340,,Ukraine,1.0,f +3127,100%,Rwanda,36.0,f +25222,80%,Kenya,11.0,t +3127,100%,Rwanda,36.0,f +47527,100%,Tonga,1.0,f +26180,100%,,1.0,f +7443,94%,Pakistan,4.0,f +3127,100%,Rwanda,36.0,f +16390,,Reunion,1.0,f +41196,,,1.0,f +42845,,Estonia,2.0,t +44509,100%,Niue,1.0,t +46074,,,1.0,t +34062,,Uganda,5.0,t +980,,Djibouti,4.0,f +47705,,,1.0,f +40366,97%,Micronesia,14.0,t +4524,100%,Vietnam,1.0,f +4178,100%,Niue,1.0,t +30126,100%,Togo,5.0,t +26633,100%,Guinea,1.0,t +42256,100%,,8.0,f +8330,100%,Mauritania,3.0,f +46065,100%,Ecuador,3.0,f +4951,50%,Brunei Darussalam,3.0,f +35831,,,1.0,f +39296,,Chad,1.0,t +23713,,Isle of Man,1.0,f +34595,67%,,1.0,t +10468,,,1.0,f +30909,,Monaco,1.0,f +48389,90%,Uzbekistan,1.0,t +17476,100%,Pakistan,4.0,t +29455,100%,Kenya,3.0,f +19301,100%,,2.0,t +44541,100%,France,2.0,f +2880,,,1.0,f +6262,,Jersey,1.0,t +24974,,Niger,7.0,f +28493,90%,,2.0,f +2737,100%,Cape Verde,1.0,t +30159,0%,,1.0,t +45666,100%,,2.0,t +16849,,Guernsey,1.0,t +21857,,,1.0,t +20659,,Croatia,3.0,t +3162,100%,Montserrat,6.0,t +16181,100%,Tanzania,2.0,f +28828,100%,Isle of Man,198.0,t +7243,,Reunion,1.0,t +42925,,Zimbabwe,1.0,t +20659,,Croatia,3.0,t +49543,,,1.0,f +25245,,Mexico,1.0,f +23613,,Lebanon,2.0,t +25750,,Uruguay,1.0,f +25213,,Chile,1.0,t +28828,100%,Isle of Man,198.0,t +33883,,,3.0,t +46601,,,1.0,t +37178,,,1.0,f +13430,100%,Rwanda,1.0,f +7332,100%,Ecuador,2.0,t +41391,100%,,1.0,t +37194,,,2.0,f +16571,,Marshall Islands,1.0,t +30493,,Estonia,1.0,t +27726,100%,Tonga,5.0,f +42623,,,1.0,t +13635,0%,,1.0,f +48253,,,1.0,f +36349,,Somalia,2.0,t +36349,,Somalia,2.0,t +44028,,Cape Verde,13.0,f +49660,100%,France,3.0,t +30720,63%,,1.0,t +126,,China,2.0,f +44612,100%,Jersey,2.0,t +4435,,,1.0,f +12354,100%,Russian Federation,1.0,t +47768,100%,Anguilla,2.0,t +29969,100%,,1.0,f +46118,100%,Nicaragua,11.0,f +5129,50%,Bouvet Island (Bouvetoya),1.0,f +27334,100%,China,16.0,f +39212,100%,Jersey,1.0,t +9588,100%,,1.0,f +12149,,Niue,1.0,t +22496,,Nauru,1.0,f +11673,,Ghana,3.0,t +46715,100%,Gibraltar,2.0,t +21911,,Rwanda,2.0,t +20786,,Mauritania,1.0,t +39397,,Guinea,3.0,t +14556,,,1.0,f +8359,,Anguilla,1.0,f +48249,100%,,1.0,t +46481,,Philippines,4.0,t +42617,,Chile,1.0,f +15774,100%,,1.0,f +35683,,Isle of Man,2.0,f +43678,,,1.0,t +14789,,,1.0,t +37469,100%,Russian Federation,1.0,t +44056,,,1.0,t +33810,,Gibraltar,1.0,t +17394,0%,Nicaragua,49.0,f +33939,100%,Jersey,1.0,f +21863,100%,,1.0,t +48678,,,1.0,f +24475,,,1.0,f +36129,0%,Uganda,1.0,f +22317,,French Guiana,1.0,t +37639,100%,Nauru,11.0,f +19045,100%,Uzbekistan,2.0,t +43319,100%,Peru,1.0,f +23646,20%,,1.0,f +36538,100%,,1.0,f +2834,,France,1.0,f +45510,100%,Marshall Islands,2.0,f +840,100%,Mauritania,1.0,t +7443,94%,Pakistan,4.0,f +1535,100%,,3.0,t +27967,67%,Djibouti,1.0,t +7342,100%,,1.0,t +16887,100%,China,11.0,f +9986,,Lebanon,1.0,t +17394,0%,Nicaragua,49.0,f +41209,100%,,1.0,f +43403,100%,,1.0,t +3085,,,1.0,t +10082,100%,Isle of Man,2.0,t +44674,100%,,1.0,t +23642,100%,Holy See (Vatican City State),5.0,f +31379,100%,France,5.0,t +38246,100%,,1.0,t +19128,100%,Uzbekistan,12.0,t +40596,100%,Nicaragua,1.0,f +32294,,Niue,1.0,f +13259,,Kenya,1.0,f +9516,99%,Pakistan,45.0,t +30899,,Reunion,8.0,f +46105,100%,Nicaragua,4.0,t +32497,,,1.0,f +13301,100%,Togo,2.0,f +28414,100%,Uzbekistan,22.0,f +46105,100%,Nicaragua,4.0,t +6508,,Venezuela,1.0,t +12088,100%,Kiribati,8.0,f +22490,100%,Guinea,1.0,t +3222,100%,,3.0,t +41013,,Lebanon,2.0,t +10284,100%,Tanzania,3.0,f +12676,100%,Bouvet Island (Bouvetoya),1.0,t +27578,90%,Vanuatu,1.0,f +38037,100%,Saint Helena,1.0,t +27157,,El Salvador,1.0,t +27328,,,1.0,t +19318,,,1.0,f +20556,100%,,1.0,t +22374,,,1.0,f +38689,100%,United Kingdom,6.0,t +19842,85%,Turkmenistan,53.0,f +23327,100%,Uzbekistan,4.0,t +10534,,Gibraltar,1.0,f +37373,,Lebanon,1.0,t +14484,,,1.0,t +27504,,Mauritania,1.0,f +5796,,France,1.0,f +11823,70%,,7.0,f +11823,70%,,7.0,f +35309,40%,Turkmenistan,1.0,t +28828,100%,Isle of Man,198.0,t +25677,100%,Peru,2.0,f +41333,100%,Turks and Caicos Islands,2.0,f +47464,,,1.0,f +32365,100%,,1.0,t +19147,100%,,1.0,f +18200,100%,Niue,2.0,t +4803,100%,Fiji,5.0,t +40793,100%,,75.0,t +40793,100%,,75.0,t +40793,100%,,75.0,t +40793,100%,,75.0,t +40793,100%,,75.0,t +40793,100%,,75.0,t +40793,100%,,75.0,t +34208,,,2.0,t +26934,,Kenya,1.0,f +5327,100%,Togo,5.0,t +3313,75%,,1.0,t +27768,65%,Kiribati,15.0,t +23871,,,1.0,t +31707,100%,Niger,48.0,f +29647,100%,Peru,1305.0,f +2779,,,1.0,t +41086,,Ghana,1.0,f +32620,100%,Gambia,5.0,f +19485,50%,Russian Federation,1.0,t +12169,100%,Cape Verde,2.0,t +23668,100%,Fiji,2.0,f +34502,100%,Malta,1.0,t +4772,100%,,1.0,f +5979,90%,Guinea,1.0,t +42630,,Sao Tome and Principe,1.0,f +45969,,Portugal,1.0,f +43830,,Djibouti,1.0,f +16741,,Russian Federation,1.0,t +46453,100%,Russian Federation,1.0,t +38169,100%,Pakistan,3.0,f +7152,100%,Malawi,1.0,f +2446,40%,Sao Tome and Principe,1.0,t +5978,100%,Zimbabwe,3.0,t +39817,100%,,2.0,t +31546,,,1.0,f +35257,100%,,2.0,f +13843,100%,,3.0,f +21171,100%,El Salvador,2.0,f +3303,,Nauru,2.0,f +15324,,Vietnam,2.0,t +4421,100%,Uzbekistan,1.0,t +34564,,Estonia,1.0,f +35232,,,1.0,t +44725,100%,Slovakia (Slovak Republic),4.0,t +31202,90%,Kiribati,107.0,f +22045,,Russian Federation,1.0,f +43321,100%,France,40.0,f +479,100%,Pakistan,4.0,f +29893,100%,Anguilla,2.0,f +11740,,Faroe Islands,1.0,t +12799,80%,Faroe Islands,2.0,f +13536,,,1.0,f +31202,90%,Kiribati,107.0,f +39863,,Nicaragua,1.0,t +5326,100%,,1.0,f +17506,,Nauru,1.0,f +26141,50%,,1.0,f +40675,,,1.0,f +5049,100%,Sao Tome and Principe,15.0,t +28144,,Netherlands,1.0,f +14054,,Togo,1.0,f +34217,,Afghanistan,1.0,t +24016,100%,Bosnia and Herzegovina,29.0,f +41189,100%,Mauritania,4.0,t +26222,100%,Brazil,1.0,f +14735,,Greenland,1.0,f +22976,,Marshall Islands,1.0,t +36499,75%,Anguilla,25.0,t +32532,,Niue,1.0,t +46088,,Ghana,15.0,f +21346,100%,Ecuador,1.0,t +40141,100%,Maldives,3.0,t +36499,75%,Anguilla,25.0,t +28867,,Denmark,1.0,t +49396,,Greenland,1.0,f +27271,,Mexico,1.0,f +11055,100%,,1.0,f +25714,100%,Chad,1.0,t +43496,100%,Montserrat,18.0,t +23515,100%,Russian Federation,2.0,t +42888,,Venezuela,1.0,f +10024,,Venezuela,3.0,t +22753,,,1.0,f +13193,,Micronesia,1.0,f +40141,100%,Maldives,3.0,t +11923,,Bouvet Island (Bouvetoya),1.0,f +45737,,Tonga,29.0,t +28828,100%,Isle of Man,198.0,t +38311,,,1.0,f +34345,100%,Niger,3.0,f +39300,100%,Kenya,2.0,f +37601,,Vanuatu,1.0,f +26923,,Lebanon,1.0,t +23747,100%,Niger,4.0,t +48460,,Reunion,2.0,t +11616,100%,Uzbekistan,12.0,t +30665,100%,Puerto Rico,1.0,f +23117,82%,,33.0,f +23654,100%,Uzbekistan,23.0,f +23117,82%,,33.0,f +14893,100%,El Salvador,1.0,t +4719,100%,Malta,1.0,f +19339,,,1.0,f +37622,,United Kingdom,1.0,f +6539,,El Salvador,1.0,t +9047,,Gambia,1.0,f +27629,0%,Lithuania,1.0,f +29085,,Micronesia,1.0,f +22721,100%,Ecuador,109.0,f +17170,,,1.0,t +42436,,Ghana,4.0,f +47286,100%,Micronesia,2.0,f +12200,,Reunion,1.0,f +3612,,Estonia,1.0,f +41735,,China,1.0,f +43840,100%,Niue,4.0,t +33580,100%,Barbados,4.0,t +37420,,,3.0,t +523,,Reunion,1.0,f +45995,,Guernsey,1.0,f +35745,,,1.0,f +4321,,,1.0,f +1906,,Tonga,1.0,f +40366,97%,Micronesia,14.0,t +36093,100%,Denmark,18.0,t +10668,,,2.0,f +5019,,,1.0,f +42778,100%,Monaco,2.0,f +10221,,,1.0,f +15379,100%,Niger,1.0,f +47028,100%,Sao Tome and Principe,1.0,t +48236,,Turkmenistan,3.0,t +37364,,Denmark,4.0,f +21401,,,1.0,t +45788,90%,Afghanistan,2.0,t +42915,100%,Vanuatu,1.0,f +47338,100%,,1.0,t +33645,100%,Anguilla,1.0,f +15853,,Mauritania,1.0,t +37735,100%,Uganda,13.0,t +39060,100%,Kiribati,3.0,f +49541,100%,French Guiana,6.0,f +49469,,France,1.0,t +15373,,Faroe Islands,1.0,t +46801,80%,Turks and Caicos Islands,1.0,f +7982,100%,Serbia,3.0,f +16695,96%,Tonga,8.0,f +43353,,,1.0,f +1729,75%,,2.0,f +23050,100%,Brazil,1.0,f +24869,,,1.0,f +10325,100%,Gambia,34.0,t +3808,100%,,1.0,f +12928,100%,,2.0,t +39908,100%,Guernsey,1.0,t +24275,,,1.0,f +4286,100%,,1.0,f +3127,100%,Rwanda,36.0,f +3127,100%,Rwanda,36.0,f +3127,100%,Rwanda,36.0,f +3127,100%,Rwanda,36.0,f +6131,100%,Niue,1.0,f +3127,100%,Rwanda,36.0,f +13228,,Guinea,2.0,f +1504,,Guinea,1.0,f +3127,100%,Rwanda,36.0,f +22598,,,1.0,f +3127,100%,Rwanda,36.0,f +10325,100%,Gambia,34.0,t +3127,100%,Rwanda,36.0,f +30162,,French Polynesia,1.0,f +8048,,Chad,1.0,f +10325,100%,Gambia,34.0,t +10325,100%,Gambia,34.0,t +22830,100%,,1.0,t +25295,100%,Slovakia (Slovak Republic),3.0,t +10325,100%,Gambia,34.0,t +24749,100%,Timor-Leste,3.0,t +37552,100%,Bahrain,1.0,f +37099,100%,Denmark,2.0,f +33769,100%,,1.0,t +8979,100%,Micronesia,9.0,t +30126,100%,Togo,5.0,t +49669,,,1.0,t +27785,100%,Uzbekistan,58.0,f +21141,,Russian Federation,1.0,f +25617,100%,Monaco,1.0,t +2253,100%,Mauritania,2.0,f +39845,100%,Togo,4.0,f +12928,100%,,2.0,t +36749,100%,,2.0,f +40218,100%,Estonia,6.0,f +11253,,Ghana,7.0,f +22083,33%,,1.0,t +12378,100%,France,1.0,t +29097,,Guinea,1.0,t +45067,75%,,3.0,t +38024,100%,Mauritania,1.0,f +32582,83%,,3.0,f +47519,100%,,1.0,f +21584,71%,Anguilla,2.0,t +20041,100%,Uzbekistan,2.0,t +25191,100%,Malta,1.0,f +7782,100%,Denmark,1.0,t +18794,100%,,2.0,f +30682,100%,Mauritania,2.0,f +237,,Faroe Islands,1.0,t +15273,100%,,2.0,f +30325,100%,,1.0,f +23045,,,3.0,f +8820,,Gambia,1.0,f +36887,100%,,1.0,t +9363,95%,Ukraine,50.0,f +15116,100%,Uzbekistan,2.0,f +9363,95%,Ukraine,50.0,f +42676,100%,Lithuania,1.0,f +6232,,Guinea,15.0,t +35960,100%,,1.0,f +47793,,,2.0,t +22965,,Greenland,2.0,f +20368,,,1.0,t +47827,,Chad,1.0,t +14732,,Rwanda,1.0,f +45258,100%,Monaco,2.0,f +36529,100%,Mauritania,1.0,t +49638,100%,Portugal,2.0,f +27726,100%,Tonga,5.0,f +10737,,Rwanda,1.0,f +34638,100%,Brunei Darussalam,1.0,t +34587,,Isle of Man,22.0,t +20329,100%,Reunion,21.0,f +21865,100%,,3.0,t +40917,100%,Russian Federation,3.0,t +1563,0%,Micronesia,3.0,f +24178,100%,,1.0,f +48766,100%,Uzbekistan,1.0,f +5060,,Estonia,1.0,f +45085,,Ghana,1.0,f +10697,100%,Uzbekistan,3.0,t +33203,100%,,3.0,f +35516,,Lebanon,1.0,t +30435,99%,Cape Verde,41.0,f +14255,,,1.0,f +18611,,Chad,1.0,t +36583,100%,Uganda,1.0,f +17519,100%,Uganda,1.0,f +29625,100%,Ecuador,2.0,f +17181,,French Guiana,1.0,f +21351,100%,Niue,3.0,f +16101,,,1.0,t +12534,100%,,2.0,t +38015,,Mexico,1.0,t +4979,100%,United Kingdom,1.0,f +45040,,,1.0,t +10624,100%,,1.0,f +27220,,,1.0,t +9347,,Niue,1.0,t +43173,100%,Chile,1.0,t +19038,100%,Lebanon,3.0,t +3447,,Finland,3.0,t +37901,,Micronesia,1.0,t +25646,100%,Tonga,1.0,f +25251,100%,El Salvador,2.0,f +23556,,,1.0,f +2381,100%,,3.0,f +25251,100%,El Salvador,2.0,f +41728,,Turkmenistan,1.0,f +37952,100%,Congo,3.0,t +17672,,,1.0,f +16646,,Papua New Guinea,1.0,t +48082,,Uzbekistan,2.0,f +46360,100%,Holy See (Vatican City State),1.0,t +19697,100%,Brazil,3.0,f +42796,,,1.0,f +10431,,Finland,2.0,t +1754,,,1.0,f +43561,,Faroe Islands,1.0,t +2059,100%,Bahrain,1.0,t +21521,,Niue,1.0,f +38487,,,2.0,f +38487,,,2.0,f +41231,,,1.0,f +3557,,Faroe Islands,1.0,f +10263,100%,,3.0,t +36499,75%,Anguilla,25.0,t +43438,100%,Niue,2.0,t +37480,100%,Niue,4.0,f +7605,,,1.0,f +37480,100%,Niue,4.0,f +37480,100%,Niue,4.0,f +36499,75%,Anguilla,25.0,t +37480,100%,Niue,4.0,f +40288,,Macao,2.0,t +10217,100%,Bosnia and Herzegovina,7.0,t +5964,0%,,2.0,f +48447,,Mexico,1.0,f +41741,100%,Brazil,9.0,t +40520,100%,,1.0,t +36111,100%,Malta,2.0,t +14963,100%,,1.0,t +40466,100%,Russian Federation,5.0,f +37975,,Malta,1.0,t +28129,,China,2.0,f +13686,,France,3.0,f +45601,,,1.0,f +783,100%,Svalbard & Jan Mayen Islands,12.0,t +22252,100%,Switzerland,4.0,f +1878,,Niue,1.0,f +4179,,France,1.0,t +27006,,,1.0,f +21296,100%,,1.0,f +3683,,Russian Federation,1.0,f +49806,,Jersey,1.0,f +48711,,,1.0,f +43438,100%,Niue,2.0,t +42013,,Guinea,16.0,t +27119,94%,Nicaragua,10.0,t +42013,,Guinea,16.0,t +15734,,Turkmenistan,5.0,t +15734,,Turkmenistan,5.0,t +42013,,Guinea,16.0,t +6176,100%,Costa Rica,1.0,t +867,100%,Congo,1.0,t +22564,90%,Portugal,1.0,f +48164,,Niue,1.0,f +38660,,,2.0,f +19647,,Malawi,1.0,t +27791,,Nauru,1.0,t +12499,,,1.0,t +43237,40%,Montserrat,24.0,f +43118,100%,,2.0,f +20329,100%,Reunion,21.0,f +32296,,,1.0,f +47904,,Uganda,2.0,f +13542,,,1.0,f +11524,100%,Tonga,1.0,t +16416,100%,Guinea,1.0,f +11676,,Slovakia (Slovak Republic),1.0,f +48503,90%,Sao Tome and Principe,5.0,t +38660,,,2.0,f +37974,,,1.0,f +394,,Ecuador,1.0,t +21621,100%,Marshall Islands,1.0,f +25307,,,1.0,f +34222,,France,1.0,t +34208,,,2.0,t +49066,,Maldives,2.0,f +2179,25%,Reunion,5.0,f +12669,,Zimbabwe,1.0,f +43708,,Indonesia,3.0,t +41313,100%,Denmark,10.0,t +44988,,,1.0,t +15734,,Turkmenistan,5.0,t +43258,,Guinea,1.0,f +18803,,,1.0,f +4046,,French Guiana,1.0,f +4754,90%,Lithuania,1.0,f +41524,,Fiji,4.0,t +23031,,Montserrat,1.0,f +25467,100%,Jersey,1.0,f +48225,100%,Wallis and Futuna,1.0,f +28832,,Nicaragua,2.0,t +13274,60%,,1.0,f +26313,89%,Mauritania,2.0,t +1038,,Maldives,5.0,f +22235,,Brazil,1.0,f +10316,100%,Rwanda,1.0,t +39859,100%,Netherlands,3.0,t +37181,,Gambia,1.0,f +41524,,Fiji,4.0,t +29235,100%,Malta,6.0,f +16542,100%,Croatia,2.0,t +25904,83%,,1.0,f +47951,,,1.0,f +3810,100%,,2.0,f +38999,,Turkmenistan,1.0,f +17427,100%,Mexico,2.0,f +35034,,Sao Tome and Principe,1.0,f +41946,100%,Turkmenistan,1.0,t +41524,,Fiji,4.0,t +16240,100%,Tanzania,2.0,t +39845,100%,Togo,4.0,f +33789,,,1.0,f +19331,,,1.0,t +26495,75%,Palestinian Territory,1.0,t +17427,100%,Mexico,2.0,f +33012,,,1.0,f +29647,100%,Peru,1305.0,f +16764,100%,Mauritania,2.0,f +48734,,,1.0,t +33880,84%,Barbados,18.0,f +4298,100%,,1.0,t +15297,,Christmas Island,1.0,f +49621,,,1.0,t +28459,100%,Uruguay,1.0,f +26620,100%,Philippines,2.0,t +16346,100%,Montserrat,2.0,f +1038,,Maldives,5.0,f +15771,100%,,3.0,t +31691,,Puerto Rico,1.0,f +21896,25%,,1.0,f +16297,100%,Gambia,1.0,f +6767,,,3.0,f +39843,100%,Switzerland,3.0,t +38784,100%,Pakistan,3.0,f +40366,97%,Micronesia,14.0,t +26921,98%,Nicaragua,6.0,t +28405,100%,,1.0,f +40366,97%,Micronesia,14.0,t +9032,88%,,3.0,t +21746,86%,,2.0,t +18332,100%,,2.0,f +44541,100%,France,2.0,f +17394,0%,Nicaragua,49.0,f +26189,,Lithuania,1.0,t +37421,90%,Isle of Man,2.0,t +48603,100%,Guinea,40.0,f +47189,,,1.0,f +29623,,,1.0,f +35521,70%,,1.0,f +24810,,Lebanon,1.0,t +828,,Mauritania,2.0,f +47712,100%,,1.0,t +7939,100%,,1.0,f +11257,100%,Maldives,2.0,t +24050,,Isle of Man,1.0,f +37155,,Niue,1.0,f +43708,,Indonesia,3.0,t +41269,,Philippines,7.0,f +16333,,,1.0,f +43202,75%,Niue,2.0,t +9101,,,1.0,f +2586,,Niue,1.0,t +41524,,Fiji,4.0,t +29622,100%,,1.0,t +35526,100%,,2.0,f +47476,,Kenya,1.0,t +33053,,Mauritania,1.0,f +41089,100%,Gambia,3.0,t +29521,,Gambia,4.0,t +29595,,Micronesia,1.0,t +28196,,Svalbard & Jan Mayen Islands,3.0,t +35937,,Senegal,1.0,f +48656,,,1.0,f +6365,80%,Nauru,2.0,t +47031,100%,,4.0,f +3935,,Guernsey,1.0,f +11409,,Russian Federation,1.0,f +17987,,,1.0,f +24280,100%,,2.0,f +43496,100%,Montserrat,18.0,t +34726,90%,,2.0,t +42017,,,1.0,f +36499,75%,Anguilla,25.0,t +13455,,,2.0,f +28251,100%,,1.0,t +8911,100%,,2.0,t +21317,100%,Maldives,2.0,f +3411,100%,Tunisia,1.0,f +41559,100%,Montserrat,4.0,t +1400,100%,United Kingdom,1.0,f +15235,100%,Marshall Islands,1.0,f +38070,,Saint Helena,1.0,f +39153,100%,,3.0,f +19682,100%,Faroe Islands,15.0,t +8664,,Afghanistan,1.0,f +13072,,Chad,1.0,f +37205,100%,Kiribati,3.0,t +18078,100%,Montserrat,13.0,t +49005,,Guinea,1.0,t +47361,100%,Barbados,10.0,f +29140,100%,,1.0,t +35467,,Micronesia,1.0,f +46647,100%,,1.0,f +44966,100%,Guinea,21.0,f +12614,,,1.0,t +13455,,,2.0,f +16484,100%,Jersey,1.0,f +41151,,Gambia,1.0,t +46467,,,1.0,f +25679,100%,Barbados,3.0,t +35491,100%,,2.0,f +33326,,Nicaragua,1.0,f +21368,100%,Russian Federation,1.0,f +48264,,,1.0,t +38396,,Isle of Man,1.0,t +1781,,Uzbekistan,1.0,t +4783,100%,Estonia,2.0,f +46319,,,2.0,t +14774,100%,Somalia,1.0,f +17307,,,1.0,t +9309,,Lebanon,1.0,f +9322,100%,Russian Federation,1.0,t +32533,100%,,1.0,f +33652,100%,,1.0,f +45107,,Russian Federation,1.0,t +39773,,Marshall Islands,2.0,f +41917,0%,,1.0,f +42889,100%,Canada,2.0,t +5332,82%,,5.0,t +22669,,Lebanon,1.0,f +35440,100%,,3.0,f +2328,88%,Kenya,2.0,t +24910,90%,Venezuela,1.0,f +22164,,Gambia,3.0,t +36874,80%,,2.0,f +34072,100%,,1.0,f +13263,,Guernsey,1.0,f +39733,100%,Maldives,1.0,f +31222,,Afghanistan,1.0,t +1191,98%,,12.0,t +48977,100%,,1.0,f +30765,,Marshall Islands,2.0,f +36721,100%,Ukraine,1.0,f +42015,100%,Nauru,1.0,t +357,,Peru,1.0,f +21783,,Papua New Guinea,1.0,f +8300,100%,Peru,1.0,t +16489,100%,Russian Federation,42.0,t +13513,100%,Ghana,1.0,f +14665,100%,Cocos (Keeling) Islands,1.0,f +49895,100%,,1.0,f +39109,77%,Ukraine,24.0,t +37953,100%,Sao Tome and Principe,6.0,f +23723,,Isle of Man,2.0,f +663,100%,,2.0,f +26889,100%,Indonesia,10.0,f +7282,100%,Malta,1.0,f +20615,,,1.0,f +27926,,Bosnia and Herzegovina,2.0,f +16323,100%,Marshall Islands,1.0,t +12060,,,1.0,f +45968,100%,Micronesia,4.0,t +33123,,Guinea,1.0,t +26230,,France,3.0,f +40925,,Kenya,2.0,f +29660,,Pakistan,1.0,f +28937,100%,Kenya,2.0,t +45365,,Kiribati,3.0,t +12329,,,1.0,f +26005,100%,France,1.0,t +22721,100%,Ecuador,109.0,f +10615,,Tonga,1.0,f +28937,100%,Kenya,2.0,t +16876,100%,,1.0,t +5731,,,1.0,f +26612,,,1.0,f +2422,,Gambia,2.0,t +5760,,Togo,1.0,t +12246,,,2.0,f +28830,100%,Lithuania,2.0,f +22079,100%,Togo,2.0,t +24775,97%,Montserrat,44.0,f +8911,100%,,2.0,t +27375,,,1.0,f +37720,,,1.0,f +6440,,Estonia,1.0,t +21897,90%,,3.0,f +1642,100%,Marshall Islands,17.0,f +7196,,Vietnam,1.0,t +6145,100%,Russian Federation,2.0,t +44060,100%,,2.0,t +638,,Russian Federation,1.0,f +4893,100%,Russian Federation,2.0,f +44714,,Ghana,4.0,f +13127,100%,Niger,22.0,f +13771,100%,Maldives,1.0,f +2599,,,1.0,f +4466,100%,Niue,3.0,t +49745,,Reunion,1.0,t +10711,93%,Uganda,108.0,t +3750,,Guinea,1.0,t +15683,100%,Isle of Man,2.0,f +19011,60%,Marshall Islands,1.0,t +20255,100%,Guinea,3.0,f +3405,71%,Jersey,1.0,t +44207,80%,Djibouti,8.0,t +20591,,,1.0,f +26598,,Suriname,1.0,t +28242,100%,,1.0,f +21707,,Niue,1.0,f +46779,,Ukraine,2.0,t +47109,,Anguilla,1.0,t +17468,,Tonga,1.0,t +6106,100%,Tonga,2.0,t +34973,,Chile,1.0,f +8382,,Chad,1.0,t +16046,100%,Malawi,1.0,f +32378,90%,China,6.0,t +16880,,China,1.0,f +37733,100%,,3.0,t +32975,100%,Micronesia,3.0,f +2851,100%,Uzbekistan,1.0,f +3076,,,2.0,f +37244,,Anguilla,8.0,t +35668,88%,,1.0,t +25281,,,1.0,f +31109,100%,,1.0,f +38245,,Sao Tome and Principe,2.0,f +3076,,,2.0,f +37255,,Turkmenistan,1.0,t +38710,,,1.0,f +48024,,,1.0,f +31096,,Canada,1.0,f +27440,80%,,1.0,f +28674,100%,Russian Federation,2.0,t +29831,100%,Guinea,1.0,t +18247,95%,Iran,80.0,t +46934,100%,Gibraltar,2.0,t +1001,100%,Faroe Islands,2.0,t +6673,,Kenya,3.0,t +7266,,Micronesia,1.0,t +23780,,Faroe Islands,3.0,f +36153,,,1.0,f +17932,100%,Costa Rica,8.0,t +9271,,Faroe Islands,2.0,t +45365,,Kiribati,3.0,t +48281,100%,,1.0,t +20375,80%,Mauritania,1.0,f +28566,78%,Slovakia (Slovak Republic),79.0,t +2416,100%,Guinea,5.0,f +47361,100%,Barbados,10.0,f +48406,100%,Guernsey,2.0,t +6422,,Nauru,1.0,t +9533,,Senegal,16.0,t +44638,,French Guiana,1.0,t +18077,100%,Sao Tome and Principe,139.0,f +17464,,Philippines,8.0,t +46347,,Somalia,6.0,t +19343,0%,Togo,4.0,f +23016,71%,,1.0,f +4264,,,2.0,t +34422,,Maldives,1.0,f +19343,0%,Togo,4.0,f +7186,100%,Russian Federation,1.0,t +19343,0%,Togo,4.0,f +21913,,Reunion,2.0,f +13999,,Nicaragua,3.0,f +41426,,Turkmenistan,1.0,t +43286,,Fiji,8.0,t +44555,,,1.0,t +501,,France,2.0,t +2382,100%,,1.0,f +41641,,Lebanon,3.0,t +6626,100%,Uzbekistan,1.0,f +10711,93%,Uganda,108.0,t +2995,,Malta,2.0,f +30779,,Guinea,1.0,f +4466,100%,Niue,3.0,t +22379,100%,Isle of Man,5.0,t +10384,,Malta,1.0,f +48784,,,2.0,t +27011,,,1.0,f +11743,100%,Netherlands,1.0,f +28828,100%,Isle of Man,198.0,t +28828,100%,Isle of Man,198.0,t +34998,100%,Barbados,1.0,f +40793,100%,,75.0,t +40793,100%,,75.0,t +40793,100%,,75.0,t +35739,,Russian Federation,1.0,t +9327,100%,Niue,1.0,t +38887,,Tunisia,1.0,t +30167,,,1.0,f +40793,100%,,75.0,t +199,,Niger,3.0,t +18077,100%,Sao Tome and Principe,139.0,f +7369,100%,Christmas Island,13.0,t +37293,92%,Russian Federation,15.0,f +28724,100%,Cuba,1.0,f +35190,100%,,1.0,t +22625,100%,Nicaragua,3.0,t +5027,,Kiribati,1.0,f +25716,,Ghana,2.0,f +46439,100%,Rwanda,5.0,f +38379,100%,Jersey,2.0,f +17676,,Pakistan,1.0,f +48084,,Niger,3.0,f +19255,50%,,1.0,f +19658,,Niue,1.0,f +9312,100%,Niue,1.0,t +48581,,Montserrat,8.0,t +20600,100%,Malta,1.0,t +8907,100%,Costa Rica,1.0,f +35377,100%,Anguilla,3.0,f +49726,,French Guiana,2.0,f +24772,90%,Denmark,10.0,f +3998,,,1.0,t +4943,100%,,2.0,t +9058,100%,Bouvet Island (Bouvetoya),1.0,f +24772,90%,Denmark,10.0,f +24772,90%,Denmark,10.0,f +41641,,Lebanon,3.0,t +38432,100%,Gambia,1.0,t +4830,100%,,1.0,f +25089,,Sao Tome and Principe,1.0,f +41656,100%,Gambia,4.0,t +33745,88%,,1.0,f +19343,0%,Togo,4.0,f +47361,100%,Barbados,10.0,f +26541,100%,Nicaragua,12.0,f +35063,100%,,2.0,t +2995,,Malta,2.0,f +6758,,Jersey,1.0,t +47361,100%,Barbados,10.0,f +42278,100%,Isle of Man,3.0,t +27710,,Costa Rica,1.0,t +43408,,Malta,1.0,t +2416,100%,Guinea,5.0,f +10999,,,1.0,f +10090,,Montserrat,1.0,t +32714,,,1.0,f +48409,,Estonia,60.0,t +6209,80%,Nicaragua,9.0,t +36381,100%,Micronesia,1.0,f +14500,100%,Finland,1.0,f +30275,,Mexico,1.0,f +13127,100%,Niger,22.0,f +47792,70%,Puerto Rico,5.0,t +19466,100%,,1.0,t +13127,100%,Niger,22.0,f +6661,,,1.0,t +29647,100%,Peru,1305.0,f +13127,100%,Niger,22.0,f +38229,,,1.0,f +23117,82%,,33.0,f +23117,82%,,33.0,f +23117,82%,,33.0,f +23117,82%,,33.0,f +20334,99%,Niger,171.0,t +19855,100%,Kiribati,37.0,t +702,,,1.0,f +23623,100%,Montserrat,11.0,t +6767,,,3.0,f +32114,,Malta,1.0,t +24920,67%,Congo,1.0,t +36037,,,1.0,t +35577,,,1.0,f +16084,100%,Malta,1.0,f +39256,,,2.0,f +34302,,,2.0,t +20621,,Turkmenistan,1.0,t +23057,,France,16.0,t +15557,,,1.0,t +44530,100%,Faroe Islands,1.0,f +31186,,Grenada,3.0,t +16229,,Pakistan,3.0,f +8607,,Turkmenistan,1.0,f +38422,100%,Afghanistan,1.0,f +44936,,Cocos (Keeling) Islands,1.0,f +49066,,Maldives,2.0,f +13368,100%,,1.0,t +44710,100%,Nicaragua,6.0,f +16395,100%,Micronesia,2.0,t +29370,,Barbados,1.0,t +36093,100%,Denmark,18.0,t +43658,71%,Peru,1.0,f +35049,,,1.0,f +33255,,Uzbekistan,1.0,t +4755,100%,,1.0,f +13127,100%,Niger,22.0,f +8225,95%,Barbados,31.0,f +11533,,Chile,1.0,f +20492,100%,,1.0,f +13127,100%,Niger,22.0,f +13127,100%,Niger,22.0,f +35380,,Chad,1.0,f +9533,,Senegal,16.0,t +9533,,Senegal,16.0,t +41177,100%,Ecuador,6.0,t +28828,100%,Isle of Man,198.0,t +34706,100%,Marshall Islands,8.0,f +44991,,Isle of Man,1.0,f +221,,Afghanistan,7.0,t +32372,90%,Ghana,5.0,f +29502,,Tonga,1.0,t +41301,100%,Costa Rica,9.0,t +23562,,Netherlands,1.0,f +17476,100%,Pakistan,4.0,t +18689,80%,,1.0,t +25942,,,1.0,f +38462,,Guinea,1.0,f +33470,,Barbados,1.0,f +19943,63%,Isle of Man,34.0,f +10268,,,4.0,t +23294,100%,El Salvador,2.0,t +17282,100%,,1.0,f +12240,,Denmark,1.0,f +38371,,Kiribati,1.0,f +40023,100%,Uganda,6.0,t +32603,83%,Nicaragua,4.0,t +9228,100%,Tonga,1.0,f +20334,99%,Niger,171.0,t +4701,100%,Senegal,3.0,f +49686,,,1.0,f +46439,100%,Rwanda,5.0,f +43365,,,2.0,f +30526,100%,Canada,3.0,t +30214,100%,,10.0,t +42619,,Zimbabwe,3.0,t +43365,,,2.0,f +35534,,Ghana,1.0,f +30526,100%,Canada,3.0,t +37328,100%,Tonga,1.0,f +18231,93%,Uganda,7.0,t +43518,100%,,1.0,t +35645,,,1.0,t +356,99%,Wallis and Futuna,32.0,t +27224,100%,Sao Tome and Principe,1.0,t +7396,,Somalia,1.0,f +44722,100%,Niue,2.0,f +2887,,Portugal,1.0,f +18412,83%,Marshall Islands,7.0,f +25772,100%,Costa Rica,2.0,t +1642,100%,Marshall Islands,17.0,f +1749,75%,,2.0,t +15418,,,1.0,f +26173,,Denmark,1.0,f +14073,,Rwanda,1.0,f +42736,100%,,1.0,f +490,100%,Bosnia and Herzegovina,6.0,f +41036,100%,French Polynesia,2.0,f +35909,,,1.0,t +41269,,Philippines,7.0,f +3413,,,1.0,t +47928,100%,Marshall Islands,2.0,f +31835,100%,Russian Federation,2.0,f +27207,,Marshall Islands,1.0,f +11641,100%,Guinea,2.0,t +38691,,,1.0,t +20223,,,1.0,t +23648,100%,Denmark,2.0,t +356,99%,Wallis and Futuna,32.0,t +13112,100%,Faroe Islands,2.0,t +12501,100%,Sao Tome and Principe,2.0,f +9472,,Togo,3.0,f +8161,,,1.0,t +7287,100%,Guinea,1.0,f +13821,100%,United Kingdom,2.0,f +17927,,Chad,1.0,t +34241,,Gibraltar,1.0,t +16129,,Ecuador,2.0,t +31919,,,1.0,t +41343,,,1.0,f +19907,,Micronesia,1.0,t +9008,,,3.0,t +48869,100%,Slovakia (Slovak Republic),22.0,f +1621,100%,,1.0,f +30475,92%,Vietnam,40.0,f +24563,90%,Pakistan,3.0,f +48869,100%,Slovakia (Slovak Republic),22.0,f +8288,,,1.0,f +26819,50%,Tonga,2.0,t +45116,,,1.0,f +10657,,,1.0,t +29126,70%,,1.0,f +27043,,Ghana,2.0,f +10234,,Zimbabwe,1.0,t +4836,,Denmark,1.0,f +750,,Gambia,2.0,t +25044,,Faroe Islands,1.0,t +34433,,,1.0,t +17613,,,1.0,f +39740,100%,Congo,2.0,f +1654,100%,,1.0,t +32643,,Cocos (Keeling) Islands,1.0,t +14433,,,1.0,t +17464,,Philippines,8.0,t +9972,,,1.0,f +9852,100%,Maldives,11.0,f +18815,,Bosnia and Herzegovina,2.0,t +34706,100%,Marshall Islands,8.0,f +12571,,Turkmenistan,1.0,t +9852,100%,Maldives,11.0,f +34064,,Christmas Island,3.0,t +39193,,,1.0,t +14315,100%,France,1.0,f +34706,100%,Marshall Islands,8.0,f +10876,100%,Uzbekistan,2.0,t +9852,100%,Maldives,11.0,f +1222,,Niue,1.0,f +34706,100%,Marshall Islands,8.0,f +10612,100%,Brazil,3.0,f +17081,,,1.0,f +34706,100%,Marshall Islands,8.0,f +34706,100%,Marshall Islands,8.0,f +34706,100%,Marshall Islands,8.0,f +34706,100%,Marshall Islands,8.0,f +276,,,1.0,f +27978,0%,,1.0,f +18914,,,1.0,f +49369,,,1.0,t +24766,,,1.0,t +38753,,Malta,1.0,f +22158,,,1.0,t +10448,100%,,1.0,t +16610,,,1.0,f +3660,,,2.0,f +40460,,,1.0,f +45886,100%,El Salvador,3.0,f +33819,80%,Mauritania,2.0,f +31898,,Puerto Rico,1.0,f +47860,,,1.0,f +19319,100%,Sao Tome and Principe,3.0,f +11888,,Brunei Darussalam,2.0,f +8769,,,1.0,t +528,,,2.0,t +34215,,,1.0,f +19943,63%,Isle of Man,34.0,f +15125,0%,Russian Federation,1.0,f +40466,100%,Russian Federation,5.0,f +38594,100%,,1.0,t +35439,94%,United Kingdom,23.0,t +35439,94%,United Kingdom,23.0,t +34064,,Christmas Island,3.0,t +7015,100%,France,1.0,t +23753,100%,Guernsey,1.0,t +39584,100%,Lithuania,1.0,f +34652,,Guinea,2.0,f +2247,,,1.0,f +25312,100%,,1.0,f +20989,100%,Marshall Islands,8.0,f +47352,75%,Slovenia,1.0,f +16915,,Jersey,2.0,f +2265,,Sao Tome and Principe,4.0,t +16744,60%,Rwanda,5.0,f +221,,Afghanistan,7.0,t +10369,0%,,1.0,f +15570,100%,France,6.0,f +33001,100%,Rwanda,1.0,t +20768,,,1.0,f +31746,80%,Brazil,2.0,t +15202,,,1.0,f +49544,,Zimbabwe,2.0,f +27970,100%,Niue,2.0,t +39954,,Tonga,6.0,f +37267,,Ghana,1.0,t +21420,,Lithuania,1.0,f +34957,,Guinea,1.0,f +3660,,,2.0,f +44246,,Mauritania,1.0,f +49969,100%,,1.0,f +28001,100%,,2.0,f +48680,100%,Costa Rica,1.0,f +24051,,French Guiana,1.0,f +23907,100%,Zimbabwe,1.0,f +7295,,,1.0,t +28700,,Micronesia,1.0,f +39954,,Tonga,6.0,f +25693,67%,Micronesia,3.0,f +27119,94%,Nicaragua,10.0,t +32966,,United Kingdom,1.0,f +31497,,,1.0,f +11209,,Senegal,1.0,f +10512,,Faroe Islands,1.0,f +45064,98%,Anguilla,15.0,f +14397,100%,,1.0,f +10200,100%,Bahrain,2.0,t +30214,100%,,10.0,t +48378,,Kenya,1.0,f +46131,86%,,1.0,f +40609,100%,Micronesia,1.0,t +20334,99%,Niger,171.0,t +8462,100%,,1.0,f +19958,100%,Congo,40.0,t +14898,,Turkmenistan,1.0,t +49960,100%,Rwanda,2.0,f +14895,,Kenya,1.0,f +49689,100%,Niger,6.0,f +36615,100%,Niger,1.0,f +15570,100%,France,6.0,f +30475,92%,Vietnam,40.0,f +35130,100%,Rwanda,13.0,t +31707,100%,Niger,48.0,f +35130,100%,Rwanda,13.0,t +35130,100%,Rwanda,13.0,t +27658,100%,,1.0,t +15570,100%,France,6.0,f +35130,100%,Rwanda,13.0,t +35130,100%,Rwanda,13.0,t +35130,100%,Rwanda,13.0,t +18198,100%,Monaco,1.0,t +15570,100%,France,6.0,f +22721,100%,Ecuador,109.0,f +39039,,,1.0,t +22721,100%,Ecuador,109.0,f +22721,100%,Ecuador,109.0,f +36429,,,1.0,f +41710,100%,,1.0,t +34678,89%,Croatia,4.0,t +38195,,,1.0,t +41467,100%,,2.0,f +10711,93%,Uganda,108.0,t +10711,93%,Uganda,108.0,t +2422,,Gambia,2.0,t +31038,100%,,1.0,f +24620,,Uzbekistan,1.0,f +18885,70%,El Salvador,7.0,t +12339,100%,,1.0,f +9055,,Gibraltar,1.0,f +18885,70%,El Salvador,7.0,t +48703,100%,Niger,1.0,f +46350,,Guinea,1.0,t +11673,,Ghana,3.0,t +40060,90%,Niue,1.0,t +39813,,Cape Verde,1.0,t +40778,100%,Pakistan,7.0,f +20539,100%,Chad,5.0,f +23107,,Niue,1.0,f +17394,0%,Nicaragua,49.0,f +47558,,Micronesia,1.0,f +40318,100%,Reunion,1.0,t +42390,100%,Wallis and Futuna,96.0,t +31004,100%,Indonesia,3.0,f +45780,91%,Palestinian Territory,5.0,f +45272,,,3.0,t +8205,,,1.0,t +9554,,Wallis and Futuna,3.0,f +30027,67%,Korea,2.0,f +10462,,Rwanda,3.0,f +32087,100%,,2.0,f +765,,Mauritania,1.0,t +4567,100%,Indonesia,1.0,t +37176,70%,Isle of Man,1.0,f +13295,100%,Denmark,4.0,f +29776,90%,Russian Federation,2.0,f +31593,100%,Guinea,1.0,f +45706,100%,Kenya,2.0,t +39109,77%,Ukraine,24.0,t +21041,81%,Vietnam,3.0,f +22934,100%,Ecuador,1.0,t +34852,,Niue,10.0,t +15991,100%,Congo,1.0,t +11673,,Ghana,3.0,t +27971,,Ecuador,1.0,f +32308,,Russian Federation,1.0,f +38787,,Faroe Islands,10.0,f +47987,,,1.0,t +11564,100%,Bouvet Island (Bouvetoya),1.0,t +29647,100%,Peru,1305.0,f +34337,100%,Croatia,2.0,f +19654,,Greenland,2.0,f +18885,70%,El Salvador,7.0,t +20334,99%,Niger,171.0,t +29809,100%,,3.0,f +5018,,Togo,1.0,f +23117,82%,,33.0,f +40087,,,1.0,f +37179,,China,1.0,f +18871,,Isle of Man,2.0,t +44000,100%,Micronesia,1.0,f +23117,82%,,33.0,f +11718,,Lebanon,1.0,t +23117,82%,,33.0,f +23117,82%,,33.0,f +22280,,Jersey,1.0,t +26578,45%,Ecuador,10.0,f +29453,,,1.0,f +14595,100%,Russian Federation,1.0,t +33805,,,2.0,t +11014,100%,Sao Tome and Principe,1.0,t +2321,,China,1.0,f +18341,,,1.0,f +2691,,,1.0,t +15865,,,1.0,f +44966,100%,Guinea,21.0,f +30283,100%,Brazil,15.0,f +25983,,Niue,2.0,f +4494,94%,Barbados,3.0,t +18247,95%,Iran,80.0,t +30579,,,1.0,f +49362,100%,Niue,1.0,f +20357,100%,,3.0,t +474,,Palestinian Territory,1.0,f +5700,,Kenya,1.0,f +39248,97%,Cuba,5.0,f +14364,100%,Nauru,9.0,f +31670,,Lebanon,1.0,t +26055,,,1.0,t +9825,,,1.0,t +41866,100%,,4.0,t +41866,100%,,4.0,t +19073,100%,,1.0,t +7349,70%,Djibouti,4.0,f +26578,45%,Ecuador,10.0,f +26578,45%,Ecuador,10.0,f +42895,,Marshall Islands,2.0,t +21131,,Montserrat,1.0,f +50085,100%,Malta,1.0,t +22527,,Lebanon,1.0,t +31707,100%,Niger,48.0,f +25987,,Venezuela,7.0,t +22794,50%,Cape Verde,36.0,t +22794,50%,Cape Verde,36.0,t +50071,100%,Nicaragua,1.0,f +13891,100%,Ecuador,1.0,t +35023,100%,,3.0,f +34953,100%,Uzbekistan,4.0,t +28828,100%,Isle of Man,198.0,t +48562,100%,,4.0,f +27365,30%,Uzbekistan,3.0,f +49467,,France,1.0,t +44240,100%,Malta,1.0,f +28668,100%,Gibraltar,1.0,t +46264,,,1.0,f +30283,100%,Brazil,15.0,f +24896,100%,Algeria,50.0,t +40610,,,1.0,f +24896,100%,Algeria,50.0,t +19675,,,1.0,t +20095,,,1.0,t +41036,100%,French Polynesia,2.0,f +32656,,Kenya,5.0,f +29647,100%,Peru,1305.0,f +38829,,Canada,1.0,f +19757,100%,Niger,3.0,f +14157,20%,Congo,3.0,f +27779,91%,,1.0,f +15888,30%,,2.0,t +16639,,Niger,2.0,t +2654,100%,Afghanistan,2.0,t +1820,100%,El Salvador,2.0,f +20180,,Lebanon,1.0,f +34752,,Chad,1.0,t +8739,100%,Lebanon,1.0,f +35083,,,1.0,f +33783,0%,Lebanon,1.0,f +5919,,Niue,1.0,f +5340,,French Guiana,2.0,t +23083,,Micronesia,1.0,f +48874,100%,Somalia,4.0,t +44601,100%,Costa Rica,1.0,t +19060,,France,1.0,f +2762,100%,Micronesia,1.0,t +8623,100%,Jersey,1.0,f +48850,,,1.0,f +538,100%,Guinea,1.0,f +31929,,Bouvet Island (Bouvetoya),1.0,f +13429,,,1.0,f +20334,99%,Niger,171.0,t +28302,100%,Marshall Islands,1.0,t +14364,100%,Nauru,9.0,f +4757,100%,,1.0,f +34496,,Niue,1.0,f +1156,90%,,1.0,f +37646,100%,Estonia,60.0,f +39610,,Andorra,2.0,t +37274,,Tonga,1.0,t +16527,100%,Palestinian Territory,2.0,f +12028,,Cape Verde,1.0,f +32661,,,3.0,t +43219,100%,,1.0,t +41124,100%,Zimbabwe,3.0,t +35221,100%,Turks and Caicos Islands,30.0,t +23877,100%,,1.0,f +43225,100%,,3.0,f +28887,100%,Ghana,8.0,f +15000,100%,Cape Verde,1.0,f +34,,Rwanda,2.0,f +28887,100%,Ghana,8.0,f +37244,,Anguilla,8.0,t +37244,,Anguilla,8.0,t +37244,,Anguilla,8.0,t +37244,,Anguilla,8.0,t +11154,,,1.0,f +49924,67%,Vanuatu,2.0,f +7318,100%,Niger,2.0,f +44706,100%,Kiribati,1.0,t +27726,100%,Tonga,5.0,f +45953,100%,Micronesia,1.0,f +36876,,Russian Federation,1.0,f +39998,100%,Micronesia,4.0,t +21886,,Croatia,5.0,t +32493,,Russian Federation,1.0,f +12610,0%,Gibraltar,1.0,f +47400,100%,,1.0,t +24071,100%,Indonesia,22.0,f +42845,,Estonia,2.0,t +12009,,Faroe Islands,1.0,f +39954,,Tonga,6.0,f +39904,50%,Isle of Man,1.0,f +49924,67%,Vanuatu,2.0,f +42362,,,1.0,f +27907,100%,Puerto Rico,21.0,f +32074,,,1.0,f +20377,,,1.0,f +23348,,Slovakia (Slovak Republic),1.0,t +28647,70%,French Guiana,2.0,t +41175,,,1.0,t +34765,100%,Marshall Islands,3.0,f +39982,,Estonia,1.0,f +19760,100%,,1.0,t +48144,,China,1.0,t +29195,,Nicaragua,1.0,f +11081,,Faroe Islands,2.0,f +259,,Mexico,1.0,f +2187,,Togo,1.0,f +18042,100%,Uganda,2.0,t +28828,100%,Isle of Man,198.0,t +33901,100%,France,1.0,f +30274,100%,,2.0,f +9497,90%,,3.0,t +35358,,Indonesia,1.0,t +16136,67%,,1.0,f +28414,100%,Uzbekistan,22.0,f +31289,,,1.0,t +24950,,Denmark,1.0,t +6657,,,1.0,f +19488,,Cocos (Keeling) Islands,1.0,f +47948,,Ghana,1.0,t +1006,100%,,1.0,t +27582,,Marshall Islands,1.0,f +32494,,,1.0,t +20364,,,1.0,t +29144,100%,Nicaragua,3.0,t +17007,,Lebanon,1.0,f +5841,100%,,1.0,f +36745,,Papua New Guinea,1.0,t +16262,100%,Guernsey,3.0,t +2133,,,1.0,f +32560,100%,Jersey,1.0,f +3798,100%,,2.0,f +17394,0%,Nicaragua,49.0,f +7996,,Sao Tome and Principe,1.0,f +14916,100%,,1.0,t +37999,100%,Senegal,20.0,t +17394,0%,Nicaragua,49.0,f +40617,,Niue,1.0,f +32415,100%,,2.0,t +38745,100%,Christmas Island,1.0,t +12537,,Maldives,1.0,f +12861,100%,Pakistan,1.0,f +9628,100%,Slovakia (Slovak Republic),2.0,f +21719,100%,Bosnia and Herzegovina,1.0,t +41750,,,1.0,t +44283,,Gambia,1.0,f +34491,,Kenya,1.0,t +23468,,Russian Federation,1.0,t +49618,100%,Maldives,1.0,t +32703,100%,,2.0,f +39496,100%,Ukraine,2.0,t +40286,50%,Monaco,1.0,t +32435,100%,Zimbabwe,1.0,f +20285,,Bosnia and Herzegovina,1.0,f +33569,100%,Turkmenistan,1.0,t +24162,50%,,1.0,f +2558,,Guinea,1.0,f +159,,Chad,1.0,t +38149,100%,Niger,12.0,f +24546,50%,Zimbabwe,2.0,f +10465,33%,,1.0,f +23304,,Barbados,1.0,t +24330,,Pakistan,1.0,f +7093,,Bosnia and Herzegovina,1.0,f +16357,100%,Micronesia,1.0,t +39204,100%,Brunei Darussalam,1.0,f +11650,,Tanzania,1.0,f +10669,100%,Monaco,2.0,f +32822,75%,,1.0,t +20334,99%,Niger,171.0,t +36093,100%,Denmark,18.0,t +42740,100%,Canada,3.0,f +10533,100%,Indonesia,1.0,t +41182,,,1.0,f +33171,,Gibraltar,1.0,f +16229,,Pakistan,3.0,f +46983,,,1.0,f +33842,,Russian Federation,2.0,t +32087,100%,,2.0,f +23338,,Nicaragua,1.0,f +47586,,Vanuatu,1.0,f +28828,100%,Isle of Man,198.0,t +26069,,,1.0,t +5365,100%,,3.0,f +13356,100%,El Salvador,2.0,t +48869,100%,Slovakia (Slovak Republic),22.0,f +15111,,Micronesia,1.0,f +49716,,Ghana,1.0,t +9278,100%,Netherlands,10.0,f +17800,100%,,1.0,f +47518,,French Guiana,2.0,t +35221,100%,Turks and Caicos Islands,30.0,t +39994,50%,Russian Federation,1.0,t +35075,100%,,1.0,t +48429,40%,Kiribati,2.0,t +30800,100%,Micronesia,2.0,f +28001,100%,,2.0,f +9486,,,1.0,f +49541,100%,French Guiana,6.0,f +44569,,French Polynesia,1.0,t +13657,100%,,2.0,t +47748,,,1.0,f +5987,100%,Monaco,1.0,t +21865,100%,,3.0,t +17701,100%,,4.0,t +39838,100%,Cuba,1.0,f +15375,,,1.0,f +15267,100%,Sao Tome and Principe,2.0,t +17908,100%,Mexico,2.0,f +13956,,Niue,2.0,t +42708,100%,Papua New Guinea,2.0,t +21701,100%,,1.0,f +6337,,,1.0,t +39248,97%,Cuba,5.0,f +49903,100%,Indonesia,1.0,f +34737,92%,,2.0,t +29166,100%,Mauritania,3.0,f +24438,,,1.0,f +35922,100%,Switzerland,5.0,t +35271,80%,Chad,1.0,t +15928,,El Salvador,1.0,t +49400,,,1.0,t +48915,100%,Puerto Rico,1.0,t +11919,,Cuba,1.0,f +17838,100%,Tonga,2.0,f +31202,90%,Kiribati,107.0,f +31202,90%,Kiribati,107.0,f +30475,92%,Vietnam,40.0,f +30475,92%,Vietnam,40.0,f +49478,,Tanzania,1.0,t +33168,100%,Senegal,1.0,t +24323,100%,Faroe Islands,3.0,f +30475,92%,Vietnam,40.0,f +30475,92%,Vietnam,40.0,f +20012,,Costa Rica,2.0,f +38406,96%,Russian Federation,6.0,t +38149,100%,Niger,12.0,f +33120,,Mauritania,2.0,f +31202,90%,Kiribati,107.0,f +25047,,,1.0,f +2087,100%,Lithuania,1.0,f +25985,,,1.0,t +43060,,Niger,1.0,f +36482,,,1.0,f +30475,92%,Vietnam,40.0,f +43821,,Vietnam,3.0,t +32577,100%,Isle of Man,1.0,t +48743,100%,Niue,1.0,f +33684,,Lebanon,1.0,f +17838,100%,Tonga,2.0,f +47323,50%,Turks and Caicos Islands,7.0,f +20774,,,2.0,t +47323,50%,Turks and Caicos Islands,7.0,f +39348,,,1.0,f +4908,,Sao Tome and Principe,1.0,f +48455,89%,Uzbekistan,20.0,t +4997,100%,Jersey,6.0,f +9843,100%,,1.0,t +18047,,Maldives,1.0,f +22318,,,1.0,f +42121,,Canada,1.0,t +47230,,,1.0,t +30674,100%,,1.0,t +37244,,Anguilla,8.0,t +6108,60%,Peru,1.0,f +45544,100%,Niue,1.0,t +44647,,,1.0,f +43878,,Peru,1.0,f +47395,100%,,1.0,f +32732,,,1.0,f +37614,,,2.0,t +17817,100%,Croatia,13.0,t +30508,,,1.0,f +17817,100%,Croatia,13.0,t +16366,100%,,1.0,f +37244,,Anguilla,8.0,t +42662,50%,Russian Federation,1.0,f +47811,100%,Vietnam,2.0,f +4461,,,1.0,t +17633,,Isle of Man,1.0,f +21140,100%,Bahrain,1.0,t +41546,100%,Mauritania,21.0,f +21588,,Barbados,1.0,f +32926,,Marshall Islands,1.0,f +43952,100%,Mauritania,1.0,f +18892,100%,Gibraltar,2.0,t +36401,,,1.0,t +13925,100%,Nicaragua,1.0,f +41951,100%,Cuba,2.0,f +32620,100%,Gambia,5.0,f +17781,100%,Uzbekistan,2.0,t +21416,100%,Uganda,1.0,t +13523,100%,Faroe Islands,1.0,f +11125,100%,Nicaragua,12.0,t +20334,99%,Niger,171.0,t +4267,100%,Senegal,22.0,t +38871,,,1.0,t +22709,,Jersey,1.0,f +45737,,Tonga,29.0,t +30475,92%,Vietnam,40.0,f +30475,92%,Vietnam,40.0,f +30475,92%,Vietnam,40.0,f +30475,92%,Vietnam,40.0,f +30475,92%,Vietnam,40.0,f +27972,94%,Brazil,27.0,f +46256,,Zimbabwe,2.0,t +30475,92%,Vietnam,40.0,f +30475,92%,Vietnam,40.0,f +16371,95%,Bouvet Island (Bouvetoya),29.0,f +23305,100%,Philippines,11.0,f +39425,100%,Micronesia,3.0,t +23294,100%,El Salvador,2.0,t +31159,0%,United Kingdom,1.0,f +26697,100%,Denmark,1.0,t +47205,100%,,4.0,f +38908,,Bosnia and Herzegovina,1.0,t +22721,100%,Ecuador,109.0,f +27552,,Fiji,1.0,f +19440,100%,Venezuela,1.0,t +47590,,Russian Federation,4.0,t +982,99%,Marshall Islands,32.0,f +23188,,Isle of Man,1.0,t +49094,,Nicaragua,1.0,f +21911,,Rwanda,2.0,t +10481,,,1.0,t +29693,100%,,1.0,t +41122,,Uzbekistan,1.0,t +3121,95%,Zimbabwe,9.0,t +42742,,Sao Tome and Principe,1.0,f +1739,,Chile,1.0,f +12472,100%,,1.0,f +13473,50%,Somalia,2.0,t +9676,,France,1.0,t +38079,,French Guiana,1.0,f +45313,,,1.0,f +37233,,,1.0,f +19446,,United Kingdom,1.0,t +9584,100%,Canada,1.0,f +9343,100%,Afghanistan,10.0,t +1163,100%,Puerto Rico,1.0,f +10204,100%,Nicaragua,5.0,t +18177,93%,Fiji,10.0,f +20210,100%,Afghanistan,2.0,f +28828,100%,Isle of Man,198.0,t +14,,Grenada,1.0,f +36361,,Isle of Man,1.0,f +20329,100%,Reunion,21.0,f +6049,100%,Isle of Man,1.0,f +31459,100%,Gibraltar,2.0,f +23024,,,1.0,t +18480,90%,Monaco,4.0,t +7387,,French Guiana,2.0,t +25024,100%,Peru,2.0,f +20502,100%,Costa Rica,3.0,f +18972,100%,,1.0,f +35443,100%,French Guiana,1.0,t +48797,100%,Gibraltar,2.0,t +465,100%,,4.0,t +29647,100%,Peru,1305.0,f +26085,,,1.0,t +37266,,Gibraltar,1.0,f +47884,,,1.0,f +7304,,France,1.0,t +41595,,Uzbekistan,1.0,f +29647,100%,Peru,1305.0,f +30018,,Finland,1.0,f +5874,100%,Guinea,1.0,f +10186,,Turks and Caicos Islands,1.0,f +22794,50%,Cape Verde,36.0,t +22398,,China,1.0,t +29647,100%,Peru,1305.0,f +32664,100%,Congo,4.0,f +11236,,Uganda,1.0,f +30512,100%,,4.0,t +26580,100%,Uzbekistan,2.0,t +40307,,Nicaragua,1.0,t +2759,,Svalbard & Jan Mayen Islands,1.0,t +40127,,Faroe Islands,2.0,t +32823,,,1.0,f +5616,,Jersey,1.0,f +31202,90%,Kiribati,107.0,f +31202,90%,Kiribati,107.0,f +31202,90%,Kiribati,107.0,f +17394,0%,Nicaragua,49.0,f +26148,100%,Kiribati,10.0,t +39996,,Lebanon,1.0,f +6903,75%,,2.0,t +48661,100%,Zimbabwe,1.0,f +29166,100%,Mauritania,3.0,f +45933,,,1.0,f +45959,100%,Indonesia,1.0,t +20329,100%,Reunion,21.0,f +9837,,Tonga,1.0,t +34887,,French Guiana,1.0,f +48126,,,1.0,f +6944,,Peru,1.0,f +38458,100%,Montserrat,6.0,t +17877,0%,Lithuania,1.0,t +16047,80%,Uzbekistan,6.0,f +36918,,Tonga,1.0,t +23802,,,1.0,f +39143,89%,,33.0,f +34765,100%,Marshall Islands,3.0,f +3127,100%,Rwanda,36.0,f +39143,89%,,33.0,f +11586,,Nicaragua,1.0,t +35021,,,1.0,t +3127,100%,Rwanda,36.0,f +3127,100%,Rwanda,36.0,f +18401,100%,,1.0,f +46256,,Zimbabwe,2.0,t +10134,100%,Uzbekistan,7.0,t +32715,,French Guiana,1.0,t +21371,,Guinea,2.0,f +10889,100%,Marshall Islands,2.0,t +6838,96%,Spain,59.0,t +26699,,Jersey,1.0,f +29332,100%,,2.0,f +23944,,Isle of Man,1.0,t +29647,100%,Peru,1305.0,f +2112,100%,Nicaragua,2.0,f +31707,100%,Niger,48.0,f +32417,100%,Fiji,1.0,t +2265,,Sao Tome and Principe,4.0,t +41992,,,1.0,t +31689,40%,Guernsey,1.0,t +10858,100%,Maldives,1.0,t +26800,100%,,1.0,t +22986,,,1.0,f +19917,,Lebanon,2.0,t +9420,,,1.0,f +38977,100%,Sao Tome and Principe,1.0,f +13026,100%,,1.0,t +47608,,Faroe Islands,1.0,t +28205,,Iraq,22.0,f +14399,100%,China,1.0,t +29361,100%,,1.0,f +49628,100%,,1.0,f +32052,,Venezuela,2.0,f +969,,Pakistan,3.0,f +39037,,Isle of Man,2.0,t +17464,,Philippines,8.0,t +11197,,Turkmenistan,3.0,t +48544,,Croatia,1.0,t +31896,86%,Niue,1.0,t +31429,,,1.0,f +31031,100%,Somalia,1.0,f +3070,100%,Maldives,1.0,t +12088,100%,Kiribati,8.0,f +13330,,Nicaragua,1.0,f +27334,100%,China,16.0,f +42128,100%,Faroe Islands,1.0,t +20210,100%,Afghanistan,2.0,f +25806,100%,Spain,3.0,t +12076,,Sao Tome and Principe,1.0,t +2585,100%,Svalbard & Jan Mayen Islands,20.0,t +25806,100%,Spain,3.0,t +40593,,Nauru,10.0,t +25677,100%,Peru,2.0,f +43559,100%,,1.0,t +49063,,,1.0,t +8590,100%,Mauritania,1.0,t +33839,,,1.0,f +33065,100%,Uzbekistan,6.0,f +27726,100%,Tonga,5.0,f +24814,100%,,3.0,f +45737,,Tonga,29.0,t +44035,100%,Uruguay,1.0,t +19370,90%,Zimbabwe,3.0,t +41546,100%,Mauritania,21.0,f +6776,,,1.0,t +20000,,,1.0,f +3380,,Micronesia,3.0,f +23950,100%,Micronesia,2.0,t +42969,80%,Uzbekistan,2.0,f +14797,,,1.0,f +42827,100%,Nicaragua,3.0,t +6501,100%,,1.0,f +45532,,,1.0,f +4365,100%,Anguilla,1.0,t +28702,100%,Russian Federation,2.0,t +40651,,,2.0,f +42759,,,1.0,t +34303,,Marshall Islands,1.0,f +49108,88%,,1.0,t +13262,,Barbados,1.0,f +31061,100%,Nicaragua,6.0,f +33204,100%,,1.0,f +44503,,Nauru,1.0,t +20091,0%,Anguilla,2.0,t +27604,75%,,1.0,t +39377,100%,Ukraine,11.0,t +7555,100%,Somalia,1.0,t +9343,100%,Afghanistan,10.0,t +41546,100%,Mauritania,21.0,f +22640,,Rwanda,8.0,t +41559,100%,Montserrat,4.0,t +15773,100%,,2.0,f +44434,,Lebanon,1.0,t +2772,,,1.0,t +16130,100%,Ghana,3.0,t +5003,100%,Jersey,8.0,f +42974,,Lebanon,3.0,t +41195,100%,,1.0,f +26578,45%,Ecuador,10.0,f +47587,,Faroe Islands,1.0,f +21010,,,1.0,f +2338,,Chad,1.0,f +11041,100%,,1.0,t +5606,,Sao Tome and Principe,1.0,f +16217,100%,Finland,1.0,t +5656,,Niue,2.0,f +17394,0%,Nicaragua,49.0,f +47560,,,1.0,t +46344,50%,Monaco,1.0,f +34737,92%,,2.0,t +2595,100%,Tonga,1.0,f +8762,,,1.0,t +34765,100%,Marshall Islands,3.0,f +40976,,Denmark,1.0,f +12402,67%,,1.0,t +17397,,Russian Federation,1.0,f +31061,100%,Nicaragua,6.0,f +40651,,,2.0,f +21659,100%,Afghanistan,3.0,f +47747,100%,,1.0,t +14570,,,1.0,f +43513,75%,,1.0,f +15196,,,1.0,f +4900,,,1.0,f +20120,100%,Wallis and Futuna,10.0,f +4997,100%,Jersey,6.0,f +43526,,Andorra,1.0,f +43771,,,1.0,t +48499,,Nicaragua,2.0,f +24473,,Costa Rica,17.0,f +45946,100%,,1.0,f +4828,100%,Philippines,1.0,t +38869,,,1.0,t +24473,,Costa Rica,17.0,f +48933,,Zimbabwe,1.0,f +42043,,,1.0,f +41002,,Sao Tome and Principe,1.0,t +23587,83%,Sao Tome and Principe,1.0,f +1440,100%,Gibraltar,4.0,t +28341,,France,1.0,t +32613,,Marshall Islands,1.0,t +19063,,Chad,1.0,f +15299,,,1.0,t +36752,,Faroe Islands,1.0,f +42816,100%,Marshall Islands,1.0,t +24473,,Costa Rica,17.0,f +45311,,Nicaragua,1.0,t +11128,,Zimbabwe,1.0,t +2064,100%,Wallis and Futuna,2.0,f +24473,,Costa Rica,17.0,f +37028,100%,,1.0,f +14821,,Afghanistan,1.0,t +46035,100%,United Kingdom,1.0,f +18568,,Russian Federation,1.0,f +22331,99%,Rwanda,50.0,t +37061,60%,Uzbekistan,1.0,f +49820,,Guinea,1.0,f +41401,,Lebanon,1.0,f +1219,100%,Peru,2.0,f +34458,90%,Kiribati,4.0,t +10075,90%,Jersey,2.0,f +20977,,French Polynesia,1.0,f +26042,,Afghanistan,4.0,f +355,80%,China,9.0,t +14061,75%,France,2.0,t +41440,,Peru,1.0,t +28828,100%,Isle of Man,198.0,t +4098,,Peru,1.0,t +3831,100%,Reunion,3.0,t +6375,,United Kingdom,2.0,f +7444,50%,Somalia,1.0,f +8362,100%,Malawi,2.0,t +2210,100%,,2.0,f +16960,100%,Togo,2.0,t +32191,,Pakistan,1.0,f +23117,82%,,33.0,f +24127,100%,Russian Federation,4.0,f +14653,80%,Kenya,2.0,t +10935,,Cape Verde,1.0,t +28566,78%,Slovakia (Slovak Republic),79.0,t +24127,100%,Russian Federation,4.0,f +42390,100%,Wallis and Futuna,96.0,t +40999,100%,Chile,2.0,f +17621,,Rwanda,1.0,t +32250,,Togo,1.0,f +37395,,Malta,1.0,t +42619,,Zimbabwe,3.0,t +49237,100%,Nicaragua,3.0,t +7484,100%,Pakistan,1.0,t +25295,100%,Slovakia (Slovak Republic),3.0,t +16616,100%,,1.0,f +27881,,,1.0,f +45125,,Nicaragua,1.0,f +10441,100%,,2.0,f +20022,,Malawi,1.0,f +39627,,Russian Federation,2.0,t +269,100%,Cuba,1.0,t +31186,,Grenada,3.0,t +25,100%,Isle of Man,1.0,f +38399,100%,,1.0,t +23595,100%,,1.0,t +29141,100%,Togo,3.0,t +31086,,France,1.0,f +9110,100%,Malawi,1.0,t +47089,100%,Tunisia,1.0,t +27596,,Russian Federation,2.0,t +41934,100%,,2.0,f +10204,100%,Nicaragua,5.0,t +12162,82%,,2.0,f +38317,100%,Isle of Man,2.0,f +34732,,Uzbekistan,2.0,t +20329,100%,Reunion,21.0,f +29871,,Kenya,1.0,t +41659,100%,,1.0,t +15526,100%,,1.0,t +38279,93%,Mauritania,8.0,t +42390,100%,Wallis and Futuna,96.0,t +28414,100%,Uzbekistan,22.0,f +17394,0%,Nicaragua,49.0,f +699,100%,Uzbekistan,3.0,f +39954,,Tonga,6.0,f +30899,,Reunion,8.0,f +49821,,,1.0,t +4296,90%,,1.0,t +47200,67%,Costa Rica,1.0,t +33830,,,1.0,f +46838,100%,Bahrain,1.0,f +43095,100%,Chad,2.0,t +29490,91%,Tanzania,2.0,t +27203,,Bouvet Island (Bouvetoya),13.0,f +45074,100%,Uzbekistan,1.0,f +11827,90%,Venezuela,2.0,t +19065,,Chad,1.0,t +7492,100%,Guinea,3.0,f +16542,100%,Croatia,2.0,t +32527,100%,Tonga,7.0,f +28987,,Cocos (Keeling) Islands,1.0,f +44932,,Kenya,2.0,f +22913,,Tonga,1.0,t +49630,,Jersey,1.0,t +48499,,Nicaragua,2.0,f +29647,100%,Peru,1305.0,f +24896,100%,Algeria,50.0,t +3127,100%,Rwanda,36.0,f +42390,100%,Wallis and Futuna,96.0,t +3127,100%,Rwanda,36.0,f +3127,100%,Rwanda,36.0,f +25557,100%,Reunion,2.0,t +36724,,Zimbabwe,1.0,t +32386,97%,Indonesia,19.0,f +33337,,,1.0,f +6485,,Marshall Islands,1.0,t +17417,,Denmark,11.0,f +33823,78%,France,17.0,t +43641,100%,,3.0,t +44373,,Malta,1.0,t +2077,,Svalbard & Jan Mayen Islands,1.0,t +3127,100%,Rwanda,36.0,f +1591,,Maldives,1.0,t +16743,,,1.0,f +24130,100%,Lebanon,1.0,f +36716,100%,Bosnia and Herzegovina,3.0,f +27756,100%,Denmark,1.0,f +36568,100%,,1.0,f +4967,100%,Isle of Man,1.0,f +31113,,Somalia,1.0,f +20294,,Zimbabwe,1.0,t +48534,,Chad,1.0,f +40466,100%,Russian Federation,5.0,f +8075,,Faroe Islands,1.0,t +25819,92%,,6.0,t +18718,100%,Venezuela,1.0,t +955,,,1.0,t +7074,100%,Isle of Man,2.0,f +49512,,Netherlands,1.0,t +14295,,Croatia,1.0,f +28930,,Venezuela,1.0,f +27431,,,1.0,f +17717,,Russian Federation,2.0,f +16229,,Pakistan,3.0,f +39710,,Lebanon,1.0,f +3961,100%,Fiji,8.0,f +459,100%,Guernsey,1.0,f +31653,,Slovenia,1.0,f +31061,100%,Nicaragua,6.0,f +22331,99%,Rwanda,50.0,t +7314,,,1.0,t +31061,100%,Nicaragua,6.0,f +9728,100%,United Kingdom,1.0,t +24632,100%,Croatia,4.0,t +19308,,Tanzania,1.0,f +15945,,Brazil,1.0,f +11822,70%,,7.0,t +19573,,Marshall Islands,1.0,t +29647,100%,Peru,1305.0,f +43716,,Cape Verde,1.0,f +19993,,,1.0,f +14514,,China,80.0,t +44422,60%,Maldives,1.0,f +41367,,France,1.0,f +16788,,Bosnia and Herzegovina,1.0,t +43302,100%,Reunion,1.0,t +22801,50%,Faroe Islands,1.0,t +15031,50%,Tanzania,3.0,t +19684,,Brazil,1.0,f +42084,,Sao Tome and Principe,2.0,f +9852,100%,Maldives,11.0,f +306,100%,El Salvador,3.0,f +45736,100%,,1.0,t +32708,100%,Sao Tome and Principe,2.0,f +40421,96%,Jersey,29.0,t +39258,,,2.0,t +27923,,Tonga,1.0,f +17394,0%,Nicaragua,49.0,f +19195,100%,,1.0,t +3618,,,1.0,f +6118,,Denmark,3.0,f +3014,,Niger,1.0,f +35157,100%,Malawi,2.0,t +17394,0%,Nicaragua,49.0,f +37248,,Senegal,2.0,t +12545,,,1.0,t +17394,0%,Nicaragua,49.0,f +17394,0%,Nicaragua,49.0,f +33574,60%,Brazil,4.0,t +28828,100%,Isle of Man,198.0,t +47886,100%,Turkmenistan,1.0,t +28970,,Maldives,1.0,t +8045,,Russian Federation,1.0,t +43158,,Mauritania,1.0,t +22633,,United Kingdom,1.0,t +16371,95%,Bouvet Island (Bouvetoya),29.0,f +22722,100%,Vanuatu,1.0,f +8986,,,1.0,f +36540,100%,,33.0,t +36540,100%,,33.0,t +36540,100%,,33.0,t +40648,100%,,1.0,f +48409,,Estonia,60.0,t +17926,,Faroe Islands,1.0,f +22620,,Isle of Man,1.0,f +25332,100%,Monaco,1.0,f +29354,100%,Russian Federation,2.0,t +38053,100%,,1.0,f +43926,80%,Zimbabwe,2.0,t +22737,,,1.0,f +13405,,Denmark,1.0,f +45536,,Indonesia,1.0,t +47008,100%,Malta,1.0,f +23654,100%,Uzbekistan,23.0,f +33290,100%,Ecuador,4.0,t +24358,100%,Cape Verde,1.0,f +39783,,,1.0,t +39820,,Bosnia and Herzegovina,1.0,t +24775,97%,Montserrat,44.0,f +25730,,Kiribati,3.0,t +31707,100%,Niger,48.0,f +45329,,,1.0,f +23502,100%,Gambia,2.0,f +21655,,,1.0,f +21635,100%,,1.0,t +33917,,,1.0,f +36576,100%,Tonga,4.0,t +4547,,Maldives,1.0,f +160,90%,Andorra,2.0,t +30145,,,3.0,t +11189,100%,Micronesia,1.0,t +3446,,China,3.0,f +41311,100%,,1.0,f +14835,100%,,3.0,t +11358,100%,Iceland,4.0,t +31594,100%,Philippines,19.0,t +31480,50%,French Guiana,2.0,t +26979,100%,,1.0,f +18505,63%,Gibraltar,1.0,f +41132,100%,Kenya,3.0,f +29914,,Guinea,3.0,f +982,99%,Marshall Islands,32.0,f +21386,100%,Isle of Man,1.0,t +22721,100%,Ecuador,109.0,f +36216,,Holy See (Vatican City State),1.0,f +36607,100%,,2.0,t +982,99%,Marshall Islands,32.0,f +16480,,Wallis and Futuna,1.0,f +22721,100%,Ecuador,109.0,f +30283,100%,Brazil,15.0,f +4659,,,1.0,t +24896,100%,Algeria,50.0,t +23292,,Niue,1.0,f +38039,80%,,2.0,t +6058,,,1.0,t +49599,100%,Monaco,4.0,t +29888,,,1.0,f +48242,,Anguilla,1.0,f +48386,100%,,1.0,t +1176,,,1.0,t +18042,100%,Uganda,2.0,t +24653,80%,Rwanda,2.0,t +1191,98%,,12.0,t +19805,100%,Papua New Guinea,1.0,t +35588,,,1.0,t +42251,100%,Palestinian Territory,2.0,f +19811,90%,Nicaragua,21.0,t +39401,100%,Wallis and Futuna,2.0,t +6118,,Denmark,3.0,f +37296,,Malta,2.0,t +877,,,1.0,f +32592,50%,,1.0,t +7816,100%,,1.0,f +28147,100%,Faroe Islands,1.0,t +42007,,Niue,1.0,t +29479,33%,,1.0,t +43069,,Mauritania,1.0,t +46466,,Sao Tome and Principe,2.0,t +10479,100%,Palestinian Territory,3.0,t +15543,80%,,1.0,f +49693,,,1.0,t +7790,80%,Philippines,1.0,f +29408,100%,Niue,3.0,t +36439,100%,Niue,1.0,f +23070,,,2.0,f +29197,,,1.0,t +35245,100%,,1.0,f +445,,Malta,1.0,f +37906,,,1.0,t +49825,100%,Pakistan,7.0,t +46481,,Philippines,4.0,t +22721,100%,Ecuador,109.0,f +31739,91%,,1.0,f +5057,100%,Zimbabwe,23.0,t +46889,100%,,1.0,t +39282,100%,Gambia,2.0,f +19874,100%,,1.0,f +36105,100%,Cape Verde,1.0,t +46587,100%,Ecuador,1.0,t +9642,,,1.0,f +41432,,,1.0,f +37393,,Costa Rica,1.0,f +28628,100%,Gambia,1.0,t +25704,,Netherlands Antilles,1.0,t +1737,100%,Finland,3.0,f +5580,100%,Somalia,2.0,t +37841,0%,,1.0,t +31537,,,1.0,t +17089,100%,Gibraltar,2.0,t +48733,,,1.0,f +15138,,Lebanon,2.0,t +2941,,Tonga,2.0,t +11936,,,1.0,t +2167,,,1.0,t +20856,,,1.0,t +7033,100%,Vietnam,1.0,t +16805,100%,Tonga,1.0,t +27693,,Malta,1.0,f +47035,100%,,3.0,t +47877,,Faroe Islands,1.0,f +24775,97%,Montserrat,44.0,f +7945,0%,Cocos (Keeling) Islands,1.0,t +49442,100%,Australia,1.0,t +12870,,Canada,1.0,f +26706,,Anguilla,1.0,f +48049,,,1.0,f +44807,,Saint Helena,1.0,t +24775,97%,Montserrat,44.0,f +47286,100%,Micronesia,2.0,f +26114,100%,,1.0,t +20124,100%,France,2.0,t +45538,,Australia,1.0,f +27366,100%,Uzbekistan,9.0,t +46684,100%,Gibraltar,1.0,f +39649,100%,Uzbekistan,2.0,t +46055,,Latvia,2.0,t +42028,50%,,1.0,t +6533,,Gibraltar,4.0,f +45863,100%,,2.0,t +4774,100%,Niue,4.0,t +24618,,Sao Tome and Principe,4.0,f +22076,50%,Kenya,1.0,f +43155,,Jersey,1.0,f +17571,83%,,1.0,f +23650,100%,Gambia,3.0,f +28933,,Chad,3.0,t +23650,100%,Gambia,3.0,f +34994,100%,Monaco,1.0,t +27530,,Nicaragua,1.0,f +22794,50%,Cape Verde,36.0,t +41938,100%,Malta,3.0,f +15342,,Malawi,1.0,t +44375,,Sao Tome and Principe,1.0,f +24952,100%,Barbados,1.0,f +42084,,Sao Tome and Principe,2.0,f +30475,92%,Vietnam,40.0,f +38886,,Marshall Islands,1.0,f +19654,,Greenland,2.0,f +32181,,,1.0,t +42918,,,1.0,f +18943,100%,Mauritania,2.0,f +48504,,Netherlands,5.0,f +15981,,Slovakia (Slovak Republic),1.0,f +30899,,Reunion,8.0,f +34881,100%,China,6.0,f +41284,,Kenya,1.0,f +7231,100%,Uzbekistan,3.0,t +49718,100%,Malta,1.0,f +12548,90%,Togo,3.0,t +7587,67%,Canada,1.0,t +17391,,Brazil,1.0,t +14878,,,1.0,f +20136,60%,Croatia,1.0,f +32198,100%,France,3.0,t +37272,100%,,1.0,f +2650,100%,Kiribati,2.0,f +35254,,Niue,2.0,f +20207,,Pakistan,1.0,f +42458,97%,Indonesia,14.0,t +30571,65%,Barbados,3.0,t +27444,,Guinea,2.0,t +42965,100%,Uzbekistan,11.0,t +41291,,Brazil,3.0,f +39342,100%,Micronesia,3.0,f +26845,100%,,1.0,f +5003,100%,Jersey,8.0,f +6781,100%,Tanzania,1.0,f +18826,,Tonga,1.0,t +7723,,Puerto Rico,1.0,t +5908,,,2.0,t +41793,100%,Afghanistan,1.0,f +24618,,Sao Tome and Principe,4.0,f +12550,100%,,4.0,t +49183,100%,French Polynesia,1.0,f +17455,,Sao Tome and Principe,1.0,f +34427,,Faroe Islands,1.0,f +2589,,French Guiana,1.0,f +31004,100%,Indonesia,3.0,f +23431,100%,Indonesia,1.0,t +31000,,Brazil,1.0,f +13590,100%,Indonesia,2.0,t +7729,,Lithuania,1.0,t +17475,100%,France,2.0,f +2693,,Lebanon,1.0,f +32753,,Tonga,1.0,f +42469,,,2.0,t +31873,99%,Uzbekistan,22.0,f +7744,,Pakistan,1.0,f +34009,,Rwanda,1.0,t +28074,70%,,3.0,t +22250,100%,,4.0,f +23390,100%,French Guiana,1.0,f +41667,100%,,2.0,t +14165,,Malta,1.0,t +30544,,,1.0,f +10612,100%,Brazil,3.0,f +39149,100%,Peru,1.0,f +37897,0%,Tanzania,1.0,t +40917,100%,Russian Federation,3.0,t +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +46574,100%,Guinea,1.0,t +4446,100%,Uganda,58.0,f +21197,86%,Kiribati,1.0,f +24387,,Vanuatu,1.0,f +29647,100%,Peru,1305.0,f +41269,,Philippines,7.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +44521,100%,,2.0,f +29647,100%,Peru,1305.0,f +24669,100%,Tonga,2.0,t +32633,,,1.0,t +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +1757,75%,,1.0,t +28827,100%,Chile,1.0,t +34524,100%,,1.0,t +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +40983,100%,Chad,4.0,f +29647,100%,Peru,1305.0,f +20469,33%,Guinea,1.0,t +29647,100%,Peru,1305.0,f +29243,100%,,1.0,t +38162,100%,Niger,8.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +10711,93%,Uganda,108.0,t +3675,100%,Estonia,1.0,t +41340,100%,Tanzania,3.0,t +29647,100%,Peru,1305.0,f +49723,,Zimbabwe,1.0,t +32009,100%,Maldives,1.0,t +18170,88%,France,1.0,f +30646,,Niue,1.0,f +46121,100%,Faroe Islands,1.0,f +37497,,Mauritania,2.0,f +44014,100%,,1.0,t +8208,,Uzbekistan,2.0,t +4495,0%,,1.0,f +40716,100%,,3.0,f +24159,,Marshall Islands,1.0,t +12249,,Denmark,2.0,f +11405,,Maldives,2.0,f +18454,100%,Nicaragua,5.0,t +9268,,,1.0,t +31707,100%,Niger,48.0,f +19979,100%,Tanzania,1.0,f +6571,90%,,1.0,t +28027,,Chile,1.0,t +36872,,,1.0,t +29647,100%,Peru,1305.0,f +31863,,Estonia,2.0,f +28828,100%,Isle of Man,198.0,t +29647,100%,Peru,1305.0,f +11889,,Denmark,1.0,f +8544,100%,Malawi,3.0,t +29647,100%,Peru,1305.0,f +16126,,,1.0,f +43152,100%,Nicaragua,82.0,t +8173,100%,Barbados,2.0,t +10225,,Canada,1.0,f +22721,100%,Ecuador,109.0,f +15770,100%,Cuba,2.0,t +42264,,Guinea,1.0,t +488,100%,Maldives,18.0,f +48603,100%,Guinea,40.0,f +982,99%,Marshall Islands,32.0,f +37081,,Tonga,1.0,f +40220,,Tonga,3.0,f +30216,98%,Maldives,34.0,f +5335,100%,Suriname,1.0,f +28828,100%,Isle of Man,198.0,t +48603,100%,Guinea,40.0,f +45756,,Croatia,1.0,f +44934,100%,Philippines,17.0,f +42217,,Niue,1.0,t +48603,100%,Guinea,40.0,f +4109,90%,Wallis and Futuna,1.0,f +23601,,Lebanon,1.0,t +23932,69%,Montserrat,6.0,f +20228,100%,,1.0,f +42591,100%,Guinea,1.0,t +24991,100%,Indonesia,14.0,f +48603,100%,Guinea,40.0,f +1399,,Nicaragua,2.0,t +10332,75%,Ecuador,2.0,t +48603,100%,Guinea,40.0,f +25390,,Greenland,1.0,f +46593,,,1.0,f +28828,100%,Isle of Man,198.0,t +48603,100%,Guinea,40.0,f +19322,,Niue,1.0,f +356,99%,Wallis and Futuna,32.0,t +48603,100%,Guinea,40.0,f +35417,,,1.0,t +7753,,Russian Federation,2.0,t +48592,63%,Isle of Man,3.0,f +29047,,Russian Federation,1.0,f +4485,95%,China,7.0,t +22284,,,1.0,f +11042,,Uruguay,1.0,t +48100,,Indonesia,1.0,t +42831,100%,Holy See (Vatican City State),4.0,t +26578,45%,Ecuador,10.0,f +42831,100%,Holy See (Vatican City State),4.0,t +42977,,Turkmenistan,3.0,f +15203,,,1.0,t +3235,,,1.0,f +44907,,Croatia,1.0,f +48202,,,1.0,f +6877,,Pakistan,1.0,f +47724,100%,Isle of Man,1.0,t +38256,60%,Guinea,1.0,f +10226,,Tonga,1.0,f +8804,100%,Malta,1.0,f +42452,,Niue,1.0,f +26981,,Philippines,4.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +43948,100%,,1.0,f +42831,100%,Holy See (Vatican City State),4.0,t +46297,100%,Sao Tome and Principe,12.0,t +2258,100%,,3.0,t +39555,100%,Marshall Islands,13.0,t +9266,,,1.0,t +27267,95%,Tonga,6.0,f +6294,,Netherlands,1.0,f +47599,,,1.0,f +40808,100%,Mauritania,1.0,f +5188,100%,Nicaragua,1.0,f +37414,,Rwanda,2.0,t +28786,100%,,2.0,t +46128,90%,Costa Rica,1.0,f +19522,,Ghana,2.0,t +38787,,Faroe Islands,10.0,f +16718,100%,Portugal,5.0,f +26981,,Philippines,4.0,f +49901,,Tonga,1.0,t +31869,,Tonga,1.0,f +7209,100%,Uganda,3.0,f +33928,,Estonia,1.0,f +39555,100%,Marshall Islands,13.0,t +3495,,Zimbabwe,1.0,t +29647,100%,Peru,1305.0,f +17434,100%,Rwanda,1.0,t +23606,100%,,1.0,f +34377,,,1.0,t +37879,100%,Vanuatu,2.0,t +36115,100%,Afghanistan,3.0,f +17394,0%,Nicaragua,49.0,f +35537,100%,Isle of Man,4.0,t +24763,,,1.0,f +11234,100%,,2.0,f +4448,95%,,4.0,t +12003,100%,Uganda,8.0,t +44028,,Cape Verde,13.0,f +42528,100%,,1.0,f +44028,,Cape Verde,13.0,f +44028,,Cape Verde,13.0,f +44028,,Cape Verde,13.0,f +31004,100%,Indonesia,3.0,f +30414,,,2.0,f +687,100%,Kiribati,2.0,t +11117,100%,Isle of Man,2.0,t +30523,100%,,1.0,f +24472,,French Guiana,1.0,t +39583,100%,Micronesia,1.0,f +4092,,Nicaragua,6.0,f +31202,90%,Kiribati,107.0,f +23709,100%,Lebanon,1.0,t +18329,,Uzbekistan,1.0,f +47011,,Malawi,4.0,t +8661,100%,United Kingdom,2.0,t +47642,,,1.0,f +24991,100%,Indonesia,14.0,f +22794,50%,Cape Verde,36.0,t +4448,95%,,4.0,t +17394,0%,Nicaragua,49.0,f +22794,50%,Cape Verde,36.0,t +46365,100%,,1.0,f +23710,100%,Gambia,5.0,f +29647,100%,Peru,1305.0,f +22794,50%,Cape Verde,36.0,t +22794,50%,Cape Verde,36.0,t +42278,100%,Isle of Man,3.0,t +26097,100%,Uganda,1.0,f +48668,,Malta,1.0,t +47361,100%,Barbados,10.0,f +11412,100%,Kiribati,2.0,f +18077,100%,Sao Tome and Principe,139.0,f +29953,,,1.0,f +25722,0%,Micronesia,1.0,t +26981,,Philippines,4.0,f +44332,100%,Jersey,2.0,t +8733,100%,Tonga,4.0,t +28271,,Gambia,2.0,f +7707,100%,Bouvet Island (Bouvetoya),1.0,t +29547,,Nicaragua,1.0,f +43272,,Cocos (Keeling) Islands,1.0,f +10711,93%,Uganda,108.0,t +39650,,Mexico,1.0,f +23184,100%,Lebanon,1.0,t +24273,,,1.0,f +15933,,,1.0,f +26145,0%,Guinea,1.0,t +18818,100%,,2.0,f +11069,100%,Micronesia,1.0,f +26698,100%,Uganda,5.0,t +11760,100%,Puerto Rico,2.0,f +29081,98%,Uzbekistan,18.0,f +33319,100%,Mauritania,2.0,t +35221,100%,Turks and Caicos Islands,30.0,t +19644,67%,Tunisia,1.0,t +35907,,Marshall Islands,1.0,t +11675,,Kenya,1.0,f +31576,,Isle of Man,2.0,f +47361,100%,Barbados,10.0,f +22426,,,2.0,t +32334,,,1.0,f +13505,,,1.0,f +39049,100%,,1.0,t +40262,,Barbados,1.0,f +24296,,Venezuela,1.0,t +6862,,,1.0,t +40529,,Chile,1.0,t +23852,,Rwanda,1.0,f +32488,,Senegal,17.0,t +43343,,,1.0,f +6543,100%,United Kingdom,3.0,t +17514,100%,Montserrat,1.0,f +27683,,,1.0,f +24026,98%,Cape Verde,69.0,t +100,,,4.0,f +26981,,Philippines,4.0,f +11956,,Gibraltar,4.0,t +100,,,4.0,f +32670,100%,,1.0,f +14809,100%,Niger,1.0,f +16781,100%,,1.0,t +36655,100%,Monaco,1.0,f +4448,95%,,4.0,t +45673,100%,United Kingdom,1.0,t +744,100%,Guinea,1.0,t +16606,100%,Svalbard & Jan Mayen Islands,2.0,t +36158,100%,Malta,4.0,f +10774,,Turks and Caicos Islands,1.0,t +1452,,,1.0,f +6234,100%,Isle of Man,4.0,t +27865,,,1.0,t +38118,,,1.0,f +17394,0%,Nicaragua,49.0,f +49199,,Cuba,1.0,f +2019,100%,Malta,7.0,f +35095,,Isle of Man,1.0,t +33831,100%,Faroe Islands,2.0,f +17059,,,1.0,t +24505,60%,,2.0,f +26578,45%,Ecuador,10.0,f +42433,,,1.0,t +45906,,,1.0,t +41052,0%,Guinea,1.0,f +3380,,Micronesia,3.0,f +22096,,,1.0,f +32368,,Denmark,1.0,t +35366,50%,,1.0,t +46520,,Canada,1.0,t +47361,100%,Barbados,10.0,f +23972,100%,Zimbabwe,2.0,t +6387,,Ghana,1.0,f +24957,,Marshall Islands,1.0,f +37556,,Cocos (Keeling) Islands,1.0,f +26764,100%,Faroe Islands,1.0,f +12199,,,1.0,f +21407,,,1.0,t +3380,,Micronesia,3.0,f +46187,100%,Gibraltar,2.0,f +29615,100%,Zimbabwe,2.0,t +47828,100%,Gibraltar,2.0,f +20069,100%,Monaco,3.0,f +35546,,Togo,1.0,t +6012,,Mauritania,1.0,f +34281,100%,,2.0,t +29615,100%,Zimbabwe,2.0,t +49196,100%,,2.0,f +38296,,Kiribati,1.0,f +36794,,,1.0,f +26192,,,1.0,f +25004,,,1.0,f +44588,100%,,1.0,f +12587,,Lebanon,1.0,t +42441,100%,Jersey,3.0,f +27195,,,2.0,t +21152,100%,El Salvador,1.0,f +21748,,,1.0,f +27195,,,2.0,t +45272,,,3.0,t +36499,75%,Anguilla,25.0,t +39995,,,1.0,f +43891,,China,2.0,t +27609,100%,Tonga,1.0,t +36862,,Tonga,1.0,f +14726,80%,,3.0,f +26148,100%,Kiribati,10.0,t +44273,91%,,2.0,f +33392,,Estonia,1.0,t +13652,,Lithuania,2.0,f +24808,,Cambodia,3.0,t +24991,100%,Indonesia,14.0,f +48405,,France,1.0,f +1523,100%,Uganda,2.0,t +24991,100%,Indonesia,14.0,f +1150,,Nauru,4.0,t +26177,,Faroe Islands,1.0,f +6322,100%,United Kingdom,1.0,t +31702,,,1.0,f +11567,100%,Niger,31.0,t +42281,100%,Marshall Islands,39.0,f +22794,50%,Cape Verde,36.0,t +44873,,,1.0,t +22987,,Andorra,1.0,f +49016,,,2.0,f +44825,,Marshall Islands,2.0,t +5300,100%,Cocos (Keeling) Islands,1.0,f +44396,,,1.0,t +37326,100%,,1.0,f +39851,,Reunion,1.0,f +38120,100%,Russian Federation,4.0,t +25081,,Russian Federation,1.0,f +22133,,,2.0,f +9544,100%,Monaco,2.0,t +23899,,,1.0,f +13204,100%,Russian Federation,2.0,t +712,,Niue,1.0,f +24016,100%,Bosnia and Herzegovina,29.0,f +9929,,Turkmenistan,1.0,t +1808,,Chad,2.0,t +24974,,Niger,7.0,f +27498,100%,Indonesia,1.0,t +2394,,,2.0,t +17394,0%,Nicaragua,49.0,f +44770,90%,,1.0,t +34678,89%,Croatia,4.0,t +12548,90%,Togo,3.0,t +12662,,China,1.0,f +10711,93%,Uganda,108.0,t +35007,100%,,1.0,f +30582,100%,Senegal,2.0,t +28252,100%,Niue,2.0,f +521,0%,Malta,2.0,t +21089,,Holy See (Vatican City State),1.0,t +42977,,Turkmenistan,3.0,f +44905,,,1.0,t +6029,100%,Faroe Islands,1.0,t +31138,,Ecuador,1.0,t +5063,,Uganda,1.0,f +17790,100%,,1.0,t +8851,,,1.0,t +36499,75%,Anguilla,25.0,t +10938,100%,Estonia,1.0,f +32188,,Kiribati,1.0,f +34869,83%,,1.0,t +12947,100%,,2.0,f +29343,,Russian Federation,1.0,f +8174,,Jersey,2.0,t +29754,,Indonesia,2.0,f +20069,100%,Monaco,3.0,f +20680,83%,Russian Federation,3.0,t +8060,,,1.0,f +2203,100%,Ecuador,1.0,f +46722,100%,Palestinian Territory,1.0,t +22759,,,1.0,f +27566,,,1.0,f +11401,,Sao Tome and Principe,1.0,f +28320,100%,,1.0,f +20070,100%,,1.0,f +33443,,Kenya,1.0,f +31359,0%,Nicaragua,1.0,t +26953,0%,El Salvador,1.0,f +49625,100%,Malta,1.0,f +29498,,Croatia,1.0,f +11026,100%,Vanuatu,2.0,f +27912,,,1.0,f +25819,92%,,6.0,t +28828,100%,Isle of Man,198.0,t +46746,100%,El Salvador,1.0,f +9924,100%,Russian Federation,1.0,f +7944,71%,,1.0,t +14514,,China,80.0,t +41291,,Brazil,3.0,f +30582,100%,Senegal,2.0,t +9372,,Lebanon,1.0,f +26233,,,2.0,t +20139,,,1.0,f +26099,99%,Reunion,15.0,f +19080,,Cocos (Keeling) Islands,1.0,t +2763,100%,Marshall Islands,1.0,f +40192,100%,Croatia,2.0,t +23376,100%,Estonia,2.0,t +9571,,Sao Tome and Principe,1.0,t +7834,94%,Mexico,13.0,f +25634,100%,,1.0,t +34500,100%,Chad,1.0,t +1692,100%,Jersey,15.0,t +42977,,Turkmenistan,3.0,f +31502,,Libyan Arab Jamahiriya,1.0,f +12177,100%,France,6.0,t +47324,100%,,2.0,f +46051,,Nauru,1.0,f +6452,100%,Rwanda,2.0,f +24542,100%,Niue,1.0,f +47324,100%,,2.0,f +11824,,Nicaragua,1.0,f +8128,96%,Nauru,4.0,f +6861,,Somalia,1.0,t +17920,96%,,9.0,f +11280,100%,Slovakia (Slovak Republic),10.0,f +19963,86%,Finland,2.0,t +10711,93%,Uganda,108.0,t +1219,100%,Peru,2.0,f +7519,,,1.0,f +20334,99%,Niger,171.0,t +663,100%,,2.0,f +45342,,Niue,1.0,f +14689,100%,,2.0,f +23636,,Kiribati,1.0,f +39446,,Uzbekistan,1.0,f +26578,45%,Ecuador,10.0,f +26578,45%,Ecuador,10.0,f +30820,,Estonia,1.0,f +10711,93%,Uganda,108.0,t +35035,100%,Zimbabwe,1.0,t +11015,,United Kingdom,1.0,f +14257,100%,Holy See (Vatican City State),1.0,f +14254,100%,Nicaragua,4.0,f +45224,,,1.0,t +38486,100%,Afghanistan,7.0,f +4597,,Faroe Islands,1.0,f +37244,,Anguilla,8.0,t +15217,100%,,1.0,t +14902,,Guinea,1.0,t +34690,100%,Marshall Islands,1.0,t +41313,100%,Denmark,10.0,t +10647,100%,Uruguay,2.0,f +10304,100%,El Salvador,1.0,t +36499,75%,Anguilla,25.0,t +44590,100%,Faroe Islands,1.0,f +17148,100%,Vanuatu,2.0,f +8020,100%,,1.0,t +11562,100%,Ghana,5.0,f +2290,,Russian Federation,1.0,f +2714,100%,Bosnia and Herzegovina,8.0,f +32918,100%,,1.0,f +830,,Guernsey,1.0,t +39827,,Micronesia,1.0,t +44780,,Niue,1.0,t +29647,100%,Peru,1305.0,f +11535,,Marshall Islands,1.0,f +39812,100%,Nicaragua,6.0,t +29647,100%,Peru,1305.0,f +15843,100%,Slovakia (Slovak Republic),18.0,f +29647,100%,Peru,1305.0,f +1150,,Nauru,4.0,t +47001,100%,,1.0,t +29647,100%,Peru,1305.0,f +937,100%,French Guiana,3.0,f +40355,96%,Maldives,8.0,t +31104,100%,France,2.0,f +46588,100%,Tunisia,1.0,f +42281,100%,Marshall Islands,39.0,f +17394,0%,Nicaragua,49.0,f +24644,100%,,1.0,t +40781,100%,Guinea,5.0,f +24139,,Grenada,1.0,f +36499,75%,Anguilla,25.0,t +2363,,Barbados,3.0,t +23034,99%,Monaco,54.0,f +7888,,,1.0,t +46621,,Micronesia,1.0,t +44946,,,1.0,f +29647,100%,Peru,1305.0,f +44761,90%,Niger,1.0,f +31094,100%,,1.0,t +38932,,,1.0,t +19842,85%,Turkmenistan,53.0,f +27320,,,1.0,f +17920,96%,,9.0,f +2127,100%,French Guiana,1.0,f +26651,100%,Turkmenistan,1.0,f +33846,100%,Anguilla,1.0,f +4484,,Sao Tome and Principe,1.0,t +6894,80%,Estonia,47.0,t +11674,100%,Uzbekistan,4.0,f +36614,,,1.0,t +7075,,Malta,1.0,f +32453,100%,,3.0,t +22785,100%,,3.0,f +40922,,,2.0,f +45075,,,1.0,f +47274,100%,Tonga,48.0,f +42247,,Maldives,1.0,f +25096,,Suriname,1.0,t +40134,,Croatia,1.0,t +20108,100%,Marshall Islands,2.0,f +24311,100%,Uzbekistan,2.0,t +23034,99%,Monaco,54.0,f +31180,100%,,1.0,f +671,,Rwanda,1.0,f +12544,,,1.0,f +43923,,,1.0,t +17798,100%,,1.0,t +3218,100%,Zimbabwe,6.0,f +10711,93%,Uganda,108.0,t +38787,,Faroe Islands,10.0,f +36373,100%,Isle of Man,3.0,f +15248,,,1.0,t +33910,100%,Rwanda,8.0,t +36046,100%,,1.0,f +39759,,Faroe Islands,1.0,t +677,0%,Micronesia,1.0,f +7980,100%,Tonga,1.0,f +8128,96%,Nauru,4.0,f +42581,,Malta,1.0,f +8864,33%,,1.0,f +48407,67%,Zimbabwe,1.0,t +2881,100%,Anguilla,2.0,t +25328,,Isle of Man,1.0,f +10060,,Sao Tome and Principe,2.0,f +37291,,Anguilla,1.0,t +49881,95%,,4.0,f +35957,,Faroe Islands,2.0,t +33957,,French Guiana,1.0,f +22331,99%,Rwanda,50.0,t +46088,,Ghana,15.0,f +38026,,Marshall Islands,1.0,t +35108,100%,Niue,1.0,t +5705,,Niue,2.0,f +18167,,Sao Tome and Principe,2.0,t +3278,90%,Guinea,2.0,t +44806,,,1.0,t +22886,78%,,1.0,f +18910,100%,Mauritania,5.0,f +22608,,Cocos (Keeling) Islands,1.0,f +16718,100%,Portugal,5.0,f +29916,100%,Niue,4.0,t +22794,50%,Cape Verde,36.0,t +37447,,,1.0,f +20468,,,1.0,f +28772,100%,Niger,15.0,t +18573,,,5.0,f +3391,100%,Iran,58.0,t +14514,,China,80.0,t +29462,,,1.0,f +49398,88%,Barbados,18.0,t +1712,,Holy See (Vatican City State),1.0,t +4612,80%,,1.0,f +22710,,,1.0,f +37628,100%,,1.0,f +41692,90%,Guinea,2.0,f +26514,99%,Vietnam,10.0,f +43089,,Nicaragua,1.0,t +2265,,Sao Tome and Principe,4.0,t +42804,100%,Chad,1.0,f +40192,100%,Croatia,2.0,t +29787,,,1.0,f +35581,,,1.0,t +10711,93%,Uganda,108.0,t +49328,,Nauru,1.0,t +49937,,Papua New Guinea,1.0,t +45800,,Marshall Islands,1.0,f +22798,,,1.0,f +23254,100%,,1.0,f +45529,,,1.0,t +23932,69%,Montserrat,6.0,f +30567,,Gambia,1.0,f +23015,,Gambia,2.0,f +16850,100%,Sao Tome and Principe,3.0,t +31061,100%,Nicaragua,6.0,f +33728,100%,Monaco,2.0,f +48327,,French Guiana,1.0,f +37146,,,2.0,f +18075,,Tonga,2.0,f +3343,100%,Niue,1.0,t +40682,,,1.0,f +25576,,Brazil,1.0,t +19839,,,1.0,f +24993,67%,Canada,4.0,f +33276,,Holy See (Vatican City State),1.0,f +26920,,,1.0,t +26301,50%,Kiribati,1.0,f +7473,,Zimbabwe,3.0,t +30765,,Marshall Islands,2.0,f +30,100%,Guinea,1.0,f +23177,100%,Estonia,5.0,f +24580,,Guinea,1.0,f +6815,100%,Chad,1.0,f +9679,100%,Tonga,1.0,f +12493,70%,Sao Tome and Principe,4.0,t +48824,,Sao Tome and Principe,1.0,t +33391,,Uzbekistan,1.0,f +45552,93%,Nicaragua,12.0,t +1274,100%,,1.0,f +6494,100%,,1.0,t +6465,,Costa Rica,1.0,f +39812,100%,Nicaragua,6.0,t +24616,100%,Guinea,1.0,f +8436,,,1.0,f +1126,100%,Estonia,1.0,t +38968,,,1.0,f +18572,,,1.0,f +38951,100%,,1.0,t +30966,,Jersey,1.0,f +26036,,Svalbard & Jan Mayen Islands,2.0,f +30704,,Nicaragua,1.0,f +48583,,Gambia,1.0,t +47271,,Russian Federation,2.0,f +45496,40%,Niue,6.0,f +5960,100%,Russian Federation,1.0,t +34473,100%,Congo,1.0,t +44122,100%,,1.0,f +27785,100%,Uzbekistan,58.0,f +28641,,,2.0,t +36159,,,1.0,t +50058,100%,,1.0,f +7209,100%,Uganda,3.0,f +16233,100%,Jersey,1.0,f +27785,100%,Uzbekistan,58.0,f +27785,100%,Uzbekistan,58.0,f +27785,100%,Uzbekistan,58.0,f +7036,100%,Jersey,4.0,f +30857,,Niue,1.0,t +1692,100%,Jersey,15.0,t +36115,100%,Afghanistan,3.0,f +33110,100%,Russian Federation,1.0,t +4376,,,1.0,t +37990,100%,,1.0,f +38420,90%,Christmas Island,8.0,f +1692,100%,Jersey,15.0,t +19876,100%,Faroe Islands,2.0,f +6243,100%,,1.0,t +167,,Barbados,1.0,f +23466,100%,Anguilla,1.0,t +30952,,Cape Verde,1.0,f +8368,,,1.0,f +25843,,Lebanon,1.0,f +41187,,Bosnia and Herzegovina,1.0,f +2594,,,1.0,t +30449,,Senegal,1.0,t +49161,,,1.0,f +8606,,Niue,1.0,t +1200,100%,Russian Federation,2.0,t +36580,,Gibraltar,1.0,t +3318,100%,Russian Federation,1.0,f +7073,67%,Niue,2.0,t +37859,100%,French Guiana,1.0,t +9320,,,1.0,f +20515,100%,Niue,2.0,t +31432,,Bahrain,1.0,f +6935,,Holy See (Vatican City State),1.0,f +14930,,,1.0,t +34450,,Ecuador,1.0,t +1988,,Jersey,1.0,f +14095,,Russian Federation,1.0,f +9774,,Malta,1.0,f +42787,,Rwanda,1.0,f +5661,100%,,1.0,f +4470,100%,,2.0,f +39854,100%,Uganda,1.0,f +18077,100%,Sao Tome and Principe,139.0,f +45682,100%,Uzbekistan,3.0,f +26952,,Russian Federation,3.0,t +48082,,Uzbekistan,2.0,f +36917,100%,Croatia,1.0,t +29647,100%,Peru,1305.0,f +19692,,,1.0,f +43725,100%,China,4.0,t +7344,20%,French Guiana,2.0,f +11728,,Chad,1.0,f +26036,,Svalbard & Jan Mayen Islands,2.0,f +3634,,,1.0,f +38544,100%,Marshall Islands,2.0,t +29152,,Costa Rica,1.0,f +30070,100%,,1.0,t +12908,,Russian Federation,1.0,t +17825,100%,,1.0,f +11567,100%,Niger,31.0,t +6590,,Maldives,2.0,f +38989,,Tonga,1.0,f +30670,,,1.0,f +48586,,Mexico,1.0,t +36374,100%,Rwanda,5.0,t +42979,20%,,1.0,t +46619,,Guinea,1.0,f +34799,100%,Brazil,2.0,t +17920,96%,,9.0,f +12368,,,1.0,f +26025,75%,Isle of Man,1.0,f +39491,,Brazil,1.0,f +45162,,Maldives,20.0,f +40435,,Croatia,1.0,t +8807,100%,Marshall Islands,2.0,t +3218,100%,Zimbabwe,6.0,f +33289,67%,Guinea,2.0,f +42239,100%,Ghana,2.0,f +4268,,Malta,1.0,f +49541,100%,French Guiana,6.0,f +45162,,Maldives,20.0,f +19860,90%,Ghana,1.0,f +10125,100%,Costa Rica,2.0,f +7376,,Guinea,2.0,t +27777,83%,Libyan Arab Jamahiriya,1.0,f +36178,100%,,4.0,t +49308,,Senegal,1.0,f +45162,,Maldives,20.0,f +11956,,Gibraltar,4.0,t +40183,,Montserrat,2.0,t +26008,,France,1.0,f +16671,,Turkmenistan,1.0,f +10554,0%,Russian Federation,2.0,f +17710,100%,Vanuatu,2.0,f +40377,100%,Brazil,1.0,f +45682,100%,Uzbekistan,3.0,f +16579,,,1.0,f +28163,100%,Sao Tome and Principe,5.0,t +14721,,Jersey,1.0,t +49623,100%,Faroe Islands,1.0,f +15576,100%,Niue,1.0,f +44774,90%,,1.0,t +28052,,,2.0,f +44071,,Faroe Islands,1.0,f +43660,,Cuba,1.0,f +19878,,,1.0,t +3452,,Isle of Man,1.0,t +22060,100%,,2.0,t +9890,60%,,1.0,t +45496,40%,Niue,6.0,f +24529,,Maldives,2.0,f +7407,,,7.0,t +32805,100%,Uzbekistan,1.0,t +24323,100%,Faroe Islands,3.0,f +11567,100%,Niger,31.0,t +4503,100%,Guinea,2.0,f +29119,100%,Nicaragua,2.0,f +30778,100%,Guernsey,1.0,t +16856,,Costa Rica,1.0,t +4550,100%,Senegal,2.0,f +23508,,,1.0,t +7080,60%,Rwanda,1.0,t +6088,100%,,14.0,t +17920,96%,,9.0,f +2107,100%,,1.0,t +45971,100%,,2.0,t +39519,,,2.0,t +33372,100%,Guinea,22.0,t +24973,,Bahrain,1.0,t +2881,100%,Anguilla,2.0,t +40061,100%,Micronesia,3.0,f +22794,50%,Cape Verde,36.0,t +24672,100%,,1.0,f +21179,,French Guiana,1.0,t +488,100%,Maldives,18.0,f +17920,96%,,9.0,f +30008,90%,,1.0,t +48747,,Marshall Islands,1.0,f +22794,50%,Cape Verde,36.0,t +46572,,,1.0,f +9803,,Monaco,1.0,t +13499,43%,Malawi,1.0,t +23305,100%,Philippines,11.0,f +23117,82%,,33.0,f +23117,82%,,33.0,f +23117,82%,,33.0,f +22904,,Montserrat,1.0,t +18459,100%,Zimbabwe,100.0,f +1458,,,1.0,f +41304,100%,,3.0,f +18459,100%,Zimbabwe,100.0,f +17873,100%,El Salvador,1.0,f +33372,100%,Guinea,22.0,t +18459,100%,Zimbabwe,100.0,f +18459,100%,Zimbabwe,100.0,f +19447,,Afghanistan,2.0,t +5302,100%,Nicaragua,6.0,f +18459,100%,Zimbabwe,100.0,f +21213,94%,Kiribati,5.0,t +33372,100%,Guinea,22.0,t +18459,100%,Zimbabwe,100.0,f +17394,0%,Nicaragua,49.0,f +5302,100%,Nicaragua,6.0,f +33372,100%,Guinea,22.0,t +46088,,Ghana,15.0,f +33372,100%,Guinea,22.0,t +4132,,Kenya,4.0,f +33372,100%,Guinea,22.0,t +10904,75%,,1.0,t +47758,,Puerto Rico,1.0,f +3125,,Brazil,1.0,f +27680,,,1.0,t +27370,,Puerto Rico,1.0,f +17037,,Turkmenistan,1.0,t +18459,100%,Zimbabwe,100.0,f +18459,100%,Zimbabwe,100.0,f +18459,100%,Zimbabwe,100.0,f +16342,,Marshall Islands,6.0,t +25923,,Fiji,1.0,f +3194,100%,,1.0,t +11183,,Svalbard & Jan Mayen Islands,2.0,f +25826,,Jersey,1.0,f +33539,,,3.0,f +12327,,,1.0,f +41973,,Afghanistan,1.0,f +16110,,,1.0,t +19297,100%,,1.0,t +17920,96%,,9.0,f +17476,100%,Pakistan,4.0,t +42436,,Ghana,4.0,f +6173,,,1.0,t +32690,,,1.0,t +29647,100%,Peru,1305.0,f +39702,,Bosnia and Herzegovina,1.0,f +3162,100%,Montserrat,6.0,t +27267,95%,Tonga,6.0,f +45796,,Micronesia,1.0,f +46437,,,5.0,f +10180,100%,Maldives,1.0,t +43525,100%,Somalia,1.0,f +6070,,Maldives,1.0,t +42390,100%,Wallis and Futuna,96.0,t +27661,,Niue,1.0,f +29908,,United Kingdom,1.0,f +8234,,,1.0,t +33372,100%,Guinea,22.0,t +45816,,Nauru,1.0,f +22794,50%,Cape Verde,36.0,t +43626,,Zimbabwe,2.0,f +13742,90%,El Salvador,5.0,t +9693,100%,Vanuatu,8.0,f +37063,100%,Barbados,1.0,f +8439,97%,Rwanda,17.0,t +40061,100%,Micronesia,3.0,f +32103,,Rwanda,1.0,f +19522,,Ghana,2.0,t +16265,,China,1.0,f +21941,,Estonia,1.0,f +40258,100%,France,1.0,t +18662,70%,Uruguay,4.0,t +40838,90%,,3.0,f +2802,93%,Togo,3.0,t +5555,100%,Denmark,11.0,t +2802,93%,Togo,3.0,t +25227,,Kiribati,1.0,f +28736,,Senegal,1.0,t +37221,100%,Niue,1.0,f +38687,,Uzbekistan,1.0,t +21825,,,1.0,f +44887,100%,Micronesia,1.0,t +25222,80%,Kenya,11.0,t +5175,,,1.0,f +16588,,Zimbabwe,1.0,f +3728,,Netherlands,1.0,t +41388,,,1.0,t +4467,,Portugal,1.0,f +30762,100%,French Guiana,1.0,t +13924,,China,1.0,f +18078,100%,Montserrat,13.0,t +14009,100%,Russian Federation,1.0,f +43564,70%,,3.0,f +641,,,1.0,f +48763,100%,Christmas Island,1.0,f +34295,100%,Monaco,1.0,f +25819,92%,,6.0,t +35201,100%,Mexico,2.0,f +15781,100%,,1.0,t +17394,0%,Nicaragua,49.0,f +279,100%,,2.0,t +12855,,,1.0,t +819,,Isle of Man,2.0,f +35376,100%,Malta,2.0,f +22435,100%,Svalbard & Jan Mayen Islands,1.0,f +36501,,Russian Federation,1.0,f +28977,,Costa Rica,1.0,f +35439,94%,United Kingdom,23.0,t +5249,100%,Vanuatu,2.0,t +4456,100%,Niue,1.0,f +12613,,Gibraltar,2.0,t +48884,,Lebanon,1.0,f +13903,,Sao Tome and Principe,1.0,f +29563,100%,Jersey,2.0,f +45643,,Indonesia,1.0,f +28271,,Gambia,2.0,f +42044,,Uruguay,1.0,f +43558,,El Salvador,1.0,f +47666,100%,,1.0,t +8730,100%,,1.0,f +22113,,,1.0,t +38146,,Papua New Guinea,2.0,f +13887,,Isle of Man,1.0,f +45965,100%,Estonia,8.0,f +12348,,,1.0,f +40573,75%,,1.0,f +37125,100%,Rwanda,1.0,f +15824,100%,Rwanda,3.0,t +8216,,,1.0,f +39846,,Isle of Man,1.0,t +45553,90%,Brazil,16.0,t +19960,67%,Lebanon,1.0,t +45965,100%,Estonia,8.0,f +38029,,,1.0,f +29067,80%,Russian Federation,15.0,f +25873,100%,Russian Federation,1.0,t +34037,0%,Togo,2.0,f +44319,100%,Turks and Caicos Islands,1.0,f +44880,,United Kingdom,2.0,t +7596,,Bahrain,2.0,f +11060,,,1.0,f +11217,,Niue,3.0,f +18123,100%,Russian Federation,3.0,f +12015,,,1.0,f +28944,100%,,1.0,f +6699,,Micronesia,1.0,t +1796,100%,Mauritania,5.0,f +17394,0%,Nicaragua,49.0,f +1859,50%,Gibraltar,1.0,f +45902,,Sao Tome and Principe,5.0,t +31540,100%,Peru,3.0,t +44691,,,1.0,f +854,100%,Venezuela,4.0,t +33961,100%,Indonesia,3.0,t +100,,,4.0,f +15772,,,1.0,f +34582,,,1.0,f +783,100%,Svalbard & Jan Mayen Islands,12.0,t +27452,100%,Puerto Rico,3.0,t +25486,,Bouvet Island (Bouvetoya),1.0,f +45833,,Cocos (Keeling) Islands,1.0,f +35679,100%,,2.0,f +45135,,,1.0,f +13127,100%,Niger,22.0,f +36253,100%,Nauru,21.0,t +45260,94%,,19.0,f +38669,100%,Kiribati,3.0,f +11104,100%,,3.0,t +36701,,,5.0,f +5342,,Greenland,1.0,f +23654,100%,Uzbekistan,23.0,f +7596,,Bahrain,2.0,f +18969,,Guinea,1.0,f +46441,100%,,1.0,t +32016,,,1.0,f +49219,,,2.0,t +4235,,Bosnia and Herzegovina,3.0,f +12278,100%,,1.0,f +45260,94%,,19.0,f +6894,80%,Estonia,47.0,t +1011,97%,Russian Federation,8.0,t +45260,94%,,19.0,f +15004,100%,Uzbekistan,88.0,f +33485,100%,Lebanon,2.0,t +42281,100%,Marshall Islands,39.0,f +41889,96%,Uzbekistan,14.0,t +551,95%,Rwanda,17.0,f +15004,100%,Uzbekistan,88.0,f +36856,100%,,7.0,f +42281,100%,Marshall Islands,39.0,f +28359,,Micronesia,1.0,f +15004,100%,Uzbekistan,88.0,f +10739,,Reunion,2.0,f +22604,100%,Saint Helena,2.0,t +25432,67%,Croatia,1.0,f +22077,100%,Mauritania,10.0,f +11078,100%,,1.0,t +13825,100%,Cocos (Keeling) Islands,2.0,f +36158,100%,Malta,4.0,f +30644,,Kiribati,1.0,t +10695,100%,,2.0,f +29978,89%,Uzbekistan,26.0,f +43721,,,1.0,f +2714,100%,Bosnia and Herzegovina,8.0,f +29996,,Sao Tome and Principe,1.0,f +42765,100%,Tonga,1.0,t +36701,,,5.0,f +36158,100%,Malta,4.0,f +3582,,Zimbabwe,1.0,f +7008,,,1.0,f +42902,,,1.0,t +16718,100%,Portugal,5.0,f +2816,,Togo,1.0,t +32511,88%,Holy See (Vatican City State),5.0,t +18459,100%,Zimbabwe,100.0,f +22450,,Nicaragua,1.0,t +42408,,Afghanistan,1.0,t +18459,100%,Zimbabwe,100.0,f +48014,100%,,2.0,f +20276,100%,,1.0,f +36525,,Marshall Islands,2.0,f +25495,,,1.0,t +23034,99%,Monaco,54.0,f +18871,,Isle of Man,2.0,t +36253,100%,Nauru,21.0,t +1796,100%,Mauritania,5.0,f +1796,100%,Mauritania,5.0,f +8376,100%,Guinea,3.0,t +9692,100%,,2.0,f +42018,,,1.0,f +28741,89%,,1.0,t +6909,,Malta,1.0,f +16042,0%,Rwanda,2.0,f +17386,,Faroe Islands,1.0,f +21397,100%,Jersey,1.0,f +43821,,Vietnam,3.0,t +35424,100%,Slovakia (Slovak Republic),1.0,f +35999,100%,Mauritania,3.0,t +49418,,Niue,2.0,f +2394,,,2.0,t +20855,,,1.0,f +1938,100%,,1.0,t +4063,,,1.0,t +12599,,Barbados,1.0,t +32952,,Chad,1.0,t +17266,100%,Canada,2.0,f +45356,,Guinea,1.0,t +42281,100%,Marshall Islands,39.0,f +37327,,Uganda,1.0,t +38870,0%,Monaco,1.0,f +37810,,,2.0,f +36758,89%,Russian Federation,2.0,f +18459,100%,Zimbabwe,100.0,f +8285,,Congo,1.0,f +25253,,Nicaragua,1.0,f +36253,100%,Nauru,21.0,t +31025,,,1.0,f +1077,,,1.0,f +36253,100%,Nauru,21.0,t +36607,100%,,2.0,t +15004,100%,Uzbekistan,88.0,f +36253,100%,Nauru,21.0,t +1159,100%,Monaco,1.0,t +14283,,Uzbekistan,2.0,t +43600,,Nicaragua,1.0,t +24349,100%,Guinea,2.0,t +1979,,,1.0,t +10945,,,1.0,t +40078,100%,Croatia,7.0,t +20134,,,1.0,t +15531,,Monaco,1.0,t +10785,,,1.0,t +23835,100%,Guinea,1.0,f +4968,,Svalbard & Jan Mayen Islands,1.0,t +38867,,Zimbabwe,1.0,f +48323,100%,Lithuania,1.0,f +28634,,Philippines,1.0,t +49664,,,1.0,f +22523,100%,Rwanda,9.0,f +42476,,Lebanon,1.0,f +28828,100%,Isle of Man,198.0,t +32175,,,1.0,f +30769,,Zimbabwe,1.0,t +36792,100%,Bouvet Island (Bouvetoya),1.0,f +2139,,Sao Tome and Principe,1.0,f +11664,,,6.0,f +40547,,,1.0,f +48448,,Reunion,1.0,f +22523,100%,Rwanda,9.0,f +34353,100%,Palestinian Territory,1.0,f +3570,,,1.0,f +47044,,,1.0,t +8848,,,1.0,f +17090,,Gambia,2.0,f +32951,,Nicaragua,1.0,f +49197,90%,,3.0,f +19876,100%,Faroe Islands,2.0,f +26450,,,1.0,f +44630,100%,,1.0,t +47635,,Senegal,4.0,t +9852,100%,Maldives,11.0,f +41788,100%,Turks and Caicos Islands,6.0,f +20840,70%,,1.0,f +42339,,Uzbekistan,1.0,f +8266,,Andorra,1.0,f +48715,,Turkmenistan,1.0,t +43439,,,1.0,f +25883,,Malta,1.0,t +1324,100%,Nicaragua,1.0,f +2239,100%,Marshall Islands,1.0,t +10854,,Faroe Islands,1.0,f +25921,,,1.0,t +23299,100%,Sao Tome and Principe,1.0,f +44146,36%,Malawi,2.0,t +47142,100%,Tonga,1.0,f +12567,,Micronesia,1.0,t +35224,,Mauritania,2.0,t +36266,,Netherlands,2.0,f +22133,,,2.0,f +35570,,,1.0,f +46655,,United Kingdom,1.0,f +31317,,Montserrat,1.0,f +45914,100%,Zimbabwe,1.0,t +9852,100%,Maldives,11.0,f +11213,100%,Svalbard & Jan Mayen Islands,2.0,t +9152,50%,Nicaragua,1.0,f +23218,,China,1.0,t +26367,,France,1.0,t +14707,,,2.0,f +16589,100%,Niue,1.0,f +44966,100%,Guinea,21.0,f +26461,,Monaco,1.0,f +12176,50%,,1.0,t +24699,80%,Barbados,2.0,t +16725,100%,Turkmenistan,3.0,t +33925,,,1.0,f +47293,100%,,3.0,f +10260,,Indonesia,1.0,t +33372,100%,Guinea,22.0,t +22273,100%,,2.0,f +6084,100%,,1.0,f +39374,100%,Gibraltar,1.0,t +44864,,Malta,3.0,t +18811,70%,,2.0,f +37887,,,1.0,f +48014,100%,,2.0,f +26470,100%,Brunei Darussalam,1.0,f +21627,,Niue,1.0,f +3516,,,1.0,f +20446,100%,Denmark,1.0,f +296,,,1.0,f +47121,90%,,3.0,f +25519,100%,Slovakia (Slovak Republic),9.0,t +23136,,Afghanistan,2.0,t +47121,90%,,3.0,f +15219,,Guinea,1.0,t +23742,,,1.0,t +47121,90%,,3.0,f +33094,100%,El Salvador,1.0,t +783,100%,Svalbard & Jan Mayen Islands,12.0,t +24280,100%,,2.0,f +43296,,Faroe Islands,1.0,t +41743,,,1.0,f +15213,,Falkland Islands (Malvinas),2.0,f +22917,100%,Gambia,1.0,f +13974,,Russian Federation,2.0,f +48497,,Tonga,1.0,f +40983,100%,Chad,4.0,f +38665,,Djibouti,4.0,f +46376,100%,,1.0,f +38210,,,1.0,t +22794,50%,Cape Verde,36.0,t +22794,50%,Cape Verde,36.0,t +22794,50%,Cape Verde,36.0,t +39109,77%,Ukraine,24.0,t +36856,100%,,7.0,f +28394,,Senegal,2.0,f +18637,,,2.0,f +34143,100%,Gambia,1.0,t +22794,50%,Cape Verde,36.0,t +29454,100%,Guinea,1.0,f +20334,99%,Niger,171.0,t +44934,100%,Philippines,17.0,f +11030,100%,Guinea,1.0,f +35304,100%,Tonga,12.0,t +18637,,,2.0,f +48622,60%,,1.0,t +39794,,,1.0,t +17029,,Kenya,1.0,t +36856,100%,,7.0,f +5286,70%,Brazil,2.0,f +37127,100%,Guinea,3.0,f +19494,,Sao Tome and Principe,3.0,t +42768,50%,Marshall Islands,1.0,f +20640,,Slovakia (Slovak Republic),1.0,t +12230,90%,Guinea,3.0,f +40948,90%,,1.0,f +1167,,Guinea,1.0,t +17096,,Somalia,1.0,t +1319,,,1.0,t +21471,100%,Isle of Man,2.0,f +11435,100%,,2.0,t +191,,,1.0,t +11316,100%,Uzbekistan,4.0,t +48261,,Kenya,1.0,f +28129,,China,2.0,f +27517,80%,Nicaragua,3.0,f +17401,100%,Russian Federation,4.0,f +31350,,Uruguay,1.0,t +7362,,French Guiana,1.0,t +29647,100%,Peru,1305.0,f +25193,0%,,2.0,t +16387,100%,Uganda,3.0,f +25853,,Malawi,1.0,f +29647,100%,Peru,1305.0,f +40953,100%,Cocos (Keeling) Islands,1.0,f +13753,100%,,2.0,f +15004,100%,Uzbekistan,88.0,f +20069,100%,Monaco,3.0,f +15004,100%,Uzbekistan,88.0,f +29578,100%,Chile,2.0,f +43682,,,1.0,f +45821,100%,Nicaragua,1.0,t +38900,0%,Uzbekistan,1.0,f +35505,,Peru,1.0,t +26536,,Denmark,1.0,f +35898,33%,Niue,3.0,t +37087,,,1.0,f +43953,,,2.0,f +23566,,Denmark,1.0,f +43953,,,2.0,f +956,100%,Nicaragua,3.0,t +8922,100%,Turks and Caicos Islands,2.0,t +35125,,Kenya,2.0,t +46711,,Uzbekistan,1.0,f +49310,,Niue,1.0,f +7061,100%,France,1.0,f +4322,97%,Tonga,32.0,f +47561,,Russian Federation,1.0,f +1356,,Senegal,2.0,f +24244,,Solomon Islands,1.0,f +28828,100%,Isle of Man,198.0,t +18882,50%,,1.0,f +13976,75%,Guinea,1.0,f +34349,50%,,1.0,f +14436,100%,Reunion,1.0,f +5939,,Nauru,1.0,f +47566,64%,,5.0,f +19986,,Montserrat,1.0,f +48740,,Chile,1.0,f +41262,,Jersey,1.0,f +5327,100%,Togo,5.0,t +17394,0%,Nicaragua,49.0,f +13199,0%,Denmark,1.0,f +27152,100%,Kenya,4.0,f +14432,100%,Guinea,2.0,t +27836,100%,Niger,1.0,f +39281,0%,France,1.0,f +7358,100%,French Polynesia,3.0,f +32318,50%,Canada,3.0,f +7354,100%,Cape Verde,1.0,f +30111,,,1.0,f +30710,,Russian Federation,1.0,f +16062,100%,Brazil,2.0,f +8062,,Estonia,1.0,f +14915,,Cocos (Keeling) Islands,1.0,f +28828,100%,Isle of Man,198.0,t +14056,,Chile,1.0,t +29649,70%,Congo,1.0,f +28467,100%,Faroe Islands,3.0,t +18766,,Chad,2.0,t +18623,100%,,2.0,f +47487,90%,,3.0,f +29647,100%,Peru,1305.0,f +4133,90%,Maldives,6.0,f +37639,100%,Nauru,11.0,f +45812,,,1.0,f +33991,,,2.0,f +29647,100%,Peru,1305.0,f +47566,64%,,5.0,f +48503,90%,Sao Tome and Principe,5.0,t +29647,100%,Peru,1305.0,f +13583,100%,,1.0,t +8383,,Chad,1.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +24315,,,1.0,f +20316,,Isle of Man,1.0,t +12124,,Brazil,2.0,f +12042,100%,,1.0,f +3218,100%,Zimbabwe,6.0,f +24576,,Russian Federation,1.0,f +10607,,Niue,1.0,f +11784,100%,Gambia,1.0,f +44223,,Micronesia,1.0,t +4785,100%,,1.0,f +40696,100%,,1.0,t +30024,,Jersey,1.0,f +9303,,,1.0,f +29647,100%,Peru,1305.0,f +35305,100%,,2.0,f +23984,,,1.0,t +29647,100%,Peru,1305.0,f +10004,90%,Marshall Islands,3.0,t +34403,,,1.0,f +100,,,4.0,f +46625,,Holy See (Vatican City State),1.0,f +8787,,Micronesia,5.0,f +36125,,,1.0,f +48289,,Tonga,1.0,f +9363,95%,Ukraine,50.0,f +36956,100%,Venezuela,1.0,t +38622,,,1.0,f +27413,100%,,1.0,t +28772,100%,Niger,15.0,t +28772,100%,Niger,15.0,t +28772,100%,Niger,15.0,t +17415,,,1.0,f +14707,,,2.0,f +10434,100%,United Kingdom,4.0,f +20608,100%,Uzbekistan,1.0,t +45286,,,1.0,f +33918,,Marshall Islands,1.0,f +28772,100%,Niger,15.0,t +29259,,,1.0,f +34681,100%,,1.0,f +14342,,Papua New Guinea,2.0,t +17027,,French Guiana,1.0,f +10918,100%,Isle of Man,1.0,t +31012,100%,Saint Helena,1.0,t +5945,,French Guiana,1.0,t +530,100%,Lithuania,2.0,t +32472,,,1.0,f +47018,0%,,1.0,f +12833,100%,Uzbekistan,3.0,t +25573,,Reunion,1.0,f +21364,,,1.0,t +20789,98%,Sao Tome and Principe,13.0,f +33384,,Micronesia,1.0,f +6323,100%,,2.0,f +28465,,United Kingdom,1.0,f +43179,,Vanuatu,1.0,f +1432,67%,,1.0,f +21050,100%,,1.0,f +16296,,Vanuatu,1.0,f +34294,100%,Ghana,4.0,f +35641,,Netherlands,15.0,t +18245,,Australia,1.0,f +48519,,Isle of Man,1.0,t +33631,,Chad,1.0,t +49573,,Mexico,1.0,t +49825,100%,Pakistan,7.0,t +6894,80%,Estonia,47.0,t +5057,100%,Zimbabwe,23.0,t +24099,,France,4.0,f +29647,100%,Peru,1305.0,f +24839,100%,Mauritania,2.0,t +43676,,Djibouti,1.0,f +21743,,Papua New Guinea,1.0,f +33748,30%,Uzbekistan,3.0,t +10711,93%,Uganda,108.0,t +48066,80%,Papua New Guinea,1.0,f +42348,100%,Gambia,2.0,f +45965,100%,Estonia,8.0,f +30687,,,1.0,f +37646,100%,Estonia,60.0,f +40005,,Nicaragua,1.0,t +18082,100%,Chad,1.0,t +15273,100%,,2.0,f +28828,100%,Isle of Man,198.0,t +48409,,Estonia,60.0,t +6767,,,3.0,f +17031,80%,Reunion,7.0,t +41237,100%,Lebanon,1.0,f +558,,,1.0,f +10206,100%,,6.0,t +47091,90%,United Kingdom,3.0,f +8457,50%,Niue,1.0,f +19189,,,1.0,f +22794,50%,Cape Verde,36.0,t +29650,100%,France,1.0,f +36302,100%,Vanuatu,1.0,f +23074,,French Guiana,1.0,f +20334,99%,Niger,171.0,t +43767,100%,,1.0,f +44700,,Lebanon,1.0,f +19067,100%,Puerto Rico,2.0,f +4110,,,3.0,f +40200,,,1.0,t +4110,,,3.0,f +22872,,,1.0,f +38226,,,1.0,t +15279,,Afghanistan,22.0,t +18974,,,1.0,f +42302,50%,,1.0,f +34480,100%,,1.0,f +32005,,,1.0,t +6460,100%,,1.0,f +36051,,,1.0,f +49197,90%,,3.0,f +49304,,,1.0,t +41313,100%,Denmark,10.0,t +70,67%,Cuba,1.0,f +15310,100%,Turks and Caicos Islands,1.0,f +41088,,,1.0,f +10434,100%,United Kingdom,4.0,f +37889,,,1.0,t +40851,,,1.0,f +43550,100%,Rwanda,16.0,t +9654,,,1.0,t +36211,,Bosnia and Herzegovina,1.0,f +14530,,Marshall Islands,1.0,t +7787,71%,,2.0,f +9425,100%,,2.0,f +29412,,,2.0,t +47625,,Niue,1.0,f +4867,,Gambia,1.0,f +3802,,Monaco,1.0,f +26056,,Kiribati,1.0,f +3020,100%,,1.0,f +2153,,Uzbekistan,1.0,f +3237,100%,Turkmenistan,2.0,t +30216,98%,Maldives,34.0,f +22331,99%,Rwanda,50.0,t +29647,100%,Peru,1305.0,f +10889,100%,Marshall Islands,2.0,t +33452,100%,Guinea,3.0,f +29647,100%,Peru,1305.0,f +12900,,Cocos (Keeling) Islands,1.0,t +10194,0%,,1.0,f +39173,,Lebanon,2.0,t +29647,100%,Peru,1305.0,f +35216,50%,Marshall Islands,1.0,t +21871,,Kenya,2.0,f +38876,0%,,3.0,t +1313,,Vanuatu,1.0,f +36533,,Kenya,1.0,f +29647,100%,Peru,1305.0,f +9202,100%,,1.0,f +2692,,Sao Tome and Principe,1.0,t +29647,100%,Peru,1305.0,f +27907,100%,Puerto Rico,21.0,f +18064,,Isle of Man,1.0,f +24016,100%,Bosnia and Herzegovina,29.0,f +27479,,,1.0,f +29647,100%,Peru,1305.0,f +38045,97%,Uzbekistan,7.0,f +16344,100%,Nicaragua,1.0,f +10504,,,1.0,f +29647,100%,Peru,1305.0,f +12543,,Uzbekistan,3.0,t +29647,100%,Peru,1305.0,f +1290,100%,,1.0,t +13592,,United Kingdom,1.0,f +30708,100%,Australia,5.0,f +44019,60%,Maldives,1.0,t +16358,100%,,1.0,f +40677,,,3.0,f +12993,100%,Montserrat,3.0,t +32636,,Gibraltar,2.0,f +48063,,Rwanda,1.0,f +40531,80%,Niue,1.0,f +19366,,Kiribati,1.0,f +36316,,United Kingdom,2.0,f +21718,,,2.0,f +23270,100%,Indonesia,4.0,f +2898,,Saint Helena,1.0,t +30899,,Reunion,8.0,f +524,100%,Croatia,1.0,f +1857,,,2.0,t +15647,100%,Bosnia and Herzegovina,2.0,t +5782,,Malta,1.0,f +20788,,,1.0,f +9293,100%,Puerto Rico,2.0,f +44186,,Guinea,1.0,f +11183,,Svalbard & Jan Mayen Islands,2.0,f +22331,99%,Rwanda,50.0,t +38737,,Uzbekistan,2.0,t +41313,100%,Denmark,10.0,t +28077,,,1.0,f +40034,90%,Uganda,1.0,t +15641,,Tonga,2.0,t +9692,100%,,2.0,f +33108,100%,Costa Rica,3.0,f +9293,100%,Puerto Rico,2.0,f +44020,100%,,2.0,t +835,,Russian Federation,1.0,f +16360,,,2.0,f +29574,,,1.0,f +12834,,Malawi,1.0,t +49338,,,1.0,f +20680,83%,Russian Federation,3.0,t +6118,,Denmark,3.0,f +38178,,Lebanon,1.0,f +44519,,Cocos (Keeling) Islands,1.0,f +31169,,Niue,1.0,f +30116,100%,Nicaragua,2.0,f +41077,71%,Nauru,2.0,f +5694,,France,1.0,t +20811,,Lithuania,1.0,f +20810,,,1.0,f +40708,,,1.0,t +26541,100%,Nicaragua,12.0,f +36998,92%,Lebanon,10.0,f +10123,0%,,1.0,f +45772,100%,Denmark,3.0,f +12164,100%,Nicaragua,8.0,f +26541,100%,Nicaragua,12.0,f +9428,100%,,1.0,f +5462,,Togo,1.0,f +14972,100%,,1.0,f +16490,67%,,1.0,t +36525,,Marshall Islands,2.0,f +25247,,,1.0,f +18262,100%,Netherlands,1.0,f +29976,100%,,3.0,f +26916,100%,French Guiana,1.0,f +13389,,,1.0,f +6432,100%,,2.0,t +16751,,,1.0,f +44676,100%,Venezuela,1.0,t +46123,100%,Tunisia,1.0,t +39174,,Mauritania,1.0,f +10229,86%,Isle of Man,2.0,t +20267,,Faroe Islands,1.0,t +15004,100%,Uzbekistan,88.0,f +29647,100%,Peru,1305.0,f +3946,96%,Anguilla,4.0,t +27965,100%,Faroe Islands,3.0,f +21270,100%,Jersey,1.0,t +34875,80%,Svalbard & Jan Mayen Islands,1.0,f +940,0%,,1.0,f +46620,,,1.0,t +12715,100%,Estonia,29.0,f +17297,,Guinea,1.0,f +5205,,Slovakia (Slovak Republic),6.0,t +28046,100%,Cape Verde,5.0,f +44157,,Rwanda,6.0,t +48737,,Russian Federation,1.0,f +45772,100%,Denmark,3.0,f +16074,100%,Faroe Islands,1.0,t +4541,,Chad,1.0,f +31698,,Ghana,3.0,f +40586,100%,Uzbekistan,1.0,t +5290,,,1.0,f +8380,,Niue,1.0,t +21052,,,1.0,f +46535,50%,,1.0,f +31226,100%,,1.0,f +4135,,France,1.0,f +45174,,,1.0,f +45266,100%,Guernsey,1.0,f +3324,,Costa Rica,1.0,f +1782,,,2.0,f +41313,100%,Denmark,10.0,t +4628,,,1.0,t +45364,,Maldives,1.0,f +26022,100%,Russian Federation,1.0,f +39248,97%,Cuba,5.0,f +27617,,Indonesia,1.0,t +5624,,French Guiana,1.0,t +6852,,Costa Rica,1.0,f +49219,,,2.0,t +10419,,Niue,1.0,f +48768,,,2.0,t +14794,100%,,1.0,f +26522,,Togo,1.0,f +32342,,Uzbekistan,1.0,f +17528,100%,Turkmenistan,1.0,t +48929,100%,Niue,4.0,f +20567,,Ecuador,1.0,f +19679,,,1.0,f +2449,,French Guiana,1.0,f +28828,100%,Isle of Man,198.0,t +46249,,Lebanon,2.0,t +42956,100%,Malta,1.0,f +19803,75%,Guinea,2.0,f +5302,100%,Nicaragua,6.0,f +6894,80%,Estonia,47.0,t +31507,67%,,2.0,t +34355,,,2.0,t +29499,,Uzbekistan,1.0,t +5302,100%,Nicaragua,6.0,f +12938,92%,Reunion,12.0,f +5302,100%,Nicaragua,6.0,f +12563,,,1.0,t +36240,100%,,1.0,f +5942,,Russian Federation,1.0,t +9565,,,1.0,f +42873,,Isle of Man,1.0,f +15641,,Tonga,2.0,t +38822,100%,French Guiana,2.0,t +34325,100%,Gibraltar,1.0,t +23253,50%,Puerto Rico,1.0,t +22165,,Russian Federation,3.0,t +10223,,United Kingdom,1.0,f +40721,,El Salvador,1.0,f +26434,100%,Tonga,1.0,f +32567,,France,1.0,f +44091,100%,Chile,2.0,f +8582,0%,,1.0,t +46249,,Lebanon,2.0,t +6513,,El Salvador,1.0,f +23721,,,1.0,f +34554,,,1.0,t +24109,,Afghanistan,1.0,t +24699,80%,Barbados,2.0,t +13851,,Chad,1.0,t +31122,,El Salvador,1.0,t +35687,,Djibouti,1.0,t +8925,,Malawi,1.0,f +5581,100%,Rwanda,1.0,f +937,100%,French Guiana,3.0,f +42271,,Jersey,1.0,f +35301,90%,Micronesia,2.0,t +937,100%,French Guiana,3.0,f +17543,90%,,4.0,f +24770,,,1.0,f +35700,75%,Turks and Caicos Islands,1.0,f +41557,100%,Niger,2.0,f +17599,50%,Somalia,1.0,t +22362,,,1.0,f +30517,100%,,1.0,t +43128,100%,Anguilla,1.0,t +14454,,Guernsey,2.0,f +23658,,Zimbabwe,1.0,f +23564,,Turks and Caicos Islands,1.0,f +21447,,Lebanon,1.0,f +29963,,France,1.0,f +36511,100%,Fiji,1.0,f +35110,90%,Jersey,1.0,t +34589,100%,Togo,1.0,f +7601,,Kenya,1.0,f +12002,100%,Monaco,1.0,f +42728,,Malta,1.0,f +18369,100%,,1.0,f +47093,,Marshall Islands,1.0,f +42936,,Canada,1.0,t +3334,,Indonesia,2.0,t +44199,100%,Chad,1.0,t +39653,,Russian Federation,1.0,f +9357,100%,,1.0,f +10812,50%,,1.0,t +31140,100%,,1.0,t +23033,100%,,1.0,t +44295,100%,Djibouti,1.0,f +25881,,China,2.0,f +21703,91%,Palestinian Territory,1.0,t +31821,100%,Lithuania,1.0,t +38874,,Mexico,1.0,f +35678,,Gambia,1.0,t +6998,80%,Malawi,2.0,t +27019,100%,Gambia,1.0,f +41766,,Tonga,1.0,f +46287,,,1.0,t +17526,,,1.0,f +5928,,Niue,6.0,t +34528,,France,1.0,f +34032,,,1.0,f +40777,100%,,1.0,f +13669,100%,Philippines,1.0,t +2023,,Russian Federation,1.0,t +14339,99%,Jersey,5.0,f +34812,,Estonia,1.0,t +21903,,Mauritania,1.0,t +29389,100%,,1.0,f +48581,,Montserrat,8.0,t +22523,100%,Rwanda,9.0,f +4133,90%,Maldives,6.0,f +3303,,Nauru,2.0,f +37810,,,2.0,f +27371,100%,Costa Rica,1.0,f +6903,75%,,2.0,t +11557,,,1.0,t +5057,100%,Zimbabwe,23.0,t +5057,100%,Zimbabwe,23.0,t +33916,100%,Svalbard & Jan Mayen Islands,3.0,f +4324,0%,Gibraltar,2.0,f +5256,,,1.0,f +36922,,,2.0,f +22658,,,1.0,f +16766,100%,,1.0,t +36867,100%,Tanzania,1.0,f +46842,75%,Portugal,13.0,t +37406,100%,Greenland,2.0,f +12124,,Brazil,2.0,f +44104,,Nicaragua,1.0,f +17793,,Gambia,1.0,f +42636,60%,,1.0,f +18818,100%,,2.0,f +18422,75%,Kenya,1.0,f +39097,,,1.0,f +24495,,Reunion,2.0,t +42848,,Micronesia,1.0,f +33112,,Senegal,1.0,f +5054,100%,China,4.0,t +44675,,Monaco,1.0,t +11458,100%,Canada,1.0,f +22721,100%,Ecuador,109.0,f +44039,,Faroe Islands,1.0,f +2826,50%,Croatia,2.0,t +18563,,Jersey,1.0,t +42777,,,1.0,f +7023,,United Kingdom,1.0,f +44934,100%,Philippines,17.0,f +43758,80%,Niue,2.0,t +48211,100%,,1.0,f +21314,,,1.0,f +4322,97%,Tonga,32.0,f +41429,,Malta,2.0,t +34513,93%,Ecuador,2.0,t +16113,100%,Croatia,2.0,t +30475,92%,Vietnam,40.0,f +19034,,Monaco,1.0,t +7569,100%,Ecuador,1.0,f +29392,100%,Guinea,1.0,f +33802,90%,Gambia,1.0,f +7466,,Fiji,1.0,f +16113,100%,Croatia,2.0,t +490,100%,Bosnia and Herzegovina,6.0,f +44525,,Niue,1.0,t +19280,,,1.0,t +31175,,Mauritania,1.0,f +35087,,,1.0,f +48768,,,2.0,t +24448,100%,Venezuela,1.0,f +35388,100%,Isle of Man,2.0,t +31428,,Micronesia,3.0,f +15004,100%,Uzbekistan,88.0,f +36886,,,1.0,f +15004,100%,Uzbekistan,88.0,f +30158,100%,,1.0,f +18020,,Guinea,1.0,f +34680,75%,Zimbabwe,1.0,t +26509,100%,Russian Federation,1.0,f +41001,,,1.0,f +17327,,Russian Federation,2.0,f +36115,100%,Afghanistan,3.0,f +20921,,Bosnia and Herzegovina,1.0,f +3596,100%,Marshall Islands,6.0,t +40761,,Malawi,1.0,f +44843,,Croatia,1.0,t +49825,100%,Pakistan,7.0,t +38086,100%,United Kingdom,2.0,f +12145,100%,Marshall Islands,1.0,f +37659,,Uganda,1.0,f +25881,,China,2.0,f +48088,,Gambia,1.0,f +1174,,,1.0,t +10603,100%,,1.0,f +6138,,,1.0,f +10310,100%,Togo,2.0,f +21812,,,1.0,f +19527,,Croatia,1.0,t +25043,,,1.0,f +46677,,El Salvador,1.0,f +6155,100%,Guinea,2.0,t +41938,100%,Malta,3.0,f +34828,100%,,1.0,t +22716,,Jersey,1.0,f +43550,100%,Rwanda,16.0,t +24024,80%,,3.0,f +28828,100%,Isle of Man,198.0,t +28828,100%,Isle of Man,198.0,t +10345,100%,,2.0,f +17368,,,1.0,f +6401,,Chile,1.0,t +38737,,Uzbekistan,2.0,t +11230,,Guinea,2.0,t +1577,100%,Peru,8.0,t +27334,100%,China,16.0,f +17464,,Philippines,8.0,t +20334,99%,Niger,171.0,t +18746,,Guinea,1.0,f +36424,63%,Slovakia (Slovak Republic),12.0,f +31417,100%,,1.0,f +18459,100%,Zimbabwe,100.0,f +29276,,,1.0,t +1799,100%,,1.0,t +18459,100%,Zimbabwe,100.0,f +48935,,,1.0,f +22531,,Cape Verde,1.0,f +18459,100%,Zimbabwe,100.0,f +10780,,French Guiana,1.0,f +41629,,,1.0,t +4346,,China,2.0,t +837,100%,,2.0,t +5928,,Niue,6.0,t +31237,,French Guiana,1.0,t +4324,0%,Gibraltar,2.0,f +47428,,,1.0,f +40225,100%,Uganda,3.0,t +29459,,Maldives,1.0,f +31707,100%,Niger,48.0,f +29846,100%,Maldives,7.0,f +8237,,Guinea,1.0,f +18077,100%,Sao Tome and Principe,139.0,f +32421,,Uzbekistan,1.0,f +31707,100%,Niger,48.0,f +33604,90%,Marshall Islands,8.0,t +8179,100%,,1.0,f +24026,98%,Cape Verde,69.0,t +17549,,Jersey,1.0,f +39519,,,2.0,t +32656,,Kenya,5.0,f +233,100%,Afghanistan,1.0,f +10138,,,1.0,f +32656,,Kenya,5.0,f +44768,,,1.0,f +18459,100%,Zimbabwe,100.0,f +32905,,,1.0,f +39180,90%,Pakistan,2.0,f +36764,,,1.0,f +31959,,Rwanda,4.0,f +9131,100%,Gambia,5.0,f +37262,,United Kingdom,2.0,f +7915,,,1.0,f +41232,100%,,3.0,f +18459,100%,Zimbabwe,100.0,f +35054,,Finland,3.0,t +49311,,,1.0,t +9488,,Rwanda,1.0,t +7856,90%,Anguilla,2.0,t +43326,,,1.0,f +16457,,Saint Lucia,4.0,t +11610,,Brazil,1.0,f +13491,,Sao Tome and Principe,2.0,t +48849,,Denmark,1.0,f +37262,,United Kingdom,2.0,f +9053,100%,Gibraltar,1.0,t +40151,,Reunion,1.0,f +39314,,Zimbabwe,1.0,f +10410,,Bouvet Island (Bouvetoya),1.0,f +10286,,,2.0,f +8087,67%,,1.0,t +34852,,Niue,10.0,t +28059,100%,Estonia,1.0,f +27812,33%,Cape Verde,1.0,f +2427,,,1.0,f +26093,,Nicaragua,1.0,f +36922,,,2.0,f +14903,67%,Venezuela,1.0,f +30708,100%,Australia,5.0,f +32555,50%,Anguilla,2.0,t +28385,,Vanuatu,1.0,f +1737,100%,Finland,3.0,f +26148,100%,Kiribati,10.0,t +42820,100%,Gibraltar,6.0,f +47283,,Ghana,4.0,t +36457,100%,Rwanda,4.0,f +21124,,Estonia,2.0,t +19291,,Maldives,1.0,t +30583,,,1.0,f +29997,100%,Kiribati,1.0,f +1724,,Sao Tome and Principe,1.0,f +35185,100%,Lebanon,2.0,t +262,97%,Maldives,16.0,t +15949,100%,Svalbard & Jan Mayen Islands,3.0,t +10239,63%,Reunion,1.0,t +48669,100%,Malawi,1.0,f +2434,,,1.0,t +24991,100%,Indonesia,14.0,f +1046,,Gambia,1.0,f +262,97%,Maldives,16.0,t +33677,,Russian Federation,1.0,f +24476,,,1.0,f +22077,100%,Mauritania,10.0,f +262,97%,Maldives,16.0,t +40738,,Malta,1.0,f +39646,,Brazil,2.0,t +23015,,Gambia,2.0,f +1398,,,1.0,f +24377,,Uzbekistan,1.0,f +46550,,China,1.0,f +262,97%,Maldives,16.0,t +19000,,Guinea,1.0,t +29647,100%,Peru,1305.0,f +29846,100%,Maldives,7.0,f +26608,,Guinea,1.0,t +29846,100%,Maldives,7.0,f +31202,90%,Kiribati,107.0,f +6504,,Guinea,1.0,f +18459,100%,Zimbabwe,100.0,f +32088,80%,Afghanistan,1.0,f +10450,70%,Cape Verde,4.0,t +8957,,Guinea,2.0,t +7054,100%,,1.0,f +766,100%,Cape Verde,2.0,f +29647,100%,Peru,1305.0,f +10711,93%,Uganda,108.0,t +17464,,Philippines,8.0,t +10383,,Jersey,1.0,f +34075,,,1.0,f +49319,,Niue,1.0,f +6608,95%,Russian Federation,3.0,t +12985,86%,Chad,2.0,f +18423,,Anguilla,1.0,f +43061,,Russian Federation,1.0,t +1038,,Maldives,5.0,f +32277,,Russian Federation,2.0,t +30131,100%,Svalbard & Jan Mayen Islands,1.0,t +48730,,Bosnia and Herzegovina,1.0,f +8397,100%,Faroe Islands,1.0,t +19659,,Turkmenistan,1.0,f +26144,,Russian Federation,1.0,t +36199,,France,1.0,t +26148,100%,Kiribati,10.0,t +17298,97%,Barbados,7.0,f +30321,,,1.0,f +7702,70%,Russian Federation,3.0,t +2975,,Faroe Islands,1.0,f +36670,,,2.0,f +27143,,,1.0,f +504,,Denmark,1.0,f +34007,100%,Kenya,2.0,f +11804,100%,Gambia,1.0,f +17781,100%,Uzbekistan,2.0,t +45496,40%,Niue,6.0,f +20439,,,5.0,f +1105,100%,Uganda,1.0,f +4748,,Niger,1.0,f +8796,100%,Somalia,3.0,t +47361,100%,Barbados,10.0,f +6892,100%,,1.0,f +17998,,,1.0,f +7998,100%,Jersey,1.0,f +47361,100%,Barbados,10.0,f +42660,,Chad,1.0,t +22226,100%,Tunisia,1.0,f +10765,,Monaco,3.0,f +26430,100%,,1.0,f +13191,,Marshall Islands,1.0,f +18077,100%,Sao Tome and Principe,139.0,f +14497,100%,,1.0,f +35673,,Zimbabwe,1.0,f +21149,,,1.0,t +10711,93%,Uganda,108.0,t +47679,,Svalbard & Jan Mayen Islands,1.0,t +13348,,Russian Federation,1.0,f +8129,100%,Rwanda,5.0,f +31202,90%,Kiribati,107.0,f +31202,90%,Kiribati,107.0,f +3790,100%,Netherlands,16.0,f +41894,,Mauritania,1.0,f +16089,83%,Maldives,5.0,f +20425,75%,Niue,1.0,t +3296,,Vanuatu,1.0,f +10751,,,3.0,t +42308,100%,,1.0,f +20387,100%,Malta,12.0,t +36021,,Bouvet Island (Bouvetoya),1.0,t +29647,100%,Peru,1305.0,f +12074,,Mauritania,1.0,f +39617,100%,Zimbabwe,1.0,f +18979,100%,Tonga,6.0,t +30026,100%,,2.0,f +14116,100%,Russian Federation,2.0,t +35221,100%,Turks and Caicos Islands,30.0,t +10711,93%,Uganda,108.0,t +9772,100%,Marshall Islands,3.0,t +9131,100%,Gambia,5.0,f +16672,,,1.0,f +32896,100%,,1.0,f +1064,,Burkina Faso,2.0,t +3616,100%,Cape Verde,14.0,t +45869,100%,,1.0,t +13070,100%,Fiji,45.0,f +33750,,Sao Tome and Principe,1.0,f +30358,,Uruguay,1.0,t +27218,,Kenya,1.0,f +23890,,,1.0,f +9147,100%,,4.0,f +42669,,Sao Tome and Principe,2.0,f +17718,100%,Lebanon,2.0,f +1213,,,1.0,f +27825,100%,,2.0,t +25422,100%,Tanzania,1.0,f +42142,100%,Tonga,1.0,f +28163,100%,Sao Tome and Principe,5.0,t +38071,80%,Zimbabwe,4.0,f +44506,,Faroe Islands,1.0,f +45293,90%,,2.0,f +37392,100%,Micronesia,7.0,t +36311,,,2.0,f +28828,100%,Isle of Man,198.0,t +34856,,Maldives,2.0,f +5530,100%,,1.0,f +21427,100%,United Kingdom,8.0,t +14451,,,1.0,t +20542,80%,Kenya,7.0,t +14752,,Brazil,1.0,t +27026,,,1.0,t +32584,100%,Kiribati,5.0,f +3799,,French Guiana,1.0,t +38781,100%,,1.0,f +30840,,Philippines,1.0,f +45789,,Guernsey,1.0,f +42453,100%,Russian Federation,1.0,f +27852,100%,Djibouti,1.0,t +26120,,Turkmenistan,1.0,t +30475,92%,Vietnam,40.0,f +15004,100%,Uzbekistan,88.0,f +18706,,,1.0,f +38458,100%,Montserrat,6.0,t +15470,,,1.0,f +33539,,,3.0,f +38525,100%,,2.0,f +2383,,French Guiana,3.0,t +34294,100%,Ghana,4.0,f +41350,67%,,1.0,t +22529,90%,,2.0,f +29795,,Turkmenistan,1.0,f +25107,,Christmas Island,1.0,t +4256,,Lebanon,1.0,f +31104,100%,France,2.0,f +28716,,Svalbard & Jan Mayen Islands,1.0,f +11609,,Jersey,2.0,f +16406,100%,Bouvet Island (Bouvetoya),16.0,f +43001,,Bosnia and Herzegovina,1.0,f +41571,,,1.0,f +9048,100%,Congo,1.0,f +29123,100%,Zimbabwe,16.0,t +13590,100%,Indonesia,2.0,t +551,95%,Rwanda,17.0,f +27883,100%,Cuba,11.0,f +48988,100%,,1.0,t +19416,100%,Djibouti,1.0,t +15004,100%,Uzbekistan,88.0,f +27518,,Afghanistan,1.0,t +15004,100%,Uzbekistan,88.0,f +12381,,,1.0,f +15982,,Nicaragua,1.0,f +5486,100%,Svalbard & Jan Mayen Islands,12.0,f +27678,,,1.0,t +6459,,,1.0,t +11519,,Philippines,1.0,f +14997,100%,Malta,1.0,f +26382,,,1.0,f +45956,100%,,1.0,f +10538,,Chile,1.0,f +35439,94%,United Kingdom,23.0,t +22943,,,1.0,t +45195,100%,,2.0,f +29224,,,2.0,t +11329,,Philippines,1.0,f +13683,100%,,1.0,f +11620,90%,Slovakia (Slovak Republic),1.0,f +33080,100%,,1.0,f +22529,90%,,2.0,f +1045,100%,Brazil,1.0,f +20353,100%,Isle of Man,1.0,f +29647,100%,Peru,1305.0,f +7013,100%,Vanuatu,1.0,f +18320,50%,Reunion,19.0,t +36450,100%,,1.0,f +43162,72%,China,7.0,f +12697,100%,Rwanda,1.0,f +12753,,Marshall Islands,1.0,f +28431,,,1.0,t +36553,,,2.0,f +2957,,Faroe Islands,1.0,f +32898,100%,Denmark,1.0,f +37981,,Montserrat,1.0,f +17362,,Chad,1.0,f +1494,,Lithuania,1.0,f +6619,57%,Lithuania,1.0,f +20753,100%,Lebanon,1.0,f +27101,,Vanuatu,1.0,f +33178,,Niue,1.0,t +33909,,Tonga,2.0,f +24777,100%,Papua New Guinea,1.0,t +35487,,Svalbard & Jan Mayen Islands,1.0,f +3228,,French Polynesia,1.0,t +1279,100%,,5.0,f +23812,,,2.0,t +46680,100%,,2.0,t +5395,,,1.0,f +9787,100%,Kiribati,2.0,f +8591,100%,,1.0,f +38093,,Lebanon,3.0,f +18564,,,1.0,f +28828,100%,Isle of Man,198.0,t +28828,100%,Isle of Man,198.0,t +36356,100%,Cape Verde,1.0,f +48924,,Papua New Guinea,4.0,f +1038,,Maldives,5.0,f +1478,,Turkmenistan,1.0,f +13606,100%,,4.0,f +21538,,,1.0,f +14417,,,1.0,t +31438,100%,Nicaragua,5.0,t +27754,100%,French Guiana,2.0,t +3525,,,1.0,f +32000,80%,Niue,1.0,f +25223,,Mauritania,1.0,f +43118,100%,,2.0,f +3883,,,1.0,f +30176,,Sao Tome and Principe,2.0,t +3981,100%,,2.0,f +36126,100%,Indonesia,2.0,f +39099,,,1.0,f +22453,,Malta,1.0,f +29163,100%,Nicaragua,1.0,f +35463,71%,Djibouti,1.0,f +9260,60%,,1.0,t +21871,,Kenya,2.0,f +27557,100%,,5.0,t +6380,100%,Turkmenistan,1.0,f +40311,,,1.0,f +47849,100%,,1.0,f +38093,,Lebanon,3.0,f +39910,100%,French Guiana,1.0,f +13284,,Latvia,2.0,f +29599,,,1.0,t +39153,100%,,3.0,f +39083,100%,Kenya,3.0,f +46528,100%,Uzbekistan,3.0,t +15804,,Mauritania,1.0,t +6608,95%,Russian Federation,3.0,t +31339,,,3.0,t +42663,,,1.0,f +23896,100%,,1.0,f +35652,,Russian Federation,1.0,f +13431,100%,,1.0,f +33373,100%,,1.0,f +10414,,,1.0,f +29321,100%,Uzbekistan,1.0,t +33554,,Micronesia,1.0,t +27414,,Marshall Islands,1.0,t +881,,Jersey,1.0,f +396,,Uganda,1.0,f +19643,,,2.0,f +1756,,Croatia,1.0,f +1596,,Lebanon,2.0,t +1596,,Lebanon,2.0,t +44258,100%,Jersey,3.0,t +47697,,Guinea,1.0,f +39086,88%,,2.0,f +38854,,Guernsey,1.0,f +4232,100%,Bouvet Island (Bouvetoya),3.0,t +6611,100%,,1.0,f +44073,100%,Togo,2.0,t +4322,97%,Tonga,32.0,f +11929,100%,Ecuador,1.0,t +24322,,Guernsey,1.0,t +40689,100%,Cuba,23.0,f +27902,,,2.0,f +39377,100%,Ukraine,11.0,t +37043,100%,Pakistan,11.0,f +543,,Gibraltar,1.0,f +27397,,Maldives,1.0,f +20107,,Russian Federation,1.0,f +12191,100%,Netherlands,1.0,f +37290,,Costa Rica,1.0,f +45056,100%,Chile,1.0,f +36747,,Cocos (Keeling) Islands,2.0,f +12970,,,1.0,t +15004,100%,Uzbekistan,88.0,f +29123,100%,Zimbabwe,16.0,t +35139,,Bosnia and Herzegovina,1.0,f +41304,100%,,3.0,f +40709,,Denmark,1.0,f +33328,,Chile,1.0,f +29647,100%,Peru,1305.0,f +32728,56%,Nicaragua,1.0,f +49271,,Russian Federation,1.0,t +15004,100%,Uzbekistan,88.0,f +25514,100%,,3.0,t +29647,100%,Peru,1305.0,f +36263,,,1.0,f +29647,100%,Peru,1305.0,f +49397,,Tonga,2.0,f +22553,100%,Wallis and Futuna,1.0,f +20334,99%,Niger,171.0,t +15183,,,1.0,f +24914,,,1.0,t +1233,50%,,1.0,f +40078,100%,Croatia,7.0,t +16812,100%,Afghanistan,1.0,f +47593,100%,,1.0,t +15004,100%,Uzbekistan,88.0,f +18888,70%,Uganda,1.0,f +41753,,Guinea,1.0,f +43016,100%,Gibraltar,1.0,f +21310,,,1.0,f +5368,100%,France,1.0,f +16093,100%,Indonesia,1.0,f +4591,25%,,1.0,f +25010,,,2.0,f +28828,100%,Isle of Man,198.0,t +40689,100%,Cuba,23.0,f +22569,100%,,2.0,t +43776,100%,,1.0,f +31918,,Nicaragua,1.0,f +4606,,Cocos (Keeling) Islands,1.0,f +4608,100%,Gambia,2.0,t +33884,,Lebanon,1.0,f +24808,,Cambodia,3.0,t +29218,,Marshall Islands,1.0,f +10899,,,1.0,f +42488,86%,,1.0,t +22565,90%,Guinea,2.0,t +44707,,Mauritania,1.0,f +17171,100%,,1.0,f +8949,100%,Isle of Man,4.0,f +6219,100%,Tonga,1.0,t +38339,100%,Venezuela,2.0,f +23905,,Maldives,1.0,t +29936,,Niue,3.0,t +15097,,,1.0,t +7702,70%,Russian Federation,3.0,t +25572,,,1.0,f +6807,100%,Mexico,9.0,f +31961,,Vanuatu,1.0,f +3568,,Greenland,1.0,f +44915,,,1.0,f +12650,,Guinea,1.0,t +45653,100%,Christmas Island,1.0,f +3119,,,1.0,f +35028,,Chad,1.0,f +23767,100%,Puerto Rico,2.0,t +20576,50%,Russian Federation,2.0,t +34699,,,1.0,f +46885,,,1.0,f +6327,,Guinea,2.0,t +6245,100%,Zimbabwe,1.0,t +10490,100%,Sao Tome and Principe,4.0,f +36873,,,1.0,f +34652,,Guinea,2.0,f +42090,100%,Tonga,1.0,f +37749,100%,Zimbabwe,1.0,f +33880,84%,Barbados,18.0,f +46775,100%,Nauru,2.0,f +5420,100%,Tonga,41.0,f +12160,,Mauritania,1.0,t +37936,,,1.0,f +40732,100%,Slovakia (Slovak Republic),1.0,f +35251,,,1.0,f +23269,,,1.0,t +13200,,China,2.0,f +43949,,Montserrat,1.0,f +37186,,Russian Federation,3.0,f +39201,100%,Holy See (Vatican City State),2.0,t +20905,,Russian Federation,1.0,f +19266,100%,Isle of Man,2.0,t +46930,100%,Turks and Caicos Islands,1.0,f +9100,,Gibraltar,1.0,t +22560,,Uzbekistan,1.0,f +32700,80%,,2.0,f +14355,,Isle of Man,1.0,f +33065,100%,Uzbekistan,6.0,f +18164,100%,Marshall Islands,5.0,f +37212,100%,Russian Federation,1.0,f +44725,100%,Slovakia (Slovak Republic),4.0,t +40861,100%,Barbados,1.0,t +43816,100%,Brazil,1.0,f +44635,,Barbados,2.0,t +12715,100%,Estonia,29.0,f +4745,100%,Croatia,119.0,f +35263,80%,Denmark,1.0,f +32741,100%,Isle of Man,3.0,f +34515,,China,2.0,t +20806,100%,Afghanistan,1.0,t +22783,,Estonia,1.0,f +49554,67%,,1.0,f +31110,,,1.0,f +48062,100%,Isle of Man,1.0,f +39336,100%,Nauru,1.0,f +4745,100%,Croatia,119.0,f +20334,99%,Niger,171.0,t +13322,50%,Anguilla,2.0,f +4745,100%,Croatia,119.0,f +4745,100%,Croatia,119.0,f +4745,100%,Croatia,119.0,f +38652,100%,Uzbekistan,9.0,f +1577,100%,Peru,8.0,t +49423,,,1.0,f +28372,100%,Indonesia,12.0,f +22322,100%,Micronesia,2.0,f +23034,99%,Monaco,54.0,f +17659,,Croatia,1.0,f +19470,,Turkmenistan,1.0,t +25010,,,2.0,f +28372,100%,Indonesia,12.0,f +28932,,,1.0,f +5393,100%,Denmark,1.0,f +31746,80%,Brazil,2.0,t +46504,100%,Barbados,1.0,f +11255,93%,Suriname,41.0,f +13361,,Zimbabwe,1.0,f +44365,100%,Russian Federation,2.0,t +10535,,,1.0,f +2609,,Turkmenistan,1.0,f +42973,100%,,1.0,f +36260,100%,Papua New Guinea,1.0,f +23685,,Philippines,1.0,f +33482,,Tonga,1.0,t +3319,,Uzbekistan,1.0,f +42318,100%,,1.0,f +19384,100%,Cape Verde,4.0,f +18774,100%,Uzbekistan,4.0,f +31685,,Libyan Arab Jamahiriya,1.0,f +24120,,,1.0,t +12939,,,1.0,f +39370,,Marshall Islands,1.0,f +31500,,Niue,1.0,f +29442,100%,Marshall Islands,1.0,f +47260,,Maldives,1.0,f +36177,,,1.0,f +38646,70%,,2.0,t +35221,100%,Turks and Caicos Islands,30.0,t +38045,97%,Uzbekistan,7.0,f +44258,100%,Jersey,3.0,t +42377,100%,Marshall Islands,2.0,f +2952,,Vanuatu,1.0,f +28372,100%,Indonesia,12.0,f +28372,100%,Indonesia,12.0,f +35265,,,1.0,t +28372,100%,Indonesia,12.0,f +44592,,Micronesia,1.0,f +17817,100%,Croatia,13.0,t +15553,100%,Russian Federation,2.0,t +21542,100%,Sao Tome and Principe,1.0,f +20019,,,1.0,f +7423,,,1.0,t +41761,100%,,1.0,f +49429,99%,Bosnia and Herzegovina,49.0,f +23290,,,1.0,f +24896,100%,Algeria,50.0,t +49434,0%,Estonia,1.0,t +11393,,Tanzania,1.0,f +24071,100%,Indonesia,22.0,f +14604,,Korea,1.0,f +45194,100%,,1.0,f +21125,100%,Tonga,2.0,f +4745,100%,Croatia,119.0,f +32965,100%,Rwanda,1.0,f +30086,,Malta,1.0,t +5839,100%,,1.0,f +4745,100%,Croatia,119.0,f +40781,100%,Guinea,5.0,f +37571,75%,Monaco,1.0,f +4745,100%,Croatia,119.0,f +31188,,Afghanistan,1.0,f +17103,,Somalia,1.0,f +4745,100%,Croatia,119.0,f +7737,,,1.0,f +47234,100%,,2.0,f +17817,100%,Croatia,13.0,t +1986,100%,Brazil,1.0,f +22176,,,1.0,t +19503,,Cocos (Keeling) Islands,1.0,t +3591,80%,Isle of Man,1.0,f +17817,100%,Croatia,13.0,t +31081,,,2.0,f +38216,,Isle of Man,1.0,f +18355,,Bouvet Island (Bouvetoya),1.0,f +17615,,Kiribati,1.0,f +10672,86%,Mauritania,3.0,t +12431,100%,,1.0,f +17817,100%,Croatia,13.0,t +15547,,Gambia,1.0,f +3717,,Niue,1.0,f +32559,,Anguilla,1.0,f +22172,100%,Marshall Islands,2.0,f +29647,100%,Peru,1305.0,f +45841,,Gambia,1.0,f +42168,,,1.0,f +27634,,,1.0,f +27421,,,1.0,f +19665,,Bahrain,1.0,t +8089,,,1.0,f +39935,,,2.0,t +41101,,Gibraltar,1.0,f +19893,100%,Croatia,1.0,f +27203,,Bouvet Island (Bouvetoya),13.0,f +49944,,Chile,1.0,f +30839,,El Salvador,1.0,f +32752,,Anguilla,1.0,f +29435,,Turkmenistan,2.0,t +2339,100%,Marshall Islands,3.0,t +19944,100%,Kiribati,12.0,f +3671,100%,Isle of Man,1.0,f +8715,100%,Uganda,2.0,f +43134,100%,Suriname,6.0,f +32386,97%,Indonesia,19.0,f +43134,100%,Suriname,6.0,f +6894,80%,Estonia,47.0,t +38910,,Gibraltar,1.0,f +20845,,,1.0,t +40553,,,1.0,f +41055,,,1.0,f +16827,100%,,1.0,t +9137,100%,Maldives,1.0,f +43976,80%,Ecuador,2.0,t +23022,67%,Niue,10.0,t +29626,,,1.0,f +44966,100%,Guinea,21.0,f +41319,100%,Sao Tome and Principe,5.0,f +11255,93%,Suriname,41.0,f +42668,100%,,1.0,f +42631,,Micronesia,2.0,f +836,,Russian Federation,1.0,t +39092,,,1.0,f +9802,,Indonesia,38.0,t +37896,,Guinea,1.0,f +47274,100%,Tonga,48.0,f +49305,,Russian Federation,1.0,t +14012,83%,Denmark,1.0,f +24974,,Niger,7.0,f +7234,,Andorra,1.0,t +39734,,Gambia,2.0,f +43629,70%,Malawi,3.0,f +34281,100%,,2.0,t +10503,,Andorra,1.0,f +3661,,Anguilla,1.0,f +40558,100%,,2.0,f +9802,,Indonesia,38.0,t +826,95%,Wallis and Futuna,2.0,f +22331,99%,Rwanda,50.0,t +17958,,Lebanon,1.0,t +26652,97%,Pakistan,6.0,f +22331,99%,Rwanda,50.0,t +38787,,Faroe Islands,10.0,f +7625,,,1.0,f +34600,,Micronesia,1.0,f +35926,,Kenya,1.0,f +41103,,Lithuania,2.0,f +18162,75%,Sao Tome and Principe,2.0,f +26234,,,1.0,t +48599,100%,Malawi,3.0,f +33488,,Kenya,1.0,f +13261,100%,Bosnia and Herzegovina,2.0,t +7187,90%,Lebanon,2.0,f +3216,100%,Sao Tome and Principe,3.0,f +22755,,,8.0,t +26906,100%,,1.0,f +42827,100%,Nicaragua,3.0,t +17018,,Lebanon,1.0,t +28828,100%,Isle of Man,198.0,t +42764,100%,Guernsey,13.0,t +39665,44%,Jersey,1.0,t +29647,100%,Peru,1305.0,f +40253,,Sao Tome and Principe,1.0,f +29647,100%,Peru,1305.0,f +36553,,,2.0,f +21688,,,1.0,t +2744,,Gibraltar,5.0,f +48845,,Mauritania,1.0,f +6162,90%,Isle of Man,2.0,t +28719,100%,Russian Federation,4.0,t +28273,100%,,2.0,f +3969,0%,,2.0,f +37530,,Niue,1.0,t +39087,90%,,1.0,t +6891,,,1.0,f +24045,,Ghana,1.0,f +33164,60%,Togo,6.0,f +6455,,,1.0,t +41741,100%,Brazil,9.0,t +25743,,Niue,1.0,f +8536,,Isle of Man,1.0,f +46323,,Niger,3.0,f +37146,,,2.0,f +23327,100%,Uzbekistan,4.0,t +228,67%,,2.0,t +31836,100%,Zimbabwe,1.0,f +20776,,Micronesia,1.0,f +19719,100%,Gibraltar,1.0,f +22523,100%,Rwanda,9.0,f +28057,,Cuba,1.0,f +13982,100%,,2.0,f +27827,100%,,3.0,f +2011,,,1.0,f +4322,97%,Tonga,32.0,f +16965,100%,Zimbabwe,1.0,f +23506,,,1.0,t +15004,100%,Uzbekistan,88.0,f +46116,90%,,1.0,f +9802,,Indonesia,38.0,t +5271,,,1.0,f +36373,100%,Isle of Man,3.0,f +13566,,Marshall Islands,1.0,f +41319,100%,Sao Tome and Principe,5.0,f +37614,,,2.0,t +29647,100%,Peru,1305.0,f +9802,,Indonesia,38.0,t +29647,100%,Peru,1305.0,f +49983,0%,,1.0,f +9802,,Indonesia,38.0,t +6755,100%,Barbados,2.0,f +39459,,,1.0,f +29647,100%,Peru,1305.0,f +47046,100%,Lebanon,9.0,f +6755,100%,Barbados,2.0,f +29647,100%,Peru,1305.0,f +11670,,Chile,1.0,t +49930,50%,Finland,2.0,t +29647,100%,Peru,1305.0,f +42650,,,1.0,t +1565,,,1.0,t +20471,0%,Russian Federation,1.0,f +5186,,Guinea,1.0,f +40703,0%,Papua New Guinea,1.0,f +12157,90%,,3.0,f +4745,100%,Croatia,119.0,f +28828,100%,Isle of Man,198.0,t +32556,90%,Estonia,11.0,t +4745,100%,Croatia,119.0,f +15004,100%,Uzbekistan,88.0,f +30265,,United Kingdom,2.0,t +34194,100%,,7.0,t +24974,,Niger,7.0,f +26399,,Marshall Islands,1.0,f +28828,100%,Isle of Man,198.0,t +4745,100%,Croatia,119.0,f +1564,100%,Indonesia,12.0,f +31266,75%,Nauru,2.0,t +37704,96%,Fiji,26.0,f +46569,,,1.0,f +41598,,Croatia,1.0,f +19635,,El Salvador,3.0,t +36084,,Mauritania,1.0,t +1912,100%,Monaco,1.0,t +17965,100%,Mauritania,6.0,f +23969,100%,Uzbekistan,4.0,f +38295,,,1.0,f +10695,100%,,2.0,f +46924,100%,France,1.0,t +29794,,,1.0,f +43010,,,2.0,f +23969,100%,Uzbekistan,4.0,f +9192,,Tunisia,1.0,t +1737,100%,Finland,3.0,f +30413,,,1.0,f +20720,100%,,4.0,f +35452,,Russian Federation,1.0,t +15607,,Guinea,1.0,t +16246,,Russian Federation,1.0,f +8007,,Puerto Rico,1.0,f +49397,,Tonga,2.0,f +48555,100%,Jersey,1.0,t +36672,,,1.0,f +35823,,Montserrat,1.0,t +34902,,Kenya,1.0,t +26889,100%,Indonesia,10.0,f +45607,,Gibraltar,1.0,t +25749,,Papua New Guinea,1.0,f +43800,100%,Maldives,5.0,t +33890,,Kiribati,2.0,t +7577,,Puerto Rico,1.0,f +8290,,,2.0,f +15004,100%,Uzbekistan,88.0,f +40126,,,1.0,f +24196,100%,Somalia,1.0,f +13307,0%,,1.0,f +14038,,,1.0,f +19632,,Lebanon,1.0,t +29125,,Isle of Man,1.0,f +15004,100%,Uzbekistan,88.0,f +47662,,Isle of Man,3.0,t +17543,90%,,4.0,f +23487,,,1.0,f +651,100%,Lebanon,4.0,t +21527,100%,Malta,1.0,t +25204,,Netherlands,1.0,f +47684,,,1.0,f +45737,,Tonga,29.0,t +18320,50%,Reunion,19.0,t +23529,100%,Niue,1.0,f +20867,100%,Guinea,4.0,t +16199,,Zimbabwe,1.0,f +45158,100%,Switzerland,1.0,f +44595,,Nicaragua,1.0,f +41521,,Monaco,1.0,f +36414,100%,Bosnia and Herzegovina,1.0,f +29435,,Turkmenistan,2.0,t +6102,100%,Uzbekistan,1.0,f +23706,,Estonia,1.0,f +4544,,Reunion,1.0,t +8439,97%,Rwanda,17.0,t +37157,,,1.0,f +38639,,,1.0,f +27660,,,1.0,f +5742,67%,Andorra,1.0,f +35999,100%,Mauritania,3.0,t +48653,100%,Bouvet Island (Bouvetoya),4.0,f +26939,100%,Philippines,6.0,f +7036,100%,Jersey,4.0,f +39463,100%,Tunisia,2.0,f +46868,,,1.0,f +23880,,,1.0,f +11684,100%,Isle of Man,3.0,f +19739,100%,Holy See (Vatican City State),1.0,t +38595,,El Salvador,1.0,t +7837,,Svalbard & Jan Mayen Islands,1.0,f +22878,100%,Kiribati,1.0,f +20729,,,1.0,f +15916,,Afghanistan,1.0,f +10672,86%,Mauritania,3.0,t +8158,,Maldives,1.0,t +40301,100%,Zimbabwe,1.0,f +35655,100%,Niue,1.0,f +7036,100%,Jersey,4.0,f +49303,100%,,1.0,t +15004,100%,Uzbekistan,88.0,f +21232,90%,Kiribati,2.0,t +19980,100%,Tonga,1.0,t +23236,,Sao Tome and Principe,1.0,f +26147,,Sao Tome and Principe,3.0,f +5041,100%,Chile,7.0,f +1179,100%,Netherlands,2.0,f +45189,,Ecuador,1.0,t +34937,100%,Malawi,2.0,t +19660,,,1.0,f +17429,,,1.0,f +17585,100%,,1.0,f +33499,,Costa Rica,1.0,t +19198,,,1.0,t +8336,100%,Uzbekistan,1.0,f +32363,100%,Gambia,1.0,t +147,,,1.0,f +42298,,Guinea,1.0,f +18404,100%,Mauritania,1.0,f +10686,86%,Tonga,21.0,f +9211,,,2.0,t +23183,80%,Marshall Islands,1.0,t +42688,,China,1.0,f +45874,,,2.0,f +7200,100%,Gambia,2.0,t +33963,,French Guiana,1.0,t +20760,,French Guiana,1.0,f +25462,100%,Brazil,2.0,t +38116,,Malta,1.0,f +41076,70%,,2.0,f +15353,100%,,1.0,t +21738,,United Kingdom,1.0,t +35859,,Marshall Islands,1.0,t +41123,78%,Isle of Man,3.0,f +10358,,Micronesia,2.0,f +19701,,Uzbekistan,1.0,t +12707,75%,Malawi,2.0,t +29295,70%,Micronesia,1.0,f +1402,,Turkmenistan,2.0,f +2672,,United Kingdom,2.0,f +21813,,,1.0,f +39083,100%,Kenya,3.0,f +29582,,Turkmenistan,1.0,t +5057,100%,Zimbabwe,23.0,t +41650,100%,,1.0,f +27398,100%,Niue,1.0,f +41414,,,1.0,f +31512,,,1.0,f +5174,100%,Lithuania,2.0,f +30642,,Turks and Caicos Islands,1.0,f +48266,100%,Uganda,3.0,t +13403,96%,Maldives,21.0,t +6733,,,1.0,f +25078,,,1.0,f +47090,100%,Croatia,3.0,f +27704,,Mauritania,1.0,f +28305,,,4.0,f +18459,100%,Zimbabwe,100.0,f +34832,80%,Sao Tome and Principe,7.0,t +23829,,Uzbekistan,1.0,f +13403,96%,Maldives,21.0,t +35583,100%,Isle of Man,1.0,f +1224,,Lebanon,1.0,f +40028,,Bouvet Island (Bouvetoya),1.0,t +18484,100%,Gambia,108.0,f +28772,100%,Niger,15.0,t +31927,,Cocos (Keeling) Islands,1.0,f +43321,100%,France,40.0,f +28305,,,4.0,f +46785,,,1.0,f +20173,,Costa Rica,1.0,f +28640,100%,Uzbekistan,3.0,t +18793,,Nauru,1.0,f +15004,100%,Uzbekistan,88.0,f +7726,,Micronesia,1.0,f +28787,,,1.0,f +13283,100%,Russian Federation,1.0,t +1100,,,1.0,f +9802,,Indonesia,38.0,t +40662,75%,Malawi,3.0,t +28566,78%,Slovakia (Slovak Republic),79.0,t +15004,100%,Uzbekistan,88.0,f +19746,100%,Jersey,2.0,t +9802,,Indonesia,38.0,t +18896,,Congo,1.0,f +47257,,,1.0,f +461,100%,Saint Helena,4.0,f +9802,,Indonesia,38.0,t +36597,,Zimbabwe,1.0,t +461,100%,Saint Helena,4.0,f +24173,,,1.0,f +1121,100%,Micronesia,1.0,t +12627,,Canada,1.0,f +15004,100%,Uzbekistan,88.0,f +19258,,Isle of Man,1.0,f +45349,,Isle of Man,1.0,t +33341,88%,Uruguay,1.0,f +15004,100%,Uzbekistan,88.0,f +49517,100%,,1.0,f +254,,,1.0,f +35706,,Mauritania,1.0,f +34464,100%,,1.0,f +9649,100%,Togo,2.0,t +41953,,,1.0,f +12721,,,1.0,t +8284,100%,Micronesia,1.0,f +27251,100%,,1.0,f +28047,100%,Uzbekistan,4.0,f +23873,,Malta,1.0,f +29922,,Philippines,1.0,f +34336,100%,Pakistan,1.0,t +9140,,Lebanon,1.0,t +3346,,,2.0,t +17053,90%,Niue,2.0,t +13364,91%,Netherlands,21.0,f +46848,100%,,1.0,f +2996,,,1.0,t +34826,,French Guiana,1.0,f +7532,86%,Rwanda,1.0,f +13908,100%,Costa Rica,2.0,f +26137,,Estonia,2.0,f +20166,,Djibouti,1.0,f +5232,93%,,2.0,t +32429,,Gambia,9.0,f +44908,100%,Vanuatu,2.0,f +11706,100%,France,2.0,f +35532,,,1.0,f +24896,100%,Algeria,50.0,t +10321,100%,,1.0,f +15331,100%,Niger,1.0,f +1497,,Bosnia and Herzegovina,1.0,f +36100,100%,Rwanda,17.0,t +34689,,French Guiana,1.0,t +43933,100%,Guernsey,2.0,f +15718,,,1.0,f +47349,,Uzbekistan,1.0,t +26838,,Lebanon,1.0,t +24631,,,1.0,t +48351,,Malta,3.0,f +37806,100%,Russian Federation,3.0,t +4745,100%,Croatia,119.0,f +15004,100%,Uzbekistan,88.0,f +31932,100%,Andorra,1.0,f +49975,100%,Brazil,1.0,t +16406,100%,Bouvet Island (Bouvetoya),16.0,f +25878,,Niger,1.0,t +43152,100%,Nicaragua,82.0,t +23953,100%,,1.0,f +26210,,Lebanon,2.0,f +15004,100%,Uzbekistan,88.0,f +29647,100%,Peru,1305.0,f +16744,60%,Rwanda,5.0,f +4745,100%,Croatia,119.0,f +29647,100%,Peru,1305.0,f +37733,100%,,3.0,t +47567,,,1.0,f +9363,95%,Ukraine,50.0,f +3019,100%,Barbados,18.0,f +29647,100%,Peru,1305.0,f +49105,100%,Malta,3.0,f +44103,,,1.0,f +23627,100%,,1.0,t +4745,100%,Croatia,119.0,f +11322,100%,Malta,1.0,f +19216,,,2.0,f +23022,67%,Niue,10.0,t +4745,100%,Croatia,119.0,f +7520,100%,Ukraine,15.0,t +7520,100%,Ukraine,15.0,t +4745,100%,Croatia,119.0,f +5122,,El Salvador,1.0,f +31117,80%,Croatia,3.0,t +48455,89%,Uzbekistan,20.0,t +4745,100%,Croatia,119.0,f +1188,100%,Costa Rica,1.0,f +14466,,Netherlands,2.0,f +26863,,Mexico,7.0,f +40587,100%,Niue,2.0,t +41258,100%,,6.0,t +43120,,American Samoa,1.0,t +7074,100%,Isle of Man,2.0,f +31847,87%,Saint Helena,2.0,f +44258,100%,Jersey,3.0,t +15033,,,1.0,t +48076,,Kenya,2.0,t +13031,,Gambia,1.0,f +35526,100%,,2.0,f +11238,100%,Tanzania,1.0,f +16281,100%,Kiribati,1.0,f +22164,,Gambia,3.0,t +26528,,,1.0,f +19775,,Anguilla,1.0,f +45257,,,1.0,f +17768,,Chile,1.0,f +23055,91%,,2.0,f +36509,100%,,1.0,f +16065,,,1.0,f +48468,100%,Guinea,2.0,f +32265,,Turkmenistan,2.0,f +44052,100%,Denmark,4.0,f +2066,,Lebanon,1.0,t +26773,,Russian Federation,1.0,f +48659,,,1.0,f +2575,,,1.0,f +28566,78%,Slovakia (Slovak Republic),79.0,t +39201,100%,Holy See (Vatican City State),2.0,t +22221,,,1.0,f +15004,100%,Uzbekistan,88.0,f +19129,,Malta,5.0,t +49862,,Zimbabwe,1.0,f +39985,100%,Jersey,1.0,t +15004,100%,Uzbekistan,88.0,f +37787,100%,Barbados,5.0,f +17207,,Saint Helena,1.0,f +38199,,Guernsey,1.0,f +11818,,Guinea,1.0,f +29647,100%,Peru,1305.0,f +6235,80%,Niue,2.0,t +4745,100%,Croatia,119.0,f +13868,,,1.0,f +46108,,Monaco,1.0,f +29647,100%,Peru,1305.0,f +25400,100%,Denmark,2.0,f +7658,100%,Switzerland,2.0,f +42809,,Rwanda,1.0,t +24951,,,1.0,f +29647,100%,Peru,1305.0,f +35612,,,1.0,t +12159,,,1.0,f +32569,,French Guiana,1.0,f +29647,100%,Peru,1305.0,f +44579,,Slovenia,2.0,f +18862,100%,Maldives,1.0,f +28828,100%,Isle of Man,198.0,t +29647,100%,Peru,1305.0,f +11968,100%,,3.0,f +4745,100%,Croatia,119.0,f +44657,,,1.0,f +38950,,Russian Federation,2.0,t +5205,,Slovakia (Slovak Republic),6.0,t +25458,100%,Brazil,3.0,f +21063,,Niue,1.0,t +20832,,Kiribati,1.0,f +40966,,Montserrat,1.0,f +38816,,Croatia,1.0,f +13078,,,1.0,t +23034,99%,Monaco,54.0,f +4745,100%,Croatia,119.0,f +11973,100%,Niue,7.0,t +2726,,Gambia,1.0,t +4745,100%,Croatia,119.0,f +33880,84%,Barbados,18.0,f +4745,100%,Croatia,119.0,f +25115,,,1.0,t +4745,100%,Croatia,119.0,f +12819,,,1.0,f +33880,84%,Barbados,18.0,f +33880,84%,Barbados,18.0,f +33880,84%,Barbados,18.0,f +33880,84%,Barbados,18.0,f +36564,100%,Venezuela,5.0,t +3553,,,1.0,f +29123,100%,Zimbabwe,16.0,t +15004,100%,Uzbekistan,88.0,f +4792,100%,Jersey,4.0,t +1990,67%,,1.0,t +17729,,Turks and Caicos Islands,1.0,t +57,,,1.0,f +9536,,El Salvador,1.0,t +33507,100%,Sao Tome and Principe,2.0,f +39905,100%,Bosnia and Herzegovina,3.0,f +32265,,Turkmenistan,2.0,f +7344,20%,French Guiana,2.0,f +7212,100%,Niue,1.0,f +35748,100%,El Salvador,1.0,t +11421,,,1.0,f +39552,83%,Bahrain,4.0,t +1383,100%,,2.0,f +49145,100%,,3.0,t +28828,100%,Isle of Man,198.0,t +31085,,,1.0,f +29647,100%,Peru,1305.0,f +7036,100%,Jersey,4.0,f +29647,100%,Peru,1305.0,f +47083,100%,Cocos (Keeling) Islands,1.0,t +29647,100%,Peru,1305.0,f +30364,,Ukraine,1.0,t +5555,100%,Denmark,11.0,t +47036,,Russian Federation,1.0,t +36480,100%,Malta,2.0,f +12542,98%,Mauritania,19.0,t +29647,100%,Peru,1305.0,f +2291,100%,Zimbabwe,5.0,t +6701,,Barbados,1.0,f +41889,96%,Uzbekistan,14.0,t +34832,80%,Sao Tome and Principe,7.0,t +33771,,Uzbekistan,1.0,t +4251,100%,,1.0,f +21438,100%,China,3.0,f +31707,100%,Niger,48.0,f +7374,100%,,1.0,f +6587,100%,Somalia,1.0,f +29647,100%,Peru,1305.0,f +28933,,Chad,3.0,t +4745,100%,Croatia,119.0,f +10829,,,1.0,f +35377,100%,Anguilla,3.0,f +4745,100%,Croatia,119.0,f +909,100%,Croatia,18.0,t +31800,,Malta,1.0,f +44880,,United Kingdom,2.0,t +4745,100%,Croatia,119.0,f +16047,80%,Uzbekistan,6.0,f +18459,100%,Zimbabwe,100.0,f +4745,100%,Croatia,119.0,f +20059,,Lebanon,1.0,f +12224,,Bouvet Island (Bouvetoya),1.0,f +15004,100%,Uzbekistan,88.0,f +15004,100%,Uzbekistan,88.0,f +30443,,,1.0,f +20581,100%,Marshall Islands,2.0,t +15004,100%,Uzbekistan,88.0,f +18459,100%,Zimbabwe,100.0,f +24026,98%,Cape Verde,69.0,t +10685,100%,Guinea,3.0,f +45299,,Denmark,1.0,f +24974,,Niger,7.0,f +40364,100%,Tonga,25.0,f +15004,100%,Uzbekistan,88.0,f +19062,,Brazil,1.0,f +34811,100%,Montserrat,1.0,f +42242,,,1.0,f +15457,,Papua New Guinea,1.0,t +43882,,Turkmenistan,1.0,f +31952,,,1.0,f +30632,,,1.0,f +36200,,Brazil,1.0,f +19142,90%,Niger,9.0,f +35555,67%,,2.0,f +19142,90%,Niger,9.0,f +7834,94%,Mexico,13.0,f +5894,100%,Zimbabwe,1.0,f +50064,,Turkmenistan,1.0,f +10711,93%,Uganda,108.0,t +1427,,,1.0,f +30553,,United Kingdom,1.0,f +44583,100%,Anguilla,2.0,t +35145,,Bosnia and Herzegovina,1.0,f +16955,,Nauru,1.0,f +31208,,Rwanda,3.0,f +39127,,,1.0,f +28163,100%,Sao Tome and Principe,5.0,t +20653,,,1.0,t +1857,,,2.0,t +3690,,,2.0,t +37030,100%,,1.0,f +40462,100%,Rwanda,1.0,f +32495,100%,Tonga,9.0,f +46485,,,1.0,f +19589,100%,,3.0,f +43239,,Guinea,1.0,t +29433,,Somalia,2.0,f +329,,Bosnia and Herzegovina,2.0,f +17410,,,1.0,f +39892,100%,Tonga,31.0,t +25537,,,1.0,f +28828,100%,Isle of Man,198.0,t +16596,100%,Congo,3.0,f +4745,100%,Croatia,119.0,f +21916,,Marshall Islands,1.0,f +47282,,Micronesia,1.0,t +4745,100%,Croatia,119.0,f +12728,,Nicaragua,1.0,t +27883,100%,Cuba,11.0,f +32378,90%,China,6.0,t +4745,100%,Croatia,119.0,f +39696,100%,,1.0,f +23999,,,1.0,f +15050,,Switzerland,1.0,f +49003,,Rwanda,1.0,f +31218,100%,Saint Helena,1.0,f +13691,,Russian Federation,1.0,f +48468,100%,Guinea,2.0,f +7261,100%,French Guiana,1.0,t +4745,100%,Croatia,119.0,f +35558,,Maldives,1.0,t +49912,,China,1.0,f +4745,100%,Croatia,119.0,f +4745,100%,Croatia,119.0,f +13735,,China,1.0,f +4745,100%,Croatia,119.0,f +4745,100%,Croatia,119.0,f +4745,100%,Croatia,119.0,f +15979,,Nicaragua,1.0,f +20582,100%,Kenya,1.0,t +12320,100%,Bosnia and Herzegovina,20.0,f +30322,,,1.0,f +4745,100%,Croatia,119.0,f +49846,,French Guiana,1.0,f +7538,,,1.0,t +4745,100%,Croatia,119.0,f +4745,100%,Croatia,119.0,f +24864,75%,,1.0,f +4745,100%,Croatia,119.0,f +38576,,,1.0,f +47795,100%,Wallis and Futuna,4.0,f +20833,100%,Kiribati,2.0,f +20361,,,1.0,f +4745,100%,Croatia,119.0,f +12079,,,1.0,f +11590,,Denmark,1.0,t +33135,100%,Indonesia,3.0,t +33135,100%,Indonesia,3.0,t +980,,Djibouti,4.0,f +20519,,Maldives,1.0,f +44456,60%,,5.0,t +46232,100%,Finland,1.0,f +35442,,Russian Federation,14.0,f +28207,,,2.0,f +9547,,,1.0,f +10266,,Senegal,1.0,f +28828,100%,Isle of Man,198.0,t +42458,97%,Indonesia,14.0,t +10440,,Isle of Man,1.0,f +12425,,Guernsey,1.0,f +40593,,Nauru,10.0,t +26148,100%,Kiribati,10.0,t +49781,,Philippines,5.0,f +39083,100%,Kenya,3.0,f +4745,100%,Croatia,119.0,f +41788,100%,Turks and Caicos Islands,6.0,f +4745,100%,Croatia,119.0,f +20357,100%,,3.0,t +4745,100%,Croatia,119.0,f +8903,100%,,1.0,t +3534,,Cocos (Keeling) Islands,1.0,f +7562,,French Guiana,1.0,t +4745,100%,Croatia,119.0,f +41788,100%,Turks and Caicos Islands,6.0,f +22907,100%,Indonesia,1.0,f +21151,100%,Portugal,5.0,f +4745,100%,Croatia,119.0,f +7047,,Zimbabwe,1.0,t +6894,80%,Estonia,47.0,t +24937,100%,Tonga,1.0,f +9181,,,2.0,t +48217,75%,Wallis and Futuna,2.0,t +4745,100%,Croatia,119.0,f +8992,,,1.0,f +12072,,Bahrain,1.0,f +8975,100%,Ukraine,2.0,f +44895,100%,France,3.0,t +41601,81%,United Kingdom,5.0,f +4745,100%,Croatia,119.0,f +36017,,Barbados,1.0,t +46837,100%,,1.0,t +4718,0%,United Kingdom,1.0,t +1,,Anguilla,2.0,t +9181,,,2.0,t +9223,,,1.0,f +28548,,,1.0,f +24902,100%,Uganda,3.0,t +11464,100%,Papua New Guinea,11.0,f +48409,,Estonia,60.0,t +18636,100%,China,1.0,f +25822,67%,Niue,1.0,t +43385,100%,Guinea,1.0,t +13189,,,1.0,f +4745,100%,Croatia,119.0,f +36797,100%,,1.0,f +30651,100%,Marshall Islands,1.0,f +39839,100%,Cook Islands,3.0,t +40109,,,2.0,f +28336,100%,,1.0,f +9394,,Nicaragua,1.0,f +4745,100%,Croatia,119.0,f +8734,,Estonia,1.0,f +4745,100%,Croatia,119.0,f +4745,100%,Croatia,119.0,f +36351,,Wallis and Futuna,1.0,f +4745,100%,Croatia,119.0,f +38832,97%,,15.0,f +4745,100%,Croatia,119.0,f +8051,,Brunei Darussalam,1.0,t +4339,,Niger,2.0,t +5584,100%,Guinea,1.0,f +2543,,,1.0,f +11185,,Chile,1.0,f +24020,77%,Tonga,6.0,t +7749,,Chad,1.0,t +42932,75%,Faroe Islands,1.0,f +32515,,Zimbabwe,1.0,f +44023,,,1.0,f +36327,100%,Guinea,5.0,t +28146,,Vanuatu,1.0,t +42607,,Senegal,1.0,t +18204,,Christmas Island,2.0,t +21321,100%,,1.0,t +11198,,Afghanistan,2.0,f +21156,100%,Vanuatu,2.0,f +2343,100%,Chad,1.0,f +26610,100%,,1.0,t +32541,,,2.0,t +21278,,,1.0,f +41437,,,1.0,f +10127,,,1.0,t +31841,,Chile,1.0,f +30433,,,4.0,t +27667,33%,,2.0,f +43768,,,1.0,f +42430,,Kenya,1.0,f +41686,,Reunion,1.0,f +17869,100%,Reunion,5.0,t +39652,,France,1.0,f +6665,,Gambia,1.0,f +8232,,Tunisia,1.0,t +18691,,,1.0,f +28584,100%,Papua New Guinea,2.0,f +38653,,Estonia,1.0,f +40282,,Russian Federation,1.0,f +6794,100%,Bosnia and Herzegovina,2.0,t +31208,,Rwanda,3.0,f +13486,,,2.0,f +5697,100%,,1.0,t +48046,0%,Gambia,1.0,f +37642,,,1.0,f +28584,100%,Papua New Guinea,2.0,f +1919,,,4.0,f +29529,100%,Russian Federation,1.0,f +43983,,Turkmenistan,2.0,f +9663,,,1.0,t +4952,100%,,2.0,t +33405,,Tanzania,1.0,f +46426,,Guinea,2.0,f +46867,89%,Uruguay,2.0,t +26048,,Mauritania,1.0,f +26459,100%,Slovakia (Slovak Republic),4.0,t +4745,100%,Croatia,119.0,f +4745,100%,Croatia,119.0,f +4745,100%,Croatia,119.0,f +4745,100%,Croatia,119.0,f +4745,100%,Croatia,119.0,f +1584,,Mauritania,1.0,f +46867,89%,Uruguay,2.0,t +22459,,,1.0,f +29798,,,1.0,f +23969,100%,Uzbekistan,4.0,f +48320,100%,,1.0,f +29412,,,2.0,t +24572,100%,Malta,3.0,t +40178,,Isle of Man,1.0,f +24572,100%,Malta,3.0,t +23034,99%,Monaco,54.0,f +10928,,Russian Federation,1.0,f +33005,,,1.0,f +47160,100%,Monaco,2.0,f +15883,,Costa Rica,1.0,f +3632,100%,Philippines,4.0,t +47994,100%,Netherlands,1.0,f +32292,,Kenya,2.0,f +1587,,Gambia,1.0,t +9452,,,1.0,f +16463,100%,Cape Verde,2.0,f +40147,,Marshall Islands,1.0,t +29647,100%,Peru,1305.0,f +21877,100%,Cook Islands,7.0,f +4745,100%,Croatia,119.0,f +41535,100%,Chile,1.0,f +4745,100%,Croatia,119.0,f +29647,100%,Peru,1305.0,f +36332,100%,Isle of Man,11.0,f +4745,100%,Croatia,119.0,f +18876,60%,Netherlands,26.0,f +29647,100%,Peru,1305.0,f +13070,100%,Fiji,45.0,f +1838,100%,Finland,1.0,t +2744,,Gibraltar,5.0,f +29647,100%,Peru,1305.0,f +31707,100%,Niger,48.0,f +22365,,Jersey,1.0,f +24034,,,1.0,f +5205,,Slovakia (Slovak Republic),6.0,t +29647,100%,Peru,1305.0,f +20257,,,1.0,f +18876,60%,Netherlands,26.0,f +12962,,Portugal,1.0,t +16757,,,1.0,t +4745,100%,Croatia,119.0,f +25398,100%,Marshall Islands,1.0,f +36833,,,1.0,f +35026,,Estonia,7.0,f +19121,,Russian Federation,1.0,f +4745,100%,Croatia,119.0,f +35377,100%,Anguilla,3.0,f +19715,,,1.0,f +6760,,Montserrat,1.0,f +44591,,,1.0,f +47440,,Cape Verde,1.0,f +18976,,Marshall Islands,1.0,f +39803,83%,,1.0,f +14049,,Svalbard & Jan Mayen Islands,1.0,t +46596,,Isle of Man,1.0,t +18439,,,1.0,t +10517,,,1.0,f +19217,98%,Marshall Islands,46.0,f +34985,,Chad,1.0,t +31703,,,1.0,f +39574,,Vietnam,1.0,t +257,100%,,1.0,t +23935,100%,,1.0,t +10183,100%,Chad,1.0,f +15153,,Fiji,1.0,t +37411,100%,Guernsey,3.0,f +31228,100%,,1.0,f +34692,,,1.0,t +7720,,Tonga,1.0,f +44514,,,1.0,t +1317,,Christmas Island,2.0,f +1647,,,1.0,f +29463,100%,Niue,1.0,t +28197,,,1.0,f +34203,100%,Uzbekistan,2.0,t +5420,100%,Tonga,41.0,f +10582,,,1.0,f +1802,,Svalbard & Jan Mayen Islands,1.0,f +34723,100%,Peru,12.0,f +9391,100%,Croatia,2.0,t +36421,100%,Lebanon,4.0,t +40362,,,1.0,f +4479,,Isle of Man,1.0,t +14187,90%,Ukraine,1.0,f +7876,100%,,4.0,t +35416,,Chile,1.0,t +6991,,,1.0,f +21556,,El Salvador,1.0,t +29647,100%,Peru,1305.0,f +1047,,Estonia,1.0,f +16391,,,1.0,f +9008,,,3.0,t +29647,100%,Peru,1305.0,f +23969,100%,Uzbekistan,4.0,f +5137,,Chad,2.0,t +21976,,Nauru,1.0,t +7819,,Chad,1.0,f +36133,,,1.0,t +35173,,Turkmenistan,1.0,t +29647,100%,Peru,1305.0,f +12918,100%,China,9.0,f +8784,,,1.0,f +41453,,France,1.0,t +16585,,,1.0,f +45556,,,1.0,f +15083,,French Polynesia,2.0,t +31206,,,3.0,f +16401,100%,Guinea,2.0,t +47981,100%,Pakistan,2.0,f +48604,,Brazil,1.0,t +43763,,Maldives,2.0,t +48982,,Portugal,1.0,f +20171,,China,1.0,f +45725,,Zimbabwe,1.0,f +2610,,,1.0,f +20692,100%,Marshall Islands,7.0,t +41145,,Saint Helena,1.0,f +10044,,Senegal,1.0,f +36747,,Cocos (Keeling) Islands,2.0,f +33048,,Montserrat,3.0,f +45440,,Niue,2.0,t +48230,,Denmark,1.0,t +19217,98%,Marshall Islands,46.0,f +34315,,Svalbard & Jan Mayen Islands,2.0,f +33154,0%,Monaco,1.0,f +9556,100%,,1.0,f +34785,100%,,2.0,f +9051,,,1.0,f +17933,100%,Isle of Man,1.0,f +9352,100%,,1.0,f +21540,,,1.0,f +43215,,Marshall Islands,1.0,f +5221,0%,Turks and Caicos Islands,1.0,f +1122,,Papua New Guinea,1.0,f +42764,100%,Guernsey,13.0,t +25048,100%,United Kingdom,1.0,f +22169,100%,,3.0,f +2291,100%,Zimbabwe,5.0,t +14431,,Zimbabwe,1.0,t +26306,,Niue,1.0,f +42170,,Montserrat,1.0,f +36135,,Costa Rica,2.0,t +43642,90%,Denmark,6.0,f +22169,100%,,3.0,f +17325,50%,,3.0,t +33681,,Ukraine,1.0,f +35857,100%,,1.0,f +12792,,Denmark,1.0,t +9647,,Philippines,1.0,f +23106,100%,,3.0,f +23534,100%,Maldives,2.0,f +27866,100%,Guinea,8.0,f +18924,,,1.0,t +34128,,Venezuela,1.0,f +11830,100%,Maldives,67.0,t +9514,,Indonesia,1.0,f +23335,100%,,3.0,f +31558,33%,Niger,1.0,f +2397,,Russian Federation,2.0,f +23089,,Mauritania,1.0,f +15802,,Malta,2.0,f +6097,,Bosnia and Herzegovina,1.0,f +24773,100%,,1.0,f +4920,98%,Estonia,8.0,f +41452,,Faroe Islands,1.0,f +4608,100%,Gambia,2.0,t +47610,100%,Uzbekistan,10.0,f +9802,,Indonesia,38.0,t +5457,100%,Niue,5.0,t +221,,Afghanistan,7.0,t +41872,,,4.0,t +39253,,Sao Tome and Principe,1.0,f +17026,,Mauritania,1.0,f +9802,,Indonesia,38.0,t +13667,100%,Isle of Man,2.0,t +14169,,,1.0,f +5339,100%,,3.0,t +39885,69%,French Guiana,2.0,t +47997,100%,,1.0,t +29618,,Lebanon,1.0,f +41945,100%,Uzbekistan,2.0,f +19749,100%,Denmark,6.0,t +3443,100%,Jersey,1.0,f +26556,,,1.0,f +11635,,Monaco,1.0,f +19341,100%,Guinea,1.0,f +24896,100%,Algeria,50.0,t +22721,100%,Ecuador,109.0,f +4745,100%,Croatia,119.0,f +21241,63%,,3.0,f +20334,99%,Niger,171.0,t +13712,100%,Malawi,3.0,f +6088,100%,,14.0,t +10660,,,2.0,t +24745,100%,Barbados,1.0,f +14170,,,1.0,f +49376,100%,Saint Barthelemy,3.0,t +49344,,,1.0,f +40978,100%,,1.0,f +32255,100%,Cuba,1.0,f +25221,,Malawi,1.0,f +33108,100%,Costa Rica,3.0,f +42538,,Indonesia,1.0,f +41632,,Brazil,1.0,f +21241,63%,,3.0,f +26284,,Tonga,1.0,f +23654,100%,Uzbekistan,23.0,f +29647,100%,Peru,1305.0,f +10800,100%,China,2.0,t +20043,100%,Holy See (Vatican City State),1.0,t +36790,,Kenya,1.0,f +13954,,Lebanon,2.0,f +17543,90%,,4.0,f +176,,Cuba,2.0,f +10672,86%,Mauritania,3.0,t +1038,,Maldives,5.0,f +3113,,Chile,1.0,f +2757,100%,El Salvador,1.0,f +23139,,Niger,2.0,t +38392,,Somalia,1.0,f +33323,0%,Guinea,1.0,t +494,,Anguilla,1.0,f +4920,98%,Estonia,8.0,f +10584,,,1.0,t +24679,,Montserrat,1.0,f +142,100%,,3.0,f +2665,100%,Faroe Islands,2.0,t +15339,,Estonia,1.0,f +28463,100%,,1.0,t +4322,97%,Tonga,32.0,f +3690,,,2.0,t +32555,50%,Anguilla,2.0,t +42854,,Jersey,2.0,f +41653,,Svalbard & Jan Mayen Islands,1.0,f +16777,,,1.0,f +26674,77%,Uzbekistan,27.0,f +26674,77%,Uzbekistan,27.0,f +26674,77%,Uzbekistan,27.0,f +26674,77%,Uzbekistan,27.0,f +26674,77%,Uzbekistan,27.0,f +26674,77%,Uzbekistan,27.0,f +26674,77%,Uzbekistan,27.0,f +26674,77%,Uzbekistan,27.0,f +26674,77%,Uzbekistan,27.0,f +26674,77%,Uzbekistan,27.0,f +26674,77%,Uzbekistan,27.0,f +26674,77%,Uzbekistan,27.0,f +26674,77%,Uzbekistan,27.0,f +26674,77%,Uzbekistan,27.0,f +26674,77%,Uzbekistan,27.0,f +6878,,Togo,1.0,f +2797,,Rwanda,2.0,f +1514,100%,Turks and Caicos Islands,1.0,f +10530,100%,Bouvet Island (Bouvetoya),1.0,f +9226,,Mauritania,5.0,f +26396,,,2.0,f +38527,100%,Malta,1.0,f +9104,100%,,1.0,f +31707,100%,Niger,48.0,f +41008,100%,Venezuela,6.0,f +27874,,Micronesia,1.0,f +10280,100%,,1.0,f +3979,,Lebanon,2.0,f +6344,100%,Bahrain,1.0,t +5472,,Netherlands,1.0,f +16715,,,1.0,t +31861,100%,Costa Rica,3.0,t +8376,100%,Guinea,3.0,t +4970,100%,Somalia,1.0,f +2797,,Rwanda,2.0,f +13375,,Mauritania,1.0,t +47610,100%,Uzbekistan,10.0,f +35405,100%,Tanzania,1.0,f +43249,67%,,1.0,f +4160,100%,,2.0,f +35202,,Ecuador,1.0,t +6028,,Mauritania,1.0,f +27828,,Lebanon,1.0,f +4310,100%,Jersey,1.0,f +45039,100%,,1.0,f +26216,,Bosnia and Herzegovina,4.0,t +17404,,,1.0,f +15875,100%,Lebanon,1.0,f +34088,,Marshall Islands,1.0,f +5100,,,1.0,f +36594,100%,Indonesia,1.0,f +18676,100%,France,1.0,f +19889,,Guinea,1.0,f +38087,100%,Niger,1.0,f +33254,,Uganda,1.0,f +21241,63%,,3.0,f +26674,77%,Uzbekistan,27.0,f +26674,77%,Uzbekistan,27.0,f +23710,100%,Gambia,5.0,f +12715,100%,Estonia,29.0,f +1650,,Niue,1.0,f +39256,,,2.0,f +8040,100%,,1.0,f +49021,,Russian Federation,1.0,f +18253,100%,Niue,1.0,f +6585,,,1.0,f +2937,86%,,1.0,t +40507,,Congo,2.0,f +4920,98%,Estonia,8.0,f +29486,90%,Monaco,1.0,f +37807,,Jersey,1.0,f +27203,,Bouvet Island (Bouvetoya),13.0,f +38832,97%,,15.0,f +27203,,Bouvet Island (Bouvetoya),13.0,f +16531,,Estonia,1.0,f +48653,100%,Bouvet Island (Bouvetoya),4.0,f +48653,100%,Bouvet Island (Bouvetoya),4.0,f +44038,,Bouvet Island (Bouvetoya),1.0,f +39407,,,2.0,t +36246,,Malta,2.0,t +5565,,,1.0,t +42761,,Malta,1.0,t +30683,100%,Marshall Islands,1.0,f +26550,,,1.0,f +30810,,Lebanon,1.0,f +49781,,Philippines,5.0,f +5574,,Nicaragua,2.0,f +6838,96%,Spain,59.0,t +46570,,Bahrain,1.0,t +25039,,Saint Helena,7.0,t +20620,,France,1.0,f +1713,100%,Guinea,1.0,f +25635,100%,,1.0,f +41123,78%,Isle of Man,3.0,f +31441,,Guinea,1.0,t +206,100%,China,5.0,t +769,100%,,1.0,f +1344,,,1.0,t +11198,,Afghanistan,2.0,f +40055,,Micronesia,1.0,f +18247,95%,Iran,80.0,t +26386,100%,Fiji,25.0,t +36093,100%,Denmark,18.0,t +36093,100%,Denmark,18.0,t +36058,100%,Tanzania,1.0,f +4834,100%,Zimbabwe,1.0,f +23189,100%,Brunei Darussalam,1.0,t +29647,100%,Peru,1305.0,f +13322,50%,Anguilla,2.0,f +41013,,Lebanon,2.0,t +9894,100%,,1.0,f +7492,100%,Guinea,3.0,f +34933,,,1.0,t +19943,63%,Isle of Man,34.0,f +40793,100%,,75.0,t +8548,,French Guiana,1.0,f +33267,100%,Gambia,2.0,f +22721,100%,Ecuador,109.0,f +27941,,Zimbabwe,1.0,f +41945,100%,Uzbekistan,2.0,f +48215,,Saint Helena,1.0,f +9999,100%,Isle of Man,1.0,f +17447,100%,El Salvador,4.0,t +22721,100%,Ecuador,109.0,f +41663,100%,Greenland,2.0,f +24337,,Sao Tome and Principe,1.0,f +48409,,Estonia,60.0,t +38470,,French Guiana,1.0,f +34048,,Nicaragua,1.0,f +48409,,Estonia,60.0,t +5802,100%,France,3.0,t +28247,,Sao Tome and Principe,1.0,t +29647,100%,Peru,1305.0,f +28916,,,1.0,f +20194,100%,Russian Federation,2.0,t +45094,,,1.0,f +17751,,,2.0,f +43550,100%,Rwanda,16.0,t +18096,100%,Afghanistan,1.0,f +17317,50%,Micronesia,2.0,t +35082,,Venezuela,1.0,f +19752,,Russian Federation,1.0,f +21067,100%,Uganda,1.0,f +36611,71%,Maldives,14.0,f +15458,100%,,2.0,f +10877,,,1.0,f +35482,100%,,2.0,f +28828,100%,Isle of Man,198.0,t +17736,,Russian Federation,1.0,f +27334,100%,China,16.0,f +47981,100%,Pakistan,2.0,f +25640,,,1.0,f +9834,100%,,1.0,f +47893,100%,French Guiana,1.0,t +49198,100%,Marshall Islands,1.0,t +14183,100%,,1.0,t +5209,,,1.0,t +30750,,,3.0,t +2867,,Nicaragua,1.0,t +5546,90%,Palestinian Territory,2.0,t +15056,,Niue,1.0,f +44030,,Lebanon,1.0,t +5546,90%,Palestinian Territory,2.0,t +3320,,Mauritania,1.0,f +22424,,Isle of Man,1.0,t +7727,80%,Svalbard & Jan Mayen Islands,2.0,t +31879,100%,,2.0,f +48889,,,1.0,f +26548,,,1.0,t +2096,100%,China,2.0,f +47350,,Niue,1.0,f +38866,60%,,2.0,f +19036,,Gibraltar,1.0,t +21547,100%,,1.0,f +34485,,Malta,1.0,f +5495,,Lithuania,1.0,f +27480,100%,United Kingdom,2.0,f +43550,100%,Rwanda,16.0,t +14873,100%,,1.0,t +43550,100%,Rwanda,16.0,t +15521,100%,Philippines,1.0,f +22869,,Gambia,1.0,f +40926,20%,Chad,1.0,f +14719,100%,Ecuador,2.0,t +48599,100%,Malawi,3.0,f +3789,64%,Fiji,2.0,f +12559,,,1.0,f +4992,,Kiribati,5.0,t +22162,,,1.0,f +20974,100%,Anguilla,3.0,f +13810,,,1.0,f +2110,100%,Denmark,4.0,t +32702,100%,,1.0,t +41313,100%,Denmark,10.0,t +24092,100%,France,3.0,t +15666,100%,Russian Federation,3.0,f +41546,100%,Mauritania,21.0,f +35637,100%,Isle of Man,2.0,f +45934,,,1.0,f +41546,100%,Mauritania,21.0,f +39184,,,1.0,f +8660,100%,,2.0,f +41546,100%,Mauritania,21.0,f +41546,100%,Mauritania,21.0,f +45682,100%,Uzbekistan,3.0,f +1541,,Finland,1.0,f +23951,,Kiribati,1.0,f +14262,,,1.0,f +46790,,,1.0,t +42651,,Kenya,1.0,f +5396,100%,,1.0,f +33781,,Guinea,5.0,t +23075,100%,,1.0,t +2624,,Indonesia,1.0,f +20865,100%,Ecuador,1.0,f +22,100%,Portugal,1.0,t +36715,,,1.0,f +22104,,Montserrat,1.0,f +14661,,,1.0,t +41798,,,1.0,t +17649,,,1.0,t +41457,,Chad,1.0,t +20968,100%,,2.0,t +7549,,,1.0,f +46616,,,1.0,t +49265,,El Salvador,1.0,f +48587,,,1.0,f +2243,100%,Tonga,1.0,f +17751,,,2.0,f +1280,100%,,1.0,f +14101,100%,Bosnia and Herzegovina,2.0,t +12405,,,1.0,f +5767,90%,Zimbabwe,1.0,f +48507,100%,,2.0,t +29118,,Chile,1.0,f +30707,,Guinea,1.0,f +20334,99%,Niger,171.0,t +39500,100%,Monaco,2.0,f +39056,,Guinea,1.0,f +35824,,Anguilla,1.0,f +1522,,,1.0,f +32549,,Niger,1.0,f +10806,100%,,1.0,t +23377,,Micronesia,1.0,f +13095,,Turks and Caicos Islands,1.0,f +11998,100%,Togo,3.0,f +2242,90%,Monaco,1.0,f +12424,100%,Pakistan,2.0,t +49286,,Guernsey,1.0,t +20624,89%,Sao Tome and Principe,1.0,f +35550,90%,El Salvador,2.0,f +41826,,Chile,2.0,t +41637,,Niue,1.0,f +10295,100%,,1.0,t +14101,100%,Bosnia and Herzegovina,2.0,t +39284,,,1.0,t +49204,,Brazil,1.0,t +28349,100%,Marshall Islands,2.0,f +14944,100%,Pakistan,2.0,t +23385,100%,,1.0,t +31981,,Gibraltar,1.0,f +26385,100%,,1.0,t +40616,,Mauritania,8.0,f +23484,,,1.0,f +10490,100%,Sao Tome and Principe,4.0,f +3834,50%,Jersey,3.0,t +32112,100%,,1.0,f +2565,,Isle of Man,1.0,f +40616,,Mauritania,8.0,f +13163,25%,Svalbard & Jan Mayen Islands,2.0,f +40616,,Mauritania,8.0,f +40616,,Mauritania,8.0,f +40616,,Mauritania,8.0,f +36009,100%,,2.0,t +37456,100%,French Guiana,1.0,f +23931,,Lebanon,1.0,t +38360,,Mauritania,2.0,f +9605,,Turkmenistan,1.0,f +21448,,,1.0,t +7139,,United Kingdom,2.0,t +44153,,Monaco,1.0,f +26105,,Lithuania,1.0,t +40616,,Mauritania,8.0,f +40616,,Mauritania,8.0,f +8573,100%,Micronesia,1.0,f +2244,,,1.0,f +32004,100%,Brazil,1.0,f +30770,,,1.0,f +779,,,2.0,f +21943,,Bouvet Island (Bouvetoya),1.0,t +48944,70%,Costa Rica,1.0,f +45692,100%,,1.0,f +8922,100%,Turks and Caicos Islands,2.0,t +46169,100%,Uzbekistan,1.0,t +17459,,Mauritania,1.0,f +22054,,,1.0,f +21276,,Ukraine,2.0,f +34199,70%,,1.0,f +46894,100%,Malawi,2.0,t +46030,100%,Togo,4.0,f +11439,,Lebanon,1.0,f +1191,98%,,12.0,t +831,80%,Kiribati,3.0,f +7864,,,1.0,f +6476,,,1.0,t +3369,18%,,1.0,f +21630,97%,Reunion,5.0,t +8437,99%,Maldives,6.0,f +5195,,Anguilla,1.0,f +44898,100%,,1.0,t +47247,,Somalia,1.0,f +4355,,Uzbekistan,2.0,f +8944,50%,,1.0,t +28692,,Russian Federation,1.0,t +32437,100%,,2.0,f +9161,,,1.0,f +14842,50%,Croatia,1.0,f +13779,,United Kingdom,1.0,f +43282,90%,Niger,6.0,t +17834,,Kiribati,1.0,t +10862,,Kiribati,1.0,f +26520,,,1.0,f +13918,,,1.0,f +3867,,Chad,1.0,f +31062,100%,Anguilla,1.0,f +23725,,Monaco,1.0,f +3849,100%,Palestinian Territory,2.0,t +35119,100%,Andorra,1.0,t +15361,,Reunion,1.0,f +16226,,Niue,1.0,t +34841,100%,Zimbabwe,22.0,t +8387,100%,,1.0,t +21948,,Anguilla,1.0,f +24138,100%,Cape Verde,1.0,f +26808,100%,Rwanda,9.0,t +14739,,Lebanon,1.0,t +28064,70%,Svalbard & Jan Mayen Islands,5.0,f +11753,100%,Gambia,11.0,t +24998,,Turkmenistan,1.0,t +17992,,Mauritania,1.0,f +7507,100%,Isle of Man,2.0,f +7507,100%,Isle of Man,2.0,f +45565,100%,,4.0,t +35170,100%,Vietnam,5.0,t +17614,100%,Marshall Islands,1.0,t +29543,0%,,2.0,f +30912,100%,Gibraltar,1.0,f +42838,0%,,2.0,f +46537,,Malawi,1.0,f +36234,97%,Fiji,12.0,t +23034,99%,Monaco,54.0,f +47145,100%,Kenya,2.0,f +10379,,Somalia,1.0,f +11267,89%,,1.0,f +18459,100%,Zimbabwe,100.0,f +39068,100%,Djibouti,6.0,t +20142,,Russian Federation,1.0,f +18459,100%,Zimbabwe,100.0,f +39241,,Rwanda,1.0,f +1365,,Reunion,1.0,f +41935,,,1.0,f +32104,100%,Bosnia and Herzegovina,1.0,f +273,80%,,1.0,f +6093,,,1.0,t +33923,,,1.0,t +24016,100%,Bosnia and Herzegovina,29.0,f +3197,,,1.0,f +47274,100%,Tonga,48.0,f +3453,,Monaco,1.0,f +19516,,,1.0,f +34315,,Svalbard & Jan Mayen Islands,2.0,f +9081,,Gambia,1.0,f +22924,100%,Isle of Man,1.0,f +10037,,Isle of Man,1.0,t +22882,100%,,1.0,f +1668,,Malawi,1.0,f +30369,100%,Libyan Arab Jamahiriya,1.0,t +30557,,French Guiana,1.0,t +9977,,Sao Tome and Principe,3.0,f +1716,100%,,1.0,f +1191,98%,,12.0,t +4193,100%,Russian Federation,1.0,t +43015,67%,,1.0,t +36584,,Denmark,1.0,t +27531,100%,Marshall Islands,2.0,f +39359,,,2.0,f +19687,,,1.0,f +2291,100%,Zimbabwe,5.0,t +9425,100%,,2.0,f +5410,,,1.0,f +21886,,Croatia,5.0,t +5004,,Micronesia,1.0,f +25263,,Chile,1.0,f +978,95%,Lithuania,29.0,f +24711,79%,,2.0,f +20258,100%,,3.0,f +18429,100%,,1.0,f +35893,,Senegal,1.0,t +978,95%,Lithuania,29.0,f +47637,100%,China,1.0,f +25720,,,1.0,f +45768,,Chile,1.0,f +978,95%,Lithuania,29.0,f +40831,100%,Croatia,1.0,f +25893,,,1.0,f +10983,100%,French Guiana,2.0,t +43237,40%,Montserrat,24.0,f +978,95%,Lithuania,29.0,f +38548,100%,Monaco,1.0,f +27517,80%,Nicaragua,3.0,f +33651,,Faroe Islands,1.0,f +4267,100%,Senegal,22.0,t +29927,100%,,2.0,f +26393,100%,Canada,1.0,f +27517,80%,Nicaragua,3.0,f +24844,100%,Uzbekistan,6.0,f +32477,,Tanzania,1.0,f +34230,100%,,1.0,f +37639,100%,Nauru,11.0,f +41610,,El Salvador,1.0,t +26110,,Denmark,1.0,f +978,95%,Lithuania,29.0,f +47856,,,1.0,f +35054,,Finland,3.0,t +22721,100%,Ecuador,109.0,f +978,95%,Lithuania,29.0,f +46299,,,1.0,f +50067,,,1.0,t +39870,,Slovakia (Slovak Republic),21.0,t +39870,,Slovakia (Slovak Republic),21.0,t +5574,,Nicaragua,2.0,f +18185,90%,Niger,1.0,t +47933,100%,,1.0,f +17980,100%,Gambia,1.0,t +49705,,Jersey,1.0,f +49056,,Malawi,1.0,t +18226,100%,Guernsey,1.0,f +20346,,Chad,1.0,t +10274,,,1.0,t +8466,94%,Saint Helena,7.0,f +7317,,Chile,1.0,t +44367,91%,Brazil,12.0,f +37365,100%,Niue,1.0,f +40342,100%,Ukraine,2.0,f +327,100%,Tonga,2.0,t +44183,0%,France,2.0,f +19245,,Gambia,1.0,t +19898,100%,Portugal,1.0,f +19930,100%,Puerto Rico,2.0,f +5108,,Turkmenistan,1.0,f +45528,100%,Guinea,4.0,t +30660,80%,Portugal,2.0,t +48279,100%,Isle of Man,1.0,t +9358,100%,Estonia,1.0,f +9008,,,3.0,t +35089,100%,,2.0,f +27171,100%,Reunion,1.0,t +48859,,Ghana,1.0,f +4890,100%,Maldives,1.0,t +1665,,Denmark,1.0,f +1575,100%,Mexico,1.0,t +18415,,Micronesia,1.0,f +34226,,Palestinian Territory,2.0,t +45528,100%,Guinea,4.0,t +38146,,Papua New Guinea,2.0,f +31076,,Tanzania,1.0,t +43392,88%,,1.0,f +23255,,Venezuela,1.0,f +34065,,,1.0,t +4853,71%,,1.0,t +760,,Malawi,1.0,t +27696,100%,Ecuador,2.0,f +36633,,,1.0,f +11550,,Niue,1.0,t +39326,,,1.0,f +31707,100%,Niger,48.0,f +23436,100%,Zimbabwe,2.0,f +48650,,Guernsey,1.0,f +14285,,Niue,1.0,f +26396,,,2.0,f +37605,,,4.0,f +11377,100%,,1.0,f +47753,,French Guiana,1.0,f +47504,,France,1.0,f +43056,100%,Kenya,1.0,f +17711,,,1.0,f +6495,89%,Tonga,34.0,f +49916,,Estonia,2.0,f +25681,,Maldives,1.0,f +6495,89%,Tonga,34.0,f +19877,,Zimbabwe,1.0,f +6495,89%,Tonga,34.0,f +6495,89%,Tonga,34.0,f +18066,100%,Russian Federation,2.0,t +49915,100%,Tunisia,1.0,t +15369,100%,,2.0,t +49916,,Estonia,2.0,f +47795,100%,Wallis and Futuna,4.0,f +2644,100%,Zimbabwe,11.0,t +20563,86%,,1.0,f +12120,100%,Zimbabwe,2.0,f +30301,,Togo,1.0,f +6676,,Niue,1.0,f +36164,,Russian Federation,1.0,f +37572,,Niue,1.0,f +41878,91%,Maldives,47.0,f +25600,100%,Venezuela,1.0,t +40364,100%,Tonga,25.0,f +24534,,Barbados,1.0,f +9472,,Togo,3.0,f +14585,,,1.0,f +35768,100%,,1.0,f +29235,100%,Malta,6.0,f +40789,,Nicaragua,1.0,t +24081,100%,,2.0,f +11051,100%,Bosnia and Herzegovina,1.0,f +35089,100%,,2.0,f +47757,100%,,1.0,t +2098,,French Guiana,1.0,f +33164,60%,Togo,6.0,f +19855,100%,Kiribati,37.0,t +37697,100%,Jersey,1.0,f +28557,,,1.0,t +45629,,,2.0,f +37999,100%,Senegal,20.0,t +22688,90%,,1.0,t +11900,,Uzbekistan,1.0,f +35304,100%,Tonga,12.0,t +5457,100%,Niue,5.0,t +5457,100%,Niue,5.0,t +1796,100%,Mauritania,5.0,f +461,100%,Saint Helena,4.0,f +37772,,Turkmenistan,1.0,f +2196,100%,France,1.0,f +32781,100%,Lebanon,2.0,f +26220,,Russian Federation,1.0,f +33707,100%,Chad,1.0,f +31879,100%,,2.0,f +14060,100%,,1.0,f +44577,100%,Slovakia (Slovak Republic),2.0,f +21654,96%,Solomon Islands,5.0,t +9472,,Togo,3.0,f +24464,100%,Venezuela,2.0,f +37837,,Peru,1.0,f +14471,,Micronesia,1.0,f +44635,,Barbados,2.0,t +24406,,Afghanistan,4.0,t +29927,100%,,2.0,f +28010,100%,Nicaragua,2.0,t +35875,,,1.0,f +22682,,,1.0,t +19943,63%,Isle of Man,34.0,f +25198,,Christmas Island,4.0,t +36304,100%,,1.0,t +14577,50%,Niue,2.0,t +13324,,Tonga,1.0,t +41891,,,1.0,t +9516,99%,Pakistan,45.0,t +12395,100%,Tonga,1.0,f +9516,99%,Pakistan,45.0,t +176,,Cuba,2.0,f +8246,,,1.0,t +41757,100%,Malta,5.0,f +16698,100%,United Kingdom,9.0,f +41495,100%,,1.0,t +41691,,French Guiana,1.0,t +25222,80%,Kenya,11.0,t +23108,100%,Micronesia,2.0,t +37943,,Russian Federation,1.0,f +17839,80%,Ghana,1.0,f +4843,,Christmas Island,1.0,t +32086,,Malawi,1.0,f +10154,,,1.0,f +7248,100%,Nicaragua,2.0,f +12805,,Netherlands Antilles,1.0,f +41757,100%,Malta,5.0,f +39873,100%,Djibouti,1.0,f +18442,100%,Reunion,5.0,t +19855,100%,Kiribati,37.0,t +38560,,Gibraltar,1.0,t +22978,,El Salvador,2.0,f +14534,100%,Kiribati,1.0,f +23536,,Rwanda,1.0,f +32656,,Kenya,5.0,f +10711,93%,Uganda,108.0,t +1564,100%,Indonesia,12.0,f +10488,100%,Niger,17.0,t +10896,100%,Bouvet Island (Bouvetoya),1.0,f +18350,,Chad,1.0,t +10711,93%,Uganda,108.0,t +9600,,Brazil,1.0,f +43225,100%,,3.0,f +45554,100%,Kiribati,1.0,f +28285,100%,Finland,1.0,f +42101,100%,,2.0,f +4384,,Costa Rica,1.0,t +26328,,,1.0,f +47240,,Guinea,1.0,f +13712,100%,Malawi,3.0,f +1144,,Jersey,1.0,f +30735,,,2.0,f +3266,100%,,1.0,t +24844,100%,Uzbekistan,6.0,f +23060,100%,Denmark,1.0,f +20945,,Niger,1.0,f +46665,,,1.0,f +16910,100%,Slovakia (Slovak Republic),5.0,t +11217,,Niue,3.0,f +17032,,,1.0,f +4825,,Malta,3.0,t +10741,100%,Micronesia,2.0,f +26951,,,1.0,f +8416,,Somalia,1.0,f +36990,,Zimbabwe,1.0,f +11684,100%,Isle of Man,3.0,f +30501,100%,Marshall Islands,2.0,f +25663,83%,,1.0,f +32506,,Puerto Rico,1.0,f +26700,,Niue,6.0,f +24466,,Denmark,1.0,f +25299,,Russian Federation,1.0,f +17819,100%,Guinea,2.0,f +33618,,Malta,1.0,f +47243,,,1.0,f +39260,,,1.0,f +9171,,Svalbard & Jan Mayen Islands,1.0,t +26677,100%,Isle of Man,1.0,f +40616,,Mauritania,8.0,f +14259,,,1.0,f +639,,Gambia,1.0,f +6330,,Micronesia,1.0,t +24820,100%,Niue,2.0,f +39025,100%,France,2.0,t +3145,100%,Micronesia,3.0,t +49703,100%,Nicaragua,9.0,f +5983,100%,,1.0,f +39590,100%,Philippines,1.0,f +9249,,United Kingdom,1.0,t +28599,100%,Papua New Guinea,1.0,f +1060,,,1.0,t +9023,90%,Maldives,2.0,t +43734,90%,,1.0,f +41127,,Maldives,1.0,f +31978,100%,Afghanistan,2.0,f +43107,,Bouvet Island (Bouvetoya),1.0,f +20610,,El Salvador,1.0,f +46804,90%,Cape Verde,2.0,f +21999,100%,Montserrat,1.0,t +39122,,Turks and Caicos Islands,2.0,f +31107,100%,Isle of Man,3.0,t +20861,100%,,1.0,f +45688,,Kenya,10.0,f +42700,,Montserrat,1.0,f +4304,,Sao Tome and Principe,2.0,t +10542,,Pakistan,1.0,f +7848,,,1.0,f +17020,,Uzbekistan,1.0,f +33869,100%,Jersey,1.0,t +33374,,Vanuatu,1.0,f +5086,100%,Christmas Island,1.0,t +47245,,Barbados,2.0,t +11369,,Turks and Caicos Islands,1.0,f +10853,100%,Guinea,5.0,f +30655,,Philippines,1.0,f +12960,100%,Indonesia,9.0,f +4742,20%,Chile,3.0,t +29091,100%,,1.0,t +1196,,China,1.0,t +40612,,,2.0,f +30714,100%,United Kingdom,2.0,f +32588,,Nicaragua,1.0,t +12198,,,1.0,f +2430,100%,,1.0,f +5769,,Wallis and Futuna,2.0,f +28887,100%,Ghana,8.0,f +7123,,,1.0,f +1830,,,1.0,t +48871,0%,Cuba,1.0,t +120,100%,Cuba,2.0,f +45688,,Kenya,10.0,f +45688,,Kenya,10.0,f +14995,,,1.0,f +20031,,,2.0,f +19865,100%,,1.0,f +7556,100%,,2.0,f +34882,,Guinea,1.0,f +13939,,,1.0,f +7488,,,1.0,f +28696,,Lebanon,1.0,t +27924,,Kiribati,1.0,f +13092,100%,,1.0,t +14269,,,1.0,f +43530,90%,Russian Federation,2.0,t +41319,100%,Sao Tome and Principe,5.0,f +30983,100%,Costa Rica,1.0,f +10155,100%,Faroe Islands,1.0,t +30357,,,1.0,t +30049,83%,Zimbabwe,1.0,f +36012,100%,,8.0,f +19425,83%,,2.0,f +30755,,Uganda,1.0,f +26575,100%,Netherlands,2.0,f +44758,,,1.0,f +430,,Marshall Islands,3.0,f +26863,,Mexico,7.0,f +22197,90%,,1.0,f +13278,95%,Isle of Man,7.0,f +38912,,Ghana,1.0,f +27081,,,2.0,f +11979,,Anguilla,1.0,f +31756,,Croatia,1.0,t +41696,,,1.0,f +26567,70%,Guinea,2.0,f +37953,100%,Sao Tome and Principe,6.0,f +14016,,Turkmenistan,3.0,t +10571,100%,Niue,1.0,f +43420,,Nicaragua,1.0,f +31760,100%,,2.0,t +28887,100%,Ghana,8.0,f +40130,100%,Kiribati,2.0,f +24948,,Rwanda,3.0,f +47364,,Isle of Man,1.0,f +6864,,Sao Tome and Principe,1.0,f +27241,,,1.0,t +49209,100%,,1.0,t +19726,100%,United Kingdom,2.0,t +20393,80%,Niue,1.0,f +24338,100%,El Salvador,2.0,f +24948,,Rwanda,3.0,f +20024,100%,United Kingdom,1.0,t +1579,100%,Jersey,1.0,f +50084,,,1.0,f +23117,82%,,33.0,f +23117,82%,,33.0,f +23117,82%,,33.0,f +5714,90%,Pakistan,3.0,f +3836,0%,Zimbabwe,1.0,f +42195,,Zimbabwe,1.0,f +32038,100%,Indonesia,35.0,f +48409,,Estonia,60.0,t +40592,100%,El Salvador,1.0,t +6350,,Nicaragua,1.0,f +4560,,Bouvet Island (Bouvetoya),2.0,f +7171,,Russian Federation,1.0,t +19643,,,2.0,f +16060,,,1.0,f +49054,100%,,1.0,f +23196,100%,Guinea,4.0,t +43162,72%,China,7.0,f +20140,,Lebanon,1.0,t +46576,,Marshall Islands,1.0,f +4686,85%,Niger,1.0,f +37315,100%,Turks and Caicos Islands,1.0,f +27081,,,2.0,f +18623,100%,,2.0,f +9254,,Maldives,1.0,t +5085,,,1.0,f +12589,100%,Uzbekistan,1.0,f +21333,100%,Faroe Islands,2.0,f +25452,,Bosnia and Herzegovina,1.0,t +20720,100%,,4.0,f +39981,,,1.0,f +45688,,Kenya,10.0,f +3968,100%,,1.0,f +16698,100%,United Kingdom,9.0,f +16698,100%,United Kingdom,9.0,f +20720,100%,,4.0,f +2275,,Micronesia,1.0,f +10576,100%,Micronesia,2.0,f +24192,100%,,2.0,t +16698,100%,United Kingdom,9.0,f +28772,100%,Niger,15.0,t +26176,,El Salvador,1.0,f +19137,100%,Russian Federation,1.0,t +16747,100%,,1.0,t +45652,100%,Maldives,2.0,f +11308,,,1.0,f +43732,100%,Niue,2.0,t +28103,,,1.0,t +1327,100%,Brazil,1.0,f +27070,100%,Uzbekistan,2.0,f +48409,,Estonia,60.0,t +43321,100%,France,40.0,f +29827,,,1.0,t +29928,,Tonga,1.0,t +6680,,France,2.0,t +16596,100%,Congo,3.0,f +12938,92%,Reunion,12.0,f +1025,100%,,1.0,t +20712,,Peru,1.0,t +37605,,,4.0,f +11616,100%,Uzbekistan,12.0,t +48827,100%,,1.0,f +30555,100%,Saint Helena,2.0,f +3482,100%,Marshall Islands,4.0,f +6473,90%,Uzbekistan,4.0,t +45652,100%,Maldives,2.0,f +13511,,Marshall Islands,1.0,f +49639,100%,,1.0,t +27335,0%,,1.0,f +6244,,Guernsey,1.0,f +43321,100%,France,40.0,f +24896,100%,Algeria,50.0,t +48943,,Nauru,1.0,f +1564,100%,Indonesia,12.0,f +31707,100%,Niger,48.0,f +38707,,Czech Republic,2.0,t +33173,,Kiribati,2.0,f +35429,100%,Lithuania,1.0,f +24984,100%,Andorra,1.0,f +45876,100%,Sao Tome and Principe,1.0,t +16342,,Marshall Islands,6.0,t +47086,100%,Mauritania,4.0,t +831,80%,Kiribati,3.0,f +25222,80%,Kenya,11.0,t +11213,100%,Svalbard & Jan Mayen Islands,2.0,t +22053,,Fiji,1.0,f +33101,100%,Nauru,2.0,f +32521,100%,Montserrat,4.0,t +36052,100%,,2.0,t +22426,,,2.0,t +20153,96%,Reunion,51.0,f +13908,100%,Costa Rica,2.0,f +9606,,,1.0,f +40959,100%,Russian Federation,2.0,f +42594,,Guinea,3.0,f +12866,,,1.0,t +23928,100%,Jersey,2.0,f +9017,,,1.0,t +13190,100%,,4.0,t +29821,,Croatia,1.0,f +27004,100%,Jersey,1.0,f +21333,100%,Faroe Islands,2.0,f +44058,100%,Uganda,1.0,f +7799,,,1.0,f +32979,100%,Ecuador,2.0,t +10612,100%,Brazil,3.0,f +15955,88%,Malta,4.0,t +18295,100%,Guinea,3.0,t +4496,,Monaco,1.0,f +28272,,Cuba,1.0,t +31308,100%,Maldives,1.0,f +35026,,Estonia,7.0,f +705,100%,,1.0,f +41741,100%,Brazil,9.0,t +25140,100%,Togo,3.0,f +36624,100%,,1.0,f +15708,,,1.0,t +26889,100%,Indonesia,10.0,f +19156,,Kenya,1.0,f +19040,,,1.0,f +13005,100%,,3.0,f +8845,,Turks and Caicos Islands,1.0,f +14686,,Lebanon,1.0,t +36847,,,1.0,f +10390,,Guinea,2.0,f +12445,,Uzbekistan,1.0,f +29647,100%,Peru,1305.0,f +27871,,Sao Tome and Principe,1.0,t +13005,100%,,3.0,f +20334,99%,Niger,171.0,t +29647,100%,Peru,1305.0,f +2230,100%,,1.0,f +47638,,Guinea,1.0,f +28419,100%,Russian Federation,1.0,f +6148,100%,,1.0,t +29647,100%,Peru,1305.0,f +46992,30%,Marshall Islands,1.0,f +26698,100%,Uganda,5.0,t +46399,,Chad,1.0,t +39334,100%,Estonia,1.0,t +17592,,Gibraltar,1.0,f +26698,100%,Uganda,5.0,t +11551,,,3.0,f +29647,100%,Peru,1305.0,f +21342,,Congo,1.0,f +29647,100%,Peru,1305.0,f +48932,100%,Monaco,5.0,t +41878,91%,Maldives,47.0,f +21656,,,1.0,t +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +13005,100%,,3.0,f +10483,,Netherlands,2.0,t +29647,100%,Peru,1305.0,f +48399,,Turks and Caicos Islands,1.0,f +34767,100%,Nauru,1.0,f +5020,,Bosnia and Herzegovina,1.0,f +7550,100%,Uganda,1.0,t +27217,,,1.0,t +38850,100%,,1.0,f +2195,,Niue,1.0,f +31117,80%,Croatia,3.0,t +21810,100%,Zimbabwe,2.0,f +4110,,,3.0,f +2896,,Tanzania,1.0,f +36611,71%,Maldives,14.0,f +43990,100%,Uganda,7.0,f +10711,93%,Uganda,108.0,t +7231,100%,Uzbekistan,3.0,t +20445,,,1.0,f +16698,100%,United Kingdom,9.0,f +2471,,Maldives,1.0,f +23098,,,1.0,f +32815,,,1.0,f +48355,,French Guiana,1.0,f +28821,,,1.0,f +23527,,,1.0,f +4145,80%,Tonga,1.0,f +1210,,Reunion,2.0,f +14197,,,1.0,t +3556,,,1.0,f +40302,100%,Rwanda,2.0,t +27708,,Uzbekistan,1.0,f +4664,,,1.0,f +28559,100%,Zimbabwe,1.0,f +44343,,Bosnia and Herzegovina,2.0,t +42965,100%,Uzbekistan,11.0,t +13321,,Maldives,1.0,t +31873,99%,Uzbekistan,22.0,f +27825,100%,,2.0,t +49164,,,1.0,t +18191,,Djibouti,2.0,f +21873,,,1.0,f +6491,,,1.0,f +41990,,,1.0,f +24989,,French Guiana,1.0,f +1028,,,1.0,f +31873,99%,Uzbekistan,22.0,f +38735,100%,Turkmenistan,1.0,f +17543,90%,,4.0,f +9084,100%,,2.0,f +7248,100%,Nicaragua,2.0,f +12261,,Niue,1.0,t +7139,,United Kingdom,2.0,t +18861,,,1.0,f +8129,100%,Rwanda,5.0,f +11551,,,3.0,f +5029,,,1.0,f +36611,71%,Maldives,14.0,f +9386,100%,,1.0,t +11255,93%,Suriname,41.0,f +39168,83%,Tonga,6.0,f +7976,,Chile,1.0,f +48398,0%,Peru,1.0,f +19217,98%,Marshall Islands,46.0,f +18078,100%,Montserrat,13.0,t +19269,,Bahrain,1.0,f +38108,100%,Lebanon,2.0,t +33886,,Gambia,9.0,t +18295,100%,Guinea,3.0,t +5634,,,1.0,f +10583,,,1.0,t +46624,,,1.0,f +47810,100%,Tonga,3.0,f +24859,,Afghanistan,1.0,t +2169,100%,Kiribati,1.0,f +35012,,Cocos (Keeling) Islands,1.0,f +30703,,,1.0,t +15494,,Lithuania,1.0,f +28772,100%,Niger,15.0,t +30631,,El Salvador,1.0,f +46046,,Anguilla,1.0,f +38920,,Barbados,1.0,t +4921,,,1.0,t +18191,,Djibouti,2.0,f +15986,,,1.0,t +9401,50%,,1.0,f +35026,,Estonia,7.0,f +2511,,,1.0,f +1599,100%,,2.0,f +24862,100%,Marshall Islands,1.0,f +9497,90%,,3.0,t +9094,,Marshall Islands,1.0,f +41546,100%,Mauritania,21.0,f +46113,100%,United Kingdom,2.0,f +32699,100%,,1.0,f +36522,,Gibraltar,1.0,f +930,100%,Uganda,2.0,t +969,,Pakistan,3.0,f +29647,100%,Peru,1305.0,f +44797,,Maldives,1.0,t +31979,100%,Kenya,10.0,f +27250,75%,,1.0,f +39143,89%,,33.0,f +44044,,,1.0,f +33468,100%,Monaco,2.0,t +28018,,,1.0,f +41515,90%,,1.0,f +20013,100%,French Guiana,1.0,t +8308,,,1.0,f +1455,100%,France,2.0,f +19635,,El Salvador,3.0,t +5350,,Isle of Man,1.0,f +33207,,Jersey,1.0,f +20602,100%,Gambia,1.0,f +24452,67%,,1.0,f +18459,100%,Zimbabwe,100.0,f +18459,100%,Zimbabwe,100.0,f +18459,100%,Zimbabwe,100.0,f +18459,100%,Zimbabwe,100.0,f +21240,94%,Niger,130.0,f +12637,100%,Guinea,1.0,f +1039,,,1.0,f +45173,,,1.0,f +10706,,,1.0,f +24917,100%,Uganda,11.0,t +41076,70%,,2.0,f +26780,100%,Guinea,7.0,f +6794,100%,Bosnia and Herzegovina,2.0,t +6700,100%,Guinea,7.0,f +14755,,,2.0,f +14755,,,2.0,f +28297,100%,,2.0,t +47866,,,1.0,f +25564,100%,,2.0,f +17306,92%,Micronesia,4.0,t +27614,100%,,2.0,t +40046,,Niue,2.0,f +38888,100%,Malta,1.0,f +5508,,Barbados,1.0,f +30435,99%,Cape Verde,41.0,f +19455,100%,Micronesia,2.0,f +48143,,,1.0,f +29369,100%,Tonga,2.0,f +19306,,Kenya,1.0,f +2330,100%,,1.0,f +35835,,,1.0,f +17464,,Philippines,8.0,t +364,,,4.0,f +48311,,,1.0,t +28046,100%,Cape Verde,5.0,f +36530,,Gibraltar,1.0,f +33454,100%,Tonga,7.0,f +31208,,Rwanda,3.0,f +38759,100%,Cocos (Keeling) Islands,2.0,f +48699,,Mauritania,1.0,f +5469,,Lebanon,1.0,f +48640,100%,Vanuatu,1.0,f +34778,,,1.0,f +45874,,,2.0,f +48493,,Uzbekistan,1.0,t +7316,,,2.0,f +40722,,Maldives,2.0,f +34232,,,1.0,f +6894,80%,Estonia,47.0,t +30251,100%,Brazil,3.0,f +2918,,Cuba,1.0,f +38759,100%,Cocos (Keeling) Islands,2.0,f +47173,,,1.0,t +39575,,,1.0,f +12940,100%,,2.0,t +49289,50%,Gambia,3.0,f +11505,,Slovakia (Slovak Republic),1.0,t +49734,,Zimbabwe,1.0,t +30383,90%,Mauritania,6.0,t +8981,,Denmark,1.0,f +45825,,Micronesia,1.0,t +45637,,,1.0,f +22888,,,1.0,t +24775,97%,Montserrat,44.0,f +2824,25%,Barbados,5.0,f +2824,25%,Barbados,5.0,f +2824,25%,Barbados,5.0,f +25940,100%,Turks and Caicos Islands,2.0,f +42594,,Guinea,3.0,f +13158,100%,Malta,1.0,f +41582,,,1.0,t +22957,100%,Kiribati,3.0,f +24094,100%,Tonga,1.0,f +30714,100%,United Kingdom,2.0,f +33568,,Guinea,1.0,f +10946,,Sao Tome and Principe,1.0,t +48856,,,1.0,t +39480,100%,Montserrat,1.0,f +20443,100%,Uganda,1.0,f +22714,,,1.0,t +15045,,Russian Federation,1.0,f +28468,100%,Uzbekistan,1.0,f +508,,,1.0,f +21682,100%,United Kingdom,2.0,f +15840,,Marshall Islands,1.0,t +20300,,Uganda,1.0,f +4710,25%,Guernsey,1.0,t +20334,99%,Niger,171.0,t +25198,,Christmas Island,4.0,t +1746,50%,Puerto Rico,3.0,f +22690,,,1.0,t +41246,,Libyan Arab Jamahiriya,1.0,f +3654,100%,Guernsey,2.0,f +29575,,Kiribati,1.0,f +30175,,Russian Federation,2.0,t +28793,100%,Lebanon,1.0,f +2460,,Vietnam,2.0,f +36319,75%,France,2.0,t +251,,Cuba,1.0,t +13561,,,1.0,t +28560,100%,Estonia,3.0,t +13420,100%,Uruguay,1.0,f +30730,,Chad,2.0,t +38773,,,1.0,f +39706,,Isle of Man,1.0,t +44210,95%,,3.0,f +25383,100%,Bahrain,3.0,f +29571,,,2.0,f +10016,,,1.0,f +3627,100%,Malawi,1.0,t +39448,,,1.0,f +39219,,Maldives,1.0,f +6656,100%,,1.0,t +15964,75%,Gambia,1.0,f +38610,,,1.0,f +65,100%,,1.0,f +47125,93%,Kiribati,4.0,f +6109,100%,Faroe Islands,1.0,t +30121,,Pakistan,1.0,f +16466,,,2.0,f +40011,,,1.0,f +28949,,Kiribati,1.0,f +28828,100%,Isle of Man,198.0,t +48739,100%,Denmark,1.0,t +45546,100%,Cape Verde,19.0,t +19100,,Lebanon,1.0,t +16809,,,1.0,f +46423,,Croatia,1.0,t +28130,75%,Zimbabwe,1.0,t +20833,100%,Kiribati,2.0,f +34100,,Rwanda,1.0,f +25170,100%,Russian Federation,2.0,f +6608,95%,Russian Federation,3.0,t +32514,,,1.0,t +18133,,,1.0,t +6695,,Micronesia,1.0,f +4446,100%,Uganda,58.0,f +8948,,Netherlands,1.0,f +13403,96%,Maldives,21.0,t +9133,,United Kingdom,1.0,f +47662,,Isle of Man,3.0,t +10711,93%,Uganda,108.0,t +6834,100%,Svalbard & Jan Mayen Islands,1.0,f +49139,,,1.0,f +47182,,,1.0,f +35018,100%,Nicaragua,10.0,f +47477,,Maldives,1.0,f +17626,100%,Faroe Islands,2.0,t +45549,100%,,1.0,f +28417,100%,,1.0,t +541,93%,Marshall Islands,17.0,f +22695,97%,Pakistan,6.0,t +22077,100%,Mauritania,10.0,f +25451,100%,,1.0,f +35982,,Sao Tome and Principe,1.0,f +49763,,Somalia,1.0,f +35018,100%,Nicaragua,10.0,f +15786,80%,Kenya,1.0,t +45834,100%,,1.0,f +36028,75%,,1.0,f +38508,100%,Rwanda,1.0,t +37169,100%,Jersey,2.0,f +32429,,Gambia,9.0,f +3655,,Uzbekistan,1.0,f +488,100%,Maldives,18.0,f +16303,,Niue,1.0,f +30653,,Zimbabwe,1.0,f +19683,90%,,1.0,t +27902,,,2.0,f +39933,,Canada,1.0,f +29647,100%,Peru,1305.0,f +22944,100%,,1.0,t +37884,,Djibouti,1.0,f +24118,98%,Ghana,21.0,t +46290,100%,Micronesia,2.0,f +15677,,,1.0,t +24486,100%,Svalbard & Jan Mayen Islands,1.0,f +11699,,El Salvador,1.0,t +20216,,United Kingdom,1.0,f +31224,90%,,2.0,f +37127,100%,Guinea,3.0,f +7385,100%,Kenya,1.0,f +12703,,Ecuador,1.0,f +938,67%,,2.0,t +16208,100%,Guinea,1.0,t +865,,China,1.0,f +27868,100%,,2.0,t +41268,100%,Peru,1.0,f +18037,100%,Brazil,2.0,f +44487,,Niue,1.0,f +24804,,,1.0,t +32465,100%,Isle of Man,3.0,t +9119,,Niue,1.0,f +50006,43%,,1.0,f +48394,,,1.0,t +40819,,,1.0,f +41878,91%,Maldives,47.0,f +12474,,,1.0,f +2734,,,1.0,f +24263,,,1.0,f +35026,,Estonia,7.0,f +14865,100%,,1.0,f +49687,,Marshall Islands,1.0,f +40688,100%,Holy See (Vatican City State),3.0,t +46950,88%,Netherlands,2.0,t +48590,,Russian Federation,1.0,t +19091,95%,Cook Islands,18.0,t +13403,96%,Maldives,21.0,t +5541,,Nicaragua,1.0,t +48609,100%,Uzbekistan,2.0,f +22180,,Lebanon,1.0,t +11785,,,1.0,t +43568,100%,Sao Tome and Principe,5.0,t +14540,92%,Niue,5.0,f +13328,,Bosnia and Herzegovina,3.0,t +43982,100%,Denmark,2.0,f +30381,100%,Gambia,1.0,f +34529,,,2.0,f +10711,93%,Uganda,108.0,t +50001,,Lebanon,1.0,f +11689,100%,Chad,1.0,f +14514,,China,80.0,t +20489,,,1.0,t +6320,,Jersey,1.0,f +34989,100%,,1.0,f +1622,86%,Finland,1.0,t +19744,100%,,1.0,f +22438,90%,Guinea,2.0,t +8601,,Angola,16.0,f +38491,100%,Rwanda,3.0,t +18773,,,1.0,f +541,93%,Marshall Islands,17.0,f +24276,,Maldives,1.0,f +29647,100%,Peru,1305.0,f +34273,,Christmas Island,1.0,f +10903,,,8.0,t +16000,100%,Reunion,2.0,f +9802,,Indonesia,38.0,t +42863,,,1.0,t +430,,Marshall Islands,3.0,f +22844,,,1.0,f +8601,,Angola,16.0,f +43550,100%,Rwanda,16.0,t +11372,100%,Micronesia,3.0,f +33120,,Mauritania,2.0,f +5928,,Niue,6.0,t +26480,,France,1.0,f +22978,,El Salvador,2.0,f +22875,100%,Marshall Islands,1.0,f +5336,,Tonga,1.0,f +26226,,,1.0,f +49456,0%,Venezuela,1.0,f +25819,92%,,6.0,t +8601,,Angola,16.0,f +24836,100%,Kiribati,4.0,f +42544,100%,,1.0,f +30139,,,1.0,t +9732,,,1.0,t +430,,Marshall Islands,3.0,f +20568,100%,Gambia,1.0,t +34574,,,1.0,t +24419,,Malawi,2.0,f +46449,100%,Tonga,1.0,f +938,67%,,2.0,t +25222,80%,Kenya,11.0,t +26865,100%,,1.0,t +15849,,Wallis and Futuna,1.0,f +39122,,Turks and Caicos Islands,2.0,f +26980,100%,Tonga,2.0,f +25821,100%,Russian Federation,2.0,f +25476,100%,Fiji,11.0,f +25476,100%,Fiji,11.0,f +19847,100%,Maldives,1.0,f +31707,100%,Niger,48.0,f +24850,,,1.0,f +9802,,Indonesia,38.0,t +12918,100%,China,9.0,f +47137,,Malawi,1.0,f +20334,99%,Niger,171.0,t +20765,88%,Isle of Man,1.0,f +9802,,Indonesia,38.0,t +37730,,,1.0,t +26831,50%,Fiji,1.0,f +12686,,Chad,1.0,t +18171,100%,Guernsey,1.0,t +629,,,1.0,t +25279,,Bouvet Island (Bouvetoya),1.0,f +45341,,,1.0,f +30759,100%,Uganda,2.0,f +2032,100%,,1.0,t +5247,46%,Estonia,3.0,t +19311,,Somalia,1.0,f +19064,,French Guiana,1.0,t +9802,,Indonesia,38.0,t +45629,,,2.0,f +4164,100%,Turks and Caicos Islands,3.0,f +29141,100%,Togo,3.0,t +3813,100%,,1.0,f +4857,,,1.0,f +37903,,Ghana,1.0,f +6495,89%,Tonga,34.0,f +14805,,Ghana,2.0,f +46104,100%,Fiji,2.0,t +27827,100%,,3.0,f +36581,,,1.0,f +15817,100%,Barbados,4.0,t +40432,100%,Nicaragua,2.0,f +29647,100%,Peru,1305.0,f +16912,100%,France,1.0,t +4542,,Russian Federation,1.0,f +4446,100%,Uganda,58.0,f +29480,100%,French Polynesia,6.0,f +18239,,,1.0,f +48139,100%,,1.0,t +36499,75%,Anguilla,25.0,t +22740,100%,Russian Federation,1.0,t +13907,,,1.0,f +8875,,,1.0,f +30995,,,7.0,f +9167,,Rwanda,2.0,t +35952,100%,,1.0,f +44298,33%,Kiribati,2.0,t +17865,,Uzbekistan,1.0,f +42105,,Bouvet Island (Bouvetoya),1.0,f +783,100%,Svalbard & Jan Mayen Islands,12.0,t +34895,100%,Estonia,16.0,t +38497,100%,Tunisia,1.0,f +25222,80%,Kenya,11.0,t +23136,,Afghanistan,2.0,t +25821,100%,Russian Federation,2.0,f +8770,100%,El Salvador,3.0,f +8829,,,1.0,f +34569,100%,Malawi,2.0,t +28214,100%,,1.0,f +29647,100%,Peru,1305.0,f +9802,,Indonesia,38.0,t +17764,,Ecuador,1.0,f +26694,100%,,1.0,f +37251,100%,Bahrain,1.0,t +48729,,Gambia,1.0,t +33608,,United Kingdom,1.0,f +25721,,Lebanon,1.0,f +36100,100%,Rwanda,17.0,t +9874,100%,Montserrat,4.0,t +14822,,Chile,1.0,f +29647,100%,Peru,1305.0,f +2524,100%,Costa Rica,4.0,t +15585,,,1.0,f +2456,,Faroe Islands,2.0,f +29647,100%,Peru,1305.0,f +43152,100%,Nicaragua,82.0,t +37639,100%,Nauru,11.0,f +36283,,Congo,1.0,t +29647,100%,Peru,1305.0,f +16465,,Greenland,1.0,f +8840,,Senegal,2.0,f +34928,100%,Ecuador,4.0,f +24632,100%,Croatia,4.0,t +16833,100%,Niue,1.0,f +31253,,Pakistan,2.0,f +24118,98%,Ghana,21.0,t +38257,100%,Svalbard & Jan Mayen Islands,1.0,f +9802,,Indonesia,38.0,t +14608,,,1.0,t +24118,98%,Ghana,21.0,t +14613,,Guinea,1.0,f +28212,,,1.0,f +26834,,Venezuela,1.0,f +2191,,,2.0,f +16345,,Micronesia,1.0,f +19381,,,1.0,f +18605,,,1.0,f +30985,100%,Uzbekistan,5.0,f +27152,100%,Kenya,4.0,f +40979,,Afghanistan,3.0,t +7584,,Montserrat,2.0,f +33821,,Djibouti,1.0,f +24936,,Marshall Islands,1.0,f +16698,100%,United Kingdom,9.0,f +16698,100%,United Kingdom,9.0,f +16698,100%,United Kingdom,9.0,f +16698,100%,United Kingdom,9.0,f +33585,,Malawi,2.0,f +4920,98%,Estonia,8.0,f +4920,98%,Estonia,8.0,f +10202,89%,Nicaragua,10.0,f +24634,100%,Guinea,20.0,t +28828,100%,Isle of Man,198.0,t +35147,95%,Mauritania,5.0,t +17561,,,1.0,f +36335,,,1.0,f +23178,,,1.0,f +34895,100%,Estonia,16.0,t +49043,100%,Micronesia,4.0,t +45577,,Kenya,1.0,t +8718,100%,Gambia,1.0,t +12451,100%,Nauru,4.0,t +27907,100%,Puerto Rico,21.0,f +37676,90%,Congo,7.0,t +6393,,,1.0,f +19110,,Maldives,1.0,f +40177,100%,,13.0,f +47068,,Tunisia,1.0,f +37855,100%,Maldives,1.0,t +36276,,Brazil,1.0,f +1950,100%,,1.0,f +11599,75%,,4.0,f +40177,100%,,13.0,f +5831,,,1.0,t +28501,,Congo,1.0,f +17888,100%,,1.0,f +4196,,,1.0,f +21378,,,1.0,f +27322,100%,Mexico,1.0,f +48318,,French Guiana,2.0,t +46268,,,1.0,f +48052,,Gibraltar,1.0,f +10243,100%,,1.0,f +43182,,Uzbekistan,1.0,f +40177,100%,,13.0,f +23117,82%,,33.0,f +1245,,Kiribati,1.0,t +39068,100%,Djibouti,6.0,t +3589,,,1.0,f +37005,,France,1.0,t +11050,,Gambia,1.0,f +37977,,Maldives,1.0,t +21877,100%,Cook Islands,7.0,f +4444,60%,,1.0,t +4792,100%,Jersey,4.0,t +4762,100%,,1.0,f +38881,100%,Uzbekistan,3.0,t +44009,,,3.0,f +49274,100%,,2.0,f +32742,100%,Nicaragua,3.0,t +47795,100%,Wallis and Futuna,4.0,f +5857,,Maldives,2.0,f +43209,,,1.0,t +45936,0%,,1.0,f +8682,,France,2.0,f +19441,90%,Niue,2.0,f +24895,100%,,1.0,f +22534,,Afghanistan,1.0,f +9687,,Anguilla,1.0,f +3105,,,1.0,t +40177,100%,,13.0,f +10857,100%,Niue,1.0,f +13647,100%,,3.0,f +44072,100%,,1.0,t +9032,88%,,3.0,t +45531,100%,Lithuania,2.0,f +49001,,,1.0,t +35201,100%,Mexico,2.0,f +39188,100%,Estonia,1.0,t +13093,,,1.0,t +37969,80%,Indonesia,3.0,f +43496,100%,Montserrat,18.0,t +47500,100%,Turkmenistan,1.0,f +25563,,Djibouti,1.0,f +4595,,Sao Tome and Principe,2.0,f +40897,78%,Tanzania,1.0,f +7300,100%,,2.0,f +40177,100%,,13.0,f +30986,100%,Niger,1.0,f +40177,100%,,13.0,f +1384,90%,Ecuador,2.0,t +10711,93%,Uganda,108.0,t +2370,,Lithuania,1.0,f +12964,,,1.0,f +37408,91%,Papua New Guinea,5.0,t +11774,100%,Russian Federation,2.0,f +9533,,Senegal,16.0,t +3340,100%,Indonesia,6.0,t +35092,,Afghanistan,3.0,f +43393,100%,,1.0,f +44218,100%,Kiribati,3.0,f +3814,,Isle of Man,3.0,f +4471,67%,,2.0,f +2233,,,1.0,f +7883,,,1.0,f +12380,,Senegal,1.0,f +22982,100%,,1.0,t +35877,100%,,1.0,f +12033,,Congo,1.0,f +13713,100%,,1.0,f +5057,100%,Zimbabwe,23.0,t +27110,100%,United Kingdom,3.0,f +46937,,,1.0,f +41356,,Micronesia,1.0,f +5057,100%,Zimbabwe,23.0,t +5057,100%,Zimbabwe,23.0,t +34644,,Nicaragua,1.0,f +23283,,Zimbabwe,1.0,f +30777,,Malta,2.0,t +48217,75%,Wallis and Futuna,2.0,t +28764,67%,,2.0,t +37220,100%,Senegal,1.0,t +15588,,,1.0,f +41351,0%,Denmark,1.0,f +37673,,,1.0,t +49019,78%,French Guiana,1.0,f +12709,100%,,2.0,t +24292,,Lebanon,1.0,f +1480,,,1.0,t +21770,,Venezuela,2.0,f +13848,,Gambia,1.0,t +25734,78%,Bosnia and Herzegovina,1.0,f +8663,,Russian Federation,1.0,f +22825,,,1.0,f +25295,100%,Slovakia (Slovak Republic),3.0,t +26305,80%,Kiribati,2.0,f +15168,100%,Venezuela,2.0,f +5467,,,1.0,f +5171,100%,Anguilla,2.0,f +16598,90%,,1.0,f +3013,,,1.0,t +5171,100%,Anguilla,2.0,f +10821,100%,Holy See (Vatican City State),1.0,f +13138,100%,Faroe Islands,2.0,t +21770,,Venezuela,2.0,f +13736,,,1.0,f +48488,,Rwanda,1.0,t +18472,,Monaco,1.0,f +553,,Denmark,1.0,t +44997,100%,Saint Helena,5.0,f +36390,100%,Croatia,1.0,f +28344,,,1.0,t +10249,,,1.0,f +1198,80%,Micronesia,1.0,f +32708,100%,Sao Tome and Principe,2.0,f +13013,100%,Tonga,3.0,t +20893,80%,,1.0,f +541,93%,Marshall Islands,17.0,f +29858,100%,,2.0,t +29858,100%,,2.0,t +34014,100%,,1.0,t +38749,,,2.0,f +13013,100%,Tonga,3.0,t +13013,100%,Tonga,3.0,t +724,100%,Zimbabwe,8.0,f +724,100%,Zimbabwe,8.0,f +2946,100%,Zimbabwe,1.0,f +724,100%,Zimbabwe,8.0,f +35603,,,2.0,f +45890,100%,,1.0,f +16159,90%,Maldives,2.0,f +20606,100%,Congo,6.0,t +13403,96%,Maldives,21.0,t +11623,100%,Chad,1.0,f +3729,,,2.0,f +37681,100%,,1.0,t +7407,,,7.0,t +48015,,Reunion,1.0,f +2083,0%,,1.0,f +12284,,Brazil,1.0,f +39639,100%,Niue,19.0,f +8245,100%,Isle of Man,3.0,t +8331,70%,Uganda,2.0,f +33600,100%,Gambia,1.0,t +2699,,Niger,1.0,f +30876,50%,,1.0,t +28933,,Chad,3.0,t +16576,,Brazil,1.0,f +38149,100%,Niger,12.0,f +18459,100%,Zimbabwe,100.0,f +24842,100%,Jersey,4.0,t +12095,100%,Kenya,1.0,f +18459,100%,Zimbabwe,100.0,f +8597,100%,Micronesia,3.0,f +18459,100%,Zimbabwe,100.0,f +26541,100%,Nicaragua,12.0,f +26541,100%,Nicaragua,12.0,f +26541,100%,Nicaragua,12.0,f +18459,100%,Zimbabwe,100.0,f +5591,99%,Indonesia,16.0,t +35018,100%,Nicaragua,10.0,f +18982,25%,El Salvador,1.0,f +38534,100%,Maldives,1.0,f +7934,,Isle of Man,1.0,f +40689,100%,Cuba,23.0,f +20058,,Sao Tome and Principe,1.0,f +12351,,Niue,3.0,f +10472,100%,Zimbabwe,2.0,f +47498,,Mauritania,2.0,t +16489,100%,Russian Federation,42.0,t +13748,,Lithuania,1.0,f +8808,,,1.0,f +35112,60%,,1.0,f +48205,100%,,1.0,t +18582,50%,Brazil,1.0,f +21981,,,1.0,t +8225,95%,Barbados,31.0,f +33081,,,1.0,t +30891,100%,Gambia,2.0,f +12273,,,1.0,t +47718,,Uzbekistan,1.0,t +22627,100%,Costa Rica,2.0,t +26635,0%,Tanzania,1.0,f +18056,,Peru,1.0,f +34636,90%,Isle of Man,1.0,t +1828,100%,Nauru,1.0,f +7482,,,1.0,t +30291,,Lebanon,1.0,f +19222,100%,Micronesia,1.0,f +1318,100%,,1.0,t +37954,,El Salvador,1.0,f +12003,100%,Uganda,8.0,t +22035,100%,Malawi,2.0,t +13832,100%,Micronesia,1.0,f +34895,100%,Estonia,16.0,t +49640,100%,,2.0,t +29791,,,4.0,f +537,100%,,1.0,t +48794,75%,,1.0,f +35018,100%,Nicaragua,10.0,f +35018,100%,Nicaragua,10.0,f +25351,100%,Fiji,6.0,f +20334,99%,Niger,171.0,t +2100,100%,Kenya,1.0,f +25777,,Bouvet Island (Bouvetoya),3.0,t +43018,100%,,1.0,f +30097,90%,Tunisia,2.0,f +46921,100%,,1.0,f +25777,,Bouvet Island (Bouvetoya),3.0,t +38023,100%,Barbados,1.0,f +13434,100%,,1.0,f +18247,95%,Iran,80.0,t +17937,100%,Sao Tome and Principe,2.0,f +39128,,French Guiana,1.0,f +34398,100%,,3.0,t +31473,,Chile,1.0,f +13836,,Ecuador,3.0,t +25442,,French Polynesia,1.0,f +23117,82%,,33.0,f +23117,82%,,33.0,f +23117,82%,,33.0,f +12715,100%,Estonia,29.0,f +48723,,Philippines,1.0,f +21928,100%,French Guiana,1.0,t +14353,,Zimbabwe,1.0,f +7975,,Sao Tome and Principe,1.0,f +17739,,,1.0,f +23117,82%,,33.0,f +18247,95%,Iran,80.0,t +20153,96%,Reunion,51.0,f +40959,100%,Russian Federation,2.0,f +38832,97%,,15.0,f +18093,100%,Niue,1.0,f +38832,97%,,15.0,f +47348,,Guinea,1.0,t +11541,100%,Isle of Man,1.0,f +43888,100%,Brazil,3.0,t +37340,,Gibraltar,1.0,f +94,,Micronesia,1.0,f +28566,78%,Slovakia (Slovak Republic),79.0,t +40186,,,1.0,t +12705,,,1.0,t +12245,,French Guiana,1.0,t +47855,,,1.0,f +33837,,Nicaragua,2.0,t +27778,70%,Philippines,1.0,f +28312,100%,Lebanon,2.0,t +21428,,Maldives,1.0,t +42377,100%,Marshall Islands,2.0,f +18757,100%,Indonesia,1.0,f +36643,98%,Maldives,17.0,f +22957,100%,Kiribati,3.0,f +47604,95%,Uzbekistan,4.0,t +43539,,Kiribati,1.0,f +22865,,,1.0,f +35258,100%,Puerto Rico,1.0,f +6349,100%,,1.0,t +421,,Turkmenistan,1.0,f +528,,,2.0,t +30854,100%,Kiribati,1.0,f +35802,,Monaco,1.0,f +13281,,,1.0,f +47323,50%,Turks and Caicos Islands,7.0,f +46086,,,2.0,f +29868,,,1.0,f +47323,50%,Turks and Caicos Islands,7.0,f +47323,50%,Turks and Caicos Islands,7.0,f +37169,100%,Jersey,2.0,f +47085,100%,Sao Tome and Principe,1.0,f +4385,100%,Bosnia and Herzegovina,1.0,f +24693,75%,Nicaragua,3.0,f +35763,100%,,1.0,f +16947,,Chile,2.0,f +38827,,,1.0,f +3745,,Congo,1.0,f +23911,,Vanuatu,1.0,t +36472,100%,Nicaragua,1.0,f +8008,100%,Brazil,1.0,f +30205,100%,,1.0,f +28649,100%,Uzbekistan,1.0,f +20722,100%,Isle of Man,1.0,f +40805,90%,Uzbekistan,2.0,f +49893,,Russian Federation,1.0,f +31128,100%,Montserrat,2.0,t +29647,100%,Peru,1305.0,f +13809,100%,,1.0,t +1775,100%,Denmark,2.0,f +9363,95%,Ukraine,50.0,f +2426,,,1.0,f +35473,100%,Pakistan,2.0,f +23749,,,1.0,f +45138,79%,Barbados,14.0,f +45138,79%,Barbados,14.0,f +45138,79%,Barbados,14.0,f +40421,96%,Jersey,29.0,t +24360,,,1.0,f +23992,100%,France,1.0,f +43663,,Kenya,1.0,f +23534,100%,Maldives,2.0,f +29647,100%,Peru,1305.0,f +7935,,Uzbekistan,1.0,f +49876,,Kiribati,1.0,f +27972,94%,Brazil,27.0,f +40001,,Gibraltar,1.0,f +35223,100%,Guinea,4.0,t +29809,100%,,3.0,f +15969,80%,France,3.0,t +14105,,Uzbekistan,1.0,f +10467,100%,Nicaragua,4.0,f +32400,,,1.0,f +26671,100%,,2.0,f +16159,90%,Maldives,2.0,f +21672,,Suriname,2.0,f +47066,100%,Denmark,1.0,t +11136,100%,,1.0,f +1958,,Guernsey,2.0,f +48585,100%,Kiribati,8.0,f +45417,100%,Uzbekistan,1.0,f +19855,100%,Kiribati,37.0,t +46099,98%,Uzbekistan,28.0,f +6686,100%,,1.0,t +30873,,,1.0,f +48068,100%,,4.0,f +33715,,Guinea,1.0,f +32097,100%,Denmark,5.0,f +20926,,Sao Tome and Principe,1.0,f +44537,100%,Tonga,7.0,f +23014,0%,,1.0,f +15309,,,1.0,t +16004,33%,Kenya,1.0,t +11349,0%,Venezuela,1.0,f +37605,,,4.0,f +18363,,,1.0,f +13061,100%,,1.0,f +25564,100%,,2.0,f +21021,,Lebanon,1.0,f +22331,99%,Rwanda,50.0,t +34846,,,1.0,f +26982,,Gambia,1.0,f +40688,100%,Holy See (Vatican City State),3.0,t +29647,100%,Peru,1305.0,f +46628,100%,,2.0,t +29647,100%,Peru,1305.0,f +14630,,,1.0,t +6838,96%,Spain,59.0,t +18639,100%,Tonga,1.0,f +541,93%,Marshall Islands,17.0,f +49182,83%,Tunisia,2.0,t +32410,100%,United Kingdom,5.0,f +12666,100%,United Kingdom,2.0,f +39356,100%,Malta,2.0,t +29647,100%,Peru,1305.0,f +21897,90%,,3.0,f +24921,80%,El Salvador,2.0,f +47532,100%,,1.0,f +22544,100%,Holy See (Vatican City State),6.0,t +46099,98%,Uzbekistan,28.0,f +5292,,Mauritania,1.0,t +43947,100%,Greenland,1.0,f +45009,,,1.0,f +25106,,Costa Rica,2.0,t +10678,,,1.0,f +36355,89%,Rwanda,2.0,f +26109,100%,Portugal,2.0,f +35731,,,1.0,f +21773,100%,Papua New Guinea,2.0,f +9802,,Indonesia,38.0,t +40246,,Gibraltar,1.0,f +36005,,Marshall Islands,1.0,f +9500,100%,El Salvador,1.0,f +33880,84%,Barbados,18.0,f +48478,100%,Marshall Islands,1.0,t +7898,100%,Saint Helena,1.0,f +45806,100%,,1.0,f +32780,,,1.0,f +15189,79%,China,21.0,f +34841,100%,Zimbabwe,22.0,t +10017,,Kiribati,1.0,t +12918,100%,China,9.0,f +23908,100%,Vanuatu,1.0,f +43877,,Chad,1.0,t +22343,,Jersey,1.0,t +18188,100%,,1.0,t +9563,,Russian Federation,1.0,t +40844,100%,,1.0,f +26927,100%,,1.0,f +2333,,,1.0,f +26892,100%,Togo,12.0,t +16139,,,2.0,f +46025,,,1.0,f +46031,,,1.0,t +16413,100%,,1.0,t +20052,,Uzbekistan,1.0,f +34345,100%,Niger,3.0,f +21853,100%,El Salvador,1.0,t +37467,,Chile,1.0,f +14206,,Sao Tome and Principe,1.0,f +29235,100%,Malta,6.0,f +25586,,Croatia,1.0,f +15004,100%,Uzbekistan,88.0,f +6889,100%,Anguilla,1.0,t +16489,100%,Russian Federation,42.0,t +42239,100%,Ghana,2.0,f +28961,,Vietnam,3.0,f +21319,25%,,1.0,f +48893,,Estonia,1.0,t +13531,100%,,1.0,f +2197,,,1.0,f +41878,91%,Maldives,47.0,f +25962,,Gibraltar,2.0,f +564,0%,Guinea,1.0,f +4876,,Senegal,9.0,f +17691,90%,Zimbabwe,4.0,t +9533,,Senegal,16.0,t +7214,100%,South Georgia and the South Sandwich Islands,5.0,f +18629,100%,Sao Tome and Principe,3.0,f +9084,100%,,2.0,f +24852,100%,Wallis and Futuna,3.0,f +36124,,Vanuatu,1.0,f +46118,100%,Nicaragua,11.0,f +17775,100%,Turkmenistan,1.0,f +30435,99%,Cape Verde,41.0,f +27237,100%,Malta,2.0,t +4446,100%,Uganda,58.0,f +16637,100%,,1.0,f +43093,,Niue,1.0,f +47833,,,1.0,f +5888,,Afghanistan,1.0,t +15004,100%,Uzbekistan,88.0,f +15004,100%,Uzbekistan,88.0,f +15004,100%,Uzbekistan,88.0,f +7843,100%,,1.0,f +4459,100%,Guinea,1.0,t +26671,100%,,2.0,f +9068,100%,,1.0,f +37075,,,1.0,f +16895,,Indonesia,4.0,f +10320,92%,Tonga,10.0,f +39242,,,1.0,t +19320,,,1.0,f +20672,,Niue,1.0,f +9363,95%,Ukraine,50.0,f +21046,100%,Lebanon,1.0,t +29333,,Croatia,1.0,t +22604,100%,Saint Helena,2.0,t +41252,,,1.0,f +40486,,Sao Tome and Principe,2.0,t +44187,90%,,1.0,f +48427,80%,Micronesia,1.0,t +37257,100%,Rwanda,2.0,f +13620,100%,Cape Verde,1.0,f +15413,80%,Vanuatu,7.0,t +40485,0%,,1.0,f +28986,,,1.0,f +41033,,Zimbabwe,1.0,f +4228,,Niger,11.0,f +32410,100%,United Kingdom,5.0,f +41602,100%,Zimbabwe,1.0,f +48054,,,1.0,f +32410,100%,United Kingdom,5.0,f +23471,100%,,1.0,t +546,100%,Uganda,4.0,f +32410,100%,United Kingdom,5.0,f +35962,,Mexico,1.0,f +33408,100%,Tonga,6.0,f +21466,,,1.0,f +41152,,,1.0,f +18648,,,1.0,f +44649,100%,Portugal,3.0,t +10048,100%,Micronesia,1.0,f +4733,,Anguilla,1.0,f +1063,100%,Papua New Guinea,4.0,f +44956,100%,Gambia,3.0,t +40880,,,1.0,t +8021,100%,El Salvador,2.0,f +39006,100%,Holy See (Vatican City State),1.0,f +49134,100%,Tunisia,1.0,f +30643,,Russian Federation,1.0,f +6074,100%,,2.0,f +27324,100%,Guinea,1.0,t +38252,100%,Rwanda,1.0,f +26890,,Lebanon,2.0,f +10337,,Anguilla,1.0,f +12754,,Cocos (Keeling) Islands,1.0,f +22251,100%,Gambia,11.0,f +28828,100%,Isle of Man,198.0,t +44492,100%,,2.0,f +33256,100%,Mauritania,1.0,t +36404,,,1.0,f +24492,,Niue,1.0,t +15004,100%,Uzbekistan,88.0,f +23162,,Uzbekistan,2.0,t +32900,,Niue,2.0,f +11579,100%,Mauritania,3.0,t +15004,100%,Uzbekistan,88.0,f +15004,100%,Uzbekistan,88.0,f +13167,100%,Micronesia,1.0,f +15004,100%,Uzbekistan,88.0,f +16489,100%,Russian Federation,42.0,t +15004,100%,Uzbekistan,88.0,f +15004,100%,Uzbekistan,88.0,f +48585,100%,Kiribati,8.0,f +49076,97%,Kenya,12.0,t +13878,,Lebanon,1.0,f +27446,,,2.0,t +23941,,Vanuatu,1.0,f +15004,100%,Uzbekistan,88.0,f +42103,100%,Russian Federation,2.0,f +17540,,Guinea,1.0,f +45510,100%,Marshall Islands,2.0,f +22244,100%,Finland,6.0,t +26324,100%,Cape Verde,1.0,f +18851,100%,Russian Federation,1.0,t +37408,91%,Papua New Guinea,5.0,t +8778,100%,Somalia,1.0,t +8223,100%,El Salvador,2.0,t +33233,,,1.0,t +7971,100%,Malta,3.0,f +28046,100%,Cape Verde,5.0,f +16267,100%,Montserrat,1.0,f +31158,99%,Suriname,11.0,f +26892,100%,Togo,12.0,t +25820,,Anguilla,1.0,f +6866,100%,Ghana,2.0,f +16921,100%,Malta,1.0,f +17623,,French Guiana,1.0,f +48140,,,1.0,f +47816,100%,,1.0,f +39016,,Costa Rica,1.0,f +23961,,Russian Federation,1.0,t +40023,100%,Uganda,6.0,t +611,86%,Montserrat,7.0,f +611,86%,Montserrat,7.0,f +19001,100%,,1.0,f +47612,,,1.0,f +40023,100%,Uganda,6.0,t +8458,100%,El Salvador,2.0,f +15808,,,1.0,f +30425,,Micronesia,1.0,f +26892,100%,Togo,12.0,t +39068,100%,Djibouti,6.0,t +3153,,Barbados,1.0,f +24772,90%,Denmark,10.0,f +43345,,Turkmenistan,1.0,f +39060,100%,Kiribati,3.0,f +26892,100%,Togo,12.0,t +37999,100%,Senegal,20.0,t +14609,100%,,1.0,f +44725,100%,Slovakia (Slovak Republic),4.0,t +49732,,,1.0,f +34587,,Isle of Man,22.0,t +23232,,,1.0,f +47409,100%,Niue,3.0,t +17527,100%,,2.0,t +34174,50%,,1.0,f +28052,,,2.0,f +43427,100%,Niue,1.0,f +15107,,,1.0,t +34780,,Guinea,1.0,f +44,,Sao Tome and Principe,1.0,f +11,,,1.0,t +27964,,Russian Federation,1.0,f +44453,,,1.0,f +27521,,Chile,2.0,t +41472,,,1.0,t +22727,100%,,1.0,t +37605,,,4.0,f +6938,100%,,2.0,f +34647,,,1.0,f +21393,100%,Uzbekistan,1.0,f +36891,,Mauritania,1.0,f +38266,,Zimbabwe,1.0,t +23162,,Uzbekistan,2.0,t +47409,100%,Niue,3.0,t +20153,96%,Reunion,51.0,f +8295,100%,,2.0,f +24026,98%,Cape Verde,69.0,t +15141,,,1.0,f +16215,100%,Nauru,1.0,f +33883,,,3.0,t +16675,,,1.0,f +35092,,Afghanistan,3.0,f +35092,,Afghanistan,3.0,f +49244,100%,Bosnia and Herzegovina,1.0,t +38539,100%,,1.0,f +10807,100%,Indonesia,2.0,f +35782,,Turkmenistan,1.0,t +11085,,Malta,1.0,t +5414,100%,,1.0,t +40961,100%,Venezuela,1.0,f +33979,83%,Reunion,4.0,f +9802,,Indonesia,38.0,t +18255,100%,Marshall Islands,3.0,f +35953,,,1.0,f +41764,,,1.0,t +35794,,Tonga,1.0,f +34162,,,2.0,f +3307,100%,,2.0,t +2061,100%,Isle of Man,1.0,f +6622,,France,1.0,f +2518,33%,Lebanon,1.0,f +8230,,Puerto Rico,2.0,f +31724,100%,Bouvet Island (Bouvetoya),1.0,f +38423,100%,Niue,5.0,t +1279,100%,,5.0,f +36499,75%,Anguilla,25.0,t +320,,,1.0,f +42995,,Greenland,1.0,t +45385,,,2.0,f +43203,100%,,2.0,f +36340,,Marshall Islands,1.0,f +29038,,,1.0,t +6303,,,1.0,f +47073,100%,,1.0,f +8369,,,1.0,t +38232,,,3.0,t +36499,75%,Anguilla,25.0,t +32591,100%,,1.0,f +46740,,Mauritania,2.0,f +1791,,Rwanda,1.0,f +17448,100%,Somalia,2.0,f +8172,,Bouvet Island (Bouvetoya),1.0,f +36499,75%,Anguilla,25.0,t +8597,100%,Micronesia,3.0,f +19811,90%,Nicaragua,21.0,t +8597,100%,Micronesia,3.0,f +19422,,Nicaragua,1.0,f +32,,Guinea,1.0,f +3270,,Brunei Darussalam,1.0,f +27774,78%,Vietnam,15.0,f +27774,78%,Vietnam,15.0,f +27774,78%,Vietnam,15.0,f +27774,78%,Vietnam,15.0,f +11786,,United Kingdom,1.0,f +3533,,,1.0,f +33209,,El Salvador,1.0,f +18280,,,1.0,f +23599,100%,Marshall Islands,1.0,f +9206,,Sao Tome and Principe,1.0,f +22422,100%,Slovakia (Slovak Republic),2.0,f +21451,100%,,2.0,f +10320,92%,Tonga,10.0,f +33198,100%,Mauritania,12.0,f +32203,100%,Barbados,176.0,f +4316,100%,Micronesia,18.0,f +10320,92%,Tonga,10.0,f +10358,,Micronesia,2.0,f +14423,100%,Micronesia,1.0,t +33101,100%,Nauru,2.0,f +36069,,Niue,2.0,f +20485,100%,China,1.0,f +10467,100%,Nicaragua,4.0,f +14464,,Lebanon,2.0,f +21231,100%,,1.0,f +44183,0%,France,2.0,f +3031,,,1.0,f +18655,,,1.0,f +32482,,,1.0,f +2597,100%,Nicaragua,13.0,t +18652,100%,,1.0,t +5837,60%,Sao Tome and Principe,2.0,f +23909,,,1.0,t +40950,,,2.0,f +3478,,,1.0,f +26366,100%,Sao Tome and Principe,2.0,f +40853,,,1.0,f +36437,100%,Niue,1.0,f +277,100%,,2.0,f +33916,100%,Svalbard & Jan Mayen Islands,3.0,f +17441,100%,,6.0,t +21741,90%,Marshall Islands,2.0,t +22322,100%,Micronesia,2.0,f +22070,100%,,1.0,f +24912,100%,Sao Tome and Principe,5.0,f +11480,,Isle of Man,2.0,f +38083,,Micronesia,1.0,f +31189,100%,,2.0,f +18647,,Sao Tome and Principe,1.0,f +8015,100%,Denmark,1.0,t +48122,60%,,3.0,f +14137,,Isle of Man,1.0,f +7669,,Andorra,1.0,t +45606,100%,Sao Tome and Principe,2.0,f +37080,100%,Canada,1.0,f +13490,100%,French Guiana,2.0,f +48891,,,1.0,f +37432,,Papua New Guinea,1.0,f +46436,100%,Gambia,1.0,t +44857,100%,Zimbabwe,24.0,t +24449,,France,1.0,f +26915,100%,France,2.0,t +20212,100%,Mauritania,1.0,f +19536,,,2.0,f +37371,100%,,2.0,f +11460,0%,Marshall Islands,1.0,f +1063,100%,Papua New Guinea,4.0,f +9590,100%,,3.0,f +22388,100%,Tonga,2.0,f +38440,100%,,1.0,f +9516,99%,Pakistan,45.0,t +5627,,Reunion,1.0,f +6875,100%,Niue,1.0,f +4051,,Anguilla,1.0,t +40273,,,1.0,f +3157,,,1.0,f +6915,,,2.0,t +27883,100%,Cuba,11.0,f +32017,100%,,1.0,f +34890,,,1.0,f +6961,,Niue,1.0,t +5486,100%,Svalbard & Jan Mayen Islands,12.0,f +29178,100%,Russian Federation,1.0,f +40061,100%,Micronesia,3.0,f +39656,,France,1.0,f +41588,,Brunei Darussalam,2.0,f +45924,,Guinea,1.0,f +23949,100%,Slovakia (Slovak Republic),6.0,t +47864,,,1.0,f +44082,,,1.0,f +45442,67%,,1.0,f +46812,,,1.0,t +2141,,,1.0,f +34784,60%,Faroe Islands,19.0,t +42350,100%,Bahamas,2.0,t +24238,,,1.0,f +42643,,,1.0,f +34544,,,1.0,f +37905,78%,Afghanistan,1.0,f +47052,,,1.0,f +18679,100%,Andorra,1.0,f +13752,,,1.0,f +48372,100%,Barbados,12.0,t +22861,,Tanzania,1.0,f +38978,,,1.0,f +43582,100%,,1.0,t +38806,,French Guiana,1.0,f +45416,,,1.0,f +35597,100%,Uzbekistan,2.0,f +15031,50%,Tanzania,3.0,t +3715,100%,Zimbabwe,1.0,t +31868,0%,Christmas Island,1.0,t +7232,,,1.0,f +27786,100%,,2.0,t +5141,,Nauru,1.0,f +9641,100%,Chad,1.0,f +7264,100%,Philippines,9.0,f +44034,,,1.0,f +7264,100%,Philippines,9.0,f +7264,100%,Philippines,9.0,f +6528,,United Kingdom,1.0,f +7264,100%,Philippines,9.0,f +7264,100%,Philippines,9.0,f +14931,100%,Jersey,4.0,f +9690,,Uruguay,1.0,t +5623,100%,Russian Federation,1.0,f +17364,,Puerto Rico,1.0,f +18186,,Russian Federation,1.0,f +1520,,Chad,1.0,t +41111,,,1.0,f +16608,,Ghana,1.0,f +16242,100%,Sao Tome and Principe,3.0,t +8104,100%,,4.0,f +7862,,Russian Federation,2.0,t +9590,100%,,3.0,f +10988,,,1.0,f +22940,100%,Holy See (Vatican City State),1.0,f +9590,100%,,3.0,f +26924,100%,Zimbabwe,3.0,f +24890,,Afghanistan,1.0,t +13827,,Turks and Caicos Islands,1.0,f +9032,88%,,3.0,t +164,80%,,1.0,f +5201,100%,Kenya,1.0,t +18208,,Turkmenistan,1.0,f +45339,100%,Nicaragua,1.0,f +32401,,,1.0,f +24242,97%,,5.0,f +17092,100%,Estonia,2.0,f +24242,97%,,5.0,f +3879,100%,Anguilla,6.0,f +27287,100%,,1.0,f +40835,100%,Indonesia,1.0,f +40215,88%,Niue,1.0,f +26664,,Bouvet Island (Bouvetoya),1.0,f +6816,,Svalbard & Jan Mayen Islands,1.0,t +32203,100%,Barbados,176.0,f +30099,,Russian Federation,1.0,f +43374,,Sao Tome and Principe,1.0,f +14806,,,1.0,t +25029,,,1.0,t +18629,100%,Sao Tome and Principe,3.0,f +27334,100%,China,16.0,f +12363,0%,Brazil,1.0,f +36877,,,1.0,f +31268,100%,,1.0,f +18119,,Cocos (Keeling) Islands,1.0,f +7788,,Cook Islands,3.0,t +36143,90%,Turks and Caicos Islands,4.0,f +20334,99%,Niger,171.0,t +20936,,Tonga,2.0,f +20936,,Tonga,2.0,f +18255,100%,Marshall Islands,3.0,f +35481,,Micronesia,1.0,f +46734,,Pakistan,1.0,f +37297,,,1.0,f +35015,100%,Senegal,4.0,t +41467,100%,,2.0,f +10711,93%,Uganda,108.0,t +10490,100%,Sao Tome and Principe,4.0,f +38872,100%,,2.0,f +41358,,Maldives,1.0,f +10308,,Lebanon,1.0,f +11125,100%,Nicaragua,12.0,t +35480,100%,Netherlands,1.0,f +39825,,,1.0,f +2857,100%,Montserrat,4.0,f +33251,100%,Bosnia and Herzegovina,1.0,t +8733,100%,Tonga,4.0,t +15089,,,1.0,f +42891,100%,,1.0,f +22242,100%,Estonia,1.0,f +46137,,Lebanon,2.0,t +11217,,Niue,3.0,f +38911,100%,Tonga,1.0,f +17694,100%,Isle of Man,4.0,t +35284,,,1.0,f +48848,100%,Cocos (Keeling) Islands,1.0,f +26807,,Zimbabwe,1.0,f +36277,,,1.0,f +47501,100%,Indonesia,3.0,t +22018,100%,Gibraltar,1.0,f +15354,100%,Rwanda,3.0,t +39414,86%,,1.0,t +1513,,,3.0,f +3642,90%,Bosnia and Herzegovina,2.0,t +40285,100%,,1.0,t +1101,63%,Senegal,1.0,f +40293,,Tonga,1.0,t +34361,,,1.0,t +19536,,,2.0,f +43889,100%,Lebanon,2.0,f +15756,94%,Afghanistan,2.0,t +44649,100%,Portugal,3.0,t +4847,100%,Indonesia,3.0,t +49252,57%,Holy See (Vatican City State),1.0,t +19130,100%,Peru,3.0,t +9802,,Indonesia,38.0,t +39691,,,2.0,f +10456,,Chile,1.0,t +47742,,Kenya,1.0,f +41802,,,1.0,f +30931,100%,Papua New Guinea,3.0,f +32372,90%,Ghana,5.0,f +2573,,,1.0,f +13113,0%,,1.0,t +29802,91%,Brazil,1.0,t +21174,100%,,1.0,f +12466,,Maldives,2.0,f +33064,,Uzbekistan,1.0,f +45801,,Sao Tome and Principe,2.0,t +23305,100%,Philippines,11.0,f +8882,,Niue,1.0,f +35184,,Svalbard & Jan Mayen Islands,1.0,f +24242,97%,,5.0,f +21696,67%,Bouvet Island (Bouvetoya),2.0,t +31092,,Senegal,19.0,f +36188,,Micronesia,1.0,f +40490,100%,Vanuatu,2.0,t +13553,93%,Vietnam,5.0,f +25649,,Suriname,1.0,t +12456,100%,,2.0,f +13755,,Mauritania,2.0,t +12893,,Brazil,1.0,f +10115,,El Salvador,1.0,f +9838,,San Marino,3.0,f +6713,100%,Mauritania,10.0,f +44464,100%,Montserrat,1.0,t +37114,78%,,1.0,f +22436,,Nicaragua,2.0,f +10467,100%,Nicaragua,4.0,f +9060,,,1.0,f +23190,,Micronesia,1.0,f +40024,,,1.0,f +45404,100%,Kiribati,1.0,f +16854,100%,El Salvador,2.0,t +9230,,Venezuela,1.0,f +11255,93%,Suriname,41.0,f +28551,100%,Guinea,1.0,f +31164,100%,,2.0,f +45236,,,1.0,f +42382,,Nicaragua,1.0,t +24242,97%,,5.0,f +30189,,Jersey,1.0,f +25534,90%,Indonesia,5.0,t +29477,100%,,1.0,f +30494,,Uzbekistan,1.0,f +25091,,Isle of Man,1.0,t +17963,,,1.0,f +5830,100%,China,2.0,f +49689,100%,Niger,6.0,f +45220,,Bosnia and Herzegovina,1.0,t +40827,,,1.0,f +23071,,Venezuela,1.0,t +16221,100%,El Salvador,2.0,f +8303,,French Guiana,1.0,f +21793,,Turkmenistan,1.0,f +4202,,Uzbekistan,1.0,t +24431,,Estonia,1.0,f +50045,,Guinea,1.0,f +44016,100%,Gibraltar,2.0,f +13070,100%,Fiji,45.0,f +21600,100%,Sao Tome and Principe,2.0,f +39676,86%,Guinea,2.0,f +4469,100%,Afghanistan,1.0,f +21967,100%,Cape Verde,1.0,f +47330,,,1.0,f +10986,,,1.0,f +40983,100%,Chad,4.0,f +32282,,,1.0,f +16489,100%,Russian Federation,42.0,t +47690,,Guinea,1.0,f +43079,,Uzbekistan,1.0,t +24441,100%,,1.0,f +32829,,Svalbard & Jan Mayen Islands,1.0,t +13834,,Kiribati,9.0,f +13834,,Kiribati,9.0,f +23860,100%,Turks and Caicos Islands,1.0,t +24093,88%,Ghana,5.0,f +29647,100%,Peru,1305.0,f +29978,89%,Uzbekistan,26.0,f +20789,98%,Sao Tome and Principe,13.0,f +33658,100%,,1.0,f +11255,93%,Suriname,41.0,f +45439,100%,Barbados,3.0,f +5555,100%,Denmark,11.0,t +29647,100%,Peru,1305.0,f +37641,,Gambia,1.0,f +11959,100%,Gibraltar,2.0,t +13548,,Niue,1.0,f +49379,100%,,2.0,f +39248,97%,Cuba,5.0,f +1153,,Uzbekistan,1.0,f +12388,100%,,1.0,f +39648,,Denmark,3.0,f +49391,,Tonga,1.0,f +17473,100%,Indonesia,1.0,f +14477,100%,Reunion,26.0,t +8142,100%,Gambia,4.0,t +18590,100%,Pakistan,1.0,f +21160,,El Salvador,2.0,f +34448,,Mauritania,1.0,f +13099,,Chad,1.0,f +13641,85%,Mauritania,23.0,f +44440,88%,Somalia,2.0,f +48373,100%,Christmas Island,1.0,f +7923,100%,Togo,2.0,t +11839,,Uganda,11.0,f +7376,,Guinea,2.0,t +13297,0%,,1.0,f +25103,,Jersey,1.0,f +35018,100%,Nicaragua,10.0,f +11483,100%,Lebanon,1.0,f +4402,100%,Svalbard & Jan Mayen Islands,1.0,f +16000,100%,Reunion,2.0,f +2050,,Estonia,1.0,f +17417,,Denmark,11.0,f +35705,,,1.0,f +25050,,Monaco,1.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +38538,100%,,5.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +24026,98%,Cape Verde,69.0,t +20935,100%,Gambia,2.0,f +26863,,Mexico,7.0,f +7765,100%,Niue,9.0,t +27013,100%,Gambia,1.0,f +14540,92%,Niue,5.0,f +17162,100%,,2.0,t +40875,,Brazil,1.0,f +44475,100%,El Salvador,1.0,f +32410,100%,United Kingdom,5.0,f +831,80%,Kiribati,3.0,f +41649,63%,United Kingdom,1.0,f +45913,100%,Niue,2.0,f +1564,100%,Indonesia,12.0,f +17480,80%,Maldives,2.0,t +20334,99%,Niger,171.0,t +39812,100%,Nicaragua,6.0,t +2227,100%,Montserrat,5.0,t +30645,,Afghanistan,1.0,f +28500,,Montserrat,1.0,t +36251,,,1.0,t +5478,,,1.0,t +18928,90%,,1.0,f +21846,,,1.0,f +25900,,Faroe Islands,1.0,f +7407,,,7.0,t +35529,,Zimbabwe,1.0,f +18562,,Nicaragua,2.0,f +22852,100%,Togo,3.0,f +29017,,Kenya,1.0,f +4230,,Isle of Man,1.0,t +33521,,Montserrat,1.0,f +31880,100%,,1.0,f +3523,,,1.0,t +15367,100%,France,2.0,f +12977,,Saint Helena,1.0,f +45606,100%,Sao Tome and Principe,2.0,f +18459,100%,Zimbabwe,100.0,f +11713,,Gambia,1.0,f +29561,,Niue,1.0,f +37823,100%,Gambia,3.0,f +2738,,Bouvet Island (Bouvetoya),1.0,f +17904,100%,Rwanda,1.0,f +24093,88%,Ghana,5.0,f +26460,,Nicaragua,1.0,f +18459,100%,Zimbabwe,100.0,f +302,100%,Tunisia,20.0,f +41416,,Somalia,1.0,f +15352,,Tonga,1.0,f +40177,100%,,13.0,f +43237,40%,Montserrat,24.0,f +33560,,Kiribati,4.0,t +43021,50%,France,1.0,t +23248,100%,Sao Tome and Principe,1.0,f +36780,,,1.0,f +17239,,Uzbekistan,1.0,f +43496,100%,Montserrat,18.0,t +32219,,,1.0,f +29235,100%,Malta,6.0,f +23816,80%,Niue,1.0,f +43496,100%,Montserrat,18.0,t +37823,100%,Gambia,3.0,f +32244,,,1.0,t +15208,,,1.0,f +302,100%,Tunisia,20.0,f +46065,100%,Ecuador,3.0,f +47765,100%,French Polynesia,1.0,f +7407,,,7.0,t +46981,100%,,1.0,t +302,100%,Tunisia,20.0,f +36857,100%,,1.0,f +6101,,Lebanon,1.0,t +19091,95%,Cook Islands,18.0,t +37363,100%,Isle of Man,1.0,f +37569,,Gambia,1.0,f +2597,100%,Nicaragua,13.0,t +7150,,,1.0,t +47501,100%,Indonesia,3.0,t +26121,67%,Marshall Islands,2.0,f +7332,100%,Ecuador,2.0,t +43075,100%,Fiji,1.0,t +40904,,Chad,2.0,f +41850,,Kiribati,3.0,f +11097,100%,El Salvador,1.0,f +46748,100%,Malta,1.0,f +7760,,Gambia,1.0,t +22232,,Rwanda,3.0,t +34041,,,1.0,f +18634,,Niue,1.0,f +33242,100%,Uzbekistan,3.0,t +40491,,Moldova,1.0,f +34212,,,1.0,f +4118,,Malta,1.0,f +14116,100%,Russian Federation,2.0,t +9794,100%,,1.0,f +29235,100%,Malta,6.0,f +44966,100%,Guinea,21.0,f +44966,100%,Guinea,21.0,f +44966,100%,Guinea,21.0,f +14808,,Niue,1.0,t +44966,100%,Guinea,21.0,f +33196,,,1.0,f +10711,93%,Uganda,108.0,t +45782,100%,,3.0,f +6310,,,1.0,f +40008,,,1.0,f +30251,100%,Brazil,3.0,f +29016,,,1.0,f +39409,,,1.0,f +44340,,,1.0,f +15923,,Denmark,1.0,f +19851,100%,Venezuela,2.0,t +11196,63%,,1.0,f +6447,,Nicaragua,2.0,f +35666,,Congo,1.0,f +13750,,Switzerland,1.0,t +6447,,Nicaragua,2.0,f +33350,,,1.0,f +35439,94%,United Kingdom,23.0,t +39648,,Denmark,3.0,f +39648,,Denmark,3.0,f +25791,100%,,2.0,f +22232,,Rwanda,3.0,t +25998,,,1.0,t +2968,100%,,1.0,f +30772,,,1.0,f +16649,100%,Gibraltar,8.0,f +3120,,Sao Tome and Principe,1.0,f +42094,,Nicaragua,1.0,f +7370,,Svalbard & Jan Mayen Islands,1.0,t +6241,100%,Jersey,2.0,f +21334,100%,Kiribati,1.0,t +22332,100%,Russian Federation,1.0,t +48457,,Chile,1.0,f +24160,100%,,3.0,t +6552,,,1.0,f +17691,90%,Zimbabwe,4.0,t +13356,100%,El Salvador,2.0,t +28181,100%,,1.0,f +32538,100%,France,1.0,t +22809,100%,Barbados,2.0,f +40489,100%,,1.0,t +23654,100%,Uzbekistan,23.0,f +46894,100%,Malawi,2.0,t +40366,97%,Micronesia,14.0,t +40366,97%,Micronesia,14.0,t +29364,,,1.0,t +40366,97%,Micronesia,14.0,t +9509,0%,Niue,1.0,f +3870,33%,,1.0,f +43020,100%,,1.0,f +32203,100%,Barbados,176.0,f +2423,0%,,2.0,f +32863,,,2.0,f +302,100%,Tunisia,20.0,f +20018,,,1.0,f +10493,91%,Lithuania,1.0,f +9838,,San Marino,3.0,f +9134,,Netherlands,1.0,f +28088,100%,,1.0,f +2769,100%,Maldives,4.0,f +23654,100%,Uzbekistan,23.0,f +22210,,Zimbabwe,1.0,f +17732,,Montserrat,1.0,f +30150,60%,,1.0,t +16006,100%,Tanzania,3.0,t +42175,100%,Turkmenistan,1.0,f +29647,100%,Peru,1305.0,f +6184,,Nicaragua,1.0,f +29740,100%,,3.0,t +30038,100%,Guernsey,1.0,t +9838,,San Marino,3.0,f +3099,50%,Niue,1.0,f +32037,100%,Niger,1.0,f +41301,100%,Costa Rica,9.0,t +11523,100%,Papua New Guinea,1.0,t +302,100%,Tunisia,20.0,f +31504,,Croatia,3.0,f +40793,100%,,75.0,t +25767,,Rwanda,1.0,f +21819,,Uzbekistan,1.0,f +17175,100%,Malta,8.0,t +302,100%,Tunisia,20.0,f +41884,100%,,2.0,t +27652,100%,El Salvador,5.0,f +23654,100%,Uzbekistan,23.0,f +31506,100%,Anguilla,1.0,t +39236,,Afghanistan,3.0,f +302,100%,Tunisia,20.0,f +25591,100%,,1.0,f +44208,100%,,1.0,f +34841,100%,Zimbabwe,22.0,t +18258,90%,Niue,2.0,f +604,,Nicaragua,1.0,f +48585,100%,Kiribati,8.0,f +806,90%,Rwanda,2.0,t +47992,100%,,1.0,f +14134,,Isle of Man,1.0,f +302,100%,Tunisia,20.0,f +44210,95%,,3.0,f +28047,100%,Uzbekistan,4.0,f +34181,,,1.0,f +48585,100%,Kiribati,8.0,f +32139,,Gambia,1.0,f +8438,62%,Nicaragua,9.0,t +16355,100%,,1.0,f +729,100%,Saint Helena,3.0,f +6682,100%,United Kingdom,1.0,f +302,100%,Tunisia,20.0,f +729,100%,Saint Helena,3.0,f +48585,100%,Kiribati,8.0,f +26780,100%,Guinea,7.0,f +302,100%,Tunisia,20.0,f +8230,,Puerto Rico,2.0,f +13234,,Niue,2.0,f +13234,,Niue,2.0,f +43731,100%,,1.0,t +1277,100%,Turkmenistan,1.0,t +36658,94%,China,20.0,t +8729,89%,Svalbard & Jan Mayen Islands,1.0,f +7349,70%,Djibouti,4.0,f +34042,100%,Marshall Islands,37.0,f +45238,,,1.0,t +38784,100%,Pakistan,3.0,f +3346,,,2.0,t +28047,100%,Uzbekistan,4.0,f +4892,,Lebanon,1.0,t +29881,0%,Zimbabwe,3.0,t +8468,,,1.0,t +31504,,Croatia,3.0,f +18459,100%,Zimbabwe,100.0,f +26751,100%,Jersey,1.0,f +40169,,Marshall Islands,1.0,t +24093,88%,Ghana,5.0,f +35304,100%,Tonga,12.0,t +10208,,Tunisia,1.0,f +20334,99%,Niger,171.0,t +25934,100%,Estonia,7.0,f +16312,100%,Kiribati,11.0,f +21525,,Vanuatu,1.0,t +2597,100%,Nicaragua,13.0,t +37139,,,1.0,f +49731,,,1.0,f +18459,100%,Zimbabwe,100.0,f +1961,100%,,1.0,f +37502,100%,Croatia,6.0,t +46636,,,1.0,t +28106,100%,Uganda,2.0,f +28671,100%,Malawi,2.0,f +13338,,Gambia,1.0,f +30251,100%,Brazil,3.0,f +43575,100%,,1.0,f +28106,100%,Uganda,2.0,f +13023,,,1.0,f +14648,100%,,1.0,f +19924,,,1.0,f +49681,,France,2.0,f +17238,,,1.0,f +24960,,Micronesia,1.0,t +12479,,,1.0,t +37046,0%,Turks and Caicos Islands,1.0,f +38335,79%,Guinea,11.0,f +4140,,,3.0,f +15967,,Rwanda,1.0,f +31989,,Russian Federation,1.0,f +19723,85%,Reunion,2.0,f +17121,,,1.0,f +2450,,,1.0,f +35335,0%,Jersey,1.0,f +23030,100%,Greenland,2.0,f +4876,,Senegal,9.0,f +49887,,Lebanon,1.0,f +26862,100%,Chad,3.0,t +48321,100%,China,17.0,f +43203,100%,,2.0,f +17148,100%,Vanuatu,2.0,f +28581,100%,Sao Tome and Principe,2.0,f +17441,100%,,6.0,t +35026,,Estonia,7.0,f +17394,0%,Nicaragua,49.0,f +32429,,Gambia,9.0,f +478,100%,Holy See (Vatican City State),1.0,f +28086,,Slovakia (Slovak Republic),2.0,f +13085,100%,Guinea,1.0,t +19943,63%,Isle of Man,34.0,f +35026,,Estonia,7.0,f +22823,100%,Somalia,1.0,f +30497,100%,Slovakia (Slovak Republic),9.0,t +29123,100%,Zimbabwe,16.0,t +23998,,,1.0,f +20112,,Zimbabwe,1.0,t +29290,100%,Guinea,1.0,f +19075,,,1.0,f +33976,100%,Russian Federation,1.0,t +27334,100%,China,16.0,f +42107,,Fiji,1.0,f +24016,100%,Bosnia and Herzegovina,29.0,f +33164,60%,Togo,6.0,f +24029,100%,,1.0,f +24496,,,1.0,f +6605,70%,,1.0,f +4334,,Estonia,1.0,f +40999,100%,Chile,2.0,f +19869,,Uzbekistan,1.0,f +45455,,Micronesia,1.0,f +3117,,,2.0,f +23430,100%,Reunion,16.0,f +650,,,1.0,t +5675,100%,Lebanon,2.0,f +35647,100%,Malawi,1.0,f +3117,,,2.0,f +26266,,,1.0,f +17374,,,1.0,f +27058,100%,Kenya,1.0,f +28414,100%,Uzbekistan,22.0,f +15518,100%,French Guiana,2.0,t +45867,100%,Finland,2.0,f +10736,,Turks and Caicos Islands,2.0,f +8683,,Guinea,1.0,f +40366,97%,Micronesia,14.0,t +729,100%,Saint Helena,3.0,f +8982,,Mauritania,1.0,f +17527,100%,,2.0,t +8159,100%,Micronesia,3.0,f +28244,80%,,4.0,f +21413,,,1.0,t +5324,80%,,1.0,f +5735,,Turkmenistan,1.0,t +48321,100%,China,17.0,f +48854,,Kiribati,3.0,f +35439,94%,United Kingdom,23.0,t +2943,91%,Fiji,6.0,f +4134,,Niue,1.0,f +48321,100%,China,17.0,f +23805,,,1.0,f +48509,,,1.0,t +28800,,Philippines,1.0,f +16922,100%,,2.0,t +15128,70%,,1.0,f +24877,,,1.0,t +17480,80%,Maldives,2.0,t +27907,100%,Puerto Rico,21.0,f +33633,100%,China,8.0,f +1564,100%,Indonesia,12.0,f +12918,100%,China,9.0,f +1564,100%,Indonesia,12.0,f +37689,,Bouvet Island (Bouvetoya),1.0,f +37808,,Zimbabwe,2.0,f +19217,98%,Marshall Islands,46.0,f +8728,100%,Ecuador,1.0,f +40207,100%,,2.0,t +34042,100%,Marshall Islands,37.0,f +49635,,,1.0,t +10080,100%,Isle of Man,2.0,t +41708,,,1.0,t +5715,100%,Tonga,1.0,f +2423,0%,,2.0,f +17578,,Vietnam,2.0,t +10711,93%,Uganda,108.0,t +25691,100%,Mexico,1.0,f +32203,100%,Barbados,176.0,f +21558,,Kenya,1.0,f +46381,100%,,2.0,f +38516,95%,Pakistan,9.0,f +7834,94%,Mexico,13.0,f +20517,,Kenya,1.0,f +29270,,China,1.0,f +26109,100%,Portugal,2.0,f +45181,,Ecuador,1.0,t +12897,,,1.0,f +46492,,Anguilla,1.0,f +10736,,Turks and Caicos Islands,2.0,f +25962,,Gibraltar,2.0,f +11839,,Uganda,11.0,f +28540,100%,Vanuatu,12.0,f +38531,,,1.0,t +28540,100%,Vanuatu,12.0,f +28540,100%,Vanuatu,12.0,f +7870,100%,,1.0,t +28540,100%,Vanuatu,12.0,f +48321,100%,China,17.0,f +48321,100%,China,17.0,f +48321,100%,China,17.0,f +48321,100%,China,17.0,f +48321,100%,China,17.0,f +48321,100%,China,17.0,f +31504,,Croatia,3.0,f +48321,100%,China,17.0,f +48321,100%,China,17.0,f +28828,100%,Isle of Man,198.0,t +6716,90%,,1.0,f +48321,100%,China,17.0,f +32203,100%,Barbados,176.0,f +10111,,Anguilla,1.0,f +24250,100%,,1.0,f +44410,100%,Maldives,1.0,t +18459,100%,Zimbabwe,100.0,f +4662,100%,Somalia,1.0,t +18459,100%,Zimbabwe,100.0,f +18459,100%,Zimbabwe,100.0,f +29961,100%,Montserrat,1.0,f +31674,,Nicaragua,1.0,f +18459,100%,Zimbabwe,100.0,f +17394,0%,Nicaragua,49.0,f +48032,,Niue,1.0,f +15690,,,1.0,f +34061,,Malta,1.0,f +1377,100%,Tonga,3.0,f +37786,,Estonia,1.0,f +8988,,Togo,1.0,f +41103,,Lithuania,2.0,f +44714,,Ghana,4.0,f +2364,100%,China,2.0,t +9552,100%,,1.0,t +29647,100%,Peru,1305.0,f +38335,79%,Guinea,11.0,f +18459,100%,Zimbabwe,100.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +23618,,Senegal,2.0,f +27597,100%,Portugal,7.0,t +26752,100%,United Kingdom,2.0,f +20056,100%,Denmark,6.0,f +25504,,Papua New Guinea,1.0,t +11814,100%,Micronesia,7.0,t +19510,,Mauritania,1.0,f +27213,99%,Jersey,7.0,t +12972,,Tonga,1.0,f +13089,100%,Russian Federation,1.0,t +46003,100%,Russian Federation,1.0,f +22625,100%,Nicaragua,3.0,t +24160,100%,,3.0,t +38832,97%,,15.0,f +14138,100%,,2.0,f +49779,,,1.0,f +3933,,Montserrat,2.0,t +7969,,Micronesia,1.0,f +6495,89%,Tonga,34.0,f +44764,98%,Maldives,16.0,f +36299,100%,Rwanda,13.0,t +10080,100%,Isle of Man,2.0,t +21945,90%,Denmark,2.0,f +34194,100%,,7.0,t +2015,100%,,1.0,t +8841,100%,Malawi,2.0,f +10855,100%,Niue,6.0,f +45182,,Lebanon,1.0,t +14877,100%,Indonesia,2.0,t +3831,100%,Reunion,3.0,t +36143,90%,Turks and Caicos Islands,4.0,f +43626,,Zimbabwe,2.0,f +20452,99%,Barbados,185.0,t +9729,,French Polynesia,1.0,f +4530,,Micronesia,1.0,t +32448,100%,,1.0,f +33979,83%,Reunion,4.0,f +4526,100%,,4.0,f +34732,,Uzbekistan,2.0,t +4526,100%,,4.0,f +5690,100%,Isle of Man,2.0,t +8178,100%,Marshall Islands,1.0,t +10853,100%,Guinea,5.0,f +24361,100%,,2.0,f +9828,0%,Puerto Rico,1.0,f +38561,,French Guiana,1.0,t +6915,,,2.0,t +35266,,Jersey,2.0,f +35266,,Jersey,2.0,f +14800,,Tunisia,1.0,f +20452,99%,Barbados,185.0,t +48606,100%,Russian Federation,1.0,t +1759,,Niue,1.0,t +16592,,Niger,1.0,f +27067,,,1.0,f +44546,100%,Guinea,2.0,f +13989,,Malta,1.0,t +40925,,Kenya,2.0,f +20452,99%,Barbados,185.0,t +34110,,,1.0,f +8405,,Tunisia,1.0,f +46076,100%,Russian Federation,2.0,t +11892,100%,Guinea,1.0,t +12357,100%,Gambia,4.0,f +8071,,,1.0,f +9651,100%,Lithuania,1.0,t +20452,99%,Barbados,185.0,t +48194,,,1.0,f +15953,100%,,1.0,f +35403,100%,Mexico,1.0,f +7739,,,1.0,f +20452,99%,Barbados,185.0,t +18747,0%,,2.0,f +18745,,,3.0,t +35294,,Lebanon,1.0,t +18747,0%,,2.0,f +47194,,,1.0,f +1257,100%,,2.0,f +6887,100%,Faroe Islands,2.0,f +40567,100%,,2.0,t +45780,91%,Palestinian Territory,5.0,f +11926,,Tonga,4.0,t +4558,30%,,3.0,f +41563,0%,,1.0,f +44055,75%,,5.0,f +47009,,Chad,1.0,f +1440,100%,Gibraltar,4.0,t +7736,71%,,2.0,f +48954,100%,Montserrat,8.0,t +40567,100%,,2.0,t +48195,100%,Gibraltar,1.0,t +21736,100%,Vanuatu,4.0,f +4920,98%,Estonia,8.0,f +5736,,,1.0,t +7067,100%,,1.0,f +20297,80%,Montserrat,17.0,f +7084,,Tanzania,1.0,t +20297,80%,Montserrat,17.0,f +36174,,,1.0,f +20478,100%,Ecuador,1.0,f +31528,,Zimbabwe,2.0,t +16867,100%,Uzbekistan,1.0,f +20334,99%,Niger,171.0,t +28665,,,1.0,t +23654,100%,Uzbekistan,23.0,f +20297,80%,Montserrat,17.0,f +17634,90%,Brazil,1.0,t +20297,80%,Montserrat,17.0,f +20297,80%,Montserrat,17.0,f +25383,100%,Bahrain,3.0,f +20297,80%,Montserrat,17.0,f +8130,,Isle of Man,1.0,f +668,,,1.0,t +17315,100%,Micronesia,1.0,f +12918,100%,China,9.0,f +40095,,,1.0,f +25928,100%,,1.0,t +20036,100%,Guernsey,2.0,t +32030,,Guinea,1.0,f +42361,100%,Sao Tome and Principe,1.0,t +34011,80%,,1.0,f +44414,100%,Vietnam,2.0,t +30035,100%,,1.0,f +32863,,,2.0,f +33873,100%,Turks and Caicos Islands,8.0,t +7438,,Isle of Man,1.0,t +34042,100%,Marshall Islands,37.0,f +33198,100%,Mauritania,12.0,f +21940,,Turkmenistan,1.0,f +36127,100%,,16.0,f +24704,100%,,1.0,f +14877,100%,Indonesia,2.0,t +32982,,Togo,2.0,f +611,86%,Montserrat,7.0,f +47274,100%,Tonga,48.0,f +9761,,Gambia,2.0,f +36127,100%,,16.0,f +36346,100%,,1.0,f +36127,100%,,16.0,f +6246,,,3.0,t +46167,,Niger,1.0,f +9502,100%,,2.0,t +47695,100%,,1.0,f +39003,,Gibraltar,1.0,t +15603,100%,Marshall Islands,1.0,t +17324,100%,Isle of Man,1.0,f +18306,90%,Jersey,5.0,f +43223,,Malta,2.0,f +42246,100%,Tanzania,1.0,f +26195,93%,Gambia,8.0,t +33786,,,1.0,f +35308,,,1.0,f +4563,,Lebanon,1.0,f +40428,,Malawi,1.0,t +33211,,Kiribati,1.0,t +29647,100%,Peru,1305.0,f +21409,,,1.0,f +47090,100%,Croatia,3.0,f +10711,93%,Uganda,108.0,t +17618,100%,Uzbekistan,1.0,f +14559,,,1.0,f +12001,,Russian Federation,1.0,f +26195,93%,Gambia,8.0,t +40177,100%,,13.0,f +32993,100%,Christmas Island,1.0,t +22331,99%,Rwanda,50.0,t +16874,100%,,1.0,f +24794,,Russian Federation,2.0,f +45026,,,1.0,t +16242,100%,Sao Tome and Principe,3.0,t +46065,100%,Ecuador,3.0,f +21403,95%,Vietnam,8.0,f +8872,100%,Russian Federation,5.0,t +31202,90%,Kiribati,107.0,f +31202,90%,Kiribati,107.0,f +30501,100%,Marshall Islands,2.0,f +9743,100%,,2.0,f +14590,,Turks and Caicos Islands,2.0,t +37796,,,1.0,t +18870,,,1.0,f +40177,100%,,13.0,f +40177,100%,,13.0,f +41944,,,1.0,t +31976,,Nauru,1.0,t +5628,,,1.0,f +2379,100%,Lithuania,2.0,f +31202,90%,Kiribati,107.0,f +31202,90%,Kiribati,107.0,f +47760,100%,Malawi,1.0,t +36313,86%,Turkmenistan,1.0,f +17394,0%,Nicaragua,49.0,f +3824,,,1.0,f +29976,100%,,3.0,f +15279,,Afghanistan,22.0,t +44742,,,1.0,f +48409,,Estonia,60.0,t +29011,100%,Rwanda,1.0,f +14454,,Guernsey,2.0,f +44511,100%,Bouvet Island (Bouvetoya),4.0,f +37646,100%,Estonia,60.0,f +46158,,Uzbekistan,1.0,t +8978,88%,Brazil,1.0,t +36546,86%,Ghana,3.0,f +50039,100%,Isle of Man,4.0,f +25031,,Gambia,1.0,f +24026,98%,Cape Verde,69.0,t +18684,,,1.0,f +3765,100%,Guinea,1.0,t +47026,90%,Vietnam,3.0,f +11125,100%,Nicaragua,12.0,t +18306,90%,Jersey,5.0,f +6899,100%,Bahrain,1.0,t +23430,100%,Reunion,16.0,f +46175,100%,United Kingdom,1.0,t +26969,,,1.0,f +12247,100%,Maldives,33.0,f +44744,,Saint Helena,1.0,f +5110,,Grenada,1.0,f +4792,100%,Jersey,4.0,t +24284,,,1.0,f +26473,,Micronesia,2.0,f +26940,,Svalbard & Jan Mayen Islands,1.0,f +25977,100%,Slovakia (Slovak Republic),2.0,t +12854,,,1.0,t +7748,,,1.0,f +25666,100%,,1.0,f +3853,30%,Denmark,3.0,f +37269,100%,Estonia,1.0,f +36233,,,1.0,f +10855,100%,Niue,6.0,f +49754,100%,Tonga,4.0,f +10855,100%,Niue,6.0,f +10855,100%,Niue,6.0,f +10855,100%,Niue,6.0,f +24531,,Turkmenistan,1.0,f +27196,0%,Isle of Man,2.0,f +34007,100%,Kenya,2.0,f +28310,100%,Costa Rica,2.0,t +3284,100%,Kiribati,4.0,f +16603,,Tunisia,5.0,f +16603,,Tunisia,5.0,f +2075,100%,Croatia,1.0,f +37725,100%,Zimbabwe,1.0,f +11125,100%,Nicaragua,12.0,t +43601,100%,Denmark,1.0,t +463,100%,Niue,2.0,f +22721,100%,Ecuador,109.0,f +9902,100%,Gibraltar,2.0,t +13403,96%,Maldives,21.0,t +35396,,Mauritania,1.0,f +41546,100%,Mauritania,21.0,f +24026,98%,Cape Verde,69.0,t +19042,100%,Puerto Rico,1.0,f +43152,100%,Nicaragua,82.0,t +23375,,French Guiana,1.0,f +7552,,,2.0,f +47315,,Marshall Islands,1.0,f +14837,85%,Uzbekistan,1.0,t +2049,,Isle of Man,1.0,f +1840,,,1.0,f +26410,76%,,4.0,f +19655,100%,Tonga,13.0,t +9483,100%,,2.0,f +11255,93%,Suriname,41.0,f +37293,92%,Russian Federation,15.0,f +32203,100%,Barbados,176.0,f +27258,100%,,1.0,f +4133,90%,Maldives,6.0,f +44169,97%,Portugal,39.0,f +17385,100%,Micronesia,1.0,f +32203,100%,Barbados,176.0,f +41115,,,1.0,t +10711,93%,Uganda,108.0,t +24451,,Sao Tome and Principe,1.0,f +23854,,Uzbekistan,15.0,f +31956,100%,Uruguay,1.0,f +3503,100%,Ukraine,2.0,t +20306,100%,Brazil,1.0,f +1611,,Marshall Islands,1.0,f +39676,86%,Guinea,2.0,f +10315,,,1.0,f +1501,100%,Korea,1.0,f +42076,,,1.0,f +44995,,Mexico,1.0,f +21651,,,1.0,t +35439,94%,United Kingdom,23.0,t +11354,,Anguilla,1.0,f +5402,,Russian Federation,1.0,f +20036,100%,Guernsey,2.0,t +28497,,,1.0,t +11214,,United Kingdom,1.0,f +44169,97%,Portugal,39.0,f +34120,100%,French Guiana,3.0,t +14931,100%,Jersey,4.0,f +41679,,Bosnia and Herzegovina,1.0,t +37293,92%,Russian Federation,15.0,f +42458,97%,Indonesia,14.0,t +48321,100%,China,17.0,f +36658,94%,China,20.0,t +30855,100%,Turks and Caicos Islands,2.0,f +24067,,Mexico,3.0,t +25222,80%,Kenya,11.0,t +47610,100%,Uzbekistan,10.0,f +42748,,Papua New Guinea,2.0,t +46354,100%,Papua New Guinea,1.0,f +15122,100%,,2.0,f +20334,99%,Niger,171.0,t +12658,,,1.0,f +30580,97%,Montserrat,12.0,f +48208,100%,,2.0,f +21186,100%,Rwanda,2.0,t +18306,90%,Jersey,5.0,f +31865,,,1.0,f +32741,100%,Isle of Man,3.0,f +43576,100%,Guinea,2.0,t +7357,100%,Sao Tome and Principe,1.0,t +40386,100%,Nicaragua,4.0,t +29123,100%,Zimbabwe,16.0,t +38967,100%,,1.0,t +36403,100%,United Kingdom,1.0,t +6411,70%,Gambia,1.0,f +41480,100%,Pakistan,1.0,f +23919,,,1.0,f +38103,80%,Isle of Man,2.0,f +15430,,,2.0,t +13364,91%,Netherlands,21.0,f +4693,,,1.0,f +37488,100%,Croatia,10.0,t +1177,100%,Brazil,2.0,f +6894,80%,Estonia,47.0,t +42032,100%,Monaco,2.0,t +48718,,,1.0,f +45004,,,2.0,f +14677,,Marshall Islands,1.0,t +31416,100%,,2.0,f +34260,100%,United Kingdom,2.0,t +30580,97%,Montserrat,12.0,f +29661,,Togo,1.0,f +11874,100%,Jersey,1.0,f +2642,,Andorra,4.0,f +27196,0%,Isle of Man,2.0,f +39500,100%,Monaco,2.0,f +8173,100%,Barbados,2.0,t +24471,100%,Guinea,1.0,f +17222,,,1.0,f +31435,100%,Niue,1.0,f +42469,,,2.0,t +49061,,Niue,1.0,f +17717,,Russian Federation,2.0,f +31597,80%,,2.0,t +14404,100%,Niue,1.0,f +10807,100%,Indonesia,2.0,f +40546,100%,,1.0,t +12551,100%,Niger,3.0,f +23560,93%,,9.0,f +25673,,,1.0,f +6940,,Kenya,1.0,f +47248,100%,,1.0,f +25327,100%,Kiribati,4.0,f +42764,100%,Guernsey,13.0,t +25951,,France,1.0,t +47809,,Kenya,1.0,f +4992,,Kiribati,5.0,t +4992,,Kiribati,5.0,t +13364,91%,Netherlands,21.0,f +8003,100%,Uganda,1.0,f +15874,100%,Somalia,2.0,t +22144,,Anguilla,1.0,f +13364,91%,Netherlands,21.0,f +4992,,Kiribati,5.0,t +6347,100%,Kiribati,3.0,f +44172,,Tonga,1.0,t +21143,100%,Mexico,2.0,f +6232,,Guinea,15.0,t +856,,,1.0,t +7053,100%,Marshall Islands,2.0,f +35001,100%,Christmas Island,2.0,t +24835,,United Kingdom,2.0,t +24118,98%,Ghana,21.0,t +30506,,Lebanon,1.0,f +4330,94%,Ukraine,60.0,t +37750,,,1.0,f +46254,100%,Venezuela,4.0,f +42130,,Malawi,1.0,f +34656,,Estonia,1.0,f +5879,100%,Slovakia (Slovak Republic),2.0,f +6609,,,1.0,f +44301,100%,Uzbekistan,1.0,f +39245,,Guinea,1.0,f +20967,100%,Congo,3.0,t +22431,,,1.0,f +25771,100%,Monaco,1.0,f +31164,100%,,2.0,f +16487,100%,Micronesia,1.0,f +43496,100%,Montserrat,18.0,t +10521,100%,Egypt,3.0,t +21451,100%,,2.0,f +29647,100%,Peru,1305.0,f +32510,88%,Kiribati,1.0,f +38974,,Malawi,1.0,f +42004,67%,,2.0,t +32796,0%,Jersey,1.0,f +22597,,,1.0,f +20665,100%,,2.0,t +39944,,Lebanon,1.0,t +40082,,Brunei Darussalam,1.0,f +25631,100%,,1.0,f +3029,,Sao Tome and Principe,1.0,f +7238,100%,,1.0,f +18908,100%,,1.0,t +11706,100%,France,2.0,f +37488,100%,Croatia,10.0,t +30931,100%,Papua New Guinea,3.0,f +37488,100%,Croatia,10.0,t +37488,100%,Croatia,10.0,t +37488,100%,Croatia,10.0,t +37488,100%,Croatia,10.0,t +13641,85%,Mauritania,23.0,f +11978,90%,Denmark,3.0,f +4018,,,1.0,t +20665,100%,,2.0,t +47865,80%,,4.0,t +40663,,,1.0,f +5440,,Monaco,1.0,t +46353,,Mauritania,1.0,f +22629,,Malta,1.0,f +30698,,,1.0,f +16737,100%,Kiribati,1.0,t +4103,,,1.0,f +49905,,United Kingdom,2.0,t +12294,,,1.0,f +49717,,,1.0,f +9461,,,1.0,t +31202,90%,Kiribati,107.0,f +31202,90%,Kiribati,107.0,f +31202,90%,Kiribati,107.0,f +31202,90%,Kiribati,107.0,f +31202,90%,Kiribati,107.0,f +18269,86%,Fiji,12.0,f +2179,25%,Reunion,5.0,f +3956,,Lebanon,1.0,t +37153,100%,Monaco,3.0,t +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +25476,100%,Fiji,11.0,f +29647,100%,Peru,1305.0,f +44883,100%,Uzbekistan,2.0,t +31092,,Senegal,19.0,f +45453,100%,,1.0,f +10201,,,1.0,f +18442,100%,Reunion,5.0,t +20754,,China,13.0,f +4835,100%,Micronesia,1.0,f +29647,100%,Peru,1305.0,f +44883,100%,Uzbekistan,2.0,t +26175,100%,Russian Federation,4.0,t +828,,Mauritania,2.0,f +29647,100%,Peru,1305.0,f +5923,,,1.0,t +40448,,Estonia,1.0,f +8396,100%,Bouvet Island (Bouvetoya),1.0,t +34468,,,1.0,f +47770,100%,Jersey,2.0,f +44280,,Iraq,2.0,t +8616,53%,Canada,4.0,t +21087,50%,,1.0,t +11839,,Uganda,11.0,f +22548,,Nicaragua,1.0,t +3588,100%,Burkina Faso,2.0,f +5745,100%,,1.0,f +2657,,Netherlands Antilles,1.0,f +21345,,United Kingdom,1.0,f +20373,,Chile,1.0,f +28114,97%,Bouvet Island (Bouvetoya),16.0,f +35796,100%,Uzbekistan,1.0,f +23868,67%,,15.0,t +23868,67%,,15.0,t +18124,,Denmark,1.0,t +8884,67%,China,3.0,f +878,100%,Kiribati,3.0,t +36365,,Sao Tome and Principe,1.0,t +48720,,Kenya,1.0,f +29724,100%,,1.0,t +49292,,Denmark,1.0,f +27789,100%,,1.0,t +10628,,Kenya,1.0,f +47360,100%,,3.0,f +17394,0%,Nicaragua,49.0,f +24485,70%,Gibraltar,1.0,f +12247,100%,Maldives,33.0,f +36675,,,1.0,t +12247,100%,Maldives,33.0,f +40660,,,1.0,t +12938,92%,Reunion,12.0,f +26126,100%,Venezuela,3.0,t +1431,100%,Rwanda,1.0,f +2597,100%,Nicaragua,13.0,t +8221,,Costa Rica,1.0,f +38421,100%,Niue,1.0,f +783,100%,Svalbard & Jan Mayen Islands,12.0,t +2265,,Sao Tome and Principe,4.0,t +15189,79%,China,21.0,f +3079,,Estonia,1.0,f +24219,,United Kingdom,1.0,f +26978,100%,Croatia,1.0,f +17469,,Sao Tome and Principe,1.0,f +29315,100%,Brazil,6.0,f +48050,100%,,2.0,t +29344,,Ecuador,1.0,t +658,100%,Sao Tome and Principe,5.0,f +17417,,Denmark,11.0,f +4346,,China,2.0,t +10332,75%,Ecuador,2.0,t +4925,,,2.0,f +4925,,,2.0,f +2638,100%,Slovakia (Slovak Republic),1.0,f +30705,100%,Uruguay,2.0,f +18833,,Kiribati,1.0,f +21678,100%,Monaco,1.0,f +41298,,Kiribati,2.0,f +41337,100%,Maldives,5.0,f +28489,90%,Malta,5.0,t +9226,,Mauritania,5.0,f +23396,100%,Somalia,1.0,f +32543,100%,,2.0,t +20506,,Anguilla,2.0,f +45847,,Niue,1.0,f +36578,100%,Faroe Islands,3.0,t +20973,,Mexico,1.0,f +9693,100%,Vanuatu,8.0,f +14672,,Slovakia (Slovak Republic),1.0,t +41096,100%,,1.0,f +32264,,Maldives,1.0,t +48362,,,1.0,f +44840,100%,,2.0,t +26027,100%,,1.0,f +3980,100%,Barbados,1.0,f +46394,100%,Estonia,1.0,f +19455,100%,Micronesia,2.0,f +26626,100%,Brunei Darussalam,1.0,f +9410,100%,,1.0,f +40421,96%,Jersey,29.0,t +28498,100%,Kiribati,1.0,f +29647,100%,Peru,1305.0,f +10020,90%,China,5.0,f +1211,100%,Mexico,2.0,t +6495,89%,Tonga,34.0,f +502,,,2.0,f +18459,100%,Zimbabwe,100.0,f +35578,,United Kingdom,1.0,f +9775,100%,Ecuador,1.0,f +29647,100%,Peru,1305.0,f +45441,100%,Mauritania,1.0,f +18459,100%,Zimbabwe,100.0,f +18459,100%,Zimbabwe,100.0,f +45065,80%,,3.0,f +36012,100%,,8.0,f +41389,,,1.0,t +45065,80%,,3.0,f +25658,,Nicaragua,1.0,f +4425,,,1.0,f +7834,94%,Mexico,13.0,f +22272,,,1.0,t +28766,100%,Estonia,16.0,f +36359,,,1.0,f +28766,100%,Estonia,16.0,f +39892,100%,Tonga,31.0,t +43614,,El Salvador,1.0,f +19356,,,1.0,f +28766,100%,Estonia,16.0,f +7028,100%,Fiji,4.0,t +11599,75%,,4.0,f +11677,100%,,8.0,f +1836,100%,Isle of Man,1.0,f +46372,100%,Northern Mariana Islands,7.0,t +1835,100%,Ecuador,8.0,f +13575,,,2.0,t +2429,100%,Tonga,6.0,f +9543,100%,,1.0,f +43244,100%,France,2.0,t +22603,100%,,1.0,f +44076,,Uganda,1.0,t +39615,,Niue,2.0,f +38832,97%,,15.0,f +25818,,Lebanon,1.0,f +25992,,Uganda,3.0,f +25760,,Zimbabwe,1.0,t +25992,,Uganda,3.0,f +25992,,Uganda,3.0,f +28114,97%,Bouvet Island (Bouvetoya),16.0,f +46212,100%,China,4.0,f +17306,92%,Micronesia,4.0,t +41489,,,1.0,f +24116,,,1.0,f +32776,,Croatia,1.0,f +31425,,Kiribati,1.0,f +32656,,Kenya,5.0,f +27263,80%,China,5.0,f +35970,100%,,1.0,f +2012,,Ecuador,1.0,f +49288,90%,,1.0,f +4325,,United Kingdom,1.0,f +47633,100%,Reunion,4.0,t +49853,100%,Lithuania,1.0,f +49762,100%,China,1.0,f +3050,,Nauru,1.0,f +29432,50%,,1.0,f +23670,100%,Tonga,1.0,f +36635,100%,Indonesia,10.0,f +14687,100%,Malawi,1.0,t +41879,,Anguilla,1.0,f +26939,100%,Philippines,6.0,f +33379,100%,,1.0,f +39143,89%,,33.0,f +45065,80%,,3.0,f +49888,,,1.0,f +39143,89%,,33.0,f +20731,100%,,2.0,f +42013,,Guinea,16.0,t +8055,100%,Niue,1.0,t +42013,,Guinea,16.0,t +38855,100%,,1.0,f +32283,,,1.0,t +22086,,,1.0,f +8057,,,1.0,f +32830,,Costa Rica,1.0,f +15537,100%,Cocos (Keeling) Islands,2.0,f +10711,93%,Uganda,108.0,t +25650,90%,Monaco,3.0,f +49962,,Isle of Man,2.0,f +211,,Russian Federation,1.0,t +1329,,Barbados,1.0,f +41032,100%,Peru,1.0,f +12247,100%,Maldives,33.0,f +38045,97%,Uzbekistan,7.0,f +12247,100%,Maldives,33.0,f +8214,100%,,3.0,f +1177,100%,Brazil,2.0,f +37846,100%,,1.0,t +26361,100%,Vanuatu,3.0,f +40352,100%,,2.0,t +6232,,Guinea,15.0,t +20754,,China,13.0,f +19546,100%,Brazil,1.0,f +43256,,Micronesia,3.0,f +3110,,Uzbekistan,2.0,f +2852,100%,Isle of Man,1.0,f +33387,100%,Gibraltar,1.0,t +23970,100%,Cocos (Keeling) Islands,1.0,t +39639,100%,Niue,19.0,f +26148,100%,Kiribati,10.0,t +39639,100%,Niue,19.0,f +356,99%,Wallis and Futuna,32.0,t +39639,100%,Niue,19.0,f +17151,100%,Zimbabwe,2.0,f +26473,,Micronesia,2.0,f +13834,,Kiribati,9.0,f +40767,,Lebanon,1.0,f +35050,100%,Sao Tome and Principe,1.0,f +33435,100%,Tonga,1.0,f +41022,100%,Cape Verde,3.0,t +9615,,Russian Federation,1.0,f +11271,100%,,2.0,f +18490,,,1.0,f +20153,96%,Reunion,51.0,f +41098,,Chad,1.0,f +23844,100%,Vanuatu,1.0,f +32348,100%,Tunisia,1.0,t +16086,,Zimbabwe,1.0,t +19567,,,2.0,f +47145,100%,Kenya,2.0,f +44890,95%,Wallis and Futuna,9.0,t +38045,97%,Uzbekistan,7.0,f +39450,,,1.0,f +23026,,,1.0,f +4417,100%,Niue,1.0,f +29099,100%,,1.0,t +26148,100%,Kiribati,10.0,t +12668,100%,,1.0,t +41313,100%,Denmark,10.0,t +10301,,,1.0,t +44945,90%,Marshall Islands,4.0,t +28828,100%,Isle of Man,198.0,t +28828,100%,Isle of Man,198.0,t +34270,100%,Australia,2.0,f +39921,100%,Barbados,2.0,t +26601,100%,,1.0,t +19340,100%,San Marino,2.0,f +31617,,Tonga,1.0,f +45043,100%,Chad,10.0,f +7876,100%,,4.0,t +12466,,Maldives,2.0,f +10892,,Uganda,1.0,f +49624,,Chad,1.0,t +38656,100%,Mauritania,8.0,f +25627,,Tunisia,1.0,f +23128,,,1.0,f +13573,100%,Gibraltar,4.0,t +44367,91%,Brazil,12.0,f +12580,,Niger,1.0,f +26247,100%,,1.0,f +25580,,Faroe Islands,1.0,f +46918,100%,Sao Tome and Principe,5.0,f +20754,,China,13.0,f +20754,,China,13.0,f +6669,,Malawi,1.0,t +34577,,Monaco,1.0,f +5043,100%,,1.0,f +24812,100%,,1.0,t +10263,100%,,3.0,t +23760,70%,,1.0,t +4140,,,3.0,f +31201,50%,,2.0,f +35004,,,1.0,f +1746,50%,Puerto Rico,3.0,f +34258,,Vietnam,7.0,t +38538,100%,,5.0,f +38538,100%,,5.0,f +13452,,Guinea,1.0,f +16574,,,1.0,f +48455,89%,Uzbekistan,20.0,t +35442,,Russian Federation,14.0,f +41796,100%,Kiribati,1.0,t +33481,50%,Portugal,1.0,t +18877,100%,Isle of Man,3.0,t +32740,100%,Vanuatu,2.0,t +33131,,Isle of Man,1.0,f +36840,,Cape Verde,2.0,t +22397,100%,Lebanon,2.0,t +20094,100%,Cocos (Keeling) Islands,2.0,f +21253,0%,Guinea,1.0,f +27536,100%,Jersey,1.0,f +43887,,,1.0,t +38896,,,1.0,f +31133,90%,Montserrat,2.0,t +25008,,Tonga,3.0,t +21443,,Monaco,1.0,f +45150,100%,,1.0,t +10502,93%,Indonesia,9.0,f +12003,100%,Uganda,8.0,t +22217,,Tonga,1.0,f +41897,100%,Niue,1.0,f +10502,93%,Indonesia,9.0,f +40492,,,1.0,f +30705,100%,Uruguay,2.0,f +38736,80%,Zimbabwe,2.0,f +3778,100%,Lebanon,1.0,t +6728,,Vietnam,3.0,t +25788,100%,Faroe Islands,1.0,f +42415,,,1.0,t +10318,,Guernsey,1.0,t +4973,100%,Nicaragua,1.0,f +13564,,,1.0,f +23494,100%,Philippines,2.0,t +43975,,,2.0,f +40597,,Russian Federation,1.0,f +3955,,,1.0,f +49337,,Anguilla,1.0,f +26148,100%,Kiribati,10.0,t +45260,94%,,19.0,f +36524,100%,Saint Helena,8.0,t +16808,100%,Niue,1.0,f +40752,100%,Tunisia,5.0,t +42255,100%,Russian Federation,1.0,f +20108,100%,Marshall Islands,2.0,f +9630,100%,,13.0,f +18716,,Sao Tome and Principe,1.0,f +10405,,,1.0,f +11567,100%,Niger,31.0,t +14598,,Jersey,2.0,t +35218,100%,Turkmenistan,2.0,f +31718,100%,France,6.0,f +25680,100%,,1.0,f +37876,,,1.0,f +15608,90%,,1.0,f +4446,100%,Uganda,58.0,f +4446,100%,Uganda,58.0,f +8803,100%,,1.0,f +43782,83%,Costa Rica,1.0,f +42231,,Lebanon,1.0,f +853,100%,Greenland,2.0,f +13576,100%,Uzbekistan,1.0,t +5486,100%,Svalbard & Jan Mayen Islands,12.0,f +17394,0%,Nicaragua,49.0,f +2644,100%,Zimbabwe,11.0,t +7494,100%,Micronesia,2.0,f +20604,,China,1.0,f +20935,100%,Gambia,2.0,f +9649,100%,Togo,2.0,t +8609,,,1.0,f +25184,100%,Denmark,1.0,t +3976,,Vanuatu,1.0,t +3944,,,1.0,t +17071,,Kiribati,1.0,f +20421,100%,Guinea,1.0,f +28312,100%,Lebanon,2.0,t +4263,,Bahrain,1.0,t +9302,100%,,1.0,t +5437,98%,Reunion,4.0,f +49681,,France,2.0,f +31277,,Cocos (Keeling) Islands,3.0,f +34157,100%,,2.0,f +48371,100%,,2.0,f +27811,100%,Ukraine,4.0,t +44169,97%,Portugal,39.0,f +46507,,Costa Rica,1.0,f +13870,100%,,1.0,t +23693,100%,Sao Tome and Principe,1.0,f +8496,,Togo,1.0,f +19943,63%,Isle of Man,34.0,f +12164,100%,Nicaragua,8.0,f +42775,,Rwanda,2.0,t +31707,100%,Niger,48.0,f +15752,100%,Bouvet Island (Bouvetoya),2.0,f +50048,,Papua New Guinea,1.0,f +39620,,,1.0,f +11599,75%,,4.0,f +853,100%,Greenland,2.0,f +640,,Chile,1.0,f +4446,100%,Uganda,58.0,f +34832,80%,Sao Tome and Principe,7.0,t +27774,78%,Vietnam,15.0,f +5833,,Niue,1.0,t +48998,,Anguilla,1.0,f +36012,100%,,8.0,f +5669,100%,Kiribati,1.0,t +17656,100%,Monaco,1.0,f +36012,100%,,8.0,f +30264,,,2.0,f +36012,100%,,8.0,f +25934,100%,Estonia,7.0,f +36012,100%,,8.0,f +20652,100%,Sao Tome and Principe,2.0,f +13079,100%,Afghanistan,1.0,f +31579,,United Kingdom,2.0,t +45792,,Svalbard & Jan Mayen Islands,1.0,t +14819,100%,Barbados,3.0,f +14552,,Turkmenistan,1.0,f +14574,100%,,1.0,f +22415,50%,,3.0,f +10711,93%,Uganda,108.0,t +5233,100%,Montserrat,6.0,t +4928,50%,Malta,1.0,f +49290,,,1.0,f +23430,100%,Reunion,16.0,f +36012,100%,,8.0,f +43895,100%,,1.0,f +18544,,Netherlands Antilles,1.0,t +7007,,Denmark,1.0,f +29535,100%,El Salvador,1.0,f +7392,,,1.0,t +39538,,Greenland,3.0,f +47894,100%,Turks and Caicos Islands,3.0,f +32867,,,1.0,f +3538,,,1.0,f +43530,90%,Russian Federation,2.0,t +43820,100%,,1.0,t +20297,80%,Montserrat,17.0,f +34666,,Indonesia,1.0,f +30542,,Gibraltar,1.0,f +19682,100%,Faroe Islands,15.0,t +20297,80%,Montserrat,17.0,f +8787,,Micronesia,5.0,f +9903,100%,Kiribati,3.0,f +20297,80%,Montserrat,17.0,f +35482,100%,,2.0,f +11838,100%,Somalia,1.0,t +43176,86%,Guinea,3.0,f +2694,,Afghanistan,1.0,f +13811,100%,,1.0,f +19951,88%,Vanuatu,10.0,f +7323,100%,Nauru,2.0,t +1688,,,1.0,t +44169,97%,Portugal,39.0,f +33654,,,1.0,f +16729,,,1.0,t +37488,100%,Croatia,10.0,t +37488,100%,Croatia,10.0,t +39770,,Micronesia,1.0,t +8081,,,1.0,t +9758,100%,Guinea,2.0,f +13292,100%,Marshall Islands,1.0,f +39116,50%,,1.0,f +44169,97%,Portugal,39.0,f +16586,,French Guiana,2.0,f +48902,,Guinea,1.0,f +2581,,Jersey,1.0,f +22331,99%,Rwanda,50.0,t +16975,100%,Afghanistan,1.0,f +6894,80%,Estonia,47.0,t +2879,100%,Philippines,1.0,f +602,,Montserrat,1.0,f +46743,,Kenya,1.0,f +32654,90%,,1.0,f +19487,100%,Cocos (Keeling) Islands,2.0,f +22721,100%,Ecuador,109.0,f +35555,67%,,2.0,f +2136,,Turkmenistan,1.0,t +17785,,Micronesia,1.0,f +22945,,,1.0,f +824,100%,Russian Federation,1.0,f +37053,,Uzbekistan,1.0,f +45828,90%,Togo,9.0,f +42962,,Senegal,1.0,f +47274,100%,Tonga,48.0,f +18863,90%,Estonia,9.0,f +7592,98%,,13.0,t +11493,,,1.0,f +27152,100%,Kenya,4.0,f +46872,100%,Nicaragua,9.0,f +4228,,Niger,11.0,f +28282,100%,,2.0,f +39071,,Uzbekistan,1.0,f +826,95%,Wallis and Futuna,2.0,f +46303,,Kenya,2.0,t +7516,100%,,1.0,f +15004,100%,Uzbekistan,88.0,f +45328,97%,Kiribati,10.0,f +9640,100%,Denmark,2.0,t +44408,100%,Peru,3.0,f +41285,,Svalbard & Jan Mayen Islands,1.0,f +25327,100%,Kiribati,4.0,f +45003,100%,Nauru,1.0,f +29978,89%,Uzbekistan,26.0,f +7592,98%,,13.0,t +29978,89%,Uzbekistan,26.0,f +9269,,,2.0,t +3932,100%,Uzbekistan,2.0,f +436,,,1.0,f +39720,100%,,1.0,f +29791,,,4.0,f +32512,100%,Saint Helena,9.0,f +21512,,Zimbabwe,1.0,t +42710,100%,Niger,1.0,f +33828,50%,Niue,1.0,t +47980,,Denmark,1.0,f +19866,,Maldives,2.0,f +45702,,,1.0,t +13333,100%,Gibraltar,1.0,f +21980,100%,Sao Tome and Principe,5.0,t +46098,,,1.0,f +488,100%,Maldives,18.0,f +45546,100%,Cape Verde,19.0,t +39892,100%,Tonga,31.0,t +29647,100%,Peru,1305.0,f +9787,100%,Kiribati,2.0,f +31202,90%,Kiribati,107.0,f +31202,90%,Kiribati,107.0,f +14098,,Guinea,1.0,f +34201,,Uzbekistan,1.0,f +3218,100%,Zimbabwe,6.0,f +20297,80%,Montserrat,17.0,f +31092,,Senegal,19.0,f +26709,100%,Russian Federation,2.0,f +43442,,Niue,1.0,f +27573,,Chad,1.0,f +25314,100%,Holy See (Vatican City State),1.0,f +43176,86%,Guinea,3.0,f +31092,,Senegal,19.0,f +11502,,,1.0,t +10711,93%,Uganda,108.0,t +12878,0%,Croatia,2.0,t +21865,100%,,3.0,t +20444,100%,,1.0,f +9091,100%,Cocos (Keeling) Islands,1.0,f +9179,,Tunisia,1.0,t +26960,100%,Guinea,2.0,f +34745,,,1.0,f +11271,100%,,2.0,f +14588,100%,Nicaragua,1.0,f +13514,,Lebanon,1.0,t +40078,100%,Croatia,7.0,t +25690,80%,,1.0,f +14987,100%,,1.0,t +34895,100%,Estonia,16.0,t +25494,,Afghanistan,1.0,t +12233,,Lithuania,1.0,f +25934,100%,Estonia,7.0,f +25934,100%,Estonia,7.0,f +44109,100%,United Kingdom,20.0,f +44109,100%,United Kingdom,20.0,f +39699,100%,Vanuatu,1.0,f +44109,100%,United Kingdom,20.0,f +36697,,,1.0,t +44109,100%,United Kingdom,20.0,f +26710,100%,Tanzania,1.0,t +47389,100%,Cocos (Keeling) Islands,1.0,t +38973,100%,,1.0,f +12334,100%,Micronesia,1.0,t +45828,90%,Togo,9.0,f +19602,100%,Lithuania,24.0,f +34129,,China,1.0,f +9424,100%,Peru,1.0,f +43924,,,1.0,t +15004,100%,Uzbekistan,88.0,f +4856,100%,Philippines,5.0,f +15004,100%,Uzbekistan,88.0,f +45484,,Chile,3.0,f +41484,89%,Anguilla,23.0,f +1598,,,1.0,t +47602,97%,Puerto Rico,18.0,f +8225,95%,Barbados,31.0,f +48973,100%,Tonga,6.0,f +48095,100%,,1.0,f +28305,,,4.0,f +40722,,Maldives,2.0,f +39967,100%,Switzerland,1.0,f +43550,100%,Rwanda,16.0,t +16252,100%,,1.0,f +4803,100%,Fiji,5.0,t +37194,,,2.0,f +42099,,,1.0,f +22321,100%,United Kingdom,16.0,f +7027,100%,Gibraltar,1.0,f +28021,83%,Isle of Man,2.0,f +48257,100%,Kiribati,5.0,t +4163,,,1.0,f +48257,100%,Kiribati,5.0,t +45737,,Tonga,29.0,t +24657,100%,,1.0,f +3441,,,1.0,f +3298,100%,,1.0,f +28046,100%,Cape Verde,5.0,f +48484,80%,Faroe Islands,3.0,f +44425,,Cocos (Keeling) Islands,1.0,t +43639,,,1.0,f +8919,,Lebanon,1.0,t +45276,100%,France,4.0,t +21787,100%,Uganda,2.0,f +33358,,,1.0,t +30228,100%,Rwanda,1.0,t +40679,100%,,1.0,f +18847,,Faroe Islands,1.0,f +8666,50%,,2.0,t +45276,100%,France,4.0,t +41264,,Indonesia,1.0,f +12804,100%,Peru,1.0,f +30926,100%,French Guiana,1.0,t +11464,100%,Papua New Guinea,11.0,f +48503,90%,Sao Tome and Principe,5.0,t +30199,,,1.0,f +9786,,Sao Tome and Principe,1.0,f +8022,100%,France,1.0,f +8594,100%,Greenland,1.0,f +37875,100%,Brazil,2.0,t +35832,,Lebanon,3.0,t +47880,100%,Micronesia,1.0,f +36679,,,1.0,t +7878,,,1.0,t +35246,100%,,2.0,f +49260,,Lebanon,1.0,t +27138,100%,Svalbard & Jan Mayen Islands,1.0,f +13803,,,1.0,f +7626,100%,Tanzania,2.0,f +12120,100%,Zimbabwe,2.0,f +48984,,Egypt,2.0,t +11926,,Tonga,4.0,t +33879,,France,1.0,f +37993,100%,,1.0,t +15554,,Lebanon,2.0,f +24689,,,1.0,f +37712,,Zimbabwe,1.0,t +18353,100%,Barbados,1.0,f +2671,100%,Uzbekistan,2.0,t +27545,,,1.0,f +27598,,,1.0,f +30353,100%,Faroe Islands,1.0,f +15231,100%,United Kingdom,5.0,f +9913,70%,Somalia,2.0,t +34639,100%,,1.0,f +48175,50%,,1.0,t +20053,100%,,1.0,f +44844,100%,Chad,1.0,f +33429,,Russian Federation,2.0,f +11922,,,2.0,f +48937,88%,Estonia,3.0,t +31101,100%,Finland,1.0,t +609,,Niue,1.0,f +31751,100%,Nicaragua,29.0,f +30450,100%,Sao Tome and Principe,1.0,f +15691,,Finland,1.0,t +24775,97%,Montserrat,44.0,f +15231,100%,United Kingdom,5.0,f +23313,100%,,2.0,f +15231,100%,United Kingdom,5.0,f +15231,100%,United Kingdom,5.0,f +33897,,,1.0,f +18320,50%,Reunion,19.0,t +48937,88%,Estonia,3.0,t +16032,100%,Uzbekistan,2.0,f +38016,100%,,1.0,t +34983,,,1.0,f +6529,,Kenya,2.0,f +28828,100%,Isle of Man,198.0,t +7716,100%,,1.0,f +33189,,French Guiana,1.0,f +40356,80%,Estonia,2.0,f +34895,100%,Estonia,16.0,t +17740,100%,,2.0,t +31751,100%,Nicaragua,29.0,f +30238,100%,Chile,1.0,t +18201,,Kiribati,5.0,f +18201,,Kiribati,5.0,f +18201,,Kiribati,5.0,f +24160,100%,,3.0,t +3026,100%,,1.0,f +12591,100%,Maldives,4.0,t +30995,,,7.0,f +21239,100%,Denmark,1.0,f +22378,80%,,2.0,f +37042,100%,Uganda,1.0,f +20120,100%,Wallis and Futuna,10.0,f +31751,100%,Nicaragua,29.0,f +4646,100%,Maldives,8.0,f +25678,100%,,1.0,f +48430,,Isle of Man,2.0,f +23762,,Kenya,2.0,f +23654,100%,Uzbekistan,23.0,f +23654,100%,Uzbekistan,23.0,f +766,100%,Cape Verde,2.0,f +5812,,,1.0,f +30795,100%,Micronesia,1.0,f +16318,0%,,1.0,f +16665,80%,,1.0,t +38407,100%,Guernsey,2.0,t +39109,77%,Ukraine,24.0,t +516,,,1.0,t +23654,100%,Uzbekistan,23.0,f +3930,100%,Chad,1.0,f +31718,100%,France,6.0,f +3564,100%,Russian Federation,3.0,f +28791,,,1.0,f +13364,91%,Netherlands,21.0,f +29647,100%,Peru,1305.0,f +33523,100%,Venezuela,2.0,f +44532,0%,Micronesia,1.0,f +6181,100%,Zimbabwe,4.0,f +26960,100%,Guinea,2.0,f +3019,100%,Barbados,18.0,f +43065,100%,,2.0,f +4095,76%,Congo,1.0,t +26777,100%,Puerto Rico,1.0,f +40982,94%,Bahrain,5.0,t +15189,79%,China,21.0,f +13216,,Niue,1.0,t +24567,90%,Costa Rica,2.0,f +32527,100%,Tonga,7.0,f +10039,100%,Vanuatu,6.0,t +23305,100%,Philippines,11.0,f +38538,100%,,5.0,f +38445,,Marshall Islands,1.0,f +16008,100%,,1.0,t +48716,,,3.0,f +36578,100%,Faroe Islands,3.0,t +49102,,,1.0,t +13118,70%,,2.0,f +19994,100%,Saint Helena,5.0,f +14849,67%,,1.0,f +37050,,,1.0,t +34010,,,1.0,f +37394,,,1.0,t +44650,67%,Jersey,1.0,f +23300,100%,Russian Federation,1.0,f +14535,88%,Montserrat,18.0,f +37801,90%,,2.0,f +28510,,,1.0,f +14712,100%,Micronesia,1.0,f +18094,50%,,1.0,f +18413,91%,,4.0,f +4847,100%,Indonesia,3.0,t +4974,,,1.0,t +13825,100%,Cocos (Keeling) Islands,2.0,f +26148,100%,Kiribati,10.0,t +16348,100%,,1.0,t +16360,,,2.0,f +10202,89%,Nicaragua,10.0,f +25911,,,1.0,f +10429,,Netherlands,1.0,f +838,100%,Cocos (Keeling) Islands,1.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +18088,100%,Marshall Islands,3.0,t +44765,100%,Guinea,1.0,t +29647,100%,Peru,1305.0,f +23176,,Guernsey,2.0,f +6730,100%,Brazil,1.0,f +29211,100%,Malta,3.0,f +21572,100%,Gibraltar,2.0,t +29647,100%,Peru,1305.0,f +35676,80%,Uganda,2.0,t +15966,100%,Guinea,1.0,f +391,,,1.0,f +38538,100%,,5.0,f +48657,,Russian Federation,1.0,f +28880,100%,Venezuela,1.0,f +15317,,,1.0,t +7162,100%,,1.0,f +18957,,Kenya,1.0,f +12040,,China,1.0,t +10399,,Micronesia,1.0,f +46554,100%,,1.0,f +7406,,,1.0,f +35600,,,1.0,t +26692,,Niue,1.0,f +19741,,China,1.0,f +39615,,Niue,2.0,f +47868,,Uzbekistan,1.0,f +10018,,,1.0,t +47936,100%,Mauritania,2.0,f +42964,,,1.0,f +37823,100%,Gambia,3.0,f +2361,,,3.0,f +13364,91%,Netherlands,21.0,f +18078,100%,Montserrat,13.0,t +16404,100%,San Marino,2.0,f +29747,,Micronesia,2.0,t +11186,,Somalia,1.0,f +8134,,Uzbekistan,1.0,f +15519,100%,,2.0,t +2361,,,3.0,f +27213,99%,Jersey,7.0,t +28645,,El Salvador,1.0,f +23868,67%,,15.0,t +23868,67%,,15.0,t +4525,98%,El Salvador,9.0,t +34426,100%,,1.0,f +20120,100%,Wallis and Futuna,10.0,f +13984,,Brazil,1.0,t +29217,,Anguilla,3.0,t +14481,,Mexico,1.0,f +42257,,Nicaragua,1.0,f +10164,,,1.0,t +40689,100%,Cuba,23.0,f +32446,33%,,2.0,f +35691,,,1.0,t +28473,,Zimbabwe,1.0,t +24613,,Niue,1.0,f +20297,80%,Montserrat,17.0,f +41307,100%,Lithuania,1.0,f +38090,100%,Vanuatu,1.0,f +40465,,,1.0,f +5113,100%,Suriname,1.0,f +34299,,,1.0,f +2769,100%,Maldives,4.0,f +4856,100%,Philippines,5.0,f +7264,100%,Philippines,9.0,f +49007,,Chile,1.0,f +33899,100%,Tanzania,2.0,f +16520,100%,Marshall Islands,22.0,f +44623,,Micronesia,1.0,f +30354,,Gibraltar,1.0,f +2248,,,5.0,f +23057,,France,16.0,t +49330,100%,Indonesia,1.0,f +26011,,,1.0,t +12756,100%,Marshall Islands,1.0,f +15702,80%,Greenland,2.0,f +33873,100%,Turks and Caicos Islands,8.0,t +28198,100%,,1.0,f +40036,,,2.0,f +24743,,Kenya,2.0,f +5620,,Mauritania,3.0,t +11352,60%,Russian Federation,1.0,f +6530,,Nicaragua,1.0,f +40238,100%,Denmark,1.0,f +33539,,,3.0,f +49435,100%,Marshall Islands,6.0,t +44169,97%,Portugal,39.0,f +13490,100%,French Guiana,2.0,f +39156,100%,Nicaragua,1.0,f +1767,100%,,1.0,f +35531,100%,Dominica,3.0,t +2524,100%,Costa Rica,4.0,t +11567,100%,Niger,31.0,t +24026,98%,Cape Verde,69.0,t +135,100%,Niue,1.0,f +3611,,,1.0,f +44945,90%,Marshall Islands,4.0,t +13127,100%,Niger,22.0,f +44191,100%,,3.0,f +11567,100%,Niger,31.0,t +43236,,,1.0,f +46195,89%,Maldives,6.0,t +23430,100%,Reunion,16.0,f +36134,,China,1.0,f +13127,100%,Niger,22.0,f +31092,,Senegal,19.0,f +20789,98%,Sao Tome and Principe,13.0,f +10711,93%,Uganda,108.0,t +29647,100%,Peru,1305.0,f +48077,,Bosnia and Herzegovina,2.0,f +29647,100%,Peru,1305.0,f +2769,100%,Maldives,4.0,f +7834,94%,Mexico,13.0,f +30790,,Reunion,2.0,f +29647,100%,Peru,1305.0,f +11464,100%,Papua New Guinea,11.0,f +43568,100%,Sao Tome and Principe,5.0,t +2769,100%,Maldives,4.0,f +31707,100%,Niger,48.0,f +6106,100%,Tonga,2.0,t +31480,50%,French Guiana,2.0,t +5747,100%,Zimbabwe,2.0,f +9515,,Guinea,1.0,t +13127,100%,Niger,22.0,f +37275,90%,Rwanda,3.0,f +27423,100%,,3.0,t +45846,86%,Montserrat,1.0,f +20580,,,1.0,f +16404,100%,San Marino,2.0,f +47775,100%,French Guiana,6.0,f +5142,50%,,1.0,f +6140,100%,Marshall Islands,3.0,f +2931,100%,,1.0,f +18707,100%,Jersey,3.0,f +6199,,Marshall Islands,1.0,f +44729,,,1.0,f +4226,100%,Finland,2.0,t +1049,100%,Sao Tome and Principe,1.0,f +26419,100%,Barbados,6.0,f +30417,100%,,1.0,f +5593,100%,Indonesia,2.0,f +11788,100%,,2.0,t +72,,Sao Tome and Principe,1.0,f +41379,100%,France,2.0,t +8225,95%,Barbados,31.0,f +1495,100%,Guernsey,1.0,f +9992,,Guernsey,1.0,f +1555,,,1.0,f +44966,100%,Guinea,21.0,f +12938,92%,Reunion,12.0,f +28719,100%,Russian Federation,4.0,t +44966,100%,Guinea,21.0,f +14016,,Turkmenistan,3.0,t +31231,,,1.0,t +46556,,Ecuador,1.0,f +47274,100%,Tonga,48.0,f +15872,100%,Tonga,6.0,t +17787,,Kenya,2.0,t +978,95%,Lithuania,29.0,f +18890,100%,,1.0,f +24419,,Malawi,2.0,f +44488,100%,Bahrain,1.0,f +15872,100%,Tonga,6.0,t +15872,100%,Tonga,6.0,t +38801,100%,,1.0,t +40944,100%,,1.0,t +29647,100%,Peru,1305.0,f +47602,97%,Puerto Rico,18.0,f +10998,,,1.0,f +1843,90%,Chad,1.0,f +26514,99%,Vietnam,10.0,f +31444,100%,Reunion,25.0,f +47602,97%,Puerto Rico,18.0,f +34678,89%,Croatia,4.0,t +34837,,,1.0,f +47602,97%,Puerto Rico,18.0,f +34925,100%,Maldives,1.0,f +21091,,Guinea,1.0,t +16597,100%,Ghana,1.0,f +31751,100%,Nicaragua,29.0,f +6232,,Guinea,15.0,t +27213,99%,Jersey,7.0,t +48789,,,1.0,f +6509,,,1.0,f +15355,90%,Lebanon,2.0,f +45467,,Sao Tome and Principe,1.0,t +45276,100%,France,4.0,t +31594,100%,Philippines,19.0,t +17846,75%,Brazil,1.0,f +49229,,Turkmenistan,1.0,t +46990,100%,,1.0,f +45011,,,1.0,f +46234,100%,Sao Tome and Principe,3.0,f +38621,100%,Tanzania,1.0,f +46118,100%,Nicaragua,11.0,f +37424,50%,Sao Tome and Principe,1.0,f +42786,,Nicaragua,1.0,t +47838,100%,,1.0,f +45000,100%,Montserrat,10.0,t +18841,,,1.0,t +35026,,Estonia,7.0,f +10711,93%,Uganda,108.0,t +909,100%,Croatia,18.0,t +4986,100%,Afghanistan,15.0,f +39806,100%,Anguilla,1.0,f +25448,100%,,2.0,f +30682,100%,Mauritania,2.0,f +27512,100%,Somalia,1.0,f +40464,100%,,1.0,f +19958,100%,Congo,40.0,t +9164,100%,Kenya,1.0,f +10268,,,4.0,t +38927,100%,Sao Tome and Principe,3.0,f +6011,100%,Cuba,1.0,f +10268,,,4.0,t +42463,,Lebanon,1.0,f +29211,100%,Malta,3.0,f +29211,100%,Malta,3.0,f +33252,100%,,1.0,t +34617,29%,Russian Federation,3.0,f +4269,,,1.0,f +37924,100%,Niger,2.0,f +26924,100%,Zimbabwe,3.0,f +44109,100%,United Kingdom,20.0,f +42492,,Isle of Man,1.0,f +44109,100%,United Kingdom,20.0,f +37500,100%,Turks and Caicos Islands,1.0,f +15929,,Rwanda,1.0,f +4330,94%,Ukraine,60.0,t +5640,100%,Niue,1.0,t +37468,,Uganda,1.0,t +27686,100%,Nicaragua,1.0,f +47911,,Maldives,1.0,f +5333,100%,,1.0,f +39879,80%,Guinea,2.0,t +44169,97%,Portugal,39.0,f +39998,100%,Micronesia,4.0,t +1714,100%,Costa Rica,3.0,f +3946,96%,Anguilla,4.0,t +45328,97%,Kiribati,10.0,f +21427,100%,United Kingdom,8.0,t +18866,0%,,1.0,f +43746,,France,1.0,f +49832,100%,Bouvet Island (Bouvetoya),1.0,f +21240,94%,Niger,130.0,f +19861,67%,Togo,1.0,f +44169,97%,Portugal,39.0,f +16186,,Cuba,1.0,f +16241,100%,Greenland,2.0,f +25403,,,1.0,t +25152,100%,Gambia,4.0,t +19628,,Lebanon,1.0,f +16089,83%,Maldives,5.0,f +45328,97%,Kiribati,10.0,f +28630,,,2.0,t +20705,,,1.0,f +38927,100%,Sao Tome and Principe,3.0,f +44169,97%,Portugal,39.0,f +42934,,Faroe Islands,1.0,t +12442,,,1.0,t +24489,100%,,1.0,f +16796,,Faroe Islands,2.0,t +32027,,Turkmenistan,2.0,t +36144,,Congo,1.0,f +46053,100%,Gambia,1.0,t +2,,Uzbekistan,1.0,t +11672,100%,Kiribati,6.0,t +25526,100%,Kiribati,3.0,f +28663,,,1.0,f +25550,100%,Nicaragua,8.0,t +1021,100%,Jersey,1.0,f +16402,,Uzbekistan,1.0,f +20670,,Gambia,1.0,t +21194,,,1.0,f +22135,100%,Tunisia,1.0,f +32680,,,1.0,t +46368,,Chile,1.0,f +11522,100%,Andorra,1.0,f +9550,,,1.0,f +13486,,,2.0,f +20993,,Kiribati,1.0,f +14569,100%,,1.0,f +27599,,Nauru,1.0,f +18748,,Turks and Caicos Islands,1.0,f +10833,100%,Turkmenistan,4.0,f +10833,100%,Turkmenistan,4.0,f +10833,100%,Turkmenistan,4.0,f +19943,63%,Isle of Man,34.0,f +19943,63%,Isle of Man,34.0,f +43134,100%,Suriname,6.0,f +36726,94%,Mexico,6.0,f +9354,100%,Spain,12.0,f +27913,,Puerto Rico,1.0,t +31547,50%,Monaco,1.0,f +10805,,Niue,1.0,f +27684,,Maldives,1.0,f +3368,,Niue,1.0,t +24118,98%,Ghana,21.0,t +32595,,,1.0,f +40196,100%,Chile,2.0,t +5166,100%,Ecuador,16.0,t +18311,100%,Lithuania,1.0,t +43030,,,1.0,t +3564,100%,Russian Federation,3.0,f +4820,100%,Lithuania,2.0,t +28828,100%,Isle of Man,198.0,t +29945,100%,Korea,4.0,f +25999,,French Polynesia,1.0,f +31383,100%,Spain,4.0,f +2722,77%,Niue,2.0,f +18863,90%,Estonia,9.0,f +39175,100%,,1.0,t +18863,90%,Estonia,9.0,f +2722,77%,Niue,2.0,f +18863,90%,Estonia,9.0,f +18615,,,1.0,f +22721,100%,Ecuador,109.0,f +210,,Libyan Arab Jamahiriya,1.0,t +9405,100%,Sao Tome and Principe,1.0,t +31202,90%,Kiribati,107.0,f +39728,100%,,1.0,t +7854,,Saint Helena,1.0,f +13403,96%,Maldives,21.0,t +31202,90%,Kiribati,107.0,f +44551,100%,Saint Helena,2.0,f +43849,100%,Gibraltar,1.0,f +24054,,,1.0,f +29110,,Sao Tome and Principe,3.0,t +49485,,Malta,1.0,f +1931,,,1.0,f +14217,,Malta,1.0,f +24454,100%,,1.0,f +4728,100%,Gibraltar,1.0,t +40762,92%,Niue,2.0,t +38025,,,1.0,f +21975,,Guernsey,1.0,t +10443,,Denmark,1.0,f +13865,,Denmark,2.0,f +7416,100%,Zimbabwe,1.0,f +36532,100%,Bouvet Island (Bouvetoya),1.0,f +30633,100%,Anguilla,1.0,f +27017,100%,Senegal,2.0,t +45328,97%,Kiribati,10.0,f +356,99%,Wallis and Futuna,32.0,t +1473,,,1.0,t +29909,100%,Maldives,1.0,f +32903,100%,,2.0,f +40575,,,1.0,f +44169,97%,Portugal,39.0,f +27170,,,1.0,f +1925,100%,,1.0,t +5054,100%,China,4.0,t +6838,96%,Spain,59.0,t +19105,,Denmark,1.0,f +41839,100%,Niue,2.0,f +45276,100%,France,4.0,t +25644,,French Guiana,1.0,f +10160,100%,Slovakia (Slovak Republic),1.0,f +38656,100%,Mauritania,8.0,f +47520,67%,,1.0,f +29024,100%,Russian Federation,1.0,f +24071,100%,Indonesia,22.0,f +18320,50%,Reunion,19.0,t +4176,100%,Gambia,1.0,f +18863,90%,Estonia,9.0,f +7597,100%,,2.0,t +32203,100%,Barbados,176.0,f +38459,,Faroe Islands,2.0,f +41597,,Bosnia and Herzegovina,1.0,f +31009,,Indonesia,1.0,f +18863,90%,Estonia,9.0,f +38652,100%,Uzbekistan,9.0,f +23434,,Niue,1.0,f +9252,,,2.0,f +11998,100%,Togo,3.0,f +48928,87%,French Guiana,5.0,f +35522,100%,Kiribati,10.0,f +43151,97%,Tonga,5.0,t +38895,,Lebanon,1.0,t +14768,100%,Chad,2.0,f +29647,100%,Peru,1305.0,f +39678,,Russian Federation,1.0,f +31904,,Niue,3.0,t +6855,100%,Sao Tome and Principe,1.0,f +3274,86%,Barbados,24.0,f +46968,,,1.0,f +4764,,,1.0,f +3580,,Turks and Caicos Islands,1.0,f +1013,100%,Venezuela,4.0,f +7861,,Uzbekistan,1.0,f +32225,,Reunion,1.0,f +38335,79%,Guinea,11.0,f +18000,100%,Slovakia (Slovak Republic),7.0,t +9396,,Netherlands,2.0,f +12673,,,1.0,f +3067,,Nicaragua,1.0,f +27926,,Bosnia and Herzegovina,2.0,f +45999,100%,,1.0,f +27462,100%,Jersey,1.0,f +43448,,Papua New Guinea,1.0,f +19682,100%,Faroe Islands,15.0,t +2744,,Gibraltar,5.0,f +44169,97%,Portugal,39.0,f +26289,100%,,1.0,f +5269,100%,,1.0,t +47153,,,1.0,f +37041,90%,Jersey,2.0,f +686,97%,Micronesia,7.0,t +46043,,Chad,3.0,t +23288,100%,,20.0,f +16108,,Monaco,1.0,f +18575,,Turkmenistan,1.0,t +38652,100%,Uzbekistan,9.0,f +22408,,Portugal,1.0,f +43092,83%,Anguilla,1.0,f +45828,90%,Togo,9.0,f +7159,,Gibraltar,1.0,t +31942,,,1.0,f +47752,,Nauru,1.0,f +36674,100%,Tanzania,1.0,t +15554,,Lebanon,2.0,f +18069,100%,Turkmenistan,2.0,f +48036,100%,Reunion,1.0,f +49773,100%,Zimbabwe,1.0,f +17795,100%,Uzbekistan,11.0,t +28834,,El Salvador,1.0,f +35162,,Indonesia,1.0,f +32629,100%,Maldives,3.0,f +19091,95%,Cook Islands,18.0,t +9413,100%,Tanzania,1.0,f +45328,97%,Kiribati,10.0,f +21276,,Ukraine,2.0,f +8372,100%,Cape Verde,1.0,f +26099,99%,Reunion,15.0,f +7514,100%,Marshall Islands,1.0,f +11406,,,1.0,f +36109,,Lebanon,1.0,t +28828,100%,Isle of Man,198.0,t +34645,,,1.0,f +15567,100%,Slovakia (Slovak Republic),4.0,f +28334,100%,,3.0,f +7264,100%,Philippines,9.0,f +46254,100%,Venezuela,4.0,f +31230,90%,Niue,1.0,f +7687,,Brunei Darussalam,1.0,f +20989,100%,Marshall Islands,8.0,f +5787,,,1.0,f +45428,,,1.0,f +23609,100%,Indonesia,4.0,f +8280,90%,Uzbekistan,3.0,f +1211,100%,Mexico,2.0,t +23609,100%,Indonesia,4.0,f +12215,100%,,2.0,f +17625,,Russian Federation,1.0,f +25553,,,1.0,f +24383,100%,Cape Verde,1.0,f +2009,,,1.0,t +38786,,Guinea,1.0,f +42696,50%,,1.0,f +28020,,,1.0,t +46002,,,1.0,f +40854,75%,Netherlands,3.0,t +11746,,,1.0,f +35738,,Nauru,1.0,t +2420,80%,,1.0,t +25064,83%,,1.0,f +34345,100%,Niger,3.0,f +23430,100%,Reunion,16.0,f +28208,100%,Afghanistan,1.0,f +43550,100%,Rwanda,16.0,t +43282,90%,Niger,6.0,t +29487,89%,Montserrat,3.0,t +36373,100%,Isle of Man,3.0,f +14551,,,1.0,f +37544,100%,Malta,2.0,f +26944,,Rwanda,1.0,f +23430,100%,Reunion,16.0,f +23430,100%,Reunion,16.0,f +10218,,Maldives,1.0,f +22331,99%,Rwanda,50.0,t +10711,93%,Uganda,108.0,t +3101,100%,Puerto Rico,27.0,f +20334,99%,Niger,171.0,t +19217,98%,Marshall Islands,46.0,f +21351,100%,Niue,3.0,f +33426,100%,Estonia,2.0,f +1338,90%,Venezuela,1.0,f +35223,100%,Guinea,4.0,t +863,100%,Indonesia,6.0,f +46479,,Cocos (Keeling) Islands,1.0,f +48867,100%,,1.0,f +30908,,,2.0,f +32996,,,1.0,f +1869,,Moldova,2.0,f +30346,,Monaco,1.0,f +12247,100%,Maldives,33.0,f +42496,,Turks and Caicos Islands,1.0,f +24121,,Niue,1.0,t +12247,100%,Maldives,33.0,f +12247,100%,Maldives,33.0,f +32679,100%,Papua New Guinea,1.0,t +13634,100%,France,1.0,f +12247,100%,Maldives,33.0,f +6732,80%,Jersey,1.0,f +16445,100%,,1.0,f +34617,29%,Russian Federation,3.0,f +23867,,,1.0,t +35223,100%,Guinea,4.0,t +10202,89%,Nicaragua,10.0,f +17776,,Kenya,1.0,f +33601,100%,,3.0,f +2629,0%,,1.0,f +43871,0%,Puerto Rico,3.0,f +32292,,Kenya,2.0,f +21240,94%,Niger,130.0,f +6281,100%,Uzbekistan,1.0,t +9926,100%,Uganda,19.0,f +35364,100%,Sao Tome and Principe,1.0,f +38898,,Bouvet Island (Bouvetoya),1.0,f +14231,,,1.0,f +48960,100%,,13.0,t +19908,100%,Marshall Islands,2.0,t +29647,100%,Peru,1305.0,f +12239,,,1.0,t +24651,,Kiribati,4.0,f +39068,100%,Djibouti,6.0,t +20174,100%,,2.0,f +32203,100%,Barbados,176.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +2147,,,2.0,t +23034,99%,Monaco,54.0,f +46254,100%,Venezuela,4.0,f +17629,,,1.0,t +32203,100%,Barbados,176.0,f +35535,,,2.0,t +39081,,,1.0,f +43835,,,1.0,f +29647,100%,Peru,1305.0,f +29081,98%,Uzbekistan,18.0,f +38334,100%,Kiribati,1.0,f +24016,100%,Bosnia and Herzegovina,29.0,f +29081,98%,Uzbekistan,18.0,f +18860,100%,,4.0,t +40793,100%,,75.0,t +41109,100%,Turkmenistan,1.0,f +45180,,,1.0,f +37293,92%,Russian Federation,15.0,f +38608,90%,,2.0,t +28143,100%,Faroe Islands,1.0,f +22331,99%,Rwanda,50.0,t +28763,67%,Rwanda,2.0,f +43496,100%,Montserrat,18.0,t +44830,100%,,1.0,f +11998,100%,Togo,3.0,f +33114,78%,Kiribati,1.0,f +28491,90%,,1.0,f +40993,100%,Montserrat,15.0,f +40993,100%,Montserrat,15.0,f +28622,,Sao Tome and Principe,1.0,f +42281,100%,Marshall Islands,39.0,f +35439,94%,United Kingdom,23.0,t +37305,,Tonga,1.0,f +1790,,Gibraltar,1.0,f +40300,,Bahrain,1.0,f +38761,100%,Indonesia,1.0,f +22138,100%,,1.0,t +11858,17%,Guinea,4.0,f +24401,0%,Niue,3.0,f +28640,100%,Uzbekistan,3.0,t +48929,100%,Niue,4.0,f +15150,,,1.0,f +35918,100%,Turkmenistan,1.0,f +3068,,,1.0,t +38423,100%,Niue,5.0,t +28632,,,2.0,t +38715,100%,,2.0,t +46254,100%,Venezuela,4.0,f +1750,,Micronesia,1.0,f +23501,100%,,1.0,f +28200,100%,,1.0,f +1013,100%,Venezuela,4.0,f +42799,100%,Svalbard & Jan Mayen Islands,1.0,t +3389,100%,Estonia,13.0,f +36,100%,Sao Tome and Principe,3.0,f +20521,,,7.0,t +4856,100%,Philippines,5.0,f +35440,100%,,3.0,f +1993,100%,Slovenia,2.0,f +24516,,Gambia,1.0,f +36771,70%,Chad,1.0,t +46099,98%,Uzbekistan,28.0,f +9387,,Faroe Islands,1.0,f +33823,78%,France,17.0,t +46218,100%,,2.0,f +46195,89%,Maldives,6.0,t +49541,100%,French Guiana,6.0,f +41,100%,Portugal,2.0,f +32505,100%,,2.0,f +39387,100%,Andorra,1.0,t +49584,100%,,3.0,f +11115,,Cocos (Keeling) Islands,2.0,f +41297,100%,Denmark,3.0,t +1993,100%,Slovenia,2.0,f +16488,,Zimbabwe,2.0,t +33475,,United Kingdom,1.0,f +35171,100%,French Guiana,1.0,f +29791,,,4.0,f +13107,75%,Papua New Guinea,1.0,f +37910,,,2.0,f +35285,,,1.0,t +36456,,Saint Helena,1.0,t +15109,67%,Turkmenistan,1.0,f +6972,,Grenada,1.0,f +41256,100%,,1.0,f +48459,,Ghana,1.0,t +28511,,Mauritania,2.0,f +24188,100%,Guinea,1.0,f +33931,,,1.0,f +28511,,Mauritania,2.0,f +4437,100%,Cuba,1.0,f +29080,,Guernsey,1.0,t +10548,100%,Cuba,1.0,f +22165,,Russian Federation,3.0,t +38117,,,2.0,f +46089,100%,Sao Tome and Principe,3.0,t +25599,100%,,1.0,t +28991,,Estonia,1.0,f +38117,,,2.0,f +15189,79%,China,21.0,f +14541,100%,Turkmenistan,1.0,t +37320,100%,Russian Federation,1.0,f +25606,,Nicaragua,1.0,f +9516,99%,Pakistan,45.0,t +5867,100%,,1.0,t +6614,,,1.0,f +33636,,Turkmenistan,1.0,f +11339,,Kiribati,2.0,t +31229,100%,Tunisia,2.0,f +47955,100%,Gambia,1.0,t +44060,100%,,2.0,t +49040,43%,Russian Federation,1.0,t +22379,100%,Isle of Man,5.0,t +27838,,Tonga,1.0,t +9807,100%,Isle of Man,1.0,f +22652,,Costa Rica,1.0,t +37565,100%,Slovenia,1.0,t +35742,,Lebanon,1.0,f +4506,70%,,1.0,f +27907,100%,Puerto Rico,21.0,f +5879,100%,Slovakia (Slovak Republic),2.0,f +34612,100%,,1.0,f +26596,60%,Jersey,2.0,t +25846,100%,,1.0,f +36348,,China,1.0,f +24326,,Jersey,1.0,f +20132,,,1.0,f +20073,,Papua New Guinea,1.0,f +1853,100%,Nicaragua,1.0,t +48717,100%,Togo,1.0,t +17956,,French Guiana,1.0,f +12711,,Niue,1.0,t +31560,,Chad,1.0,f +49857,90%,,1.0,f +34305,100%,,3.0,f +39000,,Anguilla,1.0,f +18459,100%,Zimbabwe,100.0,f +23737,,,1.0,f +46804,90%,Cape Verde,2.0,f +806,90%,Rwanda,2.0,t +49041,100%,Niue,1.0,f +33281,,Brazil,1.0,f +22333,,Croatia,2.0,t +26902,100%,Netherlands,2.0,t +26793,,,1.0,t +3845,,Bosnia and Herzegovina,1.0,f +3733,100%,France,2.0,f +22655,100%,,1.0,f +18531,100%,,1.0,t +38188,,,2.0,f +42311,,Lebanon,1.0,t +45552,93%,Nicaragua,12.0,t +13364,91%,Netherlands,21.0,f +39424,100%,,1.0,f +39526,100%,Tunisia,1.0,t +10113,,Gambia,1.0,f +34617,29%,Russian Federation,3.0,f +427,,,1.0,t +3551,,Gambia,1.0,f +15794,,Gambia,2.0,t +1399,,Nicaragua,2.0,t +38787,,Faroe Islands,10.0,f +44551,100%,Saint Helena,2.0,f +28280,100%,,2.0,t +40947,100%,French Guiana,2.0,t +38787,,Faroe Islands,10.0,f +9469,100%,United Kingdom,1.0,t +302,100%,Tunisia,20.0,f +32203,100%,Barbados,176.0,f +46912,0%,France,1.0,t +48022,,,1.0,f +39847,100%,Venezuela,1.0,f +49462,100%,Cuba,1.0,f +4267,100%,Senegal,22.0,t +20329,100%,Reunion,21.0,f +41530,70%,,1.0,f +48235,83%,,1.0,f +35522,100%,Kiribati,10.0,f +29647,100%,Peru,1305.0,f +28828,100%,Isle of Man,198.0,t +32203,100%,Barbados,176.0,f +18539,,,1.0,t +39312,94%,Monaco,4.0,t +22538,100%,Gambia,1.0,t +39312,94%,Monaco,4.0,t +12458,,Rwanda,2.0,t +21803,,,2.0,f +39312,94%,Monaco,4.0,t +11040,100%,Andorra,7.0,f +24239,100%,Kiribati,8.0,t +42424,100%,Congo,3.0,t +4870,100%,,3.0,t +36268,,,1.0,f +5769,,Wallis and Futuna,2.0,f +16397,100%,,2.0,f +49452,0%,Nauru,2.0,f +32203,100%,Barbados,176.0,f +47246,100%,Tonga,1.0,f +46672,,Isle of Man,2.0,f +23609,100%,Indonesia,4.0,f +19602,100%,Lithuania,24.0,f +45191,100%,Montserrat,3.0,t +3891,,,1.0,f +28639,100%,,1.0,t +12255,100%,,1.0,t +47571,,,1.0,f +21465,,Zimbabwe,1.0,f +24617,,,1.0,f +17102,30%,,1.0,f +42281,100%,Marshall Islands,39.0,f +42281,100%,Marshall Islands,39.0,f +42281,100%,Marshall Islands,39.0,f +42281,100%,Marshall Islands,39.0,f +42281,100%,Marshall Islands,39.0,f +42281,100%,Marshall Islands,39.0,f +42281,100%,Marshall Islands,39.0,f +22155,100%,Estonia,4.0,f +21654,96%,Solomon Islands,5.0,t +11596,100%,Anguilla,2.0,f +44169,97%,Portugal,39.0,f +30606,,,1.0,f +23201,,,2.0,f +8887,100%,Senegal,5.0,f +36900,100%,,1.0,t +40184,100%,,2.0,f +31019,100%,Ghana,5.0,f +27854,,,1.0,f +22938,100%,,1.0,t +1141,80%,,1.0,f +25402,100%,,1.0,f +39870,,Slovakia (Slovak Republic),21.0,t +2456,,Faroe Islands,2.0,f +29647,100%,Peru,1305.0,f +33594,100%,,1.0,f +10880,,,1.0,f +24149,100%,China,3.0,f +27750,100%,,1.0,f +12295,,,1.0,f +7689,,,1.0,f +19128,100%,Uzbekistan,12.0,t +1777,100%,,1.0,f +23305,100%,Philippines,11.0,f +23034,99%,Monaco,54.0,f +45111,100%,Sao Tome and Principe,420.0,f +3408,,Rwanda,2.0,f +17584,100%,Maldives,1.0,t +46380,,Venezuela,1.0,f +2006,,,1.0,f +11255,93%,Suriname,41.0,f +2014,,,1.0,f +20268,0%,,1.0,t +26739,,,1.0,f +44589,,,1.0,t +20500,,,1.0,f +20449,,,1.0,f +44857,100%,Zimbabwe,24.0,t +34175,100%,Monaco,1.0,f +42586,,,1.0,f +1127,,,1.0,f +32077,100%,,1.0,t +37341,,Pakistan,3.0,f +33601,100%,,3.0,f +16094,,,1.0,f +3899,,,1.0,f +23288,100%,,20.0,f +31202,90%,Kiribati,107.0,f +12485,,,1.0,f +7506,100%,,1.0,f +12019,100%,,1.0,f +37646,100%,Estonia,60.0,f +15358,100%,Bahrain,1.0,f +15189,79%,China,21.0,f +43994,100%,Niger,5.0,f +837,100%,,2.0,t +16371,95%,Bouvet Island (Bouvetoya),29.0,f +13188,71%,Lithuania,1.0,t +11290,100%,Reunion,12.0,f +38339,100%,Venezuela,2.0,f +42713,,,1.0,f +11290,100%,Reunion,12.0,f +11290,100%,Reunion,12.0,f +34139,,,1.0,f +7373,,Mauritania,9.0,t +26744,100%,,1.0,f +4228,,Niger,11.0,f +19984,100%,Ecuador,14.0,t +33042,,,1.0,f +25220,,Isle of Man,8.0,t +3237,100%,Turkmenistan,2.0,t +39338,50%,Micronesia,2.0,f +7701,100%,,4.0,f +7701,100%,,4.0,f +7701,100%,,4.0,f +27551,,Guinea,1.0,f +45737,,Tonga,29.0,t +12215,100%,,2.0,f +42151,,,1.0,f +10772,,,1.0,f +18761,100%,,1.0,t +2642,,Andorra,4.0,f +4611,100%,,1.0,f +46491,,Venezuela,12.0,t +20329,100%,Reunion,21.0,f +11381,100%,,1.0,f +7778,100%,Mauritania,7.0,t +47339,,,1.0,t +37838,,Lebanon,2.0,t +42752,,,1.0,f +7246,100%,Niue,6.0,f +870,,Somalia,1.0,f +7701,100%,,4.0,f +7453,,,1.0,f +14439,100%,Svalbard & Jan Mayen Islands,1.0,f +21007,,,1.0,f +44934,100%,Philippines,17.0,f +29647,100%,Peru,1305.0,f +43686,100%,Somalia,2.0,f +39408,100%,,1.0,f +6428,,Finland,1.0,f +20144,0%,Uzbekistan,1.0,t +32593,82%,,6.0,t +4190,100%,United Kingdom,2.0,f +221,,Afghanistan,7.0,t +37188,,Sao Tome and Principe,1.0,f +25374,100%,Tonga,8.0,f +23311,,,1.0,f +34042,100%,Marshall Islands,37.0,f +11839,,Uganda,11.0,f +34042,100%,Marshall Islands,37.0,f +5828,100%,Zimbabwe,1.0,t +35976,100%,,6.0,t +16338,,Estonia,1.0,f +30029,90%,El Salvador,8.0,f +8748,,,1.0,f +32553,,Guernsey,1.0,f +12140,,,1.0,t +29978,89%,Uzbekistan,26.0,f +23651,,,1.0,f +37299,,Estonia,2.0,f +29978,89%,Uzbekistan,26.0,f +38066,,,1.0,f +10711,93%,Uganda,108.0,t +11059,,Isle of Man,2.0,f +39585,,,1.0,f +41928,87%,Nicaragua,9.0,f +11839,,Uganda,11.0,f +14886,100%,Jersey,1.0,f +17322,95%,,30.0,f +37660,,,2.0,f +37660,,,2.0,f +24407,100%,,1.0,f +17322,95%,,30.0,f +34895,100%,Estonia,16.0,t +356,99%,Wallis and Futuna,32.0,t +26771,100%,,1.0,f +37055,0%,,1.0,f +44389,100%,Maldives,1.0,t +9474,100%,El Salvador,1.0,f +32404,,,1.0,t +1656,,,1.0,f +16515,100%,Indonesia,1.0,f +37812,,,2.0,f +46552,,,1.0,f +42401,100%,,1.0,f +16078,,,1.0,f +9568,,,1.0,f +31354,100%,Niger,8.0,t +31018,,,1.0,f +14442,,Costa Rica,1.0,f +40957,,,1.0,f +23772,100%,,1.0,t +27645,100%,,1.0,f +39760,,,1.0,f +21375,,,1.0,f +6098,100%,,1.0,f +34506,,,1.0,f +22711,100%,Isle of Man,1.0,f +21326,100%,Zimbabwe,2.0,f +8144,,,1.0,t +4756,100%,,1.0,f +11593,100%,Monaco,2.0,t +8203,100%,Uzbekistan,2.0,t +4540,100%,,2.0,f +46484,,,1.0,f +6347,100%,Kiribati,3.0,f +42618,100%,,1.0,f +34958,,,1.0,f +21206,,Isle of Man,2.0,t +32442,,,1.0,t +17557,100%,Gambia,1.0,f +29149,,,1.0,f +18407,100%,Rwanda,3.0,f +48858,100%,,1.0,f +32062,100%,,1.0,f +39577,,,1.0,f +20502,100%,Costa Rica,3.0,f +38954,100%,Niue,3.0,f +3647,100%,,2.0,f +3129,,Anguilla,1.0,f +31397,,Lebanon,2.0,f +3647,100%,,2.0,f +48853,,,1.0,f +261,100%,,1.0,t +5428,100%,,1.0,t +39237,100%,,1.0,t +656,,,2.0,f +3121,95%,Zimbabwe,9.0,t +29177,,,1.0,f +47091,90%,United Kingdom,3.0,f +14330,100%,Indonesia,1.0,t +13414,,,1.0,f +21148,,,1.0,f +7246,100%,Niue,6.0,f +33230,100%,Afghanistan,1.0,t +40325,93%,Costa Rica,4.0,f +973,100%,,1.0,t +27200,,,1.0,f +18460,60%,Monaco,6.0,f +38071,80%,Zimbabwe,4.0,f +2102,67%,Gambia,2.0,f +21289,,,1.0,t +47859,100%,Chile,2.0,t +9057,90%,Kiribati,11.0,t +43134,100%,Suriname,6.0,f +38706,100%,,1.0,f +26597,100%,,2.0,f +23977,100%,Malta,3.0,f +32422,,,2.0,f +7983,,Senegal,1.0,t +32422,,,2.0,f +89,,,1.0,f +39144,,,1.0,f +30905,100%,,1.0,f +41286,100%,Sao Tome and Principe,3.0,f +10427,100%,,1.0,t +42851,,,1.0,f +26611,100%,Papua New Guinea,2.0,f +38072,100%,Niue,3.0,t +41302,100%,,1.0,f +43396,,Tonga,2.0,f +30993,,,1.0,f +11227,100%,,1.0,f +17304,,,1.0,f +20001,,,1.0,f +41599,,,1.0,f +35211,,,1.0,t +25935,,,1.0,f +39385,100%,,1.0,t +29647,100%,Peru,1305.0,f +14284,,,1.0,f +48429,40%,Kiribati,2.0,t +24720,,,1.0,f +28401,100%,Marshall Islands,1.0,t +49245,,Isle of Man,1.0,f +43225,100%,,3.0,f +45940,100%,,1.0,f +35522,100%,Kiribati,10.0,f +13276,90%,United Kingdom,5.0,t +28370,0%,,1.0,f +35522,100%,Kiribati,10.0,f +5496,,Maldives,1.0,t +29111,100%,,1.0,t +19811,90%,Nicaragua,21.0,t +21214,,,1.0,f +31229,100%,Tunisia,2.0,f +20400,,,1.0,f +7336,100%,,1.0,f +41505,,,1.0,t +45528,100%,Guinea,4.0,t +28868,100%,Monaco,2.0,f +18644,,,1.0,f +16164,,,2.0,t +16164,,,2.0,t +26195,93%,Gambia,8.0,t +47865,80%,,4.0,t +46381,100%,,2.0,f +33510,100%,Guernsey,1.0,f +22808,0%,,1.0,f +6031,,Guernsey,3.0,t +8672,,,1.0,t +43396,,Tonga,2.0,f +27194,,,1.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +29532,100%,,1.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +32778,,,1.0,t +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +35856,,,1.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +8601,,Angola,16.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +586,100%,Malawi,1.0,t +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +24500,,,3.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +8601,,Angola,16.0,f +17819,100%,Guinea,2.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +32556,90%,Estonia,11.0,t +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +41625,100%,,1.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +10644,,Guernsey,4.0,t +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +36742,,Isle of Man,2.0,f +26155,,Niue,2.0,f +12976,100%,,1.0,f +21803,,,2.0,f +45111,100%,Sao Tome and Principe,420.0,f +20521,,,7.0,t +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +29647,100%,Peru,1305.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +34904,100%,Estonia,1.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +37431,90%,,1.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +32386,97%,Indonesia,19.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +14031,,Sao Tome and Principe,1.0,f +49452,0%,Nauru,2.0,f +18305,,,1.0,f +29363,100%,,2.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +29647,100%,Peru,1305.0,f +38720,,Mexico,1.0,f +46220,100%,,2.0,f +30743,,Anguilla,2.0,f +35418,,,1.0,f +8447,,,1.0,f +12575,100%,Saint Helena,3.0,f +14091,,,1.0,f +16325,,,1.0,f +18150,100%,,1.0,t +40304,100%,France,3.0,f +16047,80%,Uzbekistan,6.0,f +31450,100%,,1.0,f +40036,,,2.0,f +35270,,,2.0,f +17955,,Guernsey,1.0,t +1600,100%,,2.0,t +21048,,,1.0,f +34841,100%,Zimbabwe,22.0,t +11852,50%,Svalbard & Jan Mayen Islands,1.0,f +7246,100%,Niue,6.0,f +32261,,,1.0,t +287,100%,,1.0,f +45465,100%,,1.0,f +10077,100%,Brazil,3.0,f +10077,100%,Brazil,3.0,f +29363,100%,,2.0,f +42670,,El Salvador,1.0,t +29647,100%,Peru,1305.0,f +2938,90%,,1.0,f +8708,0%,Puerto Rico,1.0,f +22206,,Niue,1.0,f +33882,100%,,1.0,f +29647,100%,Peru,1305.0,f +26728,,,1.0,f +3043,,,1.0,f +22161,,,1.0,t +2839,100%,Gambia,1.0,t +10011,,,1.0,f +2357,80%,French Polynesia,2.0,f +9496,90%,Anguilla,1.0,t +48841,,,1.0,f +13152,100%,Russian Federation,2.0,f +42328,93%,Russian Federation,14.0,f +12320,100%,Bosnia and Herzegovina,20.0,f +33823,78%,France,17.0,t +6470,,Isle of Man,1.0,f +37580,100%,Jersey,5.0,f +38171,,,1.0,f +45627,100%,,1.0,t +35872,100%,Faroe Islands,2.0,t +42328,93%,Russian Federation,14.0,f +5772,,,1.0,t +30331,67%,,1.0,f +20502,100%,Costa Rica,3.0,f +12088,100%,Kiribati,8.0,f +42328,93%,Russian Federation,14.0,f +42328,93%,Russian Federation,14.0,f +42328,93%,Russian Federation,14.0,f +29128,,,1.0,f +25747,,Zimbabwe,4.0,f +42328,93%,Russian Federation,14.0,f +12313,100%,,1.0,t +42328,93%,Russian Federation,14.0,f +47274,100%,Tonga,48.0,f +25464,100%,,1.0,f +27539,100%,,2.0,t +42328,93%,Russian Federation,14.0,f +42328,93%,Russian Federation,14.0,f +42147,90%,Congo,2.0,f +42328,93%,Russian Federation,14.0,f +42328,93%,Russian Federation,14.0,f +40689,100%,Cuba,23.0,f +24602,,,1.0,f +7316,,,2.0,f +551,95%,Rwanda,17.0,f +33873,100%,Turks and Caicos Islands,8.0,t +12575,100%,Saint Helena,3.0,f +12575,100%,Saint Helena,3.0,f +36230,,Niger,1.0,f +45330,,Congo,1.0,f +49336,,,1.0,t +43972,,,1.0,t +15189,79%,China,21.0,f +18936,100%,Nauru,1.0,f +4142,,,1.0,f +44052,100%,Denmark,4.0,f +18234,100%,Niue,1.0,f +6827,100%,Afghanistan,4.0,t +10144,,,1.0,f +39643,100%,Zimbabwe,3.0,t +49743,,,1.0,f +5750,,,1.0,f +26135,,,1.0,t +28828,100%,Isle of Man,198.0,t +48611,,,1.0,f +17780,,,2.0,f +47119,100%,Russian Federation,2.0,t +27633,,,1.0,f +25561,100%,Zimbabwe,1.0,f +16887,100%,China,11.0,f +40802,,,1.0,t +13923,100%,,2.0,f +27508,,,1.0,f +36114,100%,Guinea,4.0,t +32485,100%,,1.0,f +48444,,,1.0,f +4278,,,1.0,f +19894,,,1.0,f +18459,100%,Zimbabwe,100.0,f +39205,100%,France,2.0,f +149,,France,2.0,t +47176,100%,Isle of Man,2.0,f +18459,100%,Zimbabwe,100.0,f +42965,100%,Uzbekistan,11.0,t +18459,100%,Zimbabwe,100.0,f +35718,,,1.0,t +4813,,,1.0,f +18459,100%,Zimbabwe,100.0,f +45102,,,1.0,f +42363,100%,,2.0,t +17774,,,1.0,f +18459,100%,Zimbabwe,100.0,f +8104,100%,,4.0,f +5868,,,1.0,f +33540,,,1.0,t +39862,,Bosnia and Herzegovina,1.0,f +18839,100%,,1.0,f +22379,100%,Isle of Man,5.0,t +22985,100%,,1.0,f +18006,100%,,1.0,f +2642,,Andorra,4.0,f +11044,79%,,5.0,f +11125,100%,Nicaragua,12.0,t +19655,100%,Tonga,13.0,t +18459,100%,Zimbabwe,100.0,f +26497,,,1.0,t +31258,,,1.0,f +14905,,,1.0,f +37196,0%,,1.0,f +30677,,,1.0,f +38880,100%,,2.0,f +11269,,,1.0,f +634,,,1.0,f +47819,,,2.0,t +9484,100%,,1.0,f +7246,100%,Niue,6.0,f +41546,100%,Mauritania,21.0,f +38298,,,1.0,t +46443,75%,Sao Tome and Principe,1.0,t +18805,,,1.0,f +6168,,Bouvet Island (Bouvetoya),14.0,t +13807,100%,,2.0,f +12953,100%,Guernsey,1.0,f +34331,,,1.0,f +20659,,Croatia,3.0,t +661,,Lebanon,1.0,t +48133,,Isle of Man,45.0,f +43689,0%,,1.0,f +35641,,Netherlands,15.0,t +33952,,,1.0,f +16887,100%,China,11.0,f +18459,100%,Zimbabwe,100.0,f +6077,100%,,1.0,t +40084,70%,,3.0,f +12839,,Bosnia and Herzegovina,1.0,t +37451,100%,,2.0,t +49929,,Faroe Islands,1.0,f +24026,98%,Cape Verde,69.0,t +18459,100%,Zimbabwe,100.0,f +18459,100%,Zimbabwe,100.0,f +24388,,,1.0,f +18459,100%,Zimbabwe,100.0,f +28897,100%,,2.0,t +24301,,France,1.0,f +18459,100%,Zimbabwe,100.0,f +24490,,Svalbard & Jan Mayen Islands,1.0,f +7268,100%,Denmark,3.0,f +40642,90%,,1.0,f +10417,100%,,1.0,f +46195,89%,Maldives,6.0,t +45490,95%,Barbados,6.0,f +29647,100%,Peru,1305.0,f +42555,100%,,1.0,f +15254,100%,,1.0,f +1949,,India,40.0,f +22413,20%,Chile,1.0,f +3218,100%,Zimbabwe,6.0,f +40979,,Afghanistan,3.0,t +40793,100%,,75.0,t +18459,100%,Zimbabwe,100.0,f +22721,100%,Ecuador,109.0,f +37451,100%,,2.0,t +35595,,,1.0,f +4720,,Nicaragua,1.0,f +12486,100%,,2.0,f +12486,100%,,2.0,f +23920,,,2.0,f +41878,91%,Maldives,47.0,f +17241,100%,,2.0,t +19129,,Malta,5.0,t +7552,,,2.0,f +36311,,,2.0,f +22295,,,2.0,t +6822,,,1.0,f +11977,,,1.0,t +22923,,Lithuania,1.0,f +16520,100%,Marshall Islands,22.0,f +46628,100%,,2.0,t +29647,100%,Peru,1305.0,f +38529,90%,Brazil,2.0,f +18314,100%,,2.0,f +29647,100%,Peru,1305.0,f +1234,,,1.0,t +10711,93%,Uganda,108.0,t +25778,100%,,1.0,t +37980,75%,Kiribati,1.0,f +46914,,,1.0,t +36879,100%,,1.0,f +28288,100%,,1.0,f +6168,,Bouvet Island (Bouvetoya),14.0,t +32748,100%,Argentina,8.0,f +10711,93%,Uganda,108.0,t +37382,67%,,1.0,f +42443,97%,Tonga,7.0,t +7785,,,1.0,f +49287,,,1.0,f +12357,100%,Gambia,4.0,f +24820,100%,Niue,2.0,f +48721,,,1.0,t +28139,,,1.0,t +19795,100%,Estonia,8.0,f +20930,63%,,3.0,f +36157,100%,Tonga,6.0,t +46196,,,2.0,t +1919,,,4.0,f +33261,,,1.0,f +12527,,,1.0,f +28114,97%,Bouvet Island (Bouvetoya),16.0,f +8269,100%,,1.0,t +49037,57%,Maldives,1.0,f +49942,,,1.0,f +5783,100%,,1.0,t +43443,100%,,1.0,t +45552,93%,Nicaragua,12.0,t +46998,100%,Togo,2.0,f +12778,,,1.0,t +38688,,,1.0,f +34052,100%,Svalbard & Jan Mayen Islands,2.0,f +30454,100%,,1.0,f +14819,100%,Barbados,3.0,f +34805,,,1.0,f +402,100%,,1.0,f +44085,100%,,2.0,f +23664,,,1.0,t +42989,100%,,2.0,f +18510,,,1.0,f +16887,100%,China,11.0,f +37961,,,1.0,f +16520,100%,Marshall Islands,22.0,f +41305,100%,Togo,2.0,f +1440,100%,Gibraltar,4.0,t +16520,100%,Marshall Islands,22.0,f +16520,100%,Marshall Islands,22.0,f +7698,,,1.0,f +30051,,Nauru,1.0,f +9620,,,1.0,f +3186,,,1.0,f +47392,,,1.0,t +4028,100%,,3.0,t +45445,,,1.0,f +24528,,,1.0,f +9490,,,1.0,f +15755,100%,Tonga,2.0,t +12387,,,1.0,t +6778,,,1.0,f +22227,100%,Slovakia (Slovak Republic),2.0,t +37307,75%,Nicaragua,2.0,f +24964,,,1.0,t +14117,,,1.0,f +7874,,Niue,1.0,f +29651,,Monaco,1.0,t +8177,,,1.0,f +41878,91%,Maldives,47.0,f +41748,100%,,2.0,f +27935,,,1.0,f +41546,100%,Mauritania,21.0,f +41878,91%,Maldives,47.0,f +24659,100%,,1.0,f +43284,100%,,1.0,f +22337,100%,,1.0,f +47726,100%,Guinea,1.0,f +17322,95%,,30.0,f +2548,97%,Marshall Islands,3.0,f +23779,,,1.0,f +26137,,Estonia,2.0,f +31625,,,1.0,f +23111,,,1.0,f +33454,100%,Tonga,7.0,f +34123,100%,Portugal,1.0,f +1556,,Congo,1.0,f +33773,,,1.0,t +17322,95%,,30.0,f +12356,0%,Isle of Man,1.0,t +44515,,,1.0,t +15819,,Costa Rica,1.0,t +16275,98%,Maldives,24.0,f +15326,,,1.0,f +5150,,,1.0,f +26017,100%,Croatia,1.0,f +23728,,Saint Helena,2.0,f +7037,,,1.0,f +1949,,India,40.0,f +22877,,,1.0,f +20770,100%,,2.0,f +6838,96%,Spain,59.0,t +36206,86%,Russian Federation,10.0,f +1949,,India,40.0,f +1232,100%,,21.0,f +1949,,India,40.0,f +34832,80%,Sao Tome and Principe,7.0,t +1636,75%,,1.0,f +27682,,,1.0,f +24896,100%,Algeria,50.0,t +9481,,Somalia,1.0,f +1949,,India,40.0,f +1949,,India,40.0,f +11677,100%,,8.0,f +49565,92%,Uganda,14.0,f +1949,,India,40.0,f +49565,92%,Uganda,14.0,f +19272,,,1.0,f +49565,92%,Uganda,14.0,f +793,,,1.0,t +49565,92%,Uganda,14.0,f +28477,100%,Guinea,2.0,t +29596,,Nauru,3.0,f +23988,,Niue,4.0,f +26780,100%,Guinea,7.0,f +3713,0%,El Salvador,1.0,f +47859,100%,Chile,2.0,t +36127,100%,,16.0,f +16541,0%,,1.0,f +17492,,Estonia,1.0,t +14084,,,1.0,f +36127,100%,,16.0,f +2618,,,1.0,f +9802,,Indonesia,38.0,t +39892,100%,Tonga,31.0,t +21994,,,1.0,f +42443,97%,Tonga,7.0,t +47274,100%,Tonga,48.0,f +15054,,,1.0,t +20188,,,1.0,t +48324,,Congo,1.0,f +37868,100%,,1.0,f +9621,,,1.0,t +2791,,,1.0,f +10445,100%,,1.0,t +6982,,Lithuania,1.0,f +7606,,,1.0,f +22306,,,1.0,f +8203,100%,Uzbekistan,2.0,t +16572,,,1.0,f +42482,0%,Russian Federation,3.0,f +12835,,,1.0,f +33714,,Nauru,1.0,f +25709,,,1.0,f +45733,90%,Tonga,1.0,f +13526,,,1.0,f +26582,100%,,1.0,t +43355,,,1.0,f +1942,100%,Tanzania,2.0,t +356,99%,Wallis and Futuna,32.0,t +12270,100%,,1.0,f +16275,98%,Maldives,24.0,f +30849,,,2.0,f +16275,98%,Maldives,24.0,f +22456,100%,,1.0,f +25479,,,2.0,t +41298,,Kiribati,2.0,f +4965,100%,,3.0,t +47276,100%,,1.0,f +47006,100%,,1.0,t +27337,100%,,2.0,f +41899,,,1.0,f +3790,100%,Netherlands,16.0,f +1949,,India,40.0,f +30437,,,1.0,t +920,100%,,2.0,f +36127,100%,,16.0,f +48409,,Estonia,60.0,t +36127,100%,,16.0,f +4144,100%,,1.0,t +13294,100%,,1.0,f +40742,100%,,1.0,t +1949,,India,40.0,f +3790,100%,Netherlands,16.0,f +1949,,India,40.0,f +48409,,Estonia,60.0,t +1949,,India,40.0,f +10320,92%,Tonga,10.0,f +27927,100%,,1.0,f +29589,,French Guiana,1.0,f +18306,90%,Jersey,5.0,f +39875,,,1.0,f +40979,,Afghanistan,3.0,t +27127,100%,Marshall Islands,9.0,t +25368,,,1.0,f +1949,,India,40.0,f +29647,100%,Peru,1305.0,f +8225,95%,Barbados,31.0,f +6945,100%,Cuba,8.0,f +5947,,Zimbabwe,1.0,f +10320,92%,Tonga,10.0,f +14407,100%,El Salvador,3.0,f +20521,,,7.0,t +25475,,,1.0,f +10320,92%,Tonga,10.0,f +49055,,Zimbabwe,2.0,t +13116,,,1.0,f +3047,100%,Brazil,1.0,f +18438,,,1.0,f +3571,100%,Bouvet Island (Bouvetoya),3.0,t +3395,,,1.0,t +1286,,,1.0,f +38075,100%,Malawi,2.0,f +46824,,Sao Tome and Principe,3.0,f +9541,,,1.0,t +46872,100%,Nicaragua,9.0,f +21908,100%,Niue,49.0,f +4870,100%,,3.0,t +8413,100%,Gambia,1.0,f +11616,100%,Uzbekistan,12.0,t +25370,,Kiribati,1.0,f +194,,,1.0,f +16275,98%,Maldives,24.0,f +12573,100%,,1.0,f +20351,100%,,1.0,t +33084,33%,,1.0,f +27728,,,1.0,f +14984,100%,,2.0,f +8593,100%,,1.0,f +46127,,Uzbekistan,2.0,f +24629,,,1.0,t +41297,100%,Denmark,3.0,t +22143,100%,Venezuela,3.0,t +38656,100%,Mauritania,8.0,f +21828,,,1.0,t +16275,98%,Maldives,24.0,f +7292,67%,,1.0,f +44714,,Ghana,4.0,f +45468,100%,,4.0,f +388,,Croatia,1.0,f +23439,100%,Croatia,2.0,t +14407,100%,El Salvador,3.0,f +39215,,,1.0,t +33898,,,1.0,f +19134,100%,Uzbekistan,1.0,f +10307,100%,,1.0,t +34841,100%,Zimbabwe,22.0,t +15355,90%,Lebanon,2.0,f +4770,,,1.0,t +37540,,Barbados,1.0,f +36096,,,1.0,f +46400,93%,,2.0,f +16275,98%,Maldives,24.0,f +22754,100%,Isle of Man,3.0,t +38323,100%,,1.0,f +8775,,,1.0,t +44608,83%,,1.0,t +16275,98%,Maldives,24.0,f +39758,80%,,2.0,f +37646,100%,Estonia,60.0,f +35780,,,1.0,f +16887,100%,China,11.0,f +17460,,,1.0,t +6894,80%,Estonia,47.0,t +2841,100%,,1.0,f +45,,,1.0,f +35127,86%,,1.0,f +16915,,Jersey,2.0,f +32818,100%,,2.0,f +22091,100%,Faroe Islands,9.0,f +36660,,,1.0,f +40225,100%,Uganda,3.0,t +29312,100%,,1.0,t +687,100%,Kiribati,2.0,t +26333,100%,Svalbard & Jan Mayen Islands,1.0,t +43321,100%,France,40.0,f +6932,,,1.0,t +3689,100%,,1.0,t +909,100%,Croatia,18.0,t +19106,,,1.0,f +47713,100%,Turks and Caicos Islands,1.0,t +38458,100%,Montserrat,6.0,t +32081,,,1.0,f +21908,100%,Niue,49.0,f +21908,100%,Niue,49.0,f +7030,100%,Guernsey,6.0,f +10762,,,1.0,f +18012,100%,,2.0,t +30022,33%,French Guiana,2.0,f +10174,,,1.0,f +48293,100%,,2.0,t +32237,,,1.0,f +41502,,,1.0,t +15813,,,1.0,f +32203,100%,Barbados,176.0,f +45793,100%,Niue,5.0,t +16679,100%,Kenya,2.0,f +45389,100%,Brunei Darussalam,1.0,f +36504,100%,United Kingdom,1.0,f +18877,100%,Isle of Man,3.0,t +39689,100%,Libyan Arab Jamahiriya,1.0,t +29647,100%,Peru,1305.0,f +32203,100%,Barbados,176.0,f +45553,90%,Brazil,16.0,t +47134,,,1.0,f +16275,98%,Maldives,24.0,f +32203,100%,Barbados,176.0,f +23117,82%,,33.0,f +34733,100%,Isle of Man,1.0,f +41878,91%,Maldives,47.0,f +23117,82%,,33.0,f +16275,98%,Maldives,24.0,f +18247,95%,Iran,80.0,t +23117,82%,,33.0,f +15859,100%,Zimbabwe,1.0,f +19610,100%,,1.0,f +32203,100%,Barbados,176.0,f +43083,100%,,1.0,f +2078,,Sao Tome and Principe,1.0,f +38302,,,1.0,t +3788,100%,Marshall Islands,2.0,f +21867,,,1.0,f +49171,,,1.0,f +664,100%,,1.0,f +3826,,Kiribati,1.0,f +31291,,Zimbabwe,1.0,t +39644,,,1.0,f +307,,,1.0,f +18000,100%,Slovakia (Slovak Republic),7.0,t +16895,,Indonesia,4.0,f +28188,100%,Nicaragua,4.0,t +21565,,,1.0,f +16603,,Tunisia,5.0,f +7223,,,4.0,f +16895,,Indonesia,4.0,f +10282,,,1.0,t +39776,,,1.0,f +18368,100%,Gambia,2.0,f +43978,100%,,1.0,t +31604,,,1.0,t +25909,,,1.0,f +5125,100%,Russian Federation,2.0,f +14777,90%,,2.0,f +24954,60%,Christmas Island,2.0,f +35633,,,1.0,f +39322,100%,,1.0,f +35841,100%,Saint Helena,4.0,f +21519,100%,Jersey,3.0,f +1837,,,1.0,f +41232,100%,,3.0,f +7246,100%,Niue,6.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +791,,,1.0,f +29647,100%,Peru,1305.0,f +17796,,,1.0,f +39639,100%,Niue,19.0,f +6679,,,1.0,t +29647,100%,Peru,1305.0,f +44081,100%,,1.0,f +48133,,Isle of Man,45.0,f +35104,100%,Switzerland,2.0,f +18121,100%,Bouvet Island (Bouvetoya),8.0,f +17582,,,1.0,f +48231,,,1.0,f +21908,100%,Niue,49.0,f +6838,96%,Spain,59.0,t +8601,,Angola,16.0,f +27652,100%,El Salvador,5.0,f +8415,90%,,1.0,f +19456,,,1.0,f +43134,100%,Suriname,6.0,f +33314,,Croatia,1.0,f +22314,,,1.0,f +19019,97%,Nicaragua,1484.0,f +11044,79%,,5.0,f +11044,79%,,5.0,f +38219,,,1.0,f +21671,0%,Tonga,1.0,f +9535,100%,Gambia,1.0,t +19019,97%,Nicaragua,1484.0,f +21855,,Lebanon,2.0,t +1258,,Maldives,1.0,t +221,,Afghanistan,7.0,t +4330,94%,Ukraine,60.0,t +6209,80%,Nicaragua,9.0,t +26196,100%,,1.0,t +8438,62%,Nicaragua,9.0,t +20263,99%,Maldives,35.0,t +35221,100%,Turks and Caicos Islands,30.0,t +11658,67%,,2.0,f +33188,,Indonesia,1.0,f +5246,100%,,1.0,f +27292,,,1.0,t +4596,100%,,1.0,f +6209,80%,Nicaragua,9.0,t +49827,,Faroe Islands,1.0,f +39232,80%,,1.0,f +43532,,,1.0,f +25337,100%,Rwanda,2.0,f +20037,,Kenya,2.0,t +33246,25%,Guernsey,1.0,f +20720,100%,,4.0,f +2283,,,1.0,f +48940,80%,,1.0,f +28494,100%,,1.0,f +35186,100%,,1.0,f +30335,,,1.0,f +16894,100%,,1.0,f +6347,100%,Kiribati,3.0,f +13847,100%,Turks and Caicos Islands,14.0,f +17780,,,2.0,f +13847,100%,Turks and Caicos Islands,14.0,f +12811,,Bosnia and Herzegovina,1.0,t +13847,100%,Turks and Caicos Islands,14.0,f +8601,,Angola,16.0,f +15298,,,1.0,f +4745,100%,Croatia,119.0,f +1949,,India,40.0,f +34195,100%,,1.0,t +1949,,India,40.0,f +1949,,India,40.0,f +48091,,,1.0,f +10404,,,1.0,f +4745,100%,Croatia,119.0,f +13091,100%,Estonia,1.0,f +4745,100%,Croatia,119.0,f +45138,79%,Barbados,14.0,f +24855,,Bosnia and Herzegovina,2.0,t +25021,100%,Palestinian Territory,2.0,f +42766,100%,United Kingdom,1.0,f +20147,90%,,2.0,f +18201,,Kiribati,5.0,f +4045,,Palestinian Territory,1.0,f +46147,100%,,1.0,f +6072,,,1.0,f +5667,,,1.0,t +10711,93%,Uganda,108.0,t +15695,100%,Malawi,2.0,t +8453,100%,Rwanda,6.0,t +4965,100%,,3.0,t +12938,92%,Reunion,12.0,f +43201,,,1.0,t +23157,0%,,1.0,f +4330,94%,Ukraine,60.0,t +31809,80%,,1.0,t +32154,,,1.0,f +1173,100%,,1.0,f +30985,100%,Uzbekistan,5.0,f +32203,100%,Barbados,176.0,f +16377,,Gambia,5.0,f +8155,100%,,1.0,f +8370,,Portugal,1.0,f +33961,100%,Indonesia,3.0,t +40793,100%,,75.0,t +40793,100%,,75.0,t +17394,0%,Nicaragua,49.0,f +29428,,Uzbekistan,1.0,f +44709,,,1.0,f +27181,,,1.0,f +32470,,,1.0,f +17094,,Cuba,1.0,f +16149,,,1.0,t +46099,98%,Uzbekistan,28.0,f +18774,100%,Uzbekistan,4.0,f +33516,100%,Brunei Darussalam,1.0,f +46099,98%,Uzbekistan,28.0,f +33851,100%,,3.0,f +6649,,,1.0,t +2396,,,1.0,t +1507,,,1.0,t +25193,0%,,2.0,t +33454,100%,Tonga,7.0,f +33851,100%,,3.0,f +2116,,Jersey,1.0,t +32206,,,1.0,f +4133,90%,Maldives,6.0,f +32484,,,1.0,t +20828,100%,Turks and Caicos Islands,2.0,f +26577,,,1.0,f +30243,100%,Mauritania,2.0,t +46741,100%,,1.0,f +9920,,,1.0,t +90,,Tonga,1.0,f +23102,0%,,1.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +20859,,,1.0,t +35342,,,1.0,f +18201,,Kiribati,5.0,f +32038,100%,Indonesia,35.0,f +7658,100%,Switzerland,2.0,f +21398,,Russian Federation,2.0,t +9516,99%,Pakistan,45.0,t +23282,,,2.0,f +11872,,,13.0,f +29647,100%,Peru,1305.0,f +48700,,,1.0,f +22010,,,1.0,f +20560,100%,,1.0,t +29647,100%,Peru,1305.0,f +23282,,,2.0,f +22474,,,1.0,f +46180,,,1.0,f +46558,,,1.0,t +41909,,,1.0,f +46321,,,1.0,f +3460,,,1.0,f +16520,100%,Marshall Islands,22.0,f +22042,,,1.0,f +45492,100%,Mauritania,2.0,f +4927,,,1.0,f +3314,100%,Slovakia (Slovak Republic),10.0,f +41806,100%,,1.0,t +7032,,,1.0,f +40804,,,1.0,f +46428,100%,Niue,4.0,f +50050,50%,,1.0,f +2597,100%,Nicaragua,13.0,t +35096,,,2.0,f +32596,100%,Gibraltar,2.0,f +37129,,,1.0,t +34058,,,1.0,t +28797,100%,,2.0,f +49845,100%,Micronesia,1.0,f +23368,100%,,1.0,f +45748,0%,,1.0,f +48953,,,1.0,t +39380,,,1.0,t +22957,100%,Kiribati,3.0,f +7838,100%,,1.0,f +41547,100%,,1.0,f +48541,,Russian Federation,2.0,t +10699,,,3.0,t +11133,100%,Philippines,2.0,f +45367,,Niue,2.0,f +34729,,,1.0,f +6009,,Estonia,1.0,f +32178,,Niue,4.0,t +38832,97%,,15.0,f +22694,,El Salvador,1.0,f +13151,,,1.0,t +38832,97%,,15.0,f +14848,100%,,1.0,f +17055,43%,,1.0,f +47239,100%,,2.0,f +20716,100%,,1.0,f +46808,60%,Rwanda,3.0,f +33109,,,4.0,f +22239,100%,,2.0,t +29183,100%,,1.0,t +49378,90%,,2.0,t +34842,,,1.0,f +22155,100%,Estonia,4.0,f +13192,100%,,1.0,f +10367,,,2.0,f +34505,,Uzbekistan,4.0,f +18109,100%,Anguilla,2.0,f +37286,100%,,2.0,f +7018,85%,,1.0,t +11527,100%,,1.0,f +28355,100%,Gambia,1.0,f +43185,,,1.0,f +28999,,,1.0,f +5757,100%,Portugal,2.0,f +1784,,,1.0,f +34895,100%,Estonia,16.0,t +46872,100%,Nicaragua,9.0,f +32765,,,1.0,t +26099,99%,Reunion,15.0,f +44327,,,1.0,f +2868,67%,,1.0,f +43591,,,1.0,f +35865,0%,,1.0,f +28184,,,1.0,f +8603,,,1.0,f +32540,100%,Anguilla,1.0,f +37070,,,1.0,f +13335,,,1.0,f +5296,100%,Mauritania,4.0,f +614,67%,,1.0,f +39694,,,1.0,f +29521,,Gambia,4.0,t +36989,78%,,1.0,f +20044,,,1.0,f +18542,71%,,1.0,t +5296,100%,Mauritania,4.0,f +40816,,,1.0,f +5296,100%,Mauritania,4.0,f +12680,100%,Malta,1.0,f +12069,100%,,1.0,f +12523,29%,,1.0,t +37350,100%,Nicaragua,1.0,f +11744,100%,Kenya,4.0,f +41236,,,1.0,f +31092,,Senegal,19.0,f +4222,70%,,1.0,f +38600,,Croatia,2.0,t +14910,,,1.0,f +48923,100%,,1.0,t +18516,100%,Congo,3.0,t +2367,100%,Kiribati,9.0,f +13551,,,1.0,f +44544,0%,Gibraltar,2.0,f +28828,100%,Isle of Man,198.0,t +14572,,,1.0,t +28828,100%,Isle of Man,198.0,t +38062,,,1.0,t +13495,100%,,1.0,f +17885,100%,Kiribati,1.0,t +29156,,,1.0,t +26118,70%,Uzbekistan,1.0,f +14323,100%,,1.0,f +9506,,,1.0,f +37558,90%,Russian Federation,1.0,t +9664,100%,,1.0,t +49588,100%,Djibouti,1.0,f +23582,98%,Montserrat,17.0,f +29355,100%,,1.0,f +25129,,Croatia,1.0,f +31790,100%,Russian Federation,2.0,f +44793,100%,Guernsey,1.0,f +43551,100%,Niue,1.0,f +27340,100%,Kiribati,2.0,f +22515,,,1.0,t +30576,100%,,1.0,f +25594,100%,,1.0,f +15703,,,4.0,f +16591,,,1.0,f +25476,100%,Fiji,11.0,f +49802,100%,Isle of Man,1.0,f +11559,,,1.0,f +39109,77%,Ukraine,24.0,t +25476,100%,Fiji,11.0,f +5957,,,1.0,f +10325,100%,Gambia,34.0,t +45562,100%,,3.0,f +38335,79%,Guinea,11.0,f +11708,100%,,1.0,t +33834,,,1.0,f +29647,100%,Peru,1305.0,f +36947,100%,Niue,1.0,f +4646,100%,Maldives,8.0,f +38335,79%,Guinea,11.0,f +47035,100%,,3.0,t +36524,100%,Saint Helena,8.0,t +19157,,,2.0,f +46234,100%,Sao Tome and Principe,3.0,f +8798,,Greenland,1.0,f +43188,100%,Micronesia,2.0,f +39343,100%,,1.0,f +10325,100%,Gambia,34.0,t +29647,100%,Peru,1305.0,f +45004,,,2.0,f +43318,,,1.0,t +28861,0%,,1.0,f +26574,,,1.0,f +25022,,,1.0,f +32203,100%,Barbados,176.0,f +39143,89%,,33.0,f +46611,94%,,7.0,f +46611,94%,,7.0,f +46611,94%,,7.0,f +46611,94%,,7.0,f +46611,94%,,7.0,f +9262,,,1.0,f +20972,,,1.0,f +4011,100%,French Guiana,3.0,f +36825,,,1.0,f +6824,0%,,1.0,t +20549,100%,Monaco,3.0,t +36598,100%,Lithuania,2.0,f +15119,0%,Sao Tome and Principe,1.0,f +2874,,,1.0,f +38177,,French Guiana,1.0,t +45025,90%,,1.0,f +42238,,,1.0,f +48756,100%,Maldives,59.0,f +4011,100%,French Guiana,3.0,f +47834,100%,,1.0,f +14876,100%,Gambia,1.0,f +46330,100%,,1.0,f +11815,100%,Russian Federation,2.0,t +20263,99%,Maldives,35.0,t +27802,,,1.0,t +45828,90%,Togo,9.0,f +21350,,,1.0,f +47289,,Faroe Islands,1.0,t +30600,,,1.0,f +13388,100%,Brazil,5.0,f +40004,,,1.0,f +32904,,,1.0,f +34021,,,1.0,f +48579,,,1.0,f +12430,,Finland,1.0,t +7331,99%,Indonesia,8.0,t +38516,95%,Pakistan,9.0,f +2179,25%,Reunion,5.0,f +4174,100%,,1.0,f +10467,100%,Nicaragua,4.0,f +21173,,Niue,3.0,t +32701,,Svalbard & Jan Mayen Islands,1.0,f +3542,100%,,1.0,f +24203,,,2.0,t +12832,,,1.0,f +32223,100%,,1.0,t +4909,90%,,2.0,f +25448,100%,,2.0,f +8984,,,1.0,f +13293,,,1.0,f +6181,100%,Zimbabwe,4.0,f +3648,100%,,1.0,t +21969,,Faroe Islands,1.0,f +1949,,India,40.0,f +46903,,,1.0,f +9994,100%,,1.0,f +1949,,India,40.0,f +14434,,,1.0,f +13046,,,1.0,f +41272,100%,,1.0,f +40111,,,1.0,f +24761,78%,Niue,1.0,f +40313,,,1.0,f +2744,,Gibraltar,5.0,f +2890,100%,,1.0,f +37111,,,1.0,f +8766,100%,,1.0,t +7970,90%,Isle of Man,3.0,t +29647,100%,Peru,1305.0,f +48575,67%,Jersey,3.0,f +11712,95%,Monaco,4.0,f +38787,,Faroe Islands,10.0,f +32800,,,1.0,f +7734,,,1.0,t +40433,100%,Russian Federation,3.0,f +2743,97%,China,23.0,f +45689,,,1.0,f +23340,,,1.0,f +11761,100%,,1.0,f +20613,100%,,1.0,t +39371,100%,Fiji,1.0,f +18078,100%,Montserrat,13.0,t +22857,100%,,2.0,t +37110,100%,Afghanistan,2.0,f +21232,90%,Kiribati,2.0,t +47101,100%,,1.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +11616,100%,Uzbekistan,12.0,t +747,100%,Gambia,2.0,f +19433,50%,France,2.0,f +47716,,,1.0,f +50041,100%,Isle of Man,2.0,t +41297,100%,Denmark,3.0,t +34306,91%,Wallis and Futuna,30.0,t +31735,,,1.0,f +31613,100%,Monaco,1.0,f +4330,94%,Ukraine,60.0,t +34306,91%,Wallis and Futuna,30.0,t +23176,,Guernsey,2.0,f +24509,,,1.0,f +13954,,Lebanon,2.0,f +28172,100%,Isle of Man,1.0,f +28489,90%,Malta,5.0,t +40344,100%,,1.0,f +19019,97%,Nicaragua,1484.0,f +24444,,Estonia,1.0,f +20187,100%,Cuba,3.0,t +12505,,Portugal,1.0,f +16725,100%,Turkmenistan,3.0,t +38188,,,2.0,f +22005,100%,,1.0,f +28697,100%,Nauru,5.0,t +7246,100%,Niue,6.0,f +30318,,,1.0,t +28697,100%,Nauru,5.0,t +14339,99%,Jersey,5.0,f +26488,100%,Isle of Man,10.0,f +26488,100%,Isle of Man,10.0,f +6338,100%,Isle of Man,6.0,f +22149,,Venezuela,1.0,t +11416,,,1.0,t +16566,,,1.0,f +19562,,,1.0,f +10487,100%,Burkina Faso,2.0,f +13723,100%,Gambia,4.0,t +40535,57%,Uzbekistan,1.0,f +2303,,Kiribati,1.0,f +45828,90%,Togo,9.0,f +35950,,,1.0,t +33604,90%,Marshall Islands,8.0,t +29904,100%,,1.0,f +21402,,,1.0,f +39305,67%,,1.0,f +47493,33%,,1.0,f +3853,30%,Denmark,3.0,f +18843,,,1.0,t +10954,100%,Uganda,2.0,f +17827,100%,,1.0,f +32203,100%,Barbados,176.0,f +43739,100%,,2.0,f +22721,100%,Ecuador,109.0,f +26329,,Chile,1.0,f +46312,,Malawi,1.0,f +14514,,China,80.0,t +1256,75%,Uganda,1.0,f +37805,,,1.0,f +43288,,,1.0,t +45675,90%,Maldives,1.0,f +46582,90%,,1.0,f +23494,100%,Philippines,2.0,t +11599,75%,,4.0,f +8967,100%,Uganda,3.0,f +47205,100%,,4.0,f +13265,,Philippines,2.0,t +6945,100%,Cuba,8.0,f +30448,100%,,1.0,f +35051,100%,,1.0,f +37043,100%,Pakistan,11.0,f +37043,100%,Pakistan,11.0,f +5908,,,2.0,t +29647,100%,Peru,1305.0,f +24418,100%,Fiji,2.0,t +13354,100%,Isle of Man,2.0,t +33604,90%,Marshall Islands,8.0,t +42993,,,1.0,t +36178,100%,,4.0,t +20981,100%,Kenya,1.0,f +15006,,,1.0,f +10843,,,1.0,f +44547,100%,Venezuela,1.0,f +29537,,Gambia,1.0,f +21882,,,1.0,t +3633,,,1.0,t +11831,100%,,1.0,f +44361,,,1.0,f +1402,,Turkmenistan,2.0,f +863,100%,Indonesia,6.0,f +12332,,,2.0,f +9973,,,1.0,f +2229,,,1.0,f +23582,98%,Montserrat,17.0,f +37736,100%,Tonga,1.0,f +24787,0%,,1.0,f +10853,100%,Guinea,5.0,f +40822,,Estonia,2.0,t +26933,,,1.0,f +4730,,,1.0,f +29647,100%,Peru,1305.0,f +29973,,,2.0,f +29647,100%,Peru,1305.0,f +294,100%,,1.0,f +16999,100%,,1.0,f +20638,,,1.0,f +29647,100%,Peru,1305.0,f +21908,100%,Niue,49.0,f +20153,96%,Reunion,51.0,f +43598,,,2.0,f +19602,100%,Lithuania,24.0,f +29647,100%,Peru,1305.0,f +29108,,,1.0,f +38661,100%,,1.0,f +29647,100%,Peru,1305.0,f +7329,,Jersey,1.0,f +48760,98%,Ghana,24.0,f +29647,100%,Peru,1305.0,f +20770,100%,,2.0,f +40121,,,1.0,f +48760,98%,Ghana,24.0,f +48760,98%,Ghana,24.0,f +48760,98%,Ghana,24.0,f +48760,98%,Ghana,24.0,f +48760,98%,Ghana,24.0,f +21338,90%,,1.0,f +48760,98%,Ghana,24.0,f +48760,98%,Ghana,24.0,f +40704,,Sao Tome and Principe,1.0,t +20403,,,1.0,f +48760,98%,Ghana,24.0,f +48760,98%,Ghana,24.0,f +8788,,,1.0,f +48760,98%,Ghana,24.0,f +2597,100%,Nicaragua,13.0,t +32038,100%,Indonesia,35.0,f +34019,,,1.0,t +48760,98%,Ghana,24.0,f +19079,100%,,3.0,f +21908,100%,Niue,49.0,f +33927,100%,Barbados,9.0,f +35391,100%,,2.0,t +36158,100%,Malta,4.0,f +48293,100%,,2.0,t +41713,,,1.0,f +38530,100%,,2.0,f +39266,,,1.0,f +21908,100%,Niue,49.0,f +6599,100%,Niue,2.0,f +45648,88%,Senegal,1.0,f +10202,89%,Nicaragua,10.0,f +49933,,Reunion,6.0,f +26269,100%,,4.0,f +49933,,Reunion,6.0,f +42124,,Bosnia and Herzegovina,4.0,f +13881,100%,,1.0,f +8494,,,2.0,f +21742,,Lebanon,1.0,f +10684,100%,,1.0,f +12458,,Rwanda,2.0,t +25284,,,1.0,f +356,99%,Wallis and Futuna,32.0,t +1783,100%,Tunisia,2.0,t +13395,,,1.0,t +29647,100%,Peru,1305.0,f +42328,93%,Russian Federation,14.0,f +31816,,,1.0,f +34895,100%,Estonia,16.0,t +36642,100%,Holy See (Vatican City State),4.0,t +19251,100%,,1.0,f +15743,,,1.0,f +863,100%,Indonesia,6.0,f +20205,,Barbados,1.0,f +3979,,Lebanon,2.0,f +40928,100%,Grenada,1.0,f +22169,100%,,3.0,f +863,100%,Indonesia,6.0,f +34104,,,1.0,t +24819,100%,Palestinian Territory,2.0,t +10894,100%,,1.0,f +35993,,Russian Federation,1.0,f +28802,100%,,1.0,f +14984,100%,,2.0,f +32505,100%,,2.0,f +20466,100%,Anguilla,1.0,f +49249,,,2.0,f +2777,100%,,1.0,f +34932,,Uganda,1.0,t +13205,,,1.0,f +19591,50%,,1.0,f +28071,100%,Cape Verde,4.0,t +44957,100%,Uzbekistan,8.0,t +40993,100%,Montserrat,15.0,f +40993,100%,Montserrat,15.0,f +40993,100%,Montserrat,15.0,f +9040,,,1.0,f +42265,,,1.0,t +41411,,,1.0,t +43739,100%,,2.0,f +16081,,,1.0,t +41633,,,1.0,f +2659,100%,,3.0,t +38014,,United Kingdom,1.0,f +1629,,,1.0,t +36998,92%,Lebanon,10.0,f +25548,100%,El Salvador,2.0,f +7489,,,1.0,f +36383,,,2.0,f +46808,60%,Rwanda,3.0,f +38530,100%,,2.0,f +49289,50%,Gambia,3.0,f +27124,100%,,1.0,f +863,100%,Indonesia,6.0,f +33375,,,1.0,f +32080,,Nicaragua,3.0,f +13489,,Maldives,1.0,f +27278,,Brazil,2.0,t +30283,100%,Brazil,15.0,f +27587,75%,,1.0,f +219,100%,Congo,2.0,f +21463,100%,Cocos (Keeling) Islands,1.0,f +28828,100%,Isle of Man,198.0,t +16789,100%,French Guiana,1.0,t +47016,86%,,1.0,f +3815,100%,,1.0,f +19433,50%,France,2.0,f +2669,100%,,1.0,f +35826,,,2.0,f +14692,,French Guiana,1.0,f +38034,80%,,1.0,f +11197,,Turkmenistan,3.0,t +44130,100%,,1.0,f +37165,100%,Gambia,2.0,f +35381,100%,,3.0,t +39612,100%,,1.0,f +1279,100%,,5.0,f +35818,,,1.0,t +23525,100%,,1.0,f +28163,100%,Sao Tome and Principe,5.0,t +16396,,,1.0,f +28163,100%,Sao Tome and Principe,5.0,t +30592,,,1.0,f +42171,0%,,1.0,f +20644,80%,Marshall Islands,1.0,f +38872,100%,,2.0,f +8540,,,1.0,t +48967,100%,,1.0,t +12857,100%,,2.0,f +6056,,,1.0,f +14769,100%,Kiribati,4.0,t +863,100%,Indonesia,6.0,f +10853,100%,Guinea,5.0,f +48045,,,1.0,t +38917,38%,,2.0,t +44561,100%,,1.0,f +22250,100%,,4.0,f +11286,,,1.0,f +33579,,,1.0,t +11400,67%,Niue,1.0,t +25476,100%,Fiji,11.0,f +36310,100%,,1.0,f +42394,100%,Marshall Islands,2.0,f +11744,100%,Kenya,4.0,f +12438,100%,,1.0,t +2260,100%,Gambia,1.0,f +11615,,,1.0,t +5886,94%,Fiji,25.0,t +1166,,Lithuania,9.0,t +24772,90%,Denmark,10.0,f +19560,100%,Nicaragua,2.0,t +9560,100%,Nauru,1.0,f +3581,100%,,1.0,f +43777,100%,Denmark,18.0,f +22721,100%,Ecuador,109.0,f +16053,,,1.0,f +22922,,,1.0,f +27063,100%,United Kingdom,2.0,f +40942,,,1.0,t +24776,100%,Russian Federation,1.0,f +16596,100%,Congo,3.0,f +42985,100%,,1.0,f +9455,,,1.0,f +26701,100%,,2.0,f +42929,100%,,1.0,f +32068,100%,,1.0,f +8601,,Angola,16.0,f +44879,100%,,1.0,f +38599,,,1.0,f +15189,79%,China,21.0,f +45546,100%,Cape Verde,19.0,t +25252,,Congo,1.0,t +21908,100%,Niue,49.0,f +48833,100%,,1.0,f +17569,,,2.0,f +21908,100%,Niue,49.0,f +302,100%,Tunisia,20.0,f +23949,100%,Slovakia (Slovak Republic),6.0,t +9456,100%,,1.0,f +40257,100%,Kenya,2.0,t +27267,95%,Tonga,6.0,f +30273,100%,,1.0,t +7500,100%,Paraguay,8.0,t +21453,,,1.0,f +36126,100%,Indonesia,2.0,f +33713,,,1.0,t +6242,,,1.0,t +35826,,,2.0,f +4033,38%,,2.0,f +31722,,,1.0,f +9810,100%,,2.0,t +24300,97%,Palau,5.0,t +28828,100%,Isle of Man,198.0,t +38690,,,1.0,t +32891,,,2.0,f +4507,100%,Bangladesh,3.0,t +22087,,,1.0,f +20937,100%,,1.0,f +11994,,,1.0,t +26117,100%,Isle of Man,2.0,t +8104,100%,,4.0,f +43238,100%,Guinea,1.0,t +4507,100%,Bangladesh,3.0,t +39205,100%,France,2.0,f +443,,,1.0,t +11747,,Uzbekistan,3.0,f +31034,,,1.0,t +32036,,,1.0,f +5915,,Russian Federation,4.0,f +45623,100%,Estonia,1.0,f +19178,100%,,2.0,f +32203,100%,Barbados,176.0,f +27907,100%,Puerto Rico,21.0,f +30978,,,1.0,f +18796,,,2.0,t +41294,100%,,1.0,f +32203,100%,Barbados,176.0,f +8225,95%,Barbados,31.0,f +20147,90%,,2.0,f +18796,,,2.0,t +21802,,Lebanon,2.0,f +40486,,Sao Tome and Principe,2.0,t +745,,,1.0,f +1867,,,1.0,t +8225,95%,Barbados,31.0,f +43938,100%,Somalia,1.0,f +8576,,French Guiana,2.0,f +29430,0%,Philippines,3.0,f +17219,,,1.0,f +20045,,,1.0,t +48006,80%,Bouvet Island (Bouvetoya),1.0,t +48198,100%,,1.0,f +21609,,Svalbard & Jan Mayen Islands,1.0,f +4883,,,1.0,f +28766,100%,Estonia,16.0,f +32203,100%,Barbados,176.0,f +28828,100%,Isle of Man,198.0,t +10247,,,1.0,f +14750,,,1.0,t +33841,100%,,1.0,f +29973,,,2.0,f +4944,,,1.0,f +4117,,Guinea,1.0,f +29647,100%,Peru,1305.0,f +12919,93%,Guinea,5.0,f +41518,100%,Montserrat,13.0,t +38011,,,1.0,f +29647,100%,Peru,1305.0,f +20263,99%,Maldives,35.0,t +23078,100%,Ukraine,8.0,f +10711,93%,Uganda,108.0,t +41518,100%,Montserrat,13.0,t +16701,,,1.0,f +46778,,Nicaragua,1.0,f +6057,,,1.0,t +23654,100%,Uzbekistan,23.0,f +44245,100%,,1.0,f +11121,,,1.0,t +28496,100%,Nicaragua,38.0,f +29647,100%,Peru,1305.0,f +10991,100%,Cocos (Keeling) Islands,4.0,f +43149,90%,,2.0,f +36065,,Estonia,2.0,f +20265,100%,Malawi,3.0,f +10991,100%,Cocos (Keeling) Islands,4.0,f +34160,,,1.0,t +7223,,,4.0,f +22397,100%,Lebanon,2.0,t +10188,,,1.0,f +25940,100%,Turks and Caicos Islands,2.0,f +48449,,Uzbekistan,1.0,t +21597,,,1.0,f +25490,0%,,1.0,f +18910,100%,Mauritania,5.0,f +30663,100%,,1.0,t +46099,98%,Uzbekistan,28.0,f +43298,,,1.0,f +31401,75%,,1.0,f +631,,,1.0,t +2386,90%,Mauritania,1.0,t +37987,100%,,1.0,f +22628,,,1.0,t +23571,100%,Wallis and Futuna,1.0,f +6250,,,1.0,t +38567,100%,,1.0,f +18707,100%,Jersey,3.0,f +45669,,Somalia,1.0,f +41889,96%,Uzbekistan,14.0,t +48133,,Isle of Man,45.0,f +13480,,,1.0,f +44417,100%,,1.0,f +20642,100%,,1.0,f +46452,,,1.0,t +35522,100%,Kiribati,10.0,f +35003,,,1.0,t +35485,100%,Lebanon,2.0,f +19994,100%,Saint Helena,5.0,f +36926,100%,Micronesia,2.0,f +34556,100%,Bouvet Island (Bouvetoya),1.0,f +1024,100%,Nicaragua,2.0,f +4623,,Philippines,2.0,f +27907,100%,Puerto Rico,21.0,f +3269,100%,,1.0,f +23654,100%,Uzbekistan,23.0,f +21908,100%,Niue,49.0,f +46793,,,1.0,f +29457,100%,Guinea,3.0,f +10711,93%,Uganda,108.0,t +27785,100%,Uzbekistan,58.0,f +3454,,Guinea,2.0,f +17209,,,1.0,f +27785,100%,Uzbekistan,58.0,f +6700,100%,Guinea,7.0,f +27785,100%,Uzbekistan,58.0,f +49508,,,1.0,f +39052,,,1.0,f +13802,,,1.0,f +25829,100%,,1.0,f +5810,,,1.0,f +38883,80%,,1.0,f +34327,100%,Sao Tome and Principe,1.0,f +12690,100%,Gambia,4.0,t +9227,90%,,3.0,t +2724,100%,,2.0,f +32859,100%,,1.0,f +34551,,,1.0,f +39989,100%,,1.0,f +45041,100%,Niue,2.0,f +17976,100%,,1.0,f +27785,100%,Uzbekistan,58.0,f +13621,,Gambia,1.0,f +35873,,,2.0,f +34237,100%,,1.0,t +23459,100%,,2.0,t +45655,,Guinea,1.0,t +32760,100%,,2.0,f +7223,,,4.0,f +47322,,,1.0,f +43108,100%,Vietnam,2.0,f +25819,92%,,6.0,t +5766,100%,,1.0,f +44169,97%,Portugal,39.0,f +42,98%,Micronesia,18.0,f +17064,,,1.0,f +46099,98%,Uzbekistan,28.0,f +5877,,,1.0,t +43370,,,1.0,f +14252,86%,,1.0,f +32203,100%,Barbados,176.0,f +17093,100%,,1.0,f +49587,100%,Brazil,1.0,f +36609,,,1.0,f +11614,100%,Niue,1.0,f +25532,,Nauru,1.0,f +32203,100%,Barbados,176.0,f +20062,,,1.0,f +23217,100%,,1.0,f +16906,,Costa Rica,1.0,t +32038,100%,Indonesia,35.0,f +8966,,,1.0,f +41188,,,1.0,f +19994,100%,Saint Helena,5.0,f +32203,100%,Barbados,176.0,f +42210,100%,,2.0,f +6512,100%,,1.0,f +40084,70%,,3.0,f +42210,100%,,2.0,f +41085,,,1.0,f +9721,,Svalbard & Jan Mayen Islands,2.0,f +3188,100%,,3.0,f +12326,50%,France,3.0,t +19766,40%,Monaco,3.0,f +33486,100%,Sao Tome and Principe,1.0,f +32203,100%,Barbados,176.0,f +48434,,,1.0,t +13640,,,1.0,f +29647,100%,Peru,1305.0,f +1149,,,1.0,f +32807,100%,,1.0,t +48133,,Isle of Man,45.0,f +26500,,,1.0,f +30283,100%,Brazil,15.0,f +302,100%,Tunisia,20.0,f +29647,100%,Peru,1305.0,f +30502,,,1.0,f +14480,,,1.0,f +6031,,Guernsey,3.0,t +32203,100%,Barbados,176.0,f +29647,100%,Peru,1305.0,f +29585,,,1.0,f +27425,100%,,1.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +36039,,Niger,2.0,t +28707,100%,Micronesia,2.0,t +3822,,Uzbekistan,5.0,f +23988,,Niue,4.0,f +19202,,,1.0,f +27785,100%,Uzbekistan,58.0,f +3204,,,1.0,f +49238,,,1.0,f +27785,100%,Uzbekistan,58.0,f +10086,100%,Kenya,2.0,f +43598,,,2.0,f +44537,100%,Tonga,7.0,f +26876,,,1.0,f +45089,100%,Jersey,1.0,f +22089,,,2.0,f +15401,100%,,1.0,t +34529,,,2.0,f +39811,,,1.0,f +17288,,,1.0,f +16275,98%,Maldives,24.0,f +11412,100%,Kiribati,2.0,f +14514,,China,80.0,t +47793,,,2.0,t +6803,,,1.0,f +35625,98%,Estonia,25.0,t +6277,100%,Estonia,6.0,f +4473,,Marshall Islands,1.0,t +3370,,,1.0,f +29647,100%,Peru,1305.0,f +8439,97%,Rwanda,17.0,t +45359,,,1.0,f +6495,89%,Tonga,34.0,f +18368,100%,Gambia,2.0,f +18039,50%,,1.0,f +7038,100%,,1.0,t +34189,100%,Malawi,1.0,f +47057,,Andorra,1.0,t +16817,,,1.0,f +6271,,,1.0,f +37733,100%,,3.0,t +30798,,Marshall Islands,1.0,f +22721,100%,Ecuador,109.0,f +22721,100%,Ecuador,109.0,f +47381,,Indonesia,3.0,f +21885,,,1.0,f +4338,80%,Micronesia,2.0,t +2271,100%,Zimbabwe,3.0,t +43741,,,1.0,f +1135,,,1.0,f +29967,94%,Reunion,5.0,f +34474,,,1.0,f +1380,,,1.0,t +1492,100%,Rwanda,1.0,f +994,,,1.0,f +4409,0%,,1.0,t +11104,100%,,3.0,t +47940,100%,,1.0,f +1325,50%,Guernsey,2.0,t +49847,,,2.0,f +26655,100%,,1.0,t +19943,63%,Isle of Man,34.0,f +39353,100%,Lithuania,2.0,t +40984,,,3.0,t +44582,100%,,1.0,f +46247,,,1.0,t +29647,100%,Peru,1305.0,f +37286,100%,,2.0,f +5788,100%,,1.0,f +10973,,Rwanda,1.0,f +3205,,,1.0,t +16418,100%,Guinea,2.0,f +46527,,,1.0,f +48068,100%,,4.0,f +26235,100%,El Salvador,3.0,f +35436,99%,Nicaragua,21.0,f +27266,,,1.0,f +27785,100%,Uzbekistan,58.0,f +27785,100%,Uzbekistan,58.0,f +27785,100%,Uzbekistan,58.0,f +27785,100%,Uzbekistan,58.0,f +27785,100%,Uzbekistan,58.0,f +14535,88%,Montserrat,18.0,f +27785,100%,Uzbekistan,58.0,f +27785,100%,Uzbekistan,58.0,f +27785,100%,Uzbekistan,58.0,f +27785,100%,Uzbekistan,58.0,f +15917,98%,,3.0,f +40376,,Venezuela,1.0,f +32336,,,1.0,f +25510,,,1.0,t +44966,100%,Guinea,21.0,f +18288,90%,,1.0,f +22574,,,1.0,f +38242,85%,Rwanda,3.0,t +6490,100%,Croatia,1.0,t +45858,100%,,1.0,t +47710,100%,,2.0,t +41546,100%,Mauritania,21.0,f +9337,80%,Estonia,2.0,f +46294,,Lebanon,1.0,f +18522,,El Salvador,1.0,f +38043,100%,Kiribati,1.0,f +9693,100%,Vanuatu,8.0,f +43426,,,1.0,t +18301,,,1.0,f +24865,,,2.0,f +48446,100%,,1.0,f +4692,100%,Isle of Man,3.0,t +4744,100%,,1.0,f +1436,,,1.0,f +12941,100%,Lebanon,1.0,f +43627,,,1.0,f +22425,100%,Andorra,1.0,f +38424,,,1.0,f +5200,,Denmark,1.0,f +3277,,,1.0,f +9016,,,1.0,t +25318,,,1.0,f +33807,,Indonesia,1.0,f +42371,,,1.0,f +46715,100%,Gibraltar,2.0,t +29571,,,2.0,f +23577,,,1.0,f +49803,,,1.0,f +48502,100%,Nicaragua,11.0,t +25775,,Lebanon,1.0,f +35134,,Ecuador,2.0,f +30690,,,1.0,t +20457,,,1.0,t +9396,,Netherlands,2.0,f +19142,90%,Niger,9.0,f +31564,100%,,1.0,f +41119,100%,Turks and Caicos Islands,1.0,t +44356,,,1.0,t +44439,100%,Marshall Islands,2.0,t +17117,,Estonia,1.0,f +45793,100%,Niue,5.0,t +9076,100%,,2.0,f +11747,,Uzbekistan,3.0,f +4572,100%,,2.0,t +45828,90%,Togo,9.0,f +48598,100%,Monaco,2.0,t +5808,,,1.0,t +30333,100%,Nicaragua,1.0,f +11432,,,1.0,f +17165,100%,,1.0,t +48133,,Isle of Man,45.0,f +7548,100%,Jersey,1.0,f +45463,100%,Mauritania,2.0,t +26268,100%,,3.0,f +48133,,Isle of Man,45.0,f +48250,,,1.0,f +48133,,Isle of Man,45.0,f +48133,,Isle of Man,45.0,f +1323,,,1.0,t +27306,100%,Kiribati,2.0,f +48133,,Isle of Man,45.0,f +19053,100%,Svalbard & Jan Mayen Islands,4.0,t +29902,,,1.0,t +26912,,,1.0,t +49438,,,1.0,t +7594,,Croatia,1.0,t +44344,100%,,2.0,f +28828,100%,Isle of Man,198.0,t +17188,100%,Niger,1.0,t +9076,100%,,2.0,f +6867,,,1.0,t +45156,,,1.0,t +3009,,,1.0,f +24265,75%,Ecuador,2.0,f +18729,100%,Montserrat,1.0,t +40471,100%,Cuba,1.0,f +19486,100%,,2.0,t +38071,80%,Zimbabwe,4.0,f +37268,,,1.0,t +239,,,1.0,t +8842,100%,Slovakia (Slovak Republic),3.0,f +21997,,Uzbekistan,1.0,t +12810,,,1.0,f +49721,100%,Micronesia,2.0,t +15567,100%,Slovakia (Slovak Republic),4.0,f +27735,,,1.0,f +1481,,,1.0,f +36352,,,2.0,f +45562,100%,,3.0,f +24114,70%,Lebanon,2.0,t +43344,60%,Maldives,5.0,f +34769,80%,Pakistan,3.0,t +32078,,Andorra,1.0,t +29916,100%,Niue,4.0,t +1095,,,1.0,f +24114,70%,Lebanon,2.0,t +28114,97%,Bouvet Island (Bouvetoya),16.0,f +45832,,,1.0,t +28114,97%,Bouvet Island (Bouvetoya),16.0,f +6884,,Micronesia,2.0,t +42245,,,1.0,f +41455,100%,,1.0,t +11942,,,1.0,f +21908,100%,Niue,49.0,f +26926,,,1.0,t +12302,100%,Malawi,1.0,f +41479,,,1.0,f +28504,,,1.0,f +11334,100%,Sao Tome and Principe,3.0,t +40248,,,1.0,f +6581,,Guinea,1.0,f +39040,100%,,1.0,f +42333,,,1.0,f +46824,,Sao Tome and Principe,3.0,f +14166,,,1.0,f +18077,100%,Sao Tome and Principe,139.0,f +18077,100%,Sao Tome and Principe,139.0,f +8438,62%,Nicaragua,9.0,t +41849,,Lebanon,1.0,f +26024,,,1.0,t +18077,100%,Sao Tome and Principe,139.0,f +3274,86%,Barbados,24.0,f +9141,,,1.0,t +18128,,,1.0,f +11866,100%,,1.0,f +18077,100%,Sao Tome and Principe,139.0,f +6031,,Guernsey,3.0,t +18077,100%,Sao Tome and Principe,139.0,f +24757,100%,,3.0,f +3274,86%,Barbados,24.0,f +45293,90%,,2.0,f +3274,86%,Barbados,24.0,f +24752,,Estonia,2.0,f +37225,,,1.0,f +4574,,,1.0,f +35356,100%,Russian Federation,2.0,t +7134,100%,Tanzania,2.0,f +20116,,Monaco,1.0,f +10733,,,1.0,f +16739,,,2.0,f +1227,,,2.0,t +39587,,,1.0,f +21022,,,1.0,t +45836,,,1.0,f +3914,100%,,1.0,f +29063,,Uzbekistan,1.0,f +1227,,,2.0,t +11427,,Slovakia (Slovak Republic),4.0,t +4760,,,1.0,f +15536,100%,,1.0,f +15404,,,1.0,t +28114,97%,Bouvet Island (Bouvetoya),16.0,f +9625,0%,,1.0,f +38271,100%,,1.0,t +9250,100%,Nicaragua,1.0,t +2259,,Faroe Islands,1.0,f +15155,100%,,3.0,t +27907,100%,Puerto Rico,21.0,f +17949,100%,China,2.0,t +4614,,Rwanda,1.0,f +15522,,,1.0,t +21908,100%,Niue,49.0,f +14514,,China,80.0,t +27082,,Russian Federation,1.0,f +18077,100%,Sao Tome and Principe,139.0,f +23078,100%,Ukraine,8.0,f +41198,100%,Lebanon,1.0,t +18077,100%,Sao Tome and Principe,139.0,f +24033,100%,Uganda,45.0,f +4939,100%,Estonia,1.0,f +46653,78%,,1.0,t +18466,100%,,1.0,f +35183,100%,United Kingdom,1.0,t +45306,89%,Rwanda,7.0,t +18077,100%,Sao Tome and Principe,139.0,f +20348,100%,,1.0,f +20334,99%,Niger,171.0,t +18580,,,1.0,t +29647,100%,Peru,1305.0,f +34115,,,1.0,f +17118,,,1.0,f +10711,93%,Uganda,108.0,t +3274,86%,Barbados,24.0,f +21557,,,1.0,f +3635,,,1.0,f +6495,89%,Tonga,34.0,f +1090,100%,,1.0,f +12320,100%,Bosnia and Herzegovina,20.0,f +18986,,,1.0,f +27907,100%,Puerto Rico,21.0,f +38464,25%,Nauru,1.0,t +23399,,Ghana,2.0,f +36018,100%,,7.0,f +12320,100%,Bosnia and Herzegovina,20.0,f +27785,100%,Uzbekistan,58.0,f +42212,,,1.0,f +14299,,,1.0,f +26170,100%,,1.0,t +8544,100%,Malawi,3.0,t +19712,,,1.0,f +3274,86%,Barbados,24.0,f +7745,,Jersey,2.0,f +48265,,Papua New Guinea,1.0,f +34909,50%,Gambia,1.0,f +13388,100%,Brazil,5.0,f +32038,100%,Indonesia,35.0,f +27590,100%,Suriname,8.0,t +32203,100%,Barbados,176.0,f +3274,86%,Barbados,24.0,f +10109,83%,Togo,2.0,f +29875,,,1.0,t +19109,100%,Philippines,4.0,f +37793,,,1.0,t +19109,100%,Philippines,4.0,f +23043,100%,,1.0,t +42263,,,1.0,f +35169,100%,Micronesia,3.0,f +10189,,,1.0,f +35276,,,2.0,t +9269,,,2.0,t +24119,,,1.0,f +18251,,,1.0,t +23582,98%,Montserrat,17.0,f +39276,100%,Estonia,3.0,f +18760,100%,,1.0,f +46518,,,1.0,t +9138,,,1.0,f +11159,100%,,1.0,t +18077,100%,Sao Tome and Principe,139.0,f +21114,100%,,1.0,t +7492,100%,Guinea,3.0,f +15057,,Malawi,1.0,f +2110,100%,Denmark,4.0,t +17394,0%,Nicaragua,49.0,f +622,,,1.0,t +19325,100%,Uzbekistan,1.0,f +20333,100%,,1.0,f +45965,100%,Estonia,8.0,f +16328,100%,,1.0,f +23381,100%,Uzbekistan,1.0,f +11241,,,1.0,f +6543,100%,United Kingdom,3.0,t +31405,,,1.0,f +20153,96%,Reunion,51.0,f +4729,,,1.0,t +17229,,,1.0,t +11044,79%,,5.0,f +36739,,,1.0,f +47736,,,1.0,f +732,100%,Maldives,2.0,f +22244,100%,Finland,6.0,t +11747,,Uzbekistan,3.0,f +11471,100%,,1.0,f +32657,100%,Nauru,1.0,t +1927,,,1.0,f +24702,,,1.0,f +29647,100%,Peru,1305.0,f +6331,50%,,1.0,f +46323,,Niger,3.0,f +45162,,Maldives,20.0,f +29647,100%,Peru,1305.0,f +20789,98%,Sao Tome and Principe,13.0,f +21842,,,1.0,f +12896,,,1.0,f +24225,,,1.0,t +29647,100%,Peru,1305.0,f +45965,100%,Estonia,8.0,f +48644,,Chad,2.0,f +34895,100%,Estonia,16.0,t +32521,100%,Montserrat,4.0,t +33770,82%,,2.0,f +171,,,1.0,f +44870,,,1.0,t +49214,,France,1.0,f +27785,100%,Uzbekistan,58.0,f +27785,100%,Uzbekistan,58.0,f +35650,,,1.0,f +27785,100%,Uzbekistan,58.0,f +27785,100%,Uzbekistan,58.0,f +40322,,,1.0,f +16047,80%,Uzbekistan,6.0,f +48644,,Chad,2.0,f +11748,,,1.0,f +30880,100%,,1.0,f +23906,,,1.0,f +21435,100%,Cape Verde,7.0,t +32624,,,1.0,t +27165,100%,,1.0,f +15212,,,1.0,t +5620,,Mauritania,3.0,t +26973,,,1.0,f +38574,83%,,1.0,f +42900,100%,,2.0,t +42431,,,1.0,t +35372,100%,,1.0,f +35913,100%,,1.0,t +43479,100%,Andorra,419.0,t +6905,,Micronesia,2.0,f +11044,79%,,5.0,f +1166,,Lithuania,9.0,t +29647,100%,Peru,1305.0,f +35905,,Micronesia,1.0,f +6167,0%,Croatia,1.0,f +32203,100%,Barbados,176.0,f +32203,100%,Barbados,176.0,f +19128,100%,Uzbekistan,12.0,t +32203,100%,Barbados,176.0,f +29647,100%,Peru,1305.0,f +27785,100%,Uzbekistan,58.0,f +29647,100%,Peru,1305.0,f +27785,100%,Uzbekistan,58.0,f +42814,,Guinea,1.0,f +6495,89%,Tonga,34.0,f +27785,100%,Uzbekistan,58.0,f +27785,100%,Uzbekistan,58.0,f +27785,100%,Uzbekistan,58.0,f +29647,100%,Peru,1305.0,f +40793,100%,,75.0,t +27785,100%,Uzbekistan,58.0,f +48283,0%,,1.0,f +27785,100%,Uzbekistan,58.0,f +34800,0%,,1.0,f +4745,100%,Croatia,119.0,f +27785,100%,Uzbekistan,58.0,f +32203,100%,Barbados,176.0,f +27785,100%,Uzbekistan,58.0,f +27785,100%,Uzbekistan,58.0,f +20622,100%,,1.0,t +18320,50%,Reunion,19.0,t +23973,100%,,1.0,f +21552,,Nicaragua,6.0,f +21908,100%,Niue,49.0,f +18033,,Ghana,1.0,f +34993,100%,Afghanistan,3.0,f +32750,,,1.0,f +32203,100%,Barbados,176.0,f +27785,100%,Uzbekistan,58.0,f +19019,97%,Nicaragua,1484.0,f +16764,100%,Mauritania,2.0,f +10711,93%,Uganda,108.0,t +3274,86%,Barbados,24.0,f +6395,100%,,1.0,f +29647,100%,Peru,1305.0,f +8256,,,1.0,f +3274,86%,Barbados,24.0,f +36716,100%,Bosnia and Herzegovina,3.0,f +25358,,Malawi,1.0,f +4388,100%,,1.0,f +44206,,,1.0,t +3389,100%,Estonia,13.0,f +30155,,Croatia,1.0,f +8046,100%,,1.0,f +43496,100%,Montserrat,18.0,t +45737,,Tonga,29.0,t +28567,,,1.0,f +651,100%,Lebanon,4.0,t +34841,100%,Zimbabwe,22.0,t +19453,100%,,1.0,f +13388,100%,Brazil,5.0,f +47241,,Togo,3.0,f +4225,100%,Costa Rica,2.0,f +22457,80%,Venezuela,1.0,f +34637,,Malawi,1.0,f +43339,,,1.0,t +8317,100%,Bosnia and Herzegovina,2.0,t +29647,100%,Peru,1305.0,f +28828,100%,Isle of Man,198.0,t +47094,,,1.0,f +29647,100%,Peru,1305.0,f +34953,100%,Uzbekistan,4.0,t +18227,100%,,1.0,f +3488,100%,,1.0,f +29647,100%,Peru,1305.0,f +10233,,Barbados,2.0,f +21908,100%,Niue,49.0,f +32113,100%,,2.0,f +23916,,,1.0,f +6046,,,1.0,f +25324,,,1.0,f +29480,100%,French Polynesia,6.0,f +8707,73%,Rwanda,21.0,t +36774,100%,Tonga,19.0,f +45777,,,1.0,t +4073,80%,,1.0,f +27426,0%,,1.0,f +13290,,,1.0,f +13159,67%,,2.0,f +11530,,Indonesia,2.0,t +38976,75%,,1.0,f +18735,100%,,3.0,f +37585,100%,,1.0,f +47090,100%,Croatia,3.0,f +39952,100%,Tonga,21.0,f +38851,,,1.0,t +44322,,,1.0,t +21908,100%,Niue,49.0,f +3274,86%,Barbados,24.0,f +7758,100%,,1.0,f +32203,100%,Barbados,176.0,f +41424,,,1.0,t +5436,100%,Kenya,3.0,t +11067,,,1.0,f +10711,93%,Uganda,108.0,t +23710,100%,Gambia,5.0,f +43772,50%,Mexico,12.0,t +38106,,,1.0,f +13549,,Pakistan,1.0,f +45562,100%,,3.0,f +29012,100%,Tanzania,4.0,t +20781,,,1.0,t +42838,0%,,2.0,f +39805,,,1.0,f +26877,50%,,1.0,f +33523,100%,Venezuela,2.0,f +11295,90%,,1.0,t +8105,0%,,1.0,f +33041,,Puerto Rico,1.0,f +34024,,,1.0,f +42286,94%,Vietnam,9.0,t +40849,,,1.0,f +44566,100%,,1.0,f +40103,,,1.0,t +44101,,,1.0,f +26790,100%,,1.0,f +28464,,,1.0,f +29092,,,1.0,f +24066,,Niue,2.0,t +32113,100%,,2.0,f +9826,,Palestinian Territory,2.0,f +46871,100%,Palestinian Territory,2.0,f +22981,100%,,1.0,f +29647,100%,Peru,1305.0,f +208,100%,,1.0,f +27000,100%,Kenya,2.0,f +29647,100%,Peru,1305.0,f +47623,100%,,1.0,f +19709,,Zimbabwe,1.0,t +23034,99%,Monaco,54.0,f +17841,,Montserrat,1.0,f +33484,100%,,1.0,f +376,100%,,1.0,f +46218,100%,,2.0,f +17547,,Gibraltar,3.0,t +23810,100%,Lithuania,1.0,f +20334,99%,Niger,171.0,t +6734,100%,,6.0,f +29647,100%,Peru,1305.0,f +38170,60%,,1.0,f +32769,100%,,1.0,t +20959,,,1.0,f +49471,100%,,2.0,t +19178,100%,,2.0,f +4527,,,1.0,f +35169,100%,Micronesia,3.0,f +18853,100%,,1.0,f +27114,,Reunion,1.0,f +5688,,,1.0,f +4443,,,1.0,f +14826,100%,Slovakia (Slovak Republic),1.0,f +27788,86%,,1.0,f +44128,100%,,2.0,t +46084,100%,Afghanistan,2.0,t +28330,,,1.0,f +18516,100%,Congo,3.0,t +2607,,,1.0,f +6850,100%,Faroe Islands,3.0,t +32343,50%,,2.0,f +2489,,,1.0,f +43372,,,1.0,f +37972,,,1.0,f +16763,,Russian Federation,1.0,t +4386,,Zimbabwe,4.0,t +45400,100%,,2.0,t +31003,,Niue,3.0,t +31003,,Niue,3.0,t +7612,100%,,1.0,f +27785,100%,Uzbekistan,58.0,f +16806,80%,,1.0,t +894,,,1.0,t +16293,,,1.0,f +15901,,,1.0,f +12755,,,1.0,f +40793,100%,,75.0,t +35972,100%,,3.0,f +44641,,,1.0,f +39417,100%,Marshall Islands,1.0,f +29588,100%,,3.0,f +13584,,,1.0,t +28119,,Monaco,1.0,f +13641,85%,Mauritania,23.0,f +5422,,Bosnia and Herzegovina,1.0,t +29713,,,1.0,f +36103,,Ghana,1.0,f +38391,,,1.0,f +21435,100%,Cape Verde,7.0,t +5045,70%,Zimbabwe,2.0,f +31397,,Lebanon,2.0,f +19180,,,1.0,f +3146,,,1.0,t +15274,,,1.0,t +17971,100%,,1.0,f +10341,,Fiji,1.0,f +19109,100%,Philippines,4.0,f +21269,100%,,1.0,f +496,,,1.0,t +8207,60%,Saint Helena,2.0,f +39788,,,1.0,t +46783,100%,Niue,1.0,t +10109,83%,Togo,2.0,f +30372,,,1.0,f +29565,,,1.0,f +46084,100%,Afghanistan,2.0,t +6227,,,1.0,f +8563,,,1.0,f +20187,100%,Cuba,3.0,t +4386,,Zimbabwe,4.0,t +42835,100%,,2.0,f +40620,100%,Guinea,2.0,f +47216,100%,,1.0,t +22043,100%,,1.0,f +38689,100%,United Kingdom,6.0,t +31232,,,1.0,f +13070,100%,Fiji,45.0,f +28828,100%,Isle of Man,198.0,t +18107,,,1.0,t +34841,100%,Zimbabwe,22.0,t +46290,100%,Micronesia,2.0,f +42522,,,1.0,f +36776,,,1.0,f +32298,,Tonga,1.0,f +46524,,Marshall Islands,2.0,f +16317,100%,,1.0,f +17255,100%,,1.0,f +41020,,,1.0,t +30313,67%,Australia,2.0,f +42286,94%,Vietnam,9.0,t +1195,,,1.0,f +22500,,,1.0,f +23762,,Kenya,2.0,f +20153,96%,Reunion,51.0,f +5370,60%,Kenya,5.0,f +20153,96%,Reunion,51.0,f +37211,,Ghana,2.0,f +22415,50%,,3.0,f +36540,100%,,33.0,t +41740,100%,,1.0,f +13172,,,1.0,f +41911,,Gambia,1.0,f +25876,100%,,5.0,f +44028,,Cape Verde,13.0,f +18270,100%,,1.0,f +33413,100%,,1.0,f +20369,,,1.0,t +30718,100%,,1.0,t +5245,,,1.0,f +50013,100%,Tonga,3.0,f +36375,100%,Mauritania,1.0,f +45509,,Monaco,1.0,f +37034,100%,,2.0,f +36269,,,1.0,f +33572,,,1.0,f +47,100%,Russian Federation,2.0,f +43619,,,1.0,t +14287,,,1.0,f +5737,100%,,2.0,t +34821,,,1.0,f +33361,,United Kingdom,2.0,t +7083,100%,,1.0,f +32247,,Greenland,1.0,f +27174,80%,,1.0,f +2579,,,1.0,f +1825,100%,,2.0,f +34849,,,2.0,f +37089,100%,Tanzania,3.0,t +34849,,,2.0,f +38095,100%,Malawi,2.0,f +37034,100%,,2.0,f +31843,,,1.0,f +19019,97%,Nicaragua,1484.0,f +6304,80%,,2.0,t +5626,100%,Isle of Man,1.0,t +46721,100%,,1.0,t +38394,,,1.0,f +44028,,Cape Verde,13.0,f +7062,,Chile,1.0,t +44028,,Cape Verde,13.0,f +49805,,,1.0,f +40218,100%,Estonia,6.0,f +44028,,Cape Verde,13.0,f +19019,97%,Nicaragua,1484.0,f +26231,,,1.0,t +603,100%,Niue,2.0,f +6721,100%,,2.0,f +6155,100%,Guinea,2.0,t +36722,100%,Philippines,17.0,f +23038,100%,,8.0,f +14796,,,1.0,t +2215,100%,,2.0,f +46584,78%,,1.0,t +28480,,,1.0,f +23140,80%,,1.0,f +23038,100%,,8.0,f +23038,100%,,8.0,f +23038,100%,,8.0,f +46547,100%,Croatia,1.0,t +33117,,Malawi,1.0,t +23038,100%,,8.0,f +4033,38%,,2.0,f +23038,100%,,8.0,f +23038,100%,,8.0,f +35677,,,1.0,f +27308,,,1.0,f +6582,90%,,3.0,f +32369,,Sao Tome and Principe,1.0,f +30076,100%,Guinea,2.0,f +23582,98%,Montserrat,17.0,f +16841,100%,United Kingdom,1.0,f +34421,44%,,1.0,t +47703,100%,Montserrat,2.0,t +5685,,Nicaragua,4.0,f +651,100%,Lebanon,4.0,t +19943,63%,Isle of Man,34.0,f +5685,,Nicaragua,4.0,f +26364,,Holy See (Vatican City State),1.0,f +48952,,,1.0,t +27792,100%,,2.0,f +32203,100%,Barbados,176.0,f +26435,,,1.0,t +29754,,Indonesia,2.0,f +21965,100%,,1.0,f +10375,,,1.0,f +32203,100%,Barbados,176.0,f +33408,100%,Tonga,6.0,f +23430,100%,Reunion,16.0,f +3274,86%,Barbados,24.0,f +18281,100%,Isle of Man,2.0,f +15004,100%,Uzbekistan,88.0,f +15004,100%,Uzbekistan,88.0,f +32203,100%,Barbados,176.0,f +48133,,Isle of Man,45.0,f +15004,100%,Uzbekistan,88.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +11629,100%,,3.0,f +28922,100%,,1.0,f +24996,100%,,1.0,f +33408,100%,Tonga,6.0,f +11567,100%,Niger,31.0,t +2359,100%,,1.0,f +20334,99%,Niger,171.0,t +12332,,,2.0,f +38187,,,1.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +25069,,,1.0,t +6208,73%,,1.0,f +42725,100%,Spain,3.0,t +5832,100%,,17.0,t +271,100%,,1.0,f +21908,100%,Niue,49.0,f +8517,,,2.0,f +47241,,Togo,3.0,f +21908,100%,Niue,49.0,f +35643,,,1.0,f +3274,86%,Barbados,24.0,f +37960,,,1.0,t +8517,,,2.0,f +32038,100%,Indonesia,35.0,f +30376,,,1.0,t +11570,100%,,1.0,f +3274,86%,Barbados,24.0,f +11392,,Kiribati,2.0,f +26038,,,1.0,f +39036,100%,,1.0,f +22277,,,1.0,f +19217,98%,Marshall Islands,46.0,f +40736,,,1.0,f +21240,94%,Niger,130.0,f +21240,94%,Niger,130.0,f +20334,99%,Niger,171.0,t +47033,100%,Estonia,1.0,f +33958,100%,,1.0,f +49067,,,1.0,f +20456,100%,,1.0,f +15978,100%,,2.0,f +5685,,Nicaragua,4.0,f +40740,,Isle of Man,1.0,f +44176,,,1.0,f +30076,100%,Guinea,2.0,f +40793,100%,,75.0,t +8043,,Zimbabwe,2.0,f +11514,,,1.0,f +32203,100%,Barbados,176.0,f +44868,,,1.0,t +26404,100%,Kiribati,2.0,f +27738,,Chad,1.0,t +32203,100%,Barbados,176.0,f +32703,100%,,2.0,f +43931,,,1.0,f +38701,40%,Niger,27.0,f +14477,100%,Reunion,26.0,t +15811,100%,,1.0,f +3295,,,1.0,t +12938,92%,Reunion,12.0,f +35779,100%,,1.0,f +48133,,Isle of Man,45.0,f +46727,89%,Philippines,1.0,f +18374,100%,,3.0,f +21908,100%,Niue,49.0,f +44256,,Nicaragua,1.0,t +38701,40%,Niger,27.0,f +29647,100%,Peru,1305.0,f +49382,,El Salvador,1.0,f +17912,100%,Ghana,1.0,f +24743,,Kenya,2.0,f +13115,,,1.0,f +15004,100%,Uzbekistan,88.0,f +8435,,,1.0,f +39552,83%,Bahrain,4.0,t +39598,100%,,1.0,f +41857,,,1.0,f +10993,,Mauritania,8.0,f +16321,100%,Tunisia,1.0,f +21297,,,1.0,f +23430,100%,Reunion,16.0,f +35132,100%,,2.0,t +49572,,Lebanon,2.0,f +21121,75%,Malta,2.0,f +17099,,Ghana,1.0,f +15112,,Malawi,2.0,f +6894,80%,Estonia,47.0,t +11116,,,1.0,t +49712,,Sao Tome and Principe,1.0,f +36600,,,1.0,f +32038,100%,Indonesia,35.0,f +26597,100%,,2.0,f +746,,Kiribati,4.0,f +30478,80%,,2.0,f +7950,,,1.0,f +18399,100%,Kiribati,8.0,t +38865,100%,,2.0,t +46313,,,1.0,t +28648,97%,Estonia,5.0,f +31314,100%,Guinea,4.0,t +25657,,,1.0,t +33537,,,1.0,f +20731,100%,,2.0,f +31158,99%,Suriname,11.0,f +46524,,Marshall Islands,2.0,f +44091,100%,Chile,2.0,f +21426,100%,,2.0,f +36024,,,1.0,t +1464,,,1.0,f +48328,90%,,1.0,t +44892,100%,Lebanon,3.0,f +23035,100%,,2.0,f +19713,,,1.0,t +48985,97%,Guinea,8.0,f +12715,100%,Estonia,29.0,f +21403,95%,Vietnam,8.0,f +32038,100%,Indonesia,35.0,f +44892,100%,Lebanon,3.0,f +36774,100%,Tonga,19.0,f +36683,,Switzerland,1.0,f +30964,,,1.0,f +17133,100%,Kiribati,1.0,t +41916,67%,,1.0,f +24098,,,1.0,f +11375,,Saint Helena,2.0,t +42218,,,1.0,f +44717,100%,Monaco,2.0,t +40822,,Estonia,2.0,t +41928,87%,Nicaragua,9.0,f +40793,100%,,75.0,t +44028,,Cape Verde,13.0,f +13684,100%,Isle of Man,1.0,f +12919,93%,Guinea,5.0,f +27104,,,1.0,f +4525,98%,El Salvador,9.0,t +12919,93%,Guinea,5.0,f +11323,,,1.0,f +48212,,,1.0,f +23117,82%,,33.0,f +36157,100%,Tonga,6.0,t +12919,93%,Guinea,5.0,f +29109,,Anguilla,1.0,f +20901,100%,El Salvador,1.0,f +26395,100%,,2.0,f +29684,100%,,1.0,f +25876,100%,,5.0,f +23117,82%,,33.0,f +3155,,,3.0,t +7834,94%,Mexico,13.0,f +29647,100%,Peru,1305.0,f +17249,,,1.0,f +18193,0%,,2.0,f +11170,100%,Zimbabwe,1.0,f +4986,100%,Afghanistan,15.0,f +13738,,,1.0,f +40689,100%,Cuba,23.0,f +1977,,,1.0,t +43821,,Vietnam,3.0,t +4986,100%,Afghanistan,15.0,f +31808,,Lebanon,1.0,f +48418,98%,Bosnia and Herzegovina,30.0,f +29123,100%,Zimbabwe,16.0,t +44109,100%,United Kingdom,20.0,f +4986,100%,Afghanistan,15.0,f +28828,100%,Isle of Man,198.0,t +30013,,,1.0,t +27145,100%,Rwanda,2.0,t +25876,100%,,5.0,f +25876,100%,,5.0,f +34841,100%,Zimbabwe,22.0,t +6022,100%,,4.0,t +9760,,,1.0,f +6599,100%,Niue,2.0,f +36611,71%,Maldives,14.0,f +25876,100%,,5.0,f +27319,100%,,1.0,f +13638,,,1.0,t +6022,100%,,4.0,t +38428,100%,Niue,3.0,f +43710,100%,,1.0,f +46985,,,1.0,f +23257,,Chad,3.0,f +7320,100%,,1.0,t +24802,67%,,3.0,f +26989,,Sao Tome and Principe,1.0,f +28694,,Somalia,1.0,t +29647,100%,Peru,1305.0,f +21833,,,2.0,f +29647,100%,Peru,1305.0,f +7728,,Russian Federation,1.0,f +14477,100%,Reunion,26.0,t +29647,100%,Peru,1305.0,f +6107,90%,Kiribati,4.0,f +29480,100%,French Polynesia,6.0,f +26805,,,1.0,f +1311,100%,,1.0,t +18071,,,1.0,t +20202,,,2.0,f +21257,100%,,1.0,f +4217,,Kenya,52.0,f +20663,100%,,1.0,t +45119,,Rwanda,2.0,f +12919,93%,Guinea,5.0,f +13119,100%,,1.0,f +10993,,Mauritania,8.0,f +10993,,Mauritania,8.0,f +7375,,,1.0,f +4330,94%,Ukraine,60.0,t +12965,100%,Vietnam,11.0,t +21554,83%,Philippines,3.0,t +5000,,,1.0,f +24033,100%,Uganda,45.0,f +27737,,,1.0,f +24574,,,1.0,f +18459,100%,Zimbabwe,100.0,f +41269,,Philippines,7.0,f +47424,,,1.0,t +48133,,Isle of Man,45.0,f +46385,70%,,1.0,f +6715,,,1.0,f +40063,100%,,1.0,t +36170,,Malta,6.0,f +25439,,,1.0,t +22609,0%,,2.0,f +36170,,Malta,6.0,f +4309,100%,,1.0,f +44292,,,1.0,t +33141,,,1.0,t +1775,100%,Denmark,2.0,f +33823,78%,France,17.0,t +35851,,Russian Federation,2.0,t +44218,100%,Kiribati,3.0,f +47198,0%,,1.0,t +49537,100%,,1.0,f +11692,,,1.0,f +5464,100%,,1.0,f +30924,,Sao Tome and Principe,7.0,t +37646,100%,Estonia,60.0,f +4475,,,1.0,f +19543,,Bosnia and Herzegovina,5.0,f +6678,,China,1.0,f +39969,,,1.0,f +33371,90%,,1.0,f +28813,,Venezuela,1.0,t +11962,,,1.0,f +9239,100%,Cuba,17.0,f +13877,,Fiji,1.0,t +48481,,,1.0,t +25719,,China,4.0,t +6582,90%,,3.0,f +27454,,,2.0,t +47710,100%,,2.0,t +38120,100%,Russian Federation,4.0,t +49502,,,1.0,f +27785,100%,Uzbekistan,58.0,f +14504,,,2.0,f +27785,100%,Uzbekistan,58.0,f +41518,100%,Montserrat,13.0,t +41518,100%,Montserrat,13.0,t +3936,100%,,1.0,f +7278,100%,Kiribati,2.0,f +23151,100%,Andorra,3.0,f +31903,100%,Sao Tome and Principe,2.0,t +41518,100%,Montserrat,13.0,t +48251,97%,Zimbabwe,6.0,f +8439,97%,Rwanda,17.0,t +15252,100%,,4.0,f +2744,,Gibraltar,5.0,f +16275,98%,Maldives,24.0,f +16275,98%,Maldives,24.0,f +27785,100%,Uzbekistan,58.0,f +14690,100%,,1.0,t +48435,100%,,1.0,t +31194,,,1.0,f +30558,,,1.0,f +39034,,,1.0,f +26983,,,1.0,f +4680,56%,,1.0,t +30361,100%,,1.0,f +9438,,,3.0,t +7833,100%,Isle of Man,2.0,f +29992,,,1.0,f +7377,,,1.0,t +29621,100%,,1.0,f +29643,,,1.0,t +22442,100%,Maldives,1.0,t +34117,,,1.0,f +11568,100%,,1.0,f +4431,,,1.0,t +16932,,,1.0,f +7877,,,1.0,f +19765,100%,Zimbabwe,1.0,f +46729,100%,,1.0,f +24494,,Maldives,1.0,f +33850,,,1.0,t +11146,,,1.0,f +33782,100%,,1.0,t +31634,,Estonia,1.0,f +43827,100%,Marshall Islands,2.0,f +32527,100%,Tonga,7.0,f +7101,,Isle of Man,1.0,f +32890,,,1.0,t +41139,,,1.0,f +40890,100%,,1.0,f +21594,100%,Kiribati,1.0,f +25239,100%,Cape Verde,1.0,f +19771,,,1.0,f +9716,100%,,1.0,t +11853,100%,,2.0,t +27544,,,1.0,f +45809,,,1.0,t +38955,,,1.0,t +11479,100%,,1.0,t +5118,,Lebanon,1.0,f +39112,100%,,1.0,t +9174,0%,,1.0,f +4816,90%,Somalia,3.0,f +19229,,,1.0,t +23490,,Lebanon,2.0,f +41449,100%,Jersey,1.0,t +8795,,,1.0,f +19533,,,1.0,f +32561,100%,Lebanon,3.0,f +1066,100%,,1.0,f +28133,,,1.0,f +21611,,,1.0,f +17317,50%,Micronesia,2.0,t +20409,90%,,2.0,f +25610,,,1.0,f +42268,,Russian Federation,1.0,t +49633,,Gambia,1.0,t +14727,,,1.0,f +40714,,,1.0,t +44109,100%,United Kingdom,20.0,f +44109,100%,United Kingdom,20.0,f +44109,100%,United Kingdom,20.0,f +10778,,,1.0,f +5639,100%,,1.0,f +18078,100%,Montserrat,13.0,t +32886,90%,Russian Federation,6.0,f +15710,,,1.0,t +33292,,,1.0,t +6756,,,1.0,f +9398,100%,,1.0,f +20352,,,1.0,t +2055,,,1.0,f +26892,100%,Togo,12.0,t +27785,100%,Uzbekistan,58.0,f +8364,,Chad,1.0,f +27785,100%,Uzbekistan,58.0,f +47010,,,1.0,t +13070,100%,Fiji,45.0,f +43496,100%,Montserrat,18.0,t +42568,,Uzbekistan,1.0,f +38395,,,1.0,t +49180,100%,,1.0,f +27616,,,1.0,t +10281,100%,,1.0,f +32091,100%,Russian Federation,1.0,t +7148,,,1.0,f +40304,100%,France,3.0,f +4745,100%,Croatia,119.0,f +25777,,Bouvet Island (Bouvetoya),3.0,t +17974,,,3.0,f +17974,,,3.0,f +38701,40%,Niger,27.0,f +5277,100%,Vietnam,10.0,f +23687,,,1.0,f +3056,,,1.0,f +4745,100%,Croatia,119.0,f +38701,40%,Niger,27.0,f +18077,100%,Sao Tome and Principe,139.0,f +14223,,Gibraltar,1.0,t +17199,,,1.0,f +2194,,,1.0,t +32173,,Zimbabwe,1.0,f +3584,100%,Sao Tome and Principe,1.0,f +48117,98%,Ukraine,41.0,f +18232,100%,Guinea,1.0,f +4932,,,1.0,f +3830,,,1.0,f +31065,,,16.0,f +44367,91%,Brazil,12.0,f +25902,,,1.0,f +37483,100%,Gibraltar,3.0,f +3044,100%,Russian Federation,1.0,t +12595,,,1.0,f +17001,100%,,2.0,t +21351,100%,Niue,3.0,f +21460,,,1.0,t +2911,,,1.0,f +27975,0%,,1.0,t +36172,100%,Niue,2.0,t +31668,100%,,1.0,f +39225,100%,,1.0,f +34916,100%,,2.0,f +48929,100%,Niue,4.0,f +11108,,,1.0,f +18445,70%,,2.0,t +7889,,,1.0,f +21108,,,1.0,f +32047,,,1.0,t +49828,100%,,1.0,t +13606,100%,,4.0,f +12674,,,1.0,t +28795,100%,,1.0,t +25511,,,1.0,f +168,,Portugal,1.0,f +38352,100%,,1.0,f +48133,,Isle of Man,45.0,f +40781,100%,Guinea,5.0,f +32203,100%,Barbados,176.0,f +25326,,Zimbabwe,1.0,f +3019,100%,Barbados,18.0,f +39143,89%,,33.0,f +47648,100%,Lebanon,3.0,t +36027,100%,,2.0,f +49739,100%,,1.0,f +6814,100%,Sao Tome and Principe,1.0,f +28371,,Bouvet Island (Bouvetoya),1.0,f +23881,,,1.0,f +36027,100%,,2.0,f +3990,,,1.0,f +33355,,,1.0,f +40421,96%,Jersey,29.0,t +43742,,Turks and Caicos Islands,1.0,f +11259,0%,,1.0,t +30220,,,1.0,t +24430,,,1.0,t +25701,50%,,1.0,f +39954,,Tonga,6.0,f +12574,,Philippines,2.0,f +29647,100%,Peru,1305.0,f +13070,100%,Fiji,45.0,f +14376,100%,Niue,1.0,f +20263,99%,Maldives,35.0,t +5937,,,1.0,f +12574,,Philippines,2.0,f +9239,100%,Cuba,17.0,f +37813,,,1.0,f +4217,,Kenya,52.0,f +13070,100%,Fiji,45.0,f +20263,99%,Maldives,35.0,t +37009,80%,Lebanon,3.0,t +19012,,,2.0,f +7746,100%,Canada,2.0,t +39153,100%,,3.0,f +11399,,,1.0,f +9239,100%,Cuba,17.0,f +20263,99%,Maldives,35.0,t +6317,,Bosnia and Herzegovina,1.0,t +26200,,,1.0,f +15806,,,1.0,f +11168,100%,,1.0,f +4745,100%,Croatia,119.0,f +4745,100%,Croatia,119.0,f +29647,100%,Peru,1305.0,f +4745,100%,Croatia,119.0,f +10042,,Indonesia,21.0,f +29647,100%,Peru,1305.0,f +23854,,Uzbekistan,15.0,f +26724,,,1.0,t +40793,100%,,75.0,t +6920,100%,,1.0,f +36977,78%,,2.0,f +7065,,,1.0,f +15390,100%,,1.0,f +26251,100%,,1.0,f +6139,,,1.0,f +30405,,,1.0,f +2958,,,1.0,f +46088,,Ghana,15.0,f +23250,,,1.0,f +39899,75%,,1.0,t +16604,,,1.0,t +7780,,,1.0,f +11482,,,1.0,f +5754,,,1.0,f +41893,100%,,2.0,f +17394,0%,Nicaragua,49.0,f +13572,100%,,1.0,f +25737,,,2.0,f +44028,,Cape Verde,13.0,f +4066,,,1.0,f +5420,100%,Tonga,41.0,f +116,100%,,1.0,f +22963,,,1.0,f +3150,,,2.0,f +29647,100%,Peru,1305.0,f +20263,99%,Maldives,35.0,t +9802,,Indonesia,38.0,t +33673,,,1.0,f +5270,100%,,1.0,f +41304,100%,,3.0,f +7627,,Zimbabwe,1.0,f +49871,,,1.0,f +9976,100%,Russian Federation,2.0,f +38183,0%,Isle of Man,1.0,f +28828,100%,Isle of Man,198.0,t +20410,100%,,1.0,t +9802,,Indonesia,38.0,t +16712,100%,,1.0,f +24636,100%,,1.0,f +31707,100%,Niger,48.0,f +17,,,1.0,f +5387,,,1.0,f +43051,,,1.0,f +222,89%,,16.0,f +11963,100%,Croatia,2.0,f +30216,98%,Maldives,34.0,f +35737,100%,,1.0,f +18247,95%,Iran,80.0,t +12164,100%,Nicaragua,8.0,f +41640,100%,Guinea,2.0,f +3150,,,2.0,f +38701,40%,Niger,27.0,f +45049,40%,,2.0,f +3386,100%,Isle of Man,2.0,f +46177,,,1.0,f +3098,100%,Mauritania,2.0,t +18459,100%,Zimbabwe,100.0,f +18247,95%,Iran,80.0,t +35298,90%,Indonesia,8.0,t +33872,100%,,1.0,t +16139,,,2.0,f +45817,,,1.0,f +6266,100%,,4.0,f +10042,,Indonesia,21.0,f +6266,100%,,4.0,f +43501,0%,,1.0,f +13612,50%,,1.0,f +44430,,,1.0,f +4322,97%,Tonga,32.0,f +25798,,,1.0,f +24018,,,1.0,t +3688,,,1.0,t +4224,100%,,1.0,f +11879,,,1.0,f +17974,,,3.0,f +16306,,Holy See (Vatican City State),1.0,f +2047,,Isle of Man,2.0,f +4816,90%,Somalia,3.0,f +25819,92%,,6.0,t +45501,100%,Kiribati,7.0,f +49453,0%,,1.0,f +16371,95%,Bouvet Island (Bouvetoya),29.0,f +13688,100%,,1.0,f +28648,97%,Estonia,5.0,f +27148,,,1.0,f +31478,,,1.0,f +6005,100%,,1.0,t +6547,100%,,1.0,f +46435,,,1.0,f +9097,100%,,1.0,f +8391,,,1.0,f +21908,100%,Niue,49.0,f +38506,100%,,1.0,f +45785,,,1.0,f +19958,100%,Congo,40.0,t +18459,100%,Zimbabwe,100.0,f +34557,92%,Russian Federation,1.0,t +47622,100%,Fiji,4.0,f +49927,,,1.0,f +38428,100%,Niue,3.0,f +38428,100%,Niue,3.0,f +30216,98%,Maldives,34.0,f +47622,100%,Fiji,4.0,f +13070,100%,Fiji,45.0,f +41092,100%,,1.0,f +1326,100%,,1.0,f +18247,95%,Iran,80.0,t +47622,100%,Fiji,4.0,f +17521,100%,,1.0,f +4677,100%,Maldives,2.0,f +222,89%,,16.0,f +12357,100%,Gambia,4.0,f +11712,95%,Monaco,4.0,f +23814,,Russian Federation,26.0,f +20280,,,3.0,t +23814,,Russian Federation,26.0,f +23814,,Russian Federation,26.0,f +29647,100%,Peru,1305.0,f +25737,,,2.0,f +46951,,,1.0,t +7223,,,4.0,f +23814,,Russian Federation,26.0,f +23814,,Russian Federation,26.0,f +23814,,Russian Federation,26.0,f +6866,100%,Ghana,2.0,f +23814,,Russian Federation,26.0,f +47648,100%,Lebanon,3.0,t +23814,,Russian Federation,26.0,f +23814,,Russian Federation,26.0,f +49920,,,1.0,t +36225,,Marshall Islands,3.0,f +29647,100%,Peru,1305.0,f +44138,100%,,2.0,f +19952,100%,Zimbabwe,2.0,f +3201,50%,,1.0,f +43496,100%,Montserrat,18.0,t +20200,,Zimbabwe,2.0,f +19019,97%,Nicaragua,1484.0,f +23796,,,1.0,t +41234,,Kenya,1.0,f +16228,,,1.0,f +23295,100%,Bouvet Island (Bouvetoya),2.0,t +19019,97%,Nicaragua,1484.0,f +20074,,,1.0,f +20334,99%,Niger,171.0,t +17298,97%,Barbados,7.0,f +3136,,,1.0,f +34938,100%,,1.0,f +19019,97%,Nicaragua,1484.0,f +31065,,,16.0,f +27442,90%,Solomon Islands,1.0,f +25797,100%,Jersey,1.0,f +30115,,,1.0,f +20196,100%,,2.0,f +37860,100%,,1.0,f +7592,98%,,13.0,t +32203,100%,Barbados,176.0,f +17569,,,2.0,f +24266,100%,,1.0,f +44893,100%,Chad,1.0,t +32203,100%,Barbados,176.0,f +29647,100%,Peru,1305.0,f +26748,100%,,1.0,t +24117,100%,Uzbekistan,1.0,f +18459,100%,Zimbabwe,100.0,f +32353,,Chile,1.0,t +45762,,Isle of Man,1.0,f +42595,,,1.0,t +29647,100%,Peru,1305.0,f +18459,100%,Zimbabwe,100.0,f +49295,,,1.0,f +26489,100%,,1.0,t +32203,100%,Barbados,176.0,f +43324,,Turkmenistan,1.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +4217,,Kenya,52.0,f +29647,100%,Peru,1305.0,f +49811,100%,,2.0,f +32203,100%,Barbados,176.0,f +3432,100%,Nicaragua,1.0,f +4319,100%,Uganda,6.0,f +40629,,,1.0,f +17670,,,1.0,t +28192,,,1.0,t +41745,,Togo,1.0,f +49267,100%,,1.0,f +5771,98%,Vietnam,8.0,f +5771,98%,Vietnam,8.0,f +13945,,,2.0,t +5771,98%,Vietnam,8.0,f +48752,50%,,1.0,f +2332,,Estonia,2.0,t +14583,,Costa Rica,1.0,f +9895,100%,,1.0,t +49368,100%,,2.0,t +6323,100%,,2.0,f +26076,,,1.0,f +8445,,,1.0,f +48003,,,1.0,f +1651,100%,Kiribati,1.0,f +31733,100%,,2.0,f +8482,89%,,1.0,f +23064,,,1.0,f +29647,100%,Peru,1305.0,f +17090,,Gambia,2.0,f +9122,100%,Lebanon,1.0,f +11605,100%,Zimbabwe,1.0,t +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +16663,100%,,1.0,f +5599,89%,,1.0,f +25242,,Lebanon,1.0,f +28702,100%,Russian Federation,2.0,t +15101,56%,,1.0,f +29647,100%,Peru,1305.0,f +21326,100%,Zimbabwe,2.0,f +29647,100%,Peru,1305.0,f +33463,,,1.0,f +18461,,,1.0,t +8225,95%,Barbados,31.0,f +39954,,Tonga,6.0,f +14505,,Sao Tome and Principe,2.0,t +49562,,,1.0,f +18247,95%,Iran,80.0,t +36961,29%,,1.0,f +34908,80%,Croatia,1.0,t +32820,,,1.0,t +1875,,Congo,1.0,f +17738,,,1.0,f +17169,100%,Tonga,1.0,t +41788,100%,Turks and Caicos Islands,6.0,f +18686,100%,Mauritania,2.0,t +30459,,,1.0,f +26496,,,1.0,f +33198,100%,Mauritania,12.0,f +24674,,Vietnam,4.0,t +4395,100%,Uganda,1.0,f +41508,80%,Turkmenistan,1.0,t +28906,,,1.0,f +18247,95%,Iran,80.0,t +20264,,,1.0,f +48521,,,1.0,f +36225,,Marshall Islands,3.0,f +33722,,,1.0,t +12453,0%,Uzbekistan,3.0,t +6726,100%,Tonga,2.0,t +14927,,,1.0,t +7750,0%,Australia,1.0,f +46109,83%,,1.0,f +11851,,Russian Federation,1.0,f +6353,,Chile,1.0,t +2429,100%,Tonga,6.0,f +35113,,Sao Tome and Principe,1.0,f +5838,67%,,1.0,f +44004,,,1.0,f +39764,,Venezuela,2.0,t +20295,,,1.0,f +1347,,,1.0,f +12448,,,1.0,f +21410,,,1.0,t +43104,,,1.0,f +15799,,,4.0,t +4689,,,1.0,f +16377,,Gambia,5.0,f +13942,,,1.0,t +25248,,,1.0,f +24834,100%,Maldives,1.0,t +40807,,,1.0,f +21756,,,1.0,t +11629,100%,,3.0,f +49128,,,1.0,f +45937,,,1.0,t +47775,100%,French Guiana,6.0,f +49979,,Indonesia,1.0,t +14154,,Russian Federation,1.0,f +43285,,,1.0,f +34583,,Cuba,2.0,t +13690,,,1.0,t +11767,,Gambia,1.0,f +45501,100%,Kiribati,7.0,f +45501,100%,Kiribati,7.0,f +39705,,,1.0,f +42124,,Bosnia and Herzegovina,4.0,f +42124,,Bosnia and Herzegovina,4.0,f +29151,0%,Indonesia,1.0,f +47937,,,1.0,f +8236,100%,Mexico,2.0,f +31820,,,1.0,f +40366,97%,Micronesia,14.0,t +34747,,Lebanon,3.0,t +25623,100%,,1.0,f +46482,,,1.0,f +44432,,Sao Tome and Principe,1.0,f +2125,,,1.0,t +24183,100%,,1.0,f +13604,,,1.0,f +31065,,,16.0,f +32027,,Turkmenistan,2.0,t +32512,100%,Saint Helena,9.0,f +6671,,,1.0,t +29646,100%,Monaco,2.0,t +46171,20%,,1.0,f +31176,60%,,1.0,t +17701,100%,,4.0,t +18557,67%,Monaco,2.0,f +45927,,,1.0,f +46997,,,1.0,f +12798,100%,,1.0,t +4217,,Kenya,52.0,f +19811,90%,Nicaragua,21.0,t +45111,100%,Sao Tome and Principe,420.0,f +48257,100%,Kiribati,5.0,t +3786,100%,,1.0,f +33109,,,4.0,f +33334,100%,Togo,64.0,t +25445,70%,,2.0,f +1293,100%,,1.0,f +33334,100%,Togo,64.0,t +22993,,,1.0,f +40366,97%,Micronesia,14.0,t +14477,100%,Reunion,26.0,t +40366,97%,Micronesia,14.0,t +40366,97%,Micronesia,14.0,t +11228,,,1.0,f +4217,,Kenya,52.0,f +29430,0%,Philippines,3.0,f +31065,,,16.0,f +9024,100%,,1.0,t +448,100%,,1.0,f +20334,99%,Niger,171.0,t +40510,,,1.0,f +18444,,Congo,1.0,t +40294,100%,Barbados,6.0,f +29248,100%,Croatia,1.0,t +20360,,,1.0,f +19225,50%,Kiribati,1.0,f +548,100%,,3.0,f +36225,,Marshall Islands,3.0,f +32745,,Peru,1.0,f +47098,,Micronesia,1.0,f +32453,100%,,3.0,t +10781,0%,,1.0,f +16032,100%,Uzbekistan,2.0,f +19769,,,1.0,f +19019,97%,Nicaragua,1484.0,f +49992,,,1.0,f +19019,97%,Nicaragua,1484.0,f +38442,,,1.0,f +21730,,Philippines,5.0,t +4320,,Jersey,1.0,f +10987,,Russian Federation,2.0,t +26485,100%,Afghanistan,1.0,f +20516,100%,Jersey,6.0,t +40190,,,1.0,f +19611,,,1.0,f +41616,100%,Anguilla,3.0,f +27893,,Maldives,1.0,t +38726,100%,Guinea,2.0,t +27125,100%,Saint Helena,1.0,f +48078,,,1.0,f +21833,,,2.0,f +23117,82%,,33.0,f +23117,82%,,33.0,f +23117,82%,,33.0,f +23117,82%,,33.0,f +29647,100%,Peru,1305.0,f +19514,100%,Djibouti,2.0,f +41605,100%,,1.0,f +29647,100%,Peru,1305.0,f +4217,,Kenya,52.0,f +43130,100%,Puerto Rico,5.0,f +29647,100%,Peru,1305.0,f +28472,,,1.0,f +13345,,Rwanda,1.0,f +31304,100%,Uzbekistan,3.0,f +48181,,,1.0,f +47223,,Cocos (Keeling) Islands,1.0,f +21537,,,2.0,f +18459,100%,Zimbabwe,100.0,f +17862,100%,Rwanda,2.0,f +17862,100%,Rwanda,2.0,f +14465,100%,Costa Rica,2.0,t +29647,100%,Peru,1305.0,f +4637,,,1.0,f +19711,100%,Estonia,1.0,f +36013,100%,,1.0,t +4217,,Kenya,52.0,f +25271,,,2.0,t +29647,100%,Peru,1305.0,f +25605,,Micronesia,2.0,f +48414,100%,Guinea,3.0,t +43718,,,1.0,t +35773,100%,,1.0,t +40793,100%,,75.0,t +24932,80%,Kiribati,2.0,t +26896,100%,Tonga,3.0,f +39400,,Croatia,1.0,f +3960,,,1.0,f +7747,,,1.0,t +10844,,,1.0,f +27994,33%,Saint Helena,1.0,f +14066,80%,,3.0,f +43922,100%,,1.0,f +49149,,,1.0,f +31304,100%,Uzbekistan,3.0,f +19439,,Uganda,2.0,t +43709,,,1.0,f +20409,90%,,2.0,f +9010,100%,,1.0,f +8166,100%,Rwanda,16.0,f +14756,100%,,1.0,f +33538,100%,Isle of Man,1.0,f +39228,100%,Rwanda,2.0,f +36,100%,Sao Tome and Principe,3.0,f +37646,100%,Estonia,60.0,f +45362,,,1.0,t +38027,,,1.0,f +3046,100%,,1.0,f +8166,100%,Rwanda,16.0,f +8213,,,1.0,f +37109,100%,,1.0,f +37381,,,1.0,f +21908,100%,Niue,49.0,f +21908,100%,Niue,49.0,f +21908,100%,Niue,49.0,f +38158,90%,Niger,2.0,f +21908,100%,Niue,49.0,f +8166,100%,Rwanda,16.0,f +11374,,,1.0,f +31823,,,1.0,t +26569,,,1.0,t +12971,71%,Malawi,1.0,t +40571,,,1.0,f +35105,100%,Gambia,4.0,f +4275,,,1.0,t +41858,,,1.0,f +10824,100%,,1.0,f +34333,,,1.0,t +45501,100%,Kiribati,7.0,f +4217,,Kenya,52.0,f +3578,,Uzbekistan,1.0,t +29936,,Niue,3.0,t +39777,100%,,1.0,f +32885,100%,Micronesia,1.0,f +34841,100%,Zimbabwe,22.0,t +34200,,,1.0,f +17212,,Marshall Islands,1.0,f +37646,100%,Estonia,60.0,f +10149,100%,Isle of Man,1.0,f +21518,100%,Micronesia,1.0,t +33938,100%,United Kingdom,2.0,f +18077,100%,Sao Tome and Principe,139.0,f +2891,100%,,1.0,f +8166,100%,Rwanda,16.0,f +31065,,,16.0,f +22804,100%,Niue,1.0,f +519,100%,,1.0,f +8166,100%,Rwanda,16.0,f +10610,100%,United Kingdom,6.0,t +18557,67%,Monaco,2.0,f +8166,100%,Rwanda,16.0,f +39272,100%,Jersey,2.0,f +31895,100%,,1.0,f +39008,,,1.0,f +8166,100%,Rwanda,16.0,f +4217,,Kenya,52.0,f +37894,75%,,1.0,f +28630,,,2.0,t +10042,,Indonesia,21.0,f +48257,100%,Kiribati,5.0,t +8166,100%,Rwanda,16.0,f +17464,,Philippines,8.0,t +4745,100%,Croatia,119.0,f +7592,98%,,13.0,t +44934,100%,Philippines,17.0,f +8091,97%,Cuba,10.0,f +21908,100%,Niue,49.0,f +6613,100%,,1.0,f +40780,,China,1.0,t +48133,,Isle of Man,45.0,f +5003,100%,Jersey,8.0,f +48560,100%,Barbados,3.0,f +37136,,,1.0,f +41810,100%,,1.0,f +48973,100%,Tonga,6.0,f +10042,,Indonesia,21.0,f +8166,100%,Rwanda,16.0,f +20334,99%,Niger,171.0,t +2433,100%,Tonga,21.0,f +29160,100%,,1.0,t +21281,,,1.0,f +26808,100%,Rwanda,9.0,t +18735,100%,,3.0,f +18735,100%,,3.0,f +1613,,,1.0,f +24362,100%,Djibouti,3.0,f +20537,,,1.0,f +3949,,,1.0,f +24671,,Ghana,10.0,f +20452,99%,Barbados,185.0,t +20452,99%,Barbados,185.0,t +909,100%,Croatia,18.0,t +26810,100%,,2.0,f +24020,77%,Tonga,6.0,t +1645,100%,,1.0,t +14689,100%,,2.0,f +33519,100%,,1.0,f +2433,100%,Tonga,21.0,f +7834,94%,Mexico,13.0,f +24651,,Kiribati,4.0,f +35821,100%,,1.0,f +10991,100%,Cocos (Keeling) Islands,4.0,f +880,,Lithuania,1.0,f +29782,100%,Gambia,1.0,f +11567,100%,Niger,31.0,t +37561,,,2.0,f +2578,100%,,4.0,f +29647,100%,Peru,1305.0,f +2433,100%,Tonga,21.0,f +44895,100%,France,3.0,t +34357,100%,Montserrat,3.0,f +2578,100%,,4.0,f +20334,99%,Niger,171.0,t +2578,100%,,4.0,f +5488,90%,,12.0,f +5488,90%,,12.0,f +5488,90%,,12.0,f +2578,100%,,4.0,f +5488,90%,,12.0,f +5488,90%,,12.0,f +46176,,Chad,1.0,t +5488,90%,,12.0,f +5488,90%,,12.0,f +49064,100%,Lebanon,2.0,f +5488,90%,,12.0,f +5488,90%,,12.0,f +5488,90%,,12.0,f +5488,90%,,12.0,f +5488,90%,,12.0,f +37353,,,2.0,t +42162,,,1.0,t +37341,,Pakistan,3.0,f +31065,,,16.0,f +37561,,,2.0,f +21712,,,1.0,f +12286,75%,,1.0,t +13783,100%,,1.0,f +21498,90%,,1.0,f +6200,100%,,3.0,t +7424,,,1.0,f +10902,100%,Wallis and Futuna,6.0,f +49472,,,1.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +49401,100%,Malta,1.0,f +29647,100%,Peru,1305.0,f +24871,,,1.0,f +29647,100%,Peru,1305.0,f +36722,100%,Philippines,17.0,f +36722,100%,Philippines,17.0,f +32147,,,1.0,f +13639,100%,,1.0,f +14320,,Marshall Islands,1.0,t +11966,,,1.0,f +36722,100%,Philippines,17.0,f +37747,100%,Niger,1.0,f +16586,,French Guiana,2.0,f +17619,74%,Ghana,14.0,f +21698,50%,,1.0,t +20091,0%,Anguilla,2.0,t +42124,,Bosnia and Herzegovina,4.0,f +20387,100%,Malta,12.0,t +11742,,,1.0,f +18885,70%,El Salvador,7.0,t +24837,100%,El Salvador,3.0,f +47821,69%,Indonesia,2.0,t +43989,100%,El Salvador,1.0,f +741,90%,,3.0,t +20254,,Marshall Islands,1.0,f +12857,100%,,2.0,f +9533,,Senegal,16.0,t +4330,94%,Ukraine,60.0,t +14943,100%,,1.0,f +28740,100%,,1.0,f +22640,,Rwanda,8.0,t +44537,100%,Tonga,7.0,f +38654,100%,Jersey,2.0,f +4330,94%,Ukraine,60.0,t +33543,,,1.0,f +16430,,Niue,1.0,t +41447,0%,Andorra,3.0,f +41447,0%,Andorra,3.0,f +12285,,,1.0,f +17394,0%,Nicaragua,49.0,f +40194,,,1.0,f +47505,,,2.0,t +41313,100%,Denmark,10.0,t +22755,,,8.0,t +46367,80%,,1.0,f +20334,99%,Niger,171.0,t +45621,100%,Cape Verde,4.0,t +37371,100%,,2.0,f +48117,98%,Ukraine,41.0,f +6984,100%,Suriname,9.0,f +45552,93%,Nicaragua,12.0,t +6984,100%,Suriname,9.0,f +29920,,,1.0,f +23233,,,1.0,f +30419,67%,,1.0,t +7778,100%,Mauritania,7.0,t +3490,100%,Papua New Guinea,1.0,f +19441,90%,Niue,2.0,f +33991,,,2.0,f +48424,,,1.0,f +23675,100%,,3.0,f +29779,100%,Estonia,1.0,f +41447,0%,Andorra,3.0,f +47444,,,1.0,t +8224,98%,Estonia,12.0,f +7566,0%,,1.0,f +27934,100%,,1.0,f +20118,,,1.0,f +1823,100%,Ecuador,1.0,t +31065,,,16.0,f +31065,,,16.0,f +8224,98%,Estonia,12.0,f +17671,,Kiribati,1.0,f +47342,,Nicaragua,1.0,f +48411,,,1.0,f +10022,,,2.0,f +15117,100%,,1.0,f +24671,,Ghana,10.0,f +14386,100%,Nicaragua,8.0,f +10237,100%,Mexico,1.0,f +11456,,Malta,2.0,f +20521,,,7.0,t +15345,100%,Uzbekistan,1.0,t +6169,80%,Slovenia,2.0,t +38866,60%,,2.0,f +3225,,Mauritania,1.0,t +2792,100%,Guinea,1.0,f +8224,98%,Estonia,12.0,f +48775,,Cuba,1.0,t +15799,,,4.0,t +15799,,,4.0,t +5210,,Ghana,2.0,f +21034,,,1.0,f +42373,,,1.0,t +42604,,,1.0,f +12277,100%,,2.0,t +31065,,,16.0,f +18035,,,1.0,f +22640,,Rwanda,8.0,t +2211,,,1.0,f +12298,,Russian Federation,2.0,f +24084,86%,United Kingdom,1.0,t +35221,100%,Turks and Caicos Islands,30.0,t +6907,100%,Somalia,1.0,f +42358,100%,Svalbard & Jan Mayen Islands,3.0,f +15799,,,4.0,t +5739,,Somalia,1.0,f +28608,100%,,1.0,f +23293,,,1.0,f +25605,,Micronesia,2.0,f +45358,100%,Micronesia,3.0,t +38939,100%,Mexico,1.0,f +6984,100%,Suriname,9.0,f +23949,100%,Slovakia (Slovak Republic),6.0,t +31805,99%,Mauritania,20.0,f +6201,,,1.0,f +17699,83%,,1.0,f +32733,,Papua New Guinea,3.0,f +24545,,,1.0,f +26466,57%,France,1.0,f +8225,95%,Barbados,31.0,f +19943,63%,Isle of Man,34.0,f +34967,100%,,1.0,t +3325,50%,,1.0,f +43975,,,2.0,f +29647,100%,Peru,1305.0,f +40463,,Niue,1.0,f +18279,,,1.0,f +31805,99%,Mauritania,20.0,f +1763,,,1.0,f +23788,,,1.0,f +31063,100%,Gambia,1.0,f +45697,100%,,2.0,f +31065,,,16.0,f +31065,,,16.0,f +46099,98%,Uzbekistan,28.0,f +37850,,Gambia,1.0,t +11360,100%,,1.0,t +45476,,Gibraltar,2.0,f +32203,100%,Barbados,176.0,f +46424,,Niger,6.0,t +31642,,,1.0,f +44966,100%,Guinea,21.0,f +45490,95%,Barbados,6.0,f +23369,,French Guiana,2.0,t +12390,86%,Uzbekistan,3.0,f +36069,,Niue,2.0,f +43498,,,1.0,f +19019,97%,Nicaragua,1484.0,f +25632,100%,Cuba,13.0,f +45064,98%,Anguilla,15.0,f +19019,97%,Nicaragua,1484.0,f +2433,100%,Tonga,21.0,f +6720,100%,Micronesia,2.0,f +18424,,,1.0,f +18876,60%,Netherlands,26.0,f +23582,98%,Montserrat,17.0,f +32323,100%,,1.0,f +2517,,,1.0,t +13070,100%,Fiji,45.0,f +2597,100%,Nicaragua,13.0,t +45386,,Zimbabwe,1.0,f +6984,100%,Suriname,9.0,f +28117,,Gambia,1.0,f +43857,100%,,2.0,t +25761,0%,,1.0,t +17833,100%,Gambia,2.0,f +48840,100%,Uzbekistan,9.0,f +37512,,,1.0,f +7563,100%,Pakistan,3.0,f +9754,100%,Brazil,6.0,f +8393,,,1.0,t +29557,,Guinea,2.0,f +3996,,,1.0,t +42981,100%,,1.0,f +36512,0%,,1.0,f +12426,,,1.0,f +49497,,Zimbabwe,1.0,f +37497,,Mauritania,2.0,f +49809,,,1.0,f +23841,100%,,1.0,t +26096,,,1.0,f +31225,100%,Russian Federation,1.0,f +14965,100%,,1.0,t +19157,,,2.0,f +37596,,,1.0,f +28296,89%,Maldives,3.0,t +12277,100%,,2.0,t +41910,100%,Slovakia (Slovak Republic),5.0,f +41008,100%,Venezuela,6.0,f +4735,100%,,2.0,f +25650,90%,Monaco,3.0,f +20032,,,1.0,f +12247,100%,Maldives,33.0,f +30595,,Philippines,2.0,f +13008,100%,Anguilla,1.0,f +12247,100%,Maldives,33.0,f +12247,100%,Maldives,33.0,f +29527,,,1.0,f +12247,100%,Maldives,33.0,f +39635,,,1.0,t +656,,,2.0,f +43428,73%,Faroe Islands,9.0,t +27786,100%,,2.0,t +35391,100%,,2.0,t +106,100%,,1.0,f +20266,100%,Cuba,1.0,f +15663,,Jersey,1.0,f +47119,100%,Russian Federation,2.0,t +26358,70%,Monaco,3.0,t +44042,100%,,1.0,t +20922,,,1.0,f +33754,100%,Micronesia,1.0,f +25111,100%,,2.0,f +2307,90%,Guernsey,3.0,f +27896,100%,Marshall Islands,2.0,t +5843,100%,Niue,1.0,f +29234,100%,Togo,9.0,t +19954,100%,Uruguay,3.0,t +33334,100%,Togo,64.0,t +10991,100%,Cocos (Keeling) Islands,4.0,f +16067,83%,,1.0,t +11424,100%,,2.0,f +36576,100%,Tonga,4.0,t +9533,,Senegal,16.0,t +9533,,Senegal,16.0,t +2307,90%,Guernsey,3.0,f +2307,90%,Guernsey,3.0,f +9533,,Senegal,16.0,t +12247,100%,Maldives,33.0,f +5653,,,1.0,f +44966,100%,Guinea,21.0,f +6780,,Zimbabwe,2.0,t +27699,100%,,2.0,f +39162,67%,Micronesia,2.0,f +26864,,,1.0,f +23273,50%,Switzerland,3.0,f +38532,90%,,6.0,f +12050,,,1.0,f +45334,,,1.0,f +35945,90%,,2.0,f +7653,,,1.0,f +43540,72%,Bosnia and Herzegovina,25.0,f +48437,,,1.0,f +25287,100%,,1.0,t +43540,72%,Bosnia and Herzegovina,25.0,f +18585,,Togo,1.0,f +33794,100%,,2.0,f +48875,100%,,1.0,f +26037,,,1.0,f +15707,100%,Vietnam,4.0,f +36170,,Malta,6.0,f +30971,,,1.0,f +8047,100%,El Salvador,1.0,f +18663,,Micronesia,1.0,t +32733,,Papua New Guinea,3.0,f +36170,,Malta,6.0,f +39572,,,1.0,f +32733,,Papua New Guinea,3.0,f +25632,100%,Cuba,13.0,f +23696,100%,Kiribati,1.0,t +25632,100%,Cuba,13.0,f +25632,100%,Cuba,13.0,f +32126,100%,United Kingdom,1.0,f +28828,100%,Isle of Man,198.0,t +34615,,,1.0,t +5485,,,1.0,f +49220,,,1.0,f +2614,,,1.0,t +11231,,,1.0,f +32961,,United Kingdom,6.0,t +3801,50%,Maldives,5.0,f +2361,,,3.0,f +4894,,Cocos (Keeling) Islands,1.0,f +35464,100%,,1.0,f +34161,100%,,1.0,t +20065,,Svalbard & Jan Mayen Islands,1.0,f +21274,100%,,2.0,t +47367,,Russian Federation,1.0,f +11839,,Uganda,11.0,f +9176,,Lebanon,1.0,f +26884,100%,Uzbekistan,1.0,f +31498,100%,Zimbabwe,2.0,f +2433,100%,Tonga,21.0,f +20883,100%,,1.0,f +24093,88%,Ghana,5.0,f +27212,,,1.0,f +19663,100%,Gambia,1.0,t +978,95%,Lithuania,29.0,f +36722,100%,Philippines,17.0,f +27359,100%,,1.0,f +2433,100%,Tonga,21.0,f +35175,,,2.0,f +33883,,,3.0,t +41783,67%,Malta,2.0,t +3947,,Zimbabwe,1.0,f +15983,100%,,1.0,f +44605,,,1.0,t +32203,100%,Barbados,176.0,f +39454,,Marshall Islands,1.0,f +33667,,,1.0,f +22617,,,1.0,t +30151,,,1.0,f +21883,,Bahrain,11.0,t +40421,96%,Jersey,29.0,t +38033,,,1.0,f +13982,100%,,2.0,f +41967,,,1.0,f +5721,100%,Togo,1.0,f +19700,100%,,1.0,f +9284,100%,Nicaragua,4.0,f +44908,100%,Vanuatu,2.0,f +8090,90%,Puerto Rico,2.0,f +31862,56%,,1.0,f +26672,100%,,1.0,f +13369,100%,Montserrat,2.0,f +1382,67%,,1.0,f +19025,0%,,1.0,t +31969,,,1.0,f +49402,,,1.0,f +46690,,,1.0,f +15960,,Sao Tome and Principe,1.0,t +39268,,,1.0,f +10444,100%,Nicaragua,2.0,f +44866,,,1.0,t +31763,,Niger,2.0,t +38700,,,1.0,f +28734,,,1.0,f +13857,,,1.0,f +8859,90%,Ukraine,5.0,f +45400,100%,,2.0,t +42366,50%,Chile,1.0,f +14514,,China,80.0,t +29936,,Niue,3.0,t +41985,,,1.0,f +48414,100%,Guinea,3.0,t +15664,100%,,3.0,f +615,,Mauritania,4.0,f +47485,100%,,2.0,t +23307,,,1.0,f +615,,Mauritania,4.0,f +615,,Mauritania,4.0,f +21949,100%,Monaco,1.0,t +615,,Mauritania,4.0,f +19220,100%,Isle of Man,1.0,f +47485,100%,,2.0,t +19971,,Chile,1.0,f +23371,,,1.0,f +41105,100%,,1.0,f +24033,100%,Uganda,45.0,f +25185,100%,United Kingdom,2.0,f +11179,100%,,1.0,f +43673,,,2.0,f +43673,,,2.0,f +19019,97%,Nicaragua,1484.0,f +22859,100%,Marshall Islands,1.0,f +13251,,,1.0,f +44753,100%,,1.0,f +18399,100%,Kiribati,8.0,t +47176,100%,Isle of Man,2.0,f +26808,100%,Rwanda,9.0,t +1559,,Andorra,1.0,f +5159,,Brazil,1.0,f +36965,100%,Monaco,1.0,f +29867,100%,Peru,2.0,t +13305,100%,,1.0,t +14193,80%,,2.0,t +526,100%,,3.0,f +20796,100%,Togo,2.0,f +38522,100%,Sao Tome and Principe,9.0,f +14193,80%,,2.0,t +19214,100%,Senegal,55.0,f +14638,,,2.0,f +36499,75%,Anguilla,25.0,t +38522,100%,Sao Tome and Principe,9.0,f +19214,100%,Senegal,55.0,f +27866,100%,Guinea,8.0,f +15004,100%,Uzbekistan,88.0,f +3961,100%,Fiji,8.0,f +50013,100%,Tonga,3.0,f +15004,100%,Uzbekistan,88.0,f +15004,100%,Uzbekistan,88.0,f +37137,,Malta,2.0,t +35789,,,1.0,f +35457,100%,,1.0,t +526,100%,,3.0,f +14048,100%,Finland,6.0,t +15060,100%,,3.0,f +17876,100%,Guinea,3.0,f +15060,100%,,3.0,f +48090,,,1.0,f +15060,100%,,3.0,f +44169,97%,Portugal,39.0,f +33574,60%,Brazil,4.0,t +19017,100%,,1.0,f +12202,,Marshall Islands,2.0,f +26539,100%,,1.0,t +41046,,Guinea,2.0,f +48992,100%,,1.0,t +41046,,Guinea,2.0,f +46525,,,1.0,f +12202,,Marshall Islands,2.0,f +36753,83%,Croatia,1.0,t +36085,33%,,1.0,f +36496,100%,,1.0,t +46447,100%,Cape Verde,1.0,f +39457,100%,,2.0,f +36397,,Tanzania,1.0,f +9207,,Marshall Islands,2.0,t +46448,,,1.0,f +21908,100%,Niue,49.0,f +37073,100%,Guinea,2.0,f +4212,,,1.0,f +26801,88%,,1.0,f +17923,,Rwanda,1.0,f +4745,100%,Croatia,119.0,f +41224,100%,Mauritania,3.0,t +22058,100%,,3.0,f +29481,100%,,1.0,t +45229,100%,,2.0,f +17876,100%,Guinea,3.0,f +39513,100%,,1.0,f +23177,100%,Estonia,5.0,f +48575,67%,Jersey,3.0,f +27700,100%,Turks and Caicos Islands,3.0,f +3665,,Central African Republic,2.0,t +23273,50%,Switzerland,3.0,f +6894,80%,Estonia,47.0,t +35227,100%,Guinea,2.0,f +16489,100%,Russian Federation,42.0,t +26759,100%,Isle of Man,1.0,f +47569,,,1.0,f +41099,,,1.0,f +1305,100%,,1.0,f +14230,100%,Vanuatu,1.0,f +24645,100%,,1.0,t +40414,95%,Somalia,4.0,f +43844,,,1.0,f +17161,,,1.0,t +40414,95%,Somalia,4.0,f +41232,100%,,3.0,f +12137,99%,Sao Tome and Principe,33.0,t +30580,97%,Montserrat,12.0,f +21551,,Anguilla,2.0,f +2927,100%,Uganda,10.0,t +6321,100%,Zimbabwe,3.0,f +12268,100%,,1.0,f +32707,,Guinea,1.0,f +36852,,,1.0,f +42179,,,1.0,f +36722,100%,Philippines,17.0,f +26288,,,1.0,t +26374,,Pakistan,1.0,f +6721,100%,,2.0,f +24473,,Costa Rica,17.0,f +24473,,Costa Rica,17.0,f +24473,,Costa Rica,17.0,f +9284,100%,Nicaragua,4.0,f +24473,,Costa Rica,17.0,f +9284,100%,Nicaragua,4.0,f +24473,,Costa Rica,17.0,f +34841,100%,Zimbabwe,22.0,t +21630,97%,Reunion,5.0,t +48502,100%,Nicaragua,11.0,t +48502,100%,Nicaragua,11.0,t +21182,,Lebanon,1.0,f +34499,100%,,2.0,f +10997,100%,Monaco,3.0,f +18895,,,3.0,f +39419,100%,,1.0,f +44362,100%,,1.0,t +21434,100%,,1.0,f +47071,40%,Sao Tome and Principe,3.0,t +15287,100%,,3.0,f +9751,100%,,1.0,f +28081,,,2.0,f +45403,90%,Venezuela,3.0,f +17189,,,1.0,t +36331,,Sao Tome and Principe,3.0,f +43910,,,1.0,f +30580,97%,Montserrat,12.0,f +27260,,,1.0,f +350,,Niue,1.0,f +8136,,,1.0,f +42219,100%,,1.0,f +31605,100%,,1.0,t +16114,,,1.0,f +41235,100%,Uzbekistan,2.0,t +33585,,Malawi,2.0,f +11839,,Uganda,11.0,f +6425,,,1.0,f +33564,100%,Maldives,1.0,t +18372,100%,El Salvador,1.0,f +4330,94%,Ukraine,60.0,t +47507,,Chad,1.0,f +15287,100%,,3.0,f +40086,100%,,2.0,t +36722,100%,Philippines,17.0,f +38297,100%,,3.0,f +15287,100%,,3.0,f +4330,94%,Ukraine,60.0,t +4330,94%,Ukraine,60.0,t +16520,100%,Marshall Islands,22.0,f +42479,100%,,1.0,f +34870,100%,,1.0,f +48309,,Niue,2.0,f +18772,,,1.0,t +36722,100%,Philippines,17.0,f +47415,,,1.0,f +25568,,,1.0,f +546,100%,Uganda,4.0,f +22436,,Nicaragua,2.0,f +2241,,,1.0,f +47374,,,1.0,f +17547,,Gibraltar,3.0,t +18034,59%,Svalbard & Jan Mayen Islands,4.0,f +39353,100%,Lithuania,2.0,t +21000,100%,,1.0,f +3280,100%,Isle of Man,2.0,t +39487,100%,Svalbard & Jan Mayen Islands,1.0,f +1346,100%,,5.0,f +11725,,,1.0,f +17752,,Venezuela,1.0,f +131,100%,,2.0,t +16489,100%,Russian Federation,42.0,t +48418,98%,Bosnia and Herzegovina,30.0,f +15672,100%,Malawi,2.0,f +16502,100%,,1.0,f +29234,100%,Togo,9.0,t +1945,0%,,1.0,f +9846,100%,Indonesia,3.0,t +44085,100%,,2.0,f +17298,97%,Barbados,7.0,f +19655,100%,Tonga,13.0,t +4316,100%,Micronesia,18.0,f +37620,,,1.0,f +111,50%,,1.0,f +3849,100%,Palestinian Territory,2.0,t +43487,100%,,1.0,f +33052,,,1.0,f +4316,100%,Micronesia,18.0,f +17708,,,1.0,f +4316,100%,Micronesia,18.0,f +8522,,,1.0,f +25732,,,1.0,t +19551,,Faroe Islands,2.0,t +5666,,,1.0,f +18726,,Niue,2.0,t +24671,,Ghana,10.0,f +28746,,,1.0,t +9277,,Uzbekistan,1.0,f +26643,,,1.0,t +37408,91%,Papua New Guinea,5.0,t +31184,100%,,1.0,t +9870,,,1.0,t +47610,100%,Uzbekistan,10.0,f +46821,,,1.0,f +41235,100%,Uzbekistan,2.0,t +4161,,,1.0,f +38454,100%,Nicaragua,1.0,f +25153,83%,Niger,1.0,f +10791,100%,,1.0,f +25447,,Rwanda,1.0,f +44450,,,1.0,f +28152,80%,Svalbard & Jan Mayen Islands,2.0,f +30761,,,2.0,t +825,,,1.0,f +4595,,Sao Tome and Principe,2.0,f +2433,100%,Tonga,21.0,f +32486,,,1.0,f +11074,100%,,1.0,f +131,100%,,2.0,t +29222,100%,,1.0,f +29647,100%,Peru,1305.0,f +2433,100%,Tonga,21.0,f +17854,100%,,4.0,f +40304,100%,France,3.0,f +45813,,,1.0,f +29403,100%,,2.0,f +12521,,,1.0,f +8973,,,1.0,t +2433,100%,Tonga,21.0,f +31378,100%,Kiribati,1.0,f +24896,100%,Algeria,50.0,t +28669,100%,,1.0,t +48553,100%,,1.0,t +20812,50%,,1.0,f +9650,100%,Togo,2.0,f +9884,100%,,1.0,t +34005,100%,Vanuatu,1.0,f +11609,,Jersey,2.0,f +29647,100%,Peru,1305.0,f +32961,,United Kingdom,6.0,t +32961,,United Kingdom,6.0,t +43641,100%,,3.0,t +11297,13%,,1.0,f +23675,100%,,3.0,f +40838,90%,,3.0,f +1221,,,1.0,f +2626,100%,,1.0,t +27699,100%,,2.0,f +45534,100%,Brazil,5.0,t +24295,,Russian Federation,1.0,f +3243,100%,,2.0,f +20671,100%,Guinea,3.0,f +18968,100%,,1.0,f +9897,100%,Somalia,1.0,f +10390,,Guinea,2.0,f +44552,,,1.0,f +34635,,,1.0,f +46211,,,1.0,f +8117,100%,,1.0,f +28389,,Guernsey,1.0,f +49350,,,1.0,t +37753,100%,Togo,2.0,f +31111,,,1.0,f +26650,,,2.0,t +27257,,,2.0,f +33881,100%,Djibouti,2.0,t +651,100%,Lebanon,4.0,t +12231,100%,,1.0,f +34247,,Estonia,1.0,t +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +19214,100%,Senegal,55.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +24896,100%,Algeria,50.0,t +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +11199,,,1.0,f +44158,100%,,1.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +34928,100%,Ecuador,4.0,f +29647,100%,Peru,1305.0,f +50016,,Guinea,1.0,f +17866,100%,Tanzania,2.0,t +9057,90%,Kiribati,11.0,t +37342,100%,,2.0,f +37342,100%,,2.0,f +21908,100%,Niue,49.0,f +36859,,,2.0,f +36859,,,2.0,f +41606,,,1.0,t +19217,98%,Marshall Islands,46.0,f +7511,,,1.0,f +46325,100%,,1.0,f +41260,100%,Afghanistan,1.0,f +8319,100%,,1.0,f +7400,100%,,1.0,f +21908,100%,Niue,49.0,f +13463,,Tonga,1.0,f +14938,50%,,1.0,f +43669,100%,,1.0,f +23329,100%,Niue,1.0,f +7000,100%,,1.0,t +29594,100%,,1.0,t +35934,,,1.0,f +21042,,,2.0,f +35888,,,1.0,f +686,97%,Micronesia,7.0,t +25650,90%,Monaco,3.0,f +25146,100%,Sao Tome and Principe,4.0,f +33309,,Zimbabwe,2.0,t +29638,,,1.0,t +48504,,Netherlands,5.0,f +21084,100%,,3.0,t +34062,,Uganda,5.0,t +10611,100%,El Salvador,1.0,f +29791,,,4.0,f +5051,100%,El Salvador,12.0,f +40773,100%,,1.0,t +2502,100%,Estonia,1.0,t +31721,50%,,1.0,f +50086,100%,,1.0,f +6580,100%,Kiribati,5.0,t +29403,100%,,2.0,f +26041,,Lebanon,1.0,t +29647,100%,Peru,1305.0,f +6363,100%,,1.0,f +22796,0%,,1.0,t +44511,100%,Bouvet Island (Bouvetoya),4.0,f +29647,100%,Peru,1305.0,f +20027,100%,,2.0,f +19314,,,1.0,f +19430,67%,,1.0,f +9699,,,1.0,f +40475,,Zimbabwe,3.0,t +26081,,,2.0,f +18374,100%,,3.0,f +39582,,,1.0,f +13184,100%,Vietnam,7.0,f +14557,100%,,3.0,t +24896,100%,Algeria,50.0,t +1346,100%,,5.0,f +4572,100%,,2.0,t +16976,,,1.0,t +40785,100%,,1.0,f +30272,60%,,1.0,t +14088,,,1.0,t +9975,,,1.0,f +16018,,,1.0,f +14059,100%,Uganda,9.0,f +18728,,,1.0,f +23143,65%,Bouvet Island (Bouvetoya),14.0,f +27859,,,1.0,f +27054,,,1.0,f +30545,,,1.0,f +34028,100%,Brazil,2.0,t +30580,97%,Montserrat,12.0,f +23770,80%,,1.0,t +8194,,Russian Federation,1.0,f +39222,67%,Bouvet Island (Bouvetoya),3.0,f +6926,100%,Marshall Islands,1.0,f +19019,97%,Nicaragua,1484.0,f +34552,,,1.0,f +19019,97%,Nicaragua,1484.0,f +49408,100%,Nicaragua,1.0,t +46286,100%,Venezuela,2.0,f +7001,,,1.0,f +48767,,Nauru,1.0,t +12065,0%,,2.0,f +48388,,Gibraltar,1.0,f +11667,,,1.0,f +27042,,,1.0,f +23126,100%,China,2.0,f +46460,100%,,1.0,t +9983,100%,,1.0,f +10914,,Niue,1.0,f +31092,,Senegal,19.0,f +38873,100%,Mauritania,4.0,f +29647,100%,Peru,1305.0,f +22331,99%,Rwanda,50.0,t +32203,100%,Barbados,176.0,f +34121,,,1.0,f +472,100%,,1.0,t +34020,100%,,1.0,f +20334,99%,Niger,171.0,t +32203,100%,Barbados,176.0,f +25100,100%,,2.0,f +12049,,,1.0,f +32203,100%,Barbados,176.0,f +7640,100%,Tonga,2.0,f +32038,100%,Indonesia,35.0,f +34184,,,3.0,f +32203,100%,Barbados,176.0,f +35485,100%,Lebanon,2.0,f +46680,100%,,2.0,t +49709,,Afghanistan,1.0,t +15044,,Russian Federation,1.0,f +45145,,,1.0,f +1987,0%,,2.0,f +11899,,Denmark,1.0,t +12467,,,2.0,f +9790,,Greenland,1.0,f +1987,0%,,2.0,f +34046,90%,Guinea,1.0,f +22150,100%,,1.0,t +2154,100%,Guinea,3.0,t +34125,,,1.0,t +39471,100%,,2.0,t +3961,100%,Fiji,8.0,f +15312,,Kiribati,2.0,f +15864,100%,Afghanistan,2.0,f +27785,100%,Uzbekistan,58.0,f +44901,100%,Bouvet Island (Bouvetoya),5.0,f +19360,100%,,1.0,t +44901,100%,Bouvet Island (Bouvetoya),5.0,f +27785,100%,Uzbekistan,58.0,f +18229,100%,,2.0,f +1001,100%,Faroe Islands,2.0,t +37964,,,1.0,f +23117,82%,,33.0,f +23117,82%,,33.0,f +43338,100%,,1.0,f +1346,100%,,5.0,f +42882,100%,,1.0,f +1346,100%,,5.0,f +37703,,,1.0,f +1346,100%,,5.0,f +5474,,,1.0,t +14246,100%,Kiribati,1.0,t +42825,50%,,1.0,f +41773,78%,Maldives,2.0,t +39495,,,1.0,f +11662,,Malawi,1.0,t +5988,100%,United Kingdom,1.0,f +16275,98%,Maldives,24.0,f +34405,100%,Maldives,3.0,t +44013,88%,,2.0,f +222,89%,,16.0,f +36433,100%,,1.0,f +41709,100%,,12.0,f +25045,,Reunion,1.0,f +40865,,Tonga,1.0,f +16635,,,1.0,t +9354,100%,Spain,12.0,f +9354,100%,Spain,12.0,f +30270,100%,,1.0,f +9933,,,1.0,f +16944,50%,Malta,1.0,t +23433,,China,1.0,f +49248,,,1.0,f +8595,100%,Lebanon,3.0,t +19142,90%,Niger,9.0,f +47986,100%,,2.0,f +38258,,Bahrain,2.0,f +48924,,Papua New Guinea,4.0,f +38258,,Bahrain,2.0,f +40341,100%,,1.0,t +36471,,,1.0,f +45965,100%,Estonia,8.0,f +518,100%,Turks and Caicos Islands,1.0,f +39765,100%,United Kingdom,2.0,t +38992,100%,,1.0,f +27203,,Bouvet Island (Bouvetoya),13.0,f +23198,100%,,1.0,t +8428,100%,,1.0,f +38114,94%,Uzbekistan,19.0,f +49024,100%,Russian Federation,1.0,f +5733,100%,,1.0,f +3215,100%,,1.0,f +23826,100%,,1.0,t +37282,100%,,3.0,f +19814,,,1.0,f +11427,,Slovakia (Slovak Republic),4.0,t +18881,,,1.0,f +25111,100%,,2.0,f +6025,,,1.0,f +44739,100%,,1.0,f +39373,,,1.0,f +23949,100%,Slovakia (Slovak Republic),6.0,t +4219,,,1.0,f +26642,,,1.0,f +26416,100%,Russian Federation,1.0,f +31742,,,1.0,f +27729,,Afghanistan,4.0,f +13689,,,1.0,f +12777,100%,,1.0,t +27729,,Afghanistan,4.0,f +2253,100%,Mauritania,2.0,f +42576,80%,Maldives,2.0,f +27729,,Afghanistan,4.0,f +19053,100%,Svalbard & Jan Mayen Islands,4.0,t +16446,,,1.0,f +11497,,Barbados,2.0,t +9650,100%,Togo,2.0,f +5452,100%,Nicaragua,1.0,f +41360,100%,Finland,1.0,f +25659,100%,United Kingdom,1.0,t +30029,90%,El Salvador,8.0,f +18193,0%,,2.0,f +44282,,,1.0,f +25748,,Mauritania,1.0,t +48197,100%,Zimbabwe,1.0,f +40469,,,1.0,f +46581,100%,,1.0,t +40712,100%,,1.0,t +26869,,,1.0,f +37684,,,1.0,f +32792,,Indonesia,12.0,f +31858,,Uzbekistan,1.0,f +44929,,Christmas Island,1.0,f +597,100%,,1.0,t +21914,100%,,1.0,f +24368,,,1.0,f +36065,,Estonia,2.0,f +22033,,,1.0,f +11990,,Niue,3.0,f +19398,80%,Uzbekistan,1.0,f +17424,,,1.0,t +46230,,Anguilla,1.0,f +4020,,France,1.0,f +15199,,Kiribati,1.0,t +38697,,France,1.0,f +23363,,Puerto Rico,1.0,f +16285,100%,Guernsey,1.0,f +2448,,,1.0,f +35625,98%,Estonia,25.0,t +38114,94%,Uzbekistan,19.0,f +35221,100%,Turks and Caicos Islands,30.0,t +14845,100%,,1.0,f +13606,100%,,4.0,f +24468,100%,Peru,1.0,t +18121,100%,Bouvet Island (Bouvetoya),8.0,f +7415,100%,Uzbekistan,8.0,f +7415,100%,Uzbekistan,8.0,f +7415,100%,Uzbekistan,8.0,f +41709,100%,,12.0,f +39292,44%,Gambia,1.0,f +17290,,,1.0,t +1496,,,1.0,f +43012,67%,,1.0,f +3620,100%,Russian Federation,1.0,f +34184,,,3.0,f +42692,100%,French Polynesia,1.0,f +13126,,,1.0,t +31455,,,1.0,f +36128,,,1.0,f +15550,,,1.0,f +8818,0%,Micronesia,1.0,f +27972,94%,Brazil,27.0,f +8318,100%,,1.0,f +46606,20%,,1.0,t +5781,,,1.0,f +33476,,Uzbekistan,1.0,t +3196,,,1.0,f +23814,,Russian Federation,26.0,f +12905,,,1.0,f +23814,,Russian Federation,26.0,f +36052,100%,,2.0,t +17226,,,1.0,t +7563,100%,Pakistan,3.0,f +2433,100%,Tonga,21.0,f +36331,,Sao Tome and Principe,3.0,f +32203,100%,Barbados,176.0,f +28820,,,1.0,f +28397,,,1.0,f +35625,98%,Estonia,25.0,t +29803,,,1.0,f +37419,,,1.0,f +15768,,,1.0,f +1296,,,1.0,f +2433,100%,Tonga,21.0,f +24212,90%,Chile,2.0,t +24195,56%,Barbados,14.0,f +28489,90%,Malta,5.0,t +38114,94%,Uzbekistan,19.0,f +12681,100%,,1.0,f +24195,56%,Barbados,14.0,f +19915,100%,,1.0,f +14811,,,1.0,f +34063,,,1.0,t +40016,100%,Russian Federation,1.0,f +48865,,,1.0,f +48004,100%,,1.0,f +17322,95%,,30.0,f +34536,100%,,1.0,f +47839,,,1.0,f +25901,100%,,1.0,f +38114,94%,Uzbekistan,19.0,f +17322,95%,,30.0,f +17322,95%,,30.0,f +3622,100%,,1.0,f +31770,,,2.0,f +17322,95%,,30.0,f +43760,,,1.0,f +38114,94%,Uzbekistan,19.0,f +17322,95%,,30.0,f +39779,,Faroe Islands,1.0,f +29474,100%,,1.0,f +38114,94%,Uzbekistan,19.0,f +21240,94%,Niger,130.0,f +17880,100%,,1.0,f +38114,94%,Uzbekistan,19.0,f +10599,,El Salvador,1.0,f +35976,100%,,6.0,t +1029,,Isle of Man,4.0,t +21294,,,1.0,t +8870,100%,Svalbard & Jan Mayen Islands,3.0,f +48409,,Estonia,60.0,t +44013,88%,,2.0,f +19655,100%,Tonga,13.0,t +7787,71%,,2.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +46742,100%,,2.0,t +45111,100%,Sao Tome and Principe,420.0,f +48760,98%,Ghana,24.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +42606,100%,Micronesia,1.0,f +27774,78%,Vietnam,15.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +38522,100%,Sao Tome and Principe,9.0,f +45111,100%,Sao Tome and Principe,420.0,f +4745,100%,Croatia,119.0,f +45111,100%,Sao Tome and Principe,420.0,f +21408,,Turkmenistan,1.0,f +48760,98%,Ghana,24.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +24473,,Costa Rica,17.0,f +45111,100%,Sao Tome and Principe,420.0,f +44424,,,1.0,t +45111,100%,Sao Tome and Principe,420.0,f +48760,98%,Ghana,24.0,f +29577,,,1.0,f +32792,,Indonesia,12.0,f +18459,100%,Zimbabwe,100.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +48760,98%,Ghana,24.0,f +32934,100%,Isle of Man,1.0,f +45111,100%,Sao Tome and Principe,420.0,f +33927,100%,Barbados,9.0,f +48760,98%,Ghana,24.0,f +48760,98%,Ghana,24.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +48760,98%,Ghana,24.0,f +8330,100%,Mauritania,3.0,f +48760,98%,Ghana,24.0,f +45111,100%,Sao Tome and Principe,420.0,f +48760,98%,Ghana,24.0,f +45111,100%,Sao Tome and Principe,420.0,f +42527,,,1.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +23168,,Bouvet Island (Bouvetoya),3.0,t +45111,100%,Sao Tome and Principe,420.0,f +42305,100%,Senegal,1.0,f +11839,,Uganda,11.0,f +45111,100%,Sao Tome and Principe,420.0,f +12184,,Guinea,1.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +32792,,Indonesia,12.0,f +45111,100%,Sao Tome and Principe,420.0,f +10613,,Isle of Man,1.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +40990,100%,Nicaragua,2.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +44511,100%,Bouvet Island (Bouvetoya),4.0,f +45111,100%,Sao Tome and Principe,420.0,f +48649,100%,Kiribati,2.0,f +45111,100%,Sao Tome and Principe,420.0,f +244,,,1.0,t +45111,100%,Sao Tome and Principe,420.0,f +30420,,,1.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +39021,0%,Micronesia,1.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +17322,95%,,30.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +14032,,,9.0,f +17322,95%,,30.0,f +45111,100%,Sao Tome and Principe,420.0,f +32792,,Indonesia,12.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +6742,100%,,1.0,f +40909,,,1.0,f +5226,38%,,1.0,f +17322,95%,,30.0,f +37461,100%,Tonga,2.0,f +17322,95%,,30.0,f +2358,,,1.0,f +2433,100%,Tonga,21.0,f +26887,,,2.0,f +37461,100%,Tonga,2.0,f +18546,100%,,1.0,f +29647,100%,Peru,1305.0,f +15293,100%,Denmark,1.0,f +17322,95%,,30.0,f +19019,97%,Nicaragua,1484.0,f +3097,,Gibraltar,1.0,f +4061,,,1.0,t +10271,,,1.0,f +6153,,,1.0,f +20323,,Mexico,2.0,f +21033,,Rwanda,2.0,t +40199,100%,Uzbekistan,6.0,f +35719,50%,El Salvador,1.0,f +43564,70%,,3.0,f +15359,,,2.0,t +32071,,,1.0,f +16695,96%,Tonga,8.0,f +28560,100%,Estonia,3.0,t +10528,100%,,2.0,f +17322,95%,,30.0,f +45129,,,1.0,f +17322,95%,,30.0,f +19400,100%,Gibraltar,7.0,f +28047,100%,Uzbekistan,4.0,f +24867,90%,Bosnia and Herzegovina,5.0,f +39914,50%,Russian Federation,2.0,f +2367,100%,Kiribati,9.0,f +37441,100%,Vietnam,12.0,t +47301,,,3.0,f +9388,100%,,2.0,t +33764,100%,,1.0,f +17298,97%,Barbados,7.0,f +37441,100%,Vietnam,12.0,t +47301,,,3.0,f +4917,,,1.0,t +26814,100%,,1.0,f +1940,100%,Zimbabwe,1.0,f +35882,,,1.0,f +47301,,,3.0,f +24002,100%,,1.0,f +949,,,1.0,f +35479,,,1.0,f +17322,95%,,30.0,f +6922,,French Guiana,1.0,f +38873,100%,Mauritania,4.0,f +40882,,,1.0,f +41321,67%,Russian Federation,1.0,f +21240,94%,Niger,130.0,f +21240,94%,Niger,130.0,f +21240,94%,Niger,130.0,f +53,,Bahrain,1.0,t +35144,100%,,2.0,f +38571,100%,,2.0,f +12343,,Zimbabwe,1.0,f +21240,94%,Niger,130.0,f +21240,94%,Niger,130.0,f +32989,,,1.0,f +3716,,,1.0,f +41839,100%,Niue,2.0,f +36817,91%,Slovakia (Slovak Republic),6.0,f +2433,100%,Tonga,21.0,f +23475,100%,,13.0,f +13793,,Tonga,1.0,f +7899,,,1.0,f +18413,91%,,4.0,f +15154,,,1.0,f +31380,83%,Lebanon,1.0,f +44945,90%,Marshall Islands,4.0,t +21240,94%,Niger,130.0,f +17814,,,1.0,f +32792,,Indonesia,12.0,f +36436,,,1.0,f +15648,,Rwanda,1.0,t +21240,94%,Niger,130.0,f +17766,25%,,1.0,f +22765,100%,,1.0,t +4594,90%,Chad,4.0,t +32792,,Indonesia,12.0,f +28422,,Sao Tome and Principe,1.0,f +6777,,Lebanon,1.0,t +21240,94%,Niger,130.0,f +39499,100%,Kiribati,1.0,t +21240,94%,Niger,130.0,f +41373,,Lebanon,8.0,f +22815,100%,,1.0,f +48465,,,1.0,t +23032,100%,,1.0,f +27907,100%,Puerto Rico,21.0,f +32676,100%,China,34.0,f +38067,,,1.0,f +16578,,Andorra,1.0,f +18247,95%,Iran,80.0,t +27774,78%,Vietnam,15.0,f +32960,100%,Gambia,1.0,f +46740,,Mauritania,2.0,f +46099,98%,Uzbekistan,28.0,f +19472,100%,United Kingdom,6.0,f +48058,100%,Zimbabwe,1.0,f +47460,100%,,1.0,f +18459,100%,Zimbabwe,100.0,f +24195,56%,Barbados,14.0,f +6857,,,1.0,f +18459,100%,Zimbabwe,100.0,f +2047,,Isle of Man,2.0,f +18459,100%,Zimbabwe,100.0,f +27774,78%,Vietnam,15.0,f +18459,100%,Zimbabwe,100.0,f +6514,100%,Monaco,2.0,t +41709,100%,,12.0,f +36220,,Lebanon,1.0,f +32203,100%,Barbados,176.0,f +24195,56%,Barbados,14.0,f +23814,,Russian Federation,26.0,f +30497,100%,Slovakia (Slovak Republic),9.0,t +23814,,Russian Federation,26.0,f +19472,100%,United Kingdom,6.0,f +23814,,Russian Federation,26.0,f +23814,,Russian Federation,26.0,f +8732,,,1.0,f +25840,,,1.0,f +41709,100%,,12.0,f +15476,,,1.0,t +41709,100%,,12.0,f +41709,100%,,12.0,f +41709,100%,,12.0,f +20174,100%,,2.0,f +32203,100%,Barbados,176.0,f +45971,100%,,2.0,t +41709,100%,,12.0,f +38612,100%,Estonia,1.0,f +19019,97%,Nicaragua,1484.0,f +28061,100%,Denmark,5.0,f +34095,100%,Russian Federation,3.0,f +8174,,Jersey,2.0,t +32061,,,1.0,f +2947,,Russian Federation,2.0,f +20027,100%,,2.0,f +34654,,,1.0,t +4106,0%,,1.0,f +34873,,,1.0,f +2342,,,2.0,f +19109,100%,Philippines,4.0,f +46305,,,1.0,f +23475,100%,,13.0,f +3963,100%,Kenya,1.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +44080,,,1.0,f +532,100%,,2.0,f +2342,,,2.0,f +32894,,,1.0,f +18077,100%,Sao Tome and Principe,139.0,f +14293,,,1.0,t +42506,100%,Denmark,1.0,t +29269,100%,,1.0,f +27169,,,1.0,f +14125,100%,Maldives,1.0,t +23475,100%,,13.0,f +35441,100%,Lithuania,1.0,f +24044,100%,,1.0,f +23475,100%,,13.0,f +30786,,Uzbekistan,29.0,f +28546,,,1.0,t +25330,,Philippines,1.0,t +19472,100%,United Kingdom,6.0,f +18904,,,2.0,f +23675,100%,,3.0,f +22802,,Monaco,1.0,t +47604,95%,Uzbekistan,4.0,t +7030,100%,Guernsey,6.0,f +35764,,,2.0,t +32792,,Indonesia,12.0,f +41705,67%,,1.0,f +32792,,Indonesia,12.0,f +45340,,Maldives,1.0,f +31944,,Somalia,1.0,t +30435,99%,Cape Verde,41.0,f +23949,100%,Slovakia (Slovak Republic),6.0,t +16818,98%,Nicaragua,5.0,t +22766,,,1.0,f +10758,,,1.0,t +30157,,,1.0,f +27910,,,1.0,f +32228,,,1.0,t +15147,100%,,1.0,f +107,,,1.0,t +22385,,Croatia,1.0,f +37617,,,1.0,f +39290,100%,,1.0,f +13000,100%,Indonesia,2.0,t +24077,100%,,1.0,f +31856,,,1.0,t +12562,100%,,2.0,f +23475,100%,,13.0,f +19568,,Uzbekistan,3.0,t +19568,,Uzbekistan,3.0,t +4080,,,1.0,f +2886,,,1.0,t +9923,100%,Gambia,2.0,f +26494,83%,,2.0,f +29640,,Uzbekistan,1.0,f +8026,,Senegal,1.0,t +19704,,Gambia,1.0,f +42399,,,1.0,t +1821,100%,,1.0,f +16466,,,2.0,f +45202,,,1.0,f +4330,94%,Ukraine,60.0,t +1887,,Tonga,2.0,f +42495,,,1.0,f +27987,100%,Grenada,1.0,f +1880,100%,Niue,1.0,t +11315,,Maldives,3.0,f +21100,,,1.0,f +19337,100%,,1.0,f +43540,72%,Bosnia and Herzegovina,25.0,f +46592,100%,,1.0,f +16188,90%,Uzbekistan,1.0,t +47641,100%,Kiribati,1.0,f +30974,100%,,1.0,f +292,,,1.0,f +11315,,Maldives,3.0,f +46470,100%,,1.0,t +36920,,,2.0,f +11315,,Maldives,3.0,f +37168,90%,Jersey,2.0,f +1862,33%,Micronesia,1.0,f +39106,,,1.0,f +49399,100%,Guinea,4.0,t +27969,,,1.0,t +32066,,,1.0,f +2961,,,1.0,t +39563,100%,,1.0,f +39916,,,1.0,f +16489,100%,Russian Federation,42.0,t +12995,,,1.0,f +46209,100%,,1.0,f +24671,,Ghana,10.0,f +26494,83%,,2.0,f +25688,,Uzbekistan,2.0,t +29061,100%,,1.0,f +30260,100%,,3.0,f +13951,100%,,1.0,f +27685,,,2.0,f +6200,100%,,3.0,t +48901,86%,,1.0,f +23475,100%,,13.0,f +18328,100%,,1.0,f +23143,65%,Bouvet Island (Bouvetoya),14.0,f +48599,100%,Malawi,3.0,f +21201,,Vanuatu,2.0,f +14411,,,1.0,t +38914,,,1.0,f +16754,,,1.0,f +28399,,Guinea,4.0,f +24564,,,1.0,t +41607,100%,Liechtenstein,3.0,f +8961,100%,Puerto Rico,1.0,f +35099,100%,,1.0,f +23309,100%,,1.0,f +29979,90%,,1.0,t +31733,100%,,2.0,f +45983,,Gambia,1.0,f +39405,100%,United Kingdom,1.0,f +24195,56%,Barbados,14.0,f +20708,100%,,1.0,f +45502,100%,,1.0,f +40863,,Faroe Islands,1.0,t +15272,100%,,2.0,t +47432,,,1.0,f +7609,100%,,1.0,f +18855,,Malawi,1.0,f +3504,100%,Isle of Man,2.0,t +42551,100%,Venezuela,1.0,f +39845,100%,Togo,4.0,f +2317,,,1.0,f +24195,56%,Barbados,14.0,f +16218,100%,Malawi,1.0,f +33725,80%,Slovakia (Slovak Republic),1.0,f +39845,100%,Togo,4.0,f +44751,100%,,1.0,f +24195,56%,Barbados,14.0,f +45259,,Isle of Man,1.0,f +14557,100%,,3.0,t +23475,100%,,13.0,f +4745,100%,Croatia,119.0,f +34807,,,1.0,f +23475,100%,,13.0,f +26498,100%,Russian Federation,3.0,f +21552,,Nicaragua,6.0,f +23475,100%,,13.0,f +13792,,,1.0,f +23475,100%,,13.0,f +19091,95%,Cook Islands,18.0,t +36127,100%,,16.0,f +978,95%,Lithuania,29.0,f +17078,100%,,7.0,f +17078,100%,,7.0,f +17078,100%,,7.0,f +35170,100%,Vietnam,5.0,t +23475,100%,,13.0,f +47977,100%,,1.0,t +36127,100%,,16.0,f +3988,,Gibraltar,1.0,f +23560,93%,,9.0,f +13012,60%,Uzbekistan,2.0,f +23475,100%,,13.0,f +23489,,,1.0,t +9520,,Monaco,1.0,f +22111,100%,Sao Tome and Principe,2.0,f +23475,100%,,13.0,f +28955,,,1.0,t +38448,,,1.0,t +11890,,Guinea,1.0,f +41635,100%,Iceland,5.0,f +20057,100%,,1.0,f +37650,,,7.0,t +2685,100%,,1.0,f +23416,100%,Guinea,1.0,f +469,,,2.0,f +28823,,Tanzania,1.0,f +39309,,,1.0,f +31304,100%,Uzbekistan,3.0,f +36750,100%,Jersey,3.0,f +19941,80%,,2.0,f +34013,80%,,2.0,t +6602,100%,,1.0,f +7090,80%,Philippines,2.0,f +47505,,,2.0,t +24896,100%,Algeria,50.0,t +24896,100%,Algeria,50.0,t +31202,90%,Kiribati,107.0,f +45410,,,1.0,f +31707,100%,Niger,48.0,f +31707,100%,Niger,48.0,f +23267,100%,,1.0,t +978,95%,Lithuania,29.0,f +31379,100%,France,5.0,t +4745,100%,Croatia,119.0,f +32611,100%,Ecuador,1.0,f +33604,90%,Marshall Islands,8.0,t +42367,,Bouvet Island (Bouvetoya),1.0,t +27070,100%,Uzbekistan,2.0,f +6495,89%,Tonga,34.0,f +40497,,,1.0,f +35648,,France,1.0,f +31296,98%,,4.0,f +33130,,,1.0,f +2531,100%,,1.0,f +23531,0%,,1.0,t +978,95%,Lithuania,29.0,f +10042,,Indonesia,21.0,f +6321,100%,Zimbabwe,3.0,f +23781,50%,,2.0,f +16347,67%,,1.0,t +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +16762,,,2.0,f +15829,,Palestinian Territory,1.0,f +39412,0%,Reunion,3.0,f +16762,,,2.0,f +42390,100%,Wallis and Futuna,96.0,t +18904,,,2.0,f +33247,,,1.0,f +45252,,,1.0,f +38943,,Slovenia,1.0,f +11304,100%,,1.0,f +5909,100%,,1.0,f +28828,100%,Isle of Man,198.0,t +24473,,Costa Rica,17.0,f +24473,,Costa Rica,17.0,f +24473,,Costa Rica,17.0,f +22939,100%,Cocos (Keeling) Islands,1.0,f +33361,,United Kingdom,2.0,t +39988,100%,Faroe Islands,1.0,t +12271,100%,Brazil,3.0,t +14059,100%,Uganda,9.0,f +19399,,,1.0,t +42959,,Mauritania,1.0,f +35136,,,1.0,f +13714,,,1.0,f +302,100%,Tunisia,20.0,f +18166,,,1.0,t +8281,100%,,1.0,f +2944,100%,,1.0,t +35144,100%,,2.0,f +29134,,,1.0,f +35797,,,1.0,f +17902,100%,,2.0,t +17322,95%,,30.0,f +17322,95%,,30.0,f +17322,95%,,30.0,f +17322,95%,,30.0,f +19443,,,2.0,f +10711,93%,Uganda,108.0,t +32203,100%,Barbados,176.0,f +46283,,,2.0,t +19434,,,1.0,f +40593,,Nauru,10.0,t +13722,75%,,1.0,f +34042,100%,Marshall Islands,37.0,f +43786,100%,,1.0,t +44005,,,2.0,t +42051,100%,Nicaragua,11.0,t +29647,100%,Peru,1305.0,f +27267,95%,Tonga,6.0,f +43152,100%,Nicaragua,82.0,t +152,100%,,1.0,t +28766,100%,Estonia,16.0,f +6495,89%,Tonga,34.0,f +2743,97%,China,23.0,f +32203,100%,Barbados,176.0,f +2743,97%,China,23.0,f +43546,100%,,1.0,f +2743,97%,China,23.0,f +15360,,,2.0,t +21855,,Lebanon,2.0,t +5433,,Cape Verde,4.0,t +41442,100%,,1.0,t +24285,100%,Bouvet Island (Bouvetoya),1.0,f +24887,,,1.0,f +18077,100%,Sao Tome and Principe,139.0,f +2642,,Andorra,4.0,f +18517,,,1.0,t +47112,,Uganda,1.0,t +38007,,Micronesia,2.0,f +8613,100%,,1.0,t +36421,100%,Lebanon,4.0,t +9219,100%,Togo,1.0,f +29005,100%,Peru,3.0,f +47622,100%,Fiji,4.0,f +9548,,Jersey,1.0,f +29863,80%,,1.0,t +19826,100%,,2.0,f +32386,97%,Indonesia,19.0,f +14082,100%,Nicaragua,3.0,t +356,99%,Wallis and Futuna,32.0,t +32386,97%,Indonesia,19.0,f +32386,97%,Indonesia,19.0,f +32386,97%,Indonesia,19.0,f +14082,100%,Nicaragua,3.0,t +31995,100%,Portugal,2.0,f +31219,100%,,1.0,t +19295,,Uganda,1.0,f +5893,100%,Guinea,4.0,f +34428,100%,Faroe Islands,1.0,f +40120,100%,Lebanon,2.0,t +4244,100%,,1.0,f +2743,97%,China,23.0,f +32203,100%,Barbados,176.0,f +27344,,,1.0,f +22478,100%,,1.0,f +611,86%,Montserrat,7.0,f +12320,100%,Bosnia and Herzegovina,20.0,f +29557,,Guinea,2.0,f +20513,,Korea,2.0,t +47326,,,1.0,f +19472,100%,United Kingdom,6.0,f +32203,100%,Barbados,176.0,f +12320,100%,Bosnia and Herzegovina,20.0,f +18859,100%,Sao Tome and Principe,1.0,f +45546,100%,Cape Verde,19.0,t +14977,,,1.0,t +17135,0%,,1.0,t +33545,100%,,16.0,f +34640,100%,,1.0,t +42230,,Micronesia,1.0,f +40120,100%,Lebanon,2.0,t +16517,,Guernsey,1.0,t +33545,100%,,16.0,f +6945,100%,Cuba,8.0,f +35670,100%,Russian Federation,2.0,f +16749,100%,,1.0,t +4672,,,1.0,f +47398,100%,,1.0,t +12584,,Philippines,1.0,t +2789,100%,Russian Federation,2.0,t +26263,,Isle of Man,1.0,t +2651,,,1.0,f +5099,100%,Gibraltar,1.0,f +29663,,,1.0,t +14059,100%,Uganda,9.0,f +2468,,,1.0,f +31313,,,2.0,f +9026,,,1.0,f +35625,98%,Estonia,25.0,t +7442,,,1.0,t +5657,,,1.0,f +49131,,Denmark,1.0,f +34948,,,1.0,f +27621,,Cocos (Keeling) Islands,1.0,f +2238,100%,Niue,1.0,f +35625,98%,Estonia,25.0,t +10042,,Indonesia,21.0,f +19142,90%,Niger,9.0,f +15488,,Nicaragua,4.0,f +45111,100%,Sao Tome and Principe,420.0,f +15488,,Nicaragua,4.0,f +20334,99%,Niger,171.0,t +25460,100%,Maldives,13.0,f +25460,100%,Maldives,13.0,f +38669,100%,Kiribati,3.0,f +14675,,,1.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +20334,99%,Niger,171.0,t +20334,99%,Niger,171.0,t +25460,100%,Maldives,13.0,f +14059,100%,Uganda,9.0,f +32374,100%,,1.0,f +30786,,Uzbekistan,29.0,f +28232,100%,Venezuela,1.0,f +32347,50%,Denmark,2.0,f +11781,100%,Guinea,2.0,t +262,97%,Maldives,16.0,t +37240,50%,,3.0,t +45373,100%,,1.0,f +19974,100%,Ukraine,3.0,f +31518,100%,Maldives,2.0,f +10711,93%,Uganda,108.0,t +38861,,,1.0,f +28885,,,1.0,f +15751,100%,Tanzania,1.0,f +19019,97%,Nicaragua,1484.0,f +26269,100%,,4.0,f +5143,,,1.0,f +36503,,,1.0,f +5401,100%,Lebanon,2.0,f +35253,,,1.0,f +18508,,Turks and Caicos Islands,1.0,t +10444,100%,Nicaragua,2.0,f +18895,,,3.0,f +41204,100%,,1.0,f +22388,100%,Tonga,2.0,f +33570,100%,Turks and Caicos Islands,1.0,t +46496,,Uzbekistan,1.0,f +16119,67%,Maldives,1.0,f +34256,,,1.0,f +16916,,Guernsey,1.0,f +3644,,Anguilla,1.0,t +12208,100%,Saint Helena,2.0,f +16440,100%,,1.0,t +19958,100%,Congo,40.0,t +33809,,,1.0,f +23645,,,1.0,f +31959,,Rwanda,4.0,f +27734,100%,,1.0,f +44966,100%,Guinea,21.0,f +469,,,2.0,f +44966,100%,Guinea,21.0,f +35825,,,1.0,t +15488,,Nicaragua,4.0,f +41301,100%,Costa Rica,9.0,t +44599,100%,,2.0,t +8090,90%,Puerto Rico,2.0,f +49759,100%,French Guiana,1.0,f +14059,100%,Uganda,9.0,f +6327,,Guinea,2.0,t +28828,100%,Isle of Man,198.0,t +24678,,Faroe Islands,2.0,f +4589,100%,,1.0,f +22351,90%,,1.0,t +41882,,,1.0,f +34824,,Zimbabwe,1.0,f +35510,100%,,1.0,f +19473,,,3.0,f +6409,,,1.0,t +15488,,Nicaragua,4.0,f +43544,100%,,1.0,f +15113,,,1.0,f +10661,0%,,1.0,t +38588,,Somalia,1.0,f +11283,,Cyprus,2.0,f +26140,100%,,1.0,f +31342,,,1.0,f +12081,100%,Zimbabwe,2.0,t +43562,,,1.0,f +39767,100%,,1.0,f +23143,65%,Bouvet Island (Bouvetoya),14.0,f +1774,70%,,1.0,t +1079,,,1.0,f +34990,,Uganda,1.0,f +18154,,Finland,1.0,t +33043,,Niue,2.0,f +30260,100%,,3.0,f +19003,,,2.0,t +31873,99%,Uzbekistan,22.0,f +19003,,,2.0,t +45683,,,1.0,f +46999,,Russian Federation,1.0,f +50077,,,1.0,f +4441,,Bosnia and Herzegovina,2.0,f +6905,,Micronesia,2.0,f +1832,100%,,1.0,f +20168,,Malawi,1.0,t +49034,,,1.0,f +10943,,,1.0,t +16953,,,1.0,f +3177,100%,,1.0,f +19796,,Niue,1.0,f +18247,95%,Iran,80.0,t +47274,100%,Tonga,48.0,f +34725,100%,,1.0,f +5158,100%,,1.0,f +32731,,,1.0,f +35625,98%,Estonia,25.0,t +48213,,Guinea,1.0,f +24376,100%,Montserrat,1.0,f +18459,100%,Zimbabwe,100.0,f +35625,98%,Estonia,25.0,t +31290,,,1.0,f +35625,98%,Estonia,25.0,t +35625,98%,Estonia,25.0,t +34184,,,3.0,f +35625,98%,Estonia,25.0,t +27089,100%,,1.0,t +13334,100%,,1.0,f +14514,,China,80.0,t +30994,100%,,1.0,f +37029,100%,,1.0,f +41579,100%,,1.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +27792,100%,,2.0,f +11932,,Turkmenistan,1.0,t +40475,,Zimbabwe,3.0,t +25127,100%,United Kingdom,4.0,f +36015,,Maldives,1.0,f +31202,90%,Kiribati,107.0,f +31202,90%,Kiribati,107.0,f +31202,90%,Kiribati,107.0,f +1263,100%,,3.0,f +13276,90%,United Kingdom,5.0,t +1884,,El Salvador,1.0,f +24884,100%,,1.0,f +46773,,,1.0,f +41009,25%,,1.0,f +20754,,China,13.0,f +265,0%,,1.0,f +17308,100%,,2.0,t +21240,94%,Niger,130.0,f +21240,94%,Niger,130.0,f +40360,,,1.0,f +12583,100%,,1.0,f +5918,100%,,2.0,f +44439,100%,Marshall Islands,2.0,t +22231,100%,Guinea,2.0,f +3397,,China,2.0,f +6471,100%,Zimbabwe,1.0,t +21240,94%,Niger,130.0,f +45016,50%,,1.0,f +33401,100%,Gibraltar,1.0,t +42652,,,1.0,f +16397,100%,,2.0,f +18959,,,1.0,f +10013,,Marshall Islands,2.0,t +19214,100%,Senegal,55.0,f +25763,92%,Micronesia,4.0,f +17820,100%,Montserrat,8.0,f +43540,72%,Bosnia and Herzegovina,25.0,f +38571,100%,,2.0,f +9802,,Indonesia,38.0,t +27774,78%,Vietnam,15.0,f +31664,,Mauritania,1.0,f +14158,,,1.0,f +35625,98%,Estonia,25.0,t +32902,,,1.0,f +9855,100%,,1.0,f +49477,100%,,2.0,f +39143,89%,,33.0,f +34042,100%,Marshall Islands,37.0,f +40203,,,1.0,f +33398,,Guinea,2.0,f +21070,,,1.0,f +35625,98%,Estonia,25.0,t +14405,100%,,1.0,f +39736,,,1.0,f +39143,89%,,33.0,f +12720,,Djibouti,1.0,t +34042,100%,Marshall Islands,37.0,f +5918,100%,,2.0,f +26300,,,1.0,f +31202,90%,Kiribati,107.0,f +31202,90%,Kiribati,107.0,f +31202,90%,Kiribati,107.0,f +31202,90%,Kiribati,107.0,f +31202,90%,Kiribati,107.0,f +31202,90%,Kiribati,107.0,f +21677,,,1.0,f +31202,90%,Kiribati,107.0,f +29978,89%,Uzbekistan,26.0,f +31202,90%,Kiribati,107.0,f +8084,100%,Russian Federation,1.0,f +19543,,Bosnia and Herzegovina,5.0,f +29632,,,1.0,f +2312,,,2.0,f +35379,100%,Tonga,4.0,f +31202,90%,Kiribati,107.0,f +39427,,Rwanda,1.0,f +30766,100%,,1.0,f +26164,,Marshall Islands,1.0,f +13484,,,1.0,f +22409,100%,,1.0,f +26887,,,2.0,f +22770,,Puerto Rico,1.0,f +1841,100%,,1.0,f +37079,,Malta,1.0,t +16349,,,1.0,f +8103,100%,Tonga,1.0,f +17145,100%,,1.0,t +25127,100%,United Kingdom,4.0,f +34701,100%,,3.0,f +36774,100%,Tonga,19.0,f +32006,100%,,1.0,f +30029,90%,El Salvador,8.0,f +8772,100%,Libyan Arab Jamahiriya,1.0,t +22406,,,2.0,f +28180,100%,Lebanon,1.0,f +1908,100%,Sao Tome and Principe,2.0,t +19019,97%,Nicaragua,1484.0,f +19019,97%,Nicaragua,1484.0,f +24473,,Costa Rica,17.0,f +24548,,,1.0,f +17500,100%,,1.0,f +19019,97%,Nicaragua,1484.0,f +19214,100%,Senegal,55.0,f +24473,,Costa Rica,17.0,f +41363,,,1.0,f +1746,50%,Puerto Rico,3.0,f +34434,100%,,1.0,f +47722,,,1.0,f +32203,100%,Barbados,176.0,f +26340,100%,Gibraltar,2.0,f +40793,100%,,75.0,t +4978,100%,Niue,2.0,t +26457,100%,Monaco,4.0,t +8578,100%,,1.0,f +13127,100%,Niger,22.0,f +557,100%,Zimbabwe,8.0,t +4978,100%,Niue,2.0,t +39276,100%,Estonia,3.0,f +35343,100%,Cape Verde,1.0,t +12320,100%,Bosnia and Herzegovina,20.0,f +23995,100%,Maldives,1.0,t +48418,98%,Bosnia and Herzegovina,30.0,f +14102,,,1.0,f +17969,100%,Russian Federation,1.0,f +49366,,Mauritania,1.0,f +32159,,Uzbekistan,1.0,f +16887,100%,China,11.0,f +17373,100%,,1.0,f +46739,,Togo,1.0,f +23991,90%,,1.0,f +36407,100%,Uganda,2.0,t +17322,95%,,30.0,f +17322,95%,,30.0,f +17322,95%,,30.0,f +24195,56%,Barbados,14.0,f +36407,100%,Uganda,2.0,t +48782,100%,Bosnia and Herzegovina,2.0,f +17322,95%,,30.0,f +23469,100%,Nicaragua,116.0,f +23469,100%,Nicaragua,116.0,f +19213,,Jersey,1.0,f +38384,,,1.0,f +339,100%,Slovakia (Slovak Republic),1.0,t +22962,100%,Kiribati,1.0,f +1586,,Jersey,2.0,f +1586,,Jersey,2.0,f +3448,100%,Russian Federation,2.0,t +22748,,,1.0,f +15335,,,1.0,f +35694,,,1.0,t +8595,100%,Lebanon,3.0,t +17909,100%,Kiribati,3.0,f +1408,78%,Uzbekistan,1.0,t +23418,100%,Kenya,1.0,t +45331,100%,,1.0,f +21572,100%,Gibraltar,2.0,t +28298,100%,Montserrat,1.0,f +6700,100%,Guinea,7.0,f +8943,,,1.0,f +31522,97%,Niger,5.0,t +14507,100%,Isle of Man,1.0,t +35911,,Mexico,1.0,f +23469,100%,Nicaragua,116.0,f +47168,100%,Netherlands,8.0,f +29205,,Togo,2.0,t +8224,98%,Estonia,12.0,f +34233,,Malta,1.0,f +17997,100%,,1.0,f +18484,100%,Gambia,108.0,f +8565,0%,Russian Federation,2.0,t +15176,,Vanuatu,10.0,f +32203,100%,Barbados,176.0,f +15176,,Vanuatu,10.0,f +37956,,Christmas Island,1.0,f +6014,,,1.0,f +2068,,,1.0,f +4846,100%,Isle of Man,1.0,f +31281,100%,Nauru,1.0,f +20159,100%,,1.0,f +47245,,Barbados,2.0,t +10976,100%,,1.0,t +14710,75%,,1.0,t +19499,,,1.0,f +4745,100%,Croatia,119.0,f +4745,100%,Croatia,119.0,f +35221,100%,Turks and Caicos Islands,30.0,t +17820,100%,Montserrat,8.0,f +19655,100%,Tonga,13.0,t +32693,,,1.0,f +4745,100%,Croatia,119.0,f +45071,,,1.0,t +47858,100%,Sao Tome and Principe,1.0,f +7775,100%,,1.0,f +4745,100%,Croatia,119.0,f +37441,100%,Vietnam,12.0,t +12067,100%,El Salvador,1.0,f +17123,100%,,2.0,f +37441,100%,Vietnam,12.0,t +11047,96%,Senegal,3.0,t +14059,100%,Uganda,9.0,f +46523,90%,Guinea,2.0,t +38423,100%,Niue,5.0,t +7869,100%,,1.0,t +40793,100%,,75.0,t +13662,,,1.0,t +8688,,Brazil,2.0,f +25425,100%,,1.0,t +40184,100%,,2.0,f +47673,,,1.0,t +26541,100%,Nicaragua,12.0,f +21532,,,1.0,f +33441,,Poland,2.0,f +35954,100%,,1.0,t +6700,100%,Guinea,7.0,f +13778,100%,Denmark,1.0,f +12611,,,1.0,f +11722,50%,Guinea,1.0,t +48560,100%,Barbados,3.0,f +21511,,,1.0,f +27691,100%,,1.0,f +21322,,Turkmenistan,1.0,f +6168,,Bouvet Island (Bouvetoya),14.0,t +45111,100%,Sao Tome and Principe,420.0,f +10868,0%,,1.0,t +11629,100%,,3.0,f +32203,100%,Barbados,176.0,f +5105,,Niue,1.0,f +48133,,Isle of Man,45.0,f +38767,67%,Holy See (Vatican City State),1.0,f +42304,,Estonia,1.0,f +43157,100%,Mauritania,4.0,f +6795,100%,,1.0,t +30285,60%,Micronesia,2.0,f +15499,100%,,1.0,f +16153,100%,France,3.0,f +18723,100%,,1.0,f +32846,,Benin,21.0,f +28889,,,1.0,f +1184,100%,Bahrain,2.0,f +32203,100%,Barbados,176.0,f +44985,,Malawi,1.0,t +31173,,Uzbekistan,1.0,t +48322,67%,Russian Federation,1.0,f +12918,100%,China,9.0,f +19019,97%,Nicaragua,1484.0,f +19019,97%,Nicaragua,1484.0,f +40855,,,1.0,f +19019,97%,Nicaragua,1484.0,f +36341,100%,,1.0,t +10491,,Guinea,2.0,t +21672,,Suriname,2.0,f +5921,,,1.0,f +25366,100%,Kiribati,2.0,f +45199,,Puerto Rico,6.0,f +32706,100%,,1.0,f +40635,,,1.0,f +29732,,,1.0,f +19019,97%,Nicaragua,1484.0,f +25127,100%,United Kingdom,4.0,f +3670,100%,,1.0,f +19019,97%,Nicaragua,1484.0,f +34667,100%,,2.0,f +3103,100%,Turks and Caicos Islands,4.0,f +47046,100%,Lebanon,9.0,f +21716,100%,El Salvador,1.0,t +13295,100%,Denmark,4.0,f +11720,,Finland,1.0,f +42780,100%,,2.0,t +2044,,,1.0,f +37999,100%,Senegal,20.0,t +12440,,,1.0,f +40503,100%,,1.0,t +36273,,,2.0,f +1937,100%,Mauritania,1.0,f +2147,,,2.0,t +40793,100%,,75.0,t +47435,,,2.0,f +36273,,,2.0,f +38039,80%,,2.0,t +4245,100%,Kiribati,1.0,f +45459,100%,Nicaragua,2.0,t +40467,,,1.0,f +50080,100%,Lithuania,3.0,f +46640,,,1.0,t +43496,100%,Montserrat,18.0,t +43874,,,1.0,f +4330,94%,Ukraine,60.0,t +36980,100%,Niue,3.0,t +25499,,,1.0,f +22919,100%,,2.0,t +44333,,,1.0,f +47685,,Grenada,1.0,t +41639,,El Salvador,1.0,f +25407,100%,Kiribati,1.0,f +22437,,,1.0,f +12542,98%,Mauritania,19.0,t +15158,,Faroe Islands,1.0,t +43892,,,1.0,f +11162,100%,,1.0,t +3121,95%,Zimbabwe,9.0,t +4485,95%,China,7.0,t +20100,100%,,1.0,t +18612,90%,,1.0,f +35301,90%,Micronesia,2.0,t +43101,100%,China,2.0,t +46911,,Holy See (Vatican City State),1.0,f +16054,100%,Lithuania,1.0,f +44836,,,1.0,t +47524,100%,,2.0,f +25934,100%,Estonia,7.0,f +36936,100%,,1.0,t +24592,,,1.0,f +23904,,Honduras,2.0,t +35832,,Lebanon,3.0,t +16399,,,1.0,f +14668,,Kenya,1.0,f +47524,100%,,2.0,f +49866,100%,France,1.0,f +15716,,Maldives,1.0,f +1908,100%,Sao Tome and Principe,2.0,t +31775,63%,,2.0,f +31775,63%,,2.0,f +34457,81%,,3.0,t +42012,100%,Monaco,3.0,t +49626,,Tanzania,2.0,t +18874,90%,Andorra,1.0,f +772,100%,,1.0,t +3900,100%,,1.0,f +5757,100%,Portugal,2.0,f +39965,100%,Tonga,3.0,t +26277,,Kiribati,1.0,f +2893,,,1.0,f +40144,100%,,1.0,f +39229,100%,Zimbabwe,2.0,f +41568,100%,Turks and Caicos Islands,1.0,f +10081,100%,Svalbard & Jan Mayen Islands,2.0,f +24671,,Ghana,10.0,f +45915,100%,Kiribati,1.0,f +14477,100%,Reunion,26.0,t +24691,,,1.0,f +16695,96%,Tonga,8.0,f +16695,96%,Tonga,8.0,f +9770,100%,Croatia,1.0,t +20606,100%,Congo,6.0,t +1983,,Guernsey,1.0,f +21643,,,1.0,f +49851,,Ukraine,1.0,f +4647,,Nauru,3.0,t +47274,100%,Tonga,48.0,f +42938,100%,,1.0,f +44364,80%,Estonia,1.0,f +28408,100%,Australia,1.0,f +18077,100%,Sao Tome and Principe,139.0,f +16057,100%,,1.0,f +28819,92%,Montserrat,3.0,t +30786,,Uzbekistan,29.0,f +30461,,Mexico,1.0,t +5963,100%,,3.0,f +30260,100%,,3.0,f +34601,,Maldives,1.0,f +11604,100%,,1.0,f +18347,,,1.0,f +3271,,,1.0,t +27844,,,1.0,t +40114,,,1.0,f +36665,100%,Tunisia,2.0,f +12665,100%,Maldives,2.0,f +10034,100%,Lithuania,1.0,f +36549,,,1.0,f +28489,90%,Malta,5.0,t +2433,100%,Tonga,21.0,f +18069,100%,Turkmenistan,2.0,f +46015,93%,Nicaragua,3.0,f +12918,100%,China,9.0,f +46015,93%,Nicaragua,3.0,f +4886,100%,Philippines,2.0,f +11206,100%,Kenya,2.0,f +39602,100%,Gambia,2.0,t +29844,100%,,2.0,t +36626,,Croatia,1.0,f +10616,,,1.0,f +30636,100%,,1.0,f +44109,100%,United Kingdom,20.0,f +40685,,,1.0,f +36009,100%,,2.0,t +32297,,United Kingdom,1.0,f +24255,100%,Tanzania,1.0,f +19019,97%,Nicaragua,1484.0,f +3908,100%,Nauru,1.0,f +17712,100%,,1.0,f +36040,,Nicaragua,2.0,f +49103,80%,Rwanda,5.0,f +30681,,,1.0,f +41230,100%,Togo,2.0,f +3616,100%,Cape Verde,14.0,t +25119,,,1.0,f +38791,,,1.0,f +33899,100%,Tanzania,2.0,f +5950,100%,Lithuania,1.0,f +45394,100%,Marshall Islands,2.0,f +35347,100%,,2.0,t +32782,,Afghanistan,1.0,t +25837,,Estonia,1.0,f +18231,93%,Uganda,7.0,t +42225,100%,Marshall Islands,1.0,f +49950,100%,,1.0,f +44109,100%,United Kingdom,20.0,f +36309,,Isle of Man,1.0,f +44109,100%,United Kingdom,20.0,f +44109,100%,United Kingdom,20.0,f +12088,100%,Kiribati,8.0,f +39556,88%,,1.0,t +2341,100%,Bouvet Island (Bouvetoya),2.0,t +43667,,,4.0,t +2228,,Togo,1.0,f +18484,100%,Gambia,108.0,f +29205,,Togo,2.0,t +45475,100%,Montserrat,2.0,f +8079,,,1.0,f +551,95%,Rwanda,17.0,f +50068,,Marshall Islands,1.0,f +34306,91%,Wallis and Futuna,30.0,t +12568,100%,Barbados,2.0,f +23993,100%,Nicaragua,1.0,f +32203,100%,Barbados,176.0,f +3632,100%,Philippines,4.0,t +45199,,Puerto Rico,6.0,f +7028,100%,Fiji,4.0,t +20334,99%,Niger,171.0,t +12591,100%,Maldives,4.0,t +32614,100%,Guinea,2.0,f +35379,100%,Tonga,4.0,f +12443,,Turkmenistan,1.0,f +15462,,Ukraine,1.0,f +32203,100%,Barbados,176.0,f +37346,,,1.0,f +32203,100%,Barbados,176.0,f +24026,98%,Cape Verde,69.0,t +32203,100%,Barbados,176.0,f +1989,100%,Lebanon,1.0,f +48133,,Isle of Man,45.0,f +31388,96%,Guinea,1.0,f +10544,100%,France,2.0,f +37084,100%,Niue,1.0,f +9363,95%,Ukraine,50.0,f +31165,100%,,1.0,f +14515,,,1.0,f +23001,,,1.0,t +45038,100%,Lithuania,1.0,f +665,100%,Greenland,2.0,t +42158,100%,,15.0,f +8887,100%,Senegal,5.0,f +7839,100%,,2.0,f +37458,100%,,1.0,f +27861,,Sao Tome and Principe,2.0,f +33811,,,1.0,t +46099,98%,Uzbekistan,28.0,f +26101,100%,Tonga,1.0,t +9538,,Svalbard & Jan Mayen Islands,3.0,f +21935,,Peru,1.0,f +22733,100%,,1.0,t +414,100%,Uganda,17.0,t +39398,,Estonia,1.0,f +48469,100%,Puerto Rico,4.0,f +41224,100%,Mauritania,3.0,t +37731,,,1.0,f +28828,100%,Isle of Man,198.0,t +20263,99%,Maldives,35.0,t +16371,95%,Bouvet Island (Bouvetoya),29.0,f +49760,,Chad,1.0,t +35221,100%,Turks and Caicos Islands,30.0,t +15211,,Niue,1.0,f +14633,100%,United Kingdom,1.0,f +2593,,Gambia,1.0,t +356,99%,Wallis and Futuna,32.0,t +2433,100%,Tonga,21.0,f +37953,100%,Sao Tome and Principe,6.0,f +2433,100%,Tonga,21.0,f +16442,,Cuba,1.0,f +32629,100%,Maldives,3.0,f +11567,100%,Niger,31.0,t +42640,,,1.0,f +42158,100%,,15.0,f +7432,100%,Zimbabwe,2.0,f +42158,100%,,15.0,f +3389,100%,Estonia,13.0,f +19214,100%,Senegal,55.0,f +9221,25%,,1.0,f +4130,,Maldives,7.0,f +38768,,Tonga,1.0,t +6596,,Kenya,1.0,t +15242,,Grenada,1.0,f +26131,,,3.0,f +26131,,,3.0,f +4146,100%,Finland,1.0,f +19495,,Reunion,1.0,f +38196,100%,,1.0,f +18295,100%,Guinea,3.0,t +48693,,Lebanon,1.0,f +26616,100%,Isle of Man,10.0,f +24127,100%,Russian Federation,4.0,f +45390,,,1.0,f +222,89%,,16.0,f +222,89%,,16.0,f +222,89%,,16.0,f +222,89%,,16.0,f +222,89%,,16.0,f +15322,100%,Papua New Guinea,1.0,f +44809,100%,,1.0,f +45394,100%,Marshall Islands,2.0,f +44083,,Niue,1.0,f +50066,,El Salvador,1.0,f +40793,100%,,75.0,t +17184,100%,Svalbard & Jan Mayen Islands,3.0,t +27739,,Andorra,1.0,t +29169,100%,Libyan Arab Jamahiriya,1.0,f +47168,100%,Netherlands,8.0,f +19136,,,1.0,f +32409,100%,Cuba,1.0,f +14371,92%,Niue,1.0,f +18121,100%,Bouvet Island (Bouvetoya),8.0,f +4603,100%,Nicaragua,2.0,f +8330,100%,Mauritania,3.0,f +21400,100%,,2.0,t +10738,,,1.0,f +5641,,,1.0,f +16275,98%,Maldives,24.0,f +41362,100%,,1.0,f +35279,100%,Guinea,1.0,f +32203,100%,Barbados,176.0,f +16767,,Niue,2.0,t +40879,,Rwanda,3.0,f +31243,,Russian Federation,1.0,f +4863,,,2.0,t +32203,100%,Barbados,176.0,f +6543,100%,United Kingdom,3.0,t +43777,100%,Denmark,18.0,f +37865,,Mexico,1.0,f +47238,,Gambia,1.0,t +18291,,Sao Tome and Principe,1.0,f +7563,100%,Pakistan,3.0,f +41117,,Chad,2.0,t +40421,96%,Jersey,29.0,t +32203,100%,Barbados,176.0,f +6162,90%,Isle of Man,2.0,t +43412,,Switzerland,1.0,f +8283,,Lebanon,1.0,f +31245,,Maldives,1.0,f +3886,100%,Russian Federation,3.0,f +3831,100%,Reunion,3.0,t +12572,,Isle of Man,1.0,f +12181,,Tonga,4.0,f +3422,86%,Niger,6.0,f +32064,100%,Malawi,1.0,f +45111,100%,Sao Tome and Principe,420.0,f +22311,100%,,1.0,t +5420,100%,Tonga,41.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +48117,98%,Ukraine,41.0,f +7197,100%,Niue,1.0,t +44151,,Cape Verde,1.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +34257,100%,Chad,1.0,t +45111,100%,Sao Tome and Principe,420.0,f +10210,,,1.0,f +44783,100%,Senegal,1.0,f +19846,90%,,1.0,t +23642,100%,Holy See (Vatican City State),5.0,f +4745,100%,Croatia,119.0,f +8236,100%,Mexico,2.0,f +38135,,Zimbabwe,1.0,f +24885,100%,Sao Tome and Principe,1.0,f +34363,100%,Estonia,1.0,f +47204,,,1.0,t +14059,100%,Uganda,9.0,f +34320,,Guinea,1.0,f +29186,100%,Jersey,1.0,f +42764,100%,Guernsey,13.0,t +20762,100%,Micronesia,1.0,f +2492,,Russian Federation,1.0,f +25795,,Lebanon,1.0,t +32676,100%,China,34.0,f +38468,100%,Sao Tome and Principe,2.0,f +30786,,Uzbekistan,29.0,f +5327,100%,Togo,5.0,t +25377,,Niue,1.0,f +26636,100%,Barbados,2.0,f +31623,100%,Isle of Man,1.0,f +26810,100%,,2.0,f +3104,43%,Marshall Islands,1.0,f +140,,,2.0,t +34135,100%,Isle of Man,1.0,f +42999,100%,Sao Tome and Principe,2.0,f +49055,,Zimbabwe,2.0,t +9363,95%,Ukraine,50.0,f +649,,,1.0,t +20540,,Netherlands,1.0,f +4945,0%,Cape Verde,5.0,f +8770,100%,El Salvador,3.0,f +32203,100%,Barbados,176.0,f +4945,0%,Cape Verde,5.0,f +1271,100%,Nicaragua,1.0,t +10711,93%,Uganda,108.0,t +32203,100%,Barbados,176.0,f +4945,0%,Cape Verde,5.0,f +6415,,Niue,1.0,f +3904,100%,Guinea,1.0,f +4945,0%,Cape Verde,5.0,f +18077,100%,Sao Tome and Principe,139.0,f +46044,50%,,1.0,f +17417,,Denmark,11.0,f +44141,90%,Zimbabwe,1.0,f +101,,Togo,1.0,f +45919,100%,Montserrat,9.0,t +348,,French Guiana,1.0,f +49446,,Kiribati,2.0,f +34070,90%,Estonia,1.0,f +49446,,Kiribati,2.0,f +37336,,,1.0,t +3229,100%,Bouvet Island (Bouvetoya),2.0,f +21930,100%,,1.0,f +605,100%,Svalbard & Jan Mayen Islands,1.0,f +46580,,Sao Tome and Principe,1.0,f +9239,100%,Cuba,17.0,f +46500,99%,Pakistan,73.0,f +43480,100%,Mexico,1.0,f +46500,99%,Pakistan,73.0,f +46500,99%,Pakistan,73.0,f +46500,99%,Pakistan,73.0,f +27139,,Kiribati,1.0,t +46500,99%,Pakistan,73.0,f +46500,99%,Pakistan,73.0,f +46500,99%,Pakistan,73.0,f +46500,99%,Pakistan,73.0,f +17030,100%,Croatia,5.0,f +46500,99%,Pakistan,73.0,f +46500,99%,Pakistan,73.0,f +46500,99%,Pakistan,73.0,f +46500,99%,Pakistan,73.0,f +46500,99%,Pakistan,73.0,f +46500,99%,Pakistan,73.0,f +46500,99%,Pakistan,73.0,f +46500,99%,Pakistan,73.0,f +46500,99%,Pakistan,73.0,f +46500,99%,Pakistan,73.0,f +13975,100%,Mexico,2.0,f +30423,,French Guiana,1.0,f +46500,99%,Pakistan,73.0,f +46500,99%,Pakistan,73.0,f +46500,99%,Pakistan,73.0,f +46500,99%,Pakistan,73.0,f +46500,99%,Pakistan,73.0,f +46500,99%,Pakistan,73.0,f +3918,,,1.0,f +46500,99%,Pakistan,73.0,f +36774,100%,Tonga,19.0,f +21307,100%,Estonia,1.0,f +38362,,,1.0,f +43332,,,1.0,f +46965,,,1.0,f +45664,,Mauritania,1.0,f +7331,99%,Indonesia,8.0,t +29509,100%,,1.0,f +37010,,Anguilla,1.0,f +48974,,,1.0,t +36643,98%,Maldives,17.0,f +27668,46%,Micronesia,3.0,f +27866,100%,Guinea,8.0,f +28411,100%,,1.0,f +47158,,,1.0,f +28828,100%,Isle of Man,198.0,t +9974,100%,Costa Rica,1.0,f +15942,100%,Isle of Man,1.0,f +18247,95%,Iran,80.0,t +13141,,Kenya,2.0,f +4601,,Micronesia,1.0,f +31066,,Somalia,1.0,t +40570,,Indonesia,1.0,f +47941,100%,,1.0,f +28319,100%,France,1.0,f +32234,,,1.0,f +10458,100%,,1.0,f +47846,100%,,1.0,f +49130,100%,Niue,1.0,t +43968,80%,Malawi,1.0,f +29726,67%,Denmark,1.0,f +47509,100%,French Guiana,1.0,t +6894,80%,Estonia,47.0,t +31212,,Malawi,1.0,t +28869,,Antarctica (the territory South of 60 deg S),172.0,f +3100,100%,Malta,1.0,f +8835,,Wallis and Futuna,1.0,f +28869,,Antarctica (the territory South of 60 deg S),172.0,f +28869,,Antarctica (the territory South of 60 deg S),172.0,f +19214,100%,Senegal,55.0,f +46129,100%,Costa Rica,2.0,t +19951,88%,Vanuatu,10.0,f +9832,100%,,2.0,f +16036,100%,Faroe Islands,1.0,f +7382,33%,,1.0,t +15704,100%,Anguilla,2.0,t +42866,,,1.0,t +44833,,Venezuela,1.0,f +32262,100%,Lebanon,1.0,f +44754,,Uzbekistan,1.0,f +35670,100%,Russian Federation,2.0,f +28869,,Antarctica (the territory South of 60 deg S),172.0,f +20372,,Niger,1.0,t +41415,,Lebanon,1.0,f +18340,100%,Gibraltar,1.0,f +28881,,Ghana,2.0,f +9252,,,2.0,f +24327,,Isle of Man,1.0,f +28869,,Antarctica (the territory South of 60 deg S),172.0,f +19194,,Vanuatu,7.0,f +21786,100%,,1.0,t +41144,100%,,1.0,f +17354,,Micronesia,1.0,f +10746,,,1.0,f +19951,88%,Vanuatu,10.0,f +32121,100%,Svalbard & Jan Mayen Islands,1.0,t +22056,,,1.0,f +18845,,Svalbard & Jan Mayen Islands,2.0,f +2401,100%,,2.0,t +14779,,Jersey,1.0,t +35459,100%,Cuba,2.0,t +48741,100%,Monaco,1.0,f +36809,40%,Niue,1.0,t +31443,,,1.0,f +38095,100%,Malawi,2.0,f +15689,96%,Micronesia,1.0,f +23142,,,1.0,f +22225,,Mauritania,1.0,f +48769,100%,Indonesia,4.0,t +37218,100%,Slovakia (Slovak Republic),4.0,t +11427,,Slovakia (Slovak Republic),4.0,t +48769,100%,Indonesia,4.0,t +30725,,,1.0,f +42054,100%,Guinea,2.0,f +8317,100%,Bosnia and Herzegovina,2.0,t +33208,,Micronesia,1.0,f +42284,100%,El Salvador,2.0,f +27131,,,1.0,f +43540,72%,Bosnia and Herzegovina,25.0,f +23758,,Anguilla,2.0,f +12112,100%,Lithuania,1.0,f +24333,100%,Malta,1.0,f +22429,,United Kingdom,2.0,f +46500,99%,Pakistan,73.0,f +46500,99%,Pakistan,73.0,f +2766,100%,United Kingdom,4.0,f +46500,99%,Pakistan,73.0,f +14932,100%,Finland,1.0,t +46500,99%,Pakistan,73.0,f +18822,,Montserrat,1.0,f +49524,100%,,1.0,f +12653,,,1.0,f +45063,100%,Isle of Man,1.0,f +43152,100%,Nicaragua,82.0,t +2433,100%,Tonga,21.0,f +29238,,,1.0,f +32203,100%,Barbados,176.0,f +16887,100%,China,11.0,f +49776,100%,,1.0,t +36020,100%,Denmark,1.0,t +32730,100%,Svalbard & Jan Mayen Islands,1.0,f +19951,88%,Vanuatu,10.0,f +11736,,Lithuania,2.0,t +43152,100%,Nicaragua,82.0,t +4768,100%,Monaco,1.0,t +28506,,Marshall Islands,1.0,f +30440,,Denmark,1.0,f +2305,90%,,1.0,f +48133,,Isle of Man,45.0,f +35641,,Netherlands,15.0,t +14322,100%,Chile,1.0,f +46057,,Jersey,1.0,f +19811,90%,Nicaragua,21.0,t +32203,100%,Barbados,176.0,f +13975,100%,Mexico,2.0,f +19951,88%,Vanuatu,10.0,f +26929,100%,Croatia,2.0,f +22482,,Svalbard & Jan Mayen Islands,1.0,f +16150,,Denmark,1.0,f +47845,,Isle of Man,1.0,t +32203,100%,Barbados,176.0,f +32203,100%,Barbados,176.0,f +21228,90%,Russian Federation,1.0,f +42284,100%,El Salvador,2.0,f +48418,98%,Bosnia and Herzegovina,30.0,f +48418,98%,Bosnia and Herzegovina,30.0,f +36191,100%,Pakistan,1.0,f +31943,,Denmark,1.0,f +31071,,Mauritania,1.0,t +35436,99%,Nicaragua,21.0,f +2161,44%,Rwanda,8.0,f +24165,100%,Guinea,1.0,f +4926,,Saint Helena,1.0,f +2161,44%,Rwanda,8.0,f +48750,,,1.0,f +2161,44%,Rwanda,8.0,f +41788,100%,Turks and Caicos Islands,6.0,f +14002,100%,Monaco,1.0,f +31774,,Ecuador,1.0,t +27066,,,1.0,t +40406,75%,Vanuatu,1.0,f +38532,90%,,6.0,f +44109,100%,United Kingdom,20.0,f +26148,100%,Kiribati,10.0,t +41928,87%,Nicaragua,9.0,f +22972,100%,Isle of Man,1.0,t +4930,,,1.0,f +3314,100%,Slovakia (Slovak Republic),10.0,f +39570,75%,Libyan Arab Jamahiriya,2.0,t +32203,100%,Barbados,176.0,f +13613,,Russian Federation,1.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +43152,100%,Nicaragua,82.0,t +32203,100%,Barbados,176.0,f +18484,100%,Gambia,108.0,f +37417,,Russian Federation,1.0,f +4745,100%,Croatia,119.0,f +11059,,Isle of Man,2.0,f +3314,100%,Slovakia (Slovak Republic),10.0,f +43380,50%,Rwanda,1.0,f +10042,,Indonesia,21.0,f +13318,100%,Gambia,2.0,t +17176,67%,Russian Federation,2.0,t +37550,100%,Canada,1.0,f +44533,100%,Afghanistan,5.0,f +24237,80%,Costa Rica,1.0,t +6542,100%,Bosnia and Herzegovina,1.0,f +15038,100%,Puerto Rico,1.0,f +18944,80%,Indonesia,2.0,f +27226,100%,Congo,10.0,f +36974,,Mauritania,1.0,f +43237,40%,Montserrat,24.0,f +12003,100%,Uganda,8.0,t +28496,100%,Nicaragua,38.0,f +13936,,Lebanon,2.0,t +41688,,,1.0,f +36451,100%,French Guiana,1.0,t +35155,90%,Svalbard & Jan Mayen Islands,2.0,t +42341,,Russian Federation,1.0,f +46389,,Gambia,1.0,f +891,100%,Chile,2.0,t +16448,86%,Palestinian Territory,1.0,f +28496,100%,Nicaragua,38.0,f +13105,100%,Anguilla,2.0,f +5969,100%,Nauru,1.0,f +28496,100%,Nicaragua,38.0,f +10042,,Indonesia,21.0,f +28071,100%,Cape Verde,4.0,t +2843,100%,Micronesia,1.0,f +10455,100%,,1.0,t +16241,100%,Greenland,2.0,f +29628,100%,Cocos (Keeling) Islands,1.0,f +23582,98%,Montserrat,17.0,f +28619,100%,Bosnia and Herzegovina,1.0,f +35436,99%,Nicaragua,21.0,f +8855,100%,Sao Tome and Principe,2.0,f +50032,100%,Uganda,2.0,t +30584,90%,,1.0,f +28045,100%,Malawi,2.0,f +14059,100%,Uganda,9.0,f +46343,90%,Niue,2.0,f +19019,97%,Nicaragua,1484.0,f +19019,97%,Nicaragua,1484.0,f +45239,,Russian Federation,1.0,f +5920,,Denmark,1.0,f +41889,96%,Uzbekistan,14.0,t +6307,100%,,2.0,f +31887,,Rwanda,2.0,f +27226,100%,Congo,10.0,f +27226,100%,Congo,10.0,f +33362,,Andorra,1.0,f +39143,89%,,33.0,f +27226,100%,Congo,10.0,f +6658,,Saint Helena,1.0,f +39109,77%,Ukraine,24.0,t +29844,100%,,2.0,t +37933,,Sao Tome and Principe,1.0,f +48919,,,1.0,f +12604,,Bosnia and Herzegovina,1.0,t +34466,100%,Guinea,1.0,f +32935,,Ghana,40.0,f +41493,100%,Gambia,5.0,f +12649,100%,Kenya,1.0,f +39143,89%,,33.0,f +15099,,,1.0,f +11017,100%,Malawi,2.0,t +12181,,Tonga,4.0,f +40554,100%,Brunei Darussalam,1.0,f +39412,0%,Reunion,3.0,f +2597,100%,Nicaragua,13.0,t +38410,,,1.0,t +46008,100%,Turks and Caicos Islands,1.0,f +39143,89%,,33.0,f +20336,,Sao Tome and Principe,2.0,f +41687,,Lebanon,2.0,f +541,93%,Marshall Islands,17.0,f +38287,,Bosnia and Herzegovina,1.0,f +29986,100%,Nicaragua,1.0,f +26447,100%,Russian Federation,1.0,f +31751,100%,Nicaragua,29.0,f +4609,,Denmark,1.0,t +1500,,Puerto Rico,1.0,f +17541,100%,Niue,2.0,f +35436,99%,Nicaragua,21.0,f +31751,100%,Nicaragua,29.0,f +19019,97%,Nicaragua,1484.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +35436,99%,Nicaragua,21.0,f +35436,99%,Nicaragua,21.0,f +35436,99%,Nicaragua,21.0,f +31508,100%,Malawi,1.0,t +9363,95%,Ukraine,50.0,f +36560,100%,Libyan Arab Jamahiriya,1.0,t +23845,100%,,1.0,f +3827,,,1.0,t +29147,100%,Slovakia (Slovak Republic),2.0,f +20487,,Holy See (Vatican City State),1.0,t +12729,100%,Maldives,6.0,t +27510,,Kenya,1.0,t +24796,,Kenya,2.0,t +302,100%,Tunisia,20.0,f +3019,100%,Barbados,18.0,f +6316,0%,Palestinian Territory,1.0,f +32432,,Turks and Caicos Islands,4.0,f +22642,100%,,1.0,f +38416,,,1.0,f +40993,100%,Montserrat,15.0,f +31059,,,1.0,t +39143,89%,,33.0,f +36948,100%,Russian Federation,1.0,f +39143,89%,,33.0,f +17392,,Andorra,1.0,f +797,100%,,1.0,f +44851,,Lebanon,1.0,f +26826,100%,Brazil,1.0,f +20334,99%,Niger,171.0,t +13956,,Niue,2.0,t +49343,,Monaco,1.0,t +46289,100%,Bouvet Island (Bouvetoya),5.0,f +2070,,Anguilla,1.0,t +31699,60%,,1.0,t +562,100%,Nicaragua,1.0,f +14745,,Niue,1.0,t +32038,100%,Indonesia,35.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +20789,98%,Sao Tome and Principe,13.0,f +38554,100%,,1.0,f +40895,,French Guiana,1.0,f +10116,100%,Denmark,2.0,t +25614,,Ghana,5.0,f +34340,100%,Finland,1.0,f +24195,56%,Barbados,14.0,f +25460,100%,Maldives,13.0,f +25460,100%,Maldives,13.0,f +9222,100%,Brazil,18.0,t +25460,100%,Maldives,13.0,f +36025,100%,Djibouti,6.0,t +4001,,France,1.0,f +17871,,Guinea,1.0,f +20314,100%,El Salvador,1.0,f +9849,100%,Isle of Man,2.0,f +42358,100%,Svalbard & Jan Mayen Islands,3.0,f +10073,,Guinea,1.0,f +10116,100%,Denmark,2.0,t +9255,,Vietnam,10.0,f +41080,89%,Tonga,10.0,t +34269,78%,Niue,2.0,t +43659,98%,Maldives,14.0,f +43264,100%,Niue,3.0,t +10484,100%,Guinea,12.0,t +27983,100%,,1.0,f +10987,,Russian Federation,2.0,t +21040,,,1.0,f +19019,97%,Nicaragua,1484.0,f +11464,100%,Papua New Guinea,11.0,f +46343,90%,Niue,2.0,f +686,97%,Micronesia,7.0,t +7811,100%,French Guiana,3.0,t +13388,100%,Brazil,5.0,f +310,96%,Cape Verde,3.0,t +29410,89%,Niger,1.0,f +3447,,Finland,3.0,t +27227,100%,Isle of Man,2.0,t +42836,100%,Denmark,1.0,f +48670,100%,Gambia,2.0,f +9573,100%,Canada,2.0,t +22331,99%,Rwanda,50.0,t +12172,,Djibouti,1.0,t +10575,100%,Bouvet Island (Bouvetoya),3.0,t +7682,100%,Micronesia,2.0,f +34084,100%,Gibraltar,1.0,f +1637,,Uzbekistan,1.0,f +39639,100%,Niue,19.0,f +26674,77%,Uzbekistan,27.0,f +26839,100%,Tonga,1.0,f +6111,,,1.0,f +2433,100%,Tonga,21.0,f +13421,100%,Marshall Islands,1.0,t +16887,100%,China,11.0,f +19150,100%,Brazil,1.0,f +2640,100%,French Guiana,1.0,t +26674,77%,Uzbekistan,27.0,f +12301,,,1.0,f +26674,77%,Uzbekistan,27.0,f +24504,,Uganda,1.0,t +28496,100%,Nicaragua,38.0,f +26674,77%,Uzbekistan,27.0,f +6206,0%,Greenland,1.0,f +4745,100%,Croatia,119.0,f +3701,100%,,1.0,f +4745,100%,Croatia,119.0,f +28496,100%,Nicaragua,38.0,f +4745,100%,Croatia,119.0,f +46427,81%,Sao Tome and Principe,4.0,t +26852,100%,Canada,2.0,f +18077,100%,Sao Tome and Principe,139.0,f +43908,100%,,1.0,f +18077,100%,Sao Tome and Principe,139.0,f +48309,,Niue,2.0,f +12051,,Tonga,1.0,f +26674,77%,Uzbekistan,27.0,f +10808,100%,Micronesia,1.0,f +26674,77%,Uzbekistan,27.0,f +36889,87%,Micronesia,6.0,f +36722,100%,Philippines,17.0,f +6321,100%,Zimbabwe,3.0,f +48942,100%,Uganda,1.0,f +13478,,,1.0,t +36722,100%,Philippines,17.0,f +9747,,Togo,1.0,f +38981,,Faroe Islands,1.0,t +3316,,,2.0,f +48338,100%,Maldives,4.0,t +13560,100%,,1.0,f +46918,100%,Sao Tome and Principe,5.0,f +13719,100%,Denmark,1.0,f +16307,100%,,2.0,f +29967,94%,Reunion,5.0,f +19019,97%,Nicaragua,1484.0,f +42644,100%,Uganda,3.0,f +19019,97%,Nicaragua,1484.0,f +19019,97%,Nicaragua,1484.0,f +37041,90%,Jersey,2.0,f +25493,100%,Turks and Caicos Islands,1.0,f +5671,0%,Russian Federation,2.0,f +27152,100%,Kenya,4.0,f +47799,,,1.0,f +36722,100%,Philippines,17.0,f +39342,100%,Micronesia,3.0,f +36889,87%,Micronesia,6.0,f +21483,100%,,1.0,f +39483,,,1.0,f +28008,,Chad,1.0,f +36722,100%,Philippines,17.0,f +29298,75%,Cape Verde,2.0,f +27774,78%,Vietnam,15.0,f +4745,100%,Croatia,119.0,f +2743,97%,China,23.0,f +5082,100%,,1.0,f +36722,100%,Philippines,17.0,f +41305,100%,Togo,2.0,f +24546,50%,Zimbabwe,2.0,f +19958,100%,Congo,40.0,t +38423,100%,Niue,5.0,t +3000,100%,,1.0,f +35991,100%,Sao Tome and Principe,1.0,f +12181,,Tonga,4.0,f +34710,100%,Netherlands,1.0,f +29334,,Togo,1.0,f +12181,,Tonga,4.0,f +36722,100%,Philippines,17.0,f +44316,98%,Uganda,6.0,t +19263,,Guinea,1.0,t +8660,100%,,2.0,f +1184,100%,Bahrain,2.0,f +34499,100%,,2.0,f +22245,,Micronesia,1.0,t +28444,,Chad,1.0,t +12997,,,1.0,f +22728,75%,,2.0,f +10452,,Zimbabwe,1.0,f +10930,100%,Chad,2.0,f +32454,100%,Jersey,1.0,t +40946,100%,,1.0,t +43504,,Chad,1.0,f +37270,100%,Cuba,2.0,f +1139,100%,Nicaragua,2.0,f +49541,100%,French Guiana,6.0,f +2036,100%,Slovakia (Slovak Republic),3.0,f +19958,100%,Congo,40.0,t +11973,100%,Niue,7.0,t +31828,100%,Isle of Man,2.0,t +10484,100%,Guinea,12.0,t +31315,,Anguilla,1.0,f +6168,,Bouvet Island (Bouvetoya),14.0,t +31594,100%,Philippines,19.0,t +10377,100%,Niue,1.0,f +42409,100%,Lebanon,2.0,f +37227,100%,Micronesia,1.0,t +41223,100%,Indonesia,3.0,f +41271,100%,,2.0,t +35608,67%,,1.0,f +21201,,Vanuatu,2.0,f +30074,,Uzbekistan,1.0,f +2103,100%,,2.0,t +41223,100%,Indonesia,3.0,f +2103,100%,,2.0,t +46239,100%,,1.0,f +41223,100%,Indonesia,3.0,f +4209,,,1.0,t +20336,,Sao Tome and Principe,2.0,f +19958,100%,Congo,40.0,t +22623,,Estonia,1.0,t +40172,100%,Kiribati,2.0,f +754,0%,United Kingdom,1.0,f +30540,100%,Denmark,1.0,f +19194,,Vanuatu,7.0,f +17483,90%,Vanuatu,1.0,f +19194,,Vanuatu,7.0,f +36284,100%,Marshall Islands,1.0,f +22429,,United Kingdom,2.0,f +19194,,Vanuatu,7.0,f +19194,,Vanuatu,7.0,f +19194,,Vanuatu,7.0,f +19194,,Vanuatu,7.0,f +23830,,Gambia,1.0,f +14714,100%,,3.0,t +18084,100%,,1.0,t +43220,100%,Korea,1.0,t +46062,,,3.0,f +42499,0%,Vanuatu,1.0,f +19958,100%,Congo,40.0,t +30133,,,1.0,t +29400,,Sao Tome and Principe,1.0,f +41811,100%,Niue,1.0,f +34045,,,1.0,f +13124,,Gambia,1.0,f +37007,100%,Guernsey,2.0,f +21695,0%,Grenada,1.0,f +8411,,,1.0,t +15344,100%,Svalbard & Jan Mayen Islands,1.0,f +45305,,,1.0,t +28964,,Russian Federation,2.0,f +25127,100%,United Kingdom,4.0,f +6478,,Niue,1.0,f +45418,,,1.0,f +31339,,,3.0,t +3509,,Tanzania,1.0,t +38461,0%,Vanuatu,1.0,f +39870,,Slovakia (Slovak Republic),21.0,t +26030,,,1.0,f +49801,80%,Costa Rica,1.0,f +19019,97%,Nicaragua,1484.0,f +19951,88%,Vanuatu,10.0,f +6406,100%,Marshall Islands,2.0,f +25256,100%,Zimbabwe,1.0,f +24854,100%,,1.0,f +49581,,,1.0,f +40591,100%,Reunion,1.0,t +47639,100%,France,2.0,f +2729,100%,United Kingdom,1.0,f +13788,75%,Uzbekistan,3.0,f +31270,100%,Guinea,2.0,f +47961,,Mauritania,1.0,t +19165,20%,Bosnia and Herzegovina,3.0,t +5119,100%,Guinea,1.0,f +43987,100%,Russian Federation,2.0,f +7167,50%,France,1.0,f +34392,,,1.0,f +31849,100%,Barbados,2.0,f +25491,100%,Uzbekistan,1.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +43259,0%,,1.0,f +23135,,Estonia,1.0,f +14730,100%,Ecuador,1.0,f +26913,,Niue,1.0,t +32203,100%,Barbados,176.0,f +2743,97%,China,23.0,f +13708,,,1.0,t +28340,100%,Chad,1.0,t +21219,100%,Kenya,1.0,f +35015,100%,Senegal,4.0,t +32038,100%,Indonesia,35.0,f +32203,100%,Barbados,176.0,f +22674,100%,,3.0,f +32203,100%,Barbados,176.0,f +8786,,Netherlands,2.0,f +2945,,Russian Federation,1.0,f +924,70%,Tonga,6.0,f +41107,100%,Marshall Islands,6.0,f +2433,100%,Tonga,21.0,f +29777,100%,Uzbekistan,2.0,f +2743,97%,China,23.0,f +33853,80%,Jersey,2.0,f +8224,98%,Estonia,12.0,f +24559,100%,Somalia,1.0,t +4340,,Bouvet Island (Bouvetoya),1.0,f +15741,100%,Cuba,14.0,f +31951,,Ghana,1.0,f +6004,90%,Micronesia,4.0,f +20120,100%,Wallis and Futuna,10.0,f +15741,100%,Cuba,14.0,f +9362,100%,Turkmenistan,1.0,t +15741,100%,Cuba,14.0,f +15741,100%,Cuba,14.0,f +3466,,Monaco,1.0,f +48991,76%,Bosnia and Herzegovina,7.0,t +9708,,Lebanon,2.0,t +20983,,,1.0,f +40618,,,1.0,f +20120,100%,Wallis and Futuna,10.0,f +4121,100%,Denmark,1.0,f +17196,,Guinea,1.0,f +18320,50%,Reunion,19.0,t +7693,,Guinea,1.0,f +15272,100%,,2.0,t +14691,,Greenland,1.0,f +46056,,Estonia,3.0,f +22580,,Ghana,1.0,f +26882,,Pakistan,1.0,f +28862,100%,Philippines,2.0,f +8870,100%,Svalbard & Jan Mayen Islands,3.0,f +19019,97%,Nicaragua,1484.0,f +35116,100%,,1.0,t +32762,100%,,1.0,t +36586,,,1.0,f +36774,100%,Tonga,19.0,f +20518,100%,Togo,4.0,t +8292,100%,Nauru,1.0,f +19724,80%,Malta,4.0,t +44408,100%,Peru,3.0,f +32242,,Uganda,1.0,f +10490,100%,Sao Tome and Principe,4.0,f +20799,,,1.0,t +25800,100%,Tonga,1.0,t +32438,100%,Brazil,1.0,f +17030,100%,Croatia,5.0,f +9239,100%,Cuba,17.0,f +43554,100%,Uganda,1.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +6838,96%,Spain,59.0,t +26338,100%,Barbados,6.0,f +6838,96%,Spain,59.0,t +6838,96%,Spain,59.0,t +6838,96%,Spain,59.0,t +6838,96%,Spain,59.0,t +6838,96%,Spain,59.0,t +6838,96%,Spain,59.0,t +6838,96%,Spain,59.0,t +6838,96%,Spain,59.0,t +32038,100%,Indonesia,35.0,f +6838,96%,Spain,59.0,t +6838,96%,Spain,59.0,t +6838,96%,Spain,59.0,t +6838,96%,Spain,59.0,t +6838,96%,Spain,59.0,t +6838,96%,Spain,59.0,t +6838,96%,Spain,59.0,t +6838,96%,Spain,59.0,t +6838,96%,Spain,59.0,t +11963,100%,Croatia,2.0,f +44121,100%,Nicaragua,5.0,f +45775,,Nicaragua,1.0,f +18459,100%,Zimbabwe,100.0,f +7849,0%,Costa Rica,1.0,f +5413,100%,France,3.0,t +46439,100%,Rwanda,5.0,f +46439,100%,Rwanda,5.0,f +38619,,,1.0,f +1685,90%,Niue,2.0,f +24710,,Peru,1.0,f +10743,,,2.0,f +33372,100%,Guinea,22.0,t +33372,100%,Guinea,22.0,t +33372,100%,Guinea,22.0,t +33372,100%,Guinea,22.0,t +33372,100%,Guinea,22.0,t +19019,97%,Nicaragua,1484.0,f +38272,100%,,1.0,f +34540,100%,Rwanda,2.0,f +44395,,Maldives,1.0,t +48122,60%,,3.0,f +33104,,,2.0,t +20933,100%,,1.0,t +21933,90%,Niue,2.0,t +8251,,Holy See (Vatican City State),1.0,t +28964,,Russian Federation,2.0,f +9845,,,1.0,t +39372,,,1.0,f +43659,98%,Maldives,14.0,f +18320,50%,Reunion,19.0,t +28160,,Russian Federation,1.0,f +39222,67%,Bouvet Island (Bouvetoya),3.0,f +26992,100%,Netherlands,3.0,t +28862,100%,Philippines,2.0,f +48861,100%,Christmas Island,1.0,t +3167,100%,Micronesia,3.0,f +43772,50%,Mexico,12.0,t +579,0%,Anguilla,1.0,f +27488,,Pakistan,1.0,f +5140,100%,Lebanon,3.0,t +6495,89%,Tonga,34.0,f +652,90%,Barbados,1.0,f +6495,89%,Tonga,34.0,f +40538,,,1.0,f +6495,89%,Tonga,34.0,f +2813,,Malta,2.0,f +11846,50%,,1.0,f +1320,90%,Jersey,1.0,f +43865,33%,Russian Federation,2.0,f +25146,100%,Sao Tome and Principe,4.0,f +27822,100%,Russian Federation,2.0,f +42503,100%,Indonesia,1.0,f +3260,100%,,1.0,f +15231,100%,United Kingdom,5.0,f +7916,100%,French Guiana,1.0,t +25146,100%,Sao Tome and Principe,4.0,f +35912,100%,Sao Tome and Principe,1.0,f +13643,100%,Vietnam,1.0,f +46906,100%,,1.0,t +43316,100%,Indonesia,23.0,f +35193,100%,Kiribati,1.0,f +4788,,Tonga,7.0,f +4217,,Kenya,52.0,f +47049,100%,Zimbabwe,1.0,f +47896,100%,French Guiana,1.0,t +8855,100%,Sao Tome and Principe,2.0,f +49170,100%,Guinea,1.0,f +23883,,Russian Federation,1.0,f +9278,100%,Netherlands,10.0,f +4217,,Kenya,52.0,f +20359,,,1.0,f +39651,100%,Denmark,1.0,f +10711,93%,Uganda,108.0,t +42260,100%,Tanzania,1.0,f +23052,,,1.0,t +1485,100%,Chad,2.0,t +35641,,Netherlands,15.0,t +19019,97%,Nicaragua,1484.0,f +2337,100%,Kiribati,1.0,f +28219,,Sao Tome and Principe,1.0,t +19019,97%,Nicaragua,1484.0,f +38192,,Denmark,1.0,t +8297,,Denmark,1.0,f +15950,100%,Niue,2.0,f +4358,100%,Ecuador,2.0,t +1096,,Anguilla,2.0,t +5140,100%,Lebanon,3.0,t +10750,,,1.0,t +15664,100%,,3.0,f +28152,80%,Svalbard & Jan Mayen Islands,2.0,f +32935,,Ghana,40.0,f +46056,,Estonia,3.0,f +31751,100%,Nicaragua,29.0,f +31751,100%,Nicaragua,29.0,f +5356,,Uzbekistan,1.0,t +31751,100%,Nicaragua,29.0,f +39140,100%,Niue,1.0,t +46672,,Isle of Man,2.0,f +6801,100%,Kiribati,2.0,f +31751,100%,Nicaragua,29.0,f +9345,100%,Bosnia and Herzegovina,4.0,f +8091,97%,Cuba,10.0,f +37680,100%,Ecuador,1.0,f +43316,100%,Indonesia,23.0,f +13014,,China,6.0,f +38041,75%,,2.0,t +30320,100%,Togo,4.0,f +26457,100%,Monaco,4.0,t +36722,100%,Philippines,17.0,f +21230,100%,Lithuania,1.0,f +28828,100%,Isle of Man,198.0,t +48592,63%,Isle of Man,3.0,f +34083,100%,French Guiana,1.0,f +26457,100%,Monaco,4.0,t +22730,100%,Niue,1.0,f +9239,100%,Cuba,17.0,f +30320,100%,Togo,4.0,f +10042,,Indonesia,21.0,f +43738,100%,Zimbabwe,1.0,f +9239,100%,Cuba,17.0,f +48117,98%,Ukraine,41.0,f +9768,,,3.0,f +32841,100%,Venezuela,1.0,f +414,100%,Uganda,17.0,t +35874,100%,Finland,1.0,f +279,100%,,2.0,t +23211,,Turks and Caicos Islands,3.0,t +31092,,Senegal,19.0,f +43316,100%,Indonesia,23.0,f +46782,,Niue,1.0,f +4859,,Bosnia and Herzegovina,1.0,t +26428,100%,Svalbard & Jan Mayen Islands,1.0,f +25074,,,1.0,f +25374,100%,Tonga,8.0,f +2161,44%,Rwanda,8.0,f +47577,,Niger,1.0,f +38674,100%,,1.0,f +40830,100%,Kenya,1.0,t +36722,100%,Philippines,17.0,f +7682,100%,Micronesia,2.0,f +42948,100%,Brazil,1.0,f +19160,,Lebanon,1.0,f +19607,,,1.0,f +19153,100%,Holy See (Vatican City State),1.0,f +7820,100%,,1.0,f +45484,,Chile,3.0,f +47267,,Denmark,1.0,f +21335,100%,,2.0,t +15458,100%,,2.0,f +26131,,,3.0,f +37819,100%,,1.0,f +38335,79%,Guinea,11.0,f +13515,100%,,3.0,t +11077,0%,French Guiana,1.0,f +6984,100%,Suriname,9.0,f +2603,96%,Uzbekistan,7.0,f +38711,,Russian Federation,1.0,f +40646,100%,Turks and Caicos Islands,2.0,t +16714,,Marshall Islands,1.0,f +33831,100%,Faroe Islands,2.0,f +47274,100%,Tonga,48.0,f +11814,100%,Micronesia,7.0,t +34809,100%,Vietnam,2.0,t +13487,,Niue,1.0,f +26350,100%,France,1.0,t +12488,,China,2.0,f +9758,100%,Guinea,2.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +27673,80%,Russian Federation,1.0,f +21240,94%,Niger,130.0,f +20153,96%,Reunion,51.0,f +18278,100%,Uganda,1.0,f +32364,,Bahrain,1.0,f +33332,100%,Puerto Rico,1.0,t +50035,100%,Tonga,1.0,f +48420,,,1.0,t +37173,,Niue,1.0,f +9533,,Senegal,16.0,t +24026,98%,Cape Verde,69.0,t +17590,100%,Montserrat,1.0,f +49910,100%,,1.0,t +44413,100%,Gambia,1.0,t +23106,100%,,3.0,f +12016,100%,,1.0,f +277,100%,,2.0,f +48117,98%,Ukraine,41.0,f +13629,67%,Cape Verde,6.0,f +44053,,Faroe Islands,1.0,f +45883,100%,,1.0,t +32551,100%,Guinea,1.0,f +25641,100%,Kenya,1.0,f +7059,100%,,1.0,f +15020,100%,Denmark,1.0,f +13311,,Mauritania,1.0,t +1564,100%,Indonesia,12.0,f +36773,95%,Venezuela,4.0,t +27088,100%,France,1.0,f +45215,100%,Niue,1.0,f +3164,,United Kingdom,1.0,t +22309,100%,Turkmenistan,1.0,f +26895,50%,Gambia,1.0,f +21670,100%,Mauritania,1.0,f +222,89%,,16.0,f +43702,100%,Papua New Guinea,1.0,t +39570,75%,Libyan Arab Jamahiriya,2.0,t +13451,100%,,3.0,f +43540,72%,Bosnia and Herzegovina,25.0,f +18247,95%,Iran,80.0,t +38123,100%,Sao Tome and Principe,1.0,f +46059,100%,Venezuela,1.0,f +13952,100%,,1.0,t +43540,72%,Bosnia and Herzegovina,25.0,f +16535,100%,,3.0,f +13300,100%,Russian Federation,1.0,f +4451,,,1.0,t +43230,100%,Chad,1.0,t +1946,75%,,1.0,f +44492,100%,,2.0,f +2308,63%,Micronesia,1.0,t +4130,,Maldives,7.0,f +36091,80%,Anguilla,2.0,t +17394,0%,Nicaragua,49.0,f +14705,,Puerto Rico,1.0,f +12838,100%,,2.0,f +1818,40%,,1.0,f +12838,100%,,2.0,f +45997,0%,United Kingdom,1.0,f +15917,98%,,3.0,f +23451,100%,Niger,3.0,f +40172,100%,Kiribati,2.0,f +15917,98%,,3.0,f +21646,100%,Togo,2.0,f +46897,,Kiribati,1.0,f +7804,100%,Russian Federation,3.0,f +14082,100%,Nicaragua,3.0,t +48501,,,1.0,t +40427,100%,,1.0,t +22434,,Lebanon,1.0,f +47958,80%,Niue,1.0,f +5391,,Russian Federation,1.0,f +48524,,Cape Verde,1.0,f +36498,100%,,1.0,f +45935,,Jersey,1.0,f +30774,,Kiribati,1.0,t +17689,,United Kingdom,2.0,f +29141,100%,Togo,3.0,t +42021,,Gambia,2.0,f +43540,72%,Bosnia and Herzegovina,25.0,f +29480,100%,French Polynesia,6.0,f +22148,,Denmark,1.0,f +42521,100%,Uzbekistan,3.0,f +25140,100%,Togo,3.0,f +43836,,,1.0,f +234,,,1.0,f +42521,100%,Uzbekistan,3.0,f +13641,85%,Mauritania,23.0,f +18066,100%,Russian Federation,2.0,t +31021,100%,,1.0,f +24154,100%,,2.0,f +26735,100%,,1.0,f +25124,100%,Kiribati,3.0,f +25124,100%,Kiribati,3.0,f +25124,100%,Kiribati,3.0,f +12710,100%,Philippines,1.0,t +18277,,Bosnia and Herzegovina,1.0,f +21438,100%,China,3.0,f +36748,,Ghana,3.0,f +45484,,Chile,3.0,f +39925,100%,Kenya,1.0,f +44451,33%,,1.0,f +31649,40%,Mauritania,1.0,t +20703,100%,,1.0,f +17303,100%,Russian Federation,5.0,t +14143,100%,Marshall Islands,1.0,f +13364,91%,Netherlands,21.0,f +17303,100%,Russian Federation,5.0,t +23320,,Togo,2.0,f +47,100%,Russian Federation,2.0,f +19680,100%,Faroe Islands,1.0,f +43124,100%,Brazil,1.0,f +9538,,Svalbard & Jan Mayen Islands,3.0,f +30316,100%,Lebanon,2.0,f +14514,,China,80.0,t +24028,,,1.0,f +37875,100%,Brazil,2.0,t +19914,,,2.0,f +46015,93%,Nicaragua,3.0,f +38114,94%,Uzbekistan,19.0,f +42753,,Bosnia and Herzegovina,1.0,t +44235,100%,France,1.0,t +29865,100%,Papua New Guinea,1.0,t +5041,100%,Chile,7.0,f +936,,Gibraltar,1.0,f +32935,,Ghana,40.0,f +1873,100%,,2.0,t +25177,100%,Costa Rica,2.0,t +36054,,French Guiana,3.0,t +18182,67%,,1.0,f +13070,100%,Fiji,45.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +17049,100%,Gambia,1.0,t +23654,100%,Uzbekistan,23.0,f +36863,,Pakistan,1.0,t +22473,100%,Turkmenistan,8.0,f +31272,,Kenya,1.0,f +4845,50%,,1.0,f +39867,100%,Jersey,1.0,t +20913,100%,Niue,2.0,t +46936,100%,Papua New Guinea,1.0,f +26086,,Senegal,1.0,f +43540,72%,Bosnia and Herzegovina,25.0,f +12918,100%,China,9.0,f +18459,100%,Zimbabwe,100.0,f +6720,100%,Micronesia,2.0,f +43868,,Tonga,1.0,t +18459,100%,Zimbabwe,100.0,f +19019,97%,Nicaragua,1484.0,f +29106,,Niue,2.0,t +19019,97%,Nicaragua,1484.0,f +49329,,,1.0,f +33565,100%,,1.0,t +46850,,,5.0,f +46850,,,5.0,f +46850,,,5.0,f +19019,97%,Nicaragua,1484.0,f +20521,,,7.0,t +42254,,Kenya,1.0,t +46850,,,5.0,f +46850,,,5.0,f +15047,83%,El Salvador,2.0,f +8262,100%,Mauritania,6.0,f +21009,100%,,2.0,f +8196,100%,,1.0,t +30613,,Denmark,1.0,t +37926,67%,China,2.0,f +23143,65%,Bouvet Island (Bouvetoya),14.0,f +47035,100%,,3.0,t +15843,100%,Slovakia (Slovak Republic),18.0,f +21980,100%,Sao Tome and Principe,5.0,t +28496,100%,Nicaragua,38.0,f +20334,99%,Niger,171.0,t +3389,100%,Estonia,13.0,f +45766,,,2.0,t +15182,100%,,1.0,t +46776,,Sao Tome and Principe,1.0,f +36603,100%,United Kingdom,1.0,f +13014,,China,6.0,f +27235,,Estonia,1.0,f +38458,100%,Montserrat,6.0,t +38701,40%,Niger,27.0,f +39062,100%,San Marino,1.0,f +23320,,Togo,2.0,f +18342,,Denmark,1.0,f +29958,,Kiribati,2.0,f +10042,,Indonesia,21.0,f +22942,100%,Jersey,1.0,f +7213,,Isle of Man,1.0,f +13014,,China,6.0,f +28496,100%,Nicaragua,38.0,f +38701,40%,Niger,27.0,f +13014,,China,6.0,f +38701,40%,Niger,27.0,f +27226,100%,Congo,10.0,f +23745,100%,,1.0,t +38987,,Jersey,1.0,f +20131,100%,Gambia,1.0,f +9363,95%,Ukraine,50.0,f +13014,,China,6.0,f +9791,80%,Rwanda,2.0,t +19214,100%,Senegal,55.0,f +24707,,,1.0,f +13097,100%,Uganda,4.0,t +19922,,Bouvet Island (Bouvetoya),1.0,t +17393,,Guernsey,1.0,f +5498,33%,Brazil,1.0,f +24980,67%,,5.0,f +24980,67%,,5.0,f +24980,67%,,5.0,f +24980,67%,,5.0,f +38792,,,1.0,f +41181,100%,Rwanda,2.0,f +2313,100%,,1.0,f +47445,,Peru,1.0,f +24026,98%,Cape Verde,69.0,t +18459,100%,Zimbabwe,100.0,f +4767,,Faroe Islands,1.0,t +32935,,Ghana,40.0,f +38255,25%,Hong Kong,4.0,t +27164,100%,Brazil,2.0,f +18459,100%,Zimbabwe,100.0,f +13127,100%,Niger,22.0,f +13127,100%,Niger,22.0,f +33258,,Peru,1.0,f +13127,100%,Niger,22.0,f +29043,100%,,1.0,f +36540,100%,,33.0,t +33426,100%,Estonia,2.0,f +23023,,Jersey,1.0,f +18077,100%,Sao Tome and Principe,139.0,f +22058,100%,,3.0,f +9761,,Gambia,2.0,f +19019,97%,Nicaragua,1484.0,f +27642,,Denmark,1.0,f +18393,100%,Canada,2.0,t +21009,100%,,2.0,f +38423,100%,Niue,5.0,t +19019,97%,Nicaragua,1484.0,f +35945,90%,,2.0,f +29848,80%,Switzerland,1.0,f +30097,90%,Tunisia,2.0,f +37012,100%,Monaco,3.0,t +15347,33%,,1.0,f +24198,25%,French Guiana,4.0,f +9921,100%,El Salvador,1.0,f +1485,100%,Chad,2.0,t +31826,100%,Guinea,3.0,f +21583,,,1.0,f +10042,,Indonesia,21.0,f +36926,100%,Micronesia,2.0,f +44118,100%,,1.0,t +32935,,Ghana,40.0,f +43151,97%,Tonga,5.0,t +48133,,Isle of Man,45.0,f +6329,100%,Tonga,1.0,t +41249,20%,Niue,3.0,t +32221,100%,United Kingdom,1.0,t +20263,99%,Maldives,35.0,t +26338,100%,Barbados,6.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +23625,,Jersey,1.0,t +23654,100%,Uzbekistan,23.0,f +10284,100%,Tanzania,3.0,f +23716,100%,Turkmenistan,2.0,f +4745,100%,Croatia,119.0,f +22953,100%,,3.0,f +4745,100%,Croatia,119.0,f +46517,100%,Uzbekistan,2.0,f +46120,100%,Poland,4.0,t +24896,100%,Algeria,50.0,t +38096,100%,Kiribati,1.0,f +27646,100%,Isle of Man,1.0,f +31707,100%,Niger,48.0,f +5041,100%,Chile,7.0,f +10632,,Zimbabwe,2.0,f +26424,100%,Tonga,2.0,f +978,95%,Lithuania,29.0,f +33434,,Gambia,1.0,f +4745,100%,Croatia,119.0,f +32803,,,1.0,f +11475,100%,Papua New Guinea,4.0,f +4745,100%,Croatia,119.0,f +36127,100%,,16.0,f +35665,,Jersey,2.0,t +35104,100%,Switzerland,2.0,f +38701,40%,Niger,27.0,f +13673,,France,1.0,f +30254,,Zimbabwe,1.0,f +20682,90%,Fiji,3.0,f +20682,90%,Fiji,3.0,f +20682,90%,Fiji,3.0,f +18077,100%,Sao Tome and Principe,139.0,f +10042,,Indonesia,21.0,f +11487,33%,Russian Federation,1.0,t +33478,100%,Estonia,2.0,t +34853,,Bosnia and Herzegovina,1.0,f +8224,98%,Estonia,12.0,f +1553,,,2.0,f +20334,99%,Niger,171.0,t +36788,,,3.0,f +19791,,,1.0,t +19749,100%,Denmark,6.0,t +20724,100%,Denmark,1.0,f +36788,,,3.0,f +9349,,,1.0,t +42279,,Tonga,1.0,f +36788,,,3.0,f +19019,97%,Nicaragua,1484.0,f +35519,100%,Croatia,1.0,f +19019,97%,Nicaragua,1484.0,f +30825,,Monaco,1.0,f +19019,97%,Nicaragua,1484.0,f +21503,83%,,1.0,f +31014,,,1.0,t +8589,,Papua New Guinea,1.0,f +23747,100%,Niger,4.0,t +47231,,,1.0,f +47041,,,1.0,f +24912,100%,Sao Tome and Principe,5.0,f +42537,,,2.0,f +20334,99%,Niger,171.0,t +28828,100%,Isle of Man,198.0,t +18484,100%,Gambia,108.0,f +11407,,,1.0,f +47843,33%,,1.0,f +3926,100%,,1.0,f +27087,,Malta,1.0,f +21727,,Finland,1.0,f +12312,100%,Malawi,2.0,f +32258,79%,Ukraine,22.0,f +47274,100%,Tonga,48.0,f +35587,,Mauritania,1.0,f +18462,100%,Reunion,2.0,t +12717,,Rwanda,1.0,f +40793,100%,,75.0,t +43884,100%,Nauru,1.0,t +4745,100%,Croatia,119.0,f +32935,,Ghana,40.0,f +4745,100%,Croatia,119.0,f +36727,80%,Nicaragua,1.0,f +23491,90%,Niue,3.0,f +14557,100%,,3.0,t +4745,100%,Croatia,119.0,f +20153,96%,Reunion,51.0,f +44862,100%,Djibouti,12.0,f +5483,,Guinea,1.0,f +44169,97%,Portugal,39.0,f +4745,100%,Croatia,119.0,f +4745,100%,Croatia,119.0,f +45064,98%,Anguilla,15.0,f +1345,67%,Philippines,1.0,f +18998,,Nicaragua,1.0,t +44862,100%,Djibouti,12.0,f +47907,0%,,1.0,f +4841,,Czech Republic,2.0,f +44862,100%,Djibouti,12.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +44937,100%,Puerto Rico,19.0,t +44862,100%,Djibouti,12.0,f +30896,100%,Burkina Faso,2.0,f +48970,100%,,1.0,f +3842,,Malta,1.0,f +44937,100%,Puerto Rico,19.0,t +41652,90%,,2.0,f +19019,97%,Nicaragua,1484.0,f +14804,100%,Nauru,1.0,t +16649,100%,Gibraltar,8.0,f +14004,100%,Kiribati,1.0,f +44937,100%,Puerto Rico,19.0,t +33726,,Rwanda,1.0,f +19019,97%,Nicaragua,1484.0,f +46878,,Senegal,1.0,f +5383,100%,,1.0,f +38211,100%,Maldives,4.0,t +2904,,Canada,1.0,f +37958,,Micronesia,1.0,f +24497,,Russian Federation,1.0,t +4319,100%,Uganda,6.0,f +17689,,United Kingdom,2.0,f +33982,60%,,1.0,f +1285,,Kenya,2.0,f +3311,100%,Brunei Darussalam,2.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +30875,,,1.0,f +49299,90%,Equatorial Guinea,2.0,f +17087,50%,Portugal,1.0,t +42286,94%,Vietnam,9.0,t +50036,100%,Kiribati,1.0,t +43045,,French Guiana,1.0,t +356,99%,Wallis and Futuna,32.0,t +44370,,,1.0,f +44937,100%,Puerto Rico,19.0,t +44937,100%,Puerto Rico,19.0,t +14535,88%,Montserrat,18.0,f +44937,100%,Puerto Rico,19.0,t +28828,100%,Isle of Man,198.0,t +39559,,,1.0,f +21422,,Gambia,1.0,f +47274,100%,Tonga,48.0,f +15714,100%,Maldives,1.0,t +44168,0%,,1.0,f +49246,,,1.0,f +24026,98%,Cape Verde,69.0,t +7865,100%,Denmark,1.0,f +41287,100%,,1.0,f +28236,,Greenland,1.0,f +24991,100%,Indonesia,14.0,f +31672,75%,Maldives,6.0,f +31672,75%,Maldives,6.0,f +9239,100%,Cuba,17.0,f +31672,75%,Maldives,6.0,f +20,100%,Mexico,1.0,f +32203,100%,Barbados,176.0,f +28704,,Cocos (Keeling) Islands,1.0,t +32203,100%,Barbados,176.0,f +10364,100%,Slovakia (Slovak Republic),14.0,f +19019,97%,Nicaragua,1484.0,f +49196,100%,,2.0,f +4766,90%,Micronesia,1.0,f +9354,100%,Spain,12.0,f +8868,,Nauru,1.0,f +19019,97%,Nicaragua,1484.0,f +19321,100%,,2.0,f +47313,80%,Costa Rica,4.0,f +33206,100%,,1.0,f +10632,,Zimbabwe,2.0,f +9363,95%,Ukraine,50.0,f +36531,100%,Turks and Caicos Islands,1.0,f +7851,100%,,1.0,f +21426,100%,,2.0,f +38052,100%,Suriname,1.0,f +19957,100%,Venezuela,1.0,t +15030,,Niue,2.0,t +25441,,,1.0,f +12532,100%,,1.0,t +32052,,Venezuela,2.0,f +2876,90%,Venezuela,1.0,f +32948,100%,Croatia,1.0,t +2121,67%,Kenya,2.0,f +27256,100%,United Kingdom,2.0,f +44285,,Netherlands,1.0,f +14746,90%,,1.0,f +15839,,,1.0,f +22901,,Ecuador,1.0,f +36,100%,Sao Tome and Principe,3.0,f +41772,,Tonga,1.0,f +28410,,Cocos (Keeling) Islands,1.0,f +32490,,Sao Tome and Principe,1.0,f +29828,,,1.0,f +29864,100%,Ecuador,1.0,f +28244,80%,,4.0,f +22029,100%,,1.0,f +42658,100%,Afghanistan,1.0,f +27222,100%,Monaco,1.0,t +20362,100%,Malta,1.0,f +29330,,El Salvador,2.0,t +48367,100%,Sao Tome and Principe,2.0,f +7418,100%,Canada,2.0,f +19459,90%,Lebanon,2.0,f +43117,100%,,1.0,f +19019,97%,Nicaragua,1484.0,f +43188,100%,Micronesia,2.0,f +28875,100%,,1.0,t +9653,90%,Uzbekistan,1.0,f +4330,94%,Ukraine,60.0,t +19019,97%,Nicaragua,1484.0,f +9502,100%,,2.0,t +33724,100%,Papua New Guinea,1.0,f +19019,97%,Nicaragua,1484.0,f +29860,,,2.0,f +14959,,,1.0,t +46195,89%,Maldives,6.0,t +27188,,,1.0,t +30559,,Faroe Islands,1.0,t +17417,,Denmark,11.0,f +34507,50%,,1.0,f +15001,,Micronesia,1.0,f +20323,,Mexico,2.0,f +45015,,Tonga,1.0,t +38128,,Reunion,2.0,f +17553,100%,Maldives,2.0,t +290,,San Marino,1.0,t +34866,100%,Faroe Islands,1.0,f +24948,,Rwanda,3.0,f +34834,,Brazil,2.0,t +9871,,,1.0,f +23638,,Guinea,1.0,f +13453,100%,Jersey,2.0,f +34831,100%,Denmark,2.0,f +14650,,Cape Verde,1.0,t +36169,100%,,1.0,f +19205,,Chad,1.0,t +37942,90%,Papua New Guinea,1.0,f +12045,100%,,2.0,t +4316,100%,Micronesia,18.0,f +13823,,Nicaragua,1.0,f +5952,,Maldives,1.0,t +17280,80%,United Kingdom,1.0,f +44926,,Gibraltar,1.0,f +25039,,Saint Helena,7.0,t +17942,63%,Maldives,1.0,t +40606,88%,Slovakia (Slovak Republic),2.0,f +10957,100%,Russian Federation,1.0,t +28258,89%,Bouvet Island (Bouvetoya),2.0,t +541,93%,Marshall Islands,17.0,f +42722,,Isle of Man,1.0,t +1894,,Chad,1.0,f +36091,80%,Anguilla,2.0,t +26047,,Tonga,1.0,t +36261,90%,Slovakia (Slovak Republic),2.0,f +29147,100%,Slovakia (Slovak Republic),2.0,f +19724,80%,Malta,4.0,t +16324,,Maldives,1.0,f +7655,98%,Gambia,7.0,f +24118,98%,Ghana,21.0,t +41433,0%,Palestinian Territory,1.0,f +25924,,Somalia,1.0,f +6400,100%,Andorra,2.0,t +18985,100%,Philippines,2.0,f +9002,90%,Russian Federation,2.0,f +45350,100%,,2.0,f +46302,100%,Marshall Islands,1.0,f +38269,,Chile,1.0,f +4562,,,1.0,f +37323,,Faroe Islands,1.0,f +41202,100%,Niue,3.0,f +10566,,Isle of Man,1.0,f +41064,,Faroe Islands,1.0,f +39870,,Slovakia (Slovak Republic),21.0,t +28361,100%,Sao Tome and Principe,1.0,f +37141,100%,Isle of Man,1.0,f +10767,100%,Marshall Islands,2.0,f +13893,,Afghanistan,1.0,t +30735,,,2.0,f +32935,,Ghana,40.0,f +48469,100%,Puerto Rico,4.0,f +15487,100%,Uganda,4.0,f +15487,100%,Uganda,4.0,f +48469,100%,Puerto Rico,4.0,f +15487,100%,Uganda,4.0,f +15487,100%,Uganda,4.0,f +33756,,El Salvador,1.0,t +42451,100%,Rwanda,1.0,f +2433,100%,Tonga,21.0,f +26386,100%,Fiji,25.0,t +46744,0%,Turkmenistan,1.0,f +21071,100%,Marshall Islands,2.0,t +38648,,Svalbard & Jan Mayen Islands,1.0,f +46417,,,1.0,f +16724,100%,Niue,1.0,f +39688,,,1.0,f +11255,93%,Suriname,41.0,f +43237,40%,Montserrat,24.0,f +48791,97%,Uzbekistan,5.0,t +318,,Uzbekistan,22.0,f +318,,Uzbekistan,22.0,f +2106,100%,Uzbekistan,1.0,f +20334,99%,Niger,171.0,t +27226,100%,Congo,10.0,f +21551,,Anguilla,2.0,f +222,89%,,16.0,f +35896,100%,Nauru,1.0,f +4446,100%,Uganda,58.0,f +3940,100%,Pakistan,2.0,f +5308,,,1.0,f +9009,,Ghana,1.0,f +22494,100%,,1.0,f +38114,94%,Uzbekistan,19.0,f +30647,,El Salvador,3.0,t +20890,90%,Uzbekistan,3.0,t +13143,100%,,2.0,t +18481,100%,Malta,1.0,f +42894,0%,Niue,1.0,f +24557,,,1.0,f +34722,100%,,1.0,t +21958,,Chile,1.0,t +9337,80%,Estonia,2.0,f +48180,83%,Chile,1.0,f +30743,,Anguilla,2.0,f +41128,100%,Uzbekistan,4.0,f +6125,,Niger,1.0,f +27340,100%,Kiribati,2.0,f +19214,100%,Senegal,55.0,f +27083,,Tanzania,1.0,t +783,100%,Svalbard & Jan Mayen Islands,12.0,t +46918,100%,Sao Tome and Principe,5.0,f +41135,,,1.0,f +30015,,Micronesia,1.0,f +31594,100%,Philippines,19.0,t +15833,0%,Vanuatu,1.0,f +35328,100%,Tunisia,7.0,f +18494,,Russian Federation,1.0,f +24840,,France,1.0,f +16695,96%,Tonga,8.0,f +31881,100%,,1.0,t +43237,40%,Montserrat,24.0,f +43237,40%,Montserrat,24.0,f +40795,100%,Somalia,2.0,f +37888,89%,Niger,79.0,f +49320,100%,Maldives,1.0,f +35852,100%,Russian Federation,1.0,f +4564,,Anguilla,1.0,f +37888,89%,Niger,79.0,f +37888,89%,Niger,79.0,f +8166,100%,Rwanda,16.0,f +48898,,Niue,1.0,f +11372,100%,Micronesia,3.0,f +37888,89%,Niger,79.0,f +37888,89%,Niger,79.0,f +47478,,,1.0,f +32203,100%,Barbados,176.0,f +8842,100%,Slovakia (Slovak Republic),3.0,f +38328,,Marshall Islands,1.0,f +26207,100%,,2.0,t +4788,,Tonga,7.0,f +1681,100%,Chile,1.0,t +29647,100%,Peru,1305.0,f +30390,,,1.0,t +42990,80%,Uzbekistan,3.0,f +22950,,United Kingdom,2.0,t +28828,100%,Isle of Man,198.0,t +7390,100%,Niue,1.0,f +28953,56%,,2.0,f +4993,50%,,1.0,t +47954,97%,Uzbekistan,3.0,f +28828,100%,Isle of Man,198.0,t +10042,,Indonesia,21.0,f +28828,100%,Isle of Man,198.0,t +31263,100%,Marshall Islands,16.0,f +49781,,Philippines,5.0,f +19217,98%,Marshall Islands,46.0,f +40308,,Niue,1.0,f +19958,100%,Congo,40.0,t +552,100%,Lithuania,1.0,f +38683,,Rwanda,1.0,f +48257,100%,Kiribati,5.0,t +29712,,Rwanda,1.0,f +45564,100%,,1.0,f +35013,100%,Nicaragua,2.0,t +47224,100%,,1.0,f +3785,67%,Niue,1.0,f +4982,100%,Isle of Man,1.0,t +31297,,,1.0,t +9940,0%,,2.0,f +13441,100%,Togo,2.0,f +37564,,,1.0,t +21442,,Uzbekistan,1.0,f +3834,50%,Jersey,3.0,t +503,,Maldives,3.0,t +30223,80%,United Kingdom,1.0,f +27743,,Nauru,2.0,t +521,0%,Malta,2.0,t +17394,0%,Nicaragua,49.0,f +43540,72%,Bosnia and Herzegovina,25.0,f +43540,72%,Bosnia and Herzegovina,25.0,f +35524,100%,El Salvador,1.0,f +7249,,Uzbekistan,6.0,t +46676,,Lebanon,1.0,t +32203,100%,Barbados,176.0,f +8344,,Denmark,1.0,t +30288,100%,Uganda,1.0,t +17495,,,1.0,f +48178,17%,Estonia,5.0,t +3780,100%,Svalbard & Jan Mayen Islands,1.0,t +22721,100%,Ecuador,109.0,f +22014,,Zimbabwe,1.0,t +45379,,Turkmenistan,1.0,t +11729,,,1.0,f +6292,100%,,1.0,t +14590,,Turks and Caicos Islands,2.0,t +20957,,Niger,1.0,f +25138,100%,Bouvet Island (Bouvetoya),1.0,f +4882,,Switzerland,3.0,f +46428,100%,Niue,4.0,f +24288,100%,Senegal,4.0,f +29903,,Holy See (Vatican City State),1.0,t +32203,100%,Barbados,176.0,f +17538,,,1.0,f +38346,,Kiribati,1.0,t +39477,100%,,2.0,f +41782,75%,Tonga,1.0,f +17868,100%,Niue,2.0,f +48133,,Isle of Man,45.0,f +32038,100%,Indonesia,35.0,f +8437,99%,Maldives,6.0,f +20329,100%,Reunion,21.0,f +47274,100%,Tonga,48.0,f +39022,100%,Guinea,1.0,t +30183,100%,Saint Helena,1.0,t +42478,,Costa Rica,1.0,f +29106,,Niue,2.0,t +783,100%,Svalbard & Jan Mayen Islands,12.0,t +9538,,Svalbard & Jan Mayen Islands,3.0,f +9637,,Marshall Islands,1.0,f +16222,75%,Gibraltar,1.0,f +44259,,Zimbabwe,1.0,f +117,,Tonga,1.0,t +43737,100%,Gambia,1.0,f +24115,,Uruguay,1.0,f +46872,100%,Nicaragua,9.0,f +23548,94%,Fiji,7.0,f +46872,100%,Nicaragua,9.0,f +15260,,Maldives,1.0,f +46872,100%,Nicaragua,9.0,f +11617,,,2.0,f +28521,,,1.0,f +27866,100%,Guinea,8.0,f +20452,99%,Barbados,185.0,t +28828,100%,Isle of Man,198.0,t +2013,,Faroe Islands,1.0,t +4446,100%,Uganda,58.0,f +39477,100%,,2.0,f +41143,100%,Rwanda,1.0,f +35625,98%,Estonia,25.0,t +32899,100%,,1.0,f +47162,,,1.0,f +19784,100%,,1.0,f +5365,100%,,3.0,f +16561,90%,Holy See (Vatican City State),1.0,f +40977,100%,Reunion,7.0,f +40977,100%,Reunion,7.0,f +24913,,El Salvador,1.0,f +40977,100%,Reunion,7.0,f +17417,,Denmark,11.0,f +22331,99%,Rwanda,50.0,t +30904,100%,Sao Tome and Principe,2.0,f +31039,100%,,1.0,f +8698,0%,,2.0,f +40977,100%,Reunion,7.0,f +8698,0%,,2.0,f +38604,,,1.0,f +40977,100%,Reunion,7.0,f +35182,,Chad,2.0,f +32426,100%,,1.0,f +32203,100%,Barbados,176.0,f +29647,100%,Peru,1305.0,f +32935,,Ghana,40.0,f +29647,100%,Peru,1305.0,f +40524,100%,,2.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +46415,100%,French Guiana,2.0,t +32203,100%,Barbados,176.0,f +5486,100%,Svalbard & Jan Mayen Islands,12.0,f +26255,,Isle of Man,1.0,f +29602,100%,China,1.0,f +8392,80%,,1.0,f +19908,100%,Marshall Islands,2.0,t +39076,,Turkmenistan,1.0,f +31844,100%,Niue,2.0,t +27903,100%,,1.0,f +25128,100%,Barbados,5.0,t +29581,100%,Nicaragua,1.0,f +5437,98%,Reunion,4.0,f +38471,100%,Guinea,2.0,f +21730,,Philippines,5.0,t +9566,,Isle of Man,1.0,t +23249,,Grenada,2.0,f +21910,,Chad,2.0,f +17394,0%,Nicaragua,49.0,f +12416,,El Salvador,1.0,f +32810,100%,Russian Federation,2.0,t +18248,100%,Slovakia (Slovak Republic),2.0,f +39947,,Gambia,2.0,f +45059,,Gambia,1.0,f +6802,,Micronesia,2.0,f +29647,100%,Peru,1305.0,f +27056,100%,Kenya,4.0,f +6454,,Bouvet Island (Bouvetoya),1.0,f +49023,83%,,1.0,f +12822,,Guinea,1.0,f +48598,100%,Monaco,2.0,t +10190,,,1.0,f +31874,29%,Gambia,2.0,f +20334,99%,Niger,171.0,t +13644,100%,Somalia,1.0,t +12930,,Kiribati,1.0,f +37127,100%,Guinea,3.0,f +49918,,,1.0,f +23034,99%,Monaco,54.0,f +4816,90%,Somalia,3.0,f +8166,100%,Rwanda,16.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +48887,20%,Gambia,1.0,f +16192,100%,Netherlands Antilles,1.0,t +317,,Nauru,1.0,f +8937,,Svalbard & Jan Mayen Islands,1.0,t +8166,100%,Rwanda,16.0,f +42243,100%,Senegal,4.0,f +961,,Turkmenistan,1.0,f +8166,100%,Rwanda,16.0,f +24901,,France,1.0,f +39257,100%,Brazil,4.0,f +8166,100%,Rwanda,16.0,f +8166,100%,Rwanda,16.0,f +8166,100%,Rwanda,16.0,f +742,100%,Montserrat,1.0,t +21554,83%,Philippines,3.0,t +22331,99%,Rwanda,50.0,t +48133,,Isle of Man,45.0,f +454,70%,Netherlands,2.0,f +29846,100%,Maldives,7.0,f +4217,,Kenya,52.0,f +17515,100%,Philippines,5.0,f +17515,100%,Philippines,5.0,f +42390,100%,Wallis and Futuna,96.0,t +27459,,Pakistan,4.0,f +3454,,Guinea,2.0,f +36725,100%,,1.0,f +22994,100%,Bouvet Island (Bouvetoya),3.0,t +32203,100%,Barbados,176.0,f +20055,100%,Holy See (Vatican City State),3.0,t +43766,,Somalia,1.0,t +13070,100%,Fiji,45.0,f +7800,100%,,1.0,f +45929,96%,Uganda,3.0,f +12827,97%,Ukraine,5.0,f +22983,100%,Isle of Man,1.0,f +17515,100%,Philippines,5.0,f +3008,100%,France,1.0,f +16295,96%,Philippines,5.0,f +23100,100%,,1.0,f +7895,,Isle of Man,1.0,t +38114,94%,Uzbekistan,19.0,f +24611,,Turks and Caicos Islands,1.0,f +36261,90%,Slovakia (Slovak Republic),2.0,f +22776,,Micronesia,1.0,t +15937,100%,Russian Federation,1.0,t +32324,100%,Zimbabwe,1.0,f +3254,,Tonga,16.0,t +39114,100%,Slovakia (Slovak Republic),1.0,t +31158,99%,Suriname,11.0,f +5437,98%,Reunion,4.0,f +12085,,,1.0,f +43150,33%,Mauritania,1.0,t +6126,,Micronesia,2.0,f +36648,100%,Turks and Caicos Islands,2.0,f +46984,,Ecuador,1.0,f +29210,,,1.0,f +1375,100%,Micronesia,5.0,f +41286,100%,Sao Tome and Principe,3.0,f +10172,33%,,1.0,t +17894,100%,Faroe Islands,1.0,f +16371,95%,Bouvet Island (Bouvetoya),29.0,f +30014,,,1.0,f +3518,,Tonga,1.0,t +45481,,Uzbekistan,1.0,f +39799,50%,Russian Federation,6.0,f +12827,97%,Ukraine,5.0,f +47294,90%,Niue,2.0,f +47155,,Russian Federation,1.0,t +39799,50%,Russian Federation,6.0,f +12827,97%,Ukraine,5.0,f +39799,50%,Russian Federation,6.0,f +29752,100%,Costa Rica,1.0,f +39799,50%,Russian Federation,6.0,f +12827,97%,Ukraine,5.0,f +12827,97%,Ukraine,5.0,f +30236,100%,Zimbabwe,1.0,t +40548,100%,,1.0,t +5028,,United Kingdom,1.0,f +43507,,Niue,1.0,f +6520,100%,Faroe Islands,1.0,f +47930,,,1.0,t +24830,,Isle of Man,1.0,f +45407,100%,United Kingdom,1.0,f +8423,100%,,3.0,t +36968,,,1.0,t +49540,,Sao Tome and Principe,1.0,t +23662,100%,Vanuatu,3.0,f +25979,,,1.0,f +22729,,,1.0,t +14791,100%,Cocos (Keeling) Islands,3.0,t +40524,100%,,2.0,f +28719,100%,Russian Federation,4.0,t +35947,,,1.0,f +28158,,Cocos (Keeling) Islands,1.0,f +36012,100%,,8.0,f +40770,100%,Tonga,2.0,f +3814,,Isle of Man,3.0,f +36466,,Marshall Islands,1.0,f +17394,0%,Nicaragua,49.0,f +3971,,Faroe Islands,1.0,f +33202,100%,,2.0,t +17477,,French Guiana,1.0,f +17394,0%,Nicaragua,49.0,f +42942,100%,,1.0,f +13606,100%,,4.0,f +21571,,Finland,1.0,t +17394,0%,Nicaragua,49.0,f +32673,100%,,2.0,f +9460,100%,Kiribati,1.0,f +47602,97%,Puerto Rico,18.0,f +44087,100%,,1.0,t +47602,97%,Puerto Rico,18.0,f +47602,97%,Puerto Rico,18.0,f +24958,100%,Reunion,1.0,f +23159,,,1.0,f +43540,72%,Bosnia and Herzegovina,25.0,f +38769,100%,Russian Federation,1.0,t +46088,,Ghana,15.0,f +30320,100%,Togo,4.0,f +42646,33%,Rwanda,4.0,f +2415,75%,,1.0,t +30320,100%,Togo,4.0,f +42646,33%,Rwanda,4.0,f +14956,,,1.0,f +8724,100%,,1.0,f +46712,,,1.0,t +47610,100%,Uzbekistan,10.0,f +26925,,United Kingdom,1.0,t +43000,,Nicaragua,1.0,f +13897,,Maldives,1.0,f +20304,50%,El Salvador,1.0,f +35447,100%,Croatia,1.0,t +7633,100%,,2.0,f +12247,100%,Maldives,33.0,f +38778,,Niue,1.0,f +12247,100%,Maldives,33.0,f +13183,,Lebanon,1.0,f +12247,100%,Maldives,33.0,f +49346,100%,Puerto Rico,1.0,f +12247,100%,Maldives,33.0,f +41491,100%,Marshall Islands,2.0,f +46391,,,1.0,f +18009,,Sao Tome and Principe,1.0,t +28967,,Netherlands,1.0,f +44161,,Brazil,1.0,t +27513,90%,Pakistan,3.0,f +27513,90%,Pakistan,3.0,f +29860,,,2.0,f +36892,,Kiribati,2.0,f +39221,,,1.0,f +27338,,,1.0,f +27463,,,1.0,t +19743,100%,Micronesia,2.0,f +20120,100%,Wallis and Futuna,10.0,f +20056,100%,Denmark,6.0,f +37888,89%,Niger,79.0,f +37888,89%,Niger,79.0,f +20956,43%,Rwanda,8.0,f +32935,,Ghana,40.0,f +37888,89%,Niger,79.0,f +37888,89%,Niger,79.0,f +37888,89%,Niger,79.0,f +34443,100%,Congo,1.0,t +33372,100%,Guinea,22.0,t +27106,100%,China,1.0,f +14059,100%,Uganda,9.0,f +22594,100%,Rwanda,12.0,f +3884,70%,Tanzania,1.0,f +37888,89%,Niger,79.0,f +22594,100%,Rwanda,12.0,f +41848,,Gambia,2.0,t +3834,50%,Jersey,3.0,t +28058,,Puerto Rico,1.0,f +18523,100%,Indonesia,1.0,t +34668,100%,Nicaragua,1.0,f +37888,89%,Niger,79.0,f +37888,89%,Niger,79.0,f +32203,100%,Barbados,176.0,f +39143,89%,,33.0,f +7060,,Niue,1.0,f +13059,,Tanzania,1.0,f +16467,,Denmark,2.0,f +34871,100%,Montserrat,1.0,f +9255,,Vietnam,10.0,f +19578,100%,Mauritania,2.0,t +38701,40%,Niger,27.0,f +24127,100%,Russian Federation,4.0,f +44231,,Vietnam,1.0,f +38701,40%,Niger,27.0,f +19333,100%,Russian Federation,1.0,f +5477,,Palestinian Territory,1.0,f +32203,100%,Barbados,176.0,f +31978,100%,Afghanistan,2.0,f +38701,40%,Niger,27.0,f +21367,100%,Jersey,1.0,f +38701,40%,Niger,27.0,f +16087,,French Guiana,1.0,f +38701,40%,Niger,27.0,f +38701,40%,Niger,27.0,f +7936,,Marshall Islands,1.0,f +38701,40%,Niger,27.0,f +48825,100%,Sao Tome and Principe,1.0,t +38600,,Croatia,2.0,t +40874,100%,Chad,1.0,f +43606,100%,Malta,1.0,t +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +16179,100%,,1.0,f +26737,,Somalia,1.0,t +29647,100%,Peru,1305.0,f +20522,,,1.0,t +22866,,Gambia,1.0,f +30931,100%,Papua New Guinea,3.0,f +6894,80%,Estonia,47.0,t +35929,,Guinea,1.0,f +29546,100%,French Polynesia,1.0,f +19449,100%,,3.0,f +24788,100%,Turkmenistan,1.0,t +27574,,,1.0,t +7866,,Mexico,1.0,f +19008,100%,Kiribati,1.0,f +30250,,Isle of Man,2.0,t +34799,100%,Brazil,2.0,t +29088,,,1.0,f +33891,100%,,1.0,f +44411,100%,Russian Federation,1.0,t +41150,,,1.0,f +7244,100%,Guatemala,2.0,t +13614,,Marshall Islands,1.0,f +40431,,Indonesia,1.0,f +24171,,,1.0,f +26686,88%,France,1.0,t +24907,100%,,1.0,f +10902,100%,Wallis and Futuna,6.0,f +35716,100%,Pakistan,4.0,f +13070,100%,Fiji,45.0,f +17417,,Denmark,11.0,f +33797,100%,Gambia,3.0,t +43152,100%,Nicaragua,82.0,t +9735,,Libyan Arab Jamahiriya,1.0,f +26890,,Lebanon,2.0,f +49781,,Philippines,5.0,f +15998,80%,Papua New Guinea,1.0,t +2743,97%,China,23.0,f +16295,96%,Philippines,5.0,f +5068,,El Salvador,1.0,t +4217,,Kenya,52.0,f +37457,,Turkmenistan,1.0,f +19818,,,1.0,t +2208,100%,Uganda,1.0,f +4945,0%,Cape Verde,5.0,f +40150,100%,Philippines,1.0,f +27034,,,1.0,f +41850,,Kiribati,3.0,f +47193,100%,Moldova,3.0,f +18484,100%,Gambia,108.0,f +31555,,Kiribati,1.0,f +14777,90%,,2.0,f +13834,,Kiribati,9.0,f +32361,,Somalia,1.0,f +10621,,El Salvador,1.0,f +29541,100%,Palestinian Territory,1.0,f +5205,,Slovakia (Slovak Republic),6.0,t +38817,100%,France,4.0,t +31652,100%,Kenya,8.0,t +37440,0%,Jersey,1.0,t +33297,100%,Croatia,2.0,t +17843,,,1.0,f +27729,,Afghanistan,4.0,f +17619,74%,Ghana,14.0,f +18831,100%,French Guiana,2.0,f +36457,100%,Rwanda,4.0,f +41850,,Kiribati,3.0,f +22911,100%,Denmark,2.0,f +50028,,Lebanon,1.0,t +42694,,Chile,1.0,f +26390,98%,Zimbabwe,5.0,f +18831,100%,French Guiana,2.0,f +42764,100%,Guernsey,13.0,t +26390,98%,Zimbabwe,5.0,f +26663,0%,Niger,1.0,f +42926,,,1.0,f +19855,100%,Kiribati,37.0,t +13364,91%,Netherlands,21.0,f +25354,,,1.0,f +22201,,,1.0,t +22546,,Nicaragua,1.0,f +23654,100%,Uzbekistan,23.0,f +7894,100%,Ukraine,10.0,f +1394,90%,Uzbekistan,1.0,f +8651,,Isle of Man,1.0,f +4217,,Kenya,52.0,f +19217,98%,Marshall Islands,46.0,f +24118,98%,Ghana,21.0,t +30835,100%,Guinea,1.0,f +9292,100%,Brazil,2.0,f +41539,,Puerto Rico,1.0,f +50013,100%,Tonga,3.0,f +37888,89%,Niger,79.0,f +37888,89%,Niger,79.0,f +37888,89%,Niger,79.0,f +37888,89%,Niger,79.0,f +13202,87%,Uganda,3.0,f +27459,,Pakistan,4.0,f +30165,100%,Malta,1.0,t +26153,100%,Nauru,1.0,f +27459,,Pakistan,4.0,f +48897,100%,Russian Federation,1.0,t +27459,,Pakistan,4.0,f +24065,100%,Maldives,12.0,f +18431,100%,Kiribati,5.0,t +20402,100%,Senegal,4.0,f +18431,100%,Kiribati,5.0,t +18431,100%,Kiribati,5.0,t +18431,100%,Kiribati,5.0,t +18339,,Niue,1.0,f +15189,79%,China,21.0,f +4054,,Jersey,3.0,t +46174,,Micronesia,1.0,f +32203,100%,Barbados,176.0,f +20334,99%,Niger,171.0,t +34897,,Maldives,1.0,f +38233,,Chad,1.0,f +12702,,China,3.0,f +17350,,Faroe Islands,1.0,f +20334,99%,Niger,171.0,t +32203,100%,Barbados,176.0,f +40793,100%,,75.0,t +35625,98%,Estonia,25.0,t +2804,100%,Switzerland,1.0,f +43777,100%,Denmark,18.0,f +33823,78%,France,17.0,t +44221,0%,,1.0,f +45245,,,1.0,t +22062,,Turkmenistan,1.0,t +36258,,,2.0,f +681,,Mauritania,1.0,t +48404,60%,El Salvador,1.0,f +170,,,1.0,f +47526,,Croatia,3.0,f +26781,,Estonia,1.0,t +7193,100%,Finland,1.0,f +40994,,Rwanda,1.0,f +21031,0%,Micronesia,1.0,f +2743,97%,China,23.0,f +2474,67%,Niue,1.0,f +28354,,Cocos (Keeling) Islands,1.0,f +10364,100%,Slovakia (Slovak Republic),14.0,f +42402,100%,Sao Tome and Principe,1.0,f +20956,43%,Rwanda,8.0,f +20956,43%,Rwanda,8.0,f +30237,80%,,1.0,f +1352,,Micronesia,1.0,f +20956,43%,Rwanda,8.0,f +18837,100%,Ecuador,5.0,t +44358,100%,Montserrat,1.0,f +31420,100%,Maldives,2.0,t +15978,100%,,2.0,f +7030,100%,Guernsey,6.0,f +32195,100%,Chile,1.0,f +28860,100%,Lebanon,6.0,t +10898,100%,Barbados,4.0,t +37994,,,1.0,t +39639,100%,Niue,19.0,f +35221,100%,Turks and Caicos Islands,30.0,t +26035,100%,Marshall Islands,1.0,f +6832,100%,Monaco,1.0,f +32935,,Ghana,40.0,f +21083,100%,Spain,3.0,t +24026,98%,Cape Verde,69.0,t +21612,100%,,1.0,f +41816,50%,Micronesia,1.0,t +19472,100%,United Kingdom,6.0,f +20532,90%,,7.0,f +20532,90%,,7.0,f +20532,90%,,7.0,f +41912,100%,Lebanon,2.0,t +24474,100%,Nicaragua,1.0,t +55,100%,Kiribati,2.0,f +20532,90%,,7.0,f +20532,90%,,7.0,f +20532,90%,,7.0,f +34258,,Vietnam,7.0,t +22594,100%,Rwanda,12.0,f +42286,94%,Vietnam,9.0,t +43176,86%,Guinea,3.0,f +10167,75%,Greenland,1.0,f +22594,100%,Rwanda,12.0,f +17575,100%,Gambia,2.0,f +19710,,,1.0,f +22911,100%,Denmark,2.0,f +26767,87%,,2.0,f +9363,95%,Ukraine,50.0,f +28241,97%,Maldives,10.0,f +42482,0%,Russian Federation,3.0,f +30777,,Malta,2.0,t +37493,0%,France,1.0,t +40451,100%,Togo,6.0,f +13660,,Reunion,1.0,f +48432,100%,Isle of Man,2.0,f +8102,100%,Togo,2.0,t +13413,,Chile,3.0,t +19506,100%,Kenya,1.0,f +8920,90%,France,3.0,f +21366,,Isle of Man,1.0,f +41878,91%,Maldives,47.0,f +43138,100%,Cocos (Keeling) Islands,1.0,t +23582,98%,Montserrat,17.0,f +8460,90%,,1.0,f +38152,100%,Zimbabwe,2.0,t +28828,100%,Isle of Man,198.0,t +34803,100%,Brazil,2.0,f +31985,,,1.0,f +21690,100%,Anguilla,5.0,t +41301,100%,Costa Rica,9.0,t +7691,100%,Faroe Islands,1.0,f +17322,95%,,30.0,f +17322,95%,,30.0,f +25550,100%,Nicaragua,8.0,t +17322,95%,,30.0,f +32273,100%,Kenya,1.0,f +38234,,Jersey,1.0,f +37646,100%,Estonia,60.0,f +19214,100%,Senegal,55.0,f +34402,79%,Reunion,28.0,f +34402,79%,Reunion,28.0,f +34402,79%,Reunion,28.0,f +33406,100%,Reunion,4.0,f +17981,,Russian Federation,2.0,t +47676,89%,Niue,1.0,f +47379,,,1.0,f +24118,98%,Ghana,21.0,t +37646,100%,Estonia,60.0,f +30497,100%,Slovakia (Slovak Republic),9.0,t +20431,100%,Reunion,1.0,f +21240,94%,Niger,130.0,f +48409,,Estonia,60.0,t +33515,,Kenya,1.0,t +11464,100%,Papua New Guinea,11.0,f +9522,50%,Kenya,1.0,f +10898,100%,Barbados,4.0,t +24946,,Reunion,1.0,f +4217,,Kenya,52.0,f +10711,93%,Uganda,108.0,t +47139,90%,Micronesia,1.0,f +29123,100%,Zimbabwe,16.0,t +2433,100%,Tonga,21.0,f +16709,100%,Isle of Man,1.0,f +14839,,Uzbekistan,1.0,f +15881,,Uzbekistan,1.0,f +1923,,,1.0,f +4999,100%,Malta,1.0,f +32881,,Uzbekistan,2.0,t +32935,,Ghana,40.0,f +19724,80%,Malta,4.0,t +17108,100%,Kiribati,3.0,f +29039,,Tanzania,1.0,f +10787,100%,Niue,1.0,f +31007,100%,Zimbabwe,1.0,f +4722,96%,Guinea,13.0,t +13403,96%,Maldives,21.0,t +11881,,Zimbabwe,1.0,f +45260,94%,,19.0,f +27469,100%,Marshall Islands,3.0,f +46182,100%,Vietnam,1.0,f +45260,94%,,19.0,f +1109,,Turkmenistan,1.0,f +26674,77%,Uzbekistan,27.0,f +21881,100%,Puerto Rico,2.0,f +3397,,China,2.0,f +6563,,Vanuatu,1.0,f +26419,100%,Barbados,6.0,f +48255,,Sao Tome and Principe,1.0,f +44757,100%,France,1.0,f +48155,,Lebanon,1.0,t +29164,,Mauritania,3.0,t +36998,92%,Lebanon,10.0,f +24581,100%,Denmark,1.0,f +16166,100%,China,1.0,f +6938,100%,,2.0,f +26905,50%,Puerto Rico,2.0,f +43609,,Niue,1.0,f +25122,0%,Croatia,1.0,t +24118,98%,Ghana,21.0,t +13070,100%,Fiji,45.0,f +14676,,Niue,1.0,f +8569,,,1.0,f +46807,100%,,1.0,f +37052,,French Guiana,1.0,f +30516,100%,Chile,1.0,t +48224,100%,Micronesia,2.0,f +7539,0%,,1.0,t +29298,75%,Cape Verde,2.0,f +2617,0%,United Kingdom,1.0,f +36561,,,1.0,t +35248,,,1.0,f +32773,90%,Niue,2.0,f +35142,,Nicaragua,1.0,f +17829,100%,Lithuania,2.0,f +33199,100%,Venezuela,1.0,f +37527,100%,Zimbabwe,2.0,f +873,,Kiribati,1.0,f +18144,20%,Uzbekistan,1.0,f +43354,,,1.0,f +13122,100%,,1.0,f +20086,,Turks and Caicos Islands,1.0,f +5282,,Sao Tome and Principe,1.0,f +26600,60%,Vanuatu,2.0,f +2740,,Estonia,5.0,f +43157,100%,Mauritania,4.0,f +39402,,Moldova,1.0,f +17786,100%,,1.0,f +15927,100%,,1.0,f +12349,,Lebanon,1.0,f +4407,80%,Sao Tome and Principe,1.0,f +41757,100%,Malta,5.0,f +20129,100%,Gambia,9.0,t +11695,100%,Denmark,1.0,f +4191,100%,Denmark,2.0,f +9224,100%,,1.0,f +40511,100%,,1.0,t +34841,100%,Zimbabwe,22.0,t +11475,100%,Papua New Guinea,4.0,f +35625,98%,Estonia,25.0,t +8224,98%,Estonia,12.0,f +31331,100%,Kiribati,1.0,f +10902,100%,Wallis and Futuna,6.0,f +28828,100%,Isle of Man,198.0,t +48592,63%,Isle of Man,3.0,f +14659,,,1.0,t +784,,Marshall Islands,1.0,f +12951,100%,Ecuador,1.0,f +44904,100%,Russian Federation,1.0,f +9693,100%,Vanuatu,8.0,f +15271,100%,Chile,3.0,t +12875,86%,,3.0,f +21332,100%,Isle of Man,2.0,t +38349,50%,,1.0,f +47047,,Puerto Rico,1.0,t +49079,,,1.0,t +7134,100%,Tanzania,2.0,f +39740,100%,Congo,2.0,f +12965,100%,Vietnam,11.0,t +26341,,Chad,1.0,f +18997,100%,,1.0,f +28612,,Peru,1.0,f +25023,,Lebanon,1.0,f +47082,100%,Uzbekistan,1.0,f +38755,100%,Croatia,1.0,f +25964,,France,1.0,f +37271,67%,,1.0,f +25093,,,1.0,t +11995,100%,Palestinian Territory,2.0,f +11995,100%,Palestinian Territory,2.0,f +5011,,Micronesia,1.0,t +37721,100%,El Salvador,2.0,f +8620,100%,Russian Federation,1.0,f +21752,90%,Turks and Caicos Islands,1.0,f +1634,,,1.0,t +10437,,Micronesia,1.0,t +28848,100%,Uganda,9.0,f +5183,,Micronesia,1.0,f +38098,100%,Zimbabwe,7.0,t +8224,98%,Estonia,12.0,f +13243,100%,Papua New Guinea,1.0,f +49778,,,1.0,f +8224,98%,Estonia,12.0,f +41878,91%,Maldives,47.0,f +38337,100%,Anguilla,1.0,f +21730,,Philippines,5.0,t +36391,,Croatia,1.0,f +21662,,Faroe Islands,1.0,f +30250,,Isle of Man,2.0,t +42646,33%,Rwanda,4.0,f +4600,70%,Marshall Islands,1.0,t +37869,100%,,2.0,f +15668,100%,Canada,1.0,t +49981,,Malawi,2.0,f +20349,100%,Lebanon,1.0,t +49281,,Ghana,1.0,f +4874,100%,,1.0,t +32141,,,1.0,f +40283,,El Salvador,1.0,t +21064,,Nauru,1.0,f +23289,100%,,1.0,t +44615,100%,French Polynesia,2.0,t +47436,,El Salvador,1.0,t +18402,,Guernsey,1.0,f +32935,,Ghana,40.0,f +39158,100%,,3.0,t +18247,95%,Iran,80.0,t +18247,95%,Iran,80.0,t +10495,,Brazil,1.0,f +45350,100%,,2.0,f +45199,,Puerto Rico,6.0,f +2408,90%,,1.0,f +9239,100%,Cuba,17.0,f +356,99%,Wallis and Futuna,32.0,t +5233,100%,Montserrat,6.0,t +9239,100%,Cuba,17.0,f +28828,100%,Isle of Man,198.0,t +22326,,,1.0,t +32935,,Ghana,40.0,f +28828,100%,Isle of Man,198.0,t +45199,,Puerto Rico,6.0,f +3494,,,1.0,f +19872,,,1.0,f +4514,100%,Micronesia,1.0,t +46428,100%,Niue,4.0,f +32935,,Ghana,40.0,f +10966,,Faroe Islands,1.0,f +27749,100%,France,2.0,f +17742,100%,French Polynesia,2.0,f +4330,94%,Ukraine,60.0,t +12352,,Lebanon,1.0,f +8592,100%,Uganda,1.0,f +5303,,Kiribati,1.0,f +32203,100%,Barbados,176.0,f +16933,60%,China,1.0,t +34042,100%,Marshall Islands,37.0,f +44916,100%,Congo,2.0,f +6267,100%,Estonia,1.0,f +1299,,Uganda,1.0,f +21121,75%,Malta,2.0,f +18343,,Gambia,1.0,f +5073,,Korea,1.0,f +10031,100%,Nicaragua,2.0,f +34042,100%,Marshall Islands,37.0,f +35292,100%,,1.0,f +25700,100%,,1.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +9512,80%,Gibraltar,1.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +38777,100%,,1.0,f +1069,100%,Guinea,1.0,f +20275,,,1.0,f +19319,100%,Sao Tome and Principe,3.0,f +39158,100%,,3.0,t +17820,100%,Montserrat,8.0,f +11149,100%,Ecuador,1.0,t +40040,,,1.0,f +41286,100%,Sao Tome and Principe,3.0,f +50062,100%,,1.0,f +46589,,Niue,1.0,f +974,,,1.0,f +3322,,,1.0,f +30898,100%,,1.0,t +41948,100%,,1.0,f +26514,99%,Vietnam,10.0,f +9185,89%,Saint Helena,1.0,f +8423,100%,,3.0,t +37253,100%,Saint Helena,1.0,t +13235,100%,Marshall Islands,1.0,t +22109,,,1.0,f +43517,,Russian Federation,1.0,t +10724,90%,Anguilla,1.0,f +17176,67%,Russian Federation,2.0,t +37869,100%,,2.0,f +9757,,Denmark,2.0,f +27526,100%,,2.0,t +13477,,Isle of Man,1.0,f +39534,100%,Guinea,1.0,f +32075,100%,Indonesia,2.0,f +4745,100%,Croatia,119.0,f +37566,100%,Indonesia,4.0,f +42898,,Greenland,1.0,f +4745,100%,Croatia,119.0,f +4217,,Kenya,52.0,f +30216,98%,Maldives,34.0,f +18050,,Ghana,6.0,f +4745,100%,Croatia,119.0,f +29647,100%,Peru,1305.0,f +11621,,Denmark,1.0,f +22009,,French Guiana,1.0,f +28688,84%,Afghanistan,2.0,t +11567,100%,Niger,31.0,t +11125,100%,Nicaragua,12.0,t +20511,,Vanuatu,1.0,f +43648,,Croatia,1.0,f +32203,100%,Barbados,176.0,f +32935,,Ghana,40.0,f +23751,100%,Afghanistan,1.0,f +22992,100%,Russian Federation,1.0,f +31207,100%,Maldives,1.0,f +47274,100%,Tonga,48.0,f +10042,,Indonesia,21.0,f +11448,,Croatia,1.0,f +40269,100%,Russian Federation,1.0,t +3814,,Isle of Man,3.0,f +11255,93%,Suriname,41.0,f +28866,,Cuba,5.0,f +18872,100%,Uzbekistan,2.0,t +11125,100%,Nicaragua,12.0,t +32552,100%,Uganda,1.0,t +40727,,Australia,3.0,f +21111,,Lithuania,1.0,f +39870,,Slovakia (Slovak Republic),21.0,t +11125,100%,Nicaragua,12.0,t +4745,100%,Croatia,119.0,f +32038,100%,Indonesia,35.0,f +20943,100%,Jersey,2.0,f +22703,,China,2.0,f +43162,72%,China,7.0,f +10488,100%,Niger,17.0,t +2596,75%,Puerto Rico,1.0,f +5558,,Afghanistan,2.0,f +24390,100%,Lithuania,1.0,f +5558,,Afghanistan,2.0,f +31874,29%,Gambia,2.0,f +45368,100%,Anguilla,1.0,f +10919,100%,Uzbekistan,2.0,f +14664,100%,Isle of Man,1.0,f +24919,100%,Estonia,4.0,f +9218,,Denmark,1.0,f +7521,100%,Mauritania,1.0,f +21074,100%,Togo,2.0,f +46761,100%,Afghanistan,1.0,t +45260,94%,,19.0,f +45260,94%,,19.0,f +26799,100%,Niger,1.0,f +22751,100%,Russian Federation,1.0,t +26829,,,1.0,f +11946,89%,Zimbabwe,2.0,f +22251,100%,Gambia,11.0,f +7822,100%,Faroe Islands,1.0,t +14852,,Sao Tome and Principe,2.0,f +44247,100%,Russian Federation,3.0,f +18247,95%,Iran,80.0,t +18247,95%,Iran,80.0,t +32935,,Ghana,40.0,f +18247,95%,Iran,80.0,t +27077,100%,Tonga,2.0,f +23161,100%,Sao Tome and Principe,2.0,f +16641,100%,Brazil,2.0,t +18933,75%,Venezuela,10.0,f +3938,,Costa Rica,1.0,f +21986,20%,Lebanon,1.0,f +13652,,Lithuania,2.0,f +21074,100%,Togo,2.0,f +18256,100%,,1.0,f +18933,75%,Venezuela,10.0,f +33971,,Niue,1.0,f +14960,100%,Vietnam,2.0,f +7630,,,1.0,f +48578,100%,,3.0,f +43152,100%,Nicaragua,82.0,t +18933,75%,Venezuela,10.0,f +9820,,,1.0,f +5755,100%,Bouvet Island (Bouvetoya),1.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +31495,,Uzbekistan,1.0,f +24525,,Niger,1.0,f +18459,100%,Zimbabwe,100.0,f +25746,,,1.0,f +9521,,Chad,1.0,t +21552,,Nicaragua,6.0,f +16813,100%,Kiribati,2.0,f +16489,100%,Russian Federation,42.0,t +20581,100%,Marshall Islands,2.0,t +8115,,France,1.0,t +4330,94%,Ukraine,60.0,t +16489,100%,Russian Federation,42.0,t +6375,,United Kingdom,2.0,f +6594,100%,Cuba,2.0,t +43803,50%,Sao Tome and Principe,2.0,f +48012,90%,,1.0,f +8124,100%,Barbados,2.0,f +36025,100%,Djibouti,6.0,t +30759,100%,Uganda,2.0,f +10838,78%,Ecuador,2.0,t +33389,,Kenya,1.0,f +10861,,,2.0,f +11554,100%,Croatia,1.0,f +47535,,Lebanon,1.0,t +6319,,Niue,1.0,t +10491,,Guinea,2.0,t +15377,100%,Uzbekistan,1.0,t +17823,100%,Russian Federation,1.0,f +45191,100%,Montserrat,3.0,t +1695,100%,Anguilla,2.0,f +30919,100%,Mexico,1.0,f +17696,,,1.0,f +14362,,,5.0,f +14362,,,5.0,f +14362,,,5.0,f +14362,,,5.0,f +14362,,,5.0,f +38891,90%,Kiribati,1.0,f +7554,100%,,1105.0,f +14514,,China,80.0,t +7554,100%,,1105.0,f +14514,,China,80.0,t +27395,100%,,1.0,f +7554,100%,,1105.0,f +7554,100%,,1105.0,f +7554,100%,,1105.0,f +4217,,Kenya,52.0,f +7554,100%,,1105.0,f +46148,100%,Uganda,1.0,f +42310,100%,Ecuador,6.0,t +43659,98%,Maldives,14.0,f +32558,,Cape Verde,1.0,f +4027,,,1.0,f +22721,100%,Ecuador,109.0,f +37239,100%,Lebanon,1.0,f +36045,,China,1.0,f +45283,,Turkmenistan,1.0,f +26232,,Bosnia and Herzegovina,1.0,f +32203,100%,Barbados,176.0,f +1185,100%,,1.0,f +968,100%,Portugal,6.0,f +45518,100%,Switzerland,1.0,f +14514,,China,80.0,t +28708,100%,Guinea,4.0,t +20454,,,1.0,f +18933,75%,Venezuela,10.0,f +24086,100%,Indonesia,1.0,t +26976,,Mauritania,1.0,t +1433,,Rwanda,1.0,f +8124,100%,Barbados,2.0,f +30786,,Uzbekistan,29.0,f +31518,100%,Maldives,2.0,f +30248,,Gibraltar,1.0,f +5510,,Reunion,1.0,f +18933,75%,Venezuela,10.0,f +486,,Bouvet Island (Bouvetoya),1.0,f +32992,,Lebanon,1.0,t +10686,86%,Tonga,21.0,f +611,86%,Montserrat,7.0,f +9873,100%,Kenya,1.0,f +20334,99%,Niger,171.0,t +6995,,,1.0,t +40481,89%,,1.0,t +11043,100%,,1.0,t +12247,100%,Maldives,33.0,f +38556,,Niue,1.0,f +34367,100%,Tanzania,2.0,f +43990,100%,Uganda,7.0,f +11622,100%,,3.0,t +36611,71%,Maldives,14.0,f +27883,100%,Cuba,11.0,f +17394,0%,Nicaragua,49.0,f +48402,90%,Guinea,2.0,t +13470,100%,,2.0,f +18867,90%,Guinea,2.0,t +42504,100%,Puerto Rico,1.0,f +9139,100%,Turks and Caicos Islands,1.0,t +5551,,Anguilla,1.0,t +1113,100%,Denmark,2.0,f +1113,100%,Denmark,2.0,f +23924,,,1.0,f +10901,,Bosnia and Herzegovina,1.0,f +9371,100%,Uzbekistan,1.0,f +31089,100%,Kiribati,1.0,f +18077,100%,Sao Tome and Principe,139.0,f +23444,,Rwanda,1.0,f +2043,,Libyan Arab Jamahiriya,5.0,t +46410,100%,,1.0,f +26311,,,1.0,f +20402,100%,Senegal,4.0,f +11738,100%,Peru,1.0,t +26046,100%,Namibia,2.0,f +19603,98%,Cuba,12.0,f +24108,100%,,1.0,f +25041,,Russian Federation,1.0,f +42980,,Cook Islands,1.0,f +20851,,,1.0,t +10718,100%,Guinea,6.0,f +40977,100%,Reunion,7.0,f +18933,75%,Venezuela,10.0,f +18933,75%,Venezuela,10.0,f +31202,90%,Kiribati,107.0,f +31202,90%,Kiribati,107.0,f +31202,90%,Kiribati,107.0,f +31202,90%,Kiribati,107.0,f +39892,100%,Tonga,31.0,t +31202,90%,Kiribati,107.0,f +10717,100%,,1.0,t +10872,100%,Marshall Islands,1.0,f +39892,100%,Tonga,31.0,t +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +39892,100%,Tonga,31.0,t +6502,,Togo,1.0,f +22525,,Micronesia,1.0,f +30786,,Uzbekistan,29.0,f +45209,100%,Gambia,1.0,f +18204,,Christmas Island,2.0,t +25651,,,1.0,f +6519,,,1.0,f +4661,,,1.0,t +20999,,Senegal,1.0,f +27972,94%,Brazil,27.0,f +26674,77%,Uzbekistan,27.0,f +8564,100%,,1.0,f +16832,100%,France,1.0,t +19426,,,1.0,f +43777,100%,Denmark,18.0,f +46890,,,1.0,t +36527,,Guernsey,1.0,f +25170,100%,Russian Federation,2.0,f +42281,100%,Marshall Islands,39.0,f +10686,86%,Tonga,21.0,f +42281,100%,Marshall Islands,39.0,f +17733,,,5.0,f +17733,,,5.0,f +17733,,,5.0,f +17733,,,5.0,f +42281,100%,Marshall Islands,39.0,f +17733,,,5.0,f +42281,100%,Marshall Islands,39.0,f +30729,43%,Cape Verde,1.0,t +42281,100%,Marshall Islands,39.0,f +29814,100%,,5.0,f +18431,100%,Kiribati,5.0,t +29814,100%,,5.0,f +29814,100%,,5.0,f +1652,88%,Greenland,2.0,f +9470,100%,,10.0,f +9470,100%,,10.0,f +9470,100%,,10.0,f +9470,100%,,10.0,f +17668,100%,,1.0,t +9470,100%,,10.0,f +9470,100%,,10.0,f +9470,100%,,10.0,f +9470,100%,,10.0,f +9470,100%,,10.0,f +9470,100%,,10.0,f +36689,100%,Turkmenistan,1.0,t +12651,90%,,1.0,f +10148,90%,Uganda,1.0,f +36920,,,2.0,f +46179,94%,El Salvador,1.0,t +33198,100%,Mauritania,12.0,f +17667,,Uganda,2.0,f +48418,98%,Bosnia and Herzegovina,30.0,f +11806,100%,,1.0,t +20870,,,2.0,f +24767,100%,Puerto Rico,1.0,f +24716,100%,,1.0,f +1072,,Tanzania,1.0,f +12511,100%,Gambia,1.0,f +39406,,Croatia,1.0,f +46874,100%,,1.0,t +30534,,Marshall Islands,1.0,f +42436,,Ghana,4.0,f +28824,50%,Estonia,2.0,f +10236,100%,Monaco,1.0,f +9668,,China,2.0,f +15030,,Niue,2.0,t +10021,,El Salvador,1.0,f +23811,82%,,1.0,t +39906,,Ecuador,1.0,f +39279,,Rwanda,3.0,f +4330,94%,Ukraine,60.0,t +9385,,Guinea,1.0,f +7472,100%,Faroe Islands,1.0,t +31671,100%,Kiribati,1.0,f +15332,100%,Anguilla,9.0,f +20992,,Portugal,1.0,f +38375,100%,El Salvador,2.0,f +22852,100%,Togo,3.0,f +31714,,Turkmenistan,1.0,t +3637,80%,,2.0,f +21095,,,1.0,f +16030,100%,Gambia,2.0,f +39709,100%,Isle of Man,1.0,f +43428,73%,Faroe Islands,9.0,t +16898,,Kiribati,1.0,f +46045,100%,Russian Federation,1.0,t +9043,100%,Gibraltar,3.0,f +38636,,Isle of Man,1.0,f +19214,100%,Senegal,55.0,f +7655,98%,Gambia,7.0,f +1796,100%,Mauritania,5.0,f +14577,50%,Niue,2.0,t +5806,90%,Niue,2.0,f +35327,,Svalbard & Jan Mayen Islands,1.0,f +25412,100%,,2.0,f +18398,100%,Niue,2.0,f +47653,,Bosnia and Herzegovina,1.0,t +17245,100%,Denmark,3.0,f +48847,,,1.0,f +46809,67%,Guernsey,1.0,t +29706,,Sao Tome and Principe,1.0,f +5445,,Chile,1.0,t +45093,,,1.0,f +45657,,Uzbekistan,1.0,f +3392,,Vanuatu,1.0,f +19886,,,1.0,t +9831,100%,Micronesia,1.0,f +18725,,,1.0,t +6168,,Bouvet Island (Bouvetoya),14.0,t +42409,100%,Lebanon,2.0,f +40727,,Australia,3.0,f +33400,97%,Zimbabwe,5.0,t +13835,100%,El Salvador,1.0,f +43960,100%,Marshall Islands,1.0,f +9468,,,1.0,t +4345,,Gambia,1.0,t +46308,100%,,1.0,f +11560,0%,Isle of Man,1.0,f +30021,100%,Djibouti,7.0,t +11839,,Uganda,11.0,f +33043,,Niue,2.0,f +19487,100%,Cocos (Keeling) Islands,2.0,f +30021,100%,Djibouti,7.0,t +14803,,,1.0,t +36786,,,1.0,f +4335,90%,Uganda,1.0,f +7554,100%,,1105.0,f +7554,100%,,1105.0,f +7554,100%,,1105.0,f +7554,100%,,1105.0,f +7597,100%,,2.0,t +7326,100%,Kiribati,3.0,t +48096,,Kenya,1.0,f +41896,100%,Sao Tome and Principe,1.0,f +17174,100%,Mauritania,1.0,t +13177,100%,,2.0,t +22464,,,1.0,t +14025,100%,Guinea,1.0,f +24789,100%,Sao Tome and Principe,6.0,f +42764,100%,Guernsey,13.0,t +28589,100%,Bosnia and Herzegovina,5.0,f +3853,30%,Denmark,3.0,f +27387,96%,Tonga,5.0,f +35168,,Micronesia,1.0,f +37185,100%,China,1.0,f +24671,,Ghana,10.0,f +12052,,,1.0,t +31725,,Montserrat,2.0,t +24896,100%,Algeria,50.0,t +10711,93%,Uganda,108.0,t +30043,100%,Palestinian Territory,1.0,f +49417,,,1.0,f +36060,100%,Niue,2.0,f +9757,,Denmark,2.0,f +43423,,French Guiana,1.0,f +31707,100%,Niger,48.0,f +18433,96%,Guinea,2.0,t +44722,100%,Niue,2.0,f +42841,100%,Netherlands,1.0,f +10191,100%,Lebanon,2.0,f +13773,,Zimbabwe,1.0,f +49205,100%,Niue,1.0,f +31529,100%,Wallis and Futuna,6.0,f +42100,93%,Guinea,2.0,f +21080,100%,Mexico,1.0,f +14558,,,1.0,t +24026,98%,Cape Verde,69.0,t +11616,100%,Uzbekistan,12.0,t +927,100%,,1.0,f +48117,98%,Ukraine,41.0,f +16824,100%,Turkmenistan,1.0,f +5420,100%,Tonga,41.0,f +37745,100%,Zimbabwe,1.0,f +4430,100%,Ghana,1.0,f +32213,,Puerto Rico,1.0,f +34306,91%,Wallis and Futuna,30.0,t +33761,100%,Venezuela,2.0,t +34306,91%,Wallis and Futuna,30.0,t +3121,95%,Zimbabwe,9.0,t +37067,100%,Kiribati,1.0,f +36775,,,1.0,t +2552,80%,,1.0,f +39271,90%,Maldives,2.0,f +1695,100%,Anguilla,2.0,f +41537,100%,Indonesia,2.0,f +43086,100%,Monaco,1.0,t +5585,100%,,1.0,f +42291,,Lebanon,1.0,f +22905,100%,Niue,3.0,f +48570,100%,Montserrat,2.0,f +25036,100%,Lebanon,1.0,t +48570,100%,Montserrat,2.0,f +42080,100%,France,1.0,f +13712,100%,Malawi,3.0,f +41537,100%,Indonesia,2.0,f +10161,,Jersey,2.0,t +84,,Gambia,2.0,f +46931,,Marshall Islands,1.0,f +7779,,Marshall Islands,1.0,t +38873,100%,Mauritania,4.0,f +28728,,,1.0,f +31296,98%,,4.0,f +19425,83%,,2.0,f +10809,100%,Bosnia and Herzegovina,4.0,f +19273,100%,Jersey,1.0,f +43157,100%,Mauritania,4.0,f +43157,100%,Mauritania,4.0,f +17999,100%,,1.0,f +41959,,Ghana,1.0,f +41498,,Sao Tome and Principe,1.0,t +14994,100%,Montserrat,1.0,f +49987,100%,,19.0,f +49987,100%,,19.0,f +49987,100%,,19.0,f +49987,100%,,19.0,f +49987,100%,,19.0,f +49987,100%,,19.0,f +49987,100%,,19.0,f +49987,100%,,19.0,f +11703,,,1.0,f +41475,,,1.0,f +49987,100%,,19.0,f +45199,,Puerto Rico,6.0,f +25958,100%,Tonga,3.0,f +34402,79%,Reunion,28.0,f +29566,,French Polynesia,1.0,f +44660,,France,1.0,f +15419,100%,Cocos (Keeling) Islands,1.0,t +19056,,Jersey,1.0,f +20956,43%,Rwanda,8.0,f +44714,,Ghana,4.0,f +6216,,,1.0,f +39708,100%,Anguilla,1.0,t +27972,94%,Brazil,27.0,f +29647,100%,Peru,1305.0,f +38241,,Uzbekistan,2.0,t +1835,100%,Ecuador,8.0,f +29647,100%,Peru,1305.0,f +40382,100%,Malta,1.0,f +32676,100%,China,34.0,f +32203,100%,Barbados,176.0,f +50089,100%,Isle of Man,2.0,f +32676,100%,China,34.0,f +25417,100%,Philippines,1.0,f +32676,100%,China,34.0,f +30786,,Uzbekistan,29.0,f +40155,100%,Tonga,4.0,f +24929,,Zimbabwe,1.0,f +32676,100%,China,34.0,f +20153,96%,Reunion,51.0,f +23067,90%,El Salvador,2.0,f +32676,100%,China,34.0,f +37024,100%,Mauritania,1.0,f +32203,100%,Barbados,176.0,f +32676,100%,China,34.0,f +40421,96%,Jersey,29.0,t +12437,,,4.0,f +32676,100%,China,34.0,f +12437,,,4.0,f +12437,,,4.0,f +41422,,,2.0,t +12437,,,4.0,f +39279,,Rwanda,3.0,f +49464,,Indonesia,2.0,f +47416,,Bosnia and Herzegovina,2.0,f +48232,,,1.0,f +12654,,Lebanon,1.0,f +3121,95%,Zimbabwe,9.0,t +36574,100%,Russian Federation,4.0,f +10873,100%,,1.0,t +37283,100%,Brazil,1.0,t +31965,,Zimbabwe,1.0,f +41536,,,1.0,f +48148,,El Salvador,1.0,t +685,,Sao Tome and Principe,1.0,t +26479,,Togo,1.0,f +12878,0%,Croatia,2.0,t +39642,,,2.0,f +26713,,Afghanistan,4.0,t +31354,100%,Niger,8.0,t +44537,100%,Tonga,7.0,f +49259,,Mauritania,1.0,f +28845,,Cape Verde,1.0,t +32203,100%,Barbados,176.0,f +19093,100%,Nicaragua,4.0,t +37449,100%,Tonga,3.0,f +47463,,Tanzania,2.0,f +39222,67%,Bouvet Island (Bouvetoya),3.0,f +2374,100%,,1.0,f +4130,,Maldives,7.0,f +3431,,,1.0,f +43050,100%,,2.0,t +3637,80%,,2.0,f +24775,97%,Montserrat,44.0,f +23464,,Togo,1.0,f +42758,,Sao Tome and Principe,1.0,f +18432,100%,Malta,1.0,f +17970,100%,Monaco,1.0,f +6379,83%,Nauru,1.0,f +42274,100%,Faroe Islands,2.0,t +12936,100%,,1.0,f +47978,,Zimbabwe,1.0,f +47150,,Niue,1.0,f +29647,100%,Peru,1305.0,f +27883,100%,Cuba,11.0,f +32150,,Guernsey,1.0,f +43465,100%,Kenya,2.0,f +42709,100%,Mauritania,2.0,t +28379,0%,,1.0,f +32738,100%,Vanuatu,1.0,f +39758,80%,,2.0,f +308,100%,France,1.0,f +27883,100%,Cuba,11.0,f +31130,,Sao Tome and Principe,1.0,f +50002,100%,Micronesia,1.0,f +17497,,Tonga,1.0,t +41546,100%,Mauritania,21.0,f +4368,,Mauritania,2.0,t +35649,100%,,1.0,f +39085,100%,Brazil,1.0,f +35483,80%,Reunion,6.0,f +12057,,Sao Tome and Principe,2.0,f +21418,,Monaco,1.0,f +41709,100%,,12.0,f +10625,,Tonga,1.0,f +11829,100%,Burkina Faso,21.0,f +33296,,Lebanon,1.0,t +26541,100%,Nicaragua,12.0,f +7268,100%,Denmark,3.0,f +6802,,Micronesia,2.0,f +28085,100%,,1.0,f +10718,100%,Guinea,6.0,f +25327,100%,Kiribati,4.0,f +18306,90%,Jersey,5.0,f +27769,,Greenland,1.0,f +30075,70%,France,1.0,f +10418,,Tanzania,1.0,f +40889,100%,Guinea,3.0,f +46634,100%,,1.0,t +4005,100%,French Guiana,2.0,f +9899,90%,Maldives,3.0,f +9899,90%,Maldives,3.0,f +19951,88%,Vanuatu,10.0,f +12940,100%,,2.0,t +11529,,,1.0,f +10972,100%,Togo,1.0,f +45770,,,1.0,f +332,,French Guiana,1.0,t +16275,98%,Maldives,24.0,f +38532,90%,,6.0,f +16275,98%,Maldives,24.0,f +17842,,Niger,1.0,f +15737,,,1.0,f +32676,100%,China,34.0,f +30294,,Bouvet Island (Bouvetoya),1.0,t +19951,88%,Vanuatu,10.0,f +32676,100%,China,34.0,f +32676,100%,China,34.0,f +32676,100%,China,34.0,f +47237,94%,Marshall Islands,5.0,f +16679,100%,Kenya,2.0,f +7812,100%,Bosnia and Herzegovina,8.0,f +48713,100%,,6.0,f +33298,,Anguilla,2.0,f +48713,100%,,6.0,f +48713,100%,,6.0,f +48713,100%,,6.0,f +48713,100%,,6.0,f +48713,100%,,6.0,f +37774,,Djibouti,1.0,f +21537,,,2.0,f +1792,100%,Niue,1.0,f +45829,100%,Venezuela,4.0,f +34525,100%,Estonia,1.0,f +9988,,Niue,1.0,t +44932,,Kenya,2.0,f +22248,,Malta,1.0,t +32203,100%,Barbados,176.0,f +18077,100%,Sao Tome and Principe,139.0,f +24604,100%,Faroe Islands,1.0,t +1304,100%,Montserrat,2.0,f +11411,100%,Russian Federation,2.0,f +123,,Faroe Islands,1.0,f +4217,,Kenya,52.0,f +48418,98%,Bosnia and Herzegovina,30.0,f +22755,,,8.0,t +4510,93%,Maldives,2.0,f +4217,,Kenya,52.0,f +27839,,Greenland,1.0,f +29122,100%,Kenya,1.0,f +40727,,Australia,3.0,f +1285,,Kenya,2.0,f +15577,,Peru,1.0,f +34763,100%,Russian Federation,4.0,f +31445,,Mauritania,1.0,f +30596,,,1.0,f +37639,100%,Nauru,11.0,f +3771,100%,,3.0,f +47274,100%,Tonga,48.0,f +37891,100%,Malta,1.0,f +3771,100%,,3.0,f +42883,,Nauru,1.0,f +18078,100%,Montserrat,13.0,t +2234,100%,Mexico,1.0,t +17667,,Uganda,2.0,f +44585,100%,,1.0,t +42877,,Brazil,1.0,f +50079,75%,,1.0,f +42125,97%,Tonga,4.0,f +39870,,Slovakia (Slovak Republic),21.0,t +26443,,Guinea,3.0,f +11562,100%,Ghana,5.0,f +6439,100%,Cuba,1.0,f +5288,100%,Micronesia,1.0,f +27748,90%,,1.0,f +21654,96%,Solomon Islands,5.0,t +39143,89%,,33.0,f +32097,100%,Denmark,5.0,f +40689,100%,Cuba,23.0,f +5668,90%,Tonga,2.0,t +6876,100%,Turks and Caicos Islands,1.0,f +17641,,Tajikistan,4.0,f +49694,100%,Montserrat,2.0,f +40441,90%,Russian Federation,2.0,f +18441,,,1.0,f +13364,91%,Netherlands,21.0,f +23315,,Somalia,1.0,f +11575,100%,,1.0,f +40135,100%,Kenya,1.0,f +32935,,Ghana,40.0,f +11084,100%,Brazil,1.0,f +6136,100%,Papua New Guinea,1.0,t +28828,100%,Isle of Man,198.0,t +41756,100%,Chad,1.0,f +10711,93%,Uganda,108.0,t +10711,93%,Uganda,108.0,t +5880,,,2.0,f +28796,100%,,1.0,t +13629,67%,Cape Verde,6.0,f +1279,100%,,5.0,f +6894,80%,Estonia,47.0,t +29816,,Malawi,1.0,f +10541,,Croatia,1.0,f +27309,,Isle of Man,4.0,f +13664,100%,Malawi,1.0,t +49006,,Philippines,2.0,f +39892,100%,Tonga,31.0,t +1608,100%,Zimbabwe,2.0,f +29534,100%,,1.0,f +10902,100%,Wallis and Futuna,6.0,f +43540,72%,Bosnia and Herzegovina,25.0,f +4485,95%,China,7.0,t +17909,100%,Kiribati,3.0,f +41277,,Niue,1.0,f +47946,,Mauritania,1.0,f +24780,100%,Cape Verde,1.0,f +3167,100%,Micronesia,3.0,f +12221,90%,,2.0,f +9158,0%,Micronesia,1.0,f +12088,100%,Kiribati,8.0,f +2954,100%,Denmark,5.0,t +8010,100%,Tonga,2.0,f +27974,,Reunion,1.0,f +33797,100%,Gambia,3.0,t +19250,100%,Papua New Guinea,1.0,f +1550,100%,El Salvador,1.0,t +20429,,Reunion,1.0,f +41497,,,1.0,f +13756,100%,Guinea,3.0,f +7331,99%,Indonesia,8.0,t +30598,100%,,1.0,f +18065,100%,Zimbabwe,1.0,t +30218,100%,France,1.0,f +13077,,Costa Rica,1.0,f +5134,60%,Micronesia,2.0,f +11954,100%,Uzbekistan,1.0,f +31385,,,1.0,t +19408,100%,France,1.0,f +48689,100%,Marshall Islands,1.0,f +15062,,Micronesia,1.0,f +49863,33%,,1.0,f +36648,100%,Turks and Caicos Islands,2.0,f +37000,100%,Jersey,1.0,t +30383,90%,Mauritania,6.0,t +5413,100%,France,3.0,t +48009,,Guernsey,1.0,t +37358,0%,Uzbekistan,1.0,f +22777,,Tonga,1.0,f +5051,100%,El Salvador,12.0,f +8225,95%,Barbados,31.0,f +10378,100%,Afghanistan,2.0,f +43565,,Denmark,1.0,f +10320,92%,Tonga,10.0,f +8503,70%,Venezuela,1.0,t +38205,100%,Zimbabwe,1.0,f +26695,,,1.0,f +38832,97%,,15.0,f +40993,100%,Montserrat,15.0,f +23474,,Estonia,2.0,f +23474,,Estonia,2.0,f +6618,100%,Philippines,2.0,f +25789,,,1.0,t +49012,100%,Micronesia,1.0,t +13465,100%,,1.0,f +7082,,Philippines,1.0,t +29814,100%,,5.0,f +15332,100%,Anguilla,9.0,f +15332,100%,Anguilla,9.0,f +36827,100%,,1.0,f +24154,100%,,2.0,f +38085,,Rwanda,1.0,f +1200,100%,Russian Federation,2.0,t +24633,,Chad,3.0,t +9499,,Greenland,1.0,f +29280,,Uganda,1.0,f +15332,100%,Anguilla,9.0,f +37973,98%,Monaco,1.0,t +24300,97%,Palau,5.0,t +41379,100%,France,2.0,t +15332,100%,Anguilla,9.0,f +2410,50%,Kiribati,2.0,f +15332,100%,Anguilla,9.0,f +15332,100%,Anguilla,9.0,f +15332,100%,Anguilla,9.0,f +22142,,Isle of Man,1.0,f +48418,98%,Bosnia and Herzegovina,30.0,f +35924,100%,Nicaragua,1.0,t +26806,100%,Faroe Islands,1.0,t +37248,,Senegal,2.0,t +43388,94%,Barbados,2.0,f +21794,,Canada,1.0,f +28869,,Antarctica (the territory South of 60 deg S),172.0,f +29365,100%,Venezuela,2.0,t +46339,100%,Uzbekistan,1.0,t +14775,,United Kingdom,1.0,f +28869,,Antarctica (the territory South of 60 deg S),172.0,f +2475,,,1.0,t +3152,,,1.0,t +4036,100%,Gibraltar,1.0,t +45298,100%,Zimbabwe,1.0,t +32676,100%,China,34.0,f +23926,90%,,1.0,t +32676,100%,China,34.0,f +26392,,Malta,4.0,f +10092,90%,Papua New Guinea,2.0,t +32676,100%,China,34.0,f +9693,100%,Vanuatu,8.0,f +32676,100%,China,34.0,f +45963,,Mauritania,3.0,t +34558,100%,Philippines,1.0,f +23179,90%,Denmark,1.0,f +11782,100%,,1.0,t +9643,,,1.0,f +31648,,Faroe Islands,1.0,f +40456,0%,Russian Federation,1.0,f +34482,100%,Montserrat,1.0,t +18932,100%,Portugal,1.0,f +5555,100%,Denmark,11.0,t +10993,,Mauritania,8.0,f +26720,,Kenya,3.0,f +39738,100%,,1.0,f +29123,100%,Zimbabwe,16.0,t +38727,100%,Lebanon,1.0,f +32059,,,1.0,f +23303,100%,,2.0,f +46469,100%,Russian Federation,1.0,f +8182,,,1.0,f +42125,97%,Tonga,4.0,f +26469,100%,,1.0,f +42145,,Andorra,1.0,f +7817,,Isle of Man,2.0,f +19698,100%,Guinea,1.0,t +39191,,,1.0,t +7257,,Russian Federation,1.0,f +19127,,Maldives,1.0,f +32676,100%,China,34.0,f +17028,,,1.0,f +7398,33%,Niue,1.0,f +32609,100%,Malta,1.0,f +38180,,Maldives,1.0,f +13789,,Cocos (Keeling) Islands,1.0,f +37465,,,1.0,t +6318,100%,,1.0,f +32304,100%,Maldives,1.0,f +20871,80%,Russian Federation,1.0,f +2853,,Monaco,1.0,t +12547,100%,Slovakia (Slovak Republic),2.0,f +39469,100%,Micronesia,11.0,t +17547,,Gibraltar,3.0,t +26503,,Netherlands Antilles,1.0,t +42823,100%,China,1.0,f +23942,,Uganda,1.0,f +26254,100%,Gambia,3.0,f +21217,75%,Nauru,1.0,f +39102,,Faroe Islands,1.0,t +19699,,Svalbard & Jan Mayen Islands,1.0,f +10646,50%,,1.0,f +77,50%,Monaco,2.0,f +32676,100%,China,34.0,f +32676,100%,China,34.0,f +32676,100%,China,34.0,f +32676,100%,China,34.0,f +33458,100%,Burundi,5.0,t +18496,,,1.0,f +13482,80%,Nauru,1.0,f +24093,88%,Ghana,5.0,f +14598,,Jersey,2.0,t +14514,,China,80.0,t +815,,France,2.0,f +39463,100%,Tunisia,2.0,f +33034,,Vietnam,1.0,f +49856,100%,,1.0,f +41678,,Ghana,1.0,f +4745,100%,Croatia,119.0,f +18459,100%,Zimbabwe,100.0,f +49312,100%,Gibraltar,1.0,f +32203,100%,Barbados,176.0,f +6785,90%,Tunisia,1.0,f +23034,99%,Monaco,54.0,f +44040,,Chad,1.0,f +20645,,Lithuania,1.0,f +11298,,Zimbabwe,1.0,f +4788,,Tonga,7.0,f +34042,100%,Marshall Islands,37.0,f +26705,100%,,1.0,t +35233,,Tanzania,1.0,t +35868,96%,Barbados,4.0,f +29234,100%,Togo,9.0,t +32929,,Chad,1.0,t +30786,,Uzbekistan,29.0,f +49326,100%,Isle of Man,1.0,f +48963,,Tunisia,1.0,f +7158,,,2.0,f +7158,,,2.0,f +18459,100%,Zimbabwe,100.0,f +49565,92%,Uganda,14.0,f +3015,100%,Nicaragua,3.0,f +47179,,Marshall Islands,1.0,f +29978,89%,Uzbekistan,26.0,f +34042,100%,Marshall Islands,37.0,f +32834,100%,Faroe Islands,2.0,f +490,100%,Bosnia and Herzegovina,6.0,f +29978,89%,Uzbekistan,26.0,f +10191,100%,Lebanon,2.0,f +43195,90%,Wallis and Futuna,2.0,f +29978,89%,Uzbekistan,26.0,f +29978,89%,Uzbekistan,26.0,f +49392,,,1.0,f +8602,100%,,1.0,f +7199,100%,Gambia,1.0,f +24332,100%,Mauritania,2.0,t +42274,100%,Faroe Islands,2.0,t +30187,100%,Marshall Islands,2.0,f +9939,100%,Philippines,24.0,f +20835,100%,Gibraltar,3.0,f +9939,100%,Philippines,24.0,f +9939,100%,Philippines,24.0,f +9939,100%,Philippines,24.0,f +25882,,Nicaragua,1.0,f +4746,100%,Uzbekistan,1.0,t +42198,100%,,2.0,f +909,100%,Croatia,18.0,t +19541,100%,,1.0,f +31411,100%,Denmark,1.0,f +24343,,,1.0,f +34489,100%,Lebanon,1.0,t +30128,,Estonia,1.0,f +7672,,Rwanda,1.0,f +3587,100%,Russian Federation,1.0,f +1959,,,1.0,t +38878,100%,,2.0,f +28925,100%,Cape Verde,2.0,f +12547,100%,Slovakia (Slovak Republic),2.0,f +30787,100%,,2.0,t +9147,100%,,4.0,f +3759,100%,France,1.0,t +14514,,China,80.0,t +44565,100%,Faroe Islands,1.0,f +32499,100%,Niue,1.0,f +454,70%,Netherlands,2.0,f +26292,100%,Jersey,2.0,t +23143,65%,Bouvet Island (Bouvetoya),14.0,f +40263,,Nauru,3.0,f +5059,100%,Rwanda,1.0,f +23789,100%,Uzbekistan,1.0,f +16047,80%,Uzbekistan,6.0,f +48576,100%,Lebanon,1.0,t +13318,100%,Gambia,2.0,t +24593,40%,Papua New Guinea,1.0,t +31092,,Senegal,19.0,f +14445,,,1.0,f +48159,100%,Gambia,1.0,f +24103,100%,United Kingdom,3.0,f +23570,80%,,1.0,t +19560,100%,Nicaragua,2.0,t +16501,100%,,1.0,f +24231,,Philippines,1.0,t +8689,80%,Mauritania,1.0,f +30786,,Uzbekistan,29.0,f +4696,,Tonga,1.0,f +22281,100%,Micronesia,3.0,f +49080,100%,Zimbabwe,1.0,f +45801,,Sao Tome and Principe,2.0,t +26427,,Niue,1.0,t +9301,,,1.0,f +21687,100%,Senegal,1.0,f +16649,100%,Gibraltar,8.0,f +20974,100%,Anguilla,3.0,f +17794,56%,Malta,1.0,f +9693,100%,Vanuatu,8.0,f +9239,100%,Cuba,17.0,f +48791,97%,Uzbekistan,5.0,t +13315,100%,Niue,1.0,f +44437,,Zimbabwe,1.0,t +8082,100%,Togo,2.0,f +38035,,Venezuela,1.0,f +16530,100%,Senegal,3.0,f +43425,100%,Faroe Islands,1.0,f +45422,100%,,1.0,f +32676,100%,China,34.0,f +11823,70%,,7.0,f +1680,,Mauritania,1.0,f +5096,100%,Zimbabwe,1.0,t +3616,100%,Cape Verde,14.0,t +13401,,Kiribati,1.0,t +7992,100%,,1.0,f +13884,,,2.0,f +45044,50%,,1.0,t +24768,100%,Maldives,1.0,f +28856,,Gambia,1.0,f +2451,100%,,1.0,f +16224,83%,Palestinian Territory,1.0,t +30182,100%,Croatia,1.0,f +25363,100%,Brazil,1.0,f +41951,100%,Cuba,2.0,f +4316,100%,Micronesia,18.0,f +783,100%,Svalbard & Jan Mayen Islands,12.0,t +34073,,,1.0,f +20860,,Togo,1.0,f +15161,100%,,3.0,f +41082,100%,Senegal,3.0,f +16773,80%,Niue,2.0,t +14132,100%,Canada,3.0,f +15161,100%,,3.0,f +14132,100%,Canada,3.0,f +47581,75%,,3.0,f +7149,,El Salvador,2.0,f +5775,,Gambia,1.0,f +28957,0%,Turkmenistan,2.0,f +16040,100%,,1.0,f +29274,100%,Malawi,1.0,f +32653,100%,Ecuador,1.0,f +27481,,Brazil,1.0,f +17607,,,1.0,f +14514,,China,80.0,t +12879,100%,Costa Rica,1.0,t +48377,50%,,3.0,f +20956,43%,Rwanda,8.0,f +6311,,Gambia,1.0,t +48377,50%,,3.0,f +29173,,Afghanistan,1.0,t +44360,,Jersey,1.0,f +44159,70%,Uzbekistan,1.0,f +27255,,Niue,1.0,f +20956,43%,Rwanda,8.0,f +48432,100%,Isle of Man,2.0,f +12221,90%,,2.0,f +27469,100%,Marshall Islands,3.0,f +40498,100%,Indonesia,1.0,f +16707,100%,Uzbekistan,1.0,f +48566,,Sao Tome and Principe,2.0,t +39622,90%,Venezuela,2.0,f +45138,79%,Barbados,14.0,f +8242,100%,Estonia,1.0,f +48566,,Sao Tome and Principe,2.0,t +40263,,Nauru,3.0,f +30786,,Uzbekistan,29.0,f +11577,100%,Equatorial Guinea,9.0,t +46949,100%,Tunisia,4.0,f +24097,,,1.0,f +42281,100%,Marshall Islands,39.0,f +43540,72%,Bosnia and Herzegovina,25.0,f +29685,100%,,1.0,f +42281,100%,Marshall Islands,39.0,f +42281,100%,Marshall Islands,39.0,f +42281,100%,Marshall Islands,39.0,f +42281,100%,Marshall Islands,39.0,f +42281,100%,Marshall Islands,39.0,f +7894,100%,Ukraine,10.0,f +42281,100%,Marshall Islands,39.0,f +41824,100%,Nicaragua,1.0,f +29374,100%,Nicaragua,1.0,f +20434,90%,Denmark,1.0,f +41224,100%,Mauritania,3.0,t +2246,0%,,1.0,f +46491,,Venezuela,12.0,t +44438,,Niue,2.0,f +9939,100%,Philippines,24.0,f +9939,100%,Philippines,24.0,f +9939,100%,Philippines,24.0,f +46681,,,1.0,f +31309,,Slovakia (Slovak Republic),1.0,f +9939,100%,Philippines,24.0,f +9939,100%,Philippines,24.0,f +3775,100%,Uzbekistan,2.0,f +9939,100%,Philippines,24.0,f +9939,100%,Philippines,24.0,f +9939,100%,Philippines,24.0,f +12137,99%,Sao Tome and Principe,33.0,t +35702,,,1.0,f +32942,,Pakistan,6.0,f +14388,,Philippines,1.0,t +46491,,Venezuela,12.0,t +32942,,Pakistan,6.0,f +783,100%,Svalbard & Jan Mayen Islands,12.0,t +10909,100%,Turks and Caicos Islands,3.0,t +48951,94%,Venezuela,1.0,f +16792,100%,Senegal,2.0,f +7431,100%,,2.0,f +43935,100%,Puerto Rico,1.0,f +1075,100%,,2.0,t +3389,100%,Estonia,13.0,f +17688,100%,Sao Tome and Principe,2.0,t +33623,100%,Nicaragua,1.0,f +28772,100%,Niger,15.0,t +40130,100%,Kiribati,2.0,f +28072,100%,,1.0,f +18077,100%,Sao Tome and Principe,139.0,f +35070,100%,,3.0,f +45552,93%,Nicaragua,12.0,t +18077,100%,Sao Tome and Principe,139.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +39182,100%,Jersey,1.0,f +31170,,Wallis and Futuna,1.0,f +34429,100%,Mauritania,2.0,t +23989,100%,Russian Federation,3.0,t +11300,,,2.0,t +29608,,,1.0,f +45948,,Gambia,1.0,f +36770,,,1.0,f +18719,,,1.0,f +29234,100%,Togo,9.0,t +6828,,Faroe Islands,1.0,f +17108,100%,Kiribati,3.0,f +43496,100%,Montserrat,18.0,t +19518,,Faroe Islands,1.0,f +18078,100%,Montserrat,13.0,t +12195,,Mexico,1.0,f +37435,67%,El Salvador,1.0,f +20334,99%,Niger,171.0,t +24918,100%,Micronesia,1.0,f +34592,100%,Bahrain,1.0,f +33150,100%,Malta,1.0,f +9476,,French Guiana,1.0,t +31160,100%,Bosnia and Herzegovina,2.0,f +16548,90%,,2.0,f +9363,95%,Ukraine,50.0,f +815,,France,2.0,f +18736,90%,,5.0,f +18736,90%,,5.0,f +18736,90%,,5.0,f +18736,90%,,5.0,f +18736,90%,,5.0,f +46017,75%,,1.0,f +19214,100%,Senegal,55.0,f +49919,,Palestinian Territory,1.0,f +23143,65%,Bouvet Island (Bouvetoya),14.0,f +12917,100%,Kiribati,1.0,f +22004,,Vanuatu,1.0,t +46099,98%,Uzbekistan,28.0,f +45838,100%,Nicaragua,1.0,f +18825,,,2.0,t +32942,,Pakistan,6.0,f +32942,,Pakistan,6.0,f +31211,,,1.0,f +29967,94%,Reunion,5.0,f +6361,,,1.0,f +24440,100%,Uruguay,1.0,f +3280,100%,Isle of Man,2.0,t +7009,100%,Isle of Man,9.0,f +48117,98%,Ukraine,41.0,f +5420,100%,Tonga,41.0,f +32312,100%,Peru,1.0,f +3931,,Bouvet Island (Bouvetoya),1.0,t +42221,100%,Monaco,1.0,f +8423,100%,,3.0,t +10312,,,1.0,f +23522,100%,Zimbabwe,1.0,f +41327,100%,Zimbabwe,2.0,t +33010,100%,Rwanda,3.0,t +40687,,Russian Federation,1.0,f +9310,70%,Gambia,1.0,f +10006,100%,Tanzania,1.0,t +41928,87%,Nicaragua,9.0,f +32777,100%,,1.0,t +36742,,Isle of Man,2.0,f +3139,,,1.0,f +29540,,Turkmenistan,1.0,t +20261,,Rwanda,1.0,t +12824,33%,Niue,1.0,f +42645,100%,China,2.0,f +13974,,Russian Federation,2.0,f +28771,,Greenland,1.0,f +5207,100%,Estonia,1.0,f +21472,88%,,2.0,t +21472,88%,,2.0,t +4364,100%,Uganda,1.0,f +37959,100%,Cape Verde,1.0,f +15161,100%,,3.0,f +43756,,Bouvet Island (Bouvetoya),1.0,f +47970,100%,Ukraine,1.0,t +16520,100%,Marshall Islands,22.0,f +45586,,Micronesia,1.0,f +24306,,Lebanon,1.0,t +35879,100%,Cape Verde,2.0,f +41276,,France,1.0,t +45810,,,1.0,f +34713,,,2.0,f +2644,100%,Zimbabwe,11.0,t +33147,100%,Uzbekistan,2.0,t +29382,100%,Ghana,4.0,f +8470,88%,Marshall Islands,1.0,f +21820,100%,,1.0,t +21552,,Nicaragua,6.0,f +29796,100%,Peru,1.0,t +19689,,Lithuania,2.0,t +36420,,Barbados,1.0,f +48117,98%,Ukraine,41.0,f +1085,,Nicaragua,1.0,f +36875,100%,,1.0,f +39520,100%,Tanzania,1.0,f +8525,,Sao Tome and Principe,2.0,f +6887,100%,Faroe Islands,2.0,f +15884,100%,,1.0,f +26767,87%,,2.0,f +35536,,Ghana,1.0,t +29010,100%,Gambia,1.0,f +16266,90%,,3.0,f +49516,,Uzbekistan,1.0,t +37209,,Rwanda,1.0,t +21004,100%,Venezuela,1.0,f +33535,,Micronesia,1.0,f +24843,100%,Venezuela,4.0,t +17335,,,1.0,f +356,99%,Wallis and Futuna,32.0,t +6277,100%,Estonia,6.0,f +28529,,Gambia,2.0,f +46579,100%,Micronesia,1.0,f +49379,100%,,2.0,f +28102,,,1.0,f +45162,,Maldives,20.0,f +21240,94%,Niger,130.0,f +25953,100%,Uzbekistan,1.0,t +42237,100%,Sao Tome and Principe,1.0,f +9443,94%,Morocco,97.0,f +13127,100%,Niger,22.0,f +32935,,Ghana,40.0,f +40473,100%,,1.0,f +31202,90%,Kiribati,107.0,f +23734,0%,Uganda,1.0,t +31202,90%,Kiribati,107.0,f +9443,94%,Morocco,97.0,f +19590,,Sao Tome and Principe,1.0,t +286,92%,Morocco,50.0,t +8211,,Russian Federation,1.0,f +20263,99%,Maldives,35.0,t +31202,90%,Kiribati,107.0,f +32876,67%,Micronesia,1.0,f +18459,100%,Zimbabwe,100.0,f +3595,100%,Tanzania,2.0,t +35858,,Kenya,1.0,t +31396,90%,Ecuador,1.0,f +7409,90%,Kiribati,1.0,f +222,89%,,16.0,f +2118,,Reunion,1.0,f +35625,98%,Estonia,25.0,t +5505,,United Kingdom,1.0,t +47511,,Bosnia and Herzegovina,1.0,t +26457,100%,Monaco,4.0,t +13641,85%,Mauritania,23.0,f +32935,,Ghana,40.0,f +12740,100%,Nauru,1.0,f +5420,100%,Tonga,41.0,f +16658,,Somalia,1.0,t +7182,100%,,1.0,t +15825,90%,French Guiana,4.0,t +17322,95%,,30.0,f +17322,95%,,30.0,f +16951,,Niue,1.0,f +31271,,France,1.0,f +31202,90%,Kiribati,107.0,f +11924,,,3.0,f +28589,100%,Bosnia and Herzegovina,5.0,f +11280,100%,Slovakia (Slovak Republic),10.0,f +16489,100%,Russian Federation,42.0,t +39683,100%,,1.0,f +6168,,Bouvet Island (Bouvetoya),14.0,t +6168,,Bouvet Island (Bouvetoya),14.0,t +6168,,Bouvet Island (Bouvetoya),14.0,t +3804,100%,Faroe Islands,1.0,f +21675,100%,Tonga,2.0,f +22251,100%,Gambia,11.0,f +39279,,Rwanda,3.0,f +41005,100%,Ukraine,4.0,f +48104,100%,Niue,1.0,f +32441,,Christmas Island,1.0,f +48540,100%,Tanzania,2.0,f +48540,100%,Tanzania,2.0,f +47046,100%,Lebanon,9.0,f +8098,100%,Niue,1.0,f +18290,100%,,2.0,f +15207,100%,Russian Federation,1.0,f +18205,100%,Cuba,21.0,f +10422,,Sao Tome and Principe,1.0,f +14651,100%,Rwanda,1.0,f +30786,,Uzbekistan,29.0,f +13938,,Brazil,1.0,f +757,83%,,2.0,f +38173,100%,Cocos (Keeling) Islands,1.0,t +23726,100%,Malta,1.0,f +35571,,Bosnia and Herzegovina,3.0,t +22995,90%,,7.0,f +47188,100%,Senegal,1.0,f +17767,,Bosnia and Herzegovina,1.0,t +42051,100%,Nicaragua,11.0,t +20996,100%,Palestinian Territory,2.0,f +43711,100%,Rwanda,1.0,f +341,,Malta,1.0,t +18459,100%,Zimbabwe,100.0,f +2743,97%,China,23.0,f +21767,100%,Nauru,1.0,f +49160,,Estonia,1.0,f +42653,,,2.0,f +15129,,Niue,1.0,f +43505,75%,Canada,1.0,f +31064,,Bouvet Island (Bouvetoya),1.0,f +49738,,Maldives,1.0,f +30786,,Uzbekistan,29.0,f +32038,100%,Indonesia,35.0,f +32203,100%,Barbados,176.0,f +3274,86%,Barbados,24.0,f +35629,,Ghana,1.0,f +4217,,Kenya,52.0,f +1310,83%,Barbados,5.0,f +1572,90%,,2.0,f +26205,,Faroe Islands,1.0,f +9661,,Lebanon,1.0,f +22331,99%,Rwanda,50.0,t +3288,100%,,1.0,t +1642,100%,Marshall Islands,17.0,f +13451,100%,,3.0,f +909,100%,Croatia,18.0,t +16731,80%,,1.0,f +26443,,Guinea,3.0,f +26405,100%,,1.0,t +16128,,Faroe Islands,1.0,f +32203,100%,Barbados,176.0,f +49058,80%,French Guiana,1.0,f +20281,100%,,1.0,f +32203,100%,Barbados,176.0,f +9776,100%,Nicaragua,1.0,f +17457,90%,,2.0,f +29237,,,1.0,t +31863,,Estonia,2.0,f +27753,100%,Uganda,3.0,f +29957,,Gambia,2.0,f +42272,100%,Andorra,1.0,f +45436,100%,Tonga,2.0,f +31959,,Rwanda,4.0,f +42120,0%,,1.0,f +3577,100%,Palestinian Territory,1.0,t +28658,,,1.0,f +7443,94%,Pakistan,4.0,f +32203,100%,Barbados,176.0,f +18078,100%,Montserrat,13.0,t +26532,83%,Finland,1.0,t +41910,100%,Slovakia (Slovak Republic),5.0,f +18916,50%,Holy See (Vatican City State),1.0,t +8707,73%,Rwanda,21.0,t +7358,100%,French Polynesia,3.0,f +45260,94%,,19.0,f +45260,94%,,19.0,f +11603,100%,Gambia,1.0,f +25934,100%,Estonia,7.0,f +27618,,,1.0,f +41043,100%,Bosnia and Herzegovina,11.0,f +47365,100%,Lebanon,1.0,f +25706,100%,Isle of Man,1.0,f +3694,,,1.0,t +20165,94%,Ukraine,30.0,f +45541,,Mauritania,1.0,f +7634,100%,Nicaragua,2.0,f +11515,100%,Cook Islands,16.0,f +2847,25%,,1.0,f +47570,100%,Marshall Islands,1.0,t +22216,20%,Peru,2.0,t +15597,,Niue,2.0,f +3191,,Isle of Man,1.0,f +1602,,,3.0,f +32096,100%,Gibraltar,2.0,t +13437,100%,Jersey,1.0,f +30786,,Uzbekistan,29.0,f +27753,100%,Uganda,3.0,f +29289,100%,Kiribati,1.0,f +12088,100%,Kiribati,8.0,f +3274,86%,Barbados,24.0,f +30786,,Uzbekistan,29.0,f +355,80%,China,9.0,t +13070,100%,Fiji,45.0,f +12054,,Kiribati,4.0,t +31358,,,1.0,f +18708,,Uzbekistan,1.0,f +48291,,Bosnia and Herzegovina,2.0,f +8224,98%,Estonia,12.0,f +29669,100%,,1.0,f +2344,,Vanuatu,1.0,f +3178,,Pakistan,1.0,t +10182,100%,,2.0,f +11986,,,1.0,f +16520,100%,Marshall Islands,22.0,f +19963,86%,Finland,2.0,t +41005,100%,Ukraine,4.0,f +49565,92%,Uganda,14.0,f +40032,100%,El Salvador,16.0,f +8200,,,1.0,f +20334,99%,Niger,171.0,t +43184,100%,United Kingdom,1.0,t +6957,,Rwanda,1.0,t +8031,,Vanuatu,1.0,f +29123,100%,Zimbabwe,16.0,t +18077,100%,Sao Tome and Principe,139.0,f +9395,,Guernsey,4.0,f +28828,100%,Isle of Man,198.0,t +12488,,China,2.0,f +45688,,Kenya,10.0,f +18787,100%,,1.0,t +40421,96%,Jersey,29.0,t +20334,99%,Niger,171.0,t +45024,,Brazil,1.0,f +13596,,Afghanistan,1.0,f +18459,100%,Zimbabwe,100.0,f +13760,93%,Anguilla,1.0,f +18459,100%,Zimbabwe,100.0,f +18233,,Marshall Islands,1.0,f +43011,100%,Wallis and Futuna,6.0,f +16243,,Lebanon,3.0,f +15597,,Niue,2.0,f +21474,100%,Niger,1.0,f +43011,100%,Wallis and Futuna,6.0,f +6967,100%,Russian Federation,1.0,f +43011,100%,Wallis and Futuna,6.0,f +1602,,,3.0,f +27484,100%,Bosnia and Herzegovina,1.0,t +49840,,Canada,1.0,f +43011,100%,Wallis and Futuna,6.0,f +1602,,,3.0,f +48549,100%,France,2.0,f +34042,100%,Marshall Islands,37.0,f +40179,,,1.0,t +20334,99%,Niger,171.0,t +35446,100%,Lithuania,1.0,f +39892,100%,Tonga,31.0,t +18484,100%,Gambia,108.0,f +1948,63%,Rwanda,3.0,f +2615,100%,Maldives,2.0,t +27972,94%,Brazil,27.0,f +46061,100%,Uganda,2.0,t +24473,,Costa Rica,17.0,f +23020,94%,Russian Federation,4.0,t +30239,100%,Sao Tome and Principe,1.0,f +16998,100%,Bahrain,2.0,f +11181,100%,,2.0,f +27861,,Sao Tome and Principe,2.0,f +11903,,Nauru,1.0,f +34171,100%,Anguilla,6.0,f +32251,,,1.0,f +9064,100%,Zimbabwe,1.0,f +13417,100%,Pakistan,8.0,t +39594,,Sao Tome and Principe,3.0,f +22926,,Niue,1.0,t +36461,,Anguilla,1.0,f +40821,100%,Maldives,1.0,f +35806,,Niue,3.0,f +43590,100%,Costa Rica,9.0,f +18978,,Anguilla,1.0,t +44028,,Cape Verde,13.0,f +16992,90%,,1.0,f +37409,100%,,1.0,f +7924,60%,,1.0,t +49032,100%,Estonia,2.0,f +18040,100%,Gambia,1.0,f +18484,100%,Gambia,108.0,f +14358,100%,Maldives,9.0,f +14567,100%,Mauritania,2.0,f +20532,90%,,7.0,f +8998,,Bosnia and Herzegovina,4.0,t +29647,100%,Peru,1305.0,f +13177,100%,,2.0,t +10674,100%,Marshall Islands,2.0,t +48808,100%,Sao Tome and Principe,1.0,f +31092,,Senegal,19.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +35735,,Rwanda,1.0,f +47861,100%,Montserrat,1.0,f +7345,,Svalbard & Jan Mayen Islands,1.0,f +9768,,,3.0,f +5935,,Maldives,1.0,t +25292,100%,Reunion,1.0,f +45226,100%,Venezuela,2.0,t +14358,100%,Maldives,9.0,f +9768,,,3.0,f +1673,50%,Uganda,2.0,f +45533,100%,Vanuatu,1.0,f +19702,,,1.0,f +10773,,Papua New Guinea,1.0,t +20310,100%,Andorra,1.0,f +11038,,Lebanon,2.0,t +33950,100%,Gambia,1.0,t +1673,50%,Uganda,2.0,f +22656,,Montserrat,1.0,f +30786,,Uzbekistan,29.0,f +32203,100%,Barbados,176.0,f +38893,100%,Tonga,1.0,f +21283,100%,Kenya,2.0,f +13687,100%,United Kingdom,1.0,f +6847,100%,Vietnam,4.0,f +5386,100%,,3.0,f +6874,100%,Guinea,2.0,f +38944,,Russian Federation,1.0,f +14358,100%,Maldives,9.0,f +44966,100%,Guinea,21.0,f +47628,100%,El Salvador,2.0,t +36299,100%,Rwanda,13.0,t +19019,97%,Nicaragua,1484.0,f +1438,100%,Chile,1.0,t +5509,100%,Uzbekistan,1.0,f +32662,100%,Svalbard & Jan Mayen Islands,1.0,t +34540,100%,Rwanda,2.0,f +6040,,El Salvador,1.0,f +39952,100%,Tonga,21.0,f +26299,33%,Turkmenistan,1.0,f +21822,100%,Monaco,2.0,t +40695,,Niue,1.0,t +34937,100%,Malawi,2.0,t +24807,100%,Malawi,1.0,t +18247,95%,Iran,80.0,t +42088,100%,,1.0,f +44051,100%,,2.0,f +14567,100%,Mauritania,2.0,f +10718,100%,Guinea,6.0,f +10718,100%,Guinea,6.0,f +22461,100%,Turks and Caicos Islands,4.0,f +11280,100%,Slovakia (Slovak Republic),10.0,f +6004,90%,Micronesia,4.0,f +47720,,Malta,1.0,f +11280,100%,Slovakia (Slovak Republic),10.0,f +6446,,Chad,1.0,f +40847,,,1.0,f +5194,,Sao Tome and Principe,2.0,f +48574,,,2.0,t +49965,100%,Kenya,5.0,t +22686,100%,French Polynesia,1.0,t +42605,100%,Kiribati,1.0,f +9599,100%,,1.0,f +41791,100%,Tunisia,1.0,t +49842,100%,Gibraltar,1.0,f +24118,98%,Ghana,21.0,t +46088,,Ghana,15.0,f +42054,100%,Guinea,2.0,f +46088,,Ghana,15.0,f +4149,,Russian Federation,1.0,f +1016,100%,French Guiana,1.0,t +11553,,,1.0,f +24867,90%,Bosnia and Herzegovina,5.0,f +29694,100%,,1.0,t +44037,100%,Niue,1.0,f +13057,100%,Ukraine,1.0,f +35513,100%,United Kingdom,1.0,f +13884,,,2.0,f +35769,100%,Montserrat,1.0,f +38019,100%,Afghanistan,10.0,f +24071,100%,Indonesia,22.0,f +41113,,Congo,1.0,t +2286,,Denmark,1.0,f +7881,100%,Niue,6.0,t +41509,,Mauritania,5.0,t +26921,98%,Nicaragua,6.0,t +34598,100%,French Guiana,2.0,t +26488,100%,Isle of Man,10.0,f +31384,,Togo,1.0,f +30309,60%,Cape Verde,2.0,t +48682,100%,Isle of Man,4.0,f +40451,100%,Togo,6.0,f +48508,100%,Marshall Islands,2.0,f +18398,100%,Niue,2.0,f +35254,,Niue,2.0,f +39716,100%,,1.0,t +28828,100%,Isle of Man,198.0,t +32300,,France,1.0,t +36064,,Russian Federation,1.0,f +15825,90%,French Guiana,4.0,t +24258,100%,Malta,1.0,f +26488,100%,Isle of Man,10.0,f +15542,,Denmark,1.0,f +35560,,Gambia,2.0,f +43567,100%,Afghanistan,1.0,f +44169,97%,Portugal,39.0,f +31752,0%,Russian Federation,1.0,f +38375,100%,El Salvador,2.0,f +29155,,Sao Tome and Principe,1.0,t +28957,0%,Turkmenistan,2.0,f +26488,100%,Isle of Man,10.0,f +3720,,Congo,1.0,f +17030,100%,Croatia,5.0,f +41271,100%,,2.0,t +14410,100%,,1.0,t +39303,,Guernsey,1.0,f +29158,67%,,2.0,f +9636,100%,,1.0,f +17795,100%,Uzbekistan,11.0,t +25068,100%,Tonga,1.0,f +37316,,,1.0,t +16235,100%,,1.0,f +43871,0%,Puerto Rico,3.0,f +46991,0%,Nauru,1.0,t +24972,100%,Brazil,1.0,f +35914,100%,China,1.0,t +43871,0%,Puerto Rico,3.0,f +40355,96%,Maldives,8.0,t +9006,,Estonia,1.0,f +20286,,,1.0,f +15877,,,1.0,t +40339,97%,Marshall Islands,2.0,t +6140,100%,Marshall Islands,3.0,f +40889,100%,Guinea,3.0,f +13403,96%,Maldives,21.0,t +50034,100%,Ghana,1.0,t +17820,100%,Montserrat,8.0,f +43798,100%,El Salvador,4.0,t +38071,80%,Zimbabwe,4.0,f +24118,98%,Ghana,21.0,t +40355,96%,Maldives,8.0,t +19321,100%,,2.0,f +32203,100%,Barbados,176.0,f +5453,,Philippines,1.0,f +49965,100%,Kenya,5.0,t +4593,100%,Vanuatu,1.0,f +12525,100%,,1.0,f +45991,100%,Sao Tome and Principe,1.0,f +36546,86%,Ghana,3.0,f +5686,,Netherlands,1.0,f +20595,100%,Marshall Islands,1.0,f +7174,100%,United Kingdom,1.0,t +40355,96%,Maldives,8.0,t +40355,96%,Maldives,8.0,t +4745,100%,Croatia,119.0,f +14390,100%,El Salvador,1.0,f +3676,100%,Marshall Islands,1.0,f +4745,100%,Croatia,119.0,f +19669,,Lebanon,1.0,f +19602,100%,Lithuania,24.0,f +39950,,Tonga,2.0,f +49163,,Guinea,1.0,f +8979,100%,Micronesia,9.0,t +26386,100%,Fiji,25.0,t +26386,100%,Fiji,25.0,t +42675,100%,Montserrat,1.0,f +18929,78%,,1.0,t +32372,90%,Ghana,5.0,f +48455,89%,Uzbekistan,20.0,t +47416,,Bosnia and Herzegovina,2.0,f +22400,100%,Zimbabwe,1.0,f +27226,100%,Congo,10.0,f +14069,100%,Mauritania,1.0,t +41799,50%,Maldives,7.0,f +8312,100%,Togo,1.0,f +35959,100%,Malta,1.0,t +32038,100%,Indonesia,35.0,f +7839,100%,,2.0,f +20767,,,1.0,t +34763,100%,Russian Federation,4.0,f +34593,50%,Maldives,1.0,f +30786,,Uzbekistan,29.0,f +32038,100%,Indonesia,35.0,f +21797,100%,Monaco,1.0,f +19623,100%,Faroe Islands,1.0,f +39312,94%,Monaco,4.0,t +22660,80%,,1.0,t +41799,50%,Maldives,7.0,f +8632,100%,Tonga,1.0,f +34042,100%,Marshall Islands,37.0,f +42281,100%,Marshall Islands,39.0,f +4217,,Kenya,52.0,f +34171,100%,Anguilla,6.0,f +7071,,Ecuador,1.0,f +28717,100%,Chad,2.0,t +25577,100%,Marshall Islands,2.0,f +7066,,Anguilla,1.0,f +45141,100%,Tonga,1.0,t +29839,100%,Antigua and Barbuda,4.0,f +23977,100%,Malta,3.0,f +18167,,Sao Tome and Principe,2.0,t +16732,100%,,1.0,f +27210,,Zimbabwe,1.0,f +45970,100%,Gibraltar,1.0,t +47529,,Brazil,1.0,f +30804,93%,Andorra,2.0,f +49032,100%,Estonia,2.0,f +28894,100%,Nicaragua,2.0,f +26386,100%,Fiji,25.0,t +45260,94%,,19.0,f +45260,94%,,19.0,f +43540,72%,Bosnia and Herzegovina,25.0,f +8494,,,2.0,f +8083,,Guinea,1.0,f +23793,,,1.0,f +30738,86%,Jersey,1.0,f +16371,95%,Bouvet Island (Bouvetoya),29.0,f +28096,,Faroe Islands,1.0,t +22594,100%,Rwanda,12.0,f +21718,,,2.0,f +15286,,Uzbekistan,1.0,f +34042,100%,Marshall Islands,37.0,f +22367,100%,Canada,3.0,t +20334,99%,Niger,171.0,t +28828,100%,Isle of Man,198.0,t +30786,,Uzbekistan,29.0,f +8355,87%,Togo,16.0,f +13276,90%,United Kingdom,5.0,t +4217,,Kenya,52.0,f +1583,,Russian Federation,1.0,f +26386,100%,Fiji,25.0,t +22281,100%,Micronesia,3.0,f +32151,100%,Ecuador,1.0,f +39394,100%,Lithuania,1.0,f +37270,100%,Cuba,2.0,f +32935,,Ghana,40.0,f +5386,100%,,3.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +5386,100%,,3.0,f +4788,,Tonga,7.0,f +46285,100%,Turkmenistan,3.0,t +31501,,China,1.0,f +31438,100%,Nicaragua,5.0,t +24671,,Ghana,10.0,f +19019,97%,Nicaragua,1484.0,f +34766,50%,Montserrat,2.0,f +12175,90%,Venezuela,1.0,f +24291,90%,Nicaragua,1.0,f +35721,100%,,1.0,f +18116,89%,Ecuador,1.0,f +38649,100%,Ecuador,3.0,t +19958,100%,Congo,40.0,t +44953,100%,Tunisia,2.0,f +4189,70%,,1.0,f +47318,,Brazil,1.0,f +24775,97%,Montserrat,44.0,f +24775,97%,Montserrat,44.0,f +4898,100%,Kiribati,1.0,f +24775,97%,Montserrat,44.0,f +24775,97%,Montserrat,44.0,f +35449,83%,Pakistan,1.0,t +35090,100%,Niger,2.0,f +17082,,French Guiana,1.0,t +45737,,Tonga,29.0,t +9693,100%,Vanuatu,8.0,f +5880,,,2.0,f +45357,100%,,1.0,t +22528,,,1.0,t +31578,,,1.0,t +36418,,,1.0,f +47156,,,1.0,f +34127,100%,Uzbekistan,1.0,f +25781,100%,Niue,1.0,f +39529,,Croatia,2.0,t +6893,,Uganda,2.0,f +25961,81%,,1.0,f +38103,80%,Isle of Man,2.0,f +42998,60%,Svalbard & Jan Mayen Islands,1.0,f +17167,100%,,1.0,f +19603,98%,Cuba,12.0,f +26488,100%,Isle of Man,10.0,f +22462,80%,,1.0,f +19603,98%,Cuba,12.0,f +39046,,Jersey,1.0,f +19603,98%,Cuba,12.0,f +35475,100%,,1.0,f +30541,100%,,1.0,t +25315,100%,Uganda,2.0,t +6341,100%,,1.0,f +17579,0%,Guinea,1.0,t +8210,100%,,1.0,f +5468,100%,Lao People's Democratic Republic,2.0,f +6112,100%,Russian Federation,1.0,f +3837,90%,,1.0,f +5273,,Slovakia (Slovak Republic),2.0,t +16755,,France,1.0,f +20535,,,1.0,f +2316,100%,Anguilla,1.0,f +45066,100%,Pakistan,1.0,f +7731,100%,Congo,1.0,f +18121,100%,Bouvet Island (Bouvetoya),8.0,f +17245,100%,Denmark,3.0,f +18670,,,1.0,f +45260,94%,,19.0,f +18121,100%,Bouvet Island (Bouvetoya),8.0,f +38282,,Tonga,5.0,f +8787,,Micronesia,5.0,f +26107,100%,Niue,3.0,f +13610,100%,Micronesia,1.0,f +35024,,Guinea,2.0,f +1005,,Russian Federation,1.0,t +35024,,Guinea,2.0,f +27378,100%,,1.0,t +16657,100%,Denmark,1.0,f +18036,100%,Marshall Islands,2.0,f +13409,100%,,1.0,t +15857,0%,,1.0,f +43578,90%,Kiribati,7.0,f +43578,90%,Kiribati,7.0,f +19781,,,1.0,t +41814,100%,,1.0,t +9495,70%,,6.0,f +9495,70%,,6.0,f +9495,70%,,6.0,f +9495,70%,,6.0,f +9495,70%,,6.0,f +41120,100%,Russian Federation,1.0,f +41005,100%,Ukraine,4.0,f +33297,100%,Croatia,2.0,t +6270,100%,Monaco,1.0,f +12078,75%,,1.0,t +7655,98%,Gambia,7.0,f +14514,,China,80.0,t +7892,100%,,1.0,f +10042,,Indonesia,21.0,f +34566,88%,,1.0,t +42140,100%,Togo,2.0,f +16371,95%,Bouvet Island (Bouvetoya),29.0,f +38555,,,1.0,t +29647,100%,Peru,1305.0,f +25595,100%,Chile,1.0,f +29647,100%,Peru,1305.0,f +23435,,Turks and Caicos Islands,1.0,f +29647,100%,Peru,1305.0,f +28772,100%,Niger,15.0,t +19958,100%,Congo,40.0,t +18459,100%,Zimbabwe,100.0,f +42100,93%,Guinea,2.0,f +28714,100%,Monaco,1.0,t +18484,100%,Gambia,108.0,f +11442,90%,Maldives,5.0,f +29683,100%,Tonga,1.0,t +11244,,Russian Federation,1.0,f +7640,100%,Tonga,2.0,f +4217,,Kenya,52.0,f +19842,85%,Turkmenistan,53.0,f +19842,85%,Turkmenistan,53.0,f +14236,,Bosnia and Herzegovina,4.0,t +36219,100%,Brazil,1.0,t +16158,100%,Monaco,1.0,f +13646,,,1.0,t +22594,100%,Rwanda,12.0,f +29916,100%,Niue,4.0,t +15767,100%,Denmark,6.0,t +40793,100%,,75.0,t +27565,0%,Niue,1.0,f +19041,100%,Indonesia,4.0,t +39952,100%,Tonga,21.0,f +44937,100%,Puerto Rico,19.0,t +10718,100%,Guinea,6.0,f +15847,,Uganda,13.0,f +42235,,Kiribati,1.0,f +10826,90%,Togo,2.0,f +46270,,Niue,1.0,t +42140,100%,Togo,2.0,f +15851,100%,,2.0,f +45162,,Maldives,20.0,f +12657,,Russian Federation,1.0,f +48137,80%,Guernsey,2.0,f +8655,100%,Isle of Man,1.0,f +18484,100%,Gambia,108.0,f +5408,,Maldives,1.0,f +42397,,Nicaragua,1.0,f +46982,93%,Denmark,2.0,f +18484,100%,Gambia,108.0,f +29244,67%,Micronesia,1.0,f +18101,100%,Marshall Islands,1.0,f +4940,100%,,2.0,f +43152,100%,Nicaragua,82.0,t +14757,100%,United Kingdom,2.0,t +17457,90%,,2.0,f +25144,,Lebanon,1.0,f +30328,90%,Kenya,1.0,f +23792,100%,Somalia,1.0,f +18459,100%,Zimbabwe,100.0,f +48133,,Isle of Man,45.0,f +1553,,,2.0,f +25687,100%,Anguilla,17.0,f +44937,100%,Puerto Rico,19.0,t +44937,100%,Puerto Rico,19.0,t +44937,100%,Puerto Rico,19.0,t +32203,100%,Barbados,176.0,f +15234,100%,Guinea,1.0,f +4446,100%,Uganda,58.0,f +34599,100%,Finland,1.0,f +17208,,Marshall Islands,1.0,f +46144,67%,,1.0,t +42388,,United Kingdom,1.0,f +7655,98%,Gambia,7.0,f +48133,,Isle of Man,45.0,f +22721,100%,Ecuador,109.0,f +13838,100%,Montserrat,10.0,f +23647,100%,Micronesia,5.0,f +34164,100%,Peru,1.0,f +41216,,Jersey,1.0,t +24145,67%,Pakistan,1.0,f +19603,98%,Cuba,12.0,f +35221,100%,Turks and Caicos Islands,30.0,t +39442,,,1.0,f +17820,100%,Montserrat,8.0,f +29743,,Micronesia,1.0,f +41928,87%,Nicaragua,9.0,f +37217,0%,Kiribati,4.0,f +22826,,Greenland,1.0,f +30087,,Bahrain,1.0,f +21886,,Croatia,5.0,t +20779,86%,Micronesia,1.0,t +14141,,Guinea,1.0,f +31556,100%,Zimbabwe,1.0,f +9495,70%,,6.0,f +17377,,Sao Tome and Principe,1.0,f +48092,100%,Tonga,5.0,f +28505,100%,,1.0,f +32877,,Anguilla,1.0,t +41291,,Brazil,3.0,f +4697,100%,Guinea,1.0,t +30807,100%,Rwanda,2.0,f +5013,100%,Libyan Arab Jamahiriya,1.0,f +30283,100%,Brazil,15.0,f +38913,,China,1.0,f +30283,100%,Brazil,15.0,f +6192,100%,,3.0,f +4239,,,1.0,f +44483,,,1.0,f +19958,100%,Congo,40.0,t +41026,100%,Senegal,1.0,f +27908,100%,Saint Barthelemy,3.0,t +4940,100%,,2.0,f +25708,100%,,1.0,f +36604,,Congo,1.0,f +24409,100%,Isle of Man,1.0,f +7778,100%,Mauritania,7.0,t +16784,100%,Turkmenistan,3.0,t +10349,100%,Afghanistan,1.0,f +18320,50%,Reunion,19.0,t +20411,100%,Pakistan,4.0,t +33761,100%,Venezuela,2.0,t +8993,100%,Papua New Guinea,1.0,t +12670,,Bosnia and Herzegovina,1.0,f +46513,,Isle of Man,1.0,f +13838,100%,Montserrat,10.0,f +25633,100%,Mauritania,1.0,t +17817,100%,Croatia,13.0,t +17817,100%,Croatia,13.0,t +13838,100%,Montserrat,10.0,f +11760,100%,Puerto Rico,2.0,f +17817,100%,Croatia,13.0,t +17817,100%,Croatia,13.0,t +13822,100%,Uganda,1.0,f +5151,,,1.0,f +33442,100%,Holy See (Vatican City State),2.0,f +22304,100%,,1.0,f +7832,100%,,1.0,f +41327,100%,Zimbabwe,2.0,t +22064,,Nicaragua,1.0,f +13838,100%,Montserrat,10.0,f +13838,100%,Montserrat,10.0,f +731,,Russian Federation,1.0,t +28023,100%,Reunion,1.0,t +9121,100%,Denmark,2.0,f +9121,100%,Denmark,2.0,f +44855,100%,Somalia,1.0,t +38223,100%,Nicaragua,1.0,f +43540,72%,Bosnia and Herzegovina,25.0,f +9734,,Togo,1.0,f +43540,72%,Bosnia and Herzegovina,25.0,f +32614,100%,Guinea,2.0,f +25039,,Saint Helena,7.0,t +16182,,,1.0,f +5676,,,1.0,t +843,,Uzbekistan,1.0,f +4726,90%,Micronesia,1.0,f +11104,100%,,3.0,t +33993,100%,Nicaragua,2.0,f +20947,,Faroe Islands,1.0,t +23700,100%,France,1.0,f +49103,80%,Rwanda,5.0,f +35574,100%,,1.0,f +485,80%,French Guiana,2.0,f +3102,100%,Marshall Islands,1.0,t +38928,59%,,2.0,t +45776,,Lebanon,2.0,t +23575,100%,Denmark,2.0,f +32276,100%,Kiribati,1.0,f +29005,100%,Peru,3.0,f +3871,,Turks and Caicos Islands,1.0,f +44597,,Chile,3.0,t +28602,100%,Mauritania,2.0,f +28042,100%,,1.0,t +19958,100%,Congo,40.0,t +37217,0%,Kiribati,4.0,f +38019,100%,Afghanistan,10.0,f +22721,100%,Ecuador,109.0,f +29774,,El Salvador,1.0,t +19958,100%,Congo,40.0,t +74,,,1.0,f +30845,100%,,1.0,f +36677,100%,Maldives,6.0,f +36911,100%,Portugal,2.0,f +24364,0%,,1.0,f +28003,,Palestinian Territory,1.0,f +2405,80%,Venezuela,1.0,t +33993,100%,Nicaragua,2.0,f +2553,100%,Turks and Caicos Islands,3.0,f +21760,100%,Brazil,1.0,f +37775,25%,Poland,4.0,t +48005,100%,Kiribati,1.0,f +14097,100%,,1.0,t +41512,100%,,1.0,f +37217,0%,Kiribati,4.0,f +21355,33%,,1.0,t +19169,,Sao Tome and Principe,1.0,t +1920,67%,Sao Tome and Principe,1.0,f +17358,100%,,3.0,f +48363,90%,,1.0,f +5037,100%,El Salvador,1.0,t +15697,80%,Finland,1.0,t +40502,,Turkmenistan,1.0,f +12036,100%,Gambia,1.0,f +2529,100%,,1.0,f +35058,100%,Tonga,4.0,t +17394,0%,Nicaragua,49.0,f +43798,100%,El Salvador,4.0,t +37217,0%,Kiribati,4.0,f +43661,100%,France,1.0,f +39595,80%,Uzbekistan,1.0,t +30659,100%,,1.0,t +3994,100%,Kenya,1.0,t +6850,100%,Faroe Islands,3.0,t +45320,,Estonia,2.0,f +47274,100%,Tonga,48.0,f +47319,,Lebanon,1.0,f +20113,,Tanzania,1.0,t +45099,,Mexico,1.0,f +37560,100%,Togo,2.0,f +39754,100%,Russian Federation,1.0,t +9112,100%,Papua New Guinea,1.0,f +2597,100%,Nicaragua,13.0,t +45420,,France,2.0,t +24772,90%,Denmark,10.0,f +43330,100%,French Guiana,1.0,f +23947,33%,Brazil,2.0,f +6529,,Kenya,2.0,f +8082,100%,Togo,2.0,f +40852,,,1.0,f +27810,,,1.0,t +26432,100%,Bosnia and Herzegovina,1.0,t +19895,,,1.0,f +31363,100%,Faroe Islands,1.0,t +9399,100%,,1.0,f +2102,67%,Gambia,2.0,f +28087,,Rwanda,1.0,f +32439,100%,,1.0,f +23341,,Croatia,2.0,f +11280,100%,Slovakia (Slovak Republic),10.0,f +18484,100%,Gambia,108.0,f +43008,98%,Costa Rica,5.0,f +1116,,Gambia,1.0,f +38201,100%,Russian Federation,1.0,f +2979,,Isle of Man,1.0,f +36329,,Zimbabwe,1.0,t +39489,,Kiribati,1.0,f +44937,100%,Puerto Rico,19.0,t +36557,,Indonesia,1.0,f +44937,100%,Puerto Rico,19.0,t +40414,95%,Somalia,4.0,f +29315,100%,Brazil,6.0,f +40364,100%,Tonga,25.0,f +44250,100%,United Kingdom,2.0,f +28346,,Jersey,3.0,t +20165,94%,Ukraine,30.0,f +36417,100%,Gambia,2.0,f +13785,100%,Kenya,1.0,f +19906,100%,Slovakia (Slovak Republic),1.0,f +34171,100%,Anguilla,6.0,f +4962,,,1.0,f +13872,,Faroe Islands,1.0,f +9862,100%,Russian Federation,1.0,t +47749,93%,Zimbabwe,1.0,f +46521,100%,Micronesia,1.0,f +12490,,French Guiana,1.0,f +27132,89%,,2.0,f +723,100%,Russian Federation,1.0,f +24067,,Mexico,3.0,t +49566,100%,Gambia,3.0,f +35707,,Madagascar,2.0,f +22216,20%,Peru,2.0,t +43152,100%,Nicaragua,82.0,t +30786,,Uzbekistan,29.0,f +41485,100%,,1.0,t +19830,,Sao Tome and Principe,2.0,f +44198,100%,Congo,1.0,t +13105,100%,Anguilla,2.0,f +28526,,Philippines,2.0,f +36209,100%,Chad,2.0,f +20715,,Isle of Man,1.0,f +40970,100%,Russian Federation,1.0,f +30814,0%,,1.0,f +46103,90%,Mauritania,2.0,f +14280,100%,,1.0,f +5360,,Niue,1.0,f +18910,100%,Mauritania,5.0,f +22813,90%,Uzbekistan,1.0,f +8092,100%,,1.0,f +40667,,Turkmenistan,4.0,f +4091,100%,Isle of Man,1.0,f +38606,,Bouvet Island (Bouvetoya),1.0,f +23738,100%,,1.0,t +2597,100%,Nicaragua,13.0,t +2597,100%,Nicaragua,13.0,t +8185,,Philippines,1.0,f +35058,100%,Tonga,4.0,t +25786,100%,Vanuatu,1.0,f +36229,89%,Togo,4.0,f +29414,100%,Jersey,1.0,t +27866,100%,Guinea,8.0,f +5625,,,1.0,t +14312,,Monaco,2.0,f +13765,100%,Gambia,2.0,f +19324,0%,Lebanon,1.0,t +18484,100%,Gambia,108.0,f +3243,100%,,2.0,f +41171,,Turkmenistan,1.0,f +32541,,,2.0,t +46119,,Reunion,1.0,f +34260,100%,United Kingdom,2.0,t +31515,,,1.0,f +17824,,Gambia,1.0,t +11567,100%,Niger,31.0,t +15228,,Malta,2.0,t +39555,100%,Marshall Islands,13.0,t +6659,100%,Isle of Man,2.0,t +42165,,Reunion,1.0,t +2665,100%,Faroe Islands,2.0,t +20334,99%,Niger,171.0,t +37840,100%,,1.0,f +9313,100%,Niue,1.0,f +11442,90%,Maldives,5.0,f +28828,100%,Isle of Man,198.0,t +19603,98%,Cuba,12.0,f +19603,98%,Cuba,12.0,f +47458,100%,,1.0,f +39404,,Mexico,7.0,f +44937,100%,Puerto Rico,19.0,t +37904,100%,,1.0,f +40408,,Niue,1.0,f +7655,98%,Gambia,7.0,f +23604,100%,Faroe Islands,1.0,f +43458,100%,Malawi,1.0,f +24872,,Malta,2.0,f +43337,100%,Russian Federation,1.0,f +21475,,French Guiana,2.0,t +22331,99%,Rwanda,50.0,t +19602,100%,Lithuania,24.0,f +27351,,Gambia,1.0,t +10042,,Indonesia,21.0,f +39628,100%,Guernsey,1.0,f +16023,,Zimbabwe,1.0,f +11442,90%,Maldives,5.0,f +9739,100%,Maldives,44.0,f +33465,100%,,1.0,f +42596,100%,Brazil,1.0,f +27883,100%,Cuba,11.0,f +36726,94%,Mexico,6.0,f +36209,100%,Chad,2.0,f +9739,100%,Maldives,44.0,f +23767,100%,Puerto Rico,2.0,t +9739,100%,Maldives,44.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +9739,100%,Maldives,44.0,f +29647,100%,Peru,1305.0,f +28940,,Libyan Arab Jamahiriya,1.0,f +17908,100%,Mexico,2.0,f +32328,100%,Malta,2.0,f +19887,,Micronesia,1.0,f +40479,100%,France,1.0,f +17943,,Uruguay,1.0,f +46088,,Ghana,15.0,f +30089,,United Kingdom,1.0,f +33875,,Canada,1.0,t +14784,25%,Portugal,1.0,f +41930,,Marshall Islands,1.0,f +20208,,Croatia,1.0,t +17416,88%,Turkmenistan,1.0,f +36550,,Togo,1.0,f +3691,,Djibouti,1.0,f +28346,,Jersey,3.0,t +36297,100%,Djibouti,1.0,f +33235,70%,France,2.0,t +7655,98%,Gambia,7.0,f +39354,,Lebanon,1.0,t +35058,100%,Tonga,4.0,t +43276,100%,,2.0,t +979,100%,Rwanda,1.0,f +26291,100%,Guinea,2.0,f +22250,100%,,4.0,f +18484,100%,Gambia,108.0,f +4769,,,1.0,f +44943,,Malta,1.0,t +11965,,Cocos (Keeling) Islands,2.0,f +42646,33%,Rwanda,4.0,f +35751,,Isle of Man,2.0,t +7184,77%,Reunion,13.0,f +43570,,Denmark,1.0,f +39143,89%,,33.0,f +18836,100%,,1.0,f +32804,,,1.0,f +33235,70%,France,2.0,t +9343,100%,Afghanistan,10.0,t +44350,,Montserrat,1.0,f +29964,90%,Chad,1.0,t +4217,,Kenya,52.0,f +3498,100%,Uzbekistan,1.0,f +26525,100%,Maldives,1.0,f +17693,100%,,1.0,t +26206,100%,Mexico,3.0,f +39404,,Mexico,7.0,f +20148,100%,Niue,1.0,t +28346,,Jersey,3.0,t +44937,100%,Puerto Rico,19.0,t +38322,100%,Sao Tome and Principe,1.0,f +32792,,Indonesia,12.0,f +39404,,Mexico,7.0,f +44937,100%,Puerto Rico,19.0,t +11442,90%,Maldives,5.0,f +44937,100%,Puerto Rico,19.0,t +26039,100%,,6.0,f +26039,100%,,6.0,f +26039,100%,,6.0,f +9739,100%,Maldives,44.0,f +26039,100%,,6.0,f +39404,,Mexico,7.0,f +23034,99%,Monaco,54.0,f +32372,90%,Ghana,5.0,f +26039,100%,,6.0,f +39404,,Mexico,7.0,f +9739,100%,Maldives,44.0,f +352,100%,Tanzania,1.0,f +9739,100%,Maldives,44.0,f +32935,,Ghana,40.0,f +9739,100%,Maldives,44.0,f +33545,100%,,16.0,f +23502,100%,Gambia,2.0,f +24198,25%,French Guiana,4.0,f +30216,98%,Maldives,34.0,f +35436,99%,Nicaragua,21.0,f +9239,100%,Cuba,17.0,f +30442,,Lithuania,1.0,f +7184,77%,Reunion,13.0,f +14186,,Palestinian Territory,2.0,f +49447,,Isle of Man,1.0,t +36546,86%,Ghana,3.0,f +3514,,Marshall Islands,1.0,f +29711,100%,United Kingdom,1.0,f +46142,,Croatia,1.0,f +8241,100%,Malta,2.0,f +35542,,,1.0,f +20521,,,7.0,t +3641,,,1.0,f +34720,,,1.0,t +15741,100%,Cuba,14.0,f +49864,0%,Gambia,1.0,f +8385,,French Guiana,1.0,f +33286,,Chad,1.0,t +7184,77%,Reunion,13.0,f +15847,,Uganda,13.0,f +42051,100%,Nicaragua,11.0,t +7184,77%,Reunion,13.0,f +9896,100%,Turkmenistan,2.0,f +31058,100%,Afghanistan,1.0,t +39891,100%,Russian Federation,1.0,f +23485,,,7.0,f +14260,,Greenland,1.0,f +23485,,,7.0,f +23485,,,7.0,f +1031,100%,Russian Federation,2.0,f +23485,,,7.0,f +23485,,,7.0,f +9915,,Brunei Darussalam,2.0,f +13838,100%,Montserrat,10.0,f +23485,,,7.0,f +13460,,Netherlands,1.0,f +8889,90%,,1.0,t +23485,,,7.0,f +44169,97%,Portugal,39.0,f +216,100%,El Salvador,45.0,t +34746,100%,,2.0,f +25445,70%,,2.0,f +46899,100%,France,1.0,f +15766,,,1.0,f +20420,0%,Jersey,1.0,t +13960,100%,,4.0,f +36229,89%,Togo,4.0,f +8183,,El Salvador,1.0,f +18955,90%,Denmark,3.0,f +47740,100%,,1.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29356,90%,Guinea,2.0,f +31776,100%,,1.0,f +33927,100%,Barbados,9.0,f +33881,100%,Djibouti,2.0,t +48425,100%,,3.0,f +32792,,Indonesia,12.0,f +48073,100%,,9.0,f +48073,100%,,9.0,f +48073,100%,,9.0,f +48073,100%,,9.0,f +48073,100%,,9.0,f +48073,100%,,9.0,f +48073,100%,,9.0,f +33638,100%,Sao Tome and Principe,3.0,f +48073,100%,,9.0,f +48073,100%,,9.0,f +33304,,Malta,1.0,f +3284,100%,Kiribati,4.0,f +41737,100%,Russian Federation,1.0,f +3790,100%,Netherlands,16.0,f +24207,100%,Pakistan,3.0,f +35436,99%,Nicaragua,21.0,f +23469,100%,Nicaragua,116.0,f +8289,93%,,1.0,f +35436,99%,Nicaragua,21.0,f +22547,100%,Tonga,1.0,f +23469,100%,Nicaragua,116.0,f +11896,,Sao Tome and Principe,1.0,t +23469,100%,Nicaragua,116.0,f +6984,100%,Suriname,9.0,f +23469,100%,Nicaragua,116.0,f +34367,100%,Tanzania,2.0,f +23469,100%,Nicaragua,116.0,f +22251,100%,Gambia,11.0,f +32935,,Ghana,40.0,f +40072,100%,,1.0,f +22446,90%,Russian Federation,1.0,t +10793,,Holy See (Vatican City State),1.0,f +22590,100%,Sao Tome and Principe,1.0,f +14440,70%,Afghanistan,1.0,t +14575,,,1.0,f +37566,100%,Indonesia,4.0,f +22419,,United Kingdom,1.0,f +47557,,Tanzania,1.0,t +9739,100%,Maldives,44.0,f +28071,100%,Cape Verde,4.0,t +9739,100%,Maldives,44.0,f +46664,100%,Croatia,2.0,t +37566,100%,Indonesia,4.0,f +12214,100%,Monaco,1.0,t +9739,100%,Maldives,44.0,f +41777,0%,Peru,1.0,f +9739,100%,Maldives,44.0,f +48760,98%,Ghana,24.0,f +9739,100%,Maldives,44.0,f +20657,,Cuba,2.0,f +26390,98%,Zimbabwe,5.0,f +9739,100%,Maldives,44.0,f +25364,,Kiribati,1.0,f +9739,100%,Maldives,44.0,f +35436,99%,Nicaragua,21.0,f +33291,,Denmark,1.0,f +41996,86%,Togo,1.0,f +15847,,Uganda,13.0,f +24556,100%,Zimbabwe,1.0,t +42251,100%,Palestinian Territory,2.0,f +22761,,,1.0,f +33433,100%,Rwanda,9.0,f +29175,,Wallis and Futuna,1.0,f +31588,100%,Gambia,2.0,t +18733,,Guinea,1.0,f +31588,100%,Gambia,2.0,t +13838,100%,Montserrat,10.0,f +18528,96%,Anguilla,1.0,f +5297,,Guinea,1.0,f +41947,,Guernsey,1.0,f +27575,,,1.0,f +18710,,Costa Rica,1.0,f +11397,,,1.0,f +42328,93%,Russian Federation,14.0,f +25723,100%,Vietnam,3.0,t +32203,100%,Barbados,176.0,f +45498,100%,Indonesia,4.0,t +22308,100%,Kiribati,1.0,f +34763,100%,Russian Federation,4.0,f +30356,100%,Uganda,3.0,t +41385,,,1.0,t +19252,,,1.0,f +3942,100%,Svalbard & Jan Mayen Islands,1.0,f +32489,100%,Uganda,1.0,f +14186,,Palestinian Territory,2.0,f +9278,100%,Netherlands,10.0,f +37885,100%,United Kingdom,1.0,f +36299,100%,Rwanda,13.0,t +36299,100%,Rwanda,13.0,t +9739,100%,Maldives,44.0,f +26227,100%,Guinea,1.0,f +24673,0%,Indonesia,1.0,t +26873,,Marshall Islands,1.0,f +11255,93%,Suriname,41.0,f +26050,0%,Palestinian Territory,1.0,f +9739,100%,Maldives,44.0,f +22414,90%,,1.0,f +14531,100%,Tonga,3.0,f +27289,99%,Reunion,12.0,t +35440,100%,,3.0,f +24483,,,2.0,f +14514,,China,80.0,t +4676,,Lebanon,1.0,f +16372,100%,Saint Helena,3.0,f +6382,100%,,3.0,f +9739,100%,Maldives,44.0,f +9739,100%,Maldives,44.0,f +40689,100%,Cuba,23.0,f +49566,100%,Gambia,3.0,f +9739,100%,Maldives,44.0,f +40733,,French Guiana,1.0,f +49487,99%,Marshall Islands,6.0,f +9739,100%,Maldives,44.0,f +23372,100%,Niger,5.0,t +39952,100%,Tonga,21.0,f +16372,100%,Saint Helena,3.0,f +40260,100%,,1.0,f +25888,100%,Vanuatu,6.0,f +9648,,,1.0,f +29746,96%,Tonga,5.0,f +32096,100%,Gibraltar,2.0,t +25888,100%,Vanuatu,6.0,f +23840,,Guinea,1.0,f +20189,100%,Niger,4.0,f +41062,,Chile,1.0,t +6945,100%,Cuba,8.0,f +19605,50%,Gambia,1.0,f +2965,100%,Togo,1.0,f +10345,100%,,2.0,f +15187,,United Kingdom,1.0,t +7163,100%,Netherlands Antilles,1.0,f +49996,,Sao Tome and Principe,2.0,f +27289,99%,Reunion,12.0,t +44949,100%,El Salvador,1.0,f +22484,,Faroe Islands,1.0,f +14722,,Guinea,1.0,f +18275,90%,,2.0,t +33169,,Sao Tome and Principe,1.0,f +6894,80%,Estonia,47.0,t +25888,100%,Vanuatu,6.0,f +33307,,France,1.0,f +26039,100%,,6.0,f +25888,100%,Vanuatu,6.0,f +20165,94%,Ukraine,30.0,f +9739,100%,Maldives,44.0,f +9739,100%,Maldives,44.0,f +9739,100%,Maldives,44.0,f +18604,100%,Kiribati,1.0,t +4854,100%,Monaco,1.0,f +22903,,El Salvador,1.0,t +9739,100%,Maldives,44.0,f +15599,,Ecuador,1.0,f +48455,89%,Uzbekistan,20.0,t +20334,99%,Niger,171.0,t +29413,,Guernsey,1.0,t +35879,100%,Cape Verde,2.0,f +14757,100%,United Kingdom,2.0,t +10920,100%,Kenya,2.0,t +20179,100%,Sao Tome and Principe,1.0,t +13364,91%,Netherlands,21.0,f +47613,100%,Denmark,2.0,t +3387,100%,Gambia,2.0,f +14622,,Isle of Man,1.0,t +13364,91%,Netherlands,21.0,f +34918,,Kiribati,1.0,t +25039,,Saint Helena,7.0,t +9739,100%,Maldives,44.0,f +16082,100%,Sao Tome and Principe,2.0,f +14626,,Niue,1.0,f +1124,100%,Jersey,2.0,f +4837,100%,Christmas Island,1.0,t +9510,100%,Chile,1.0,f +31522,97%,Niger,5.0,t +35839,,Russian Federation,2.0,f +541,93%,Marshall Islands,17.0,f +34762,100%,Isle of Man,3.0,t +23769,100%,Denmark,2.0,f +1820,100%,El Salvador,2.0,f +20072,,Jersey,1.0,f +10453,100%,,1.0,f +11551,,,3.0,f +23104,,Malta,1.0,t +11651,100%,Saint Pierre and Miquelon,2.0,f +36806,,El Salvador,1.0,f +9739,100%,Maldives,44.0,f +27427,100%,Marshall Islands,1.0,f +9739,100%,Maldives,44.0,f +6894,80%,Estonia,47.0,t +9739,100%,Maldives,44.0,f +9739,100%,Maldives,44.0,f +9739,100%,Maldives,44.0,f +13541,100%,,2.0,t +8549,100%,Lebanon,1.0,t +9739,100%,Maldives,44.0,f +48772,100%,Zimbabwe,2.0,t +31596,100%,French Guiana,1.0,t +39714,,,1.0,t +32007,80%,El Salvador,2.0,f +9739,100%,Maldives,44.0,f +40667,,Turkmenistan,4.0,f +9739,100%,Maldives,44.0,f +9739,100%,Maldives,44.0,f +11333,60%,Russian Federation,1.0,t +35272,,Guinea,1.0,f +9739,100%,Maldives,44.0,f +8831,,,3.0,f +9739,100%,Maldives,44.0,f +48068,100%,,4.0,f +3429,90%,,2.0,f +13801,100%,Afghanistan,1.0,f +40889,100%,Guinea,3.0,f +49340,,Cape Verde,1.0,f +21657,100%,Venezuela,2.0,t +541,93%,Marshall Islands,17.0,f +17905,,Papua New Guinea,1.0,f +20503,,China,2.0,f +23858,100%,Monaco,1.0,t +22933,100%,Zimbabwe,4.0,f +22677,,,1.0,f +22816,100%,Croatia,1.0,f +15831,100%,Nicaragua,1.0,f +44966,100%,Guinea,21.0,f +23849,100%,Zimbabwe,1.0,f +32661,,,3.0,t +26409,100%,Lebanon,1.0,t +45233,50%,Slovakia (Slovak Republic),1.0,f +19327,90%,Mauritania,1.0,f +43615,100%,,1.0,f +19502,,,1.0,f +9739,100%,Maldives,44.0,f +9739,100%,Maldives,44.0,f +27856,100%,United Kingdom,1.0,f +16520,100%,Marshall Islands,22.0,f +9739,100%,Maldives,44.0,f +34613,,France,1.0,f +9739,100%,Maldives,44.0,f +9739,100%,Maldives,44.0,f +12464,,Chile,5.0,t +43740,67%,,1.0,t +28979,20%,,2.0,f +9314,100%,Marshall Islands,2.0,f +46963,,Jersey,1.0,f +15985,67%,Somalia,1.0,f +9739,100%,Maldives,44.0,f +21593,75%,Uzbekistan,1.0,t +42667,50%,Niue,1.0,f +12182,100%,Togo,1.0,t +4218,100%,,1.0,t +2612,94%,Cuba,1.0,f +12493,70%,Sao Tome and Principe,4.0,t +1368,,,1.0,f +48584,,Zimbabwe,2.0,t +40371,100%,Sao Tome and Principe,1.0,f +35639,100%,United Kingdom,1.0,t +34877,,,2.0,f +49076,97%,Kenya,12.0,t +20262,,Marshall Islands,1.0,f +34120,100%,French Guiana,3.0,t +45246,100%,Russian Federation,2.0,f +21628,100%,Estonia,1.0,f +17262,100%,Slovakia (Slovak Republic),1.0,f +1022,100%,,1.0,f +48418,98%,Bosnia and Herzegovina,30.0,f +4217,,Kenya,52.0,f +44902,,Micronesia,1.0,f +36019,100%,Niue,1.0,f +43240,,,1.0,f +47039,0%,Christmas Island,1.0,f +7894,100%,Ukraine,10.0,f +166,50%,,1.0,f +28828,100%,Isle of Man,198.0,t +9341,100%,Russian Federation,1.0,f +26057,100%,,1.0,f +40364,100%,Tonga,25.0,f +29662,100%,Mauritania,1.0,f +49890,100%,,1.0,f +34386,,Malta,1.0,f +46802,,,1.0,f +16251,100%,Montserrat,1.0,t +30470,,Niger,1.0,f +37646,100%,Estonia,60.0,f +48409,,Estonia,60.0,t +15137,100%,Marshall Islands,10.0,t +40364,100%,Tonga,25.0,f +8197,,,1.0,f +11927,,Guinea,1.0,f +16424,90%,Micronesia,1.0,t +28828,100%,Isle of Man,198.0,t +24033,100%,Uganda,45.0,f +22357,100%,Reunion,1.0,f +4566,100%,French Guiana,1.0,f +34042,100%,Marshall Islands,37.0,f +38701,40%,Niger,27.0,f +46717,,Faroe Islands,2.0,t +49996,,Sao Tome and Principe,2.0,f +18933,75%,Venezuela,10.0,f +35483,80%,Reunion,6.0,f +39113,100%,Senegal,2.0,f +47227,100%,Papua New Guinea,2.0,f +40064,100%,Montserrat,1.0,f +5794,,Christmas Island,1.0,f +11261,100%,Russian Federation,1.0,f +20165,94%,Ukraine,30.0,f +19128,100%,Uzbekistan,12.0,t +43329,50%,Togo,1.0,f +19019,97%,Nicaragua,1484.0,f +47227,100%,Papua New Guinea,2.0,f +31302,80%,,1.0,f +16643,100%,,4.0,f +16643,100%,,4.0,f +16643,100%,,4.0,f +16643,100%,,4.0,f +38239,100%,Nicaragua,2.0,t +8375,67%,,2.0,f +6863,,Niue,1.0,f +32058,100%,Niue,1.0,f +16468,,Greenland,1.0,f +19019,97%,Nicaragua,1484.0,f +1924,,Russian Federation,2.0,f +32038,100%,Indonesia,35.0,f +36300,100%,Malta,1.0,f +24071,100%,Indonesia,22.0,f +33513,100%,Russian Federation,1.0,t +19019,97%,Nicaragua,1484.0,f +49076,97%,Kenya,12.0,t +13054,,Uganda,1.0,t +28830,100%,Lithuania,2.0,f +39905,100%,Bosnia and Herzegovina,3.0,f +14145,,Cuba,1.0,f +18516,100%,Congo,3.0,t +33433,100%,Rwanda,9.0,f +3311,100%,Brunei Darussalam,2.0,f +41,100%,Portugal,2.0,f +39807,50%,Ecuador,1.0,f +25687,100%,Anguilla,17.0,f +45696,100%,Faroe Islands,2.0,t +13776,100%,Lebanon,1.0,f +871,75%,,3.0,f +34042,100%,Marshall Islands,37.0,f +9656,,Denmark,1.0,f +8733,100%,Tonga,4.0,t +104,,,1.0,f +1268,100%,Andorra,1.0,f +22331,99%,Rwanda,50.0,t +22331,99%,Rwanda,50.0,t +22331,99%,Rwanda,50.0,t +22331,99%,Rwanda,50.0,t +22331,99%,Rwanda,50.0,t +2496,,Papua New Guinea,1.0,f +22331,99%,Rwanda,50.0,t +232,100%,El Salvador,1.0,f +4217,,Kenya,52.0,f +38259,,,2.0,f +7795,100%,,1.0,f +32203,100%,Barbados,176.0,f +32935,,Ghana,40.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +1310,83%,Barbados,5.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +19174,,French Guiana,2.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +23436,100%,Zimbabwe,2.0,f +7056,100%,,2.0,t +27768,65%,Kiribati,15.0,t +18810,100%,Lebanon,1.0,t +34384,100%,Guinea,1.0,f +27794,,Uzbekistan,1.0,f +15137,100%,Marshall Islands,10.0,t +38259,,,2.0,f +12228,,Gambia,1.0,f +41725,100%,,2.0,f +32203,100%,Barbados,176.0,f +31446,100%,Faroe Islands,9.0,f +45440,,Niue,2.0,t +5090,100%,Maldives,1.0,f +15399,,,1.0,f +27768,65%,Kiribati,15.0,t +29688,100%,French Guiana,1.0,t +29603,,Croatia,1.0,t +44344,100%,,2.0,f +32203,100%,Barbados,176.0,f +27507,100%,Lebanon,2.0,f +5943,100%,Russian Federation,1.0,f +17336,100%,Zimbabwe,1.0,f +16980,,Chile,2.0,f +1684,,Philippines,1.0,f +33471,100%,France,1.0,f +41618,100%,Turkmenistan,1.0,f +19209,,Brazil,1.0,f +8341,100%,Costa Rica,2.0,f +17759,100%,Chad,2.0,f +44511,100%,Bouvet Island (Bouvetoya),4.0,f +43735,,,1.0,f +40864,,,1.0,f +39118,,Denmark,1.0,f +27749,100%,France,2.0,f +44189,,Cocos (Keeling) Islands,2.0,f +15466,100%,Senegal,4.0,f +38582,100%,,7.0,f +12679,90%,,2.0,f +12679,90%,,2.0,f +22147,80%,,2.0,f +19914,,,2.0,f +15466,100%,Senegal,4.0,f +11287,,Lebanon,1.0,t +5895,,,1.0,t +23410,100%,French Guiana,2.0,f +39525,,,1.0,f +8912,,Lebanon,4.0,f +17854,100%,,4.0,f +15267,100%,Sao Tome and Principe,2.0,t +38890,100%,Uruguay,2.0,f +22793,,,1.0,f +40347,,Guinea,1.0,f +8430,,Peru,7.0,t +24248,,Papua New Guinea,1.0,f +32203,100%,Barbados,176.0,f +3378,,Maldives,1.0,f +18791,100%,Zimbabwe,8.0,t +7313,,,1.0,f +16116,50%,,1.0,f +14514,,China,80.0,t +43316,100%,Indonesia,23.0,f +40155,100%,Tonga,4.0,f +27289,99%,Reunion,12.0,t +21724,,Sao Tome and Principe,3.0,t +41799,50%,Maldives,7.0,f +27289,99%,Reunion,12.0,t +27289,99%,Reunion,12.0,t +30396,86%,Philippines,1.0,f +27166,,Nicaragua,1.0,f +49132,,Jersey,1.0,t +48503,90%,Sao Tome and Principe,5.0,t +30963,100%,Kiribati,1.0,f +27289,99%,Reunion,12.0,t +32203,100%,Barbados,176.0,f +26009,100%,Uzbekistan,1.0,f +45346,100%,Russian Federation,1.0,f +37663,,Lebanon,1.0,f +41893,100%,,2.0,f +36963,100%,France,1.0,f +120,100%,Cuba,2.0,f +30786,,Uzbekistan,29.0,f +45138,79%,Barbados,14.0,f +43152,100%,Nicaragua,82.0,t +40068,100%,Marshall Islands,2.0,f +45183,,,1.0,f +10871,100%,Libyan Arab Jamahiriya,1.0,f +2719,,Venezuela,1.0,t +33648,,Malawi,2.0,f +17224,100%,Ecuador,1.0,f +43491,100%,Uzbekistan,1.0,f +41359,100%,Micronesia,6.0,f +912,100%,Monaco,1.0,f +17197,100%,Bosnia and Herzegovina,1.0,f +48246,,,1.0,f +48954,100%,Montserrat,8.0,t +19097,100%,Russian Federation,2.0,f +34562,99%,Tonga,9.0,f +21105,100%,Indonesia,2.0,t +35135,100%,Niue,1.0,f +5878,100%,,2.0,t +17801,80%,Mauritania,2.0,t +5878,100%,,2.0,t +37145,50%,,1.0,f +35855,,Sao Tome and Principe,3.0,f +39642,,,2.0,f +15155,100%,,3.0,t +8463,,French Guiana,1.0,f +18829,100%,Indonesia,4.0,t +8375,67%,,2.0,f +3389,100%,Estonia,13.0,f +16796,,Faroe Islands,2.0,t +13070,100%,Fiji,45.0,f +10685,100%,Guinea,3.0,f +7058,100%,Isle of Man,2.0,f +35413,0%,Zimbabwe,1.0,f +11068,93%,Maldives,1.0,f +47256,50%,Marshall Islands,1.0,f +12477,,Guinea,1.0,f +24147,100%,Kenya,2.0,f +25301,100%,,2.0,f +31131,,Denmark,1.0,f +30221,50%,Vietnam,5.0,f +1108,100%,Lebanon,5.0,f +8384,,,1.0,t +34562,99%,Tonga,9.0,f +47965,,Guinea,1.0,f +34562,99%,Tonga,9.0,f +34562,99%,Tonga,9.0,f +34562,99%,Tonga,9.0,f +34562,99%,Tonga,9.0,f +25461,90%,Sao Tome and Principe,2.0,f +30786,,Uzbekistan,29.0,f +34562,99%,Tonga,9.0,f +24065,100%,Maldives,12.0,f +25021,100%,Palestinian Territory,2.0,f +32676,100%,China,34.0,f +24065,100%,Maldives,12.0,f +32038,100%,Indonesia,35.0,f +39715,100%,Guinea,2.0,f +24065,100%,Maldives,12.0,f +34562,99%,Tonga,9.0,f +11510,,Montserrat,11.0,f +22125,100%,Lebanon,1.0,t +41799,50%,Maldives,7.0,f +18484,100%,Gambia,108.0,f +38675,100%,Slovakia (Slovak Republic),16.0,t +40634,,Niue,1.0,f +11744,100%,Kenya,4.0,f +27768,65%,Kiribati,15.0,t +29331,100%,Bosnia and Herzegovina,1.0,f +24095,,Russian Federation,1.0,t +34025,,Nicaragua,6.0,f +24065,100%,Maldives,12.0,f +18933,75%,Venezuela,10.0,f +41799,50%,Maldives,7.0,f +28439,100%,Svalbard & Jan Mayen Islands,1.0,f +19720,50%,,1.0,f +24026,98%,Cape Verde,69.0,t +9792,33%,Maldives,1.0,f +16489,100%,Russian Federation,42.0,t +37888,89%,Niger,79.0,f +20587,100%,Brazil,1.0,f +37888,89%,Niger,79.0,f +37888,89%,Niger,79.0,f +37888,89%,Niger,79.0,f +850,,Zimbabwe,1.0,f +35698,,Indonesia,1.0,f +37888,89%,Niger,79.0,f +37888,89%,Niger,79.0,f +37888,89%,Niger,79.0,f +37888,89%,Niger,79.0,f +3913,100%,Reunion,15.0,f +26373,100%,Lithuania,1.0,f +29613,,Niue,1.0,f +3668,100%,Uzbekistan,1.0,f +46505,100%,Afghanistan,2.0,f +29542,100%,,1.0,t +4330,94%,Ukraine,60.0,t +19974,100%,Ukraine,3.0,f +25787,,Mauritania,1.0,t +22821,100%,Gambia,1.0,f +4330,94%,Ukraine,60.0,t +5728,,Faroe Islands,1.0,t +45490,95%,Barbados,6.0,f +9390,100%,Peru,1.0,f +12715,100%,Estonia,29.0,f +4330,94%,Ukraine,60.0,t +13786,,,1.0,f +32550,,,1.0,f +26928,100%,,4.0,f +36327,100%,Guinea,5.0,t +29382,100%,Ghana,4.0,f +35868,96%,Barbados,4.0,f +30184,100%,Zimbabwe,2.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +46070,100%,Mauritania,1.0,f +9516,99%,Pakistan,45.0,t +24012,100%,,2.0,t +9147,100%,,4.0,f +2914,91%,Gibraltar,2.0,f +41681,90%,Malawi,2.0,t +37566,100%,Indonesia,4.0,f +24065,100%,Maldives,12.0,f +28015,100%,Maldives,3.0,f +38161,100%,Bosnia and Herzegovina,1.0,f +2161,44%,Rwanda,8.0,f +13781,100%,Tonga,2.0,f +27289,99%,Reunion,12.0,t +4893,100%,Russian Federation,2.0,f +2161,44%,Rwanda,8.0,f +2161,44%,Rwanda,8.0,f +27289,99%,Reunion,12.0,t +48018,,,1.0,f +13090,0%,Marshall Islands,2.0,f +32792,,Indonesia,12.0,f +39109,77%,Ukraine,24.0,t +16863,97%,Turkmenistan,6.0,f +40941,94%,Russian Federation,4.0,t +13160,100%,Cape Verde,5.0,t +4446,100%,Uganda,58.0,f +20347,,Lao People's Democratic Republic,2.0,f +16863,97%,Turkmenistan,6.0,f +24065,100%,Maldives,12.0,f +32935,,Ghana,40.0,f +24065,100%,Maldives,12.0,f +46949,100%,Tunisia,4.0,f +24065,100%,Maldives,12.0,f +24065,100%,Maldives,12.0,f +24065,100%,Maldives,12.0,f +24065,100%,Maldives,12.0,f +16863,97%,Turkmenistan,6.0,f +46107,,Zimbabwe,1.0,f +16863,97%,Turkmenistan,6.0,f +26215,100%,Croatia,1.0,f +16863,97%,Turkmenistan,6.0,f +5185,0%,Gambia,12.0,f +16863,97%,Turkmenistan,6.0,f +5185,0%,Gambia,12.0,f +16342,,Marshall Islands,6.0,t +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +49603,,,1.0,t +3543,100%,Slovakia (Slovak Republic),4.0,t +4330,94%,Ukraine,60.0,t +4330,94%,Ukraine,60.0,t +4330,94%,Ukraine,60.0,t +4330,94%,Ukraine,60.0,t +24544,100%,Monaco,1.0,t +39557,,Faroe Islands,1.0,f +32794,,,1.0,f +16059,,,1.0,f +29119,100%,Nicaragua,2.0,f +7805,67%,Isle of Man,2.0,f +7805,67%,Isle of Man,2.0,f +5826,100%,Zimbabwe,1.0,f +5173,100%,El Salvador,2.0,f +44169,97%,Portugal,39.0,f +10400,100%,Paraguay,4.0,t +3156,,,1.0,f +3571,100%,Bouvet Island (Bouvetoya),3.0,t +26499,100%,Russian Federation,1.0,t +22346,100%,Rwanda,1.0,f +43237,40%,Montserrat,24.0,f +39633,,,1.0,t +34183,25%,,1.0,f +11577,100%,Equatorial Guinea,9.0,t +25518,100%,France,1.0,f +18700,100%,,1.0,f +23707,90%,,1.0,f +15078,,Vietnam,8.0,f +20562,100%,Jersey,1.0,t +13451,100%,,3.0,f +41210,100%,,1.0,f +49989,100%,,1.0,f +3123,100%,Mauritania,1.0,f +45618,,French Polynesia,1.0,f +44593,83%,Gambia,1.0,f +23836,100%,,2.0,f +9883,,Faroe Islands,1.0,t +46332,100%,Isle of Man,1.0,f +33242,100%,Uzbekistan,3.0,t +11613,,,1.0,t +35456,100%,Denmark,2.0,f +20334,99%,Niger,171.0,t +49604,,Afghanistan,2.0,t +33775,,French Guiana,1.0,f +16554,,Maldives,3.0,t +27637,,Kiribati,1.0,f +21038,100%,Zimbabwe,1.0,f +46918,100%,Sao Tome and Principe,5.0,f +23018,,Ukraine,1.0,f +21151,100%,Portugal,5.0,f +15415,,Montserrat,1.0,f +28589,100%,Bosnia and Herzegovina,5.0,f +20914,,Russian Federation,1.0,f +40700,,Anguilla,2.0,f +22458,0%,,1.0,f +43540,72%,Bosnia and Herzegovina,25.0,f +15189,79%,China,21.0,f +18877,100%,Isle of Man,3.0,t +12862,100%,United Kingdom,1.0,f +35023,100%,,3.0,f +6430,100%,Niue,2.0,t +41852,,,1.0,f +45244,100%,Niger,1.0,f +43482,50%,Bouvet Island (Bouvetoya),1.0,f +32802,100%,Gibraltar,1.0,f +37494,,Slovakia (Slovak Republic),1.0,t +25661,,Micronesia,1.0,f +39921,100%,Barbados,2.0,t +47919,100%,Lithuania,1.0,f +2869,,Bouvet Island (Bouvetoya),1.0,f +24332,100%,Mauritania,2.0,t +9686,,United Kingdom,1.0,t +26338,100%,Barbados,6.0,f +41748,100%,,2.0,f +26338,100%,Barbados,6.0,f +17707,100%,French Guiana,1.0,t +42991,100%,,1.0,f +13637,60%,,5.0,t +23497,80%,Gambia,3.0,f +19019,97%,Nicaragua,1484.0,f +40667,,Turkmenistan,4.0,f +47610,100%,Uzbekistan,10.0,f +40667,,Turkmenistan,4.0,f +23507,,Wallis and Futuna,1.0,f +43493,90%,Reunion,1.0,f +31446,100%,Faroe Islands,9.0,f +20039,75%,Jersey,2.0,f +29257,,Iraq,2.0,t +42983,100%,Costa Rica,2.0,t +14470,100%,Nicaragua,1.0,f +38264,88%,Russian Federation,4.0,f +4393,,Chad,1.0,f +33454,100%,Tonga,7.0,f +10601,100%,,1.0,f +33454,100%,Tonga,7.0,f +7184,77%,Reunion,13.0,f +48751,100%,Philippines,2.0,f +48251,97%,Zimbabwe,6.0,f +48251,97%,Zimbabwe,6.0,f +43540,72%,Bosnia and Herzegovina,25.0,f +31677,100%,Jersey,1.0,f +34401,50%,Micronesia,4.0,f +27929,100%,Barbados,1.0,f +41776,60%,,1.0,f +2291,100%,Zimbabwe,5.0,t +31718,100%,France,6.0,f +32464,,Bouvet Island (Bouvetoya),1.0,f +6495,89%,Tonga,34.0,f +39618,100%,Netherlands,1.0,t +6191,100%,Uzbekistan,2.0,t +6894,80%,Estonia,47.0,t +47775,100%,French Guiana,6.0,f +3410,,Philippines,1.0,t +20553,83%,Barbados,4.0,f +4319,100%,Uganda,6.0,f +47775,100%,French Guiana,6.0,f +4319,100%,Uganda,6.0,f +33873,100%,Turks and Caicos Islands,8.0,t +22728,75%,,2.0,f +14770,50%,Sao Tome and Principe,1.0,f +47692,100%,Mauritania,1.0,f +45167,,France,1.0,f +38310,100%,Russian Federation,1.0,f +33873,100%,Turks and Caicos Islands,8.0,t +1228,100%,,1.0,f +8854,100%,Costa Rica,1.0,f +8341,100%,Costa Rica,2.0,f +39317,100%,,2.0,f +45798,100%,,4.0,f +29792,,France,1.0,t +20657,,Cuba,2.0,f +32935,,Ghana,40.0,f +45798,100%,,4.0,f +11147,,,1.0,f +36060,100%,Niue,2.0,f +46480,100%,French Guiana,1.0,t +19019,97%,Nicaragua,1484.0,f +16573,100%,Cuba,2.0,f +45207,,Peru,1.0,f +25890,100%,,3.0,f +28672,100%,Suriname,1.0,f +46904,100%,Guernsey,1.0,f +1887,,Tonga,2.0,f +11336,100%,Brazil,2.0,f +19019,97%,Nicaragua,1484.0,f +36817,91%,Slovakia (Slovak Republic),6.0,f +19019,97%,Nicaragua,1484.0,f +39672,,Russian Federation,1.0,f +19019,97%,Nicaragua,1484.0,f +11661,0%,Guernsey,2.0,f +19019,97%,Nicaragua,1484.0,f +41955,100%,Zimbabwe,1.0,t +19019,97%,Nicaragua,1484.0,f +8374,100%,Svalbard & Jan Mayen Islands,1.0,t +8315,100%,France,2.0,t +40364,100%,Tonga,25.0,f +33948,100%,,2.0,f +47974,100%,Lebanon,2.0,f +43629,70%,Malawi,3.0,f +3881,,,1.0,f +38628,100%,Faroe Islands,1.0,t +40501,100%,Brazil,4.0,f +19019,97%,Nicaragua,1484.0,f +41630,100%,Kiribati,24.0,f +48016,70%,Senegal,1.0,f +45826,,,1.0,t +40501,100%,Brazil,4.0,f +452,100%,Ghana,3.0,f +40501,100%,Brazil,4.0,f +7967,100%,Venezuela,1.0,f +9731,100%,Gambia,4.0,f +36523,100%,Isle of Man,1.0,f +1476,100%,Faroe Islands,1.0,t +18072,99%,Montserrat,37.0,f +30786,,Uzbekistan,29.0,f +45274,,Tonga,1.0,f +48087,100%,,3.0,t +18774,100%,Uzbekistan,4.0,f +24064,100%,Niue,2.0,t +40,,,1.0,f +46244,100%,France,1.0,t +15558,,Lebanon,1.0,f +12948,71%,,2.0,f +12948,71%,,2.0,f +35304,100%,Tonga,12.0,t +31387,100%,Isle of Man,2.0,f +20298,100%,,2.0,f +20298,100%,,2.0,f +35227,100%,Guinea,2.0,f +34188,,Marshall Islands,1.0,f +42672,,Isle of Man,1.0,f +44304,100%,Zimbabwe,1.0,t +23530,100%,Niue,1.0,t +44049,100%,,2.0,f +13814,100%,Venezuela,1.0,f +18072,99%,Montserrat,37.0,f +39924,,Russian Federation,1.0,f +686,97%,Micronesia,7.0,t +42243,100%,Senegal,4.0,f +11913,100%,Gambia,5.0,f +38137,99%,Zimbabwe,16.0,f +46962,,Malawi,1.0,f +16919,,,1.0,f +28828,100%,Isle of Man,198.0,t +42286,94%,Vietnam,9.0,t +42202,0%,,1.0,f +37484,100%,Estonia,1.0,f +17402,,El Salvador,1.0,f +45104,100%,Nicaragua,1.0,f +36457,100%,Rwanda,4.0,f +39593,100%,El Salvador,2.0,f +7184,77%,Reunion,13.0,f +6431,100%,Sao Tome and Principe,1.0,f +7600,,,12.0,f +7600,,,12.0,f +7600,,,12.0,f +7600,,,12.0,f +7600,,,12.0,f +35680,,Bouvet Island (Bouvetoya),1.0,t +39631,,,1.0,f +8277,,American Samoa,1.0,f +3797,44%,Rwanda,1.0,t +7894,100%,Ukraine,10.0,f +19602,100%,Lithuania,24.0,f +33232,,Russian Federation,1.0,f +3876,,Marshall Islands,1.0,f +35456,100%,Denmark,2.0,f +16779,100%,,1.0,t +2383,,French Guiana,3.0,t +7600,,,12.0,f +590,,Guinea,2.0,t +45780,91%,Palestinian Territory,5.0,f +1810,100%,Lebanon,2.0,f +7600,,,12.0,f +7600,,,12.0,f +5173,100%,El Salvador,2.0,f +9163,,,1.0,t +43299,,,1.0,t +13364,91%,Netherlands,21.0,f +41014,100%,Netherlands,3.0,f +6498,100%,Micronesia,1.0,f +38532,90%,,6.0,f +18653,,,1.0,f +41630,100%,Kiribati,24.0,f +23548,94%,Fiji,7.0,f +23548,94%,Fiji,7.0,f +23548,94%,Fiji,7.0,f +6338,100%,Isle of Man,6.0,f +14506,,,1.0,f +11857,100%,Somalia,1.0,f +31636,,,1.0,f +6591,100%,Isle of Man,1.0,f +14514,,China,80.0,t +38047,90%,,2.0,f +29457,100%,Guinea,3.0,f +41630,100%,Kiribati,24.0,f +27141,,,1.0,t +19217,98%,Marshall Islands,46.0,f +21953,75%,Libyan Arab Jamahiriya,2.0,t +45895,,Niue,2.0,f +4464,90%,Faroe Islands,2.0,t +35545,100%,Isle of Man,2.0,f +7600,,,12.0,f +1061,100%,,1.0,f +30307,75%,El Salvador,1.0,f +7600,,,12.0,f +7600,,,12.0,f +7600,,,12.0,f +42243,100%,Senegal,4.0,f +44128,100%,,2.0,t +34042,100%,Marshall Islands,37.0,f +19091,95%,Cook Islands,18.0,t +9881,100%,Micronesia,2.0,t +41615,,,1.0,f +26308,70%,,2.0,f +26308,70%,,2.0,f +31456,,Canada,1.0,f +31198,100%,Andorra,1.0,t +24909,,Croatia,1.0,t +15715,100%,,1.0,f +22330,86%,Kiribati,1.0,f +5176,100%,Malawi,2.0,t +28514,100%,Jersey,1.0,t +8489,100%,Zimbabwe,2.0,f +4408,100%,France,2.0,f +39070,100%,,1.0,f +23520,100%,Mauritania,1.0,t +44069,100%,Guernsey,1.0,f +221,,Afghanistan,7.0,t +35829,,,1.0,f +5349,0%,Puerto Rico,1.0,f +41630,100%,Kiribati,24.0,f +42922,100%,Gibraltar,1.0,f +14592,100%,Nauru,1.0,f +46260,,Croatia,1.0,t +36617,100%,Russian Federation,1.0,f +44538,,,1.0,f +11125,100%,Nicaragua,12.0,t +39269,100%,Malta,1.0,f +49148,,French Guiana,1.0,f +40501,100%,Brazil,4.0,f +10063,,,1.0,f +47588,,Russian Federation,1.0,t +46971,100%,France,1.0,f +49525,,Estonia,4.0,f +43316,100%,Indonesia,23.0,f +2633,100%,Lebanon,1.0,t +27265,100%,Togo,2.0,t +2291,100%,Zimbabwe,5.0,t +41011,100%,Tanzania,1.0,t +7184,77%,Reunion,13.0,f +37888,89%,Niger,79.0,f +32384,100%,,1.0,f +37888,89%,Niger,79.0,f +37888,89%,Niger,79.0,f +37888,89%,Niger,79.0,f +37888,89%,Niger,79.0,f +37888,89%,Niger,79.0,f +48423,100%,Netherlands,1.0,f +40032,100%,El Salvador,16.0,f +47274,100%,Tonga,48.0,f +3416,100%,Malawi,1.0,t +45504,,Uganda,1.0,t +40032,100%,El Salvador,16.0,f +19214,100%,Senegal,55.0,f +43664,,Papua New Guinea,1.0,t +9363,95%,Ukraine,50.0,f +40032,100%,El Salvador,16.0,f +1080,70%,,2.0,f +25603,100%,,1.0,f +23798,100%,Marshall Islands,1.0,f +27473,100%,,2.0,f +6338,100%,Isle of Man,6.0,f +2058,50%,Guinea,1.0,t +11856,100%,Pakistan,1.0,f +6338,100%,Isle of Man,6.0,f +16667,100%,,1.0,f +19204,100%,Brazil,1.0,t +47665,,Kenya,4.0,t +3961,100%,Fiji,8.0,f +3961,100%,Fiji,8.0,f +38522,100%,Sao Tome and Principe,9.0,f +19390,,Nicaragua,1.0,f +18484,100%,Gambia,108.0,f +11569,,Turks and Caicos Islands,1.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +18955,90%,Denmark,3.0,f +16727,100%,Bosnia and Herzegovina,1.0,t +14522,,Gambia,2.0,t +36047,100%,,6.0,t +4380,,Micronesia,2.0,f +30900,,Sao Tome and Principe,1.0,f +26752,100%,United Kingdom,2.0,f +34235,100%,Mauritania,1.0,f +43152,100%,Nicaragua,82.0,t +91,,Reunion,1.0,f +47381,,Indonesia,3.0,f +38921,100%,Montserrat,1.0,f +5136,100%,Cape Verde,1.0,t +48857,100%,,24.0,f +38966,,,1.0,f +28089,100%,Niue,1.0,f +48857,100%,,24.0,f +48857,100%,,24.0,f +48857,100%,,24.0,f +48857,100%,,24.0,f +48857,100%,,24.0,f +4226,100%,Finland,2.0,t +48857,100%,,24.0,f +3482,100%,Marshall Islands,4.0,f +48857,100%,,24.0,f +26386,100%,Fiji,25.0,t +45371,100%,Rwanda,2.0,f +21504,,Zimbabwe,1.0,f +47988,,,1.0,f +40392,,Nicaragua,1.0,f +37319,100%,United Kingdom,1.0,f +5679,100%,Maldives,1.0,f +5367,100%,Uzbekistan,1.0,t +48857,100%,,24.0,f +48857,100%,,24.0,f +48857,100%,,24.0,f +18072,99%,Montserrat,37.0,f +33845,,Nauru,3.0,f +48857,100%,,24.0,f +48857,100%,,24.0,f +48857,100%,,24.0,f +48857,100%,,24.0,f +48857,100%,,24.0,f +18484,100%,Gambia,108.0,f +48857,100%,,24.0,f +48857,100%,,24.0,f +48857,100%,,24.0,f +48857,100%,,24.0,f +39345,,Russian Federation,1.0,f +48857,100%,,24.0,f +32203,100%,Barbados,176.0,f +16489,100%,Russian Federation,42.0,t +4028,100%,,3.0,t +46671,100%,,1.0,f +6277,100%,Estonia,6.0,f +20329,100%,Reunion,21.0,f +41359,100%,Micronesia,6.0,f +20334,99%,Niger,171.0,t +14999,20%,Slovakia (Slovak Republic),3.0,f +20334,99%,Niger,171.0,t +32203,100%,Barbados,176.0,f +13070,100%,Fiji,45.0,f +18484,100%,Gambia,108.0,f +24033,100%,Uganda,45.0,f +45910,,France,1.0,f +26761,100%,,3.0,f +48857,100%,,24.0,f +48857,100%,,24.0,f +48857,100%,,24.0,f +22634,100%,Gambia,3.0,f +18072,99%,Montserrat,37.0,f +23201,,,2.0,f +27719,89%,,4.0,f +27719,89%,,4.0,f +4253,100%,France,1.0,t +909,100%,Croatia,18.0,t +40689,100%,Cuba,23.0,f +15247,100%,Tunisia,1.0,f +18296,100%,,1.0,t +20790,,Kenya,1.0,f +3547,,Gambia,2.0,f +35722,,,1.0,f +38582,100%,,7.0,f +39835,100%,,5.0,t +40032,100%,El Salvador,16.0,f +46738,100%,,1.0,f +46301,100%,Gambia,1.0,f +28979,20%,,2.0,f +18738,95%,,2.0,t +15847,,Uganda,13.0,f +46000,100%,,1.0,f +28069,100%,Togo,4.0,f +43703,,Zimbabwe,6.0,f +3167,100%,Micronesia,3.0,f +27228,100%,Isle of Man,7.0,f +356,99%,Wallis and Futuna,32.0,t +40578,100%,,2.0,f +38582,100%,,7.0,f +36362,75%,Isle of Man,1.0,f +31839,100%,Mauritania,1.0,f +18484,100%,Gambia,108.0,f +17134,100%,Libyan Arab Jamahiriya,1.0,t +30786,,Uzbekistan,29.0,f +43703,,Zimbabwe,6.0,f +15127,100%,Russian Federation,1.0,f +45289,0%,Marshall Islands,1.0,f +46185,90%,El Salvador,1.0,f +40167,100%,,1.0,f +24104,,Kenya,1.0,f +221,,Afghanistan,7.0,t +43703,,Zimbabwe,6.0,f +12164,100%,Nicaragua,8.0,f +28738,100%,Nauru,1.0,f +39160,,Ghana,1.0,t +34521,,French Guiana,1.0,t +32729,90%,Indonesia,1.0,f +15652,,Maldives,1.0,f +34598,100%,French Guiana,2.0,t +4037,100%,Kiribati,11.0,f +43251,,Papua New Guinea,1.0,t +33013,100%,Turkmenistan,1.0,f +14869,,Jersey,1.0,t +11639,0%,Russian Federation,2.0,f +27283,0%,,1.0,t +14851,100%,Jersey,1.0,f +3528,100%,Niger,1.0,f +13577,90%,Brazil,2.0,f +42500,89%,Costa Rica,1.0,f +34006,100%,France,1.0,f +29647,100%,Peru,1305.0,f +45258,100%,Monaco,2.0,f +43703,,Zimbabwe,6.0,f +27365,30%,Uzbekistan,3.0,f +44852,100%,Kenya,1.0,f +15002,,,2.0,f +43703,,Zimbabwe,6.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +19128,100%,Uzbekistan,12.0,t +29647,100%,Peru,1305.0,f +43703,,Zimbabwe,6.0,f +13070,100%,Fiji,45.0,f +20928,,Denmark,1.0,f +12812,99%,Croatia,32.0,f +47302,,Netherlands,2.0,f +20416,100%,Monaco,1.0,f +12812,99%,Croatia,32.0,f +1202,43%,Indonesia,1.0,f +12812,99%,Croatia,32.0,f +1310,83%,Barbados,5.0,f +46377,100%,Denmark,1.0,t +13386,80%,Iran,4.0,t +39952,100%,Tonga,21.0,f +33345,100%,Kenya,2.0,f +7339,100%,Zimbabwe,1.0,f +1552,,,15.0,f +35533,100%,Guinea,1.0,f +22819,100%,Nauru,1.0,f +42467,100%,Turks and Caicos Islands,1.0,t +19836,100%,Chile,1.0,t +38832,97%,,15.0,f +43277,,Sao Tome and Principe,1.0,f +4692,100%,Isle of Man,3.0,t +1965,94%,,1.0,f +45376,100%,Denmark,1.0,f +45964,80%,Togo,2.0,f +10094,100%,Senegal,1.0,f +32792,,Indonesia,12.0,f +38457,100%,Gambia,1.0,t +481,94%,Solomon Islands,7.0,t +41183,,,1.0,f +25954,75%,Saint Helena,1.0,f +42947,,Lebanon,1.0,f +4305,100%,,2.0,f +25186,,Denmark,1.0,f +35531,100%,Dominica,3.0,t +28828,100%,Isle of Man,198.0,t +16140,100%,Uzbekistan,2.0,f +26071,,Mauritania,1.0,t +28828,100%,Isle of Man,198.0,t +24594,100%,Rwanda,14.0,f +3790,100%,Netherlands,16.0,f +11507,100%,Nicaragua,1.0,f +36611,71%,Maldives,14.0,f +39737,,Gambia,1.0,f +21240,94%,Niger,130.0,f +8322,,,1.0,f +39468,,Chile,2.0,t +12561,100%,Tunisia,11.0,t +28241,97%,Maldives,10.0,f +26355,,,1.0,f +4457,,Cuba,1.0,f +45735,100%,Malta,1.0,f +10552,100%,Togo,2.0,f +8355,87%,Togo,16.0,f +39045,,,1.0,t +28956,100%,Tonga,1.0,f +5053,,Djibouti,1.0,f +26891,100%,Malta,1.0,f +32773,90%,Niue,2.0,f +44614,100%,Slovenia,2.0,f +26163,100%,Zimbabwe,1.0,f +41937,,Nauru,1.0,t +36981,,Christmas Island,2.0,f +6894,80%,Estonia,47.0,t +5133,,Tonga,1.0,f +39835,100%,,5.0,t +47954,97%,Uzbekistan,3.0,f +2830,100%,Estonia,1.0,f +39531,,,1.0,f +4408,100%,France,2.0,f +9634,100%,Indonesia,1.0,f +29023,100%,Isle of Man,1.0,f +40627,83%,France,1.0,f +35221,100%,Turks and Caicos Islands,30.0,t +17882,,,1.0,f +21240,94%,Niger,130.0,f +33518,100%,France,1.0,f +21240,94%,Niger,130.0,f +21240,94%,Niger,130.0,f +21240,94%,Niger,130.0,f +21240,94%,Niger,130.0,f +21240,94%,Niger,130.0,f +21240,94%,Niger,130.0,f +21240,94%,Niger,130.0,f +44109,100%,United Kingdom,20.0,f +20200,,Zimbabwe,2.0,f +2805,100%,Maldives,1.0,f +25083,100%,Isle of Man,1.0,f +5501,,Marshall Islands,1.0,t +34831,100%,Denmark,2.0,f +20165,94%,Ukraine,30.0,f +49574,100%,,2.0,f +48731,100%,Malawi,1.0,f +27712,,,1.0,f +49666,100%,,1.0,t +9354,100%,Spain,12.0,f +24118,98%,Ghana,21.0,t +30989,100%,Niue,1.0,f +14508,,,1.0,t +14068,100%,Micronesia,1.0,f +34412,100%,,1.0,t +28092,100%,,1.0,f +30859,,Sao Tome and Principe,1.0,t +41094,67%,,1.0,f +6788,,Chile,1.0,f +18764,100%,,1.0,t +32161,100%,Nicaragua,5.0,t +20606,100%,Congo,6.0,t +23034,99%,Monaco,54.0,f +35453,95%,Ecuador,2.0,f +8014,,Mauritania,1.0,t +20263,99%,Maldives,35.0,t +14349,100%,Malta,3.0,f +12497,100%,,2.0,f +21240,94%,Niger,130.0,f +20263,99%,Maldives,35.0,t +21690,100%,Anguilla,5.0,t +23642,100%,Holy See (Vatican City State),5.0,f +20263,99%,Maldives,35.0,t +10884,,Croatia,1.0,t +44257,,Lebanon,1.0,t +46253,,Uzbekistan,1.0,t +34417,50%,,1.0,f +48885,100%,Russian Federation,1.0,f +11367,100%,Guernsey,1.0,f +15007,,France,1.0,f +26188,100%,Comoros,2.0,t +33581,100%,Svalbard & Jan Mayen Islands,2.0,f +12497,100%,,2.0,f +13425,100%,Nauru,1.0,f +6055,80%,Libyan Arab Jamahiriya,2.0,f +33593,,,1.0,f +14349,100%,Malta,3.0,f +14349,100%,Malta,3.0,f +14571,100%,,1.0,f +46340,100%,Denmark,3.0,t +102,100%,France,1.0,f +47763,78%,,1.0,f +48724,100%,Kiribati,1.0,f +1283,,Faroe Islands,2.0,f +34391,,,2.0,f +41702,100%,Anguilla,2.0,f +2404,,Barbados,3.0,t +43350,100%,Isle of Man,2.0,t +42656,100%,Kenya,1.0,f +15794,,Gambia,2.0,t +30852,100%,Netherlands,2.0,f +7431,100%,,2.0,f +13027,60%,Saint Helena,1.0,f +43496,100%,Montserrat,18.0,t +14514,,China,80.0,t +34402,79%,Reunion,28.0,f +29667,100%,Ireland,2.0,t +49642,,Guinea,1.0,f +3115,83%,Slovakia (Slovak Republic),17.0,t +32038,100%,Indonesia,35.0,f +17422,100%,,1.0,f +14514,,China,80.0,t +909,100%,Croatia,18.0,t +23430,100%,Reunion,16.0,f +24341,100%,,1.0,f +34022,50%,Togo,1.0,f +25763,92%,Micronesia,4.0,f +19091,95%,Cook Islands,18.0,t +34888,100%,Ecuador,1.0,f +1375,100%,Micronesia,5.0,f +13597,80%,,1.0,f +41856,100%,Maldives,13.0,t +14205,100%,Kenya,3.0,f +3552,0%,Kiribati,1.0,f +43321,100%,France,40.0,f +2365,100%,Vanuatu,2.0,f +43321,100%,France,40.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +43401,100%,,1.0,f +15069,100%,Montserrat,3.0,t +6312,100%,Kenya,1.0,f +7291,70%,Zimbabwe,1.0,t +8646,,,2.0,f +18484,100%,Gambia,108.0,f +22630,,Anguilla,2.0,f +33176,,Gambia,1.0,f +25133,100%,,2.0,t +8646,,,2.0,f +40883,,Reunion,1.0,f +6254,100%,,3.0,f +7245,50%,Afghanistan,1.0,f +628,,,1.0,f +14614,100%,Marshall Islands,1.0,t +15570,100%,France,6.0,f +39429,100%,Uzbekistan,1.0,f +26281,100%,Cape Verde,1.0,f +36540,100%,,33.0,t +909,100%,Croatia,18.0,t +7520,100%,Ukraine,15.0,t +15570,100%,France,6.0,f +38059,100%,,1.0,f +35868,96%,Barbados,4.0,f +12498,100%,Tonga,1.0,f +46737,,,1.0,t +40775,100%,,2.0,f +47274,100%,Tonga,48.0,f +39383,78%,France,3.0,t +30031,100%,Turks and Caicos Islands,2.0,t +48418,98%,Bosnia and Herzegovina,30.0,f +48418,98%,Bosnia and Herzegovina,30.0,f +21854,100%,Isle of Man,3.0,t +45797,80%,Kenya,1.0,f +40793,100%,,75.0,t +40793,100%,,75.0,t +40793,100%,,75.0,t +9274,50%,,1.0,f +46357,100%,,1.0,f +29780,,,1.0,t +27478,100%,,2.0,t +5406,100%,Gambia,3.0,f +27153,100%,Russian Federation,2.0,f +37604,100%,Russian Federation,1.0,t +8355,87%,Togo,16.0,f +47979,100%,Micronesia,1.0,f +48298,100%,Niue,1.0,f +7184,77%,Reunion,13.0,f +8355,87%,Togo,16.0,f +39795,,,1.0,t +11083,100%,Cape Verde,1.0,t +43011,100%,Wallis and Futuna,6.0,f +49850,100%,Niger,1.0,t +20671,100%,Guinea,3.0,f +43289,,Uzbekistan,8.0,f +48053,,Lebanon,1.0,f +7184,77%,Reunion,13.0,f +27597,100%,Portugal,7.0,t +30029,90%,El Salvador,8.0,f +20334,99%,Niger,171.0,t +16221,100%,El Salvador,2.0,f +5206,82%,Togo,2.0,f +7294,,Venezuela,1.0,f +32203,100%,Barbados,176.0,f +15940,100%,Croatia,4.0,t +11600,100%,Gibraltar,1.0,t +17435,,Monaco,1.0,f +38243,,,1.0,f +14248,100%,,4.0,f +14248,100%,,4.0,f +14248,100%,,4.0,f +14248,100%,,4.0,f +33420,100%,Libyan Arab Jamahiriya,1.0,f +49526,100%,Gambia,4.0,f +34458,90%,Kiribati,4.0,t +29876,,,1.0,t +36738,100%,Guinea,1.0,f +19372,100%,Chad,3.0,f +3616,100%,Cape Verde,14.0,t +27853,100%,Zimbabwe,2.0,f +9384,,Bosnia and Herzegovina,2.0,t +48136,,Vanuatu,2.0,t +34704,,Kiribati,1.0,f +30658,100%,United Kingdom,2.0,f +21908,100%,Niue,49.0,f +8799,,,1.0,f +48133,,Isle of Man,45.0,f +10686,86%,Tonga,21.0,f +4199,100%,,1.0,f +11307,100%,Monaco,2.0,t +34330,100%,French Guiana,1.0,t +22355,100%,Malta,1.0,f +26755,100%,Russian Federation,2.0,t +46973,100%,Malta,2.0,t +35221,100%,Turks and Caicos Islands,30.0,t +32038,100%,Indonesia,35.0,f +41856,100%,Maldives,13.0,t +22721,100%,Ecuador,109.0,f +27911,100%,Libyan Arab Jamahiriya,1.0,f +28778,,,1.0,f +41856,100%,Maldives,13.0,t +32203,100%,Barbados,176.0,f +25966,100%,Niue,2.0,f +41856,100%,Maldives,13.0,t +38532,90%,,6.0,f +41856,100%,Maldives,13.0,t +1007,,Lebanon,1.0,f +41856,100%,Maldives,13.0,t +48133,,Isle of Man,45.0,f +42505,,French Polynesia,1.0,f +44476,100%,Holy See (Vatican City State),1.0,f +40312,100%,France,1.0,f +41856,100%,Maldives,13.0,t +43695,100%,Malta,2.0,f +3445,,Maldives,1.0,f +25991,100%,Greenland,4.0,f +22207,,Niue,1.0,t +26386,100%,Fiji,25.0,t +3060,,Wallis and Futuna,1.0,f +4788,,Tonga,7.0,f +46692,,Nicaragua,1.0,f +13834,,Kiribati,9.0,f +14415,100%,Mexico,1.0,f +21210,64%,,1.0,f +11639,0%,Russian Federation,2.0,f +38877,,Faroe Islands,1.0,f +24118,98%,Ghana,21.0,t +41359,100%,Micronesia,6.0,f +48133,,Isle of Man,45.0,f +21268,0%,,2.0,f +12266,,Peru,2.0,f +19217,98%,Marshall Islands,46.0,f +4037,100%,Kiribati,11.0,f +40793,100%,,75.0,t +40793,100%,,75.0,t +26755,100%,Russian Federation,2.0,t +32617,,Guinea,1.0,t +44845,90%,Cape Verde,1.0,t +27849,,Bosnia and Herzegovina,3.0,f +14093,100%,Cape Verde,1.0,f +11993,,Isle of Man,1.0,f +22155,100%,Estonia,4.0,f +4297,100%,Kenya,4.0,t +42589,100%,Turkmenistan,1.0,f +27901,100%,Niue,1.0,t +21467,,Denmark,1.0,f +6133,100%,Anguilla,1.0,f +49025,,Zimbabwe,1.0,f +33999,,Cocos (Keeling) Islands,1.0,f +19748,100%,Maldives,3.0,f +39870,,Slovakia (Slovak Republic),21.0,t +13960,100%,,4.0,f +47146,,,1.0,f +3057,,,1.0,f +30526,100%,Canada,3.0,t +36025,100%,Djibouti,6.0,t +11712,95%,Monaco,4.0,f +25632,100%,Cuba,13.0,f +4759,,Barbados,1.0,f +6114,,Nauru,1.0,f +20491,,Mexico,1.0,t +48110,,Malawi,1.0,t +39143,89%,,33.0,f +43316,100%,Indonesia,23.0,f +28869,,Antarctica (the territory South of 60 deg S),172.0,f +33927,100%,Barbados,9.0,f +39959,71%,,2.0,t +17130,,Marshall Islands,1.0,f +20557,75%,,1.0,t +39143,89%,,33.0,f +3483,100%,Micronesia,4.0,t +33604,90%,Marshall Islands,8.0,t +20263,99%,Maldives,35.0,t +14233,,Malawi,3.0,t +13197,100%,France,3.0,f +30786,,Uzbekistan,29.0,f +33604,90%,Marshall Islands,8.0,t +8398,100%,Kenya,1.0,f +43316,100%,Indonesia,23.0,f +18077,100%,Sao Tome and Principe,139.0,f +20263,99%,Maldives,35.0,t +15546,,Micronesia,1.0,f +14514,,China,80.0,t +30355,100%,Barbados,3.0,t +20263,99%,Maldives,35.0,t +5365,100%,,3.0,f +28602,100%,Mauritania,2.0,f +42573,,Reunion,2.0,t +20263,99%,Maldives,35.0,t +18077,100%,Sao Tome and Principe,139.0,f +31168,100%,,1.0,t +18072,99%,Montserrat,37.0,f +10883,100%,Niger,8.0,t +28442,,Niue,2.0,f +15974,100%,,3.0,f +17627,100%,Guinea,2.0,f +31203,,Niue,1.0,f +29081,98%,Uzbekistan,18.0,f +12265,100%,Monaco,2.0,f +41635,100%,Iceland,5.0,f +40296,100%,Ukraine,1.0,f +7184,77%,Reunion,13.0,f +44533,100%,Afghanistan,5.0,f +17821,89%,Marshall Islands,1.0,f +41060,78%,Russian Federation,1.0,f +9802,,Indonesia,38.0,t +471,100%,Uzbekistan,1.0,f +38582,100%,,7.0,f +36206,86%,Russian Federation,10.0,f +47672,100%,,5.0,f +11255,93%,Suriname,41.0,f +18072,99%,Montserrat,37.0,f +4330,94%,Ukraine,60.0,t +38238,0%,Puerto Rico,1.0,f +5420,100%,Tonga,41.0,f +21487,100%,Tanzania,1.0,f +4289,100%,Micronesia,2.0,f +22016,100%,Zimbabwe,2.0,t +17515,100%,Philippines,5.0,f +29967,94%,Reunion,5.0,f +18072,99%,Montserrat,37.0,f +48117,98%,Ukraine,41.0,f +18484,100%,Gambia,108.0,f +44477,90%,Maldives,3.0,t +47672,100%,,5.0,f +5420,100%,Tonga,41.0,f +25966,100%,Niue,2.0,f +35483,80%,Reunion,6.0,f +23647,100%,Micronesia,5.0,f +27907,100%,Puerto Rico,21.0,f +9904,,Turkmenistan,1.0,t +12190,100%,Lebanon,1.0,f +18072,99%,Montserrat,37.0,f +36324,,Cape Verde,1.0,f +35483,80%,Reunion,6.0,f +35483,80%,Reunion,6.0,f +35340,100%,France,1.0,f +29647,100%,Peru,1305.0,f +46669,86%,Brazil,11.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +35483,80%,Reunion,6.0,f +10711,93%,Uganda,108.0,t +17228,100%,Papua New Guinea,1.0,f +38971,,,1.0,f +909,100%,Croatia,18.0,t +2632,,Marshall Islands,1.0,f +1361,100%,,2.0,f +20078,100%,Faroe Islands,1.0,f +23677,,,6.0,f +23677,,,6.0,f +23677,,,6.0,f +23677,,,6.0,f +23677,,,6.0,f +44273,91%,,2.0,f +13070,100%,Fiji,45.0,f +40395,,,2.0,f +21268,0%,,2.0,f +18016,100%,Somalia,1.0,t +15606,,French Guiana,1.0,f +47237,94%,Marshall Islands,5.0,f +41546,100%,Mauritania,21.0,f +32726,,,1.0,t +24122,100%,,1.0,f +31827,100%,Croatia,2.0,t +27720,,Gibraltar,1.0,f +38138,,Greenland,1.0,f +13770,,Netherlands,4.0,f +13770,,Netherlands,4.0,f +25693,67%,Micronesia,3.0,f +2036,100%,Slovakia (Slovak Republic),3.0,f +48985,97%,Guinea,8.0,f +356,99%,Wallis and Futuna,32.0,t +1609,100%,Uzbekistan,1.0,t +36807,,Guernsey,1.0,t +43071,100%,Maldives,14.0,f +9187,100%,Zimbabwe,3.0,f +47614,100%,Croatia,1.0,f +37888,89%,Niger,79.0,f +2812,100%,Cocos (Keeling) Islands,1.0,f +34459,,,1.0,f +26639,,Guinea,1.0,f +12055,100%,Nicaragua,1.0,f +29401,,Australia,1.0,t +18247,95%,Iran,80.0,t +18072,99%,Montserrat,37.0,f +40774,,Mauritania,2.0,f +35023,100%,,3.0,f +15584,,Gibraltar,1.0,f +1161,71%,,2.0,f +41833,100%,Senegal,1.0,f +9363,95%,Ukraine,50.0,f +32203,100%,Barbados,176.0,f +41225,100%,,1.0,f +18072,99%,Montserrat,37.0,f +43316,100%,Indonesia,23.0,f +28660,,,1.0,f +38114,94%,Uzbekistan,19.0,f +33604,90%,Marshall Islands,8.0,t +6894,80%,Estonia,47.0,t +21384,,,1.0,f +14748,80%,Nicaragua,1.0,f +48956,100%,Philippines,1.0,f +37888,89%,Niger,79.0,f +37888,89%,Niger,79.0,f +26386,100%,Fiji,25.0,t +17830,,Cocos (Keeling) Islands,1.0,f +26939,100%,Philippines,6.0,f +1962,100%,,7.0,f +49525,,Estonia,4.0,f +21020,100%,,1.0,f +782,90%,Isle of Man,1.0,f +919,60%,,1.0,f +35078,100%,Venezuela,1.0,f +19956,100%,Isle of Man,2.0,f +19090,100%,Gibraltar,1.0,f +2644,100%,Zimbabwe,11.0,t +26386,100%,Fiji,25.0,t +26386,100%,Fiji,25.0,t +24026,98%,Cape Verde,69.0,t +41841,100%,Kenya,1.0,f +14535,88%,Montserrat,18.0,f +19748,100%,Maldives,3.0,f +30675,67%,Guinea,3.0,f +20374,100%,Uganda,1.0,f +559,,Guernsey,1.0,f +18072,99%,Montserrat,37.0,f +32616,90%,,3.0,f +32616,90%,,3.0,f +31963,0%,Guinea,2.0,f +32616,90%,,3.0,f +1962,100%,,7.0,f +28828,100%,Isle of Man,198.0,t +24860,,,1.0,f +18072,99%,Montserrat,37.0,f +19376,100%,Malawi,2.0,t +17619,74%,Ghana,14.0,f +3387,100%,Gambia,2.0,f +13359,100%,,1.0,f +29934,67%,Zimbabwe,3.0,f +32821,100%,,1.0,f +39047,,,1.0,f +26167,81%,Senegal,3.0,f +18320,50%,Reunion,19.0,t +43276,100%,,2.0,t +20334,99%,Niger,171.0,t +22361,100%,Jersey,2.0,f +39180,90%,Pakistan,2.0,f +46092,100%,Rwanda,1.0,f +5420,100%,Tonga,41.0,f +23156,,,1.0,f +48117,98%,Ukraine,41.0,f +9628,100%,Slovakia (Slovak Republic),2.0,f +41553,100%,Tonga,2.0,f +41784,100%,Rwanda,3.0,f +22880,100%,France,1.0,f +13042,100%,Costa Rica,5.0,f +46691,90%,Uzbekistan,38.0,f +34042,100%,Marshall Islands,37.0,f +21692,100%,Ecuador,3.0,t +20245,100%,Bosnia and Herzegovina,1.0,t +21600,100%,Sao Tome and Principe,2.0,f +40488,50%,,1.0,f +25351,100%,Fiji,6.0,f +43841,,,1.0,f +13042,100%,Costa Rica,5.0,f +29717,100%,Kiribati,3.0,f +46691,90%,Uzbekistan,38.0,f +18072,99%,Montserrat,37.0,f +4037,100%,Kiribati,11.0,f +5420,100%,Tonga,41.0,f +4037,100%,Kiribati,11.0,f +2897,,Croatia,1.0,f +49565,92%,Uganda,14.0,f +29717,100%,Kiribati,3.0,f +48117,98%,Ukraine,41.0,f +18125,100%,Russian Federation,1.0,t +40793,100%,,75.0,t +18072,99%,Montserrat,37.0,f +24317,,Niue,1.0,t +34249,100%,,1.0,t +10686,86%,Tonga,21.0,f +32149,67%,Djibouti,1.0,f +43808,100%,Sao Tome and Principe,1.0,t +23774,100%,Russian Federation,1.0,f +13178,,Niger,1.0,f +45216,100%,Kenya,1.0,f +26090,,,1.0,f +18072,99%,Montserrat,37.0,f +46973,100%,Malta,2.0,t +17961,71%,,5.0,f +26478,100%,Nauru,1.0,f +47274,100%,Tonga,48.0,f +17961,71%,,5.0,f +46691,90%,Uzbekistan,38.0,f +42042,100%,Morocco,4.0,f +17961,71%,,5.0,f +4037,100%,Kiribati,11.0,f +48430,,Isle of Man,2.0,f +9449,100%,France,1.0,f +37848,100%,Faroe Islands,1.0,f +18072,99%,Montserrat,37.0,f +17961,71%,,5.0,f +17961,71%,,5.0,f +13838,100%,Montserrat,10.0,f +4037,100%,Kiribati,11.0,f +39580,100%,Tonga,3.0,f +26999,100%,Isle of Man,3.0,f +19019,97%,Nicaragua,1484.0,f +41881,100%,Finland,1.0,f +40032,100%,El Salvador,16.0,f +11928,100%,,1.0,f +11327,,Chile,1.0,f +16520,100%,Marshall Islands,22.0,f +44816,,Malta,1.0,t +16520,100%,Marshall Islands,22.0,f +41869,,Niue,4.0,t +27447,,Jersey,1.0,f +26455,100%,Micronesia,1.0,f +11107,100%,Tanzania,1.0,f +874,100%,Puerto Rico,5.0,f +34813,,,1.0,f +45115,100%,Kiribati,1.0,f +6827,100%,Afghanistan,4.0,t +28069,100%,Togo,4.0,f +6827,100%,Afghanistan,4.0,t +4037,100%,Kiribati,11.0,f +41346,97%,Estonia,7.0,t +4811,100%,Wallis and Futuna,2.0,f +30026,100%,,2.0,f +32563,100%,Pakistan,2.0,t +24893,100%,Rwanda,9.0,f +25487,100%,Afghanistan,1.0,f +19174,,French Guiana,2.0,f +47853,,,2.0,t +19384,100%,Cape Verde,4.0,f +44533,100%,Afghanistan,5.0,f +42447,80%,,2.0,f +42447,80%,,2.0,f +8077,100%,,1.0,f +48888,,Gambia,1.0,f +23910,,Lebanon,1.0,f +25157,,,1.0,t +47982,100%,Denmark,7.0,f +222,89%,,16.0,f +2810,100%,,1.0,f +6008,,Guinea,1.0,f +31280,100%,,1.0,f +40202,100%,,2.0,f +26616,100%,Isle of Man,10.0,f +38500,,Saint Helena,1.0,t +4633,100%,Benin,4.0,f +3274,86%,Barbados,24.0,f +25519,100%,Slovakia (Slovak Republic),9.0,t +47522,100%,Lebanon,1.0,f +44230,100%,Gibraltar,1.0,t +22230,100%,Canada,1.0,t +5926,100%,Tanzania,1.0,f +39468,,Chile,2.0,t +15941,100%,Bahrain,1.0,f +27730,100%,Russian Federation,1.0,f +19019,97%,Nicaragua,1484.0,f +15524,,Croatia,1.0,t +30355,100%,Barbados,3.0,t +37023,,Faroe Islands,1.0,t +43690,,,1.0,f +36417,100%,Gambia,2.0,f +20165,94%,Ukraine,30.0,f +1403,100%,Somalia,1.0,t +33643,100%,Russian Federation,1.0,t +36566,100%,,1.0,f +24654,,,1.0,t +38429,83%,,2.0,f +22002,100%,Anguilla,2.0,t +47982,100%,Denmark,7.0,f +47982,100%,Denmark,7.0,f +47982,100%,Denmark,7.0,f +21559,75%,Tokelau,3.0,t +38623,50%,Croatia,2.0,f +7297,,,1.0,f +47610,100%,Uzbekistan,10.0,f +37690,,Papua New Guinea,1.0,f +28828,100%,Isle of Man,198.0,t +27389,100%,Tunisia,1.0,t +452,100%,Ghana,3.0,f +328,,Estonia,2.0,f +48007,100%,Uganda,3.0,t +48258,83%,Maldives,1.0,t +16295,96%,Philippines,5.0,f +25378,100%,Mauritania,1.0,f +9927,0%,French Polynesia,1.0,f +5941,100%,Gambia,2.0,f +20733,67%,Finland,1.0,t +13028,100%,Zimbabwe,2.0,t +21137,100%,Tanzania,2.0,t +48477,100%,Faroe Islands,1.0,f +20250,100%,Brazil,2.0,t +13940,100%,,1.0,f +11435,100%,,2.0,t +47982,100%,Denmark,7.0,f +47310,,,1.0,f +22721,100%,Ecuador,109.0,f +23452,100%,Philippines,4.0,f +47982,100%,Denmark,7.0,f +23452,100%,Philippines,4.0,f +42785,100%,Costa Rica,3.0,t +19384,100%,Cape Verde,4.0,f +25386,,,1.0,f +19756,,Marshall Islands,3.0,f +40647,100%,,1.0,f +43304,,Tonga,1.0,t +2124,100%,Somalia,2.0,f +48595,,Sao Tome and Principe,1.0,f +41689,100%,,1.0,f +46106,100%,,4.0,t +29232,100%,Nicaragua,9.0,f +28723,,Chile,1.0,t +28136,100%,Maldives,1.0,f +23143,65%,Bouvet Island (Bouvetoya),14.0,f +31446,100%,Faroe Islands,9.0,f +28030,90%,Anguilla,1.0,f +31709,100%,Togo,1.0,f +24211,70%,,1.0,f +21576,100%,,2.0,f +37051,,Lebanon,1.0,t +23597,,,1.0,f +31114,100%,,2.0,t +8707,73%,Rwanda,21.0,t +38615,,Isle of Man,1.0,f +21352,,,1.0,f +40798,100%,El Salvador,1.0,t +32903,100%,,2.0,f +28828,100%,Isle of Man,198.0,t +19214,100%,Senegal,55.0,f +42390,100%,Wallis and Futuna,96.0,t +43152,100%,Nicaragua,82.0,t +7954,100%,,3.0,f +28811,,Nicaragua,1.0,f +7954,100%,,3.0,f +28490,100%,,2.0,f +28490,100%,,2.0,f +41889,96%,Uzbekistan,14.0,t +33003,100%,Reunion,4.0,f +18072,99%,Montserrat,37.0,f +18072,99%,Montserrat,37.0,f +21198,100%,Isle of Man,1.0,f +12763,100%,Russian Federation,1.0,f +22282,0%,Netherlands Antilles,1.0,f +37606,,Reunion,2.0,f +21908,100%,Niue,49.0,f +37831,91%,Micronesia,2.0,f +18050,,Ghana,6.0,f +7954,100%,,3.0,f +39033,50%,Russian Federation,1.0,f +21866,,China,1.0,f +6342,100%,Marshall Islands,1.0,f +5420,100%,Tonga,41.0,f +48117,98%,Ukraine,41.0,f +7009,100%,Isle of Man,9.0,f +23126,100%,China,2.0,f +19454,,,1.0,f +29934,67%,Zimbabwe,3.0,f +26766,,Jersey,1.0,f +27659,100%,Turks and Caicos Islands,3.0,f +7812,100%,Bosnia and Herzegovina,8.0,f +46691,90%,Uzbekistan,38.0,f +18247,95%,Iran,80.0,t +18072,99%,Montserrat,37.0,f +8437,99%,Maldives,6.0,f +47572,,Gambia,1.0,f +18072,99%,Montserrat,37.0,f +40421,96%,Jersey,29.0,t +7730,100%,Mauritania,1.0,f +49525,,Estonia,4.0,f +14048,100%,Finland,6.0,t +7668,,,1.0,f +14872,,China,1.0,t +20358,100%,Vanuatu,1.0,t +27060,,Venezuela,1.0,f +10729,90%,Gibraltar,1.0,f +49829,,,1.0,f +14277,50%,Indonesia,1.0,t +42691,,Malta,1.0,f +18072,99%,Montserrat,37.0,f +39920,,Lebanon,1.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +2447,100%,,2.0,f +40032,100%,El Salvador,16.0,f +38834,100%,Costa Rica,2.0,f +27700,100%,Turks and Caicos Islands,3.0,f +29758,,Micronesia,2.0,f +33119,100%,Kiribati,1.0,f +26102,,Kiribati,1.0,f +7473,,Zimbabwe,3.0,t +20165,94%,Ukraine,30.0,f +23927,100%,Uzbekistan,1.0,f +19549,0%,Kiribati,1.0,f +2447,100%,,2.0,f +41718,100%,Isle of Man,1.0,f +35074,100%,,1.0,t +35747,100%,Russian Federation,1.0,f +17965,100%,Mauritania,6.0,f +33157,100%,,1.0,f +29934,67%,Zimbabwe,3.0,f +33182,,Cook Islands,1.0,f +7776,,Puerto Rico,1.0,f +17965,100%,Mauritania,6.0,f +9963,,Russian Federation,1.0,f +16030,100%,Gambia,2.0,f +17965,100%,Mauritania,6.0,f +10524,89%,Netherlands,1.0,t +44857,100%,Zimbabwe,24.0,t +20584,100%,Togo,1.0,f +30129,,Kenya,1.0,f +11248,100%,,1.0,f +4037,100%,Kiribati,11.0,f +46261,100%,Andorra,3.0,t +24037,100%,Indonesia,1.0,t +24132,100%,Somalia,2.0,f +42215,,Bosnia and Herzegovina,5.0,f +41799,50%,Maldives,7.0,f +35750,100%,Zimbabwe,1.0,f +5882,100%,Nicaragua,1.0,f +7207,100%,Niger,1.0,f +18247,95%,Iran,80.0,t +39870,,Slovakia (Slovak Republic),21.0,t +31771,100%,Guinea,1.0,f +48117,98%,Ukraine,41.0,f +44121,100%,Nicaragua,5.0,f +17662,100%,Estonia,2.0,f +11809,100%,Russian Federation,1.0,f +45491,100%,France,1.0,f +25147,99%,Niger,48.0,f +48409,,Estonia,60.0,t +25570,,Nauru,6.0,f +35450,100%,Gibraltar,2.0,f +18072,99%,Montserrat,37.0,f +35751,,Isle of Man,2.0,t +18247,95%,Iran,80.0,t +48438,100%,Isle of Man,1.0,t +45822,100%,Chad,1.0,f +9846,100%,Indonesia,3.0,t +3341,50%,,4.0,f +48409,,Estonia,60.0,t +13020,,Spain,1.0,f +15702,80%,Greenland,2.0,f +41889,96%,Uzbekistan,14.0,t +9567,,,1.0,f +48048,100%,Marshall Islands,1.0,t +30194,100%,Wallis and Futuna,1.0,f +48409,,Estonia,60.0,t +36643,98%,Maldives,17.0,f +40364,100%,Tonga,25.0,f +24146,100%,Cocos (Keeling) Islands,1.0,f +48409,,Estonia,60.0,t +48460,,Reunion,2.0,t +48409,,Estonia,60.0,t +18247,95%,Iran,80.0,t +18247,95%,Iran,80.0,t +48409,,Estonia,60.0,t +47594,100%,Kenya,17.0,t +19199,,Chad,1.0,f +26965,,Tonga,1.0,f +17298,97%,Barbados,7.0,f +15162,100%,Isle of Man,1.0,f +47144,100%,Netherlands,1.0,f +18601,,,1.0,f +5420,100%,Tonga,41.0,f +43553,100%,,1.0,t +28079,,Niue,1.0,f +43496,100%,Montserrat,18.0,t +6079,,Niue,1.0,t +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +11549,100%,Zimbabwe,1.0,t +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +15790,0%,,1.0,f +11739,100%,,1.0,f +18247,95%,Iran,80.0,t +43686,100%,Somalia,2.0,f +5002,100%,Isle of Man,2.0,f +35376,100%,Malta,2.0,f +39425,100%,Micronesia,3.0,t +18795,,Maldives,1.0,f +49016,,,2.0,f +43870,100%,,1.0,f +5167,100%,Kenya,1.0,t +6667,100%,Faroe Islands,1.0,f +4526,100%,,4.0,f +37254,100%,Isle of Man,1.0,f +39859,100%,Netherlands,3.0,t +29232,100%,Nicaragua,9.0,f +16530,100%,Senegal,3.0,f +20503,,China,2.0,f +1207,100%,Nicaragua,7.0,f +3077,100%,Chile,3.0,t +389,,,1.0,t +33308,,Maldives,2.0,t +25549,100%,Guinea,1.0,f +39490,100%,Gambia,2.0,t +14596,100%,Nicaragua,1.0,f +40684,,,1.0,f +31023,90%,Uzbekistan,1.0,f +26254,100%,Gambia,3.0,f +24921,80%,El Salvador,2.0,f +47887,100%,,1.0,t +48269,,Gambia,2.0,f +16670,100%,Switzerland,1.0,t +26320,92%,Sao Tome and Principe,4.0,f +5284,,Faroe Islands,1.0,f +12577,100%,Gambia,1.0,f +18484,100%,Gambia,108.0,f +36805,80%,Cocos (Keeling) Islands,1.0,f +7751,,,1.0,t +8508,100%,,1.0,f +39143,89%,,33.0,f +17951,100%,Sao Tome and Principe,1.0,f +19469,100%,Russian Federation,1.0,f +30479,100%,French Guiana,1.0,t +18247,95%,Iran,80.0,t +8570,,Jersey,1.0,f +24775,97%,Montserrat,44.0,f +39143,89%,,33.0,f +34808,100%,,1.0,t +461,100%,Saint Helena,4.0,f +14032,,,9.0,f +21805,100%,Barbados,2.0,f +5120,100%,,1.0,f +29968,100%,French Guiana,1.0,f +41889,96%,Uzbekistan,14.0,t +27625,100%,Malta,2.0,f +47096,100%,Uzbekistan,1.0,f +32626,,,1.0,f +9363,95%,Ukraine,50.0,f +3122,100%,Peru,1.0,f +9363,95%,Ukraine,50.0,f +47631,100%,Faroe Islands,3.0,f +19059,100%,Zimbabwe,1.0,f +20334,99%,Niger,171.0,t +24670,100%,Denmark,1.0,t +11537,100%,Philippines,1.0,f +3886,100%,Russian Federation,3.0,f +34928,100%,Ecuador,4.0,f +43976,80%,Ecuador,2.0,t +18072,99%,Montserrat,37.0,f +3341,50%,,4.0,f +6685,100%,Fiji,1.0,f +28314,,Brazil,1.0,f +4851,0%,Chad,1.0,f +27301,,French Guiana,2.0,t +29717,100%,Kiribati,3.0,f +30555,100%,Saint Helena,2.0,f +18876,60%,Netherlands,26.0,f +24288,100%,Senegal,4.0,f +5652,92%,Montserrat,2.0,t +45989,90%,Isle of Man,1.0,f +20334,99%,Niger,171.0,t +30216,98%,Maldives,34.0,f +18876,60%,Netherlands,26.0,f +18072,99%,Montserrat,37.0,f +8338,75%,Korea,2.0,f +15041,,Christmas Island,3.0,f +24510,100%,,1.0,f +4538,100%,Russian Federation,1.0,f +18077,100%,Sao Tome and Principe,139.0,f +6800,,Wallis and Futuna,1.0,t +33545,100%,,16.0,f +19214,100%,Senegal,55.0,f +33448,100%,Kenya,1.0,f +27666,100%,,1.0,f +19974,100%,Ukraine,3.0,f +9363,95%,Ukraine,50.0,f +49250,90%,Marshall Islands,2.0,f +1657,,Croatia,13.0,t +19019,97%,Nicaragua,1484.0,f +48316,100%,Peru,1.0,f +49546,,Guinea,1.0,t +34857,,Mauritania,1.0,t +9363,95%,Ukraine,50.0,f +19019,97%,Nicaragua,1484.0,f +36858,0%,Venezuela,1.0,f +31298,96%,,5.0,f +11187,,,1.0,f +3086,,,2.0,t +22471,,Estonia,1.0,t +21435,100%,Cape Verde,7.0,t +4778,100%,,2.0,f +25612,100%,Mauritania,1.0,f +19268,,Chile,1.0,f +11148,0%,,1.0,f +9525,,,1.0,f +36212,100%,Faroe Islands,2.0,f +32528,100%,,1.0,f +29232,100%,Nicaragua,9.0,f +43743,100%,,1.0,t +29232,100%,Nicaragua,9.0,f +19191,100%,Zimbabwe,1.0,f +39892,100%,Tonga,31.0,t +46422,,,1.0,t +44925,100%,,1.0,f +4330,94%,Ukraine,60.0,t +37459,100%,,4.0,f +26130,94%,Sao Tome and Principe,4.0,t +22250,100%,,4.0,f +42281,100%,Marshall Islands,39.0,f +6020,100%,Isle of Man,1.0,t +8453,100%,Rwanda,6.0,t +48178,17%,Estonia,5.0,t +11794,100%,Ecuador,1.0,f +20641,,Niue,1.0,t +33198,100%,Mauritania,12.0,f +2984,,France,1.0,f +205,100%,,2.0,f +14331,100%,Estonia,3.0,t +43918,100%,Faroe Islands,1.0,f +18072,99%,Montserrat,37.0,f +22594,100%,Rwanda,12.0,f +1721,100%,Ecuador,5.0,f +1721,100%,Ecuador,5.0,f +27701,,Marshall Islands,1.0,f +24140,,Greenland,2.0,f +8039,100%,Croatia,1.0,f +20191,,French Guiana,1.0,f +35744,90%,Russian Federation,1.0,f +19091,95%,Cook Islands,18.0,t +22732,,France,1.0,f +23862,,Kenya,1.0,t +48123,100%,,1.0,f +28587,100%,,1.0,f +18072,99%,Montserrat,37.0,f +25126,100%,Bouvet Island (Bouvetoya),1.0,f +36699,100%,Uzbekistan,1.0,f +47985,100%,Guinea,1.0,f +28892,,Niger,1.0,f +36093,100%,Denmark,18.0,t +2168,100%,Nicaragua,5.0,f +34503,100%,Slovakia (Slovak Republic),1.0,t +942,,Monaco,2.0,f +22630,,Anguilla,2.0,f +23430,100%,Reunion,16.0,f +7791,100%,Grenada,2.0,f +19372,100%,Chad,3.0,f +34400,100%,,1.0,t +337,100%,,2.0,t +32025,100%,Costa Rica,1.0,f +12770,100%,,1.0,t +29854,100%,Russian Federation,1.0,t +25206,,Iceland,2.0,t +6510,70%,,2.0,f +11636,100%,Marshall Islands,1.0,f +36011,,,1.0,f +45443,,Uganda,1.0,f +6165,,Maldives,1.0,t +23078,100%,Ukraine,8.0,f +24349,100%,Guinea,2.0,t +25503,100%,Gambia,1.0,t +43520,,Malta,1.0,f +30699,,French Guiana,2.0,t +36711,100%,Nicaragua,1.0,f +22174,100%,Russian Federation,1.0,f +39276,100%,Estonia,3.0,f +29279,,Denmark,1.0,f +47672,100%,,5.0,f +43350,100%,Isle of Man,2.0,t +41000,,China,2.0,f +47497,100%,Micronesia,1.0,f +9875,100%,Monaco,1.0,f +3336,,Faroe Islands,1.0,f +48269,,Gambia,2.0,f +3806,,,11.0,f +39860,100%,,2.0,f +7536,,Nauru,1.0,f +40993,100%,Montserrat,15.0,f +9530,,France,1.0,f +3341,50%,,4.0,f +20334,99%,Niger,171.0,t +657,100%,Marshall Islands,2.0,f +2008,100%,,1.0,t +35512,100%,,1.0,f +18484,100%,Gambia,108.0,f +22540,,,1.0,t +12406,,,1.0,f +3341,50%,,4.0,f +34380,,Denmark,1.0,f +45852,100%,Canada,1.0,f +34547,,Gibraltar,1.0,f +34042,100%,Marshall Islands,37.0,f +3328,,China,1.0,f +30658,100%,United Kingdom,2.0,f +5346,100%,,1.0,f +35854,100%,Mexico,1.0,f +47870,,Lebanon,1.0,f +40090,100%,Portugal,1.0,f +48339,100%,Slovakia (Slovak Republic),2.0,f +21606,,France,1.0,f +2670,100%,Costa Rica,4.0,t +44102,100%,Russian Federation,1.0,t +18876,60%,Netherlands,26.0,f +27533,88%,,1.0,f +874,100%,Puerto Rico,5.0,f +40793,100%,,75.0,t +18876,60%,Netherlands,26.0,f +25035,,Micronesia,2.0,f +36093,100%,Denmark,18.0,t +11431,100%,Isle of Man,1.0,f +34042,100%,Marshall Islands,37.0,f +21143,100%,Mexico,2.0,f +9934,100%,,2.0,f +10042,,Indonesia,21.0,f +30786,,Uzbekistan,29.0,f +36093,100%,Denmark,18.0,t +173,100%,,4.0,f +14931,100%,Jersey,4.0,f +30146,100%,El Salvador,1.0,f +4347,,Isle of Man,1.0,f +1962,100%,,7.0,f +19214,100%,Senegal,55.0,f +24822,100%,Kiribati,1.0,f +173,100%,,4.0,f +173,100%,,4.0,f +7021,100%,,1.0,t +20329,100%,Reunion,21.0,f +4047,70%,,1.0,f +18484,100%,Gambia,108.0,f +25147,99%,Niger,48.0,f +27289,99%,Reunion,12.0,t +1962,100%,,7.0,f +16695,96%,Tonga,8.0,f +173,100%,,4.0,f +16414,,,19.0,f +16414,,,19.0,f +16414,,,19.0,f +16414,,,19.0,f +16414,,,19.0,f +16414,,,19.0,f +36701,,,5.0,f +40303,100%,Guinea,82.0,f +9934,100%,,2.0,f +46178,90%,,1.0,f +17789,94%,Reunion,6.0,f +17789,94%,Reunion,6.0,f +10466,100%,Papua New Guinea,2.0,f +6189,100%,Anguilla,1.0,f +22589,100%,Marshall Islands,1.0,f +43402,,,1.0,t +42715,100%,Niue,6.0,t +43336,,France,1.0,f +18286,100%,,1.0,t +42338,,Anguilla,2.0,f +35465,,,1.0,t +4235,,Bosnia and Herzegovina,3.0,f +4446,100%,Uganda,58.0,f +874,100%,Puerto Rico,5.0,f +41665,100%,Denmark,1.0,f +874,100%,Puerto Rico,5.0,f +12837,100%,Peru,1.0,f +10434,100%,United Kingdom,4.0,f +40626,93%,United Kingdom,5.0,t +18665,100%,,1.0,t +40941,94%,Russian Federation,4.0,t +14465,100%,Costa Rica,2.0,t +75,0%,,1.0,f +43851,100%,Estonia,1.0,f +20773,,Malawi,1.0,f +19515,90%,Isle of Man,1.0,f +34914,100%,Puerto Rico,1.0,f +23930,,Vanuatu,1.0,t +31252,80%,Lithuania,2.0,f +24815,50%,Denmark,1.0,f +457,100%,,1.0,f +45206,100%,Ecuador,2.0,t +47962,,Faroe Islands,1.0,f +7592,98%,,13.0,t +46106,100%,,4.0,t +49885,100%,El Salvador,1.0,f +30786,,Uzbekistan,29.0,f +41934,100%,,2.0,f +45895,,Niue,2.0,f +2168,100%,Nicaragua,5.0,f +23046,,Zimbabwe,1.0,f +43237,40%,Montserrat,24.0,f +9345,100%,Bosnia and Herzegovina,4.0,f +15166,,Lithuania,1.0,f +42091,,Zimbabwe,1.0,f +49671,100%,Senegal,2.0,t +39283,100%,Uganda,13.0,f +1043,,,1.0,f +13521,100%,Guernsey,2.0,t +24228,100%,Faroe Islands,1.0,f +8355,87%,Togo,16.0,f +452,100%,Ghana,3.0,f +49843,100%,,1.0,f +23711,,Sudan,3.0,t +29427,100%,Costa Rica,1.0,f +47746,,Niue,1.0,f +11359,100%,,1.0,t +38834,100%,Costa Rica,2.0,f +32825,100%,Marshall Islands,1.0,f +37078,100%,Gambia,1.0,f +6251,,Turks and Caicos Islands,1.0,f +44745,100%,,3.0,f +40403,100%,Zimbabwe,2.0,f +10134,100%,Uzbekistan,7.0,t +19214,100%,Senegal,55.0,f +37907,100%,Malta,1.0,f +3806,,,11.0,f +49859,0%,Nicaragua,6.0,f +18078,100%,Montserrat,13.0,t +22964,,Micronesia,1.0,f +5179,,,12.0,f +49859,0%,Nicaragua,6.0,f +42356,100%,Pakistan,1.0,f +29232,100%,Nicaragua,9.0,f +29232,100%,Nicaragua,9.0,f +29232,100%,Nicaragua,9.0,f +38041,75%,,2.0,t +18591,100%,Brazil,1.0,f +7105,100%,,1.0,f +27667,33%,,2.0,f +25991,100%,Greenland,4.0,f +13364,91%,Netherlands,21.0,f +37234,100%,Gambia,1.0,f +8614,100%,Guernsey,1.0,f +10544,100%,France,2.0,f +36970,67%,Micronesia,1.0,t +29941,100%,Netherlands,2.0,f +36022,100%,,1.0,f +26287,100%,Tonga,2.0,f +46939,71%,,1.0,t +12881,100%,Turks and Caicos Islands,1.0,f +29962,100%,,1.0,f +23850,88%,,1.0,f +25991,100%,Greenland,4.0,f +49388,100%,Vietnam,4.0,t +25991,100%,Greenland,4.0,f +49388,100%,Vietnam,4.0,t +26282,,Bouvet Island (Bouvetoya),1.0,f +26631,100%,Russian Federation,1.0,f +28579,100%,China,1.0,t +10204,100%,Nicaragua,5.0,t +32570,,Guinea,4.0,t +19996,,,1.0,f +3601,100%,,2.0,f +2186,,,1.0,f +31992,,Niue,1.0,f +13838,100%,Montserrat,10.0,f +36768,100%,Guinea,2.0,f +34291,100%,Montserrat,1.0,t +15642,,Brazil,3.0,f +22403,100%,,1.0,f +31431,100%,Kiribati,2.0,t +19214,100%,Senegal,55.0,f +3696,0%,,1.0,f +37282,100%,,3.0,f +34784,60%,Faroe Islands,19.0,t +45012,,,1.0,t +29687,,Papua New Guinea,1.0,f +44978,,Philippines,1.0,f +24015,,Turkmenistan,2.0,f +31594,100%,Philippines,19.0,t +10993,,Mauritania,8.0,f +10993,,Mauritania,8.0,f +10993,,Mauritania,8.0,f +6266,100%,,4.0,f +10993,,Mauritania,8.0,f +45490,95%,Barbados,6.0,f +6266,100%,,4.0,f +31105,,Croatia,1.0,f +12502,89%,Denmark,1.0,f +41333,100%,Turks and Caicos Islands,2.0,f +22281,100%,Micronesia,3.0,f +3601,100%,,2.0,f +44934,100%,Philippines,17.0,f +45322,100%,,1.0,f +16505,100%,,1.0,f +42715,100%,Niue,6.0,t +17967,100%,El Salvador,2.0,f +3706,100%,,3.0,t +48176,,Marshall Islands,2.0,t +30088,,,1.0,f +25147,99%,Niger,48.0,f +15313,,Chad,1.0,f +34394,,Niue,1.0,f +10908,100%,Montserrat,1.0,f +29647,100%,Peru,1305.0,f +47913,0%,Monaco,1.0,f +45096,,Malawi,1.0,t +15102,100%,Malta,1.0,f +2523,100%,Zimbabwe,1.0,f +8752,100%,,2.0,f +15797,100%,Micronesia,2.0,f +34092,100%,Togo,1.0,f +5590,,Denmark,1.0,f +23913,100%,Niue,1.0,t +7395,100%,Niue,1.0,f +25147,99%,Niger,48.0,f +31979,100%,Kenya,10.0,f +18072,99%,Montserrat,37.0,f +2801,100%,,1.0,f +8343,,,1.0,f +28815,,,1.0,f +40065,,Guinea,1.0,f +30027,67%,Korea,2.0,f +20175,,Libyan Arab Jamahiriya,1.0,t +13958,,Uzbekistan,1.0,f +32157,,Uzbekistan,2.0,t +18072,99%,Montserrat,37.0,f +22973,100%,,2.0,f +47936,100%,Mauritania,2.0,f +38541,,,1.0,f +29399,,,1.0,t +44277,100%,Guernsey,1.0,f +36392,,Costa Rica,1.0,f +47686,100%,Spain,1.0,f +18235,,Denmark,1.0,f +17108,100%,Kiribati,3.0,f +33649,100%,,1.0,f +26985,100%,,1.0,f +2404,,Barbados,3.0,t +41950,100%,Montserrat,1.0,f +27650,100%,Slovenia,1.0,t +23158,100%,,1.0,f +47611,100%,,1.0,t +30003,,Sao Tome and Principe,1.0,f +42116,100%,,1.0,t +41556,100%,,1.0,t +33635,,Reunion,1.0,f +11020,,Guernsey,1.0,t +16471,,,3.0,f +22773,,,2.0,t +10253,,,1.0,f +26888,60%,Lebanon,1.0,f +12491,100%,Pakistan,3.0,f +14317,89%,Monaco,1.0,t +4447,100%,Micronesia,2.0,f +49070,100%,Uzbekistan,1.0,f +8054,,Russian Federation,1.0,f +4447,100%,Micronesia,2.0,f +48154,,Lebanon,2.0,f +6894,80%,Estonia,47.0,t +2547,,Chile,1.0,f +20986,,,1.0,t +45507,,,1.0,f +41638,100%,Malawi,1.0,f +29077,100%,Moldova,1.0,t +4442,,Turks and Caicos Islands,1.0,f +34290,80%,Guinea,2.0,f +20569,100%,Montserrat,3.0,t +23327,100%,Uzbekistan,4.0,t +9946,100%,Uganda,1.0,t +44412,100%,Gambia,2.0,f +9088,,Denmark,1.0,f +4446,100%,Uganda,58.0,f +49250,90%,Marshall Islands,2.0,f +41731,100%,,1.0,f +24594,100%,Rwanda,14.0,f +43289,,Uzbekistan,8.0,f +29937,50%,Faroe Islands,1.0,f +43289,,Uzbekistan,8.0,f +17833,100%,Gambia,2.0,f +46638,,,1.0,f +43316,100%,Indonesia,23.0,f +45662,89%,,1.0,t +1475,,,1.0,t +2639,,Uzbekistan,1.0,f +45051,100%,Bouvet Island (Bouvetoya),1.0,f +21526,,Micronesia,1.0,f +24026,98%,Cape Verde,69.0,t +27664,100%,Niue,1.0,f +30991,100%,,1.0,t +47817,100%,Saint Helena,2.0,f +35836,,,1.0,f +13641,85%,Mauritania,23.0,f +17619,74%,Ghana,14.0,f +8666,50%,,2.0,t +921,100%,Finland,1.0,f +25147,99%,Niger,48.0,f +36178,100%,,4.0,t +28296,89%,Maldives,3.0,t +20199,83%,Rwanda,1.0,f +37888,89%,Niger,79.0,f +37888,89%,Niger,79.0,f +37888,89%,Niger,79.0,f +37888,89%,Niger,79.0,f +42715,100%,Niue,6.0,t +42034,,Montserrat,1.0,f +19217,98%,Marshall Islands,46.0,f +9044,80%,Guinea,1.0,f +38098,100%,Zimbabwe,7.0,t +20539,100%,Chad,5.0,f +16981,100%,Nicaragua,1.0,f +6894,80%,Estonia,47.0,t +28828,100%,Isle of Man,198.0,t +39172,100%,Russian Federation,1.0,f +18966,100%,,2.0,f +19319,100%,Sao Tome and Principe,3.0,f +16896,100%,,4.0,f +16896,100%,,4.0,f +16896,100%,,4.0,f +48040,50%,,1.0,f +16896,100%,,4.0,f +39231,,Malawi,1.0,t +302,100%,Tunisia,20.0,f +3817,0%,,1.0,f +10157,0%,Tonga,2.0,f +13363,,Isle of Man,1.0,f +35439,94%,United Kingdom,23.0,t +31093,75%,Mauritania,1.0,f +27047,100%,France,1.0,f +7177,100%,Sao Tome and Principe,1.0,f +40303,100%,Guinea,82.0,f +7524,,,1.0,f +48409,,Estonia,60.0,t +47658,100%,Micronesia,3.0,f +9363,95%,Ukraine,50.0,f +26977,100%,Somalia,1.0,f +10597,,Reunion,1.0,f +43022,100%,Svalbard & Jan Mayen Islands,1.0,f +16459,100%,Saint Helena,1.0,f +21709,100%,Maldives,2.0,f +40981,,,1.0,f +32496,100%,,1.0,f +27707,100%,Korea,1.0,f +25317,100%,,3.0,t +47922,,Christmas Island,1.0,f +25607,90%,,1.0,f +48464,100%,,1.0,t +45474,100%,El Salvador,4.0,t +38475,100%,Zimbabwe,1.0,f +35278,100%,Jersey,1.0,f +48514,,Faroe Islands,1.0,f +18854,,Maldives,1.0,f +26320,92%,Sao Tome and Principe,4.0,f +33185,100%,Montserrat,2.0,t +25020,,Russian Federation,1.0,f +11153,100%,United Kingdom,2.0,f +29867,100%,Peru,2.0,t +15943,100%,Puerto Rico,2.0,f +3997,,Russian Federation,1.0,f +39580,100%,Tonga,3.0,f +31884,83%,,2.0,f +40977,100%,Reunion,7.0,f +42051,100%,Nicaragua,11.0,t +18876,60%,Netherlands,26.0,f +39139,80%,,2.0,f +13370,,,1.0,f +11469,100%,Guinea,2.0,f +13070,100%,Fiji,45.0,f +20334,99%,Niger,171.0,t +35071,100%,,1.0,f +35753,93%,Cocos (Keeling) Islands,3.0,t +22182,100%,,1.0,f +12818,,Chile,4.0,f +42390,100%,Wallis and Futuna,96.0,t +25147,99%,Niger,48.0,f +37888,89%,Niger,79.0,f +19281,100%,Chad,1.0,t +12382,100%,,1.0,f +37888,89%,Niger,79.0,f +37888,89%,Niger,79.0,f +37888,89%,Niger,79.0,f +37888,89%,Niger,79.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +26274,100%,Niue,1.0,f +25570,,Nauru,6.0,f +25423,100%,Isle of Man,1.0,f +18077,100%,Sao Tome and Principe,139.0,f +35910,,Brazil,1.0,f +12967,100%,,1.0,f +44960,,,2.0,f +40774,,Mauritania,2.0,f +23022,67%,Niue,10.0,t +40155,100%,Tonga,4.0,f +21523,,,1.0,f +31465,100%,,1.0,f +10644,,Guernsey,4.0,t +44862,100%,Djibouti,12.0,f +22523,100%,Rwanda,9.0,f +49398,88%,Barbados,18.0,t +44862,100%,Djibouti,12.0,f +36772,100%,Lebanon,1.0,f +46573,,Turks and Caicos Islands,1.0,f +47934,,Senegal,1.0,f +25147,99%,Niger,48.0,f +5631,,Uzbekistan,1.0,t +18072,99%,Montserrat,37.0,f +41928,87%,Nicaragua,9.0,f +4348,,,1.0,f +5875,100%,,2.0,f +1310,83%,Barbados,5.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +2998,70%,France,4.0,t +39744,,,1.0,f +10832,100%,Uruguay,1.0,f +49930,50%,Finland,2.0,t +36817,91%,Slovakia (Slovak Republic),6.0,f +18072,99%,Montserrat,37.0,f +23430,100%,Reunion,16.0,f +15492,,Costa Rica,1.0,f +39247,100%,,1.0,f +35756,100%,Mauritania,1.0,f +3019,100%,Barbados,18.0,f +45905,100%,Sao Tome and Principe,3.0,t +1962,100%,,7.0,f +42281,100%,Marshall Islands,39.0,f +16773,80%,Niue,2.0,t +37707,33%,,2.0,f +26410,76%,,4.0,f +37707,33%,,2.0,f +27597,100%,Portugal,7.0,t +21062,100%,,1.0,f +21354,,Kenya,1.0,f +18550,100%,Turks and Caicos Islands,1.0,f +24103,100%,United Kingdom,3.0,f +5710,100%,,1.0,t +19797,,Isle of Man,1.0,f +32770,,,3.0,t +48241,33%,Russian Federation,1.0,t +32770,,,3.0,t +35585,,Bouvet Island (Bouvetoya),2.0,f +38493,,Uzbekistan,12.0,f +32268,100%,Russian Federation,1.0,f +44862,100%,Djibouti,12.0,f +44862,100%,Djibouti,12.0,f +11823,70%,,7.0,f +44862,100%,Djibouti,12.0,f +44862,100%,Djibouti,12.0,f +44862,100%,Djibouti,12.0,f +15847,,Uganda,13.0,f +13082,100%,Kiribati,3.0,t +34347,,,1.0,f +33070,,,1.0,f +23281,100%,Isle of Man,1.0,t +10596,100%,Holy See (Vatican City State),1.0,f +5592,,Philippines,1.0,f +5206,82%,Togo,2.0,f +8970,70%,Faroe Islands,2.0,t +32655,,,2.0,f +18072,99%,Montserrat,37.0,f +6771,100%,Svalbard & Jan Mayen Islands,1.0,f +37888,89%,Niger,79.0,f +45243,100%,,3.0,t +1207,100%,Nicaragua,7.0,f +25147,99%,Niger,48.0,f +6723,100%,Kenya,1.0,f +5315,,Niue,1.0,f +44423,100%,Micronesia,1.0,f +18072,99%,Montserrat,37.0,f +4000,,Malta,1.0,t +9852,100%,Maldives,11.0,f +8355,87%,Togo,16.0,f +16496,97%,Maldives,4.0,f +8355,87%,Togo,16.0,f +4796,,,1.0,f +23878,,Bosnia and Herzegovina,1.0,t +5359,,Moldova,1.0,f +41301,100%,Costa Rica,9.0,t +25342,,France,1.0,f +19529,100%,Niue,1.0,t +44520,100%,Uruguay,1.0,f +38928,59%,,2.0,t +25212,100%,Gambia,1.0,f +18876,60%,Netherlands,26.0,f +19217,98%,Marshall Islands,46.0,f +18072,99%,Montserrat,37.0,f +38253,,Zimbabwe,1.0,f +35151,,,1.0,f +18876,60%,Netherlands,26.0,f +20165,94%,Ukraine,30.0,f +9965,100%,Maldives,1.0,f +31574,,Gambia,1.0,f +4330,94%,Ukraine,60.0,t +28051,100%,Marshall Islands,1.0,f +1389,100%,Gambia,1.0,t +45828,90%,Togo,9.0,f +18876,60%,Netherlands,26.0,f +36677,100%,Maldives,6.0,f +7056,100%,,2.0,t +25147,99%,Niger,48.0,f +13212,100%,Zimbabwe,12.0,t +27833,,Cook Islands,1.0,f +14168,50%,Nicaragua,1.0,f +17916,75%,Togo,1.0,f +32038,100%,Indonesia,35.0,f +40030,,French Guiana,1.0,f +14081,100%,Moldova,1.0,f +13901,100%,Indonesia,1.0,f +22755,,,8.0,t +20165,94%,Ukraine,30.0,f +30395,100%,Gibraltar,1.0,f +22755,,,8.0,t +45184,100%,Jersey,1.0,f +35985,100%,,1.0,f +21392,50%,,2.0,t +3019,100%,Barbados,18.0,f +16790,100%,Vanuatu,1.0,f +48966,100%,Tanzania,2.0,f +37722,,Niue,1.0,f +5193,100%,Ecuador,1.0,t +43105,,El Salvador,1.0,t +10573,,,1.0,f +31647,100%,,1.0,f +49475,100%,,1.0,f +11306,100%,Togo,2.0,f +7366,100%,,1.0,f +7418,100%,Canada,2.0,f +13280,100%,Vanuatu,2.0,t +44458,,Micronesia,1.0,f +5435,100%,,2.0,f +1714,100%,Costa Rica,3.0,f +24328,100%,Lithuania,1.0,f +38400,100%,,1.0,f +26269,100%,,4.0,f +31958,,,1.0,f +18876,60%,Netherlands,26.0,f +30341,,Ecuador,1.0,f +13641,85%,Mauritania,23.0,f +5313,90%,Cook Islands,4.0,f +5313,90%,Cook Islands,4.0,f +17879,,Djibouti,1.0,f +44278,90%,Turkmenistan,3.0,t +35878,,Chad,2.0,t +43103,100%,Monaco,3.0,t +44960,,,2.0,f +3446,,China,3.0,f +20153,96%,Reunion,51.0,f +19122,,Faroe Islands,1.0,f +13594,,,1.0,t +37100,100%,Kenya,1.0,t +32646,,Tanzania,2.0,t +13197,100%,France,3.0,f +27986,86%,France,1.0,f +25147,99%,Niger,48.0,f +33637,100%,Russian Federation,2.0,f +7610,98%,,6.0,f +7610,98%,,6.0,f +7610,98%,,6.0,f +7610,98%,,6.0,f +7610,98%,,6.0,f +7610,98%,,6.0,f +20334,99%,Niger,171.0,t +7050,,Russian Federation,1.0,f +37415,100%,Mexico,2.0,f +21173,,Niue,3.0,t +3524,100%,Ghana,5.0,f +32203,100%,Barbados,176.0,f +8935,25%,Kenya,2.0,f +28603,,Guinea,1.0,f +11744,100%,Kenya,4.0,f +49837,,,1.0,f +12785,50%,Rwanda,1.0,t +41245,100%,Niue,1.0,f +4217,,Kenya,52.0,f +18484,100%,Gambia,108.0,f +42868,100%,France,2.0,t +11753,100%,Gambia,11.0,t +32203,100%,Barbados,176.0,f +43071,100%,Maldives,14.0,f +18072,99%,Montserrat,37.0,f +43071,100%,Maldives,14.0,f +43071,100%,Maldives,14.0,f +10875,100%,Niue,2.0,f +9959,100%,Tanzania,2.0,f +47065,,Cocos (Keeling) Islands,1.0,f +16431,100%,Gambia,1.0,t +18876,60%,Netherlands,26.0,f +35221,100%,Turks and Caicos Islands,30.0,t +32203,100%,Barbados,176.0,f +12530,100%,Malta,1.0,f +39952,100%,Tonga,21.0,f +18077,100%,Sao Tome and Principe,139.0,f +28828,100%,Isle of Man,198.0,t +19084,,,1.0,f +36714,100%,Canada,1.0,t +35436,99%,Nicaragua,21.0,f +39952,100%,Tonga,21.0,f +26094,56%,,1.0,f +40303,100%,Guinea,82.0,f +32038,100%,Indonesia,35.0,f +45677,100%,Monaco,1.0,f +10168,100%,,1.0,t +45497,,,1.0,f +3315,80%,Chad,1.0,f +15510,100%,Montserrat,1.0,f +48454,63%,Rwanda,1.0,f +6088,100%,,14.0,t +32351,,Isle of Man,2.0,t +18840,,Turkmenistan,2.0,f +7834,94%,Mexico,13.0,f +5161,,Papua New Guinea,2.0,t +49484,,Russian Federation,1.0,f +10875,100%,Niue,2.0,f +36408,100%,Nauru,5.0,f +26193,88%,,3.0,f +32351,,Isle of Man,2.0,t +33449,,,1.0,f +18049,,Moldova,1.0,t +5881,100%,Kiribati,2.0,f +35197,,Denmark,1.0,f +19307,,,1.0,f +14812,100%,,1.0,t +5230,100%,Brazil,3.0,f +665,100%,Greenland,2.0,t +16872,100%,Malta,1.0,f +15583,100%,,1.0,t +2539,100%,Jersey,1.0,f +24282,,Guinea,1.0,f +26993,100%,El Salvador,1.0,f +31299,,Zimbabwe,1.0,f +8438,62%,Nicaragua,9.0,t +8438,62%,Nicaragua,9.0,t +41640,100%,Guinea,2.0,f +7432,100%,Zimbabwe,2.0,f +43055,100%,Malawi,2.0,f +3524,100%,Ghana,5.0,f +24589,100%,Uzbekistan,2.0,f +31491,100%,Isle of Man,3.0,f +30306,0%,Uzbekistan,1.0,f +11122,100%,Isle of Man,1.0,t +11873,100%,Kiribati,1.0,f +11223,88%,,1.0,t +36637,,China,11.0,f +29647,100%,Peru,1305.0,f +21284,,,1.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +47148,100%,,1.0,f +15173,100%,Maldives,1.0,f +41461,100%,,1.0,f +36637,,China,11.0,f +7211,,Micronesia,1.0,f +36637,,China,11.0,f +5057,100%,Zimbabwe,23.0,t +20039,75%,Jersey,2.0,f +27203,,Bouvet Island (Bouvetoya),13.0,f +42213,100%,Lithuania,1.0,t +6010,100%,Isle of Man,1.0,t +44171,80%,Reunion,1.0,t +40650,,,8.0,t +39594,,Sao Tome and Principe,3.0,f +48122,60%,,3.0,f +35948,100%,Brazil,8.0,f +18788,100%,Isle of Man,1.0,f +13206,100%,Costa Rica,1.0,f +28789,100%,,3.0,t +28789,100%,,3.0,t +31995,100%,Portugal,2.0,f +15847,,Uganda,13.0,f +20507,,Ecuador,1.0,t +45162,,Maldives,20.0,f +29644,100%,,1.0,t +16194,100%,Turks and Caicos Islands,1.0,f +3539,,,2.0,f +43798,100%,El Salvador,4.0,t +14160,90%,Slovakia (Slovak Republic),4.0,t +37296,,Malta,2.0,t +12309,100%,Guernsey,1.0,t +49740,,France,1.0,f +36415,,Isle of Man,1.0,f +31387,100%,Isle of Man,2.0,f +19753,67%,Saint Helena,1.0,t +25780,100%,United Kingdom,2.0,t +34803,100%,Brazil,2.0,f +7886,,Puerto Rico,1.0,f +49531,100%,,1.0,f +9255,,Vietnam,10.0,f +4201,,Marshall Islands,1.0,t +20202,,,2.0,f +37546,100%,Rwanda,3.0,f +9326,100%,Mauritania,1.0,f +9255,,Vietnam,10.0,f +9255,,Vietnam,10.0,f +3524,100%,Ghana,5.0,f +43772,50%,Mexico,12.0,t +35037,100%,Faroe Islands,1.0,f +14192,100%,Denmark,2.0,f +5185,0%,Gambia,12.0,f +28114,97%,Bouvet Island (Bouvetoya),16.0,f +32644,100%,Niue,1.0,f +41928,87%,Nicaragua,9.0,f +49781,,Philippines,5.0,f +24506,,,1.0,f +33556,88%,Kiribati,1.0,f +1567,100%,Senegal,1.0,f +2304,100%,Isle of Man,1.0,t +46895,,Turks and Caicos Islands,1.0,f +43244,100%,France,2.0,t +13847,100%,Turks and Caicos Islands,14.0,f +25981,,Russian Federation,1.0,t +45958,100%,Maldives,1.0,t +35259,,Nauru,1.0,f +25194,100%,Netherlands,1.0,f +19824,100%,Russian Federation,2.0,t +11862,89%,,1.0,f +44955,90%,,1.0,f +16969,100%,,1.0,t +41757,100%,Malta,5.0,f +45717,100%,,1.0,f +38860,100%,Zimbabwe,1.0,f +27652,100%,El Salvador,5.0,f +15974,100%,,3.0,f +24667,,Faroe Islands,1.0,f +39462,,,1.0,f +40814,100%,Isle of Man,1.0,f +34954,100%,,1.0,t +25039,,Saint Helena,7.0,t +31787,,France,1.0,f +45684,100%,,1.0,t +7985,100%,Portugal,1.0,f +26919,100%,Djibouti,4.0,t +21745,,Cook Islands,1.0,f +19824,100%,Russian Federation,2.0,t +31035,100%,Sao Tome and Principe,3.0,f +43071,100%,Maldives,14.0,f +43142,100%,Uzbekistan,3.0,t +22523,100%,Rwanda,9.0,f +14413,100%,,1.0,f +30415,,Estonia,1.0,f +38137,99%,Zimbabwe,16.0,f +20153,96%,Reunion,51.0,f +42807,,,1.0,f +25522,,Isle of Man,1.0,f +49511,100%,,1.0,f +2262,100%,Tonga,1.0,f +23034,99%,Monaco,54.0,f +23034,99%,Monaco,54.0,f +19592,100%,Monaco,3.0,t +22073,,Zimbabwe,1.0,t +39673,90%,,1.0,f +38207,100%,Turks and Caicos Islands,2.0,t +37888,89%,Niger,79.0,f +31491,100%,Isle of Man,3.0,f +17805,100%,Zimbabwe,1.0,f +37888,89%,Niger,79.0,f +37888,89%,Niger,79.0,f +31728,100%,,1.0,f +10647,100%,Uruguay,2.0,f +37888,89%,Niger,79.0,f +37888,89%,Niger,79.0,f +37888,89%,Niger,79.0,f +364,,,4.0,f +37888,89%,Niger,79.0,f +44406,100%,,2.0,f +44406,100%,,2.0,f +309,,Ecuador,1.0,f +4206,100%,Sao Tome and Principe,2.0,f +9464,100%,Barbados,1.0,f +37888,89%,Niger,79.0,f +37888,89%,Niger,79.0,f +37888,89%,Niger,79.0,f +37888,89%,Niger,79.0,f +37412,100%,Canada,1.0,f +11384,90%,Sao Tome and Principe,2.0,f +11672,100%,Kiribati,6.0,t +39194,,Ghana,1.0,t +47775,100%,French Guiana,6.0,f +44712,,Nicaragua,1.0,f +7812,100%,Bosnia and Herzegovina,8.0,f +11255,93%,Suriname,41.0,f +30456,78%,Uzbekistan,1.0,f +31815,100%,El Salvador,1.0,f +42286,94%,Vietnam,9.0,t +26576,100%,Nicaragua,1.0,f +47654,83%,Turkmenistan,1.0,f +36750,100%,Jersey,3.0,f +32747,60%,Malawi,1.0,f +26899,,Rwanda,1.0,f +9363,95%,Ukraine,50.0,f +21792,,Palestinian Territory,1.0,f +4291,100%,Micronesia,1.0,f +39109,77%,Ukraine,24.0,t +42908,90%,,2.0,f +6232,,Guinea,15.0,t +41043,100%,Bosnia and Herzegovina,11.0,f +38021,100%,Bahrain,2.0,f +27177,,,1.0,f +12871,100%,,1.0,f +18072,99%,Montserrat,37.0,f +36206,86%,Russian Federation,10.0,f +18077,100%,Sao Tome and Principe,139.0,f +3417,,Fiji,32.0,t +7812,100%,Bosnia and Herzegovina,8.0,f +49172,100%,Ecuador,2.0,f +36032,,,1.0,f +1962,100%,,7.0,f +44970,91%,Russian Federation,1.0,f +1870,,Gambia,1.0,t +15847,,Uganda,13.0,f +346,,,1.0,f +49649,100%,Russian Federation,4.0,f +24126,100%,Turkmenistan,1.0,t +22905,100%,Niue,3.0,f +44683,100%,,1.0,f +42281,100%,Marshall Islands,39.0,f +11340,50%,,5.0,f +35720,100%,,2.0,f +33269,,Ecuador,4.0,f +36716,100%,Bosnia and Herzegovina,3.0,f +13937,100%,Isle of Man,1.0,f +36317,,Uzbekistan,1.0,f +2650,100%,Kiribati,2.0,f +40372,100%,Costa Rica,2.0,f +27516,,Papua New Guinea,1.0,t +47863,,Greenland,1.0,f +10496,,Faroe Islands,1.0,t +19298,89%,Croatia,2.0,f +22445,96%,,2.0,f +33003,100%,Reunion,4.0,f +38728,100%,,1.0,f +16573,100%,Cuba,2.0,f +49859,0%,Nicaragua,6.0,f +18290,100%,,2.0,f +15332,100%,Anguilla,9.0,f +27245,90%,Costa Rica,2.0,f +49565,92%,Uganda,14.0,f +28869,,Antarctica (the territory South of 60 deg S),172.0,f +31751,100%,Nicaragua,29.0,f +43540,72%,Bosnia and Herzegovina,25.0,f +26320,92%,Sao Tome and Principe,4.0,f +17619,74%,Ghana,14.0,f +6783,,,1.0,f +45061,,Montserrat,1.0,f +31491,100%,Isle of Man,3.0,f +31035,100%,Sao Tome and Principe,3.0,f +49595,,,3.0,f +49595,,,3.0,f +10614,100%,Vanuatu,1.0,f +26719,,Indonesia,2.0,f +49607,100%,Niue,1.0,f +36969,100%,,4.0,f +7170,100%,Russian Federation,1.0,f +48647,90%,Montserrat,3.0,f +38603,,Niue,1.0,f +3209,,Niue,1.0,f +42352,,Brazil,1.0,f +42577,100%,Uganda,1.0,f +10306,80%,Denmark,1.0,f +36969,100%,,4.0,f +18077,100%,Sao Tome and Principe,139.0,f +5420,100%,Tonga,41.0,f +25147,99%,Niger,48.0,f +36969,100%,,4.0,f +43286,,Fiji,8.0,t +43071,100%,Maldives,14.0,f +36969,100%,,4.0,f +3265,100%,Sao Tome and Principe,1.0,f +49398,88%,Barbados,18.0,t +17357,100%,El Salvador,1.0,f +886,100%,Faroe Islands,1.0,f +25414,90%,Gambia,2.0,f +25147,99%,Niger,48.0,f +40372,100%,Costa Rica,2.0,f +49600,30%,,1.0,t +28772,100%,Niger,15.0,t +36363,82%,Marshall Islands,5.0,f +670,100%,Uzbekistan,1.0,t +13765,100%,Gambia,2.0,f +28033,100%,,3.0,f +3274,86%,Barbados,24.0,f +28033,100%,,3.0,f +38832,97%,,15.0,f +28033,100%,,3.0,f +9912,,,1.0,t +5479,100%,,3.0,f +22111,100%,Sao Tome and Principe,2.0,f +1502,100%,Uzbekistan,1.0,f +5479,100%,,3.0,f +35872,100%,Faroe Islands,2.0,t +5479,100%,,3.0,f +4788,,Tonga,7.0,f +18284,,,2.0,f +24411,100%,Ukraine,1.0,f +29598,100%,Niue,1.0,f +25147,99%,Niger,48.0,f +43982,100%,Denmark,2.0,f +46856,,Greenland,2.0,f +16085,100%,,3.0,f +32838,,Croatia,1.0,f +16085,100%,,3.0,f +16085,100%,,3.0,f +14251,100%,Niue,1.0,t +19066,100%,,1.0,f +3274,86%,Barbados,24.0,f +17394,0%,Nicaragua,49.0,f +32834,100%,Faroe Islands,2.0,f +19855,100%,Kiribati,37.0,t +31172,87%,Netherlands Antilles,2.0,f +46261,100%,Andorra,3.0,t +41875,90%,France,2.0,f +1429,,Micronesia,2.0,f +205,100%,,2.0,f +29037,100%,Marshall Islands,1.0,f +37693,,Bouvet Island (Bouvetoya),2.0,t +10852,,Costa Rica,1.0,t +10769,80%,Denmark,1.0,f +22893,,Faroe Islands,1.0,t +5055,88%,Guernsey,1.0,f +39822,100%,Togo,3.0,f +20081,95%,Senegal,2.0,f +37826,,,1.0,f +49341,100%,Papua New Guinea,1.0,t +30722,100%,Tanzania,1.0,f +45328,97%,Kiribati,10.0,f +25185,100%,United Kingdom,2.0,f +13577,90%,Brazil,2.0,f +5635,90%,Denmark,1.0,f +31423,,Russian Federation,1.0,f +48418,98%,Bosnia and Herzegovina,30.0,f +19662,100%,,1.0,f +35975,67%,Saint Helena,1.0,t +12675,100%,Brazil,2.0,t +42633,100%,Chad,3.0,t +5815,,Cocos (Keeling) Islands,1.0,f +45998,75%,Nicaragua,1.0,f +43973,,,1.0,f +19099,,Lebanon,1.0,f +23175,100%,Costa Rica,1.0,t +6943,,Gambia,1.0,f +4097,100%,Croatia,7.0,f +12812,99%,Croatia,32.0,f +12812,99%,Croatia,32.0,f +2954,100%,Denmark,5.0,t +46257,100%,,5.0,f +14096,100%,Malta,1.0,t +42348,100%,Gambia,2.0,f +24338,100%,El Salvador,2.0,f +33242,100%,Uzbekistan,3.0,t +22298,100%,Kiribati,3.0,f +36768,100%,Guinea,2.0,f +37888,89%,Niger,79.0,f +15428,100%,,1.0,t +37888,89%,Niger,79.0,f +37888,89%,Niger,79.0,f +37888,89%,Niger,79.0,f +37888,89%,Niger,79.0,f +49595,,,3.0,f +4053,,Ecuador,6.0,f +31930,,Anguilla,2.0,f +17215,97%,Maldives,9.0,f +20015,100%,Maldives,1.0,t +46691,90%,Uzbekistan,38.0,f +24686,100%,Isle of Man,1.0,f +28772,100%,Niger,15.0,t +38021,100%,Bahrain,2.0,f +37888,89%,Niger,79.0,f +34154,100%,,2.0,t +37888,89%,Niger,79.0,f +37888,89%,Niger,79.0,f +37888,89%,Niger,79.0,f +10158,100%,Ukraine,6.0,t +46088,,Ghana,15.0,f +22762,100%,Lebanon,1.0,f +23854,,Uzbekistan,15.0,f +25147,99%,Niger,48.0,f +22522,100%,France,3.0,t +4267,100%,Senegal,22.0,t +17906,80%,Sao Tome and Principe,1.0,f +42683,,Uzbekistan,5.0,f +36658,94%,China,20.0,t +23067,90%,El Salvador,2.0,f +26467,,,1.0,f +23963,100%,,1.0,f +37888,89%,Niger,79.0,f +48117,98%,Ukraine,41.0,f +39927,,France,1.0,f +49943,100%,,1.0,f +37888,89%,Niger,79.0,f +4152,100%,Rwanda,1.0,f +29647,100%,Peru,1305.0,f +4466,100%,Niue,3.0,t +39412,0%,Reunion,3.0,f +36299,100%,Rwanda,13.0,t +13847,100%,Turks and Caicos Islands,14.0,f +4379,100%,Kiribati,1.0,f +17383,100%,,1.0,f +29518,100%,Uganda,1.0,t +30573,100%,Brazil,1.0,f +7812,100%,Bosnia and Herzegovina,8.0,f +38873,100%,Mauritania,4.0,f +13847,100%,Turks and Caicos Islands,14.0,f +49756,100%,Micronesia,1.0,t +7812,100%,Bosnia and Herzegovina,8.0,f +4522,,El Salvador,1.0,f +13847,100%,Turks and Caicos Islands,14.0,f +13847,100%,Turks and Caicos Islands,14.0,f +39313,,Tonga,1.0,t +13847,100%,Turks and Caicos Islands,14.0,f +13847,100%,Turks and Caicos Islands,14.0,f +46691,90%,Uzbekistan,38.0,f +6971,90%,,3.0,f +6971,90%,,3.0,f +19766,40%,Monaco,3.0,f +25752,,Denmark,1.0,t +6971,90%,,3.0,f +11340,50%,,5.0,f +13847,100%,Turks and Caicos Islands,14.0,f +20317,,Nicaragua,1.0,f +35395,,Russian Federation,1.0,f +39286,100%,,1.0,f +13847,100%,Turks and Caicos Islands,14.0,f +43590,100%,Costa Rica,9.0,f +13847,100%,Turks and Caicos Islands,14.0,f +27059,100%,Niue,1.0,f +49459,100%,Guinea,1.0,f +3869,100%,Bouvet Island (Bouvetoya),2.0,f +13847,100%,Turks and Caicos Islands,14.0,f +19217,98%,Marshall Islands,46.0,f +2466,,Solomon Islands,1.0,f +1472,100%,Chile,2.0,f +17030,100%,Croatia,5.0,f +23854,,Uzbekistan,15.0,f +47514,100%,Philippines,1.0,f +40081,100%,,1.0,f +8622,100%,,1.0,f +3274,86%,Barbados,24.0,f +23854,,Uzbekistan,15.0,f +19589,100%,,3.0,f +48409,,Estonia,60.0,t +10711,93%,Uganda,108.0,t +42310,100%,Ecuador,6.0,t +10969,100%,Tanzania,1.0,f +10711,93%,Uganda,108.0,t +15443,,Svalbard & Jan Mayen Islands,1.0,t +28474,,Faroe Islands,1.0,t +893,100%,,1.0,f +44338,100%,Peru,2.0,t +34743,,French Guiana,1.0,f +49985,90%,Wallis and Futuna,1.0,t +20283,100%,Denmark,1.0,f +39224,,Guinea,2.0,f +30918,,Zimbabwe,1.0,f +6035,,Afghanistan,1.0,f +24919,100%,Estonia,4.0,f +37646,100%,Estonia,60.0,f +12243,100%,El Salvador,3.0,t +19410,100%,,1.0,f +4169,,Vanuatu,1.0,f +31751,100%,Nicaragua,29.0,f +41372,,Indonesia,2.0,t +42842,,Venezuela,1.0,f +37546,100%,Rwanda,3.0,f +13438,100%,,2.0,f +22068,100%,Rwanda,3.0,f +22068,100%,Rwanda,3.0,f +46101,100%,Zimbabwe,1.0,t +11799,,,1.0,f +21260,100%,Chile,2.0,f +25147,99%,Niger,48.0,f +21260,100%,Chile,2.0,f +12070,100%,Vanuatu,1.0,f +48321,100%,China,17.0,f +23373,0%,Sao Tome and Principe,1.0,f +37888,89%,Niger,79.0,f +8884,67%,China,3.0,f +6790,,Guinea,1.0,t +37888,89%,Niger,79.0,f +37888,89%,Niger,79.0,f +17401,100%,Russian Federation,4.0,f +15746,83%,China,3.0,f +37888,89%,Niger,79.0,f +37888,89%,Niger,79.0,f +37888,89%,Niger,79.0,f +12747,,Faroe Islands,1.0,f +18878,67%,Netherlands,1.0,f +35968,,,2.0,f +37888,89%,Niger,79.0,f +37888,89%,Niger,79.0,f +37888,89%,Niger,79.0,f +37888,89%,Niger,79.0,f +25344,90%,Faroe Islands,8.0,f +29647,100%,Peru,1305.0,f +21033,,Rwanda,2.0,t +49662,100%,Tonga,1.0,f +40405,0%,Tonga,1.0,f +23769,100%,Denmark,2.0,f +36146,,Kenya,1.0,f +24502,78%,Tonga,1.0,f +42634,100%,Tanzania,1.0,f +24142,100%,El Salvador,1.0,f +41005,100%,Ukraine,4.0,f +18935,100%,Denmark,1.0,t +32203,100%,Barbados,176.0,f +17332,100%,Faroe Islands,1.0,f +13960,100%,,4.0,f +14393,100%,Indonesia,1.0,t +35894,100%,,1.0,f +3791,100%,Uganda,4.0,f +39143,89%,,33.0,f +39143,89%,,33.0,f +6024,90%,,1.0,f +14327,100%,Gambia,2.0,t +3835,,,1.0,f +25147,99%,Niger,48.0,f +5756,100%,Philippines,2.0,f +14327,100%,Gambia,2.0,t +43642,90%,Denmark,6.0,f +18077,100%,Sao Tome and Principe,139.0,f +43985,,Philippines,1.0,t +10711,93%,Uganda,108.0,t +33702,100%,Guernsey,1.0,f +44278,90%,Turkmenistan,3.0,t +8959,,,1.0,f +44278,90%,Turkmenistan,3.0,t +28315,,Puerto Rico,1.0,f +302,100%,Tunisia,20.0,f +44529,100%,Denmark,1.0,f +5802,100%,France,3.0,t +9363,95%,Ukraine,50.0,f +30943,100%,United Kingdom,1.0,t +30244,100%,Uzbekistan,2.0,f +18320,50%,Reunion,19.0,t +40010,100%,Guinea,2.0,t +19298,89%,Croatia,2.0,f +1508,90%,Gambia,3.0,f +10020,90%,China,5.0,f +11386,100%,Faroe Islands,3.0,f +22640,,Rwanda,8.0,t +22155,100%,Estonia,4.0,f +46212,100%,China,4.0,f +49300,100%,Uzbekistan,1.0,f +46586,100%,Bosnia and Herzegovina,12.0,f +18077,100%,Sao Tome and Principe,139.0,f +27443,100%,Guinea,3.0,f +27263,80%,China,5.0,f +48114,80%,China,3.0,t +5738,100%,,2.0,f +34772,,Congo,1.0,f +22130,100%,Svalbard & Jan Mayen Islands,1.0,f +3151,,Finland,2.0,t +3869,100%,Bouvet Island (Bouvetoya),2.0,f +1304,100%,Montserrat,2.0,f +27799,100%,,1.0,f +33955,,Sao Tome and Principe,1.0,f +47779,30%,Gibraltar,1.0,f +35156,100%,,2.0,f +40216,100%,Montserrat,2.0,f +25147,99%,Niger,48.0,f +29468,,,1.0,t +48843,100%,,1.0,f +33625,100%,Papua New Guinea,1.0,f +18077,100%,Sao Tome and Principe,139.0,f +22298,100%,Kiribati,3.0,f +3790,100%,Netherlands,16.0,f +36524,100%,Saint Helena,8.0,t +24737,100%,Monaco,1.0,f +1479,,,1.0,f +22298,100%,Kiribati,3.0,f +48568,100%,Vanuatu,2.0,t +25147,99%,Niger,48.0,f +7834,94%,Mexico,13.0,f +25147,99%,Niger,48.0,f +686,97%,Micronesia,7.0,t +47274,100%,Tonga,48.0,f +25538,,Tanzania,1.0,f +21339,,,1.0,f +7109,100%,Malta,1.0,f +36911,100%,Portugal,2.0,f +12913,,Faroe Islands,1.0,f +20334,99%,Niger,171.0,t +30079,100%,Mauritania,1.0,f +20334,99%,Niger,171.0,t +20334,99%,Niger,171.0,t +20334,99%,Niger,171.0,t +12470,100%,,1.0,f +47790,,Russian Federation,1.0,f +19146,100%,,2.0,f +10711,93%,Uganda,108.0,t +37639,100%,Nauru,11.0,f +5656,,Niue,2.0,f +43916,,,1.0,t +28414,100%,Uzbekistan,22.0,f +11631,100%,,1.0,f +34667,100%,,2.0,f +30211,,Faroe Islands,1.0,f +35246,100%,,2.0,f +6499,100%,,1.0,f +11978,90%,Denmark,3.0,f +27768,65%,Kiribati,15.0,t +6956,100%,,1.0,f +37728,,Montserrat,1.0,f +34895,100%,Estonia,16.0,t +42161,100%,,1.0,f +33933,100%,Papua New Guinea,3.0,f +23134,90%,,1.0,f +31751,100%,Nicaragua,29.0,f +31751,100%,Nicaragua,29.0,f +18237,,,2.0,f +31751,100%,Nicaragua,29.0,f +31751,100%,Nicaragua,29.0,f +31751,100%,Nicaragua,29.0,f +11823,70%,,7.0,f +34567,100%,Lebanon,1.0,t +3706,100%,,3.0,t +3706,100%,,3.0,t +4362,90%,France,1.0,f +284,100%,,1.0,f +28828,100%,Isle of Man,198.0,t +24919,100%,Estonia,4.0,f +12551,100%,Niger,3.0,f +20263,99%,Maldives,35.0,t +20263,99%,Maldives,35.0,t +26156,100%,,1.0,t +36539,,Micronesia,1.0,f +42705,100%,,1.0,t +34357,100%,Montserrat,3.0,f +28114,97%,Bouvet Island (Bouvetoya),16.0,f +49018,,Tanzania,1.0,t +21715,,,1.0,f +19214,100%,Senegal,55.0,f +19958,100%,Congo,40.0,t +24953,100%,,1.0,t +2739,,,1.0,f +48041,100%,Cocos (Keeling) Islands,1.0,t +19214,100%,Senegal,55.0,f +46994,,Malta,1.0,f +27843,100%,Costa Rica,1.0,t +19159,0%,Nicaragua,3.0,t +6051,100%,Pakistan,2.0,f +41306,,Guinea,1.0,f +27632,,Papua New Guinea,1.0,f +28082,100%,Turkmenistan,2.0,t +36611,71%,Maldives,14.0,f +5401,100%,Lebanon,2.0,f +2137,100%,Micronesia,1.0,f +23120,,Togo,1.0,f +39998,100%,Micronesia,4.0,t +36424,63%,Slovakia (Slovak Republic),12.0,f +956,100%,Nicaragua,3.0,t +46705,100%,,1.0,f +10642,100%,Guinea,1.0,f +28869,,Antarctica (the territory South of 60 deg S),172.0,f +1907,100%,Russian Federation,2.0,f +48228,100%,Greenland,2.0,f +43869,100%,Isle of Man,1.0,f +14473,100%,Anguilla,1.0,f +20401,,Niue,1.0,t +26558,100%,Micronesia,2.0,t +4692,100%,Isle of Man,3.0,t +38019,100%,Afghanistan,10.0,f +38019,100%,Afghanistan,10.0,f +28895,100%,,2.0,f +28895,100%,,2.0,f +28164,100%,,3.0,f +28164,100%,,3.0,f +10942,96%,Uganda,3.0,f +28164,100%,,3.0,f +2168,100%,Nicaragua,5.0,f +27399,100%,,4.0,f +35522,100%,Kiribati,10.0,f +38137,99%,Zimbabwe,16.0,f +44109,100%,United Kingdom,20.0,f +47889,100%,Turkmenistan,2.0,f +20165,94%,Ukraine,30.0,f +48658,100%,Kiribati,1.0,f +20083,100%,,1.0,t +12464,,Chile,5.0,t +35522,100%,Kiribati,10.0,f +17875,100%,,1.0,t +23854,,Uzbekistan,15.0,f +23915,,Cocos (Keeling) Islands,1.0,t +5380,100%,Reunion,1.0,f +25630,100%,Anguilla,1.0,t +35690,82%,,2.0,f +16857,100%,,1.0,f +27215,100%,Reunion,1.0,t +21039,100%,Vanuatu,1.0,f +35690,82%,,2.0,f +31446,100%,Faroe Islands,9.0,f +26422,,Malta,2.0,t +38270,100%,Maldives,6.0,f +14941,100%,Cocos (Keeling) Islands,1.0,f +9694,,Sao Tome and Principe,1.0,t +26051,,Niue,7.0,f +43752,,France,1.0,f +43942,100%,Reunion,1.0,t +33436,100%,,1.0,f +19214,100%,Senegal,55.0,f +39681,90%,Nicaragua,3.0,t +6997,100%,Malawi,1.0,t +19214,100%,Senegal,55.0,f +29738,,Isle of Man,1.0,t +15776,100%,Zimbabwe,1.0,t +14939,,French Guiana,1.0,f +21561,,,1.0,f +737,,Ukraine,4.0,f +15552,,,2.0,f +47982,100%,Denmark,7.0,f +892,100%,,2.0,t +46149,100%,,1.0,f +19868,100%,Chad,1.0,f +19023,100%,Anguilla,1.0,f +44621,100%,Jersey,1.0,f +45617,100%,Monaco,2.0,f +38623,50%,Croatia,2.0,f +45949,100%,Jersey,1.0,f +22973,100%,,2.0,f +8691,,French Guiana,1.0,t +44264,100%,Isle of Man,1.0,f +43527,,France,1.0,f +15784,,Tunisia,1.0,f +17587,80%,Peru,1.0,t +13990,100%,,2.0,f +23854,,Uzbekistan,15.0,f +23854,,Uzbekistan,15.0,f +44300,100%,Netherlands,1.0,t +39634,100%,Gambia,1.0,f +19214,100%,Senegal,55.0,f +23854,,Uzbekistan,15.0,f +48840,100%,Uzbekistan,9.0,f +7533,50%,Faroe Islands,1.0,f +24919,100%,Estonia,4.0,f +4525,98%,El Salvador,9.0,t +24826,100%,Faroe Islands,1.0,f +18864,100%,Russian Federation,1.0,f +15279,,Afghanistan,22.0,t +6068,100%,Marshall Islands,1.0,f +28869,,Antarctica (the territory South of 60 deg S),172.0,f +40793,100%,,75.0,t +18031,100%,Reunion,4.0,f +26386,100%,Fiji,25.0,t +25147,99%,Niger,48.0,f +5860,,Gambia,1.0,f +7894,100%,Ukraine,10.0,f +12978,100%,,1.0,f +18031,100%,Reunion,4.0,f +45798,100%,,4.0,f +542,90%,Monaco,1.0,t +25147,99%,Niger,48.0,f +20334,99%,Niger,171.0,t +12300,,France,1.0,t +581,100%,Russian Federation,2.0,t +26386,100%,Fiji,25.0,t +13202,87%,Uganda,3.0,f +47051,100%,Zimbabwe,1.0,t +1044,100%,Uganda,1.0,f +15659,100%,Tonga,1.0,t +26386,100%,Fiji,25.0,t +801,100%,Guernsey,1.0,f +33876,,Denmark,1.0,f +23492,100%,,1.0,t +18484,100%,Gambia,108.0,f +5156,100%,Sao Tome and Principe,1.0,f +11567,100%,Niger,31.0,t +40426,100%,Wallis and Futuna,1.0,f +39707,100%,Gambia,1.0,t +47594,100%,Kenya,17.0,t +5890,,China,1.0,f +44207,80%,Djibouti,8.0,t +25147,99%,Niger,48.0,f +41043,100%,Bosnia and Herzegovina,11.0,f +20334,99%,Niger,171.0,t +25147,99%,Niger,48.0,f +37797,100%,,1.0,t +48101,,Sao Tome and Principe,1.0,f +24215,,China,1.0,f +39469,100%,Micronesia,11.0,t +39143,89%,,33.0,f +32641,,Tonga,1.0,f +3624,100%,Indonesia,1.0,f +36611,71%,Maldives,14.0,f +28869,,Antarctica (the territory South of 60 deg S),172.0,f +10869,100%,,1.0,f +19799,100%,Guinea,2.0,f +25857,,Reunion,1.0,f +9203,100%,United Kingdom,1.0,f +33586,100%,Barbados,1.0,f +30537,100%,Tonga,3.0,t +23662,100%,Vanuatu,3.0,f +29971,,,1.0,t +36816,100%,Svalbard & Jan Mayen Islands,1.0,f +27086,100%,Lebanon,1.0,f +49172,100%,Ecuador,2.0,f +49315,,,1.0,f +43624,,Russian Federation,1.0,f +24521,100%,United Kingdom,2.0,t +40650,,,8.0,t +26878,80%,Monaco,2.0,t +34672,,,1.0,f +4639,100%,Monaco,3.0,t +34893,100%,,1.0,f +6332,100%,Uzbekistan,21.0,t +42031,100%,,5.0,t +37241,100%,Russian Federation,1.0,f +33933,100%,Papua New Guinea,3.0,f +11376,100%,Togo,1.0,t +19019,97%,Nicaragua,1484.0,f +19019,97%,Nicaragua,1484.0,f +27399,100%,,4.0,f +27399,100%,,4.0,f +44559,100%,,1.0,t +27399,100%,,4.0,f +1080,70%,,2.0,f +2923,,Chad,1.0,f +19019,97%,Nicaragua,1484.0,f +24381,,,2.0,f +38279,93%,Mauritania,8.0,t +16249,100%,Barbados,2.0,f +37546,100%,Rwanda,3.0,f +505,100%,,3.0,f +505,100%,,3.0,f +505,100%,,3.0,f +34950,,Niue,1.0,f +41572,88%,,1.0,f +41706,100%,,1.0,f +43071,100%,Maldives,14.0,f +12660,,,2.0,f +12660,,,2.0,f +27564,100%,Bahrain,1.0,f +3673,100%,,3.0,f +3673,100%,,3.0,f +3673,100%,,3.0,f +28869,,Antarctica (the territory South of 60 deg S),172.0,f +25477,,Lebanon,2.0,t +25867,,Chile,1.0,f +42908,90%,,2.0,f +34162,,,2.0,f +4330,94%,Ukraine,60.0,t +49526,100%,Gambia,4.0,f +44115,,Isle of Man,1.0,f +32038,100%,Indonesia,35.0,f +4316,100%,Micronesia,18.0,f +16909,60%,Denmark,1.0,t +18164,100%,Marshall Islands,5.0,f +49526,100%,Gambia,4.0,f +12593,100%,Reunion,2.0,f +25147,99%,Niger,48.0,f +32516,100%,,1.0,f +20239,100%,,1.0,f +21908,100%,Niue,49.0,f +29521,,Gambia,4.0,t +27822,100%,Russian Federation,2.0,f +23229,,Faroe Islands,2.0,f +35063,100%,,2.0,t +12938,92%,Reunion,12.0,f +36086,100%,Sao Tome and Principe,4.0,t +29123,100%,Zimbabwe,16.0,t +38279,93%,Mauritania,8.0,t +38279,93%,Mauritania,8.0,t +38279,93%,Mauritania,8.0,t +22873,100%,,1.0,f +6482,100%,Tonga,3.0,f +17789,94%,Reunion,6.0,f +41365,75%,,1.0,f +19661,100%,Malawi,1.0,f +17789,94%,Reunion,6.0,f +48791,97%,Uzbekistan,5.0,t +8067,100%,Vanuatu,1.0,f +1697,100%,,1.0,f +48989,100%,Isle of Man,1.0,t +20539,100%,Chad,5.0,f +16688,,,1.0,f +25147,99%,Niger,48.0,f +32038,100%,Indonesia,35.0,f +24033,100%,Uganda,45.0,f +45550,,Puerto Rico,1.0,f +49565,92%,Uganda,14.0,f +25232,,,1.0,f +29887,100%,Kenya,1.0,f +13323,,,2.0,t +24980,67%,,5.0,f +28869,,Antarctica (the territory South of 60 deg S),172.0,f +17463,,,1.0,t +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +49649,100%,Russian Federation,4.0,f +46797,100%,Zimbabwe,3.0,t +47889,100%,Turkmenistan,2.0,f +40202,100%,,2.0,f +1752,50%,Niue,1.0,f +13834,,Kiribati,9.0,f +19539,100%,,1.0,f +17507,100%,Guinea,6.0,f +6874,100%,Guinea,2.0,f +27424,100%,,2.0,f +29059,100%,,1.0,t +31454,,,1.0,f +48469,100%,Puerto Rico,4.0,f +46830,100%,,2.0,f +46830,100%,,2.0,f +17507,100%,Guinea,6.0,f +3524,100%,Ghana,5.0,f +34306,91%,Wallis and Futuna,30.0,t +17507,100%,Guinea,6.0,f +14063,100%,Denmark,10.0,t +29788,100%,,1.0,f +13900,,Sao Tome and Principe,1.0,f +46810,,Micronesia,1.0,t +10126,,Malta,1.0,f +36367,100%,Palestinian Territory,3.0,f +34723,100%,Peru,12.0,f +13403,96%,Maldives,21.0,t +37294,,Montserrat,2.0,f +15973,100%,,1.0,f +37384,,,1.0,t +24350,100%,,6.0,t +30794,100%,Barbados,5.0,t +13457,100%,Denmark,1.0,t +42635,100%,Nicaragua,1.0,f +32038,100%,Indonesia,35.0,f +33159,,,1.0,f +11371,100%,,1.0,f +45617,100%,Monaco,2.0,f +28869,,Antarctica (the territory South of 60 deg S),172.0,f +49313,,Somalia,1.0,t +25597,,,5.0,f +37074,50%,Switzerland,2.0,f +25597,,,5.0,f +25597,,,5.0,f +25597,,,5.0,f +25597,,,5.0,f +28869,,Antarctica (the territory South of 60 deg S),172.0,f +35598,100%,France,2.0,f +1465,100%,Barbados,1.0,f +6869,80%,,1.0,f +43720,95%,Gambia,2.0,f +32977,100%,,2.0,f +32446,33%,,2.0,f +29230,,,1.0,f +37888,89%,Niger,79.0,f +37888,89%,Niger,79.0,f +37888,89%,Niger,79.0,f +46774,100%,El Salvador,1.0,f +19631,100%,,1.0,f +29003,100%,Russian Federation,1.0,f +45501,100%,Kiribati,7.0,f +42502,100%,Philippines,2.0,f +27408,100%,Russian Federation,2.0,t +48409,,Estonia,60.0,t +48344,,Faroe Islands,1.0,t +26419,100%,Barbados,6.0,f +37831,91%,Micronesia,2.0,f +32398,100%,Turkmenistan,1.0,f +38282,,Tonga,5.0,f +12812,99%,Croatia,32.0,f +48409,,Estonia,60.0,t +47531,100%,,2.0,f +25147,99%,Niger,48.0,f +47595,100%,Nauru,4.0,f +48409,,Estonia,60.0,t +6295,,Niue,2.0,f +48133,,Isle of Man,45.0,f +29019,100%,,1.0,f +28586,100%,,1.0,f +8091,97%,Cuba,10.0,f +32319,70%,,1.0,t +30780,60%,French Guiana,1.0,f +20688,100%,Indonesia,1.0,t +8091,97%,Cuba,10.0,f +8091,97%,Cuba,10.0,f +5655,80%,Zimbabwe,3.0,t +16644,67%,,2.0,t +18451,100%,Svalbard & Jan Mayen Islands,1.0,f +11105,100%,,1.0,f +978,95%,Lithuania,29.0,f +3045,100%,Rwanda,2.0,f +7943,100%,,1.0,t +40027,,Cape Verde,1.0,f +17445,100%,Lebanon,1.0,f +5492,100%,Gambia,1.0,t +28221,100%,Jersey,1.0,f +20334,99%,Niger,171.0,t +10711,93%,Uganda,108.0,t +40793,100%,,75.0,t +34881,100%,China,6.0,f +25147,99%,Niger,48.0,f +35659,,,1.0,f +19855,100%,Kiribati,37.0,t +49689,100%,Niger,6.0,f +34306,91%,Wallis and Futuna,30.0,t +10520,,,1.0,f +6882,100%,,1.0,t +11634,,Rwanda,2.0,f +38564,,Australia,4.0,f +27654,,,1.0,f +19019,97%,Nicaragua,1484.0,f +19019,97%,Nicaragua,1484.0,f +19019,97%,Nicaragua,1484.0,f +46833,90%,Faroe Islands,1.0,f +14064,100%,Australia,1.0,f +6339,,Marshall Islands,1.0,f +39358,100%,Kiribati,2.0,f +21791,,Gambia,1.0,f +39041,90%,,1.0,f +48467,100%,Guinea,1.0,f +226,100%,Maldives,2.0,f +38685,100%,Niue,2.0,f +21539,,Sao Tome and Principe,1.0,t +45905,100%,Sao Tome and Principe,3.0,t +38685,100%,Niue,2.0,f +30923,,,1.0,f +302,100%,Tunisia,20.0,f +19019,97%,Nicaragua,1484.0,f +39965,100%,Tonga,3.0,t +35036,100%,Anguilla,1.0,f +44169,97%,Portugal,39.0,f +19214,100%,Senegal,55.0,f +26230,,France,3.0,f +13960,100%,,4.0,f +4330,94%,Ukraine,60.0,t +27056,100%,Kenya,4.0,f +29028,100%,Chad,2.0,t +404,90%,Uzbekistan,1.0,f +13411,,Lebanon,2.0,t +5989,100%,,1.0,f +27,,Faroe Islands,1.0,f +24798,,United Kingdom,1.0,f +2168,100%,Nicaragua,5.0,f +40303,100%,Guinea,82.0,f +32214,0%,Indonesia,1.0,f +32289,100%,Isle of Man,1.0,f +42706,,Russian Federation,1.0,f +48133,,Isle of Man,45.0,f +2658,100%,Pakistan,1.0,f +42609,100%,Niue,1.0,t +2743,97%,China,23.0,f +12546,100%,Lebanon,1.0,f +38701,40%,Niger,27.0,f +2151,100%,Zimbabwe,1.0,t +22244,100%,Finland,6.0,t +18484,100%,Gambia,108.0,f +18876,60%,Netherlands,26.0,f +3790,100%,Netherlands,16.0,f +28786,100%,,2.0,t +48133,,Isle of Man,45.0,f +20334,99%,Niger,171.0,t +25687,100%,Anguilla,17.0,f +48133,,Isle of Man,45.0,f +20297,80%,Montserrat,17.0,f +48409,,Estonia,60.0,t +29647,100%,Peru,1305.0,f +39063,100%,Reunion,1.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +3879,100%,Anguilla,6.0,f +40867,,Malta,1.0,f +32981,100%,,1.0,f +22950,,United Kingdom,2.0,t +40793,100%,,75.0,t +11548,,Micronesia,1.0,f +35189,,Lebanon,1.0,f +25687,100%,Anguilla,17.0,f +27560,100%,Malta,1.0,t +39934,100%,,1.0,f +14308,100%,Anguilla,1.0,f +29681,83%,Sao Tome and Principe,1.0,f +37917,100%,Nauru,1.0,f +33704,,Monaco,1.0,f +38701,40%,Niger,27.0,f +6147,0%,,1.0,f +32311,100%,Maldives,5.0,f +32311,100%,Maldives,5.0,f +32311,100%,Maldives,5.0,f +32311,100%,Maldives,5.0,f +9363,95%,Ukraine,50.0,f +32311,100%,Maldives,5.0,f +28976,,Saint Helena,3.0,f +35580,,France,1.0,f +19905,97%,Monaco,8.0,f +25298,100%,Jersey,1.0,f +12163,,Faroe Islands,1.0,f +29469,78%,,3.0,f +29469,78%,,3.0,f +29469,78%,,3.0,f +18660,100%,,1.0,f +49429,99%,Bosnia and Herzegovina,49.0,f +4153,50%,,2.0,f +40127,,Faroe Islands,2.0,t +33250,,,1.0,f +3502,100%,Niue,1.0,f +43496,100%,Montserrat,18.0,t +18077,100%,Sao Tome and Principe,139.0,f +29552,100%,Jersey,1.0,f +46644,100%,Finland,1.0,f +19359,,,2.0,t +14619,100%,,1.0,f +7834,94%,Mexico,13.0,f +12143,,Faroe Islands,1.0,f +26587,100%,,2.0,f +26587,100%,,2.0,f +10883,100%,Niger,8.0,t +12932,100%,,2.0,t +13553,93%,Vietnam,5.0,f +24803,,,1.0,t +13540,100%,Uganda,2.0,f +38564,,Australia,4.0,f +34634,,,1.0,f +5240,,,2.0,f +17508,,,1.0,f +38564,,Australia,4.0,f +38318,100%,San Marino,1.0,f +38564,,Australia,4.0,f +45267,,Lebanon,2.0,f +28296,89%,Maldives,3.0,t +42764,100%,Guernsey,13.0,t +22754,100%,Isle of Man,3.0,t +5179,,,12.0,f +7296,100%,Zimbabwe,2.0,t +13586,100%,,1.0,f +6711,100%,Spain,3.0,f +19880,100%,Greenland,1.0,f +24633,,Chad,3.0,t +6984,100%,Suriname,9.0,f +10718,100%,Guinea,6.0,f +10576,100%,Micronesia,2.0,f +37706,,United Kingdom,1.0,f +44498,100%,,1.0,f +1577,100%,Peru,8.0,t +10134,100%,Uzbekistan,7.0,t +20334,99%,Niger,171.0,t +17928,,Malta,1.0,t +20334,99%,Niger,171.0,t +20334,99%,Niger,171.0,t +27443,100%,Guinea,3.0,f +36882,90%,,25.0,f +28006,100%,Anguilla,1.0,t +42197,100%,,1.0,t +16930,,Nauru,14.0,f +49429,99%,Bosnia and Herzegovina,49.0,f +29207,100%,Guinea,1.0,f +5646,90%,Tonga,1.0,t +28114,97%,Bouvet Island (Bouvetoya),16.0,f +46261,100%,Andorra,3.0,t +26034,100%,,1.0,f +37534,100%,Croatia,1.0,f +34042,100%,Marshall Islands,37.0,f +20488,100%,Lithuania,1.0,f +43685,,Kenya,1.0,f +34042,100%,Marshall Islands,37.0,f +46766,100%,Guinea,1.0,f +49429,99%,Bosnia and Herzegovina,49.0,f +35868,96%,Barbados,4.0,f +35640,100%,Uganda,3.0,f +35599,50%,Jersey,1.0,f +222,89%,,16.0,f +40910,100%,France,2.0,f +37022,,,1.0,f +29521,,Gambia,4.0,t +33410,100%,,1.0,f +44625,100%,Russian Federation,2.0,f +32681,100%,,1.0,t +32623,100%,,1.0,f +41211,,Anguilla,1.0,f +12253,100%,,2.0,f +48133,,Isle of Man,45.0,f +7551,,,1.0,f +36204,,Kenya,2.0,f +20669,,Micronesia,1.0,f +5984,100%,Marshall Islands,1.0,f +34306,91%,Wallis and Futuna,30.0,t +12603,100%,Brazil,2.0,f +36204,,Kenya,2.0,f +29464,,Bouvet Island (Bouvetoya),1.0,f +32203,100%,Barbados,176.0,f +49429,99%,Bosnia and Herzegovina,49.0,f +13137,100%,,1.0,f +35506,,,1.0,f +49974,100%,Reunion,1.0,f +49334,,,1.0,f +29647,100%,Peru,1305.0,f +43162,72%,China,7.0,f +18488,100%,Faroe Islands,1.0,t +22241,75%,,2.0,f +22241,75%,,2.0,f +2071,0%,Anguilla,2.0,f +442,97%,Poland,66.0,t +40361,100%,Sao Tome and Principe,4.0,t +37652,100%,Kiribati,3.0,t +21908,100%,Niue,49.0,f +21908,100%,Niue,49.0,f +45678,100%,Bouvet Island (Bouvetoya),3.0,f +41124,100%,Zimbabwe,3.0,t +40793,100%,,75.0,t +28828,100%,Isle of Man,198.0,t +14286,,Vanuatu,1.0,f +38207,100%,Turks and Caicos Islands,2.0,t +46586,100%,Bosnia and Herzegovina,12.0,f +40793,100%,,75.0,t +19214,100%,Senegal,55.0,f +24634,100%,Guinea,20.0,t +37652,100%,Kiribati,3.0,t +10721,100%,Gambia,1.0,t +25622,,Nicaragua,1.0,f +41131,100%,,6.0,f +41131,100%,,6.0,f +41131,100%,,6.0,f +41131,100%,,6.0,f +41131,100%,,6.0,f +24994,,Indonesia,1.0,t +41131,100%,,6.0,f +14718,,,1.0,f +13838,100%,Montserrat,10.0,f +13917,100%,Togo,1.0,f +10110,100%,Costa Rica,1.0,t +12949,100%,Russian Federation,2.0,f +10819,100%,Mexico,6.0,f +4652,100%,,1.0,f +23020,94%,Russian Federation,4.0,t +442,97%,Poland,66.0,t +442,97%,Poland,66.0,t +442,97%,Poland,66.0,t +22618,,,1.0,f +45798,100%,,4.0,f +45678,100%,Bouvet Island (Bouvetoya),3.0,f +37362,100%,Niue,1.0,f +33074,100%,Marshall Islands,1.0,f +44539,100%,Russian Federation,1.0,f +34687,100%,,2.0,f +11702,,French Guiana,1.0,t +30120,100%,Chad,2.0,t +10074,,,1.0,f +21579,100%,Jersey,2.0,t +23257,,Chad,3.0,f +3267,,Lebanon,1.0,f +46124,100%,Niue,1.0,f +10241,0%,Reunion,1.0,f +25171,,,1.0,f +26051,,Niue,7.0,f +7302,100%,Denmark,2.0,t +12235,,Faroe Islands,1.0,f +10466,100%,Papua New Guinea,2.0,f +48749,,Togo,1.0,t +5140,100%,Lebanon,3.0,t +26051,,Niue,7.0,f +37652,100%,Kiribati,3.0,t +21980,100%,Sao Tome and Principe,5.0,t +8225,95%,Barbados,31.0,f +43273,,Uzbekistan,1.0,f +5313,90%,Cook Islands,4.0,f +3176,100%,Uzbekistan,1.0,t +44427,100%,,3.0,f +44205,100%,Sao Tome and Principe,2.0,f +41395,100%,,3.0,f +43108,100%,Vietnam,2.0,f +46678,,Uzbekistan,1.0,f +45624,,,1.0,f +48628,,,1.0,f +46731,86%,,1.0,f +4446,100%,Uganda,58.0,f +14862,,Gibraltar,1.0,t +40023,100%,Uganda,6.0,t +21815,,Kenya,1.0,t +38668,100%,Lithuania,1.0,t +31185,100%,,1.0,f +40493,0%,Niue,1.0,f +37074,50%,Switzerland,2.0,f +34442,,Portugal,1.0,f +39892,100%,Tonga,31.0,t +35212,100%,Gibraltar,1.0,f +47610,100%,Uzbekistan,10.0,f +44169,97%,Portugal,39.0,f +10883,100%,Niger,8.0,t +33878,100%,Barbados,3.0,f +33336,75%,Nicaragua,1.0,f +46006,,Mauritania,2.0,f +6088,100%,,14.0,t +915,,,1.0,f +906,100%,Turks and Caicos Islands,2.0,f +906,100%,Turks and Caicos Islands,2.0,f +31570,,,1.0,f +47435,,,2.0,f +12869,100%,Nauru,1.0,f +40836,100%,Togo,6.0,t +21548,43%,Brazil,1.0,f +10488,100%,Niger,17.0,t +3888,100%,Isle of Man,1.0,f +39919,90%,Guinea,3.0,t +30577,,Turks and Caicos Islands,1.0,t +48382,100%,Niue,3.0,t +34895,100%,Estonia,16.0,t +38040,,,1.0,f +38473,,Micronesia,1.0,f +35828,,Denmark,2.0,t +25088,67%,Russian Federation,1.0,t +30110,,Russian Federation,3.0,f +44920,100%,,1.0,f +9169,90%,Guernsey,1.0,f +19208,100%,Chad,1.0,t +27341,,Uzbekistan,1.0,f +38270,100%,Maldives,6.0,f +32676,100%,China,34.0,f +37618,100%,,1.0,t +16654,,,1.0,t +5009,,Jersey,1.0,t +41257,100%,Monaco,1.0,f +23681,100%,Saint Helena,4.0,t +22721,100%,Ecuador,109.0,f +4101,,Croatia,1.0,f +10336,,,1.0,t +19047,,Cocos (Keeling) Islands,1.0,f +43071,100%,Maldives,14.0,f +25461,90%,Sao Tome and Principe,2.0,f +31866,100%,Denmark,2.0,f +31248,,,1.0,t +49279,100%,,2.0,f +4743,,Lebanon,1.0,t +5891,100%,Faroe Islands,1.0,t +23874,100%,Denmark,1.0,f +23143,65%,Bouvet Island (Bouvetoya),14.0,f +35228,100%,,1.0,f +6633,100%,Niger,5.0,f +27028,100%,France,1.0,t +29305,,Micronesia,1.0,f +36145,100%,,1.0,f +31343,100%,Sao Tome and Principe,3.0,f +6633,100%,Niger,5.0,f +19538,100%,,1.0,t +31807,,Lebanon,1.0,t +49683,100%,Denmark,1.0,f +34727,100%,Congo,1.0,f +48638,100%,,1.0,f +39552,83%,Bahrain,4.0,t +37835,100%,,1.0,t +1422,100%,,1.0,f +25624,,,1.0,f +13227,100%,,1.0,t +11512,90%,Sao Tome and Principe,1.0,f +38434,25%,,1.0,f +25202,100%,Cuba,3.0,f +29041,100%,,2.0,f +15943,100%,Puerto Rico,2.0,f +302,100%,Tunisia,20.0,f +30794,100%,Barbados,5.0,t +1797,100%,Bahrain,1.0,f +30853,100%,Sao Tome and Principe,2.0,f +17714,,Estonia,7.0,f +48862,100%,Nauru,4.0,f +44890,95%,Wallis and Futuna,9.0,t +44890,95%,Wallis and Futuna,9.0,t +48862,100%,Nauru,4.0,f +48862,100%,Nauru,4.0,f +43547,,,1.0,f +28828,100%,Isle of Man,198.0,t +18664,100%,Brazil,1.0,f +4258,100%,Sao Tome and Principe,1.0,f +21908,100%,Niue,49.0,f +47579,100%,Uzbekistan,4.0,f +26353,,,2.0,f +28828,100%,Isle of Man,198.0,t +26353,,,2.0,f +41702,100%,Anguilla,2.0,f +47791,100%,Greenland,1.0,f +29543,0%,,2.0,f +183,100%,Micronesia,1.0,f +48152,,Faroe Islands,1.0,f +49429,99%,Bosnia and Herzegovina,49.0,f +44890,95%,Wallis and Futuna,9.0,t +49429,99%,Bosnia and Herzegovina,49.0,f +19949,,Gambia,2.0,t +32203,100%,Barbados,176.0,f +24735,100%,Lebanon,1.0,f +33325,,Greenland,4.0,f +3506,100%,Niue,1.0,f +18808,92%,,5.0,f +27226,100%,Congo,10.0,f +18299,,Niue,1.0,f +34154,100%,,2.0,t +18808,92%,,5.0,f +18808,92%,,5.0,f +18808,92%,,5.0,f +18808,92%,,5.0,f +32661,,,3.0,t +17939,,,2.0,t +9059,,Maldives,1.0,f +10361,100%,,4.0,f +21311,,,3.0,f +48787,100%,,1.0,f +6022,100%,,4.0,t +49424,,Faroe Islands,1.0,t +38262,100%,,1.0,f +37121,100%,Greenland,1.0,f +31092,,Senegal,19.0,f +36363,82%,Marshall Islands,5.0,f +2706,100%,,1.0,f +44890,95%,Wallis and Futuna,9.0,t +21816,,Russian Federation,1.0,f +23967,100%,France,2.0,f +49483,100%,,1.0,f +3389,100%,Estonia,13.0,f +8066,100%,,1.0,t +36967,100%,Barbados,7.0,t +30053,,,9.0,f +48133,,Isle of Man,45.0,f +30053,,,9.0,f +30053,,,9.0,f +30053,,,9.0,f +2930,100%,Niue,2.0,f +37650,,,7.0,t +30053,,,9.0,f +30053,,,9.0,f +30053,,,9.0,f +30053,,,9.0,f +26193,88%,,3.0,f +30053,,,9.0,f +10711,93%,Uganda,108.0,t +22354,100%,,3.0,f +16248,,Kiribati,1.0,f +13641,85%,Mauritania,23.0,f +20334,99%,Niger,171.0,t +20008,,Russian Federation,1.0,f +10786,100%,Zimbabwe,2.0,f +18031,100%,Reunion,4.0,f +39431,,,2.0,f +17394,0%,Nicaragua,49.0,f +40187,100%,,1.0,f +12007,93%,Lithuania,1.0,f +48815,100%,Montserrat,1.0,f +35808,100%,Mexico,3.0,t +7094,100%,,1.0,f +37929,100%,,1.0,f +1605,100%,Pakistan,1.0,f +38919,100%,,1.0,f +10523,80%,,2.0,f +25783,100%,Saint Helena,1.0,f +50080,100%,Lithuania,3.0,f +10686,86%,Tonga,21.0,f +50072,100%,Marshall Islands,3.0,t +39731,,,1.0,f +10523,80%,,2.0,f +8584,100%,Costa Rica,7.0,t +8584,100%,Costa Rica,7.0,t +29354,100%,Russian Federation,2.0,t +26849,,Bosnia and Herzegovina,1.0,t +46372,100%,Northern Mariana Islands,7.0,t +32168,100%,Uganda,2.0,f +12415,,,1.0,t +1994,100%,Faroe Islands,1.0,f +34081,,,1.0,f +2993,100%,,1.0,f +29777,100%,Uzbekistan,2.0,f +11594,100%,Nicaragua,4.0,t +47579,100%,Uzbekistan,4.0,f +49429,99%,Bosnia and Herzegovina,49.0,f +18485,100%,Rwanda,2.0,t +29087,100%,,1.0,f +21908,100%,Niue,49.0,f +49429,99%,Bosnia and Herzegovina,49.0,f +20989,100%,Marshall Islands,8.0,f +24537,,Marshall Islands,1.0,f +23055,91%,,2.0,f +42390,100%,Wallis and Futuna,96.0,t +42243,100%,Senegal,4.0,f +16256,0%,,1.0,f +15761,100%,Nicaragua,1.0,f +32203,100%,Barbados,176.0,f +35450,100%,Gibraltar,2.0,f +6464,,,1.0,f +3795,,,1.0,f +27061,100%,,1.0,f +34029,100%,France,1.0,f +19128,100%,Uzbekistan,12.0,t +43183,98%,Tonga,12.0,t +27294,100%,,1.0,f +8942,,,3.0,f +8942,,,3.0,f +8942,,,3.0,f +33979,83%,Reunion,4.0,f +18031,100%,Reunion,4.0,f +47785,,Kenya,1.0,t +488,100%,Maldives,18.0,f +25147,99%,Niger,48.0,f +19336,,,2.0,f +44419,100%,,1.0,f +14874,100%,Isle of Man,1.0,f +20385,,,1.0,f +32203,100%,Barbados,176.0,f +35849,100%,,1.0,f +1564,100%,Indonesia,12.0,f +23455,50%,,1.0,f +14377,100%,Vanuatu,1.0,f +37792,,Isle of Man,1.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +24033,100%,Uganda,45.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +20497,100%,Niue,2.0,f +16497,,,1.0,f +304,100%,,1.0,f +29647,100%,Peru,1305.0,f +44953,100%,Tunisia,2.0,f +29878,100%,Niue,1.0,f +3358,90%,Jersey,1.0,f +50080,100%,Lithuania,3.0,f +21553,,,1.0,t +42868,100%,France,2.0,t +36241,100%,,1.0,f +38959,100%,,1.0,f +19214,100%,Senegal,55.0,f +2571,60%,,1.0,f +356,99%,Wallis and Futuna,32.0,t +21207,,,1.0,f +9889,,Uzbekistan,1.0,f +28935,100%,Malta,2.0,f +39860,100%,,2.0,f +48584,,Zimbabwe,2.0,t +5538,,Lebanon,1.0,t +32394,33%,,1.0,f +30230,100%,,1.0,t +15552,,,2.0,f +27866,100%,Guinea,8.0,f +32527,100%,Tonga,7.0,f +38235,80%,Kiribati,3.0,t +38366,100%,,1.0,f +26872,100%,Croatia,1.0,t +27056,100%,Kenya,4.0,f +9067,44%,,1.0,f +43784,,Zimbabwe,1.0,t +37495,,,1.0,t +8238,91%,Barbados,15.0,t +6894,80%,Estonia,47.0,t +14514,,China,80.0,t +39453,100%,Brazil,1.0,f +37443,75%,,1.0,f +35965,100%,,1.0,t +26698,100%,Uganda,5.0,t +49904,100%,Senegal,1.0,f +19486,100%,,2.0,t +23020,94%,Russian Federation,4.0,t +29456,,,1.0,t +6449,100%,Faroe Islands,1.0,f +740,100%,Lebanon,2.0,f +9363,95%,Ukraine,50.0,f +8301,,Guernsey,1.0,f +18077,100%,Sao Tome and Principe,139.0,f +611,86%,Montserrat,7.0,f +28536,40%,France,1.0,f +20114,100%,Croatia,1.0,t +11672,100%,Kiribati,6.0,t +39950,,Tonga,2.0,f +28766,100%,Estonia,16.0,f +39621,100%,Mauritania,1.0,f +14514,,China,80.0,t +25815,,Tonga,1.0,f +14742,100%,Faroe Islands,1.0,f +38804,100%,,1.0,f +8367,100%,Nicaragua,1.0,f +47898,100%,Greenland,2.0,f +5262,100%,Croatia,1.0,t +16978,100%,Saint Helena,1.0,f +37538,,Nicaragua,1.0,f +25147,99%,Niger,48.0,f +48133,,Isle of Man,45.0,f +12099,100%,Rwanda,1.0,f +4319,100%,Uganda,6.0,f +26903,,Kiribati,1.0,f +6121,,,1.0,t +18484,100%,Gambia,108.0,f +1186,100%,Isle of Man,2.0,f +41301,100%,Costa Rica,9.0,t +37701,90%,Marshall Islands,1.0,t +7565,,Kiribati,1.0,f +34042,100%,Marshall Islands,37.0,f +48133,,Isle of Man,45.0,f +27928,100%,,4.0,f +4136,60%,,1.0,t +4130,,Maldives,7.0,f +11678,100%,Uruguay,1.0,t +38045,97%,Uzbekistan,7.0,f +23095,0%,Canada,1.0,f +8355,87%,Togo,16.0,f +34928,100%,Ecuador,4.0,f +2750,,Monaco,1.0,f +37843,100%,Gambia,1.0,f +4328,100%,,1.0,f +44243,,Kenya,1.0,f +31402,100%,Guinea,4.0,f +10480,100%,Comoros,22.0,f +48415,100%,Gambia,1.0,f +40354,100%,Niue,2.0,t +35274,,Vietnam,1.0,f +569,,,1.0,f +16482,33%,,1.0,t +10819,100%,Mexico,6.0,f +28777,,,1.0,t +25513,100%,Papua New Guinea,2.0,f +2328,88%,Kenya,2.0,t +45162,,Maldives,20.0,f +6307,100%,,2.0,f +26689,80%,Svalbard & Jan Mayen Islands,1.0,f +40222,,,1.0,f +48994,100%,Rwanda,1.0,f +1711,100%,Jersey,1.0,f +14498,,China,1.0,f +46457,83%,Russian Federation,2.0,t +41991,100%,Mexico,1.0,t +12593,100%,Reunion,2.0,f +13562,90%,Guernsey,1.0,f +48133,,Isle of Man,45.0,f +6847,100%,Vietnam,4.0,f +29647,100%,Peru,1305.0,f +40383,,Canada,1.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +40870,100%,,1.0,f +41869,,Niue,4.0,t +11017,100%,Malawi,2.0,t +3314,100%,Slovakia (Slovak Republic),10.0,f +45133,77%,Chile,1.0,f +17409,,Niue,1.0,f +4007,,Djibouti,1.0,f +410,100%,Bouvet Island (Bouvetoya),1.0,f +36181,,Marshall Islands,1.0,f +28953,56%,,2.0,f +21668,,,1.0,f +20334,99%,Niger,171.0,t +25147,99%,Niger,48.0,f +14510,,Mauritania,2.0,f +19691,,Malta,1.0,f +16372,100%,Saint Helena,3.0,f +17210,100%,Maldives,2.0,f +32203,100%,Barbados,176.0,f +6295,,Niue,2.0,f +17795,100%,Uzbekistan,11.0,t +9142,100%,Cocos (Keeling) Islands,1.0,f +369,100%,,2.0,f +1075,100%,,2.0,t +4330,94%,Ukraine,60.0,t +40508,,,1.0,f +1165,100%,Tonga,2.0,f +8259,100%,,1.0,f +24905,,Estonia,1.0,f +9144,,,1.0,f +40364,100%,Tonga,25.0,f +17279,30%,Guinea,1.0,f +23814,,Russian Federation,26.0,f +15919,100%,Guinea,1.0,f +23814,,Russian Federation,26.0,f +40793,100%,,75.0,t +23814,,Russian Federation,26.0,f +15693,100%,Vietnam,6.0,f +23814,,Russian Federation,26.0,f +19014,,Uzbekistan,1.0,t +41908,70%,Switzerland,3.0,f +23814,,Russian Federation,26.0,f +930,100%,Uganda,2.0,t +32203,100%,Barbados,176.0,f +17960,,United Kingdom,2.0,f +27909,,Cocos (Keeling) Islands,1.0,f +4330,94%,Ukraine,60.0,t +34,,Rwanda,2.0,f +18077,100%,Sao Tome and Principe,139.0,f +41908,70%,Switzerland,3.0,f +48985,97%,Guinea,8.0,f +20297,80%,Montserrat,17.0,f +25513,100%,Papua New Guinea,2.0,f +9382,50%,France,1.0,f +41908,70%,Switzerland,3.0,f +17193,,Russian Federation,1.0,f +41511,100%,,1.0,f +9296,,Nauru,1.0,f +36156,83%,,2.0,f +10598,100%,,1.0,f +33909,,Tonga,2.0,f +40368,100%,,2.0,f +13873,50%,,2.0,t +41323,,Gibraltar,1.0,f +27527,100%,,1.0,f +45268,,Niue,1.0,t +37413,33%,Isle of Man,1.0,f +22523,100%,Rwanda,9.0,f +5764,100%,,2.0,t +10883,100%,Niger,8.0,t +3886,100%,Russian Federation,3.0,f +29226,100%,Russian Federation,1.0,f +2616,100%,,2.0,t +1537,100%,,3.0,f +4330,94%,Ukraine,60.0,t +4330,94%,Ukraine,60.0,t +4330,94%,Ukraine,60.0,t +11204,,,1.0,f +20153,96%,Reunion,51.0,f +19621,70%,Ecuador,2.0,f +48154,,Lebanon,2.0,f +18909,100%,,2.0,t +39493,,Montserrat,5.0,f +46216,100%,French Guiana,4.0,f +1140,,Costa Rica,1.0,f +39493,,Montserrat,5.0,f +24653,80%,Rwanda,2.0,t +39493,,Montserrat,5.0,f +41576,,,1.0,f +32203,100%,Barbados,176.0,f +41399,100%,,1.0,f +19740,,Isle of Man,3.0,f +16406,100%,Bouvet Island (Bouvetoya),16.0,f +47356,,Denmark,1.0,f +7585,,,1.0,t +15094,,,1.0,t +42051,100%,Nicaragua,11.0,t +35840,,France,2.0,t +16496,97%,Maldives,4.0,f +7894,100%,Ukraine,10.0,f +39539,,Sao Tome and Principe,1.0,t +18484,100%,Gambia,108.0,f +33320,100%,Denmark,1.0,f +16609,100%,Switzerland,2.0,f +11915,100%,,2.0,f +11771,,Tonga,1.0,t +45522,100%,Fiji,1.0,t +18484,100%,Gambia,108.0,f +40568,100%,,1.0,f +14222,100%,,1.0,t +18876,60%,Netherlands,26.0,f +17832,100%,Reunion,1.0,f +50014,,Canada,1.0,f +8010,100%,Tonga,2.0,f +41878,91%,Maldives,47.0,f +18491,100%,Sao Tome and Principe,2.0,f +4330,94%,Ukraine,60.0,t +4330,94%,Ukraine,60.0,t +4330,94%,Ukraine,60.0,t +13170,,Denmark,1.0,f +43321,100%,France,40.0,f +43321,100%,France,40.0,f +7172,50%,Papua New Guinea,1.0,t +18484,100%,Gambia,108.0,f +32203,100%,Barbados,176.0,f +5394,,Micronesia,1.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +36333,100%,Turks and Caicos Islands,2.0,f +35314,96%,,3.0,f +24033,100%,Uganda,45.0,f +31758,100%,Brazil,1.0,f +2182,,,1.0,f +27298,100%,,2.0,t +26051,,Niue,7.0,f +48133,,Isle of Man,45.0,f +30178,,Niue,1.0,f +6233,80%,Pakistan,3.0,f +42429,,Micronesia,1.0,f +46993,100%,Togo,2.0,f +40099,,,1.0,t +33378,,,1.0,f +21188,100%,,3.0,f +33036,100%,Denmark,1.0,f +13539,100%,Papua New Guinea,1.0,f +47403,100%,Zimbabwe,2.0,f +8030,,Russian Federation,1.0,f +22264,78%,,1.0,f +28545,0%,,1.0,f +42982,100%,Nicaragua,1.0,f +39131,100%,Lithuania,4.0,t +43958,90%,Guinea,1.0,t +27649,100%,Kiribati,4.0,t +13396,100%,Uruguay,1.0,f +41281,60%,Marshall Islands,1.0,f +5231,100%,Nicaragua,1.0,f +38420,90%,Christmas Island,8.0,f +43540,72%,Bosnia and Herzegovina,25.0,f +3398,67%,,1.0,f +18589,,Ghana,1.0,f +43042,100%,Niue,3.0,f +15843,100%,Slovakia (Slovak Republic),18.0,f +16122,100%,Brazil,1.0,f +10776,75%,,1.0,f +47160,100%,Monaco,2.0,f +23957,,Indonesia,1.0,f +7009,100%,Isle of Man,9.0,f +15626,100%,Isle of Man,1.0,t +6022,100%,,4.0,t +16843,100%,United Kingdom,2.0,f +32998,100%,,1.0,f +45241,100%,Kiribati,2.0,f +27033,94%,,1.0,t +23078,100%,Ukraine,8.0,f +41886,100%,United Kingdom,1.0,t +30029,90%,El Salvador,8.0,f +9363,95%,Ukraine,50.0,f +35775,,China,1.0,f +11038,,Lebanon,2.0,t +18512,100%,Turks and Caicos Islands,1.0,f +18763,,Bosnia and Herzegovina,1.0,f +4594,90%,Chad,4.0,t +11089,100%,Anguilla,1.0,f +48588,94%,,2.0,f +2736,,,1.0,f +23020,94%,Russian Federation,4.0,t +23358,100%,Marshall Islands,1.0,f +13088,100%,Marshall Islands,1.0,f +5948,,,1.0,t +23855,94%,France,2.0,t +14032,,,9.0,f +14032,,,9.0,f +21579,100%,Jersey,2.0,t +48860,,,1.0,f +26949,100%,,1.0,f +36921,100%,Jersey,1.0,f +11336,100%,Brazil,2.0,f +1577,100%,Peru,8.0,t +33140,100%,Fiji,1.0,f +33257,100%,Puerto Rico,1.0,t +44708,100%,Gibraltar,1.0,f +9703,,,1.0,f +20176,0%,Bouvet Island (Bouvetoya),1.0,f +35453,95%,Ecuador,2.0,f +44051,100%,,2.0,f +1670,100%,,1.0,f +30001,100%,Isle of Man,1.0,f +28553,100%,Greenland,3.0,f +40964,,,1.0,t +36212,100%,Faroe Islands,2.0,f +9201,78%,Cuba,1.0,f +26825,100%,Denmark,1.0,f +19932,,,1.0,f +24603,100%,Senegal,1.0,f +32128,,China,2.0,f +14652,,Niue,1.0,f +33947,100%,Guinea,1.0,f +8915,100%,,1.0,f +20141,,Denmark,1.0,f +43357,,Indonesia,1.0,f +18487,,Isle of Man,1.0,f +12319,,,1.0,t +1616,100%,Zimbabwe,1.0,t +3439,100%,,1.0,f +44173,100%,Greenland,2.0,t +22331,99%,Rwanda,50.0,t +27907,100%,Puerto Rico,21.0,f +3895,,,1.0,f +3065,100%,Tunisia,1.0,t +7644,,,1.0,f +11152,100%,Lebanon,1.0,f +22930,,Nicaragua,1.0,f +37259,,Vanuatu,1.0,f +31437,90%,Denmark,1.0,f +32013,,,1.0,f +46607,100%,Brazil,4.0,f +46893,100%,,1.0,f +37784,100%,Finland,2.0,t +14106,100%,Guinea,1.0,f +25297,50%,,1.0,f +26209,,Canada,1.0,f +28828,100%,Isle of Man,198.0,t +15277,100%,,1.0,f +8388,100%,Puerto Rico,1.0,f +34648,100%,,2.0,f +30764,100%,Slovakia (Slovak Republic),8.0,t +49971,,,1.0,f +41376,,,1.0,f +16736,,Lithuania,1.0,f +32131,100%,,1.0,f +15067,100%,Congo,1.0,f +32988,,Faroe Islands,2.0,f +31782,,Costa Rica,2.0,f +18320,50%,Reunion,19.0,t +25662,100%,Bouvet Island (Bouvetoya),1.0,f +48945,100%,,1.0,f +42546,88%,Russian Federation,1.0,f +27307,67%,,3.0,f +28722,,Isle of Man,1.0,f +48483,100%,Marshall Islands,1.0,f +16607,,Peru,3.0,t +21069,,,1.0,f +27906,100%,Marshall Islands,1.0,f +47818,80%,Lithuania,2.0,f +21337,,Marshall Islands,1.0,f +15596,100%,Turks and Caicos Islands,1.0,f +29044,100%,Russian Federation,1.0,f +16723,100%,Lebanon,1.0,t +32988,,Faroe Islands,2.0,f +2940,,Lebanon,1.0,f +33776,100%,,1.0,f +42115,,,2.0,f +27553,100%,,1.0,t +24016,100%,Bosnia and Herzegovina,29.0,f +9977,,Sao Tome and Principe,3.0,f +3379,,Malta,1.0,t +34255,,Isle of Man,1.0,t +28828,100%,Isle of Man,198.0,t +20153,96%,Reunion,51.0,f +39830,100%,,2.0,f +33058,,Lebanon,1.0,f +2597,100%,Nicaragua,13.0,t +28828,100%,Isle of Man,198.0,t +20153,96%,Reunion,51.0,f +6326,,Denmark,1.0,f +38282,,Tonga,5.0,f +29423,100%,Niue,3.0,f +36002,100%,Niue,1.0,f +21931,100%,Costa Rica,1.0,f +12212,,Lebanon,1.0,f +18979,100%,Tonga,6.0,t +20539,100%,Chad,5.0,f +11252,,Afghanistan,1.0,f +9719,100%,Guinea,1.0,f +25319,,,1.0,f +18483,,Micronesia,2.0,f +45844,100%,Guinea,1.0,f +8112,,Micronesia,1.0,f +31889,100%,Zimbabwe,1.0,t +24252,80%,Tonga,2.0,f +22523,100%,Rwanda,9.0,f +20539,100%,Chad,5.0,f +27928,100%,,4.0,f +42976,100%,Isle of Man,1.0,f +6847,100%,Vietnam,4.0,f +38517,100%,Lebanon,1.0,f +9617,,Kenya,1.0,f +23226,,Switzerland,1.0,f +48390,100%,Andorra,1.0,t +704,67%,,5.0,f +48133,,Isle of Man,45.0,f +704,67%,,5.0,f +704,67%,,5.0,f +704,67%,,5.0,f +704,67%,,5.0,f +15693,100%,Vietnam,6.0,f +36459,,China,1.0,f +15693,100%,Vietnam,6.0,f +37849,,Nauru,1.0,f +15693,100%,Vietnam,6.0,f +21340,100%,Lithuania,1.0,t +15693,100%,Vietnam,6.0,f +31273,,Faroe Islands,1.0,t +50039,100%,Isle of Man,4.0,f +29322,100%,Gambia,1.0,f +35264,100%,Uzbekistan,1.0,t +19638,100%,,1.0,t +31446,100%,Faroe Islands,9.0,f +47274,100%,Tonga,48.0,f +5002,100%,Isle of Man,2.0,f +34042,100%,Marshall Islands,37.0,f +30858,,Maldives,1.0,f +30052,100%,Turkmenistan,1.0,f +38625,,Chile,1.0,f +28244,80%,,4.0,f +30216,98%,Maldives,34.0,f +8443,100%,Marshall Islands,1.0,f +21318,100%,Russian Federation,2.0,t +40264,100%,Russian Federation,1.0,f +34852,,Niue,10.0,t +21592,100%,Marshall Islands,1.0,f +38402,100%,Mauritania,1.0,f +32203,100%,Barbados,176.0,f +20334,99%,Niger,171.0,t +20201,100%,Ghana,1.0,f +2673,93%,Anguilla,2.0,f +40303,100%,Guinea,82.0,f +46817,100%,France,1.0,f +22050,100%,Peru,2.0,f +50039,100%,Isle of Man,4.0,f +10881,100%,Venezuela,1.0,f +12773,,,1.0,f +50039,100%,Isle of Man,4.0,f +36099,100%,Sao Tome and Principe,1.0,f +17507,100%,Guinea,6.0,f +15620,95%,Marshall Islands,5.0,f +30480,100%,Chile,1.0,f +28403,90%,,2.0,f +32599,,Gambia,1.0,f +48133,,Isle of Man,45.0,f +36039,,Niger,2.0,t +18072,99%,Montserrat,37.0,f +10767,100%,Marshall Islands,2.0,f +40078,100%,Croatia,7.0,t +38601,100%,,1.0,f +44203,,Brunei Darussalam,1.0,f +32625,100%,Canada,1.0,f +34832,80%,Sao Tome and Principe,7.0,t +34832,80%,Sao Tome and Principe,7.0,t +18629,100%,Sao Tome and Principe,3.0,f +34832,80%,Sao Tome and Principe,7.0,t +26875,100%,Tanzania,1.0,f +15974,100%,,3.0,f +5289,,Nicaragua,1.0,f +23869,,,1.0,f +15534,100%,,1.0,f +13298,,Vanuatu,1.0,f +17030,100%,Croatia,5.0,f +31748,100%,Lithuania,1.0,t +28553,100%,Greenland,3.0,f +17254,70%,,3.0,t +40824,,Tanzania,1.0,t +23648,100%,Denmark,2.0,t +43037,100%,,1.0,f +47125,93%,Kiribati,4.0,f +16908,,Gibraltar,1.0,f +32649,,Tonga,1.0,f +18876,60%,Netherlands,26.0,f +36831,25%,Russian Federation,1.0,f +24634,100%,Guinea,20.0,t +24634,100%,Guinea,20.0,t +24634,100%,Guinea,20.0,t +13411,,Lebanon,2.0,t +26331,100%,Brazil,2.0,t +36229,89%,Togo,4.0,f +35522,100%,Kiribati,10.0,f +32886,90%,Russian Federation,6.0,f +21060,100%,Tunisia,1.0,f +1375,100%,Micronesia,5.0,f +5965,100%,,1.0,f +33111,100%,Denmark,1.0,f +38523,,Tonga,2.0,f +36235,,Uzbekistan,1.0,f +22870,,Cuba,1.0,f +49579,90%,Marshall Islands,2.0,t +30297,,Vanuatu,1.0,f +3685,100%,Sao Tome and Principe,1.0,f +19740,,Isle of Man,3.0,f +19740,,Isle of Man,3.0,f +32203,100%,Barbados,176.0,f +19214,100%,Senegal,55.0,f +23264,44%,,1.0,f +12031,,Lebanon,1.0,f +25588,,Jersey,2.0,f +5714,90%,Pakistan,3.0,f +3371,100%,Switzerland,1.0,t +20334,99%,Niger,171.0,t +23457,100%,Niue,2.0,t +49282,,Tonga,2.0,f +30286,100%,Montserrat,39.0,f +10361,100%,,4.0,f +30286,100%,Montserrat,39.0,f +2391,,,4.0,f +2391,,,4.0,f +2391,,,4.0,f +43152,100%,Nicaragua,82.0,t +24634,100%,Guinea,20.0,t +2391,,,4.0,f +26445,90%,Togo,2.0,f +32203,100%,Barbados,176.0,f +19528,,Nicaragua,1.0,f +18484,100%,Gambia,108.0,f +21908,100%,Niue,49.0,f +5056,100%,,1.0,t +381,50%,Nauru,1.0,f +32203,100%,Barbados,176.0,f +28531,100%,Russian Federation,1.0,f +33941,100%,Chad,2.0,t +25570,,Nauru,6.0,f +30286,100%,Montserrat,39.0,f +9354,100%,Spain,12.0,f +36183,100%,Isle of Man,1.0,t +49706,,Cocos (Keeling) Islands,1.0,t +48124,,Marshall Islands,1.0,f +49445,100%,Denmark,4.0,f +31769,100%,Zimbabwe,1.0,t +31614,0%,Niger,1.0,t +42220,100%,,1.0,f +12409,29%,Oman,3.0,f +30286,100%,Montserrat,39.0,f +26042,,Afghanistan,4.0,f +46813,100%,,1.0,f +39133,,Cook Islands,1.0,f +44420,100%,Faroe Islands,2.0,f +9442,50%,,1.0,f +19602,100%,Lithuania,24.0,f +40079,100%,Faroe Islands,1.0,f +3042,100%,Rwanda,1.0,t +26442,33%,,1.0,f +9127,,,1.0,f +18315,100%,Bosnia and Herzegovina,1.0,f +12409,29%,Oman,3.0,f +34166,100%,Marshall Islands,1.0,f +3788,100%,Marshall Islands,2.0,f +13332,90%,Marshall Islands,1.0,f +35541,,,1.0,f +19758,100%,Marshall Islands,1.0,f +10711,93%,Uganda,108.0,t +27774,78%,Vietnam,15.0,f +30813,100%,Anguilla,1.0,f +35256,,Gibraltar,1.0,f +19722,100%,United Kingdom,1.0,f +20706,100%,Guinea,1.0,f +31360,100%,,1.0,f +35066,100%,,1.0,f +19350,100%,,2.0,t +10360,,Cape Verde,1.0,f +48417,100%,Djibouti,5.0,f +49552,,,1.0,f +48163,100%,,1.0,f +11705,,Costa Rica,1.0,f +46248,100%,,1.0,t +27804,100%,El Salvador,2.0,t +17251,90%,Isle of Man,1.0,f +16433,,,1.0,t +40019,100%,,1.0,f +4153,50%,,2.0,f +33102,100%,,2.0,f +7817,,Isle of Man,2.0,f +50007,,Anguilla,1.0,f +12938,92%,Reunion,12.0,f +38535,,Vanuatu,1.0,t +11220,,Cape Verde,1.0,f +19855,100%,Kiribati,37.0,t +31529,100%,Wallis and Futuna,6.0,f +40223,100%,,1.0,f +23374,0%,Togo,2.0,t +31594,100%,Philippines,19.0,t +25344,90%,Faroe Islands,8.0,f +25344,90%,Faroe Islands,8.0,f +25344,90%,Faroe Islands,8.0,f +16173,100%,Rwanda,1.0,f +35163,100%,,1.0,t +32203,100%,Barbados,176.0,f +32812,100%,,1.0,f +18484,100%,Gambia,108.0,f +11307,100%,Monaco,2.0,t +43777,100%,Denmark,18.0,f +22209,90%,,1.0,f +47335,78%,Guernsey,15.0,f +330,100%,United Kingdom,1.0,f +30286,100%,Montserrat,39.0,f +39960,90%,,1.0,f +16414,,,19.0,f +16414,,,19.0,f +16414,,,19.0,f +16414,,,19.0,f +16414,,,19.0,f +16414,,,19.0,f +16414,,,19.0,f +16414,,,19.0,f +16414,,,19.0,f +16414,,,19.0,f +16414,,,19.0,f +16414,,,19.0,f +16414,,,19.0,f +38406,96%,Russian Federation,6.0,t +24026,98%,Cape Verde,69.0,t +23430,100%,Reunion,16.0,f +8225,95%,Barbados,31.0,f +2499,100%,Costa Rica,3.0,f +17000,100%,Niue,2.0,f +46768,100%,,1.0,f +25306,,,1.0,f +1288,,Reunion,1.0,f +30286,100%,Montserrat,39.0,f +30286,100%,Montserrat,39.0,f +45598,83%,China,17.0,f +30286,100%,Montserrat,39.0,f +47335,78%,Guernsey,15.0,f +19264,100%,,1.0,f +24195,56%,Barbados,14.0,f +13354,100%,Isle of Man,2.0,t +43853,100%,,2.0,f +28518,100%,Uzbekistan,1.0,f +47335,78%,Guernsey,15.0,f +41254,100%,Niue,1.0,f +47335,78%,Guernsey,15.0,f +28828,100%,Isle of Man,198.0,t +47335,78%,Guernsey,15.0,f +13070,100%,Fiji,45.0,f +30286,100%,Montserrat,39.0,f +47335,78%,Guernsey,15.0,f +1472,100%,Chile,2.0,f +48417,100%,Djibouti,5.0,f +47335,78%,Guernsey,15.0,f +49394,89%,Kiribati,1.0,f +15479,100%,Kenya,3.0,t +4330,94%,Ukraine,60.0,t +27546,100%,Netherlands Antilles,2.0,t +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +16042,0%,Rwanda,2.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +22721,100%,Ecuador,109.0,f +1120,80%,,1.0,f +35772,100%,,1.0,f +11717,,,1.0,f +22721,100%,Ecuador,109.0,f +10501,100%,,1.0,f +46428,100%,Niue,4.0,f +657,100%,Marshall Islands,2.0,f +34520,100%,Kiribati,1.0,f +43237,40%,Montserrat,24.0,f +15396,,Lebanon,1.0,f +49179,,Faroe Islands,1.0,f +14697,100%,Malawi,1.0,f +33512,100%,El Salvador,1.0,f +24113,,,1.0,f +48868,,,1.0,f +25424,,Rwanda,1.0,f +680,100%,,1.0,f +27185,100%,,1.0,f +16038,100%,French Guiana,1.0,f +39892,100%,Tonga,31.0,t +14807,,,1.0,f +30212,,,1.0,f +19733,80%,,1.0,f +43049,100%,United Kingdom,1.0,f +39812,100%,Nicaragua,6.0,t +39812,100%,Nicaragua,6.0,t +36605,,Sao Tome and Principe,4.0,t +4003,0%,,1.0,t +32518,100%,,1.0,t +28109,,,1.0,f +31665,100%,,1.0,f +21213,94%,Kiribati,5.0,t +43261,100%,,1.0,f +10864,100%,Nicaragua,2.0,t +19296,100%,,1.0,f +32053,100%,,1.0,t +9493,100%,,3.0,t +27168,100%,Tunisia,1.0,t +9493,100%,,3.0,t +13070,100%,Fiji,45.0,f +30838,,,1.0,f +10932,,,1.0,f +44169,97%,Portugal,39.0,f +36849,,Togo,1.0,f +6146,,,1.0,f +24313,0%,Bermuda,27.0,f +32203,100%,Barbados,176.0,f +7703,,,1.0,f +7659,100%,,1.0,f +18416,80%,,2.0,f +4374,100%,,1.0,f +18416,80%,,2.0,f +23972,100%,Zimbabwe,2.0,t +26901,100%,,1.0,t +3168,,Micronesia,2.0,t +24135,70%,,1.0,f +36357,100%,Ecuador,1.0,f +49902,50%,,3.0,f +10739,,Reunion,2.0,f +39363,67%,,1.0,f +14601,90%,,9.0,f +14601,90%,,9.0,f +14601,90%,,9.0,f +14601,90%,,9.0,f +14601,90%,,9.0,f +14601,90%,,9.0,f +14601,90%,,9.0,f +14601,90%,,9.0,f +14601,90%,,9.0,f +34335,100%,Jersey,2.0,t +14318,95%,China,2.0,f +7176,90%,,4.0,f +7176,90%,,4.0,f +33017,,Estonia,1.0,f +7176,90%,,4.0,f +7176,90%,,4.0,f +36785,,,2.0,f +13260,,Barbados,1.0,f +5784,100%,,1.0,f +6177,100%,Niger,2.0,f +26175,100%,Russian Federation,4.0,t +30286,100%,Montserrat,39.0,f +39315,100%,Marshall Islands,1.0,f +44204,,Bosnia and Herzegovina,1.0,f +41043,100%,Bosnia and Herzegovina,11.0,f +45598,83%,China,17.0,f +18484,100%,Gambia,108.0,f +13781,100%,Tonga,2.0,f +25542,,Micronesia,1.0,f +47333,100%,Niue,4.0,f +11946,89%,Zimbabwe,2.0,f +8400,50%,,1.0,f +13364,91%,Netherlands,21.0,f +6116,100%,Monaco,8.0,f +8644,,,1.0,f +32038,100%,Indonesia,35.0,f +30286,100%,Montserrat,39.0,f +49411,100%,Canada,4.0,f +3106,,Kiribati,2.0,t +49411,100%,Canada,4.0,f +13080,,Uganda,1.0,f +15459,100%,Niue,1.0,f +4788,,Tonga,7.0,f +29647,100%,Peru,1305.0,f +38809,,Canada,1.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +20994,63%,Zimbabwe,1.0,f +6335,,,1.0,f +19656,100%,Russian Federation,1.0,f +6095,100%,,1.0,f +5185,0%,Gambia,12.0,f +4575,100%,Pakistan,3.0,f +9903,100%,Kiribati,3.0,f +28324,,,1.0,f +12385,100%,,1.0,f +2112,100%,Nicaragua,2.0,f +9879,,Cocos (Keeling) Islands,2.0,f +17507,100%,Guinea,6.0,f +3674,,,1.0,t +33886,,Gambia,9.0,t +14389,100%,,1.0,t +2809,,,1.0,t +34328,100%,,2.0,f +29304,,,2.0,f +573,100%,Zimbabwe,3.0,f +5521,100%,,1.0,f +4330,94%,Ukraine,60.0,t +4330,94%,Ukraine,60.0,t +46602,100%,,1.0,t +44839,100%,,1.0,f +4330,94%,Ukraine,60.0,t +30379,,,1.0,f +9903,100%,Kiribati,3.0,f +1031,100%,Russian Federation,2.0,f +24988,,,1.0,t +24016,100%,Bosnia and Herzegovina,29.0,f +36025,100%,Djibouti,6.0,t +42286,94%,Vietnam,9.0,t +22661,100%,,1.0,f +12882,,Sao Tome and Principe,1.0,f +32161,100%,Nicaragua,5.0,t +5768,,Nauru,1.0,f +47205,100%,,4.0,f +18362,100%,Uganda,5.0,f +13090,0%,Marshall Islands,2.0,f +18782,,Russian Federation,3.0,f +13882,100%,,1.0,f +6659,100%,Isle of Man,2.0,t +11045,100%,French Guiana,1.0,t +27619,100%,,1.0,f +32038,100%,Indonesia,35.0,f +32049,,,1.0,t +42715,100%,Niue,6.0,t +48160,,,1.0,f +30286,100%,Montserrat,39.0,f +2872,89%,Maldives,2.0,f +8891,100%,,1.0,f +34497,100%,,1.0,f +2732,100%,Turkmenistan,4.0,f +24598,100%,Russian Federation,1.0,f +38344,,,1.0,f +3302,,,1.0,f +26419,100%,Barbados,6.0,f +13934,70%,,1.0,f +22654,100%,,2.0,f +32205,100%,Kiribati,2.0,t +32205,100%,Kiribati,2.0,t +20056,100%,Denmark,6.0,f +38701,40%,Niger,27.0,f +13141,,Kenya,2.0,f +32203,100%,Barbados,176.0,f +41136,,,1.0,f +35815,97%,Slovakia (Slovak Republic),8.0,t +14514,,China,80.0,t +26578,45%,Ecuador,10.0,f +24118,98%,Ghana,21.0,t +20329,100%,Reunion,21.0,f +16225,100%,Micronesia,2.0,t +36693,90%,,3.0,f +32203,100%,Barbados,176.0,f +12503,,Pakistan,1.0,f +30286,100%,Montserrat,39.0,f +1349,,Svalbard & Jan Mayen Islands,1.0,f +33755,,,1.0,f +12137,99%,Sao Tome and Principe,33.0,t +40793,100%,,75.0,t +31446,100%,Faroe Islands,9.0,f +19323,,,1.0,f +43510,,Chad,2.0,f +30196,,Marshall Islands,1.0,f +14282,100%,,1.0,f +38390,,,1.0,f +32203,100%,Barbados,176.0,f +4896,,,1.0,f +20056,100%,Denmark,6.0,f +39812,100%,Nicaragua,6.0,t +33567,100%,Croatia,1.0,f +1073,100%,Kenya,1.0,f +11920,100%,,1.0,f +11351,,Faroe Islands,1.0,f +1030,100%,Lithuania,1.0,f +46597,100%,Tonga,2.0,t +27284,100%,Canada,1.0,f +20056,100%,Denmark,6.0,f +31399,100%,,3.0,t +20056,100%,Denmark,6.0,f +39431,,,2.0,f +48863,50%,Isle of Man,1.0,f +47013,100%,Slovakia (Slovak Republic),1.0,f +11063,90%,,16.0,t +39727,0%,Zimbabwe,1.0,f +32718,90%,,1.0,f +45663,,,1.0,f +38383,100%,,2.0,f +6789,100%,Gambia,2.0,t +11124,100%,Sao Tome and Principe,3.0,f +32466,100%,Lebanon,1.0,f +48506,50%,,1.0,t +19214,100%,Senegal,55.0,f +39209,100%,,1.0,f +5420,100%,Tonga,41.0,f +29665,93%,,3.0,f +27963,100%,,1.0,t +751,,,1.0,f +23035,100%,,2.0,f +5897,75%,Guinea,1.0,f +3421,100%,,4.0,f +25735,,,1.0,f +8316,100%,,1.0,f +24658,,,1.0,t +2644,100%,Zimbabwe,11.0,t +11913,100%,Gambia,5.0,f +40053,100%,,1.0,t +46457,83%,Russian Federation,2.0,t +20863,90%,,1.0,f +49907,,France,1.0,f +17795,100%,Uzbekistan,11.0,t +43853,100%,,2.0,f +37044,100%,Russian Federation,1.0,f +8408,,,1.0,f +10415,100%,,1.0,f +19214,100%,Senegal,55.0,f +43800,100%,Maldives,5.0,t +27584,100%,Chile,2.0,t +40963,100%,Korea,1.0,f +32725,33%,,2.0,f +48102,96%,Indonesia,4.0,f +20165,94%,Ukraine,30.0,f +44074,100%,Nicaragua,1.0,f +28403,90%,,2.0,f +31214,100%,,1.0,f +9232,25%,Lithuania,1.0,f +26186,100%,,2.0,f +34069,100%,Andorra,3.0,t +26186,100%,,2.0,f +25665,,,1.0,f +43715,,,1.0,f +37771,,Costa Rica,1.0,f +31499,,,1.0,f +23557,,Niger,1.0,f +17610,100%,Gibraltar,1.0,t +49691,100%,Somalia,1.0,f +35213,83%,Russian Federation,1.0,f +12331,,Faroe Islands,1.0,f +14426,100%,,1.0,f +48102,96%,Indonesia,4.0,f +22203,100%,Papua New Guinea,1.0,f +17281,,Bouvet Island (Bouvetoya),1.0,f +11499,100%,,1.0,t +21689,100%,,1.0,t +21908,100%,Niue,49.0,f +48862,100%,Nauru,4.0,f +7022,92%,Turks and Caicos Islands,2.0,f +7356,100%,Ukraine,1.0,f +30514,,,1.0,f +27310,,,1.0,f +45913,100%,Niue,2.0,f +25548,100%,El Salvador,2.0,f +32163,100%,,1.0,f +47714,,Russian Federation,2.0,f +10413,100%,France,2.0,t +25465,100%,Gambia,1.0,f +30890,90%,Niue,2.0,f +18057,100%,Tonga,2.0,f +18057,100%,Tonga,2.0,f +34899,95%,Tonga,11.0,f +945,,,1.0,f +30888,100%,,1.0,f +12456,100%,,2.0,f +37002,90%,,1.0,f +38212,100%,Niue,1.0,t +37928,,France,1.0,f +37197,60%,Togo,1.0,f +33856,100%,Bouvet Island (Bouvetoya),1.0,f +46586,100%,Bosnia and Herzegovina,12.0,f +22331,99%,Rwanda,50.0,t +45241,100%,Kiribati,2.0,f +30414,,,2.0,f +26193,88%,,3.0,f +33640,100%,French Polynesia,1.0,f +14199,,,1.0,f +11426,100%,,3.0,t +25308,100%,Guinea,1.0,t +21435,100%,Cape Verde,7.0,t +43610,100%,Guernsey,1.0,f +6897,100%,El Salvador,1.0,f +8530,,Togo,1.0,f +32835,100%,,1.0,t +30618,100%,Indonesia,1.0,t +39538,,Greenland,3.0,f +40689,100%,Cuba,23.0,f +26326,100%,Indonesia,1.0,f +10003,,Bosnia and Herzegovina,1.0,f +40689,100%,Cuba,23.0,f +40689,100%,Cuba,23.0,f +49125,100%,Russian Federation,1.0,f +10413,100%,France,2.0,t +43674,,,1.0,t +6540,100%,Kiribati,2.0,f +40689,100%,Cuba,23.0,f +27819,100%,Kenya,1.0,f +1780,,Isle of Man,1.0,f +6540,100%,Kiribati,2.0,f +22452,,Christmas Island,1.0,f +29697,,Lebanon,1.0,f +6209,80%,Nicaragua,9.0,t +34797,,Uzbekistan,1.0,t +8493,100%,,1.0,t +34293,,Turks and Caicos Islands,1.0,f +34517,100%,Russian Federation,1.0,f +47259,,,1.0,t +13194,100%,Kiribati,2.0,f +759,100%,Zimbabwe,1.0,f +35604,100%,Micronesia,1.0,f +48106,100%,Cocos (Keeling) Islands,1.0,f +14366,,,1.0,f +17529,100%,Turkmenistan,1.0,f +9384,,Bosnia and Herzegovina,2.0,t +411,100%,Cuba,2.0,f +32050,100%,Isle of Man,1.0,f +40604,,,1.0,f +1907,100%,Russian Federation,2.0,f +25638,100%,,2.0,f +45788,90%,Afghanistan,2.0,t +27625,100%,Malta,2.0,f +40117,75%,Uganda,1.0,t +4723,100%,,8.0,f +4723,100%,,8.0,f +4723,100%,,8.0,f +42443,97%,Tonga,7.0,t +4723,100%,,8.0,f +4723,100%,,8.0,f +4723,100%,,8.0,f +4723,100%,,8.0,f +4723,100%,,8.0,f +20153,96%,Reunion,51.0,f +16555,100%,Denmark,1.0,f +1933,,,1.0,f +35025,100%,Pakistan,4.0,f +6688,100%,,1.0,f +20837,100%,Nauru,3.0,f +12802,100%,Niger,3.0,t +10143,100%,Sao Tome and Principe,2.0,f +37158,100%,Faroe Islands,1.0,f +9079,,Afghanistan,1.0,f +36275,100%,Croatia,1.0,t +40955,60%,,1.0,f +26238,100%,Turkmenistan,2.0,t +34069,100%,Andorra,3.0,t +27719,89%,,4.0,f +1879,,Nauru,1.0,f +30286,100%,Montserrat,39.0,f +34069,100%,Andorra,3.0,t +15308,,Monaco,1.0,f +44326,,Sao Tome and Principe,1.0,f +40793,100%,,75.0,t +45018,95%,Portugal,3.0,f +34130,,,1.0,f +2712,100%,,1.0,f +14063,100%,Denmark,10.0,t +30286,100%,Montserrat,39.0,f +7129,100%,Guinea,4.0,f +30961,100%,,1.0,f +24033,100%,Uganda,45.0,f +45697,100%,,2.0,f +24924,,Turkmenistan,1.0,t +39109,77%,Ukraine,24.0,t +5022,,Kiribati,1.0,f +8224,98%,Estonia,12.0,f +32203,100%,Barbados,176.0,f +41604,100%,Tonga,4.0,f +1132,88%,Tonga,1.0,f +8355,87%,Togo,16.0,f +149,,France,2.0,t +24103,100%,United Kingdom,3.0,f +30286,100%,Montserrat,39.0,f +27334,100%,China,16.0,f +42422,100%,Isle of Man,1.0,f +33798,89%,Philippines,1.0,t +28842,100%,Reunion,2.0,t +11567,100%,Niger,31.0,t +27434,,,1.0,t +24323,100%,Faroe Islands,3.0,f +34863,,Tonga,4.0,f +14339,99%,Jersey,5.0,f +13203,100%,Reunion,1.0,t +36354,100%,Kenya,1.0,t +29022,100%,,1.0,f +38056,,Cape Verde,1.0,f +18076,100%,Afghanistan,2.0,f +858,,,1.0,t +32858,100%,Marshall Islands,12.0,f +3889,100%,,1.0,f +36803,100%,Gibraltar,2.0,t +7378,,,1.0,f +32858,100%,Marshall Islands,12.0,f +36666,,Jersey,1.0,t +2082,100%,Turkmenistan,2.0,f +9553,100%,,4.0,t +40873,,El Salvador,1.0,f +18616,,Netherlands,1.0,t +17575,100%,Gambia,2.0,f +23364,100%,,1.0,t +18274,100%,,4.0,f +1714,100%,Costa Rica,3.0,f +20150,100%,Jersey,1.0,f +18274,100%,,4.0,f +18274,100%,,4.0,f +18307,100%,,1.0,f +18274,100%,,4.0,f +28595,,,1.0,f +32556,90%,Estonia,11.0,t +14339,99%,Jersey,5.0,f +18078,100%,Montserrat,13.0,t +34147,100%,,1.0,t +44542,100%,Brazil,2.0,f +6248,,,1.0,t +14339,99%,Jersey,5.0,f +32858,100%,Marshall Islands,12.0,f +28588,,,1.0,t +2369,30%,Isle of Man,2.0,f +21636,100%,,1.0,f +15698,,,1.0,f +21392,50%,,2.0,t +36445,100%,United Kingdom,7.0,f +29075,100%,,1.0,f +35466,100%,,2.0,f +7890,,Micronesia,1.0,f +623,84%,,5.0,f +31095,100%,,1.0,f +28372,100%,Indonesia,12.0,f +34444,,,1.0,t +40397,,,1.0,t +25570,,Nauru,6.0,f +45598,83%,China,17.0,f +15958,,,1.0,f +40927,100%,Micronesia,3.0,f +18484,100%,Gambia,108.0,f +42148,86%,Isle of Man,1.0,t +48162,100%,Marshall Islands,1.0,f +39190,,,1.0,f +9971,100%,,1.0,f +26003,100%,,3.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +43183,98%,Tonga,12.0,t +20396,100%,,4.0,f +27550,,,1.0,f +20396,100%,,4.0,f +3172,,,1.0,f +7803,,,1.0,t +39333,,,1.0,f +40720,100%,,1.0,f +36462,,,1.0,f +4410,,,1.0,f +45287,,,1.0,f +19787,100%,Mexico,1.0,t +8238,91%,Barbados,15.0,t +5608,100%,,1.0,f +27679,,,1.0,f +35625,98%,Estonia,25.0,t +48701,100%,Tonga,1.0,f +3754,,,1.0,t +21365,100%,,4.0,f +49445,100%,Denmark,4.0,f +24893,100%,Rwanda,9.0,f +32858,100%,Marshall Islands,12.0,f +27267,95%,Tonga,6.0,f +14628,100%,Uzbekistan,1.0,f +15017,,Kenya,1.0,f +7178,100%,Guernsey,1.0,t +49487,99%,Marshall Islands,6.0,f +25147,99%,Niger,48.0,f +29829,,,1.0,f +541,93%,Marshall Islands,17.0,f +44779,,,1.0,f +24651,,Kiribati,4.0,f +36749,100%,,2.0,f +40908,,,1.0,t +9421,100%,,5.0,f +30920,,Kenya,1.0,f +5057,100%,Zimbabwe,23.0,t +5057,100%,Zimbabwe,23.0,t +25770,,Micronesia,1.0,f +11441,50%,,1.0,t +19945,,,1.0,f +20792,,China,1.0,f +41395,100%,,3.0,f +12716,100%,Sao Tome and Principe,1.0,f +19214,100%,Senegal,55.0,f +34236,100%,,1.0,f +20006,100%,Turkmenistan,1.0,t +13182,,,1.0,f +4330,94%,Ukraine,60.0,t +4313,,,1.0,f +45429,100%,Niue,1.0,f +36693,90%,,3.0,f +35221,100%,Turks and Caicos Islands,30.0,t +12807,100%,El Salvador,1.0,f +44316,98%,Uganda,6.0,t +3710,,,1.0,f +24893,100%,Rwanda,9.0,f +29745,90%,Andorra,1.0,f +27988,100%,Niue,1.0,t +23452,100%,Philippines,4.0,f +28069,100%,Togo,4.0,f +34279,0%,,1.0,f +33638,100%,Sao Tome and Principe,3.0,f +36424,63%,Slovakia (Slovak Republic),12.0,f +17783,63%,,1.0,f +9363,95%,Ukraine,50.0,f +36445,100%,United Kingdom,7.0,f +2065,,Gambia,1.0,f +44694,100%,Cape Verde,1.0,t +24016,100%,Bosnia and Herzegovina,29.0,f +24016,100%,Bosnia and Herzegovina,29.0,f +48075,,United Kingdom,4.0,t +45018,95%,Portugal,3.0,f +49398,88%,Barbados,18.0,t +49549,,,35.0,f +36540,100%,,33.0,t +24033,100%,Uganda,45.0,f +49549,,,35.0,f +10685,100%,Guinea,3.0,f +49549,,,35.0,f +24033,100%,Uganda,45.0,f +29124,100%,Cape Verde,1.0,f +49549,,,35.0,f +49549,,,35.0,f +49549,,,35.0,f +49549,,,35.0,f +49549,,,35.0,f +49549,,,35.0,f +49549,,,35.0,f +17261,100%,France,1.0,f +49549,,,35.0,f +49549,,,35.0,f +49549,,,35.0,f +49549,,,35.0,f +49549,,,35.0,f +49549,,,35.0,f +40101,100%,Micronesia,2.0,t +24511,100%,Indonesia,1.0,f +34213,,Lebanon,1.0,f +18380,,El Salvador,1.0,f +24488,100%,Kenya,3.0,t +8996,,Montserrat,2.0,t +22265,100%,French Guiana,1.0,f +24033,100%,Uganda,45.0,f +5067,,Tonga,1.0,f +38991,100%,Faroe Islands,1.0,t +49549,,,35.0,f +33282,100%,Svalbard & Jan Mayen Islands,1.0,f +49549,,,35.0,f +4190,100%,United Kingdom,2.0,f +12812,99%,Croatia,32.0,f +49549,,,35.0,f +35219,97%,Tonga,4.0,f +5726,100%,Tonga,1.0,f +49549,,,35.0,f +49549,,,35.0,f +18876,60%,Netherlands,26.0,f +49549,,,35.0,f +12812,99%,Croatia,32.0,f +15735,100%,Malta,1.0,f +38814,100%,,1.0,f +49549,,,35.0,f +45306,89%,Rwanda,7.0,t +43071,100%,Maldives,14.0,f +44533,100%,Afghanistan,5.0,f +49549,,,35.0,f +49549,,,35.0,f +29143,100%,,1.0,f +49549,,,35.0,f +49549,,,35.0,f +22612,100%,Kenya,1.0,t +28828,100%,Isle of Man,198.0,t +24470,100%,Uzbekistan,2.0,t +13120,83%,,1.0,f +25101,100%,France,1.0,f +16609,100%,Switzerland,2.0,f +32664,100%,Congo,4.0,f +24063,100%,Saint Helena,1.0,t +17815,80%,Ghana,3.0,f +28766,100%,Estonia,16.0,f +3274,86%,Barbados,24.0,f +8475,90%,Somalia,1.0,t +10637,,Kiribati,1.0,f +5406,100%,Gambia,3.0,f +32858,100%,Marshall Islands,12.0,f +12282,100%,Lithuania,1.0,f +36540,100%,,33.0,t +25079,100%,,1.0,f +49549,,,35.0,f +3451,,Peru,1.0,f +49549,,,35.0,f +21908,100%,Niue,49.0,f +49549,,,35.0,f +49549,,,35.0,f +49549,,,35.0,f +26936,100%,Togo,2.0,f +49549,,,35.0,f +48804,,Nicaragua,1.0,f +30781,100%,Tonga,1.0,f +21908,100%,Niue,49.0,f +9147,100%,,4.0,f +49549,,,35.0,f +49549,,,35.0,f +36445,100%,United Kingdom,7.0,f +13945,,,2.0,t +8035,,Rwanda,1.0,f +30286,100%,Montserrat,39.0,f +36445,100%,United Kingdom,7.0,f +10580,,Zimbabwe,3.0,t +36677,100%,Maldives,6.0,f +37247,100%,Tanzania,3.0,f +38695,100%,United Kingdom,4.0,t +5829,100%,,1.0,f +14485,,,1.0,f +46327,,,1.0,f +9363,95%,Ukraine,50.0,f +37858,92%,Anguilla,7.0,f +10202,89%,Nicaragua,10.0,f +2249,100%,,1.0,f +23386,50%,,3.0,f +46597,100%,Tonga,2.0,t +25729,100%,Cuba,2.0,f +11753,100%,Gambia,11.0,t +3848,,,2.0,f +34852,,Niue,10.0,t +18022,90%,France,2.0,f +4515,100%,Gambia,2.0,f +23661,100%,,2.0,t +21607,90%,France,3.0,t +45123,50%,,1.0,t +42416,97%,Puerto Rico,20.0,f +26456,100%,Congo,1.0,f +49849,,,1.0,f +49363,80%,,1.0,f +48254,,Micronesia,1.0,f +44385,50%,Vanuatu,1.0,f +23661,100%,,2.0,t +24739,100%,,1.0,t +22920,,Lebanon,1.0,f +21637,,Russian Federation,2.0,f +33360,100%,Lithuania,1.0,f +3559,100%,,1.0,t +33964,,French Guiana,3.0,f +16335,,Saint Helena,1.0,f +15163,100%,Niue,1.0,f +27073,,United Kingdom,3.0,t +42537,,,2.0,f +13070,100%,Fiji,45.0,f +5730,100%,,1.0,f +2388,,Mauritania,1.0,f +4182,0%,France,1.0,f +21647,,Austria,3.0,f +8770,100%,El Salvador,3.0,f +22173,,Guinea,1.0,f +7901,100%,Guinea,1.0,f +5230,100%,Brazil,3.0,f +49861,,Niue,1.0,f +770,80%,El Salvador,1.0,t +28828,100%,Isle of Man,198.0,t +36774,100%,Tonga,19.0,f +871,75%,,3.0,f +23382,100%,Marshall Islands,1.0,t +21221,100%,Russian Federation,1.0,f +5232,93%,,2.0,t +26165,100%,Micronesia,1.0,f +8968,67%,,1.0,f +35209,100%,,1.0,f +19188,,Mauritania,1.0,f +40447,100%,Brazil,1.0,f +4948,0%,Niue,1.0,f +29701,98%,Vietnam,3.0,f +13946,100%,France,2.0,f +30330,,Faroe Islands,2.0,f +20903,100%,,3.0,f +20903,100%,,3.0,f +20903,100%,,3.0,f +43803,50%,Sao Tome and Principe,2.0,f +24463,,,3.0,f +24463,,,3.0,f +24463,,,3.0,f +6713,100%,Mauritania,10.0,f +47092,100%,Mauritania,1.0,f +26211,,Turkmenistan,1.0,f +43041,,Isle of Man,3.0,f +24195,56%,Barbados,14.0,f +42416,97%,Puerto Rico,20.0,f +1137,100%,,4.0,f +1137,100%,,4.0,f +1137,100%,,4.0,f +46118,100%,Nicaragua,11.0,f +1137,100%,,4.0,f +9177,,Maldives,1.0,f +1537,100%,,3.0,f +25763,92%,Micronesia,4.0,f +26900,100%,Senegal,1.0,f +25687,100%,Anguilla,17.0,f +24536,,Uzbekistan,1.0,t +41657,87%,Switzerland,4.0,f +11904,100%,Nauru,1.0,f +24026,98%,Cape Verde,69.0,t +12812,99%,Croatia,32.0,f +38962,100%,Gibraltar,2.0,t +1392,95%,,1.0,f +10580,,Zimbabwe,3.0,t +18044,100%,Brazil,1.0,t +40421,96%,Jersey,29.0,t +10711,93%,Uganda,108.0,t +20334,99%,Niger,171.0,t +20334,99%,Niger,171.0,t +34657,,Kenya,2.0,f +9239,100%,Cuba,17.0,f +45598,83%,China,17.0,f +32501,,Uganda,1.0,f +8453,100%,Rwanda,6.0,t +49412,100%,,1.0,f +30102,100%,Togo,2.0,t +25118,100%,Indonesia,4.0,f +24844,100%,Uzbekistan,6.0,f +27774,78%,Vietnam,15.0,f +47232,,Cocos (Keeling) Islands,1.0,f +9239,100%,Cuba,17.0,f +31041,96%,Ecuador,35.0,f +32858,100%,Marshall Islands,12.0,f +40068,100%,Marshall Islands,2.0,f +5818,100%,,2.0,t +4794,100%,Marshall Islands,1.0,f +35100,100%,Lebanon,1.0,f +18077,100%,Sao Tome and Principe,139.0,f +5886,94%,Fiji,25.0,t +23093,,,1.0,f +26453,,Estonia,1.0,f +24872,,Malta,2.0,f +19214,100%,Senegal,55.0,f +19214,100%,Senegal,55.0,f +49105,100%,Malta,3.0,f +32858,100%,Marshall Islands,12.0,f +50089,100%,Isle of Man,2.0,f +703,,Greenland,1.0,f +44857,100%,Zimbabwe,24.0,t +41359,100%,Micronesia,6.0,f +27192,100%,Maldives,1.0,f +20791,100%,Isle of Man,2.0,f +9043,100%,Gibraltar,3.0,f +25118,100%,Indonesia,4.0,f +33836,100%,Kenya,4.0,f +25414,90%,Gambia,2.0,f +1171,100%,Svalbard & Jan Mayen Islands,1.0,f +1508,90%,Gambia,3.0,f +29869,100%,Guinea,1.0,t +32002,50%,Niue,2.0,f +40792,100%,,1.0,f +17581,100%,Kenya,3.0,t +38684,70%,Uzbekistan,1.0,t +45260,94%,,19.0,f +42701,90%,Tanzania,4.0,t +17581,100%,Kenya,3.0,t +19726,100%,United Kingdom,2.0,t +1508,90%,Gambia,3.0,f +19214,100%,Senegal,55.0,f +44379,80%,El Salvador,8.0,t +7896,,El Salvador,1.0,f +4330,94%,Ukraine,60.0,t +4330,94%,Ukraine,60.0,t +40706,100%,,2.0,f +20153,96%,Reunion,51.0,f +20153,96%,Reunion,51.0,f +20153,96%,Reunion,51.0,f +20153,96%,Reunion,51.0,f +1375,100%,Micronesia,5.0,f +23410,100%,French Guiana,2.0,f +4919,,Turks and Caicos Islands,1.0,f +24665,100%,,1.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +8802,100%,Marshall Islands,2.0,f +46026,100%,,2.0,f +12927,100%,Russian Federation,1.0,t +41928,87%,Nicaragua,9.0,f +31277,,Cocos (Keeling) Islands,3.0,f +9,100%,Gambia,4.0,f +19427,90%,,1.0,f +39923,100%,Russian Federation,2.0,f +30969,100%,Niue,1.0,f +15328,100%,Marshall Islands,1.0,f +32203,100%,Barbados,176.0,f +31277,,Cocos (Keeling) Islands,3.0,f +37284,80%,,2.0,f +28828,100%,Isle of Man,198.0,t +36475,100%,Guernsey,4.0,t +12247,100%,Maldives,33.0,f +6116,100%,Monaco,8.0,f +9471,100%,,1.0,f +4534,,Malawi,1.0,t +12247,100%,Maldives,33.0,f +1885,100%,United Kingdom,1.0,f +28449,,Faroe Islands,1.0,f +18077,100%,Sao Tome and Principe,139.0,f +30286,100%,Montserrat,39.0,f +2987,,Anguilla,1.0,f +25097,,Marshall Islands,1.0,f +8214,100%,,3.0,f +31777,80%,Monaco,1.0,t +25958,100%,Tonga,3.0,f +46611,94%,,7.0,f +25098,,Sao Tome and Principe,1.0,f +24634,100%,Guinea,20.0,t +6116,100%,Monaco,8.0,f +30080,88%,Pakistan,1.0,f +32969,100%,,1.0,f +35199,50%,,2.0,f +34105,,Montserrat,1.0,t +1882,98%,,3.0,f +1882,98%,,3.0,f +27041,50%,Russian Federation,1.0,f +21972,100%,Turks and Caicos Islands,1.0,f +34532,100%,Monaco,1.0,f +18829,100%,Indonesia,4.0,t +623,84%,,5.0,f +32203,100%,Barbados,176.0,f +4887,100%,Montserrat,1.0,t +451,70%,Cocos (Keeling) Islands,2.0,f +36379,100%,Svalbard & Jan Mayen Islands,1.0,f +15891,50%,,1.0,f +36244,100%,Congo,2.0,f +18072,99%,Montserrat,37.0,f +24651,,Kiribati,4.0,f +3852,,,1.0,f +5432,,Maldives,1.0,f +32038,100%,Indonesia,35.0,f +48793,100%,Russian Federation,1.0,f +14526,100%,Russian Federation,1.0,f +48696,,,1.0,f +4700,100%,Indonesia,1.0,t +47830,,United Kingdom,1.0,f +32858,100%,Marshall Islands,12.0,f +42704,100%,Lebanon,1.0,f +13854,100%,Portugal,1.0,f +24954,60%,Christmas Island,2.0,f +5846,,,1.0,f +40990,100%,Nicaragua,2.0,f +22051,,,1.0,t +28205,,Iraq,22.0,f +10326,90%,,1.0,t +27094,,,1.0,f +18699,100%,Kenya,2.0,f +43659,98%,Maldives,14.0,f +22171,,,1.0,f +15517,,,1.0,f +17221,,,1.0,t +28245,78%,,1.0,f +37049,100%,,1.0,f +33433,100%,Rwanda,9.0,f +18247,95%,Iran,80.0,t +41518,100%,Montserrat,13.0,t +31035,100%,Sao Tome and Principe,3.0,f +32002,50%,Niue,2.0,f +38270,100%,Maldives,6.0,f +573,100%,Zimbabwe,3.0,f +45909,,Russian Federation,1.0,f +18183,100%,Netherlands,5.0,t +10799,100%,Micronesia,1.0,f +36736,,,1.0,f +2105,100%,Tonga,1.0,f +28367,100%,Marshall Islands,1.0,f +32079,,Suriname,1.0,f +18426,100%,,2.0,t +25570,,Nauru,6.0,f +42539,,Faroe Islands,1.0,f +41549,,,1.0,f +47403,100%,Zimbabwe,2.0,f +36976,100%,Micronesia,1.0,t +31640,100%,,2.0,f +17502,80%,Netherlands,1.0,f +26554,,Rwanda,1.0,f +17353,,Nicaragua,1.0,f +14791,100%,Cocos (Keeling) Islands,3.0,t +10378,100%,Afghanistan,2.0,f +5088,90%,Niue,1.0,t +8152,100%,Peru,1.0,f +32819,100%,,1.0,f +9,100%,Gambia,4.0,f +33981,,,1.0,f +42051,100%,Nicaragua,11.0,t +34052,100%,Svalbard & Jan Mayen Islands,2.0,f +43855,100%,Isle of Man,1.0,t +42345,,Peru,1.0,f +11497,,Barbados,2.0,t +40364,100%,Tonga,25.0,f +6747,90%,Isle of Man,1.0,f +23920,,,2.0,f +19214,100%,Senegal,55.0,f +10181,100%,Micronesia,1.0,t +29434,,,2.0,f +19214,100%,Senegal,55.0,f +32925,,Bouvet Island (Bouvetoya),1.0,f +45203,100%,Cuba,2.0,t +47186,100%,Faroe Islands,2.0,f +45203,100%,Cuba,2.0,t +47825,,El Salvador,1.0,f +47186,100%,Faroe Islands,2.0,f +20081,95%,Senegal,2.0,f +23119,,Faroe Islands,2.0,t +28205,,Iraq,22.0,f +30853,100%,Sao Tome and Principe,2.0,f +29441,0%,Senegal,1.0,t +32101,100%,,1.0,f +5725,100%,Sao Tome and Principe,2.0,f +10953,,,1.0,f +3650,100%,Zimbabwe,1.0,t +33910,100%,Rwanda,8.0,t +31193,,Uganda,3.0,t +5725,100%,Sao Tome and Principe,2.0,f +31632,,Tonga,2.0,f +10652,100%,,1.0,f +2294,100%,,1.0,t +35840,,France,2.0,t +49506,100%,,2.0,f +41831,100%,Rwanda,1.0,f +25655,100%,Ukraine,2.0,f +18744,100%,Marshall Islands,1.0,f +8634,,,1.0,f +30059,100%,Uzbekistan,1.0,f +45485,100%,Maldives,1.0,f +4879,,,1.0,f +19967,100%,,1.0,f +13787,100%,Fiji,1.0,f +28553,100%,Greenland,3.0,f +11648,50%,Gibraltar,1.0,f +37222,,,1.0,f +19959,100%,,1.0,f +3609,100%,Jersey,1.0,f +32360,100%,Niue,1.0,t +11645,100%,,1.0,f +17051,100%,Micronesia,1.0,f +33910,100%,Rwanda,8.0,t +6601,0%,Marshall Islands,1.0,f +22127,100%,United Kingdom,1.0,f +35972,100%,,3.0,f +27205,100%,Congo,1.0,t +28703,100%,Uzbekistan,2.0,f +46397,,,1.0,f +33910,100%,Rwanda,8.0,t +34224,100%,,1.0,f +26375,100%,Afghanistan,5.0,t +39880,100%,,1.0,f +33910,100%,Rwanda,8.0,t +33910,100%,Rwanda,8.0,t +26835,,,1.0,t +33910,100%,Rwanda,8.0,t +30756,100%,Uganda,3.0,t +32423,90%,Turks and Caicos Islands,2.0,t +18183,100%,Netherlands,5.0,t +38958,,,1.0,f +6181,100%,Zimbabwe,4.0,f +10095,70%,Costa Rica,1.0,f +37582,100%,Cook Islands,3.0,f +49272,,,1.0,t +24020,77%,Tonga,6.0,t +25118,100%,Indonesia,4.0,f +40525,83%,,1.0,f +23861,100%,Somalia,1.0,f +19935,100%,,1.0,f +32326,80%,Svalbard & Jan Mayen Islands,1.0,f +44986,100%,,1.0,f +21151,100%,Portugal,5.0,f +49881,95%,,4.0,f +48791,97%,Uzbekistan,5.0,t +49881,95%,,4.0,f +37646,100%,Estonia,60.0,f +18774,100%,Uzbekistan,4.0,f +49881,95%,,4.0,f +20527,100%,,1.0,f +25147,99%,Niger,48.0,f +49902,50%,,3.0,f +15695,100%,Malawi,2.0,t +41746,100%,Mauritania,1.0,f +49902,50%,,3.0,f +37639,100%,Nauru,11.0,f +49793,100%,France,1.0,t +28303,100%,Isle of Man,1.0,t +25053,25%,Uzbekistan,1.0,t +48748,,Micronesia,1.0,t +32288,100%,Rwanda,1.0,f +30216,98%,Maldives,34.0,f +43699,,Chad,1.0,t +38483,100%,Gambia,1.0,f +17815,80%,Ghana,3.0,f +45584,0%,Kenya,2.0,t +24893,100%,Rwanda,9.0,f +9019,100%,Greenland,2.0,f +222,89%,,16.0,f +30216,98%,Maldives,34.0,f +23854,,Uzbekistan,15.0,f +14514,,China,80.0,t +21908,100%,Niue,49.0,f +48914,100%,French Guiana,1.0,t +5003,100%,Jersey,8.0,f +23854,,Uzbekistan,15.0,f +4722,96%,Guinea,13.0,t +23854,,Uzbekistan,15.0,f +30216,98%,Maldives,34.0,f +9593,100%,,1.0,f +37639,100%,Nauru,11.0,f +30216,98%,Maldives,34.0,f +3982,100%,,3.0,f +25376,100%,,3.0,f +48954,100%,Montserrat,8.0,t +49415,,,1.0,f +27203,,Bouvet Island (Bouvetoya),13.0,f +27203,,Bouvet Island (Bouvetoya),13.0,f +48244,100%,Kiribati,1.0,t +41693,100%,Nicaragua,2.0,f +31057,100%,France,2.0,t +43693,100%,Russian Federation,1.0,f +45383,,Monaco,1.0,f +7733,0%,Sao Tome and Principe,1.0,f +13856,60%,Afghanistan,2.0,f +13,,United Kingdom,1.0,f +19652,,,1.0,f +32011,,Sao Tome and Principe,1.0,f +42214,100%,,1.0,f +16491,,Brazil,1.0,f +28684,100%,Mauritania,1.0,f +3682,100%,Nicaragua,1.0,f +42011,100%,Micronesia,3.0,f +28929,,Faroe Islands,1.0,t +24867,90%,Bosnia and Herzegovina,5.0,f +37574,100%,Zimbabwe,2.0,t +35812,,China,2.0,f +43913,67%,Nicaragua,1.0,f +48425,100%,,3.0,f +12848,100%,Denmark,2.0,f +12848,100%,Denmark,2.0,f +30302,,Chad,1.0,f +15452,90%,Niue,2.0,f +44444,100%,,1.0,t +39421,,,1.0,f +36605,,Sao Tome and Principe,4.0,t +4681,,Bouvet Island (Bouvetoya),1.0,f +17876,100%,Guinea,3.0,f +43237,40%,Montserrat,24.0,f +3183,100%,Svalbard & Jan Mayen Islands,1.0,f +24692,100%,Sao Tome and Principe,1.0,f +23747,100%,Niger,4.0,t +6564,,Uganda,9.0,f +45450,90%,,1.0,f +42837,100%,Turkmenistan,2.0,t +31594,100%,Philippines,19.0,t +19292,100%,Niue,1.0,f +44921,,Wallis and Futuna,3.0,t +33933,100%,Papua New Guinea,3.0,f +42144,,,1.0,f +37646,100%,Estonia,60.0,f +3770,100%,Svalbard & Jan Mayen Islands,1.0,t +48409,,Estonia,60.0,t +29081,98%,Uzbekistan,18.0,f +40698,100%,Micronesia,3.0,f +18034,59%,Svalbard & Jan Mayen Islands,4.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +30362,,Estonia,1.0,f +10964,100%,Tonga,5.0,t +30793,88%,Sao Tome and Principe,1.0,f +17789,94%,Reunion,6.0,f +38701,40%,Niger,27.0,f +49899,0%,Costa Rica,1.0,f +9404,100%,Papua New Guinea,2.0,f +18077,100%,Sao Tome and Principe,139.0,f +30286,100%,Montserrat,39.0,f +28773,100%,,1.0,f +32203,100%,Barbados,176.0,f +20795,,,4.0,f +20795,,,4.0,f +20795,,,4.0,f +20795,,,4.0,f +25174,,Bosnia and Herzegovina,1.0,f +48178,17%,Estonia,5.0,t +47949,100%,,1.0,t +8091,97%,Cuba,10.0,f +27996,83%,Chad,1.0,t +12259,,Vanuatu,1.0,f +44767,100%,,9.0,f +44767,100%,,9.0,f +44767,100%,,9.0,f +40303,100%,Guinea,82.0,f +17218,,Nauru,2.0,f +44767,100%,,9.0,f +32671,,,1.0,f +25230,98%,,3.0,f +6116,100%,Monaco,8.0,f +7633,100%,,2.0,f +10353,,Micronesia,1.0,t +41014,100%,Netherlands,3.0,f +4987,90%,Russian Federation,1.0,f +5978,100%,Zimbabwe,3.0,t +44767,100%,,9.0,f +25230,98%,,3.0,f +24565,100%,Anguilla,4.0,f +42313,,Bosnia and Herzegovina,2.0,f +5205,,Slovakia (Slovak Republic),6.0,t +18876,60%,Netherlands,26.0,f +43659,98%,Maldives,14.0,f +26652,97%,Pakistan,6.0,f +11845,100%,Niue,1.0,f +23143,65%,Bouvet Island (Bouvetoya),14.0,f +9360,90%,,1.0,f +28255,75%,Somalia,1.0,f +10550,33%,,1.0,f +44767,100%,,9.0,f +18077,100%,Sao Tome and Principe,139.0,f +34373,100%,Turkmenistan,1.0,t +44767,100%,,9.0,f +44767,100%,,9.0,f +44767,100%,,9.0,f +35250,100%,Togo,1.0,f +37473,,Zimbabwe,1.0,f +40303,100%,Guinea,82.0,f +19991,,China,1.0,f +31422,,Anguilla,1.0,f +25230,98%,,3.0,f +35439,94%,United Kingdom,23.0,t +24417,100%,,2.0,f +24417,100%,,2.0,f +40364,100%,Tonga,25.0,f +8956,100%,Kiribati,1.0,f +44107,100%,,1.0,t +45794,100%,Anguilla,1.0,f +20227,,Niue,1.0,f +13202,87%,Uganda,3.0,f +5852,90%,Sao Tome and Principe,1.0,t +23091,78%,,1.0,f +42051,100%,Nicaragua,11.0,t +11335,100%,Montserrat,3.0,t +8955,100%,China,1.0,f +18004,100%,Sao Tome and Principe,1.0,f +11672,100%,Kiribati,6.0,t +42358,100%,Svalbard & Jan Mayen Islands,3.0,f +5215,,Cocos (Keeling) Islands,1.0,f +32192,100%,,1.0,t +23077,,,1.0,f +9537,100%,Nicaragua,1.0,f +7022,92%,Turks and Caicos Islands,2.0,f +12449,100%,,2.0,f +11627,50%,Niue,1.0,f +22262,100%,,1.0,f +36445,100%,United Kingdom,7.0,f +10302,,,1.0,f +34843,100%,Senegal,1.0,f +38019,100%,Afghanistan,10.0,f +9979,,Chad,1.0,f +8311,90%,Guernsey,1.0,f +30181,100%,Lebanon,2.0,f +30286,100%,Montserrat,39.0,f +47384,100%,Vanuatu,2.0,f +6662,,,2.0,t +32182,,Costa Rica,1.0,f +4071,100%,Tunisia,1.0,f +48001,100%,,1.0,f +9779,100%,Ecuador,1.0,f +44507,83%,,1.0,f +16520,100%,Marshall Islands,22.0,f +12117,100%,Monaco,1.0,f +48626,,Turks and Caicos Islands,3.0,f +37787,100%,Barbados,5.0,f +39527,100%,Vanuatu,2.0,f +39938,,Lebanon,1.0,f +19061,100%,Isle of Man,2.0,t +32038,100%,Indonesia,35.0,f +30747,100%,Costa Rica,2.0,f +37627,,Kenya,1.0,f +30286,100%,Montserrat,39.0,f +26955,100%,Uzbekistan,1.0,f +23622,,,1.0,f +29123,100%,Zimbabwe,16.0,t +20754,,China,13.0,f +19051,,Malta,1.0,f +45615,100%,Fiji,2.0,f +9426,,French Guiana,1.0,t +49999,80%,Russian Federation,5.0,t +29647,100%,Peru,1305.0,f +47770,100%,Jersey,2.0,f +48626,,Turks and Caicos Islands,3.0,f +18738,95%,,2.0,t +38136,,Chad,4.0,f +30747,100%,Costa Rica,2.0,f +13364,91%,Netherlands,21.0,f +36050,,Bouvet Island (Bouvetoya),1.0,t +19794,90%,Djibouti,1.0,f +46199,80%,Somalia,3.0,f +48626,,Turks and Caicos Islands,3.0,f +30286,100%,Montserrat,39.0,f +36314,100%,,1.0,f +6116,100%,Monaco,8.0,f +13364,91%,Netherlands,21.0,f +50097,90%,,1.0,f +1721,100%,Ecuador,5.0,f +40364,100%,Tonga,25.0,f +30286,100%,Montserrat,39.0,f +19543,,Bosnia and Herzegovina,5.0,f +45064,98%,Anguilla,15.0,f +49526,100%,Gambia,4.0,f +34947,,,1.0,f +40364,100%,Tonga,25.0,f +9183,100%,,3.0,f +29647,100%,Peru,1305.0,f +40141,100%,Maldives,3.0,t +4130,,Maldives,7.0,f +43800,100%,Maldives,5.0,t +22078,,Indonesia,20.0,f +4392,100%,,1.0,t +993,100%,Gambia,1.0,f +7517,100%,,2.0,f +31980,,,1.0,f +49420,100%,Indonesia,2.0,f +7517,100%,,2.0,f +6564,,Uganda,9.0,f +32183,100%,,1.0,f +9363,95%,Ukraine,50.0,f +23386,50%,,3.0,f +8102,100%,Togo,2.0,t +5875,100%,,2.0,f +8450,50%,United Kingdom,1.0,f +41359,100%,Micronesia,6.0,f +34718,,,1.0,f +26477,100%,,1.0,f +5185,0%,Gambia,12.0,f +5185,0%,Gambia,12.0,f +5185,0%,Gambia,12.0,f +5185,0%,Gambia,12.0,f +20153,96%,Reunion,51.0,f +20153,96%,Reunion,51.0,f +47138,100%,,1.0,t +33873,100%,Turks and Caicos Islands,8.0,t +16080,,Guinea,1.0,f +12812,99%,Croatia,32.0,f +32203,100%,Barbados,176.0,f +32203,100%,Barbados,176.0,f +39378,100%,Brazil,1.0,f +28837,100%,Wallis and Futuna,3.0,f +32203,100%,Barbados,176.0,f +41630,100%,Kiribati,24.0,f +37120,100%,Sao Tome and Principe,1.0,f +41174,100%,Isle of Man,1.0,f +44738,,Kenya,1.0,t +13553,93%,Vietnam,5.0,f +43811,,Reunion,7.0,f +48117,98%,Ukraine,41.0,f +22594,100%,Rwanda,12.0,f +22594,100%,Rwanda,12.0,f +32203,100%,Barbados,176.0,f +37714,100%,Zimbabwe,3.0,f +2269,50%,Svalbard & Jan Mayen Islands,1.0,f +15693,100%,Vietnam,6.0,f +48117,98%,Ukraine,41.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +24224,100%,Vietnam,1.0,f +49504,100%,Guinea,2.0,f +18963,,Anguilla,1.0,f +20334,99%,Niger,171.0,t +49384,100%,Slovakia (Slovak Republic),21.0,f +43811,,Reunion,7.0,f +48038,,Bouvet Island (Bouvetoya),2.0,f +32203,100%,Barbados,176.0,f +5420,100%,Tonga,41.0,f +43811,,Reunion,7.0,f +2872,89%,Maldives,2.0,f +43811,,Reunion,7.0,f +5230,100%,Brazil,3.0,f +43811,,Reunion,7.0,f +43811,,Reunion,7.0,f +7073,67%,Niue,2.0,t +2082,100%,Turkmenistan,2.0,f +43811,,Reunion,7.0,f +17003,100%,Brazil,1.0,f +11442,90%,Maldives,5.0,f +49682,90%,,1.0,t +34093,60%,,1.0,f +27970,100%,Niue,2.0,t +22594,100%,Rwanda,12.0,f +5420,100%,Tonga,41.0,f +42862,100%,,1.0,f +38502,90%,,2.0,f +36424,63%,Slovakia (Slovak Republic),12.0,f +12624,,,10.0,f +12624,,,10.0,f +46510,100%,,1.0,f +41117,,Chad,2.0,t +12624,,,10.0,f +12624,,,10.0,f +12624,,,10.0,f +12624,,,10.0,f +12624,,,10.0,f +12624,,,10.0,f +12624,,,10.0,f +12624,,,10.0,f +14582,100%,Congo,1.0,t +12269,,Sao Tome and Principe,1.0,f +8243,100%,Pakistan,2.0,f +3069,100%,Denmark,1.0,f +44927,100%,Jersey,1.0,f +4446,100%,Uganda,58.0,f +27331,,,1.0,f +45199,,Puerto Rico,6.0,f +8761,,Niue,1.0,f +48796,100%,Brazil,3.0,t +42048,80%,Turkmenistan,1.0,t +33418,,,1.0,f +917,100%,Kiribati,2.0,f +4387,,Burundi,4.0,f +1735,100%,,2.0,f +34759,,United Kingdom,1.0,f +30748,,Guinea,5.0,f +40421,96%,Jersey,29.0,t +32858,100%,Marshall Islands,12.0,f +45749,,Niue,1.0,f +39158,100%,,3.0,t +26370,100%,,4.0,t +10915,75%,Svalbard & Jan Mayen Islands,1.0,f +20958,100%,,1.0,f +29951,90%,Russian Federation,2.0,f +21546,100%,Uzbekistan,1.0,f +44659,100%,Pakistan,1.0,f +43002,100%,Gambia,1.0,f +34177,100%,France,1.0,f +44441,100%,United Kingdom,1.0,t +44501,80%,Zimbabwe,1.0,f +28519,,French Guiana,1.0,f +42111,100%,Russian Federation,1.0,f +14032,,,9.0,f +24568,100%,Brazil,1.0,f +29381,,,1.0,t +39329,,Montserrat,2.0,t +7302,100%,Denmark,2.0,t +5185,0%,Gambia,12.0,f +2289,,Tanzania,2.0,f +6202,,Uganda,1.0,f +31463,90%,Croatia,1.0,f +541,93%,Marshall Islands,17.0,f +47274,100%,Tonga,48.0,f +18730,,,1.0,t +17423,90%,,2.0,f +7908,100%,Anguilla,1.0,f +18784,100%,Ukraine,2.0,t +24896,100%,Algeria,50.0,t +35807,100%,Sao Tome and Principe,2.0,f +14899,100%,Zimbabwe,3.0,t +10374,100%,,1.0,f +4327,100%,Russian Federation,2.0,f +15022,100%,Palestinian Territory,1.0,f +26858,,,1.0,f +16381,,Russian Federation,1.0,f +48714,,Montserrat,1.0,f +35123,100%,Chile,1.0,f +19128,100%,Uzbekistan,12.0,t +14514,,China,80.0,t +32203,100%,Barbados,176.0,f +25619,100%,,1.0,f +23138,100%,Mauritania,1.0,f +30286,100%,Montserrat,39.0,f +45598,83%,China,17.0,f +5889,100%,Isle of Man,1.0,f +1558,100%,,10.0,f +33061,67%,Pakistan,1.0,f +30286,100%,Montserrat,39.0,f +44637,,El Salvador,1.0,t +26242,100%,Tanzania,1.0,f +7487,80%,Croatia,1.0,f +8220,100%,Anguilla,1.0,f +29763,,Nicaragua,1.0,f +19477,100%,Marshall Islands,1.0,f +24399,100%,,1.0,f +14514,,China,80.0,t +32124,,Denmark,1.0,f +14329,100%,Micronesia,1.0,f +15201,67%,Kiribati,1.0,f +23768,67%,United Kingdom,1.0,f +35627,,,2.0,f +2281,,Marshall Islands,1.0,f +34449,100%,Sao Tome and Principe,2.0,f +38937,100%,Tanzania,2.0,t +1690,50%,Uganda,2.0,f +5185,0%,Gambia,12.0,f +9278,100%,Netherlands,10.0,f +29619,100%,,1.0,f +34243,95%,Uzbekistan,1.0,f +49891,90%,Estonia,1.0,f +32910,,Senegal,1.0,f +40783,100%,United Kingdom,1.0,f +12449,100%,,2.0,f +23334,100%,Estonia,1.0,f +41520,100%,France,1.0,f +13160,100%,Cape Verde,5.0,t +36227,100%,Malta,2.0,f +10711,93%,Uganda,108.0,t +27628,100%,Estonia,1.0,f +36073,100%,,12.0,f +36073,100%,,12.0,f +6041,100%,Maldives,3.0,f +45064,98%,Anguilla,15.0,f +6696,,Gambia,1.0,f +37741,100%,Denmark,1.0,f +41017,100%,,1.0,f +27073,,United Kingdom,3.0,t +31106,,Greenland,1.0,f +27073,,United Kingdom,3.0,t +36073,100%,,12.0,f +36073,100%,,12.0,f +36073,100%,,12.0,f +27928,100%,,4.0,f +27500,100%,Niue,2.0,f +22953,100%,,3.0,f +5795,,Nauru,1.0,f +29081,98%,Uzbekistan,18.0,f +40375,100%,,10.0,t +47594,100%,Kenya,17.0,t +17263,,Niue,1.0,f +41762,100%,Russian Federation,1.0,f +19757,100%,Niger,3.0,f +41651,100%,Russian Federation,1.0,t +12114,100%,,2.0,t +45856,,Malawi,1.0,t +38937,100%,Tanzania,2.0,t +29265,95%,Lithuania,3.0,f +4330,94%,Ukraine,60.0,t +42624,,,1.0,f +7604,,Netherlands,1.0,t +33408,100%,Tonga,6.0,f +11306,100%,Togo,2.0,f +24916,100%,,1.0,f +31582,,Tonga,1.0,t +15505,100%,,1.0,f +16292,83%,Reunion,1.0,f +16183,,Isle of Man,1.0,f +8243,100%,Pakistan,2.0,f +3825,,,1.0,f +3259,,Kenya,1.0,f +15078,,Vietnam,8.0,f +33630,100%,,1.0,t +25333,,Guernsey,1.0,f +32828,,,1.0,t +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +45149,100%,Chad,3.0,t +24594,100%,Rwanda,14.0,f +29919,100%,,1.0,f +6272,100%,Uzbekistan,1.0,t +7778,100%,Mauritania,7.0,t +24594,100%,Rwanda,14.0,f +28244,80%,,4.0,f +14047,100%,Philippines,4.0,f +34757,,Guinea,1.0,f +7458,100%,,2.0,f +39164,100%,Cocos (Keeling) Islands,3.0,f +49570,,Denmark,6.0,f +36073,100%,,12.0,f +36073,100%,,12.0,f +36073,100%,,12.0,f +36073,100%,,12.0,f +36073,100%,,12.0,f +36073,100%,,12.0,f +40484,100%,,1.0,t +36073,100%,,12.0,f +50082,,,1.0,t +22507,,,1.0,f +297,100%,,1.0,f +2081,97%,Niue,2.0,f +42138,,Denmark,2.0,f +45162,,Maldives,20.0,f +31906,100%,,2.0,f +44303,,,1.0,t +48188,100%,,1.0,f +2245,100%,Russian Federation,1.0,f +666,,Anguilla,1.0,f +40664,100%,Cocos (Keeling) Islands,1.0,f +14736,0%,,1.0,f +6808,100%,Anguilla,2.0,t +38752,100%,Jersey,1.0,t +27001,,Guernsey,1.0,f +15727,71%,Grenada,1.0,f +35730,100%,,1.0,f +7142,,Kiribati,5.0,f +48786,90%,Pakistan,1.0,f +7142,,Kiribati,5.0,f +31974,,,1.0,f +7142,,Kiribati,5.0,f +7142,,Kiribati,5.0,f +31848,,Libyan Arab Jamahiriya,1.0,t +11589,100%,Djibouti,1.0,f +6026,100%,Rwanda,1.0,t +40140,90%,Marshall Islands,3.0,f +29578,100%,Chile,2.0,f +34527,75%,Afghanistan,1.0,f +7142,,Kiribati,5.0,f +29365,100%,Venezuela,2.0,t +40620,100%,Guinea,2.0,f +47128,,Portugal,1.0,f +9226,,Mauritania,5.0,f +14935,100%,Uzbekistan,2.0,t +2562,100%,Micronesia,2.0,f +48557,,,1.0,f +45306,89%,Rwanda,7.0,t +30849,,,2.0,f +14935,100%,Uzbekistan,2.0,t +16107,100%,Brazil,1.0,t +11500,100%,Russian Federation,1.0,f +139,100%,,1.0,f +26928,100%,,4.0,f +7634,100%,Nicaragua,2.0,f +26013,100%,Uzbekistan,4.0,f +6782,100%,Uganda,5.0,f +31827,100%,Croatia,2.0,t +45162,,Maldives,20.0,f +34122,0%,,1.0,f +12999,100%,Micronesia,1.0,f +47598,100%,,1.0,t +3524,100%,Ghana,5.0,f +11632,100%,,1.0,f +2988,100%,Russian Federation,2.0,f +49083,100%,,1.0,f +38317,100%,Isle of Man,2.0,f +26013,100%,Uzbekistan,4.0,f +48410,,,1.0,f +929,100%,,1.0,t +47201,,Libyan Arab Jamahiriya,1.0,f +15671,100%,,1.0,f +22566,100%,,1.0,f +31814,100%,Mauritania,1.0,t +34359,,Indonesia,1.0,f +17883,100%,,1.0,f +43983,,Turkmenistan,2.0,f +23980,,Isle of Man,1.0,f +871,75%,,3.0,f +12296,,Afghanistan,1.0,f +49370,90%,Niue,1.0,t +18876,60%,Netherlands,26.0,f +4771,,,1.0,f +20253,,,1.0,f +7476,100%,,1.0,f +27409,100%,Estonia,1.0,f +49565,92%,Uganda,14.0,f +24975,0%,,1.0,f +10689,100%,Isle of Man,1.0,t +10809,100%,Bosnia and Herzegovina,4.0,f +28450,100%,Malawi,1.0,f +23238,100%,Reunion,2.0,t +8078,63%,Bosnia and Herzegovina,1.0,f +18074,100%,,1.0,f +17713,100%,Niue,1.0,t +14332,100%,,1.0,f +3790,100%,Netherlands,16.0,f +49565,92%,Uganda,14.0,f +14455,100%,,2.0,f +29720,,Isle of Man,1.0,f +38578,90%,Kenya,1.0,f +30400,90%,Vietnam,1.0,t +5420,100%,Tonga,41.0,f +16271,100%,Isle of Man,3.0,t +12735,,,1.0,f +18484,100%,Gambia,108.0,f +38151,,Isle of Man,1.0,f +49987,100%,,19.0,f +34149,,Micronesia,1.0,f +30796,100%,Uzbekistan,1.0,t +22820,,Zimbabwe,1.0,f +28488,100%,Zimbabwe,1.0,f +29647,100%,Peru,1305.0,f +49999,80%,Russian Federation,5.0,t +24252,80%,Tonga,2.0,f +6041,100%,Maldives,3.0,f +7894,100%,Ukraine,10.0,f +14840,100%,Suriname,1.0,t +49565,92%,Uganda,14.0,f +45037,,Guinea,1.0,f +15900,100%,Turks and Caicos Islands,2.0,f +30739,,Netherlands,1.0,f +45598,83%,China,17.0,f +35006,75%,Marshall Islands,1.0,t +6041,100%,Maldives,3.0,f +42138,,Denmark,2.0,f +2793,,El Salvador,1.0,f +41856,100%,Maldives,13.0,t +49451,70%,Micronesia,1.0,t +4011,100%,French Guiana,3.0,f +16471,,,3.0,f +6472,100%,Guinea,2.0,f +50021,100%,France,1.0,f +25831,100%,Uzbekistan,1.0,f +49679,100%,Guernsey,1.0,t +8881,,Guinea,1.0,f +41910,100%,Slovakia (Slovak Republic),5.0,f +37595,90%,Lithuania,4.0,f +12552,100%,Niger,1.0,f +39332,100%,Niue,2.0,f +5205,,Slovakia (Slovak Republic),6.0,t +5103,100%,,1.0,f +32038,100%,Indonesia,35.0,f +11787,,Peru,1.0,f +9345,100%,Bosnia and Herzegovina,4.0,f +38076,,Isle of Man,1.0,t +12693,100%,Russian Federation,1.0,f +24993,67%,Canada,4.0,f +32949,67%,Bahrain,1.0,f +48980,100%,Mauritania,2.0,f +10478,100%,,1.0,f +22489,,Kiribati,1.0,f +26475,88%,Monaco,1.0,f +28414,100%,Uzbekistan,22.0,f +49028,100%,Svalbard & Jan Mayen Islands,1.0,f +4920,98%,Estonia,8.0,f +5933,,Micronesia,2.0,f +42267,100%,,1.0,f +45965,100%,Estonia,8.0,f +27880,100%,,1.0,t +6033,100%,El Salvador,3.0,f +10690,,,1.0,f +667,100%,Croatia,4.0,t +41723,89%,Ecuador,1.0,t +25067,100%,Svalbard & Jan Mayen Islands,1.0,f +16620,100%,Puerto Rico,3.0,f +19682,100%,Faroe Islands,15.0,t +48991,76%,Bosnia and Herzegovina,7.0,t +44620,100%,Puerto Rico,1.0,f +7712,100%,Estonia,1.0,f +9860,,Tonga,1.0,t +2836,100%,French Guiana,1.0,t +17412,,Chile,2.0,f +30819,,Guinea,1.0,t +44778,100%,,2.0,f +8561,81%,Guinea,1.0,f +10810,67%,Nauru,1.0,t +21421,80%,,1.0,f +3305,100%,,1.0,f +25543,89%,Zimbabwe,1.0,t +14841,,Bouvet Island (Bouvetoya),1.0,t +46519,100%,Russian Federation,1.0,f +32858,100%,Marshall Islands,12.0,f +1207,100%,Nicaragua,7.0,f +29647,100%,Peru,1305.0,f +14952,,Afghanistan,1.0,f +45052,,France,1.0,t +17036,81%,Reunion,6.0,f +2894,100%,,1.0,f +8605,90%,Estonia,4.0,t +49570,,Denmark,6.0,f +36445,100%,United Kingdom,7.0,f +41454,100%,Turks and Caicos Islands,3.0,f +45700,100%,,2.0,t +20596,83%,Sao Tome and Principe,2.0,t +48698,90%,Vietnam,3.0,f +15843,100%,Slovakia (Slovak Republic),18.0,f +48698,90%,Vietnam,3.0,f +35425,100%,Uganda,2.0,f +15843,100%,Slovakia (Slovak Republic),18.0,f +48698,90%,Vietnam,3.0,f +18243,,,2.0,f +46754,,Montserrat,1.0,f +356,99%,Wallis and Futuna,32.0,t +15843,100%,Slovakia (Slovak Republic),18.0,f +32678,90%,Isle of Man,1.0,f +10397,100%,Guernsey,3.0,f +28995,100%,,1.0,f +6660,100%,Guinea,2.0,t +46135,,Micronesia,1.0,f +43316,100%,Indonesia,23.0,f +26675,100%,,3.0,f +35221,100%,Turks and Caicos Islands,30.0,t +17061,100%,Niue,2.0,f +48685,100%,Russian Federation,5.0,f +33431,100%,,1.0,f +18077,100%,Sao Tome and Principe,139.0,f +39467,100%,Nicaragua,4.0,t +49811,100%,,2.0,f +28828,100%,Isle of Man,198.0,t +1449,,Vanuatu,1.0,f +18484,100%,Gambia,108.0,f +7639,,Tonga,5.0,f +7107,100%,Suriname,4.0,t +37486,100%,Russian Federation,1.0,f +37292,100%,,3.0,f +21028,100%,Tonga,1.0,f +29466,100%,,1.0,f +25832,100%,United Kingdom,1.0,f +48869,100%,Slovakia (Slovak Republic),22.0,f +10711,93%,Uganda,108.0,t +29123,100%,Zimbabwe,16.0,t +584,,,1.0,f +39252,,Kiribati,1.0,f +44272,,Cape Verde,1.0,t +6402,50%,Bosnia and Herzegovina,2.0,t +25736,,Jersey,1.0,f +9852,100%,Maldives,11.0,f +1677,,,1.0,f +48685,100%,Russian Federation,5.0,f +49444,,,1.0,f +34995,,Kenya,1.0,f +31326,100%,Tonga,1.0,f +3354,100%,,1.0,f +20334,99%,Niger,171.0,t +6480,100%,Andorra,2.0,f +36899,75%,Saint Helena,2.0,t +12646,,,1.0,f +15922,100%,Svalbard & Jan Mayen Islands,2.0,t +19602,100%,Lithuania,24.0,f +12260,,China,1.0,f +9852,100%,Maldives,11.0,f +16066,,,1.0,f +19061,100%,Isle of Man,2.0,t +9852,100%,Maldives,11.0,f +36445,100%,United Kingdom,7.0,f +9852,100%,Maldives,11.0,f +13496,,,1.0,f +49072,100%,Venezuela,1.0,f +20940,100%,,2.0,t +15922,100%,Svalbard & Jan Mayen Islands,2.0,t +46590,100%,Nicaragua,2.0,f +35729,100%,Brazil,1.0,f +28386,50%,,1.0,f +42869,,El Salvador,9.0,f +31414,,Nauru,1.0,t +27216,,,1.0,f +36731,100%,Nicaragua,7.0,f +12510,,,1.0,f +11468,100%,,1.0,f +17864,,French Polynesia,1.0,f +9997,100%,,1.0,t +3756,,,1.0,t +4490,100%,Puerto Rico,1.0,f +42666,100%,,2.0,t +16786,100%,El Salvador,2.0,f +13212,100%,Zimbabwe,12.0,t +27372,100%,,1.0,t +20561,,,1.0,f +44537,100%,Tonga,7.0,f +28508,100%,,1.0,t +35334,100%,,1.0,t +16786,100%,El Salvador,2.0,f +20974,100%,Anguilla,3.0,f +13055,100%,,1.0,f +44897,100%,,1.0,f +42003,,,5.0,f +20940,100%,,2.0,t +42011,100%,Micronesia,3.0,f +18076,100%,Afghanistan,2.0,f +28123,100%,Gambia,1.0,f +46918,100%,Sao Tome and Principe,5.0,f +40993,100%,Montserrat,15.0,f +35221,100%,Turks and Caicos Islands,30.0,t +2845,,Kiribati,9.0,f +27597,100%,Portugal,7.0,t +45699,100%,Denmark,2.0,f +27107,0%,,1.0,t +45596,100%,,4.0,t +15229,100%,,1.0,f +4433,,Sao Tome and Principe,1.0,t +46138,78%,Niger,1.0,f +10870,100%,,1.0,t +18484,100%,Gambia,108.0,f +42281,100%,Marshall Islands,39.0,f +42281,100%,Marshall Islands,39.0,f +3961,100%,Fiji,8.0,f +29139,100%,Maldives,1.0,f +43688,100%,,1.0,f +18077,100%,Sao Tome and Principe,139.0,f +32935,,Ghana,40.0,f +20334,99%,Niger,171.0,t +5564,33%,,1.0,t +47921,,Vanuatu,1.0,f +5898,100%,,2.0,f +45382,90%,,1.0,f +33637,100%,Russian Federation,2.0,f +16450,100%,Malta,1.0,t +20793,100%,Micronesia,1.0,f +7771,100%,,1.0,f +28148,,,1.0,t +32935,,Ghana,40.0,f +34591,86%,Denmark,4.0,f +36274,33%,Isle of Man,1.0,f +34591,86%,Denmark,4.0,f +4863,,,2.0,t +19863,100%,,1.0,f +26445,90%,Togo,2.0,f +35244,100%,,1.0,f +46669,86%,Brazil,11.0,f +10686,86%,Tonga,21.0,f +10140,100%,,1.0,f +45572,100%,,1.0,f +19474,,Christmas Island,1.0,f +5179,,,12.0,f +4217,,Kenya,52.0,f +6127,60%,,1.0,f +344,100%,Brazil,3.0,t +41794,,Puerto Rico,1.0,t +8327,97%,Guernsey,1.0,f +16236,,Kenya,2.0,f +32935,,Ghana,40.0,f +22497,96%,Isle of Man,8.0,t +2743,97%,China,23.0,f +10686,86%,Tonga,21.0,f +18876,60%,Netherlands,26.0,f +34814,100%,Svalbard & Jan Mayen Islands,1.0,f +31202,90%,Kiribati,107.0,f +44931,,Cuba,1.0,f +31202,90%,Kiribati,107.0,f +31202,90%,Kiribati,107.0,f +31202,90%,Kiribati,107.0,f +32935,,Ghana,40.0,f +29647,100%,Peru,1305.0,f +26628,80%,Maldives,3.0,t +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +27774,78%,Vietnam,15.0,f +13132,100%,Brazil,1.0,f +32525,,,1.0,f +47737,,Sao Tome and Principe,2.0,f +43521,,Lithuania,1.0,f +24195,56%,Barbados,14.0,f +49542,100%,Turkmenistan,2.0,f +19939,63%,,2.0,f +15059,90%,Bouvet Island (Bouvetoya),1.0,f +12675,100%,Brazil,2.0,t +18946,100%,Reunion,1.0,f +14275,,Bouvet Island (Bouvetoya),1.0,t +35630,50%,,1.0,t +8822,25%,Chad,1.0,f +14565,80%,Isle of Man,1.0,f +27862,,,2.0,t +45779,100%,Portugal,1.0,f +9298,100%,Pakistan,15.0,f +4214,100%,Niue,3.0,t +8643,,Cocos (Keeling) Islands,1.0,f +25890,100%,,3.0,f +23681,100%,Saint Helena,4.0,t +5572,90%,,1.0,f +20165,94%,Ukraine,30.0,f +19284,,Vietnam,1.0,f +49141,100%,Jersey,1.0,f +45162,,Maldives,20.0,f +27804,100%,El Salvador,2.0,t +35221,100%,Turks and Caicos Islands,30.0,t +9298,100%,Pakistan,15.0,f +9298,100%,Pakistan,15.0,f +9298,100%,Pakistan,15.0,f +36294,100%,,1.0,f +9298,100%,Pakistan,15.0,f +38127,90%,,2.0,f +2071,0%,Anguilla,2.0,f +5429,100%,,2.0,t +45162,,Maldives,20.0,f +16935,0%,Anguilla,2.0,f +9077,,,1.0,f +36253,100%,Nauru,21.0,t +25350,100%,,2.0,f +42869,,El Salvador,9.0,f +34993,100%,Afghanistan,3.0,f +26565,90%,,1.0,f +5480,,Afghanistan,1.0,f +23938,100%,Guernsey,1.0,f +6132,100%,Marshall Islands,2.0,f +45700,100%,,2.0,t +34858,,Rwanda,1.0,f +47506,100%,,1.0,f +43662,,Guinea,1.0,f +29631,100%,Ecuador,1.0,f +31707,100%,Niger,48.0,f +34358,50%,Marshall Islands,2.0,f +32858,100%,Marshall Islands,12.0,f +37574,100%,Zimbabwe,2.0,t +9630,100%,,13.0,f +36499,75%,Anguilla,25.0,t +40032,100%,El Salvador,16.0,f +34306,91%,Wallis and Futuna,30.0,t +40032,100%,El Salvador,16.0,f +26674,77%,Uzbekistan,27.0,f +32935,,Ghana,40.0,f +6116,100%,Monaco,8.0,f +31906,100%,,2.0,f +40123,100%,Gambia,1.0,t +34306,91%,Wallis and Futuna,30.0,t +42865,,Turkmenistan,1.0,f +22295,,,2.0,t +35646,100%,Gambia,1.0,t +13012,60%,Uzbekistan,2.0,f +46716,100%,Malta,1.0,f +38250,100%,,2.0,f +40793,100%,,75.0,t +13641,85%,Mauritania,23.0,f +13641,85%,Mauritania,23.0,f +14348,100%,,1.0,f +31092,,Senegal,19.0,f +43397,,Zimbabwe,1.0,f +40920,100%,,1.0,f +38717,100%,Niue,1.0,f +38250,100%,,2.0,f +38979,100%,Nicaragua,1.0,f +22077,100%,Mauritania,10.0,f +16820,100%,,1.0,t +30286,100%,Montserrat,39.0,f +49101,,Turkmenistan,1.0,f +30286,100%,Montserrat,39.0,f +45162,,Maldives,20.0,f +16911,,Libyan Arab Jamahiriya,2.0,f +18077,100%,Sao Tome and Principe,139.0,f +10370,100%,Russian Federation,2.0,f +5573,100%,Saint Helena,1.0,f +23034,99%,Monaco,54.0,f +10030,,Tonga,1.0,f +38582,100%,,7.0,f +25154,100%,,2.0,t +24896,100%,Algeria,50.0,t +17924,,Chad,1.0,t +16776,70%,Saint Helena,2.0,f +26267,,Gambia,1.0,f +36007,100%,,1.0,t +32935,,Ghana,40.0,f +10370,100%,Russian Federation,2.0,f +27883,100%,Cuba,11.0,f +37778,92%,Tonga,24.0,f +40995,100%,Guinea,1.0,f +1882,98%,,3.0,f +15224,100%,Guinea,2.0,t +19484,100%,Andorra,1.0,f +2037,80%,Gambia,1.0,f +10910,100%,Uzbekistan,2.0,f +32919,100%,Jersey,1.0,f +34362,80%,Cocos (Keeling) Islands,1.0,t +38582,100%,,7.0,f +37893,90%,Tunisia,1.0,t +28965,90%,Pakistan,2.0,f +30679,100%,,1.0,f +46020,100%,France,1.0,f +22331,99%,Rwanda,50.0,t +18754,100%,Croatia,1.0,f +4412,100%,Estonia,2.0,f +39766,100%,Saint Helena,1.0,f +47929,100%,Mauritania,2.0,f +39915,100%,Vanuatu,1.0,f +44763,,Niue,1.0,f +3739,100%,Marshall Islands,1.0,f +322,100%,,1.0,t +24893,100%,Rwanda,9.0,f +37699,100%,,1.0,f +42046,,Kiribati,7.0,t +4446,100%,Uganda,58.0,f +48252,,Vanuatu,4.0,f +17423,90%,,2.0,f +43659,98%,Maldives,14.0,f +26023,,Zimbabwe,2.0,f +28331,100%,,3.0,f +33325,,Greenland,4.0,f +20481,,Isle of Man,2.0,f +47714,,Russian Federation,2.0,f +35761,100%,,1.0,f +4446,100%,Uganda,58.0,f +6764,79%,Sao Tome and Principe,2.0,f +1918,100%,Anguilla,1.0,f +37590,,,1.0,f +10488,100%,Niger,17.0,t +18484,100%,Gambia,108.0,f +22461,100%,Turks and Caicos Islands,4.0,f +39947,,Gambia,2.0,f +3482,100%,Marshall Islands,4.0,f +7991,100%,Jersey,1.0,f +1119,,Niue,1.0,f +1111,100%,Kiribati,2.0,f +48829,100%,Zimbabwe,1.0,f +32664,100%,Congo,4.0,f +27958,100%,Nicaragua,1.0,f +29647,100%,Peru,1305.0,f +47021,,,2.0,f +28226,94%,,1.0,f +39870,,Slovakia (Slovak Republic),21.0,t +19128,100%,Uzbekistan,12.0,t +3922,100%,Maldives,8.0,t +49327,,Anguilla,1.0,f +12453,0%,Uzbekistan,3.0,t +14502,67%,Malta,1.0,t +30848,,,1.0,f +43753,100%,,2.0,f +10202,89%,Nicaragua,10.0,f +44645,100%,Marshall Islands,2.0,t +49291,100%,Brazil,1.0,f +18320,50%,Reunion,19.0,t +9222,100%,Brazil,18.0,t +5471,100%,Isle of Man,2.0,f +42286,94%,Vietnam,9.0,t +4791,100%,French Guiana,1.0,f +19091,95%,Cook Islands,18.0,t +37778,92%,Tonga,24.0,f +37778,92%,Tonga,24.0,f +41456,100%,,1.0,t +2708,80%,Montserrat,1.0,f +11171,100%,Turks and Caicos Islands,4.0,f +37778,92%,Tonga,24.0,f +20397,,Turks and Caicos Islands,1.0,f +44436,,,1.0,f +37587,100%,Kiribati,1.0,f +45054,70%,Zimbabwe,1.0,t +1844,,Saint Helena,1.0,t +16540,100%,,1.0,f +23814,,Russian Federation,26.0,f +3922,100%,Maldives,8.0,t +23814,,Russian Federation,26.0,f +9879,,Cocos (Keeling) Islands,2.0,f +23814,,Russian Federation,26.0,f +3922,100%,Maldives,8.0,t +33817,100%,Gibraltar,62.0,f +23814,,Russian Federation,26.0,f +27690,,,1.0,f +23814,,Russian Federation,26.0,f +3922,100%,Maldives,8.0,t +45666,100%,,2.0,t +23814,,Russian Federation,26.0,f +18484,100%,Gambia,108.0,f +38282,,Tonga,5.0,f +20494,100%,Faroe Islands,1.0,f +32038,100%,Indonesia,35.0,f +2761,100%,,1.0,f +8358,,Micronesia,1.0,f +48979,,Switzerland,2.0,f +25352,100%,Monaco,3.0,t +27775,100%,Zimbabwe,1.0,t +43135,,,1.0,f +5652,92%,Montserrat,2.0,t +24846,90%,Anguilla,1.0,f +39352,100%,Somalia,1.0,t +48799,,,1.0,f +14731,100%,Brazil,2.0,f +28114,97%,Bouvet Island (Bouvetoya),16.0,f +42014,69%,China,17.0,f +1982,100%,,2.0,t +48382,100%,Niue,3.0,t +38678,100%,Kiribati,1.0,f +36253,100%,Nauru,21.0,t +42014,69%,China,17.0,f +44998,,,1.0,f +23809,,,1.0,f +11905,100%,,1.0,f +44606,100%,,2.0,f +27245,90%,Costa Rica,2.0,f +6382,100%,,3.0,f +6960,,Greenland,4.0,f +31270,100%,Guinea,2.0,f +43047,100%,Guinea,2.0,t +5517,,,1.0,f +46462,50%,Niger,1.0,f +23202,,Maldives,3.0,f +24821,100%,,1.0,t +41906,88%,Bouvet Island (Bouvetoya),1.0,t +16007,100%,Rwanda,1.0,f +19244,100%,,1.0,f +29898,100%,Jersey,1.0,f +49570,,Denmark,6.0,f +12520,100%,Isle of Man,2.0,t +42216,100%,Greenland,1.0,f +34721,,,1.0,f +41075,,Guinea,1.0,f +28010,100%,Nicaragua,2.0,t +47021,,,2.0,f +42014,69%,China,17.0,f +36774,100%,Tonga,19.0,f +27307,67%,,3.0,f +16750,,Estonia,1.0,f +23202,,Maldives,3.0,f +48979,,Switzerland,2.0,f +29931,100%,Brazil,1.0,f +32629,100%,Maldives,3.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +7994,100%,,1.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +28697,100%,Nauru,5.0,t +44857,100%,Zimbabwe,24.0,t +14256,100%,,3.0,f +14256,100%,,3.0,f +27365,30%,Uzbekistan,3.0,f +35217,100%,,5.0,f +35217,100%,,5.0,f +6371,100%,,1.0,f +35217,100%,,5.0,f +35217,100%,,5.0,f +35217,100%,,5.0,f +44857,100%,Zimbabwe,24.0,t +39893,100%,Niue,2.0,f +9859,100%,El Salvador,1.0,f +10112,,Uzbekistan,1.0,f +1230,,Croatia,4.0,f +35627,,,2.0,f +2775,,,1.0,f +36534,100%,Maldives,1.0,f +27507,100%,Lebanon,2.0,f +17433,,Saint Helena,1.0,f +10711,93%,Uganda,108.0,t +10711,93%,Uganda,108.0,t +15860,100%,Maldives,11.0,f +46857,100%,Marshall Islands,1.0,t +15860,100%,Maldives,11.0,f +15860,100%,Maldives,11.0,f +20844,,Tonga,2.0,t +15860,100%,Maldives,11.0,f +19968,100%,United Kingdom,1.0,f +15860,100%,Maldives,11.0,f +44366,100%,,1.0,f +17089,100%,Gibraltar,2.0,t +13898,,Niue,1.0,f +15860,100%,Maldives,11.0,f +15860,100%,Maldives,11.0,f +15860,100%,Maldives,11.0,f +2625,,Estonia,1.0,f +17936,,Micronesia,1.0,t +10783,,,1.0,f +49570,,Denmark,6.0,f +27959,100%,Russian Federation,1.0,t +2673,93%,Anguilla,2.0,f +46477,100%,Micronesia,2.0,f +34784,60%,Faroe Islands,19.0,t +12812,99%,Croatia,32.0,f +30141,100%,,3.0,f +43523,,Slovakia (Slovak Republic),1.0,f +8977,,United Kingdom,2.0,f +34393,,Saint Helena,1.0,f +6373,100%,,2.0,f +15860,100%,Maldives,11.0,f +46445,,,1.0,f +12512,,Greenland,1.0,f +20828,100%,Turks and Caicos Islands,2.0,f +35289,,Australia,2.0,f +37924,100%,Niger,2.0,f +1482,75%,Ecuador,1.0,f +31424,,Uganda,2.0,f +5064,80%,Guinea,2.0,t +22390,100%,Turks and Caicos Islands,1.0,f +29680,88%,Faroe Islands,2.0,f +12538,100%,Faroe Islands,1.0,f +16489,100%,Russian Federation,42.0,t +16620,100%,Puerto Rico,3.0,f +17198,100%,Gambia,1.0,f +25574,100%,Isle of Man,2.0,t +7121,,,1.0,t +7005,100%,Niue,3.0,f +26521,100%,Vanuatu,1.0,f +1474,100%,,1.0,f +33580,100%,Barbados,4.0,t +35289,,Australia,2.0,f +8656,100%,Venezuela,1.0,f +33509,,France,1.0,f +42014,69%,China,17.0,f +32537,100%,Kenya,1.0,t +3393,,Senegal,4.0,f +7005,100%,Niue,3.0,f +26051,,Niue,7.0,f +38901,100%,Lebanon,1.0,t +11991,100%,Chad,1.0,t +45397,80%,Sao Tome and Principe,1.0,f +19249,100%,Uganda,4.0,f +28515,100%,Lebanon,1.0,t +26051,,Niue,7.0,f +33408,100%,Tonga,6.0,f +35094,,Uzbekistan,1.0,f +7005,100%,Niue,3.0,f +35640,100%,Uganda,3.0,f +23383,100%,,2.0,f +15341,100%,Reunion,4.0,t +33816,100%,,1.0,f +30180,50%,Svalbard & Jan Mayen Islands,1.0,f +49568,100%,Niue,2.0,f +14032,,,9.0,f +33580,100%,Barbados,4.0,t +36774,100%,Tonga,19.0,f +36774,100%,Tonga,19.0,f +6158,,France,3.0,t +16644,67%,,2.0,t +26013,100%,Uzbekistan,4.0,f +8421,100%,,1.0,t +26013,100%,Uzbekistan,4.0,f +37639,100%,Nauru,11.0,f +4317,,,1.0,t +15565,80%,Andorra,1.0,t +48307,,Mauritania,1.0,f +47798,,,1.0,f +6954,,Anguilla,2.0,f +11429,,Portugal,2.0,f +8833,90%,Papua New Guinea,1.0,f +21481,,Kiribati,2.0,f +45162,,Maldives,20.0,f +25782,,Micronesia,1.0,t +10436,100%,Malta,1.0,f +21353,,Monaco,1.0,t +37172,,French Guiana,1.0,t +6225,90%,Barbados,7.0,f +45162,,Maldives,20.0,f +3173,,Wallis and Futuna,1.0,t +3561,60%,Niger,1.0,t +12661,50%,Montserrat,2.0,f +18406,100%,France,1.0,f +22563,100%,,1.0,f +46898,100%,Uzbekistan,3.0,f +22401,100%,Faroe Islands,2.0,f +786,,Niue,1.0,f +42014,69%,China,17.0,f +42003,,,5.0,f +27635,50%,Denmark,1.0,f +21481,,Kiribati,2.0,f +42762,100%,United Kingdom,1.0,f +21347,100%,Lithuania,1.0,t +9431,90%,,2.0,f +43876,100%,Turks and Caicos Islands,1.0,t +34119,,Nauru,3.0,f +23618,,Senegal,2.0,f +31641,100%,Kiribati,3.0,f +42003,,,5.0,f +42003,,,5.0,f +32935,,Ghana,40.0,f +42003,,,5.0,f +28648,97%,Estonia,5.0,f +14523,,Niue,1.0,t +4441,,Bosnia and Herzegovina,2.0,f +13024,,Reunion,3.0,t +27343,,,1.0,t +11864,100%,Anguilla,1.0,f +40793,100%,,75.0,t +35436,99%,Nicaragua,21.0,f +41780,100%,Denmark,2.0,t +3940,100%,Pakistan,2.0,f +37215,100%,Indonesia,4.0,t +36774,100%,Tonga,19.0,f +48685,100%,Russian Federation,5.0,f +31125,,Denmark,1.0,f +35436,99%,Nicaragua,21.0,f +32935,,Ghana,40.0,f +2135,100%,Tanzania,2.0,t +10217,100%,Bosnia and Herzegovina,7.0,t +22231,100%,Guinea,2.0,f +13892,90%,Sao Tome and Principe,2.0,f +12108,50%,Anguilla,1.0,f +33817,100%,Gibraltar,62.0,f +10322,,Kenya,1.0,f +2551,,,1.0,f +36688,100%,Lithuania,1.0,f +33620,,Brazil,1.0,t +24128,54%,Suriname,9.0,t +2028,,Sao Tome and Principe,1.0,t +1582,100%,Russian Federation,1.0,f +10515,50%,,1.0,f +17920,96%,,9.0,f +12863,100%,,1.0,f +21012,,Croatia,20.0,f +44567,,,1.0,f +32935,,Ghana,40.0,f +38969,100%,Holy See (Vatican City State),1.0,t +42014,69%,China,17.0,f +36192,100%,Uzbekistan,1.0,f +17245,100%,Denmark,3.0,f +40992,100%,,1.0,f +1721,100%,Ecuador,5.0,f +13641,85%,Mauritania,23.0,f +42014,69%,China,17.0,f +29026,100%,Micronesia,1.0,f +9363,95%,Ukraine,50.0,f +45553,90%,Brazil,16.0,t +49994,80%,Slovakia (Slovak Republic),1.0,f +21012,,Croatia,20.0,f +11125,100%,Nicaragua,12.0,t +21012,,Croatia,20.0,f +5121,75%,Philippines,2.0,f +21012,,Croatia,20.0,f +21012,,Croatia,20.0,f +1901,100%,El Salvador,1.0,f +44329,100%,Estonia,2.0,f +11567,100%,Niger,31.0,t +37416,,,1.0,t +27644,80%,Svalbard & Jan Mayen Islands,1.0,t +17939,,,2.0,t +11907,100%,Uzbekistan,1.0,f +35904,100%,Peru,1.0,f +23224,100%,,1.0,f +10697,100%,Uzbekistan,3.0,t +49570,,Denmark,6.0,f +17267,,Zimbabwe,1.0,f +36400,100%,Uzbekistan,1.0,f +9355,100%,Isle of Man,1.0,f +44068,,Cape Verde,1.0,f +49457,,Suriname,1.0,f +22847,,Croatia,1.0,t +17157,80%,,1.0,f +25066,,,1.0,f +43751,0%,,1.0,f +2603,96%,Uzbekistan,7.0,f +48023,,Russian Federation,3.0,f +41435,,Montserrat,2.0,f +42096,100%,Senegal,1.0,f +46355,100%,Niue,1.0,t +44302,,,1.0,f +41435,,Montserrat,2.0,f +13140,,,1.0,f +46090,100%,,1.0,f +6191,100%,Uzbekistan,2.0,t +31160,100%,Bosnia and Herzegovina,2.0,f +13197,100%,France,3.0,f +30466,,,1.0,t +14174,100%,Lebanon,1.0,f +48364,100%,,4.0,f +23513,,,1.0,f +4115,100%,,2.0,f +39593,100%,El Salvador,2.0,f +48840,100%,Uzbekistan,9.0,f +6841,100%,Mauritania,4.0,f +6841,100%,Mauritania,4.0,f +10015,,Bosnia and Herzegovina,8.0,f +42160,,,1.0,t +48409,,Estonia,60.0,t +36582,100%,Palestinian Territory,2.0,f +46328,100%,Kiribati,1.0,f +32915,100%,Zimbabwe,1.0,t +27276,100%,,1.0,f +46257,100%,,5.0,f +21323,100%,Guinea,2.0,t +6178,100%,Croatia,1.0,f +46726,100%,Brazil,1.0,f +21240,94%,Niger,130.0,f +8647,100%,Papua New Guinea,1.0,f +2530,100%,,1.0,f +21240,94%,Niger,130.0,f +21012,,Croatia,20.0,f +21240,94%,Niger,130.0,f +374,75%,Brazil,2.0,t +21240,94%,Niger,130.0,f +21012,,Croatia,20.0,f +18606,,Barbados,1.0,f +21240,94%,Niger,130.0,f +21012,,Croatia,20.0,f +13014,,China,6.0,f +24594,100%,Rwanda,14.0,f +43321,100%,France,40.0,f +21012,,Croatia,20.0,f +43321,100%,France,40.0,f +19749,100%,Denmark,6.0,t +43321,100%,France,40.0,f +21012,,Croatia,20.0,f +21012,,Croatia,20.0,f +24981,,,1.0,f +21012,,Croatia,20.0,f +11447,100%,Isle of Man,1.0,f +21012,,Croatia,20.0,f +13678,,,2.0,f +45598,83%,China,17.0,f +114,,Mauritania,1.0,f +21012,,Croatia,20.0,f +21240,94%,Niger,130.0,f +21012,,Croatia,20.0,f +21012,,Croatia,20.0,f +21240,94%,Niger,130.0,f +21012,,Croatia,20.0,f +21240,94%,Niger,130.0,f +20334,99%,Niger,171.0,t +21240,94%,Niger,130.0,f +21012,,Croatia,20.0,f +39492,90%,Portugal,1.0,f +21012,,Croatia,20.0,f +21240,94%,Niger,130.0,f +21012,,Croatia,20.0,f +27040,,Brazil,1.0,f +21240,94%,Niger,130.0,f +24128,54%,Suriname,9.0,t +21240,94%,Niger,130.0,f +20165,94%,Ukraine,30.0,f +34587,,Isle of Man,22.0,t +32203,100%,Barbados,176.0,f +5185,0%,Gambia,12.0,f +21240,94%,Niger,130.0,f +27048,100%,Guinea,1.0,t +25207,100%,,9.0,t +12956,,,1.0,t +21240,94%,Niger,130.0,f +32038,100%,Indonesia,35.0,f +29597,,Philippines,2.0,f +21240,94%,Niger,130.0,f +1547,100%,,1.0,f +8827,,France,1.0,f +8160,,,1.0,f +25207,100%,,9.0,t +13042,100%,Costa Rica,5.0,f +16776,70%,Saint Helena,2.0,f +13991,100%,Micronesia,1.0,f +7894,100%,Ukraine,10.0,f +12351,,Niue,3.0,f +24192,100%,,2.0,t +16703,100%,Uzbekistan,4.0,f +25879,,,1.0,f +40950,,,2.0,f +19395,,Isle of Man,1.0,f +46989,100%,Nicaragua,3.0,f +26406,100%,Kiribati,2.0,f +30808,,,2.0,f +28456,100%,,1.0,f +2862,100%,Vanuatu,1.0,f +46288,100%,Uzbekistan,2.0,t +11967,,,1.0,t +34486,90%,,5.0,f +5291,,,1.0,f +12173,100%,Uganda,9.0,f +46694,100%,,1.0,t +25207,100%,,9.0,t +4807,,,1.0,f +24195,56%,Barbados,14.0,f +32203,100%,Barbados,176.0,f +35436,99%,Nicaragua,21.0,f +36355,89%,Rwanda,2.0,f +10951,100%,,1.0,t +4330,94%,Ukraine,60.0,t +47699,,,1.0,f +10939,100%,Northern Mariana Islands,3.0,t +3330,,Niger,2.0,f +21220,100%,Uganda,5.0,f +34677,,Cocos (Keeling) Islands,1.0,f +45619,80%,,1.0,t +18752,100%,Maldives,1.0,f +4446,100%,Uganda,58.0,f +34119,,Nauru,3.0,f +32935,,Ghana,40.0,f +34119,,Nauru,3.0,f +27469,100%,Marshall Islands,3.0,f +39218,,,1.0,f +35347,100%,,2.0,t +37411,100%,Guernsey,3.0,f +35589,100%,,1.0,f +4139,67%,Guernsey,1.0,f +16090,,Nicaragua,1.0,f +18147,,Tonga,2.0,f +13441,100%,Togo,2.0,f +5582,100%,,2.0,t +13631,,Tonga,1.0,t +22166,100%,Sao Tome and Principe,1.0,f +31641,100%,Kiribati,3.0,f +45323,100%,,1.0,t +10002,100%,Guinea,1.0,t +33301,,,1.0,f +40778,100%,Pakistan,7.0,f +46607,100%,Brazil,4.0,f +25484,100%,,1.0,f +14250,,Marshall Islands,3.0,t +16691,,,2.0,f +11109,33%,Maldives,1.0,f +34486,90%,,5.0,f +32418,100%,Kiribati,1.0,f +40993,100%,Montserrat,15.0,f +18690,,Costa Rica,1.0,f +19556,100%,,1.0,f +9880,,,1.0,f +38429,83%,,2.0,f +2582,,,2.0,f +47193,100%,Moldova,3.0,f +49565,92%,Uganda,14.0,f +30648,100%,France,1.0,t +41586,,Netherlands,1.0,f +2036,100%,Slovakia (Slovak Republic),3.0,f +8750,,,1.0,f +21779,,,1.0,f +34486,90%,,5.0,f +10809,100%,Bosnia and Herzegovina,4.0,f +38828,100%,French Guiana,1.0,t +2026,88%,,1.0,f +21244,100%,Marshall Islands,1.0,f +4784,100%,,2.0,f +7645,86%,Reunion,3.0,t +44899,,,1.0,f +35436,99%,Nicaragua,21.0,f +49515,100%,Libyan Arab Jamahiriya,4.0,f +10122,100%,,1.0,t +25987,,Venezuela,7.0,t +15589,100%,Nicaragua,48.0,f +37790,,,1.0,f +19238,100%,Russian Federation,1.0,f +33085,,Russian Federation,1.0,t +19609,,Paraguay,2.0,f +9508,,Denmark,2.0,f +962,,Reunion,4.0,t +15589,100%,Nicaragua,48.0,f +20203,,,1.0,f +40845,0%,Togo,1.0,f +27774,78%,Vietnam,15.0,f +36182,0%,,2.0,f +43270,,Philippines,1.0,f +32955,,Monaco,1.0,f +15589,100%,Nicaragua,48.0,f +33817,100%,Gibraltar,62.0,f +48463,,,1.0,f +15589,100%,Nicaragua,48.0,f +13678,,,2.0,f +1111,100%,Kiribati,2.0,f +34042,100%,Marshall Islands,37.0,f +11602,100%,,1.0,f +32203,100%,Barbados,176.0,f +15589,100%,Nicaragua,48.0,f +9222,100%,Brazil,18.0,t +15589,100%,Nicaragua,48.0,f +26023,,Zimbabwe,2.0,f +33817,100%,Gibraltar,62.0,f +15589,100%,Nicaragua,48.0,f +49249,,,2.0,f +11002,,Philippines,10.0,f +23051,75%,Croatia,1.0,f +40303,100%,Guinea,82.0,f +49646,0%,,2.0,f +15589,100%,Nicaragua,48.0,f +11515,100%,Cook Islands,16.0,f +47274,100%,Tonga,48.0,f +8498,100%,,1.0,f +40303,100%,Guinea,82.0,f +47274,100%,Tonga,48.0,f +4575,100%,Pakistan,3.0,f +40303,100%,Guinea,82.0,f +36328,,China,3.0,f +15589,100%,Nicaragua,48.0,f +24128,54%,Suriname,9.0,t +20165,94%,Ukraine,30.0,f +41194,,Mexico,1.0,f +49777,100%,,1.0,t +24152,,Gambia,1.0,f +15589,100%,Nicaragua,48.0,f +41267,100%,Micronesia,2.0,t +44120,100%,,1.0,f +36328,,China,3.0,f +32347,50%,Denmark,2.0,f +14584,,Lebanon,1.0,f +34539,,Kenya,1.0,f +7236,,,1.0,f +10474,0%,,1.0,f +31418,,El Salvador,1.0,t +19927,,Anguilla,1.0,t +31426,100%,,1.0,t +7323,100%,Nauru,2.0,t +46891,,Mauritania,1.0,t +5722,100%,Svalbard & Jan Mayen Islands,1.0,f +22635,,,1.0,t +5007,13%,Jersey,1.0,t +10819,100%,Mexico,6.0,f +42253,100%,,1.0,f +6663,95%,Gambia,5.0,f +23691,100%,Faroe Islands,1.0,f +16756,100%,Togo,1.0,f +45633,100%,Ecuador,1.0,f +43550,100%,Rwanda,16.0,t +47426,100%,Ghana,2.0,f +31577,,Anguilla,1.0,f +24584,100%,Spain,4.0,t +21959,100%,Mexico,1.0,f +24584,100%,Spain,4.0,t +18484,100%,Gambia,108.0,f +34467,100%,Indonesia,1.0,f +428,100%,,1.0,f +11429,,Portugal,2.0,f +33817,100%,Gibraltar,62.0,f +32245,29%,Chad,1.0,f +12659,100%,,1.0,f +6442,,Uganda,1.0,f +13544,,Denmark,3.0,f +45628,100%,Guinea,2.0,f +31941,,Congo,1.0,f +29182,,Guinea,1.0,f +23716,100%,Turkmenistan,2.0,f +9691,,Uzbekistan,1.0,t +49521,0%,,1.0,f +5720,,,1.0,f +8224,98%,Estonia,12.0,f +7306,100%,Mauritania,1.0,f +14099,,,1.0,f +2397,,Russian Federation,2.0,f +18147,,Tonga,2.0,f +45628,100%,Guinea,2.0,f +27093,,Nicaragua,1.0,f +24128,54%,Suriname,9.0,t +17446,,,1.0,f +88,,Rwanda,2.0,f +2476,100%,Saint Helena,2.0,t +6116,100%,Monaco,8.0,f +44169,97%,Portugal,39.0,f +40793,100%,,75.0,t +32424,75%,Ecuador,7.0,f +37616,100%,Tonga,1.0,t +4521,90%,Pakistan,1.0,t +18631,100%,Ecuador,1.0,f +48358,100%,,1.0,f +33817,100%,Gibraltar,62.0,f +6116,100%,Monaco,8.0,f +33817,100%,Gibraltar,62.0,f +2473,100%,Uzbekistan,1.0,f +26322,,Sao Tome and Principe,1.0,t +19232,,,1.0,f +40421,96%,Jersey,29.0,t +12057,,Sao Tome and Principe,2.0,f +32203,100%,Barbados,176.0,f +33817,100%,Gibraltar,62.0,f +24195,56%,Barbados,14.0,f +38505,100%,,1.0,f +32424,75%,Ecuador,7.0,f +42831,100%,Holy See (Vatican City State),4.0,t +38696,100%,Slovakia (Slovak Republic),1.0,f +10711,93%,Uganda,108.0,t +11125,100%,Nicaragua,12.0,t +32424,75%,Ecuador,7.0,f +28638,,Cook Islands,1.0,f +16651,100%,Guinea,21.0,f +1537,100%,,3.0,f +49987,100%,,19.0,f +33885,100%,Vanuatu,1.0,f +25352,100%,Monaco,3.0,t +29604,,Uzbekistan,1.0,f +6514,100%,Monaco,2.0,t +1441,100%,,1.0,f +23204,100%,Gambia,1.0,t +37385,,,1.0,f +44865,100%,Micronesia,1.0,f +2582,,,2.0,f +8619,,Faroe Islands,1.0,f +21006,,Cape Verde,1.0,f +7823,100%,Cape Verde,1.0,t +25073,,Venezuela,1.0,f +47811,100%,Vietnam,2.0,f +36421,100%,Lebanon,4.0,t +16691,,,2.0,f +25891,100%,,1.0,t +20486,,El Salvador,2.0,f +3393,,Senegal,4.0,f +28954,100%,Rwanda,4.0,f +41786,100%,Senegal,3.0,t +41786,100%,Senegal,3.0,t +44606,100%,,2.0,f +9570,100%,Micronesia,1.0,f +18813,100%,Uzbekistan,1.0,t +38319,100%,Nicaragua,20.0,f +15263,55%,,1.0,t +8802,100%,Marshall Islands,2.0,f +38319,100%,Nicaragua,20.0,f +27774,78%,Vietnam,15.0,f +25046,100%,Maldives,14.0,f +38319,100%,Nicaragua,20.0,f +4575,100%,Pakistan,3.0,f +38319,100%,Nicaragua,20.0,f +23045,,,3.0,f +44261,,Croatia,1.0,f +25046,100%,Maldives,14.0,f +33817,100%,Gibraltar,62.0,f +32424,75%,Ecuador,7.0,f +25046,100%,Maldives,14.0,f +32424,75%,Ecuador,7.0,f +25046,100%,Maldives,14.0,f +3465,80%,Niue,3.0,t +25046,100%,Maldives,14.0,f +45873,,Guinea,1.0,f +7793,70%,Chile,1.0,f +4002,,France,1.0,f +32424,75%,Ecuador,7.0,f +16651,100%,Guinea,21.0,f +32424,75%,Ecuador,7.0,f +7164,,,1.0,f +13007,,Lebanon,1.0,t +16882,,Bahrain,1.0,f +16651,100%,Guinea,21.0,f +33817,100%,Gibraltar,62.0,f +30786,,Uzbekistan,29.0,f +440,100%,,1.0,f +48819,95%,Pakistan,6.0,f +2743,97%,China,23.0,f +3806,,,11.0,f +27824,,Guinea,1.0,t +3004,100%,Uganda,1.0,f +2743,97%,China,23.0,f +29647,100%,Peru,1305.0,f +49419,,Maldives,1.0,t +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +22695,97%,Pakistan,6.0,t +38450,,Isle of Man,1.0,t +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +2743,97%,China,23.0,f +29465,60%,Uzbekistan,1.0,t +39283,100%,Uganda,13.0,f +45893,100%,,2.0,t +19183,,,2.0,t +24671,,Ghana,10.0,f +42986,100%,,1.0,f +2743,97%,China,23.0,f +42677,,Nicaragua,1.0,t +38875,100%,Gambia,3.0,f +4812,,Micronesia,1.0,f +1199,100%,Spain,1.0,f +11898,,Netherlands,1.0,f +45893,100%,,2.0,t +19879,99%,Guinea,19.0,f +965,100%,Tanzania,3.0,f +30786,,Uzbekistan,29.0,f +19879,99%,Guinea,19.0,f +29495,100%,Marshall Islands,1.0,f +35566,100%,Indonesia,4.0,f +25626,100%,Canada,2.0,f +3828,,,1.0,f +43152,100%,Nicaragua,82.0,t +19879,99%,Guinea,19.0,f +15176,,Vanuatu,10.0,f +39317,100%,,2.0,f +27973,100%,Somalia,1.0,t +44486,100%,,2.0,f +14899,100%,Zimbabwe,3.0,t +6881,100%,Niue,3.0,f +35799,,Netherlands,7.0,f +17326,70%,Croatia,2.0,f +47636,100%,Mauritania,2.0,f +36363,82%,Marshall Islands,5.0,f +11616,100%,Uzbekistan,12.0,t +21988,100%,,1.0,f +37595,90%,Lithuania,4.0,f +30210,,Turkmenistan,2.0,f +33122,100%,Costa Rica,1.0,t +27329,100%,,1.0,t +47636,100%,Mauritania,2.0,f +26441,,Niue,1.0,f +33393,100%,Guernsey,3.0,f +1657,,Croatia,13.0,t +6633,100%,Niger,5.0,f +6633,100%,Niger,5.0,f +34244,,Nauru,2.0,f +2324,100%,Russian Federation,1.0,f +2289,,Tanzania,2.0,f +26988,100%,Greenland,1.0,f +47812,100%,Maldives,1.0,f +34244,,Nauru,2.0,f +42011,100%,Micronesia,3.0,f +34596,100%,Rwanda,1.0,f +4412,100%,Estonia,2.0,f +45793,100%,Niue,5.0,t +23786,100%,Isle of Man,1.0,f +4446,100%,Uganda,58.0,f +686,97%,Micronesia,7.0,t +34606,100%,Nicaragua,1.0,f +36068,,,1.0,f +46419,100%,Jersey,1.0,f +45064,98%,Anguilla,15.0,f +19657,88%,,1.0,f +6510,70%,,2.0,f +10147,,,1.0,f +29957,,Gambia,2.0,f +6632,100%,Micronesia,3.0,f +16406,100%,Bouvet Island (Bouvetoya),16.0,f +30351,,Isle of Man,1.0,t +37595,90%,Lithuania,4.0,f +16985,,Isle of Man,1.0,f +42014,69%,China,17.0,f +12825,100%,,1.0,f +6779,,Rwanda,1.0,t +17748,100%,Gibraltar,1.0,t +48176,,Marshall Islands,2.0,t +636,97%,Vanuatu,3.0,f +17036,81%,Reunion,6.0,f +24299,100%,,1.0,f +38725,,Mexico,1.0,f +10387,100%,Ukraine,1.0,f +36774,100%,Tonga,19.0,f +4446,100%,Uganda,58.0,f +1786,80%,,1.0,f +14235,,Malta,1.0,f +26406,100%,Kiribati,2.0,f +27977,100%,,1.0,f +21233,100%,Zimbabwe,1.0,f +44284,60%,Chile,3.0,f +22518,100%,Guinea,6.0,f +40364,100%,Tonga,25.0,f +5040,100%,Kenya,1.0,f +41546,100%,Mauritania,21.0,f +41546,100%,Mauritania,21.0,f +10484,100%,Guinea,12.0,t +31755,90%,,1.0,f +35891,,,1.0,f +41957,50%,,1.0,t +17303,100%,Russian Federation,5.0,t +49100,100%,Estonia,1.0,f +1322,,Micronesia,1.0,t +45162,,Maldives,20.0,f +44490,75%,,2.0,f +24092,100%,France,3.0,t +4446,100%,Uganda,58.0,f +20616,90%,Afghanistan,1.0,f +42014,69%,China,17.0,f +4446,100%,Uganda,58.0,f +45409,90%,,1.0,f +6033,100%,El Salvador,3.0,f +38852,,Zimbabwe,1.0,f +6033,100%,El Salvador,3.0,f +4446,100%,Uganda,58.0,f +36606,100%,Nicaragua,2.0,f +20402,100%,Senegal,4.0,f +43729,,Kiribati,1.0,f +21249,80%,Sao Tome and Principe,1.0,f +48372,100%,Barbados,12.0,t +22905,100%,Niue,3.0,f +36564,100%,Venezuela,5.0,t +47132,,,1.0,f +20165,94%,Ukraine,30.0,f +6632,100%,Micronesia,3.0,f +13062,,,1.0,f +33507,100%,Sao Tome and Principe,2.0,f +49282,,Tonga,2.0,f +42788,100%,Palestinian Territory,2.0,f +30764,100%,Slovakia (Slovak Republic),8.0,t +27785,100%,Uzbekistan,58.0,f +9739,100%,Maldives,44.0,f +31311,100%,,1.0,f +31265,90%,,1.0,t +42971,100%,Niue,1.0,f +15136,100%,Estonia,1.0,f +10790,100%,,1.0,f +28563,100%,,2.0,f +32474,91%,Niue,2.0,f +48819,95%,Pakistan,6.0,f +39181,100%,Niger,1.0,f +48819,95%,Pakistan,6.0,f +3879,100%,Anguilla,6.0,f +33986,100%,Sao Tome and Principe,1.0,f +15700,100%,Tonga,1.0,t +37016,100%,Greenland,6.0,f +43356,100%,,1.0,t +44781,90%,,1.0,f +5042,,Mauritania,2.0,f +29491,100%,Russian Federation,1.0,t +34880,,Tonga,2.0,f +22521,100%,Jersey,1.0,t +3879,100%,Anguilla,6.0,f +25322,100%,,1.0,f +8923,,Lebanon,1.0,t +3879,100%,Anguilla,6.0,f +10348,100%,Tunisia,1.0,f +36312,100%,Bouvet Island (Bouvetoya),1.0,f +13436,100%,Turkmenistan,2.0,t +4040,90%,Tonga,1.0,f +22712,,Holy See (Vatican City State),1.0,f +28667,100%,Barbados,1.0,f +16254,100%,,1.0,f +21522,,,1.0,f +19035,100%,Croatia,2.0,t +2210,100%,,2.0,f +13056,100%,Kiribati,2.0,f +44922,100%,Jersey,2.0,f +33690,,Gambia,1.0,f +41274,,Isle of Man,1.0,f +13142,80%,France,2.0,f +18022,90%,France,2.0,f +7222,100%,,2.0,f +16456,100%,,1.0,t +17938,100%,Montserrat,4.0,f +5010,100%,Kiribati,1.0,f +11697,0%,,1.0,f +23549,100%,Palestinian Territory,2.0,t +1455,100%,France,2.0,f +42425,,El Salvador,1.0,f +49844,,,1.0,f +37567,,Estonia,2.0,f +6612,100%,Chile,1.0,t +26239,100%,,1.0,f +13056,100%,Kiribati,2.0,f +28211,,,1.0,f +17217,,Lebanon,1.0,t +21620,,,1.0,f +48941,100%,Denmark,1.0,f +42323,100%,Somalia,1.0,f +13581,71%,,1.0,f +23296,,,1.0,f +31236,,Guernsey,1.0,f +38319,100%,Nicaragua,20.0,f +14514,,China,80.0,t +38319,100%,Nicaragua,20.0,f +11807,,Indonesia,2.0,f +22720,92%,Nicaragua,1.0,f +38319,100%,Nicaragua,20.0,f +45752,,,1.0,t +38319,100%,Nicaragua,20.0,f +38319,100%,Nicaragua,20.0,f +38319,100%,Nicaragua,20.0,f +6451,80%,Uzbekistan,3.0,f +22196,,Monaco,1.0,t +1212,100%,Tonga,2.0,f +39397,,Guinea,3.0,t +1721,100%,Ecuador,5.0,f +42035,90%,Jersey,2.0,f +1212,100%,Tonga,2.0,f +12427,,,1.0,f +22638,93%,Maldives,2.0,t +6641,,Gibraltar,1.0,f +16843,100%,United Kingdom,2.0,f +35822,100%,Indonesia,2.0,f +6451,80%,Uzbekistan,3.0,f +21598,,Lebanon,6.0,f +37595,90%,Lithuania,4.0,f +41969,,France,1.0,t +34993,100%,Afghanistan,3.0,f +23559,100%,United Kingdom,1.0,f +39395,100%,Mauritania,3.0,t +48966,100%,Tanzania,2.0,f +46686,100%,,1.0,t +8176,50%,,1.0,f +33226,,Ecuador,14.0,f +4991,,,1.0,f +3233,100%,Monaco,2.0,f +33226,,Ecuador,14.0,f +10084,,Tanzania,1.0,f +33226,,Ecuador,14.0,f +33226,,Ecuador,14.0,f +33226,,Ecuador,14.0,f +28848,100%,Uganda,9.0,f +30355,100%,Barbados,3.0,t +33226,,Ecuador,14.0,f +29627,,Lebanon,1.0,f +4057,100%,Rwanda,16.0,f +3401,100%,,1.0,f +4057,100%,Rwanda,16.0,f +2463,0%,,1.0,f +4057,100%,Rwanda,16.0,f +4057,100%,Rwanda,16.0,f +16860,100%,,1.0,t +29090,100%,France,1.0,f +4057,100%,Rwanda,16.0,f +42014,69%,China,17.0,f +4057,100%,Rwanda,16.0,f +29116,100%,El Salvador,19.0,t +4057,100%,Rwanda,16.0,f +4057,100%,Rwanda,16.0,f +32935,,Ghana,40.0,f +4057,100%,Rwanda,16.0,f +33226,,Ecuador,14.0,f +29647,100%,Peru,1305.0,f +4057,100%,Rwanda,16.0,f +4057,100%,Rwanda,16.0,f +978,95%,Lithuania,29.0,f +17407,,French Guiana,1.0,t +4057,100%,Rwanda,16.0,f +6801,100%,Kiribati,2.0,f +38453,100%,,1.0,f +13070,100%,Fiji,45.0,f +6144,100%,Kiribati,2.0,t +12173,100%,Uganda,9.0,f +3019,100%,Barbados,18.0,f +46669,86%,Brazil,11.0,f +33226,,Ecuador,14.0,f +33226,,Ecuador,14.0,f +20165,94%,Ukraine,30.0,f +33226,,Ecuador,14.0,f +41693,100%,Nicaragua,2.0,f +33226,,Ecuador,14.0,f +49461,100%,Tonga,1.0,f +33226,,Ecuador,14.0,f +13618,67%,,2.0,f +21211,100%,Nicaragua,2.0,f +13439,100%,Tonga,1.0,f +20961,100%,Monaco,1.0,f +33226,,Ecuador,14.0,f +13618,67%,,2.0,f +13070,100%,Fiji,45.0,f +16649,100%,Gibraltar,8.0,f +10568,100%,French Guiana,1.0,f +5677,100%,,1.0,f +1170,100%,Papua New Guinea,2.0,f +16651,100%,Guinea,21.0,f +4556,100%,,1.0,f +1054,100%,Guinea,20.0,f +39605,100%,Jersey,1.0,f +50098,,Marshall Islands,2.0,f +7846,100%,Malta,1.0,f +34486,90%,,5.0,f +3078,,,1.0,f +36424,63%,Slovakia (Slovak Republic),12.0,f +1054,100%,Guinea,20.0,f +735,100%,Mauritania,1.0,f +6047,100%,Zimbabwe,1.0,f +4889,100%,French Guiana,1.0,f +4341,80%,,1.0,f +1054,100%,Guinea,20.0,f +40877,,Marshall Islands,1.0,f +36010,100%,,2.0,f +1054,100%,Guinea,20.0,f +23616,100%,Chile,1.0,f +48485,100%,Indonesia,1.0,f +42788,100%,Palestinian Territory,2.0,f +33502,100%,Guinea,1.0,t +37926,67%,China,2.0,f +21436,0%,Denmark,1.0,f +16627,100%,France,1.0,f +8579,100%,Lithuania,2.0,f +5622,,Zimbabwe,1.0,f +25516,,Palestinian Territory,1.0,f +10488,100%,Niger,17.0,t +30483,100%,Rwanda,1.0,f +38563,92%,Russian Federation,2.0,f +24829,,China,2.0,t +48491,,Sao Tome and Principe,1.0,f +39746,100%,Lithuania,1.0,t +11674,100%,Uzbekistan,4.0,f +50073,,Micronesia,1.0,f +43943,,Maldives,2.0,t +10484,100%,Guinea,12.0,t +10484,100%,Guinea,12.0,t +11753,100%,Gambia,11.0,t +15053,25%,Uzbekistan,1.0,t +21438,100%,China,3.0,f +47956,100%,Saint Helena,2.0,f +38582,100%,,7.0,f +44831,100%,Russian Federation,1.0,f +38335,79%,Guinea,11.0,f +19035,100%,Croatia,2.0,t +49465,100%,Costa Rica,1.0,f +10351,98%,El Salvador,15.0,f +25009,,Philippines,1.0,f +19044,100%,,1.0,f +642,,Nauru,3.0,t +25435,0%,,1.0,f +34535,,Rwanda,1.0,f +47274,100%,Tonga,48.0,f +1766,,Zimbabwe,2.0,f +33817,100%,Gibraltar,62.0,f +48968,,Croatia,1.0,t +31707,100%,Niger,48.0,f +33226,,Ecuador,14.0,f +15475,100%,Chad,1.0,f +1054,100%,Guinea,20.0,f +45250,,,1.0,f +36182,0%,,2.0,f +47956,100%,Saint Helena,2.0,f +16649,100%,Gibraltar,8.0,f +47737,,Sao Tome and Principe,2.0,f +33496,80%,Marshall Islands,2.0,t +42669,,Sao Tome and Principe,2.0,f +32203,100%,Barbados,176.0,f +15589,100%,Nicaragua,48.0,f +25476,100%,Fiji,11.0,f +15589,100%,Nicaragua,48.0,f +48819,95%,Pakistan,6.0,f +33817,100%,Gibraltar,62.0,f +11139,,Afghanistan,1.0,f +29647,100%,Peru,1305.0,f +3521,0%,Maldives,1.0,t +32203,100%,Barbados,176.0,f +27024,,,1.0,f +48819,95%,Pakistan,6.0,f +38480,100%,Kenya,1.0,f +42035,90%,Jersey,2.0,f +9892,,France,2.0,f +25723,100%,Vietnam,3.0,t +15864,100%,Afghanistan,2.0,f +5914,,Chile,1.0,f +1194,100%,Anguilla,1.0,f +13212,100%,Zimbabwe,12.0,t +30847,,French Guiana,1.0,f +44399,75%,Gibraltar,1.0,f +33817,100%,Gibraltar,62.0,f +15589,100%,Nicaragua,48.0,f +15589,100%,Nicaragua,48.0,f +41870,,Lebanon,1.0,f +44604,100%,,1.0,f +24375,100%,Niue,1.0,t +15589,100%,Nicaragua,48.0,f +15589,100%,Nicaragua,48.0,f +11567,100%,Niger,31.0,t +22932,100%,Tonga,1.0,f +23579,100%,,1.0,f +1098,100%,Gibraltar,2.0,f +15589,100%,Nicaragua,48.0,f +15589,100%,Nicaragua,48.0,f +11002,,Philippines,10.0,f +15589,100%,Nicaragua,48.0,f +15589,100%,Nicaragua,48.0,f +18023,100%,Canada,1.0,f +27149,100%,Guinea,1.0,f +34736,100%,,1.0,t +15589,100%,Nicaragua,48.0,f +15589,100%,Nicaragua,48.0,f +11926,,Tonga,4.0,t +3898,,United Kingdom,1.0,t +18484,100%,Gambia,108.0,f +26381,100%,Venezuela,1.0,f +32203,100%,Barbados,176.0,f +41172,60%,China,1.0,t +18362,100%,Uganda,5.0,f +3221,100%,Niue,1.0,f +33817,100%,Gibraltar,62.0,f +25939,100%,Nauru,2.0,f +4798,100%,Guinea,1.0,t +42769,,Malta,1.0,f +15589,100%,Nicaragua,48.0,f +15589,100%,Nicaragua,48.0,f +9473,80%,Cape Verde,1.0,t +5973,,Jersey,5.0,f +25667,,,1.0,f +46826,100%,France,1.0,f +19124,100%,Indonesia,1.0,f +15589,100%,Nicaragua,48.0,f +15589,100%,Nicaragua,48.0,f +1929,100%,Niue,7.0,t +37624,83%,Portugal,1.0,f +40724,,Niue,1.0,f +7404,0%,,4.0,f +19505,,Bosnia and Herzegovina,1.0,t +7404,0%,,4.0,f +7404,0%,,4.0,f +7404,0%,,4.0,f +33372,100%,Guinea,22.0,t +33880,84%,Barbados,18.0,f +15589,100%,Nicaragua,48.0,f +15589,100%,Nicaragua,48.0,f +39368,,Sao Tome and Principe,1.0,f +33880,84%,Barbados,18.0,f +18077,100%,Sao Tome and Principe,139.0,f +29206,,China,1.0,f +33817,100%,Gibraltar,62.0,f +33880,84%,Barbados,18.0,f +33880,84%,Barbados,18.0,f +33880,84%,Barbados,18.0,f +33880,84%,Barbados,18.0,f +14256,100%,,3.0,f +25374,100%,Tonga,8.0,f +20153,96%,Reunion,51.0,f +5121,75%,Philippines,2.0,f +40923,75%,,2.0,f +31830,100%,Tonga,1.0,f +33372,100%,Guinea,22.0,t +44227,100%,,1.0,f +16703,100%,Uzbekistan,4.0,f +20717,100%,,1.0,f +10913,,,2.0,t +18518,100%,El Salvador,1.0,f +10913,,,2.0,t +30181,100%,Lebanon,2.0,f +33372,100%,Guinea,22.0,t +1573,100%,,1.0,f +16567,100%,Russian Federation,4.0,f +35693,100%,Turkmenistan,1.0,t +15594,,,1.0,f +42392,100%,Greenland,4.0,f +6634,,,1.0,f +47583,100%,,1.0,t +14864,100%,Tanzania,1.0,t +4272,,Greenland,1.0,f +451,70%,Cocos (Keeling) Islands,2.0,f +30020,,,1.0,f +10622,,,1.0,f +33372,100%,Guinea,22.0,t +45944,100%,,1.0,f +34446,,Cocos (Keeling) Islands,2.0,t +45149,100%,Chad,3.0,t +14514,,China,80.0,t +30794,100%,Barbados,5.0,t +20520,83%,,1.0,f +361,,,2.0,f +32207,,,1.0,f +41694,0%,,4.0,f +43025,100%,Isle of Man,1.0,f +41694,0%,,4.0,f +25560,100%,,1.0,f +41694,0%,,4.0,f +41694,0%,,4.0,f +45557,100%,,2.0,f +18247,95%,Iran,80.0,t +18247,95%,Iran,80.0,t +18247,95%,Iran,80.0,t +26302,,Gambia,2.0,f +28954,100%,Rwanda,4.0,f +43612,100%,,1.0,f +10351,98%,El Salvador,15.0,f +46669,86%,Brazil,11.0,f +35623,,Micronesia,1.0,f +6419,0%,Niue,1.0,f +17779,100%,,1.0,f +18455,92%,,1.0,f +39257,100%,Brazil,4.0,f +29967,94%,Reunion,5.0,f +9892,,France,2.0,f +31052,0%,Nicaragua,1.0,f +46980,100%,Marshall Islands,1.0,t +1054,100%,Guinea,20.0,f +49133,100%,Reunion,3.0,t +11023,,,1.0,f +39467,100%,Nicaragua,4.0,t +22891,100%,,1.0,f +30549,100%,Mauritania,1.0,t +49473,,,1.0,f +14514,,China,80.0,t +27653,100%,Monaco,1.0,f +28114,97%,Bouvet Island (Bouvetoya),16.0,f +27554,100%,Montserrat,1.0,t +19943,63%,Isle of Man,34.0,f +14684,,,1.0,f +215,100%,Niue,1.0,f +19943,63%,Isle of Man,34.0,f +19943,63%,Isle of Man,34.0,f +19627,0%,,4.0,f +19627,0%,,4.0,f +19627,0%,,4.0,f +19627,0%,,4.0,f +40637,,Sao Tome and Principe,1.0,t +8107,80%,,1.0,f +47270,100%,Guinea,1.0,f +18373,100%,Zimbabwe,1.0,t +12217,100%,Gambia,1.0,f +15520,90%,Afghanistan,1.0,t +14333,,Tonga,3.0,f +31019,100%,Ghana,5.0,f +15620,95%,Marshall Islands,5.0,f +32203,100%,Barbados,176.0,f +6692,,,1.0,f +15860,100%,Maldives,11.0,f +26116,,Rwanda,3.0,f +47665,,Kenya,4.0,t +12817,,,1.0,f +5973,,Jersey,5.0,f +31619,,,1.0,f +44499,100%,,1.0,f +11063,90%,,16.0,t +6468,100%,Marshall Islands,1.0,t +40793,100%,,75.0,t +12025,100%,,1.0,f +21203,,,1.0,t +2060,70%,,1.0,f +12173,100%,Uganda,9.0,f +17033,81%,,2.0,f +46841,100%,Niger,1.0,t +48436,,Barbados,1.0,t +49065,100%,,1.0,f +8478,100%,Bosnia and Herzegovina,1.0,f +14663,100%,Kenya,1.0,f +11242,,Greenland,2.0,f +17448,100%,Somalia,2.0,f +18303,100%,,7.0,f +18303,100%,,7.0,f +18303,100%,,7.0,f +18303,100%,,7.0,f +18303,100%,,7.0,f +39591,,Chad,1.0,t +18303,100%,,7.0,f +18303,100%,,7.0,f +28994,100%,Jersey,1.0,f +47004,,Venezuela,1.0,f +47278,,,1.0,f +11115,,Cocos (Keeling) Islands,2.0,f +29123,100%,Zimbabwe,16.0,t +41630,100%,Kiribati,24.0,f +41630,100%,Kiribati,24.0,f +34086,80%,,2.0,f +34086,80%,,2.0,f +41669,100%,Russian Federation,1.0,f +14795,90%,,1.0,f +22092,100%,France,2.0,f +31202,90%,Kiribati,107.0,f +5802,100%,France,3.0,t +31202,90%,Kiribati,107.0,f +31202,90%,Kiribati,107.0,f +31202,90%,Kiribati,107.0,f +31202,90%,Kiribati,107.0,f +31202,90%,Kiribati,107.0,f +9812,100%,,1.0,t +9124,100%,,1.0,f +30660,80%,Portugal,2.0,t +33817,100%,Gibraltar,62.0,f +33639,100%,Turks and Caicos Islands,2.0,f +44787,,,1.0,f +6782,100%,Uganda,5.0,f +361,,,2.0,f +18699,100%,Kenya,2.0,f +36207,100%,,1.0,f +18860,100%,,4.0,t +43512,,Uzbekistan,1.0,t +26386,100%,Fiji,25.0,t +33372,100%,Guinea,22.0,t +4558,30%,,3.0,f +8127,67%,Turks and Caicos Islands,1.0,f +26138,70%,Ecuador,1.0,f +33372,100%,Guinea,22.0,t +13871,100%,,1.0,f +37643,,Netherlands,1.0,f +24300,97%,Palau,5.0,t +1657,,Croatia,13.0,t +18860,100%,,4.0,t +4592,100%,,1.0,f +33372,100%,Guinea,22.0,t +49522,,,1.0,f +26100,,Jersey,1.0,f +23339,100%,Slovakia (Slovak Republic),1.0,f +4800,,Guinea,1.0,f +25711,100%,,2.0,f +31529,100%,Wallis and Futuna,6.0,f +7273,100%,,1.0,f +2404,,Barbados,3.0,t +38420,90%,Christmas Island,8.0,f +5506,,Ghana,1.0,f +40256,,Uzbekistan,2.0,t +9353,,Sudan,3.0,f +18366,78%,,1.0,f +34054,100%,,4.0,f +44210,95%,,3.0,f +31529,100%,Wallis and Futuna,6.0,f +5042,,Mauritania,2.0,f +13533,100%,,1.0,f +3966,100%,Micronesia,2.0,t +35582,100%,Russian Federation,1.0,f +42241,0%,Zimbabwe,1.0,f +8156,,Russian Federation,3.0,f +16496,97%,Maldives,4.0,f +21559,75%,Tokelau,3.0,t +38843,100%,Uzbekistan,3.0,f +26961,100%,Estonia,1.0,f +40303,100%,Guinea,82.0,f +17702,,Lebanon,1.0,f +26483,100%,,1.0,f +30093,100%,Isle of Man,1.0,f +780,,United Kingdom,1.0,f +44253,75%,,1.0,f +20334,99%,Niger,171.0,t +26347,,Chad,1.0,t +12829,100%,,1.0,f +32789,,Gambia,2.0,t +31026,,Micronesia,1.0,t +3373,67%,,6.0,f +45246,100%,Russian Federation,2.0,f +19697,100%,Brazil,3.0,f +3373,67%,,6.0,f +9276,,,1.0,f +3373,67%,,6.0,f +3373,67%,,6.0,f +3373,67%,,6.0,f +3373,67%,,6.0,f +45496,40%,Niue,6.0,f +2682,100%,Lebanon,1.0,t +26970,100%,Burkina Faso,3.0,f +26970,100%,Burkina Faso,3.0,f +5052,80%,Micronesia,1.0,f +32593,82%,,6.0,t +9354,100%,Spain,12.0,f +3790,100%,Netherlands,16.0,f +9744,100%,,1.0,f +24230,100%,Reunion,1.0,f +40096,,Micronesia,1.0,f +5420,100%,Tonga,41.0,f +24177,,Venezuela,4.0,t +48617,70%,Jersey,1.0,f +38882,100%,Niue,3.0,f +48117,98%,Ukraine,41.0,f +22461,100%,Turks and Caicos Islands,4.0,f +27406,,Isle of Man,1.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +43090,,,1.0,t +22382,,,1.0,f +3621,,Croatia,1.0,t +5591,99%,Indonesia,16.0,t +22721,100%,Ecuador,109.0,f +25147,99%,Niger,48.0,f +27979,100%,Kiribati,2.0,f +35641,,Netherlands,15.0,t +5409,100%,Russian Federation,1.0,f +5420,100%,Tonga,41.0,f +7430,100%,Marshall Islands,1.0,f +19142,90%,Niger,9.0,f +45929,96%,Uganda,3.0,f +23419,,,10.0,f +19142,90%,Niger,9.0,f +31336,,Bouvet Island (Bouvetoya),8.0,t +24589,100%,Uzbekistan,2.0,f +22077,100%,Mauritania,10.0,f +26123,,Tunisia,5.0,t +48117,98%,Ukraine,41.0,f +6223,100%,Marshall Islands,12.0,f +23588,,Ghana,3.0,f +26123,,Tunisia,5.0,t +33817,100%,Gibraltar,62.0,f +3550,,Cocos (Keeling) Islands,3.0,t +46546,,Turkmenistan,1.0,f +13932,,,1.0,f +48960,100%,,13.0,t +42984,100%,,1.0,f +1910,,Turkmenistan,1.0,f +46989,100%,Nicaragua,3.0,f +31930,,Anguilla,2.0,f +27655,,Monaco,1.0,f +18687,83%,,1.0,t +47070,,Reunion,1.0,f +27388,100%,Montserrat,1.0,t +21861,100%,Cuba,2.0,f +10711,93%,Uganda,108.0,t +6223,100%,Marshall Islands,12.0,f +9629,100%,,1.0,f +6662,,,2.0,t +7460,100%,China,1.0,f +6223,100%,Marshall Islands,12.0,f +10814,,Micronesia,1.0,f +9511,,Nicaragua,1.0,f +27353,,French Guiana,1.0,t +6223,100%,Marshall Islands,12.0,f +6223,100%,Marshall Islands,12.0,f +45134,70%,Kiribati,3.0,f +6433,100%,Tonga,1.0,f +46946,,,1.0,f +6223,100%,Marshall Islands,12.0,f +45870,100%,Puerto Rico,2.0,t +25141,100%,Togo,1.0,f +1423,,Guinea,1.0,f +22077,100%,Mauritania,10.0,f +36750,100%,Jersey,3.0,f +31873,99%,Uzbekistan,22.0,f +17626,100%,Faroe Islands,2.0,t +42021,,Gambia,2.0,f +20619,,,1.0,t +31873,99%,Uzbekistan,22.0,f +2828,100%,Denmark,1.0,f +2204,,,1.0,f +43162,72%,China,7.0,f +20839,70%,,1.0,t +31353,,,1.0,f +49266,100%,,1.0,f +3121,95%,Zimbabwe,9.0,t +5104,90%,,2.0,f +43053,,Papua New Guinea,1.0,f +45931,,Niue,1.0,f +4343,100%,,1.0,t +30998,100%,,1.0,f +15759,,Tonga,4.0,t +36253,100%,Nauru,21.0,t +42887,,,1.0,f +36253,100%,Nauru,21.0,t +13979,100%,Andorra,1.0,f +9715,100%,Russian Federation,1.0,t +16649,100%,Gibraltar,8.0,f +32210,0%,,1.0,f +15639,,Faroe Islands,1.0,f +27652,100%,El Salvador,5.0,f +10015,,Bosnia and Herzegovina,8.0,f +5533,100%,France,1.0,t +10015,,Bosnia and Herzegovina,8.0,f +33817,100%,Gibraltar,62.0,f +34723,100%,Peru,12.0,f +31628,,,1.0,f +24026,98%,Cape Verde,69.0,t +45490,95%,Barbados,6.0,f +18524,100%,Philippines,2.0,t +47381,,Indonesia,3.0,f +29328,,Moldova,1.0,t +14176,,Anguilla,1.0,f +45396,100%,,1.0,f +25125,,Mauritania,1.0,f +42741,100%,Tanzania,1.0,f +20334,99%,Niger,171.0,t +7513,,,1.0,t +24026,98%,Cape Verde,69.0,t +33817,100%,Gibraltar,62.0,f +34819,,Cuba,1.0,f +42954,100%,Finland,1.0,f +48428,,Lebanon,1.0,f +31127,,Lebanon,1.0,t +45354,100%,,1.0,f +35786,100%,Isle of Man,1.0,f +6841,100%,Mauritania,4.0,f +17187,,Lithuania,1.0,f +47533,,Senegal,1.0,f +20486,,El Salvador,2.0,f +3404,100%,Lebanon,2.0,f +21265,,,1.0,t +45053,100%,Marshall Islands,2.0,f +33156,,Uzbekistan,1.0,t +18459,100%,Zimbabwe,100.0,f +2743,97%,China,23.0,f +39555,100%,Marshall Islands,13.0,t +34711,,Indonesia,1.0,f +35987,,Togo,1.0,t +1947,100%,Micronesia,1.0,f +40278,,Uganda,2.0,f +20334,99%,Niger,171.0,t +36291,,Niue,1.0,f +35315,100%,,1.0,f +20334,99%,Niger,171.0,t +41377,,Peru,1.0,f +17822,,Russian Federation,1.0,t +45939,100%,Niue,1.0,t +14639,,Uzbekistan,1.0,t +12306,,Niue,1.0,f +20407,100%,,4.0,f +27069,100%,Mauritania,1.0,t +25283,70%,Iceland,2.0,t +32260,100%,,1.0,f +3801,50%,Maldives,5.0,f +13070,100%,Fiji,45.0,f +3801,50%,Maldives,5.0,f +38552,100%,Montserrat,1.0,f +3801,50%,Maldives,5.0,f +36473,,,1.0,f +7997,100%,,1.0,f +14381,,Micronesia,1.0,t +6193,100%,Monaco,1.0,t +34880,,Tonga,2.0,f +46982,93%,Denmark,2.0,f +19091,95%,Cook Islands,18.0,t +48764,,Kiribati,1.0,f +43943,,Maldives,2.0,t +13916,,Guinea,1.0,f +24187,,,1.0,t +40716,100%,,3.0,f +38645,100%,,3.0,f +44394,100%,,1.0,f +19019,97%,Nicaragua,1484.0,f +25168,100%,Chile,1.0,t +42655,,Rwanda,1.0,f +24025,,,1.0,f +19019,97%,Nicaragua,1484.0,f +20798,80%,,1.0,f +19019,97%,Nicaragua,1484.0,f +40294,100%,Barbados,6.0,f +46989,100%,Nicaragua,3.0,f +19019,97%,Nicaragua,1484.0,f +19019,97%,Nicaragua,1484.0,f +25373,,,1.0,f +19019,97%,Nicaragua,1484.0,f +19019,97%,Nicaragua,1484.0,f +28954,100%,Rwanda,4.0,f +19019,97%,Nicaragua,1484.0,f +6338,100%,Isle of Man,6.0,f +38516,95%,Pakistan,9.0,f +19737,100%,,1.0,f +8085,,,1.0,f +1302,,Brazil,2.0,t +21330,,Zimbabwe,1.0,t +29905,,Russian Federation,1.0,f +14363,,,1.0,f +16842,100%,Tanzania,2.0,t +12656,,,1.0,f +16885,,,1.0,f +38019,100%,Afghanistan,10.0,f +39143,89%,,33.0,f +12173,100%,Uganda,9.0,f +76,96%,Togo,7.0,f +33749,93%,Mauritania,7.0,f +40387,,,1.0,t +76,96%,Togo,7.0,f +34096,100%,Andorra,10.0,f +38019,100%,Afghanistan,10.0,f +2336,,,2.0,f +40989,,Zimbabwe,1.0,t +8091,97%,Cuba,10.0,f +3839,,,1.0,t +12173,100%,Uganda,9.0,f +35522,100%,Kiribati,10.0,f +47108,,,1.0,t +28524,80%,Isle of Man,1.0,f +30141,100%,,3.0,f +48462,,,1.0,f +35716,100%,Pakistan,4.0,f +27418,,Grenada,1.0,f +8252,100%,,1.0,f +36822,100%,,3.0,f +30904,100%,Sao Tome and Principe,2.0,f +30179,100%,Sao Tome and Principe,1.0,f +47302,,Netherlands,2.0,f +28264,80%,Cape Verde,1.0,f +118,,,1.0,f +37418,100%,Maldives,3.0,f +28725,,,1.0,f +1766,,Zimbabwe,2.0,f +2845,,Kiribati,9.0,f +9363,95%,Ukraine,50.0,f +2845,,Kiribati,9.0,f +5371,,,1.0,t +19913,100%,,1.0,t +31172,87%,Netherlands Antilles,2.0,f +41546,100%,Mauritania,21.0,f +7319,100%,Guinea,1.0,f +32589,100%,,1.0,t +2845,,Kiribati,9.0,f +30906,,Isle of Man,1.0,t +42583,100%,Sao Tome and Principe,5.0,f +41546,100%,Mauritania,21.0,f +47920,,American Samoa,3.0,t +4399,,Guinea,2.0,t +31010,100%,Denmark,1.0,f +13812,100%,Estonia,1.0,f +5577,,Zimbabwe,2.0,t +7183,50%,,3.0,f +26836,,,1.0,f +6103,100%,Slovenia,1.0,f +7907,,American Samoa,1.0,f +32630,100%,,1.0,f +43794,,Sao Tome and Principe,1.0,f +28114,97%,Bouvet Island (Bouvetoya),16.0,f +21119,100%,,1.0,f +28114,97%,Bouvet Island (Bouvetoya),16.0,f +4406,50%,,1.0,f +42729,80%,,1.0,f +40003,100%,,6.0,t +23275,,Micronesia,5.0,t +29337,,,1.0,f +27095,,Nicaragua,2.0,f +36074,100%,Micronesia,1.0,f +38149,100%,Niger,12.0,f +36610,,,1.0,f +49570,,Denmark,6.0,f +15279,,Afghanistan,22.0,t +22023,50%,,1.0,f +14063,100%,Denmark,10.0,t +32083,,,1.0,f +44114,92%,,5.0,f +27400,100%,Uganda,1.0,f +22428,100%,,1.0,f +45828,90%,Togo,9.0,f +35811,0%,Switzerland,1.0,f +31482,,Papua New Guinea,2.0,t +31730,100%,Denmark,1.0,f +45425,100%,Mexico,1.0,t +14365,86%,Svalbard & Jan Mayen Islands,1.0,f +48756,100%,Maldives,59.0,f +22467,100%,Estonia,2.0,f +11003,,Cook Islands,1.0,f +13018,100%,Guernsey,4.0,t +23503,100%,Marshall Islands,1.0,f +12173,100%,Uganda,9.0,f +9284,100%,Nicaragua,4.0,f +25070,,Slovakia (Slovak Republic),1.0,t +41043,100%,Bosnia and Herzegovina,11.0,f +35624,100%,Estonia,1.0,f +31303,,Costa Rica,1.0,f +8334,,,1.0,t +45828,90%,Togo,9.0,f +48079,,Denmark,1.0,f +16176,100%,Christmas Island,1.0,f +44782,100%,,2.0,f +31531,,Isle of Man,1.0,f +34391,,,2.0,f +20165,94%,Ukraine,30.0,f +26123,,Tunisia,5.0,t +20334,99%,Niger,171.0,t +46590,100%,Nicaragua,2.0,f +5806,90%,Niue,2.0,f +30317,100%,Marshall Islands,1.0,f +22222,100%,,1.0,f +32879,100%,Niue,1.0,f +21936,100%,Marshall Islands,1.0,f +34454,100%,Marshall Islands,1.0,f +9096,,,1.0,t +35653,100%,Barbados,1.0,t +1719,,Fiji,2.0,t +30505,100%,Turkmenistan,2.0,f +18886,95%,Vietnam,3.0,t +9019,100%,Greenland,2.0,f +9215,100%,Anguilla,2.0,f +34844,,France,1.0,f +27079,,Maldives,14.0,t +2499,100%,Costa Rica,3.0,f +47274,100%,Tonga,48.0,f +8746,,Canada,1.0,f +46477,100%,Micronesia,2.0,f +47665,,Kenya,4.0,t +44260,100%,Jersey,1.0,t +49742,,Marshall Islands,1.0,f +20967,100%,Congo,3.0,t +42637,,,1.0,f +9222,100%,Brazil,18.0,t +28295,,Niue,1.0,f +41844,,Uzbekistan,1.0,t +40694,,Togo,1.0,f +20497,100%,Niue,2.0,f +3865,,Bouvet Island (Bouvetoya),1.0,f +47665,,Kenya,4.0,t +37214,100%,Gibraltar,1.0,f +27623,,Switzerland,1.0,t +16758,40%,Barbados,3.0,f +7557,100%,Uganda,1.0,f +26512,,Marshall Islands,1.0,f +41994,,Portugal,2.0,f +46670,,Guinea,1.0,f +11192,100%,,1.0,f +44654,,Maldives,3.0,f +23854,,Uzbekistan,15.0,f +11481,100%,Croatia,1.0,f +45730,100%,,1.0,f +23854,,Uzbekistan,15.0,f +18155,100%,,2.0,f +41984,,Kenya,1.0,t +23854,,Uzbekistan,15.0,f +44586,85%,Ukraine,13.0,f +27056,100%,Kenya,4.0,f +30120,100%,Chad,2.0,t +32341,70%,Russian Federation,5.0,f +48840,100%,Uzbekistan,9.0,f +23227,,Isle of Man,1.0,t +44586,85%,Ukraine,13.0,f +44586,85%,Ukraine,13.0,f +19019,97%,Nicaragua,1484.0,f +10351,98%,El Salvador,15.0,f +10351,98%,El Salvador,15.0,f +32920,60%,Reunion,5.0,f +6051,100%,Pakistan,2.0,f +39338,50%,Micronesia,2.0,f +48840,100%,Uzbekistan,9.0,f +19019,97%,Nicaragua,1484.0,f +41404,,,1.0,f +10015,,Bosnia and Herzegovina,8.0,f +19019,97%,Nicaragua,1484.0,f +3719,100%,,1.0,f +39822,100%,Togo,3.0,f +42837,100%,Turkmenistan,2.0,t +3446,,China,3.0,f +13772,,Uzbekistan,1.0,t +4295,90%,,1.0,t +38319,100%,Nicaragua,20.0,f +38319,100%,Nicaragua,20.0,f +809,100%,Guinea,1.0,f +29079,,Estonia,2.0,f +31383,100%,Spain,4.0,f +35981,100%,Niger,1.0,f +16758,40%,Barbados,3.0,f +16758,40%,Barbados,3.0,f +14192,100%,Denmark,2.0,f +24461,,Lebanon,1.0,f +29079,,Estonia,2.0,f +28400,,Brazil,1.0,f +15589,100%,Nicaragua,48.0,f +6081,100%,,1.0,f +38270,100%,Maldives,6.0,f +45982,100%,,1.0,f +15589,100%,Nicaragua,48.0,f +40303,100%,Guinea,82.0,f +45576,,Jersey,1.0,f +19214,100%,Senegal,55.0,f +40163,100%,Marshall Islands,1.0,f +34724,100%,Gibraltar,1.0,f +18484,100%,Gambia,108.0,f +20680,83%,Russian Federation,3.0,t +45811,100%,Niue,1.0,f +15589,100%,Nicaragua,48.0,f +40303,100%,Guinea,82.0,f +9601,,,1.0,f +33692,100%,Zimbabwe,1.0,t +15133,100%,United Kingdom,1.0,f +20153,96%,Reunion,51.0,f +22046,100%,Zimbabwe,1.0,f +29733,,Russian Federation,15.0,f +3274,86%,Barbados,24.0,f +13127,100%,Niger,22.0,f +16726,,Denmark,1.0,t +35064,,Andorra,1.0,f +22195,100%,Greenland,2.0,f +19013,100%,Maldives,1.0,f +32258,79%,Ukraine,22.0,f +22600,83%,Malta,2.0,f +44654,,Maldives,3.0,f +32258,79%,Ukraine,22.0,f +36564,100%,Venezuela,5.0,t +48133,,Isle of Man,45.0,f +16109,100%,,1.0,f +19790,50%,Niue,1.0,f +22394,83%,Finland,1.0,f +32203,100%,Barbados,176.0,f +10732,,Uganda,5.0,f +31346,,,1.0,f +6223,100%,Marshall Islands,12.0,f +21049,100%,,1.0,f +6223,100%,Marshall Islands,12.0,f +35815,97%,Slovakia (Slovak Republic),8.0,t +5420,100%,Tonga,41.0,f +32203,100%,Barbados,176.0,f +7656,100%,Russian Federation,1.0,f +24365,,Estonia,2.0,f +40793,100%,,75.0,t +7108,,Monaco,1.0,f +13700,100%,Isle of Man,8.0,f +32203,100%,Barbados,176.0,f +32258,79%,Ukraine,22.0,f +32258,79%,Ukraine,22.0,f +32258,79%,Ukraine,22.0,f +31475,100%,Gambia,1.0,f +5420,100%,Tonga,41.0,f +19019,97%,Nicaragua,1484.0,f +29899,,Niue,3.0,f +29899,,Niue,3.0,f +29899,,Niue,3.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +48840,100%,Uzbekistan,9.0,f +32962,,Turkmenistan,1.0,t +4014,100%,United Kingdom,1.0,f +30925,95%,,3.0,t +4353,,Niue,1.0,f +16603,,Tunisia,5.0,f +27223,,Spain,1.0,f +10107,60%,,3.0,f +16603,,Tunisia,5.0,f +31937,100%,,1.0,f +30587,44%,Russian Federation,1.0,t +45134,70%,Kiribati,3.0,f +6549,,Zimbabwe,1.0,t +32341,70%,Russian Federation,5.0,f +49120,,,1.0,t +32341,70%,Russian Federation,5.0,f +9020,100%,Tonga,1.0,f +384,100%,Turkmenistan,1.0,t +45710,100%,,2.0,t +32341,70%,Russian Federation,5.0,f +3832,,Guinea,1.0,f +7509,,,1.0,f +33089,,,1.0,t +42292,,Puerto Rico,3.0,f +47131,100%,,1.0,f +14418,,,1.0,f +41711,100%,Uzbekistan,2.0,f +39493,,Montserrat,5.0,f +22637,,Gambia,1.0,f +6083,,,1.0,t +10230,100%,Niue,2.0,t +23549,100%,Palestinian Territory,2.0,t +32203,100%,Barbados,176.0,f +38522,100%,Sao Tome and Principe,9.0,f +33861,100%,,1.0,f +38493,,Uzbekistan,12.0,f +38493,,Uzbekistan,12.0,f +10351,98%,El Salvador,15.0,f +10351,98%,El Salvador,15.0,f +33158,,Denmark,2.0,f +11974,100%,Turkmenistan,4.0,t +35015,100%,Senegal,4.0,t +34723,100%,Peru,12.0,f +2264,80%,,1.0,f +24742,,Anguilla,1.0,f +48133,,Isle of Man,45.0,f +1929,100%,Niue,7.0,t +43126,90%,,1.0,f +13743,,Sao Tome and Principe,1.0,f +199,,Niger,3.0,t +40921,100%,,1.0,f +14576,,,1.0,f +31779,100%,Uzbekistan,2.0,f +19942,,Isle of Man,1.0,f +38733,100%,,2.0,f +22292,,,1.0,f +32203,100%,Barbados,176.0,f +37418,100%,Maldives,3.0,f +33817,100%,Gibraltar,62.0,f +32843,,,1.0,f +31533,100%,Malawi,1.0,f +37582,100%,Cook Islands,3.0,f +31750,100%,,2.0,f +11510,,Montserrat,11.0,f +11510,,Montserrat,11.0,f +11510,,Montserrat,11.0,f +11510,,Montserrat,11.0,f +11510,,Montserrat,11.0,f +11510,,Montserrat,11.0,f +11510,,Montserrat,11.0,f +11510,,Montserrat,11.0,f +11510,,Montserrat,11.0,f +25108,100%,,1.0,t +24026,98%,Cape Verde,69.0,t +33817,100%,Gibraltar,62.0,f +32203,100%,Barbados,176.0,f +48133,,Isle of Man,45.0,f +24026,98%,Cape Verde,69.0,t +40062,100%,Micronesia,2.0,f +1183,,,2.0,f +36652,,,1.0,f +11002,,Philippines,10.0,f +21598,,Lebanon,6.0,f +48271,100%,Russian Federation,1.0,f +33817,100%,Gibraltar,62.0,f +35625,98%,Estonia,25.0,t +22708,100%,,7.0,f +22708,100%,,7.0,f +2191,,,2.0,f +22708,100%,,7.0,f +22708,100%,,7.0,f +22708,100%,,7.0,f +16365,,,1.0,t +22708,100%,,7.0,f +22708,100%,,7.0,f +11403,80%,Barbados,3.0,f +32203,100%,Barbados,176.0,f +8528,100%,,1.0,f +31770,,,2.0,f +48418,98%,Bosnia and Herzegovina,30.0,f +24446,,Tonga,1.0,f +2743,97%,China,23.0,f +37347,,,1.0,f +42855,,Holy See (Vatican City State),2.0,f +6373,100%,,2.0,f +41155,,,7.0,f +41155,,,7.0,f +41155,,,7.0,f +41155,,,7.0,f +41155,,,7.0,f +41155,,,7.0,f +41155,,,7.0,f +30216,98%,Maldives,34.0,f +7359,,Lebanon,2.0,t +13625,80%,Tonga,3.0,f +5531,100%,,1.0,f +32203,100%,Barbados,176.0,f +39786,,Uzbekistan,1.0,f +43941,,France,1.0,f +6458,,Anguilla,1.0,f +49533,50%,,1.0,t +40725,,Gambia,1.0,f +6223,100%,Marshall Islands,12.0,f +18484,100%,Gambia,108.0,f +10514,,Gambia,1.0,f +6223,100%,Marshall Islands,12.0,f +28516,100%,Cocos (Keeling) Islands,1.0,f +667,100%,Croatia,4.0,t +578,,Ecuador,1.0,f +29718,100%,Philippines,6.0,t +6522,,Lithuania,1.0,f +45580,,,1.0,f +11872,,,13.0,f +29647,100%,Peru,1305.0,f +9300,100%,,1.0,f +42083,,,1.0,f +33817,100%,Gibraltar,62.0,f +27529,,Niue,1.0,f +45127,100%,Isle of Man,1.0,f +13700,100%,Isle of Man,8.0,f +33428,100%,,1.0,f +24071,100%,Indonesia,22.0,f +38017,,,1.0,t +10711,93%,Uganda,108.0,t +4267,100%,Senegal,22.0,t +783,100%,Svalbard & Jan Mayen Islands,12.0,t +43832,,,1.0,f +6806,,,1.0,f +12083,,,1.0,f +11002,,Philippines,10.0,f +24071,100%,Indonesia,22.0,f +11002,,Philippines,10.0,f +8774,100%,United Kingdom,1.0,t +33325,,Greenland,4.0,f +11002,,Philippines,10.0,f +11002,,Philippines,10.0,f +20789,98%,Sao Tome and Principe,13.0,f +1416,100%,,1.0,f +36130,,,1.0,t +40051,,,1.0,f +20481,,Isle of Man,2.0,f +19019,97%,Nicaragua,1484.0,f +25682,100%,,2.0,f +21925,100%,,1.0,t +9014,,,1.0,f +45380,100%,,1.0,f +22433,,,1.0,f +17159,100%,,1.0,f +44155,,Russian Federation,2.0,t +46825,100%,,1.0,f +35322,,,1.0,f +36671,100%,,1.0,f +32763,100%,,10.0,f +45759,,,1.0,f +32763,100%,,10.0,f +32763,100%,,10.0,f +20462,100%,,1.0,t +32763,100%,,10.0,f +39493,,Montserrat,5.0,f +32763,100%,,10.0,f +32763,100%,,10.0,f +28589,100%,Bosnia and Herzegovina,5.0,f +37788,,,1.0,f +43722,,,1.0,t +36229,89%,Togo,4.0,f +38522,100%,Sao Tome and Principe,9.0,f +12091,,Portugal,1.0,t +7361,,,1.0,f +18980,,,1.0,f +27315,0%,United Kingdom,1.0,f +19019,97%,Nicaragua,1484.0,f +32887,,,1.0,f +40446,100%,Tanzania,2.0,t +31171,,,3.0,f +38522,100%,Sao Tome and Principe,9.0,f +33158,,Denmark,2.0,f +10686,86%,Tonga,21.0,f +6945,100%,Cuba,8.0,f +15285,88%,,1.0,f +18319,,Saint Helena,2.0,f +25351,100%,Fiji,6.0,f +8870,100%,Svalbard & Jan Mayen Islands,3.0,f +13700,100%,Isle of Man,8.0,f +4699,100%,Greenland,1.0,f +25351,100%,Fiji,6.0,f +35096,,,2.0,f +47031,100%,,4.0,f +28061,100%,Denmark,5.0,f +26411,100%,Niue,1.0,t +23335,100%,,3.0,f +4980,,Isle of Man,2.0,t +15010,100%,,1.0,f +20238,100%,Guinea,1.0,f +7255,100%,Bouvet Island (Bouvetoya),8.0,t +6719,100%,Svalbard & Jan Mayen Islands,1.0,f +636,97%,Vanuatu,3.0,f +17941,100%,France,1.0,t +22818,,Uganda,1.0,f +17516,100%,Denmark,1.0,f +19217,98%,Marshall Islands,46.0,f +38516,95%,Pakistan,9.0,f +20692,100%,Marshall Islands,7.0,t +28015,100%,Maldives,3.0,f +48819,95%,Pakistan,6.0,f +40528,100%,Guinea,1.0,f +49602,100%,Bahrain,1.0,f +36883,,,1.0,f +39831,50%,,1.0,f +6088,100%,,14.0,t +18891,80%,,1.0,f +39465,100%,,1.0,f +28709,,United Kingdom,2.0,f +15589,100%,Nicaragua,48.0,f +37767,,,1.0,f +42014,69%,China,17.0,f +14544,100%,,1.0,f +48964,100%,Nicaragua,19.0,t +10269,,Mauritania,2.0,f +49987,100%,,19.0,f +17845,,Anguilla,1.0,f +1054,100%,Guinea,20.0,f +10269,,Mauritania,2.0,f +24365,,Estonia,2.0,f +9354,100%,Spain,12.0,f +15589,100%,Nicaragua,48.0,f +34758,0%,Niger,1.0,f +15589,100%,Nicaragua,48.0,f +8188,40%,Indonesia,1.0,f +15245,100%,,11.0,f +48294,,Papua New Guinea,1.0,f +10014,,,1.0,f +34304,33%,Micronesia,1.0,f +7639,,Tonga,5.0,f +6265,100%,,2.0,f +44513,,,1.0,f +20423,67%,Philippines,3.0,f +24483,,,2.0,f +13114,100%,Indonesia,1.0,f +45625,50%,Uzbekistan,2.0,f +8665,100%,,1.0,f +4034,89%,Barbados,1.0,f +35641,,Netherlands,15.0,t +15002,,,2.0,f +42794,,Uzbekistan,1.0,t +18459,100%,Zimbabwe,100.0,f +29835,,,1.0,f +16651,100%,Guinea,21.0,f +8455,80%,,1.0,t +48581,,Montserrat,8.0,t +25165,93%,Uzbekistan,7.0,f +39233,,,1.0,t +4440,86%,Uzbekistan,1.0,f +20490,100%,Russian Federation,1.0,f +25303,100%,,1.0,f +29520,,Nicaragua,54.0,f +16651,100%,Guinea,21.0,f +16651,100%,Guinea,21.0,f +21598,,Lebanon,6.0,f +22244,100%,Finland,6.0,t +27477,100%,Tonga,1.0,f +32028,100%,,1.0,f +16651,100%,Guinea,21.0,f +18459,100%,Zimbabwe,100.0,f +27961,100%,Switzerland,2.0,f +8427,100%,Rwanda,2.0,t +10015,,Bosnia and Herzegovina,8.0,f +32258,79%,Ukraine,22.0,f +38279,93%,Mauritania,8.0,t +32763,100%,,10.0,f +32763,100%,,10.0,f +5973,,Jersey,5.0,f +11361,,,1.0,t +26649,,Uzbekistan,1.0,t +32763,100%,,10.0,f +32763,100%,,10.0,f +29380,83%,Guinea,1.0,f +2001,100%,Mauritania,1.0,f +7364,,,1.0,f +23114,75%,Nauru,1.0,f +31754,33%,,1.0,f +14810,100%,Kiribati,1.0,f +15847,,Uganda,13.0,f +16471,,,3.0,f +22854,100%,Russian Federation,2.0,t +43894,50%,Denmark,1.0,f +24723,,Uzbekistan,1.0,f +27851,,United Kingdom,6.0,t +35832,,Lebanon,3.0,t +6570,100%,Lithuania,2.0,f +7952,,Andorra,1.0,f +24991,100%,Indonesia,14.0,f +13700,100%,Isle of Man,8.0,f +4543,,Jersey,1.0,f +17127,,,1.0,f +45295,,Kenya,1.0,f +37418,100%,Maldives,3.0,f +12088,100%,Kiribati,8.0,f +37088,0%,,1.0,f +30207,100%,,1.0,f +13364,91%,Netherlands,21.0,f +25509,,Niue,1.0,f +45281,,,1.0,f +6239,100%,,3.0,f +33873,100%,Turks and Caicos Islands,8.0,t +45563,100%,,1.0,f +28061,100%,Denmark,5.0,f +28061,100%,Denmark,5.0,f +28061,100%,Denmark,5.0,f +38644,,,1.0,f +19126,92%,Niue,2.0,f +15632,,,1.0,f +40702,80%,Niue,2.0,t +32281,0%,,1.0,t +35015,100%,Senegal,4.0,t +6570,100%,Lithuania,2.0,f +635,100%,Guinea,2.0,f +30995,,,7.0,f +47487,90%,,3.0,f +44291,,Kiribati,1.0,f +37224,,El Salvador,2.0,f +14605,100%,Guinea,1.0,f +11511,,,1.0,f +12308,,Tonga,1.0,f +25987,,Venezuela,7.0,t +18951,100%,,1.0,f +29647,100%,Peru,1305.0,f +25082,64%,Estonia,10.0,f +32038,100%,Indonesia,35.0,f +16651,100%,Guinea,21.0,f +44687,,Russian Federation,1.0,f +1230,,Croatia,4.0,f +2392,100%,Jersey,1.0,f +10400,100%,Paraguay,4.0,t +25082,64%,Estonia,10.0,f +35771,100%,Lithuania,1.0,f +17762,90%,Niue,1.0,f +48117,98%,Ukraine,41.0,f +16651,100%,Guinea,21.0,f +2414,100%,Greenland,1.0,f +19386,,Kiribati,1.0,f +962,,Reunion,4.0,t +15843,100%,Slovakia (Slovak Republic),18.0,f +10217,100%,Bosnia and Herzegovina,7.0,t +16190,100%,Holy See (Vatican City State),1.0,t +16651,100%,Guinea,21.0,f +20686,100%,Guernsey,1.0,f +29896,,Tonga,1.0,t +48136,,Vanuatu,2.0,t +18459,100%,Zimbabwe,100.0,f +10265,100%,Micronesia,3.0,f +13834,,Kiribati,9.0,f +18459,100%,Zimbabwe,100.0,f +40790,,Guernsey,1.0,t +45316,,Philippines,1.0,f +22849,100%,Denmark,4.0,t +7704,100%,,1.0,f +40561,90%,Bouvet Island (Bouvetoya),1.0,t +13538,100%,Tonga,1.0,f +48634,,Maldives,1.0,t +20777,,Niger,1.0,f +6713,100%,Mauritania,10.0,f +21220,100%,Uganda,5.0,f +18459,100%,Zimbabwe,100.0,f +22849,100%,Denmark,4.0,t +16489,100%,Russian Federation,42.0,t +23042,100%,,1.0,f +39834,,,1.0,f +33746,100%,Venezuela,2.0,f +40841,100%,Micronesia,1.0,f +13276,90%,United Kingdom,5.0,t +48116,,,1.0,f +4525,98%,El Salvador,9.0,t +19200,,Niue,1.0,f +33167,100%,,1.0,t +49932,,France,2.0,f +28414,100%,Uzbekistan,22.0,f +49713,,Slovenia,2.0,t +43834,99%,Uganda,13.0,f +22975,,Puerto Rico,1.0,t +37036,94%,Estonia,9.0,f +18459,100%,Zimbabwe,100.0,f +5420,100%,Tonga,41.0,f +18247,95%,Iran,80.0,t +22662,,,1.0,f +18459,100%,Zimbabwe,100.0,f +5057,100%,Zimbabwe,23.0,t +48788,90%,,1.0,f +35221,100%,Turks and Caicos Islands,30.0,t +28414,100%,Uzbekistan,22.0,f +18459,100%,Zimbabwe,100.0,f +34042,100%,Marshall Islands,37.0,f +12883,,Costa Rica,1.0,f +32258,79%,Ukraine,22.0,f +3180,100%,Fiji,1.0,f +32258,79%,Ukraine,22.0,f +32258,79%,Ukraine,22.0,f +32258,79%,Ukraine,22.0,f +7931,80%,China,1.0,f +32258,79%,Ukraine,22.0,f +18459,100%,Zimbabwe,100.0,f +32258,79%,Ukraine,22.0,f +32258,79%,Ukraine,22.0,f +1013,100%,Venezuela,4.0,f +32258,79%,Ukraine,22.0,f +1013,100%,Venezuela,4.0,f +7165,100%,Brazil,5.0,t +32258,79%,Ukraine,22.0,f +32258,79%,Ukraine,22.0,f +34817,100%,,2.0,f +32258,79%,Ukraine,22.0,f +20241,86%,Isle of Man,1.0,f +32258,79%,Ukraine,22.0,f +32258,79%,Ukraine,22.0,f +32258,79%,Ukraine,22.0,f +29647,100%,Peru,1305.0,f +34817,100%,,2.0,f +11305,,,23.0,f +7463,100%,Jersey,1.0,t +32258,79%,Ukraine,22.0,f +39452,,Chile,1.0,f +40425,,Cocos (Keeling) Islands,1.0,f +5057,100%,Zimbabwe,23.0,t +19413,,Micronesia,1.0,f +551,95%,Rwanda,17.0,f +76,96%,Togo,7.0,f +25146,100%,Sao Tome and Principe,4.0,f +25254,100%,Brazil,1.0,f +45688,,Kenya,10.0,f +22516,,Estonia,1.0,f +27045,,,1.0,f +45945,,Gambia,1.0,f +30902,100%,Senegal,1.0,f +2663,,France,1.0,f +22605,100%,,1.0,f +24600,,,1.0,f +7797,,,2.0,f +44490,75%,,2.0,f +27225,100%,Kiribati,1.0,f +7708,100%,Turkmenistan,1.0,f +12209,100%,Niue,1.0,f +12828,0%,France,1.0,t +4279,,Gibraltar,1.0,f +46442,100%,,1.0,t +21804,,Portugal,1.0,t +32322,,,1.0,f +36690,100%,Afghanistan,2.0,f +33050,,Anguilla,1.0,f +1768,,Malawi,2.0,t +48418,98%,Bosnia and Herzegovina,30.0,f +48418,98%,Bosnia and Herzegovina,30.0,f +2212,100%,,1.0,f +30271,100%,Svalbard & Jan Mayen Islands,1.0,t +34173,,,1.0,f +48418,98%,Bosnia and Herzegovina,30.0,f +41842,,Portugal,2.0,f +48418,98%,Bosnia and Herzegovina,30.0,f +48418,98%,Bosnia and Herzegovina,30.0,f +32343,50%,,2.0,f +13194,100%,Kiribati,2.0,f +27193,100%,Rwanda,1.0,t +24671,,Ghana,10.0,f +17488,88%,Guinea,1.0,f +42653,,,2.0,f +48675,100%,Venezuela,2.0,f +26253,,,1.0,f +17603,100%,Nicaragua,1.0,t +8488,,Gambia,2.0,f +36960,100%,Micronesia,1.0,t +17303,100%,Russian Federation,5.0,t +45217,,Cook Islands,1.0,f +10395,100%,Russian Federation,1.0,f +19374,100%,Gambia,2.0,t +29520,,Nicaragua,54.0,f +41373,,Lebanon,8.0,f +6894,80%,Estonia,47.0,t +29572,100%,Zimbabwe,1.0,f +8225,95%,Barbados,31.0,f +4194,0%,,1.0,f +46198,,Ecuador,1.0,f +29520,,Nicaragua,54.0,f +16022,100%,Mexico,1.0,t +38327,100%,Ukraine,1.0,f +24782,100%,Barbados,1.0,f +21893,,Montserrat,1.0,f +8099,100%,Tonga,1.0,f +18459,100%,Zimbabwe,100.0,f +18459,100%,Zimbabwe,100.0,f +247,,,1.0,f +15589,100%,Nicaragua,48.0,f +15589,100%,Nicaragua,48.0,f +18459,100%,Zimbabwe,100.0,f +15589,100%,Nicaragua,48.0,f +13250,100%,Uganda,1.0,f +15589,100%,Nicaragua,48.0,f +37341,,Pakistan,3.0,f +962,,Reunion,4.0,t +49103,80%,Rwanda,5.0,f +18459,100%,Zimbabwe,100.0,f +31424,,Uganda,2.0,f +10045,100%,,1.0,t +40364,100%,Tonga,25.0,f +14072,70%,Micronesia,1.0,f +43467,100%,,5.0,f +43467,100%,,5.0,f +43467,100%,,5.0,f +43467,100%,,5.0,f +43467,100%,,5.0,f +26809,100%,,8.0,f +26809,100%,,8.0,f +26809,100%,,8.0,f +26809,100%,,8.0,f +26809,100%,,8.0,f +26809,100%,,8.0,f +26809,100%,,8.0,f +26809,100%,,8.0,f +17152,,Christmas Island,1.0,t +40364,100%,Tonga,25.0,f +1732,,Marshall Islands,1.0,f +37778,92%,Tonga,24.0,f +23119,,Faroe Islands,2.0,t +40364,100%,Tonga,25.0,f +48117,98%,Ukraine,41.0,f +21166,60%,Tonga,1.0,f +40364,100%,Tonga,25.0,f +5591,99%,Indonesia,16.0,t +5420,100%,Tonga,41.0,f +32545,100%,Isle of Man,1.0,f +43506,100%,Zimbabwe,1.0,t +8515,,Isle of Man,1.0,f +29520,,Nicaragua,54.0,f +36925,100%,,2.0,f +25343,100%,Ghana,1.0,f +23588,,Ghana,3.0,f +15707,100%,Vietnam,4.0,f +11518,100%,Libyan Arab Jamahiriya,1.0,f +36740,100%,,1.0,f +29591,100%,,4.0,f +8654,100%,Christmas Island,3.0,f +35846,,Niue,1.0,f +46190,100%,Togo,2.0,f +13703,50%,Kenya,2.0,f +47084,99%,Anguilla,4.0,f +10586,,,1.0,t +39392,100%,France,1.0,f +3015,100%,Nicaragua,3.0,f +27293,75%,Maldives,1.0,f +1558,100%,,10.0,f +17215,97%,Maldives,9.0,f +41080,89%,Tonga,10.0,t +34560,0%,Puerto Rico,1.0,f +2754,100%,Philippines,1.0,f +4875,100%,Libyan Arab Jamahiriya,1.0,f +37778,92%,Tonga,24.0,f +47274,100%,Tonga,48.0,f +48663,,Niue,1.0,t +40784,100%,Niue,3.0,f +1146,95%,French Polynesia,9.0,f +16719,100%,Denmark,1.0,f +9847,,Guernsey,1.0,f +25687,100%,Anguilla,17.0,f +32123,,Fiji,1.0,f +46865,100%,,1.0,f +16785,,Isle of Man,1.0,t +43266,0%,Russian Federation,1.0,f +20334,99%,Niger,171.0,t +42310,100%,Ecuador,6.0,t +2376,50%,,1.0,f +968,100%,Portugal,6.0,f +11869,,,1.0,f +49133,100%,Reunion,3.0,t +26928,100%,,4.0,f +19697,100%,Brazil,3.0,f +968,100%,Portugal,6.0,f +29915,,El Salvador,1.0,f +20334,99%,Niger,171.0,t +8050,,Nicaragua,1.0,f +49551,100%,Maldives,1.0,f +38788,,Svalbard & Jan Mayen Islands,1.0,f +41995,100%,Reunion,5.0,f +14831,,Somalia,1.0,f +8899,,Isle of Man,1.0,f +22141,,Afghanistan,1.0,f +27156,100%,Somalia,1.0,t +35537,100%,Isle of Man,4.0,t +16496,97%,Maldives,4.0,f +6225,90%,Barbados,7.0,f +40972,100%,Micronesia,1.0,f +47479,100%,Russian Federation,1.0,t +47610,100%,Uzbekistan,10.0,f +27300,33%,Mauritania,1.0,f +15847,,Uganda,13.0,f +10720,100%,,1.0,f +17917,100%,,1.0,t +17820,100%,Montserrat,8.0,f +5107,100%,,1.0,f +37817,100%,Russian Federation,1.0,t +48102,96%,Indonesia,4.0,f +2322,100%,Denmark,2.0,f +17331,,Gambia,1.0,f +7502,100%,Croatia,1.0,f +2322,100%,Denmark,2.0,f +19891,,,2.0,t +20068,80%,Uzbekistan,5.0,t +45804,,Mauritania,1.0,f +27692,,Micronesia,1.0,f +9693,100%,Vanuatu,8.0,f +37567,,Estonia,2.0,f +27064,,,1.0,f +20633,,,1.0,f +4446,100%,Uganda,58.0,f +13343,100%,France,3.0,f +42583,100%,Sao Tome and Principe,5.0,f +42583,100%,Sao Tome and Principe,5.0,f +42583,100%,Sao Tome and Principe,5.0,f +6709,100%,Uganda,1.0,t +805,100%,,2.0,f +32676,100%,China,34.0,f +12247,100%,Maldives,33.0,f +23897,100%,Denmark,5.0,f +47100,75%,,1.0,f +30316,100%,Lebanon,2.0,f +3806,,,11.0,f +12247,100%,Maldives,33.0,f +11690,100%,Gambia,1.0,f +5692,,Uzbekistan,2.0,t +17532,100%,,1.0,t +42757,,Micronesia,1.0,f +2424,100%,Indonesia,1.0,f +19380,,United Kingdom,3.0,t +8002,100%,Papua New Guinea,4.0,f +4706,,Guinea,1.0,f +23544,,,1.0,f +19834,100%,Gambia,2.0,f +48117,98%,Ukraine,41.0,f +35484,,Lebanon,1.0,t +41100,100%,Croatia,2.0,t +39680,90%,Peru,1.0,t +48990,100%,Sao Tome and Principe,3.0,f +6564,,Uganda,9.0,f +37436,100%,Palestinian Territory,1.0,f +44934,100%,Philippines,17.0,f +18237,,,2.0,f +28205,,Iraq,22.0,f +28205,,Iraq,22.0,f +28205,,Iraq,22.0,f +28205,,Iraq,22.0,f +40893,100%,Nauru,3.0,f +28205,,Iraq,22.0,f +21109,100%,Nicaragua,1.0,f +7049,100%,Tonga,3.0,t +40919,100%,Zimbabwe,2.0,t +19811,90%,Nicaragua,21.0,t +13343,100%,France,3.0,f +16725,100%,Turkmenistan,3.0,t +16659,100%,,1.0,f +38213,100%,Guinea,1.0,t +16624,100%,Chile,1.0,t +12892,100%,,1.0,f +48582,0%,Guinea,1.0,f +36086,100%,Sao Tome and Principe,4.0,t +7528,,Mauritania,1.0,f +10262,,Portugal,2.0,t +17241,100%,,2.0,t +30850,100%,Finland,5.0,t +49816,100%,Denmark,1.0,f +7486,100%,,2.0,f +10391,100%,,1.0,f +19019,97%,Nicaragua,1484.0,f +45656,100%,Senegal,1.0,f +9922,100%,Papua New Guinea,1.0,f +18216,100%,Chile,1.0,f +37043,100%,Pakistan,11.0,f +19019,97%,Nicaragua,1484.0,f +19396,100%,Mauritania,1.0,f +36293,100%,Russian Federation,1.0,f +38656,100%,Mauritania,8.0,f +22283,100%,Gambia,1.0,f +42481,100%,Guinea,1.0,f +1542,33%,Russian Federation,1.0,f +719,100%,Estonia,1.0,f +12933,100%,,1.0,f +17770,100%,Turkmenistan,1.0,t +31274,98%,Cuba,7.0,f +31274,98%,Cuba,7.0,f +31274,98%,Cuba,7.0,f +11840,,Mauritania,1.0,f +16950,,Montserrat,1.0,f +30336,100%,Vietnam,2.0,t +30336,100%,Vietnam,2.0,t +38532,90%,,6.0,f +43472,,Korea,1.0,f +44586,85%,Ukraine,13.0,f +44586,85%,Ukraine,13.0,f +19019,97%,Nicaragua,1484.0,f +19019,97%,Nicaragua,1484.0,f +19019,97%,Nicaragua,1484.0,f +19019,97%,Nicaragua,1484.0,f +43081,100%,Estonia,1.0,f +19019,97%,Nicaragua,1484.0,f +37137,,Malta,2.0,t +9893,0%,,1.0,f +37640,100%,,1.0,f +6048,100%,Tonga,1.0,f +31238,100%,,1.0,t +8488,,Gambia,2.0,f +18484,100%,Gambia,108.0,f +8002,100%,Papua New Guinea,4.0,f +28601,100%,French Guiana,1.0,f +45688,,Kenya,10.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +4053,,Ecuador,6.0,f +41869,,Niue,4.0,t +23662,100%,Vanuatu,3.0,f +24205,100%,,1.0,f +49464,,Indonesia,2.0,f +48581,,Montserrat,8.0,t +7255,100%,Bouvet Island (Bouvetoya),8.0,t +32957,,Zimbabwe,1.0,f +42720,100%,Tanzania,1.0,f +29520,,Nicaragua,54.0,f +7765,100%,Niue,9.0,t +9611,93%,Chad,2.0,f +3763,100%,Mauritania,1.0,f +5179,,,12.0,f +28205,,Iraq,22.0,f +10042,,Indonesia,21.0,f +20334,99%,Niger,171.0,t +30786,,Uzbekistan,29.0,f +26088,90%,Lebanon,1.0,f +46284,100%,Nicaragua,2.0,t +29520,,Nicaragua,54.0,f +31274,98%,Cuba,7.0,f +31274,98%,Cuba,7.0,f +8002,100%,Papua New Guinea,4.0,f +11465,,Kenya,1.0,f +35790,100%,Malawi,1.0,f +14382,89%,Switzerland,1.0,f +23155,,,2.0,f +30114,96%,Djibouti,2.0,f +28828,100%,Isle of Man,198.0,t +10686,86%,Tonga,21.0,f +23620,100%,,1.0,f +20334,99%,Niger,171.0,t +48117,98%,Ukraine,41.0,f +22513,90%,Jersey,4.0,t +19184,94%,Barbados,2.0,f +18085,100%,Uganda,1.0,f +6424,100%,,1.0,f +17465,,Kenya,1.0,f +31594,100%,Philippines,19.0,t +8409,98%,Maldives,9.0,f +30193,100%,,1.0,t +48117,98%,Ukraine,41.0,f +18077,100%,Sao Tome and Principe,139.0,f +16206,100%,Croatia,1.0,f +23155,,,2.0,f +29801,100%,Isle of Man,1.0,f +46166,100%,Jersey,2.0,t +23674,100%,Slovakia (Slovak Republic),3.0,f +41995,100%,Reunion,5.0,f +29520,,Nicaragua,54.0,f +20843,100%,Russian Federation,1.0,f +41043,100%,Bosnia and Herzegovina,11.0,f +20334,99%,Niger,171.0,t +40744,,,1.0,t +20165,94%,Ukraine,30.0,f +12992,100%,Ecuador,1.0,f +24993,67%,Canada,4.0,f +32277,,Russian Federation,2.0,t +10085,100%,Palestinian Territory,1.0,f +10451,,,3.0,t +15567,100%,Slovakia (Slovak Republic),4.0,f +31514,75%,Gibraltar,2.0,f +19417,100%,,1.0,f +20153,96%,Reunion,51.0,f +15176,,Vanuatu,10.0,f +30293,25%,Kiribati,1.0,f +32203,100%,Barbados,176.0,f +1146,95%,French Polynesia,9.0,f +1321,0%,Uzbekistan,2.0,f +8002,100%,Papua New Guinea,4.0,f +46190,100%,Togo,2.0,f +20153,96%,Reunion,51.0,f +40813,100%,Estonia,1.0,f +22249,,Malta,1.0,f +39078,100%,Isle of Man,2.0,f +49560,100%,,6.0,t +7255,100%,Bouvet Island (Bouvetoya),8.0,t +13164,33%,Mauritania,2.0,f +5210,,Ghana,2.0,f +13821,100%,United Kingdom,2.0,f +13164,33%,Mauritania,2.0,f +44834,97%,Guernsey,4.0,f +49771,100%,Turks and Caicos Islands,4.0,f +2686,,,1.0,f +25534,90%,Indonesia,5.0,t +44834,97%,Guernsey,4.0,f +22195,100%,Greenland,2.0,f +37016,100%,Greenland,6.0,f +42946,,Congo,1.0,f +39902,67%,Malta,1.0,f +11161,,French Polynesia,1.0,f +34651,100%,Djibouti,1.0,f +10728,,,2.0,f +21151,100%,Portugal,5.0,f +26451,100%,,1.0,f +4205,75%,,1.0,f +7626,100%,Tanzania,2.0,f +8346,100%,France,1.0,f +31274,98%,Cuba,7.0,f +17637,100%,Monaco,1.0,t +40395,,,2.0,f +13142,80%,France,2.0,f +5179,,,12.0,f +38656,100%,Mauritania,8.0,f +44834,97%,Guernsey,4.0,f +37639,100%,Nauru,11.0,f +17919,,Nicaragua,1.0,f +10351,98%,El Salvador,15.0,f +20269,100%,,1.0,f +8276,,Zimbabwe,2.0,f +3144,0%,Puerto Rico,1.0,f +29983,100%,Sao Tome and Principe,2.0,f +29983,100%,Sao Tome and Principe,2.0,f +857,,,1.0,f +3703,100%,Gambia,1.0,f +10015,,Bosnia and Herzegovina,8.0,f +38319,100%,Nicaragua,20.0,f +13385,100%,,1.0,f +6495,89%,Tonga,34.0,f +22092,100%,France,2.0,f +32203,100%,Barbados,176.0,f +6495,89%,Tonga,34.0,f +30973,,Finland,1.0,f +49076,97%,Kenya,12.0,t +32145,100%,Lithuania,1.0,f +7070,90%,Zimbabwe,1.0,f +6495,89%,Tonga,34.0,f +7904,,Gambia,1.0,f +48117,98%,Ukraine,41.0,f +30286,100%,Montserrat,39.0,f +6495,89%,Tonga,34.0,f +18396,,Uzbekistan,1.0,f +9395,,Guernsey,4.0,f +48756,100%,Maldives,59.0,f +39306,100%,Tanzania,1.0,f +29696,,China,1.0,f +999,100%,Malta,1.0,t +6495,89%,Tonga,34.0,f +48535,100%,El Salvador,2.0,f +46591,,French Guiana,1.0,f +5975,100%,Guinea,2.0,f +6495,89%,Tonga,34.0,f +6495,89%,Tonga,34.0,f +25747,,Zimbabwe,4.0,f +5714,90%,Pakistan,3.0,f +25002,,China,12.0,f +2416,100%,Guinea,5.0,f +16744,60%,Rwanda,5.0,f +7255,100%,Bouvet Island (Bouvetoya),8.0,t +43175,100%,El Salvador,1.0,f +17413,100%,Isle of Man,2.0,t +4326,100%,,11.0,f +4326,100%,,11.0,f +4326,100%,,11.0,f +4326,100%,,11.0,f +4326,100%,,11.0,f +4326,100%,,11.0,f +4326,100%,,11.0,f +4326,100%,,11.0,f +23261,86%,Jersey,2.0,f +6495,89%,Tonga,34.0,f +962,,Reunion,4.0,t +16352,100%,French Guiana,1.0,t +23202,,Maldives,3.0,f +20694,100%,Sao Tome and Principe,1.0,t +14538,100%,Sao Tome and Principe,1.0,f +26123,,Tunisia,5.0,t +30599,100%,Turks and Caicos Islands,1.0,f +41564,100%,,1.0,t +32202,100%,,1.0,t +45993,100%,Gambia,1.0,f +23674,100%,Slovakia (Slovak Republic),3.0,f +24893,100%,Rwanda,9.0,f +41158,100%,Isle of Man,1.0,f +24893,100%,Rwanda,9.0,f +40784,100%,Niue,3.0,f +31202,90%,Kiribati,107.0,f +12955,100%,Micronesia,1.0,f +1104,,Zimbabwe,1.0,f +10015,,Bosnia and Herzegovina,8.0,f +7255,100%,Bouvet Island (Bouvetoya),8.0,t +24893,100%,Rwanda,9.0,f +5081,100%,Croatia,1.0,f +977,100%,French Guiana,1.0,f +18484,100%,Gambia,108.0,f +13632,100%,Russian Federation,1.0,t +5854,100%,Zimbabwe,1.0,f +25002,,China,12.0,f +26412,,Cape Verde,1.0,f +17399,100%,Uzbekistan,1.0,f +12026,,Chad,2.0,t +32039,,Guinea,5.0,f +325,,Guinea,9.0,f +36048,,,1.0,t +37138,100%,Senegal,2.0,t +25046,100%,Maldives,14.0,f +38376,100%,,1.0,t +14847,,Niue,1.0,f +38675,100%,Slovakia (Slovak Republic),16.0,t +34749,,Senegal,1.0,f +28844,100%,Rwanda,1.0,f +22698,100%,Congo,1.0,f +6495,89%,Tonga,34.0,f +43237,40%,Montserrat,24.0,f +15239,,Chile,1.0,f +10200,100%,Bahrain,2.0,t +37916,,,1.0,f +19941,80%,,2.0,f +968,100%,Portugal,6.0,f +43237,40%,Montserrat,24.0,f +12018,,,1.0,t +41741,100%,Brazil,9.0,t +7264,100%,Philippines,9.0,f +2585,100%,Svalbard & Jan Mayen Islands,20.0,t +20989,100%,Marshall Islands,8.0,f +19242,60%,Lithuania,2.0,t +13215,100%,,1.0,f +9419,70%,Brazil,2.0,f +34080,,Zimbabwe,1.0,t +24513,,Rwanda,2.0,f +17358,100%,,3.0,f +27203,,Bouvet Island (Bouvetoya),13.0,f +48172,100%,Tunisia,1.0,t +46604,,Ghana,3.0,t +45328,97%,Kiribati,10.0,f +44540,67%,,1.0,t +19133,,Rwanda,2.0,f +9959,100%,Tanzania,2.0,f +12003,100%,Uganda,8.0,t +49947,,Andorra,1.0,t +9841,100%,,1.0,f +46155,,Anguilla,2.0,f +30580,97%,Montserrat,12.0,f +11501,90%,,1.0,f +16801,100%,,1.0,f +20723,100%,Turkmenistan,1.0,f +30482,90%,France,1.0,f +23576,100%,,3.0,f +7263,100%,,1.0,f +37778,92%,Tonga,24.0,f +23393,100%,Denmark,2.0,f +6495,89%,Tonga,34.0,f +32203,100%,Barbados,176.0,f +40793,100%,,75.0,t +29701,98%,Vietnam,3.0,f +35980,100%,,2.0,f +22916,,Isle of Man,1.0,f +13047,,Guinea,1.0,f +37607,100%,Nicaragua,1.0,f +46944,,Estonia,1.0,f +45872,33%,,1.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +19368,100%,,1.0,f +19811,90%,Nicaragua,21.0,t +16133,100%,,2.0,f +5834,100%,Marshall Islands,2.0,f +27960,69%,Suriname,6.0,f +28280,100%,,2.0,t +33132,100%,Costa Rica,1.0,t +15214,,Maldives,1.0,t +18484,100%,Gambia,108.0,f +1929,100%,Niue,7.0,t +29520,,Nicaragua,54.0,f +9483,100%,,2.0,f +22837,100%,Gambia,1.0,f +6354,,,1.0,f +33504,,Croatia,1.0,t +42869,,El Salvador,9.0,f +47333,100%,Niue,4.0,f +44862,100%,Djibouti,12.0,f +25222,80%,Kenya,11.0,t +25476,100%,Fiji,11.0,f +35354,100%,Micronesia,1.0,f +33259,,,1.0,f +24829,,China,2.0,t +29102,100%,,1.0,f +3389,100%,Estonia,13.0,f +17820,100%,Montserrat,8.0,f +28322,,,2.0,f +27960,69%,Suriname,6.0,f +44645,100%,Marshall Islands,2.0,t +21894,100%,Zimbabwe,1.0,t +45062,100%,Saint Helena,1.0,f +4758,100%,Uganda,1.0,f +32156,,Guernsey,1.0,f +42000,100%,,3.0,f +30804,93%,Andorra,2.0,f +1230,,Croatia,4.0,f +25211,,Isle of Man,1.0,f +27960,69%,Suriname,6.0,f +39132,,,9.0,f +39132,,,9.0,f +39132,,,9.0,f +39132,,,9.0,f +39132,,,9.0,f +39132,,,9.0,f +39132,,,9.0,f +39132,,,9.0,f +37523,68%,,3.0,f +39132,,,9.0,f +37523,68%,,3.0,f +37523,68%,,3.0,f +27080,85%,Ecuador,5.0,f +900,,,5.0,f +900,,,5.0,f +900,,,5.0,f +76,96%,Togo,7.0,f +900,,,5.0,f +900,,,5.0,f +32021,100%,Uganda,1.0,f +7767,50%,,11.0,f +7767,50%,,11.0,f +7767,50%,,11.0,f +7767,50%,,11.0,f +7767,50%,,11.0,f +16392,100%,Jersey,1.0,f +7767,50%,,11.0,f +7767,50%,,11.0,f +7767,50%,,11.0,f +7767,50%,,11.0,f +30497,100%,Slovakia (Slovak Republic),9.0,t +7767,50%,,11.0,f +7767,50%,,11.0,f +2563,100%,Niger,1.0,f +19543,,Bosnia and Herzegovina,5.0,f +40303,100%,Guinea,82.0,f +48525,,Afghanistan,3.0,f +968,100%,Portugal,6.0,f +42060,100%,Zimbabwe,1.0,t +30764,100%,Slovakia (Slovak Republic),8.0,t +968,100%,Portugal,6.0,f +29591,100%,,4.0,f +8952,100%,Montserrat,4.0,t +26474,100%,Guinea,4.0,f +5901,0%,Lithuania,1.0,f +7110,100%,Kiribati,1.0,f +34148,100%,,1.0,f +45134,70%,Kiribati,3.0,f +15291,100%,,3.0,f +12398,,Malta,1.0,f +22679,100%,Barbados,5.0,f +9388,100%,,2.0,t +48288,100%,Papua New Guinea,1.0,f +46366,100%,Isle of Man,1.0,t +11901,100%,Bouvet Island (Bouvetoya),1.0,f +35226,50%,,1.0,f +41698,100%,Gibraltar,1.0,f +49610,0%,,1.0,f +32556,90%,Estonia,11.0,t +15681,100%,,1.0,f +19228,100%,Svalbard & Jan Mayen Islands,8.0,f +41720,100%,Senegal,1.0,f +44127,100%,Rwanda,1.0,t +26436,100%,,1.0,t +45639,100%,Russian Federation,2.0,f +20153,96%,Reunion,51.0,f +44901,100%,Bouvet Island (Bouvetoya),5.0,f +44901,100%,Bouvet Island (Bouvetoya),5.0,f +7415,100%,Uzbekistan,8.0,f +25460,100%,Maldives,13.0,f +44276,100%,Togo,13.0,t +30006,100%,,1.0,f +5654,,,1.0,f +34522,100%,,1.0,t +38128,,Reunion,2.0,f +8439,97%,Rwanda,17.0,t +32621,,Nauru,1.0,f +33735,,,1.0,f +30435,99%,Cape Verde,41.0,f +3554,100%,El Salvador,1.0,f +43881,,,1.0,f +9802,,Indonesia,38.0,t +50098,,Marshall Islands,2.0,f +76,96%,Togo,7.0,f +76,96%,Togo,7.0,f +15223,100%,Maldives,1.0,f +33983,100%,,1.0,f +47732,100%,,2.0,f +48409,,Estonia,60.0,t +49566,100%,Gambia,3.0,f +34868,100%,,3.0,f +45081,,,2.0,t +37646,100%,Estonia,60.0,f +22112,90%,,1.0,f +28353,,,1.0,f +36281,100%,Maldives,1.0,f +37036,94%,Estonia,9.0,f +29116,100%,El Salvador,19.0,t +9802,,Indonesia,38.0,t +9802,,Indonesia,38.0,t +9802,,Indonesia,38.0,t +9802,,Indonesia,38.0,t +9802,,Indonesia,38.0,t +36157,100%,Tonga,6.0,t +9802,,Indonesia,38.0,t +41842,,Portugal,2.0,f +9802,,Indonesia,38.0,t +37231,100%,Russian Federation,1.0,f +31373,,,1.0,f +49275,,,1.0,f +26259,100%,Kenya,2.0,t +43316,100%,Indonesia,23.0,f +24184,100%,Kiribati,1.0,f +21240,94%,Niger,130.0,f +5163,100%,,1.0,f +6495,89%,Tonga,34.0,f +20165,94%,Ukraine,30.0,f +33970,100%,,1.0,f +21240,94%,Niger,130.0,f +21240,94%,Niger,130.0,f +43316,100%,Indonesia,23.0,f +22077,100%,Mauritania,10.0,f +21240,94%,Niger,130.0,f +20334,99%,Niger,171.0,t +6495,89%,Tonga,34.0,f +22077,100%,Mauritania,10.0,f +27350,100%,,2.0,f +21240,94%,Niger,130.0,f +44169,97%,Portugal,39.0,f +43316,100%,Indonesia,23.0,f +43801,100%,Nauru,1.0,f +4781,,Ghana,2.0,f +6495,89%,Tonga,34.0,f +24071,100%,Indonesia,22.0,f +39843,100%,Switzerland,3.0,t +43834,99%,Uganda,13.0,f +16377,,Gambia,5.0,f +48117,98%,Ukraine,41.0,f +3504,100%,Isle of Man,2.0,t +49388,100%,Vietnam,4.0,t +14546,100%,Gibraltar,1.0,f +40772,80%,Estonia,4.0,f +47633,100%,Reunion,4.0,t +16295,96%,Philippines,5.0,f +22371,71%,Svalbard & Jan Mayen Islands,3.0,f +4856,100%,Philippines,5.0,f +35030,,Kenya,1.0,f +8912,,Lebanon,4.0,f +39726,67%,,1.0,f +38789,100%,,1.0,f +27885,,,1.0,f +3477,100%,Turks and Caicos Islands,1.0,f +3022,,,1.0,f +22376,100%,Vanuatu,6.0,f +19380,,United Kingdom,3.0,t +19380,,United Kingdom,3.0,t +28332,100%,,1.0,f +15095,100%,,1.0,f +14129,100%,,1.0,t +13373,100%,Denmark,2.0,f +6445,100%,Gambia,1.0,f +28372,100%,Indonesia,12.0,f +17101,100%,Croatia,1.0,t +47787,,,1.0,t +33749,93%,Mauritania,7.0,f +16666,100%,Mauritania,1.0,f +5185,0%,Gambia,12.0,f +34877,,,2.0,f +364,,,4.0,f +44537,100%,Tonga,7.0,f +12557,,,1.0,f +1387,,Philippines,4.0,f +33386,100%,Zimbabwe,1.0,f +18696,100%,Brazil,4.0,f +18696,100%,Brazil,4.0,f +36424,63%,Slovakia (Slovak Republic),12.0,f +25460,100%,Maldives,13.0,f +41518,100%,Montserrat,13.0,t +9143,100%,,1.0,f +42472,100%,,1.0,f +5420,100%,Tonga,41.0,f +31652,100%,Kenya,8.0,t +47655,,Sao Tome and Principe,1.0,f +13212,100%,Zimbabwe,12.0,t +29437,67%,,1.0,t +13117,0%,,1.0,f +39109,77%,Ukraine,24.0,t +31008,100%,Uzbekistan,1.0,f +29647,100%,Peru,1305.0,f +36677,100%,Maldives,6.0,f +3753,,Niue,1.0,f +33134,83%,,1.0,f +36677,100%,Maldives,6.0,f +48330,,Anguilla,1.0,t +40303,100%,Guinea,82.0,f +5684,100%,Jersey,1.0,f +20606,100%,Congo,6.0,t +43129,100%,,1.0,f +6232,,Guinea,15.0,t +48755,,Rwanda,1.0,f +22077,100%,Mauritania,10.0,f +29520,,Nicaragua,54.0,f +34091,100%,Indonesia,1.0,t +4065,100%,Reunion,2.0,f +32893,100%,,1.0,f +20263,99%,Maldives,35.0,t +2232,100%,Russian Federation,1.0,f +35328,100%,Tunisia,7.0,f +4267,100%,Senegal,22.0,t +26941,100%,,1.0,f +40303,100%,Guinea,82.0,f +28414,100%,Uzbekistan,22.0,f +13018,100%,Guernsey,4.0,t +18484,100%,Gambia,108.0,f +41600,100%,Somalia,2.0,f +39143,89%,,33.0,f +8612,100%,,1.0,f +16289,,Portugal,3.0,t +50020,100%,Somalia,2.0,f +40303,100%,Guinea,82.0,f +29123,100%,Zimbabwe,16.0,t +14561,100%,Indonesia,1.0,f +7264,100%,Philippines,9.0,f +45411,,,1.0,f +19855,100%,Kiribati,37.0,t +24594,100%,Rwanda,14.0,f +18484,100%,Gambia,108.0,f +30435,99%,Cape Verde,41.0,f +19293,,,1.0,f +4446,100%,Uganda,58.0,f +10962,100%,Sao Tome and Principe,3.0,t +34027,100%,,1.0,f +42493,100%,,2.0,t +48973,100%,Tonga,6.0,f +39143,89%,,33.0,f +39143,89%,,33.0,f +39143,89%,,33.0,f +43828,100%,Malta,1.0,f +7571,33%,Kiribati,2.0,f +31618,100%,Maldives,1.0,f +21446,100%,,2.0,f +50083,,Guinea,1.0,f +10351,98%,El Salvador,15.0,f +22593,100%,,1.0,f +47563,100%,,1.0,t +49105,100%,Malta,3.0,f +44169,97%,Portugal,39.0,f +13598,100%,Uzbekistan,1.0,f +31873,99%,Uzbekistan,22.0,f +28205,,Iraq,22.0,f +18364,100%,Russian Federation,1.0,f +5338,,,1.0,f +29081,98%,Uzbekistan,18.0,f +4603,100%,Nicaragua,2.0,f +7002,100%,Tanzania,1.0,f +18139,100%,,3.0,f +7784,,Chad,1.0,t +19414,100%,Isle of Man,1.0,f +37299,,Estonia,2.0,f +36288,100%,Marshall Islands,1.0,f +9516,99%,Pakistan,45.0,t +29081,98%,Uzbekistan,18.0,f +21047,,Denmark,1.0,f +41600,100%,Somalia,2.0,f +32345,90%,Andorra,1.0,t +29081,98%,Uzbekistan,18.0,f +46080,,Chad,1.0,f +29081,98%,Uzbekistan,18.0,f +41261,25%,American Samoa,1.0,f +10275,100%,Cook Islands,1.0,f +4446,100%,Uganda,58.0,f +17501,100%,Cape Verde,1.0,f +9516,99%,Pakistan,45.0,t +18139,100%,,3.0,f +1154,,Sao Tome and Principe,1.0,f +34356,100%,Palestinian Territory,2.0,t +40574,92%,Lithuania,1.0,f +34981,,Turks and Caicos Islands,3.0,f +185,100%,,1.0,f +25202,100%,Cuba,3.0,f +39111,,Gibraltar,1.0,f +4130,,Maldives,7.0,f +4852,,Rwanda,1.0,f +15454,100%,Denmark,1.0,f +19227,33%,,1.0,f +19442,100%,Kenya,3.0,f +43843,100%,Nicaragua,1.0,f +9226,,Mauritania,5.0,f +28958,100%,Malta,2.0,f +15292,,Barbados,4.0,t +34981,,Turks and Caicos Islands,3.0,f +15177,100%,Turkmenistan,1.0,f +15995,100%,Papua New Guinea,1.0,t +26219,100%,Zimbabwe,2.0,f +10764,100%,Guinea,1.0,f +37661,,,1.0,f +33749,93%,Mauritania,7.0,f +44109,100%,United Kingdom,20.0,f +25934,100%,Estonia,7.0,f +31241,100%,,1.0,t +18696,100%,Brazil,4.0,f +40010,100%,Guinea,2.0,t +25858,50%,Faroe Islands,1.0,t +18696,100%,Brazil,4.0,f +44586,85%,Ukraine,13.0,f +29718,100%,Philippines,6.0,t +12793,100%,,1.0,f +29718,100%,Philippines,6.0,t +43450,,Isle of Man,1.0,f +44169,97%,Portugal,39.0,f +7955,,,1.0,f +41987,100%,Malta,2.0,t +17216,100%,Ecuador,2.0,t +27937,,,4.0,f +20402,100%,Senegal,4.0,f +28958,100%,Malta,2.0,f +20789,98%,Sao Tome and Principe,13.0,f +19111,100%,Isle of Man,2.0,f +26194,,,1.0,t +1855,57%,Suriname,1.0,t +46320,100%,Marshall Islands,1.0,f +27937,,,4.0,f +23989,100%,Russian Federation,3.0,t +32010,100%,Sao Tome and Principe,1.0,t +11758,,,2.0,t +21162,90%,,1.0,f +37753,100%,Togo,2.0,f +39377,100%,Ukraine,11.0,t +7222,100%,,2.0,f +27937,,,4.0,f +15759,,Tonga,4.0,t +34015,91%,Senegal,1.0,f +10682,100%,Isle of Man,1.0,f +49168,,Kenya,2.0,t +3735,100%,,1.0,t +48338,100%,Maldives,4.0,t +21861,100%,Cuba,2.0,f +40893,100%,Nauru,3.0,f +15252,100%,,4.0,f +10686,86%,Tonga,21.0,f +12244,100%,Djibouti,1.0,f +162,100%,Papua New Guinea,2.0,f +36119,62%,Isle of Man,1.0,t +11019,100%,,1.0,f +35328,100%,Tunisia,7.0,f +21176,75%,Kenya,2.0,t +35328,100%,Tunisia,7.0,f +16289,,Portugal,3.0,t +8781,,,1.0,f +38301,90%,Spain,2.0,f +29751,100%,Marshall Islands,1.0,f +12408,100%,Chad,1.0,f +33396,,Chile,1.0,t +26465,100%,,1.0,f +11758,,,2.0,t +10567,100%,,1.0,f +19214,100%,Senegal,55.0,f +21632,100%,Wallis and Futuna,2.0,f +42775,,Rwanda,2.0,t +17588,100%,Ukraine,6.0,t +3838,100%,Monaco,2.0,f +39874,100%,Afghanistan,1.0,f +1125,100%,Kenya,1.0,t +17938,100%,Montserrat,4.0,f +43011,100%,Wallis and Futuna,6.0,f +48453,,,1.0,f +14720,100%,Korea,2.0,f +37829,100%,Papua New Guinea,1.0,f +18868,100%,Togo,4.0,f +33088,100%,,1.0,f +1824,100%,,4.0,t +13628,100%,,1.0,f +48710,80%,Libyan Arab Jamahiriya,1.0,f +13369,100%,Montserrat,2.0,f +10294,100%,Puerto Rico,1.0,f +35922,100%,Switzerland,5.0,t +39715,100%,Guinea,2.0,f +27053,,Sao Tome and Principe,1.0,t +9630,100%,,13.0,f +9630,100%,,13.0,f +15795,,,1.0,f +10397,100%,Guernsey,3.0,f +36421,100%,Lebanon,4.0,t +9630,100%,,13.0,f +9630,100%,,13.0,f +10397,100%,Guernsey,3.0,f +43659,98%,Maldives,14.0,f +9630,100%,,13.0,f +5548,,,1.0,t +8490,100%,Andorra,1.0,f +31041,96%,Ecuador,35.0,f +31652,100%,Kenya,8.0,t +31033,100%,Svalbard & Jan Mayen Islands,1.0,f +48277,100%,Rwanda,4.0,f +41664,100%,Zimbabwe,1.0,f +7312,100%,,2.0,f +31594,100%,Philippines,19.0,t +17792,,Niue,1.0,f +39829,100%,,1.0,f +13996,93%,Brazil,1.0,f +43659,98%,Maldives,14.0,f +10346,100%,Barbados,1.0,t +19716,100%,,3.0,t +2193,98%,,7.0,f +47829,75%,,1.0,t +34059,100%,,2.0,f +32869,100%,Monaco,1.0,t +7312,100%,,2.0,f +2193,98%,,7.0,f +9802,,Indonesia,38.0,t +12203,100%,Niue,1.0,f +29647,100%,Peru,1305.0,f +34676,100%,,4.0,t +29647,100%,Peru,1305.0,f +25861,100%,France,1.0,f +27960,69%,Suriname,6.0,f +18484,100%,Gambia,108.0,f +36783,100%,Guinea,1.0,f +31017,,,1.0,f +13101,100%,Jersey,1.0,t +15140,100%,Isle of Man,2.0,f +2999,,,1.0,f +32664,100%,Congo,4.0,f +7639,,Tonga,5.0,f +4725,,,1.0,f +34288,100%,Gibraltar,1.0,f +27268,100%,,1.0,f +41856,100%,Maldives,13.0,t +14241,100%,,1.0,t +11867,90%,,1.0,f +17812,,Niger,1.0,f +10600,100%,Zimbabwe,1.0,f +27960,69%,Suriname,6.0,f +8807,100%,Marshall Islands,2.0,t +7381,100%,Micronesia,1.0,f +17723,100%,Nicaragua,1.0,f +38293,90%,,1.0,f +26794,100%,Lithuania,1.0,f +150,,Marshall Islands,2.0,f +49121,100%,Mauritania,1.0,f +29520,,Nicaragua,54.0,f +5135,100%,Niue,1.0,f +12247,100%,Maldives,33.0,f +25002,,China,12.0,f +12247,100%,Maldives,33.0,f +3317,100%,Uzbekistan,1.0,f +12247,100%,Maldives,33.0,f +260,,,1.0,t +9421,100%,,5.0,f +12247,100%,Maldives,33.0,f +45501,100%,Kiribati,7.0,f +17230,,French Guiana,1.0,f +43777,100%,Denmark,18.0,f +1957,100%,,1.0,f +19703,100%,,1.0,f +33619,100%,Sao Tome and Principe,1.0,f +24391,,Lebanon,1.0,t +18975,75%,,1.0,f +43286,,Fiji,8.0,t +25429,93%,Zimbabwe,3.0,f +12098,,Isle of Man,1.0,f +18915,,Aruba,2.0,f +8747,,Maldives,1.0,f +45561,,,1.0,f +47390,100%,Svalbard & Jan Mayen Islands,1.0,t +15078,,Vietnam,8.0,f +40239,,Lebanon,1.0,t +12254,100%,Marshall Islands,1.0,f +14112,,Bouvet Island (Bouvetoya),1.0,f +41082,100%,Senegal,3.0,f +10351,98%,El Salvador,15.0,f +41082,100%,Senegal,3.0,f +5039,100%,Djibouti,1.0,f +31416,100%,,2.0,f +49615,100%,,1.0,t +15495,100%,Marshall Islands,1.0,f +34972,,Greenland,4.0,f +9848,100%,Malawi,1.0,t +37847,,Kiribati,1.0,f +455,100%,Uganda,5.0,f +8154,100%,,4.0,f +45456,,Brazil,1.0,f +13343,100%,France,3.0,f +3241,90%,Sao Tome and Principe,1.0,t +8674,,,1.0,f +27937,,,4.0,f +1982,100%,,2.0,t +29520,,Nicaragua,54.0,f +39143,89%,,33.0,f +10716,100%,Bosnia and Herzegovina,1.0,f +10351,98%,El Salvador,15.0,f +1054,100%,Guinea,20.0,f +22117,100%,Tonga,1.0,f +42129,,Chile,1.0,t +3922,100%,Maldives,8.0,t +5615,100%,Guinea,5.0,f +14124,100%,,2.0,t +26474,100%,Guinea,4.0,f +14699,67%,Turkmenistan,1.0,t +18130,,Kenya,1.0,f +47627,100%,Uzbekistan,1.0,t +40303,100%,Guinea,82.0,f +44006,100%,Russian Federation,1.0,f +33098,,Congo,1.0,f +27493,,,1.0,f +24071,100%,Indonesia,22.0,f +3427,,Monaco,1.0,f +48092,100%,Tonga,5.0,f +29520,,Nicaragua,54.0,f +26605,,Slovakia (Slovak Republic),2.0,f +19091,95%,Cook Islands,18.0,t +1054,100%,Guinea,20.0,f +43321,100%,France,40.0,f +5265,100%,Croatia,1.0,f +24610,90%,,1.0,f +27922,100%,Wallis and Futuna,1.0,t +25429,93%,Zimbabwe,3.0,f +29665,93%,,3.0,f +4478,100%,,2.0,f +24234,,Micronesia,1.0,t +33669,100%,Malta,2.0,t +25747,,Zimbabwe,4.0,f +47122,,,1.0,f +30286,100%,Montserrat,39.0,f +29520,,Nicaragua,54.0,f +5481,,El Salvador,1.0,t +1808,,Chad,2.0,t +38120,100%,Russian Federation,4.0,t +9802,,Indonesia,38.0,t +544,,Afghanistan,1.0,f +12950,100%,,3.0,f +50025,40%,Bahrain,1.0,f +22331,99%,Rwanda,50.0,t +33886,,Gambia,9.0,t +38160,25%,Nicaragua,1.0,f +10732,,Uganda,5.0,f +20423,67%,Philippines,3.0,f +22331,99%,Rwanda,50.0,t +43359,100%,Lithuania,2.0,f +43359,100%,Lithuania,2.0,f +7756,70%,Isle of Man,2.0,t +11195,100%,Marshall Islands,1.0,f +34740,100%,Peru,1.0,f +4267,100%,Senegal,22.0,t +1054,100%,Guinea,20.0,f +5420,100%,Tonga,41.0,f +40303,100%,Guinea,82.0,f +9383,100%,Sao Tome and Principe,1.0,f +38698,100%,France,2.0,t +1207,100%,Nicaragua,7.0,f +14568,80%,,2.0,f +22036,100%,Mauritania,1.0,t +22596,90%,Russian Federation,8.0,f +28414,100%,Uzbekistan,22.0,f +40689,100%,Cuba,23.0,f +24071,100%,Indonesia,22.0,f +32243,,Nicaragua,1.0,f +11452,,Sao Tome and Principe,1.0,f +47894,100%,Turks and Caicos Islands,3.0,f +37167,,Nicaragua,2.0,f +39283,100%,Uganda,13.0,f +8814,80%,,1.0,f +756,100%,Micronesia,1.0,f +43072,100%,Jersey,1.0,f +16165,,France,3.0,f +28810,50%,Vanuatu,1.0,f +23389,100%,Niue,1.0,f +37778,92%,Tonga,24.0,f +8034,100%,Uganda,2.0,f +22251,100%,Gambia,11.0,f +12950,100%,,3.0,f +34562,99%,Tonga,9.0,f +7778,100%,Mauritania,7.0,t +47824,,Chad,1.0,t +37778,92%,Tonga,24.0,f +34852,,Niue,10.0,t +29520,,Nicaragua,54.0,f +28647,70%,French Guiana,2.0,t +781,,Nicaragua,1.0,t +22293,90%,Mauritania,2.0,t +46669,86%,Brazil,11.0,f +3790,100%,Netherlands,16.0,f +4660,,Gambia,1.0,f +7696,97%,Russian Federation,7.0,t +42715,100%,Niue,6.0,t +44654,,Maldives,3.0,f +10438,95%,,1.0,t +1054,100%,Guinea,20.0,f +41738,,Jersey,1.0,f +11071,90%,,2.0,f +20329,100%,Reunion,21.0,f +42331,90%,Kiribati,1.0,f +34357,100%,Montserrat,3.0,f +29520,,Nicaragua,54.0,f +18139,100%,,3.0,f +28343,100%,Costa Rica,1.0,f +46822,98%,,12.0,f +8409,98%,Maldives,9.0,f +43577,100%,United Kingdom,1.0,t +12901,,Lebanon,1.0,f +38449,,Ghana,1.0,f +13288,90%,Jersey,3.0,f +40421,96%,Jersey,29.0,t +10202,89%,Nicaragua,10.0,f +1054,100%,Guinea,20.0,f +29758,,Micronesia,2.0,f +15843,100%,Slovakia (Slovak Republic),18.0,f +47334,,Isle of Man,1.0,f +20153,96%,Reunion,51.0,f +43424,,Russian Federation,2.0,f +22371,71%,Svalbard & Jan Mayen Islands,3.0,f +18242,,Bouvet Island (Bouvetoya),12.0,f +20165,94%,Ukraine,30.0,f +20153,96%,Reunion,51.0,f +21283,100%,Kenya,2.0,f +29438,,,1.0,t +18242,,Bouvet Island (Bouvetoya),12.0,f +37735,100%,Uganda,13.0,t +33008,,Lebanon,1.0,f +25460,100%,Maldives,13.0,f +18242,,Bouvet Island (Bouvetoya),12.0,f +1328,,Kenya,2.0,f +34382,100%,Micronesia,2.0,f +18242,,Bouvet Island (Bouvetoya),12.0,f +45487,100%,,1.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +9836,100%,Mauritania,2.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +3469,0%,Faroe Islands,1.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +15368,,,85.0,f +1146,95%,French Polynesia,9.0,f +11330,,,1.0,f +40555,100%,,1.0,t +42306,,United Kingdom,1.0,t +1534,80%,Uzbekistan,3.0,t +39283,100%,Uganda,13.0,f +30025,,,1.0,t +14109,100%,Indonesia,2.0,t +32481,100%,Uzbekistan,1.0,t +5615,100%,Guinea,5.0,f +13553,93%,Vietnam,5.0,f +8355,87%,Togo,16.0,f +39271,90%,Maldives,2.0,f +16520,100%,Marshall Islands,22.0,f +7918,,Togo,2.0,f +14714,100%,,3.0,t +595,100%,Somalia,1.0,t +21477,100%,,1.0,f +45521,100%,Isle of Man,1.0,f +5759,100%,,1.0,f +35105,100%,Gambia,4.0,f +38656,100%,Mauritania,8.0,f +42370,100%,Marshall Islands,6.0,f +22755,,,8.0,t +38656,100%,Mauritania,8.0,f +17681,100%,,1.0,t +2919,100%,Cape Verde,2.0,f +28254,77%,,2.0,t +14319,,Afghanistan,1.0,f +35806,,Niue,3.0,f +4217,,Kenya,52.0,f +24033,100%,Uganda,45.0,f +37742,100%,,1.0,f +38073,100%,Bahrain,1.0,f +29647,100%,Peru,1305.0,f +6838,96%,Spain,59.0,t +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +40971,97%,Bouvet Island (Bouvetoya),13.0,f +19317,,Russian Federation,1.0,f +25581,,Turkmenistan,1.0,f +16651,100%,Guinea,21.0,f +8355,87%,Togo,16.0,f +34671,100%,Montserrat,3.0,f +12982,100%,,1.0,f +34089,100%,Chad,2.0,f +42751,,Russian Federation,1.0,f +35813,100%,Kiribati,1.0,f +18484,100%,Gambia,108.0,f +24594,100%,Rwanda,14.0,f +42014,69%,China,17.0,f +24594,100%,Rwanda,14.0,f +40364,100%,Tonga,25.0,f +2755,100%,Finland,1.0,f +34089,100%,Chad,2.0,f +16651,100%,Guinea,21.0,f +2845,,Kiribati,9.0,f +48409,,Estonia,60.0,t +36945,100%,Mauritania,1.0,f +5881,100%,Kiribati,2.0,f +2845,,Kiribati,9.0,f +42014,69%,China,17.0,f +2845,,Kiribati,9.0,f +16016,100%,Finland,1.0,f +48409,,Estonia,60.0,t +45029,100%,Maldives,1.0,f +8409,98%,Maldives,9.0,f +36206,86%,Russian Federation,10.0,f +37646,100%,Estonia,60.0,f +48554,100%,Gibraltar,1.0,f +7393,100%,Holy See (Vatican City State),2.0,t +12410,100%,Uzbekistan,4.0,t +6223,100%,Marshall Islands,12.0,f +14514,,China,80.0,t +6223,100%,Marshall Islands,12.0,f +10042,,Indonesia,21.0,f +25046,100%,Maldives,14.0,f +16935,0%,Anguilla,2.0,f +7688,100%,,1.0,t +34042,100%,Marshall Islands,37.0,f +37778,92%,Tonga,24.0,f +35160,100%,Papua New Guinea,1.0,f +26914,50%,Anguilla,1.0,f +19879,99%,Guinea,19.0,f +9427,100%,Marshall Islands,3.0,f +4267,100%,Senegal,22.0,t +5591,99%,Indonesia,16.0,t +16651,100%,Guinea,21.0,f +14396,70%,Isle of Man,2.0,f +37858,92%,Anguilla,7.0,f +12410,100%,Uzbekistan,4.0,t +41493,100%,Gambia,5.0,f +19879,99%,Guinea,19.0,f +849,,Costa Rica,1.0,f +41450,33%,,1.0,f +10450,70%,Cape Verde,4.0,t +19933,,Guernsey,1.0,f +21183,,Malawi,1.0,f +11779,100%,Guinea,1.0,f +20514,100%,,1.0,f +23034,99%,Monaco,54.0,f +42125,97%,Tonga,4.0,f +19655,100%,Tonga,13.0,t +42215,,Bosnia and Herzegovina,5.0,f +33345,100%,Kenya,2.0,f +50051,100%,Netherlands,5.0,t +24594,100%,Rwanda,14.0,f +25738,90%,,1.0,f +26915,100%,France,2.0,t +13285,100%,United Kingdom,1.0,f +40947,100%,French Guiana,2.0,t +36913,,,1.0,f +24478,,,1.0,t +15132,100%,Jersey,1.0,t +25668,100%,Jersey,12.0,t +14368,70%,,1.0,f +39328,,Sao Tome and Principe,3.0,t +17588,100%,Ukraine,6.0,t +19655,100%,Tonga,13.0,t +48426,,Denmark,1.0,f +1904,,Gambia,2.0,f +3349,,Mauritania,1.0,f +48612,100%,,1.0,f +23469,100%,Nicaragua,116.0,f +12789,100%,Denmark,1.0,f +19879,99%,Guinea,19.0,f +14358,100%,Maldives,9.0,f +16009,100%,,1.0,f +48340,,Turkmenistan,1.0,t +42326,80%,Papua New Guinea,10.0,t +47732,100%,,2.0,f +11941,,Bosnia and Herzegovina,1.0,f +24923,,,1.0,t +31922,100%,Nicaragua,1.0,f +42164,100%,,6.0,f +16970,100%,,1.0,f +3906,,Anguilla,1.0,f +6436,100%,,1.0,f +18454,100%,Nicaragua,5.0,t +34587,,Isle of Man,22.0,t +13288,90%,Jersey,3.0,f +14234,100%,,1.0,f +47069,100%,France,1.0,f +12957,100%,Lithuania,2.0,f +19879,99%,Guinea,19.0,f +44169,97%,Portugal,39.0,f +1768,,Malawi,2.0,t +32203,100%,Barbados,176.0,f +49874,100%,Venezuela,1.0,f +42164,100%,,6.0,f +21709,100%,Maldives,2.0,f +13033,80%,Moldova,3.0,t +46627,,Isle of Man,2.0,t +30286,100%,Montserrat,39.0,f +46071,89%,Niue,2.0,f +42164,100%,,6.0,f +14157,20%,Congo,3.0,f +14514,,China,80.0,t +49107,100%,Lebanon,1.0,f +4485,95%,China,7.0,t +28446,100%,Holy See (Vatican City State),1.0,t +42164,100%,,6.0,f +25148,50%,Uzbekistan,1.0,t +1543,100%,Tonga,1.0,f +29520,,Nicaragua,54.0,f +21199,90%,,1.0,f +46866,100%,Kiribati,3.0,t +48409,,Estonia,60.0,t +19275,100%,Guinea,1.0,t +25266,100%,Lebanon,1.0,f +48409,,Estonia,60.0,t +14514,,China,80.0,t +46627,,Isle of Man,2.0,t +41201,90%,Mauritania,1.0,f +15292,,Barbados,4.0,t +45064,98%,Anguilla,15.0,f +20334,99%,Niger,171.0,t +20334,99%,Niger,171.0,t +18484,100%,Gambia,108.0,f +20060,,Guernsey,5.0,t +39078,100%,Isle of Man,2.0,f +30811,90%,Somalia,1.0,f +47333,100%,Niue,4.0,f +42392,100%,Greenland,4.0,f +7872,100%,Estonia,1.0,f +15222,,Monaco,1.0,f +36605,,Sao Tome and Principe,4.0,t +25792,75%,,1.0,f +36605,,Sao Tome and Principe,4.0,t +27376,,,1.0,f +5966,100%,Zimbabwe,1.0,f +16346,100%,Montserrat,2.0,f +44404,,Guinea,1.0,f +12392,100%,Vanuatu,1.0,f +909,100%,Croatia,18.0,t +9714,,Finland,1.0,f +2652,100%,,1.0,f +909,100%,Croatia,18.0,t +11792,100%,,3.0,f +909,100%,Croatia,18.0,t +32503,100%,Kiribati,1.0,f +909,100%,Croatia,18.0,t +6333,,,1.0,f +15078,,Vietnam,8.0,f +17662,100%,Estonia,2.0,f +18868,100%,Togo,4.0,f +18868,100%,Togo,4.0,f +32458,92%,Vietnam,4.0,f +17588,100%,Ukraine,6.0,t +17588,100%,Ukraine,6.0,t +17588,100%,Ukraine,6.0,t +28828,100%,Isle of Man,198.0,t +48248,88%,Vanuatu,1.0,f +40898,,San Marino,1.0,f +28828,100%,Isle of Man,198.0,t +37166,56%,,1.0,t +3254,,Tonga,16.0,t +43695,100%,Malta,2.0,f +4685,43%,Fiji,1.0,f +26559,,Guinea,4.0,t +2930,100%,Niue,2.0,f +28443,,,1.0,f +29103,90%,Niue,1.0,t +18933,75%,Venezuela,10.0,f +37858,92%,Anguilla,7.0,f +17040,,,1.0,f +23642,100%,Holy See (Vatican City State),5.0,f +7183,50%,,3.0,f +14198,100%,Mexico,1.0,f +10062,,Vanuatu,1.0,f +38830,95%,Niue,1.0,t +37337,100%,Niue,2.0,t +48929,100%,Niue,4.0,f +22636,100%,Niue,2.0,t +33836,100%,Kenya,4.0,f +10077,100%,Brazil,3.0,f +33737,,,1.0,f +42485,100%,Greenland,3.0,f +15245,100%,,11.0,f +40915,100%,Isle of Man,1.0,f +45671,,Bosnia and Herzegovina,1.0,t +10902,100%,Wallis and Futuna,6.0,f +15616,83%,Tonga,1.0,f +26559,,Guinea,4.0,t +41869,,Niue,4.0,t +31737,100%,Cuba,1.0,f +48633,75%,Lebanon,2.0,f +17523,100%,,1.0,f +19095,100%,Madagascar,3.0,f +12564,94%,Kiribati,2.0,f +48145,100%,,1.0,f +48990,100%,Sao Tome and Principe,3.0,f +48990,100%,Sao Tome and Principe,3.0,f +38722,100%,,1.0,f +42485,100%,Greenland,3.0,f +1115,0%,,1.0,f +49594,100%,Uganda,7.0,f +1269,82%,China,2.0,t +31158,99%,Suriname,11.0,f +917,100%,Kiribati,2.0,f +17954,100%,Niue,1.0,f +45716,100%,,1.0,f +24789,100%,Sao Tome and Principe,6.0,f +5569,100%,Suriname,2.0,t +2746,100%,Bosnia and Herzegovina,2.0,t +9069,100%,Sao Tome and Principe,1.0,t +444,,,1.0,t +5569,100%,Suriname,2.0,t +48138,100%,,1.0,f +6488,100%,Marshall Islands,1.0,f +22902,100%,Malta,1.0,f +30283,100%,Brazil,15.0,f +43317,100%,,1.0,f +35124,100%,Holy See (Vatican City State),1.0,t +27528,100%,Gambia,2.0,t +47802,,Niue,1.0,f +4882,,Switzerland,3.0,f +44379,80%,El Salvador,8.0,t +14819,100%,Barbados,3.0,f +30262,100%,Russian Federation,2.0,f +10309,,Niue,1.0,f +30694,75%,,1.0,t +4446,100%,Uganda,58.0,f +26383,100%,Estonia,1.0,f +18558,,Sao Tome and Principe,1.0,f +30435,99%,Cape Verde,41.0,f +46497,100%,Gambia,2.0,t +45519,100%,Puerto Rico,2.0,f +33430,100%,Monaco,2.0,f +17960,,United Kingdom,2.0,f +34365,100%,Ecuador,1.0,t +19184,94%,Barbados,2.0,f +15518,100%,French Guiana,2.0,t +46277,100%,Svalbard & Jan Mayen Islands,1.0,t +40459,,Estonia,1.0,f +13212,100%,Zimbabwe,12.0,t +11022,100%,,1.0,f +38404,0%,Zimbabwe,1.0,f +30662,100%,Guinea,2.0,f +27907,100%,Puerto Rico,21.0,f +46491,,Venezuela,12.0,t +45229,100%,,2.0,f +33377,43%,Vanuatu,1.0,f +42477,90%,Micronesia,2.0,f +8477,100%,Kiribati,1.0,f +5384,90%,,1.0,f +1207,100%,Nicaragua,7.0,f +4316,100%,Micronesia,18.0,f +56,100%,Kiribati,2.0,t +31305,,Kiribati,2.0,f +46674,,Guinea,1.0,f +31305,,Kiribati,2.0,f +31298,96%,,5.0,f +14080,100%,,2.0,f +4920,98%,Estonia,8.0,f +36163,50%,,1.0,t +35709,0%,,1.0,f +13608,,Turks and Caicos Islands,1.0,f +3389,100%,Estonia,13.0,f +38088,83%,,1.0,f +26604,100%,Turkmenistan,1.0,f +48502,100%,Nicaragua,11.0,t +10469,100%,,1.0,f +18386,100%,,2.0,t +40698,100%,Micronesia,3.0,f +28334,100%,,3.0,f +37646,100%,Estonia,60.0,f +45053,100%,Marshall Islands,2.0,f +30435,99%,Cape Verde,41.0,f +15940,100%,Croatia,4.0,t +18484,100%,Gambia,108.0,f +42987,100%,,1.0,t +42292,,Puerto Rico,3.0,f +45514,100%,,1.0,f +28611,100%,Uruguay,1.0,f +10117,,Gambia,1.0,f +12424,100%,Pakistan,2.0,t +21237,100%,,1.0,f +42287,100%,Tonga,1.0,f +10636,100%,Jersey,1.0,f +34486,90%,,5.0,f +18618,100%,Turks and Caicos Islands,1.0,f +21660,,Niue,1.0,f +28828,100%,Isle of Man,198.0,t +9239,100%,Cuba,17.0,f +1054,100%,Guinea,20.0,f +2845,,Kiribati,9.0,f +8789,100%,Micronesia,1.0,f +27887,100%,Malta,2.0,t +20231,100%,Zimbabwe,1.0,f +601,,Cocos (Keeling) Islands,2.0,f +1065,100%,,1.0,f +29520,,Nicaragua,54.0,f +26968,,China,1.0,f +3162,100%,Montserrat,6.0,t +621,90%,Turks and Caicos Islands,2.0,f +2818,,,1.0,t +621,90%,Turks and Caicos Islands,2.0,f +46104,100%,Fiji,2.0,t +30286,100%,Montserrat,39.0,f +10740,100%,Indonesia,1.0,f +29520,,Nicaragua,54.0,f +40303,100%,Guinea,82.0,f +47376,100%,Sao Tome and Principe,1.0,f +18378,100%,Tonga,1.0,t +18000,100%,Slovakia (Slovak Republic),7.0,t +20195,100%,,1.0,f +30286,100%,Montserrat,39.0,f +10874,80%,,1.0,f +2746,100%,Bosnia and Herzegovina,2.0,t +14395,100%,Sao Tome and Principe,1.0,t +31847,87%,Saint Helena,2.0,f +2101,100%,Micronesia,1.0,f +24927,,Mexico,1.0,t +32155,,Uzbekistan,2.0,t +46201,100%,Barbados,1.0,f +10771,100%,Indonesia,1.0,f +27441,100%,Russian Federation,1.0,f +41342,100%,,2.0,f +9688,100%,Slovakia (Slovak Republic),1.0,t +47422,99%,Uzbekistan,30.0,f +33653,,China,1.0,f +47422,99%,Uzbekistan,30.0,f +1379,100%,Papua New Guinea,1.0,f +6015,100%,Russian Federation,1.0,f +6594,100%,Cuba,2.0,t +31723,88%,Marshall Islands,2.0,f +27811,100%,Ukraine,4.0,t +27982,100%,Zimbabwe,1.0,t +46241,100%,Niue,1.0,t +18319,,Saint Helena,2.0,f +33927,100%,Barbados,9.0,f +45328,97%,Kiribati,10.0,f +10042,,Indonesia,21.0,f +28205,,Iraq,22.0,f +6475,100%,,1.0,f +10403,100%,Mauritania,1.0,t +42053,60%,Isle of Man,1.0,f +31051,100%,,1.0,f +33615,100%,Barbados,1.0,f +22395,100%,China,2.0,f +23076,100%,Nicaragua,1.0,f +23695,100%,France,3.0,f +23678,,,1.0,t +40971,97%,Bouvet Island (Bouvetoya),13.0,f +40971,97%,Bouvet Island (Bouvetoya),13.0,f +40971,97%,Bouvet Island (Bouvetoya),13.0,f +31594,100%,Philippines,19.0,t +40971,97%,Bouvet Island (Bouvetoya),13.0,f +40971,97%,Bouvet Island (Bouvetoya),13.0,f +40971,97%,Bouvet Island (Bouvetoya),13.0,f +16027,,Barbados,8.0,t +3254,,Tonga,16.0,t +48409,,Estonia,60.0,t +18484,100%,Gambia,108.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +45028,100%,Malta,1.0,t +1620,,Estonia,1.0,f +9340,100%,Zimbabwe,1.0,f +18024,100%,Monaco,1.0,f +507,,Afghanistan,1.0,f +37787,100%,Barbados,5.0,f +37483,100%,Gibraltar,3.0,f +20334,99%,Niger,171.0,t +38993,100%,Malta,1.0,f +1558,100%,,10.0,f +13753,100%,,2.0,f +34351,100%,Greenland,2.0,f +37372,,Niue,1.0,f +41000,,China,2.0,f +34587,,Isle of Man,22.0,t +18520,83%,,1.0,f +7307,40%,,1.0,f +4649,100%,,1.0,f +40793,100%,,75.0,t +1053,100%,Croatia,1.0,f +37971,100%,United Kingdom,1.0,f +23719,100%,Isle of Man,1.0,f +32203,100%,Barbados,176.0,f +44571,,,1.0,f +30286,100%,Montserrat,39.0,f +16567,100%,Russian Federation,4.0,f +34248,100%,Guinea,1.0,f +45879,,Lebanon,1.0,f +46534,100%,Costa Rica,1.0,t +8885,100%,,1.0,f +19854,89%,Micronesia,1.0,f +9771,100%,Bosnia and Herzegovina,7.0,t +11437,,,1.0,f +19879,99%,Guinea,19.0,f +10683,100%,Tonga,1.0,f +30871,100%,Russian Federation,1.0,t +44045,100%,Sao Tome and Principe,2.0,f +9671,100%,,1.0,t +9771,100%,Bosnia and Herzegovina,7.0,t +19879,99%,Guinea,19.0,f +7183,50%,,3.0,f +41995,100%,Reunion,5.0,f +49678,,Togo,1.0,t +1098,100%,Gibraltar,2.0,f +39168,83%,Tonga,6.0,f +28114,97%,Bouvet Island (Bouvetoya),16.0,f +23417,100%,Slovenia,1.0,f +29377,90%,,2.0,f +18484,100%,Gambia,108.0,f +43791,,Sao Tome and Principe,1.0,t +11984,,,1.0,f +4217,,Kenya,52.0,f +18694,100%,Chad,1.0,t +19103,100%,,1.0,f +29520,,Nicaragua,54.0,f +8091,97%,Cuba,10.0,f +3,,Micronesia,1.0,f +40793,100%,,75.0,t +20923,100%,Svalbard & Jan Mayen Islands,1.0,f +9771,100%,Bosnia and Herzegovina,7.0,t +48452,100%,Tanzania,1.0,f +37880,,Reunion,1.0,f +20882,100%,Barbados,2.0,f +42718,100%,Niue,2.0,f +16770,83%,Tonga,2.0,f +30915,100%,Canada,1.0,f +909,100%,Croatia,18.0,t +31751,100%,Nicaragua,29.0,f +3154,100%,,1.0,f +9674,,El Salvador,1.0,t +909,100%,Croatia,18.0,t +29170,100%,Russian Federation,1.0,f +909,100%,Croatia,18.0,t +1558,100%,,10.0,f +14725,100%,Lebanon,3.0,f +39027,80%,Nicaragua,2.0,f +909,100%,Croatia,18.0,t +36497,100%,Niue,2.0,t +39067,,Pakistan,1.0,t +29718,100%,Philippines,6.0,t +47045,100%,Uganda,2.0,t +44012,100%,Rwanda,1.0,t +42583,100%,Sao Tome and Principe,5.0,f +26370,100%,,4.0,t +28046,100%,Cape Verde,5.0,f +2150,88%,,1.0,f +32375,,China,1.0,f +10041,100%,,1.0,f +21877,100%,Cook Islands,7.0,f +48409,,Estonia,60.0,t +37646,100%,Estonia,60.0,f +10351,98%,El Salvador,15.0,f +25476,100%,Fiji,11.0,f +17330,100%,Gibraltar,1.0,f +48161,100%,Peru,1.0,t +17763,100%,Isle of Man,1.0,f +20732,100%,Russian Federation,1.0,t +28362,100%,Lebanon,1.0,f +44629,100%,Tunisia,1.0,f +18077,100%,Sao Tome and Principe,139.0,f +16520,100%,Marshall Islands,22.0,f +29021,,French Guiana,3.0,t +1558,100%,,10.0,f +10488,100%,Niger,17.0,t +20757,,France,1.0,t +7129,100%,Guinea,4.0,f +9331,100%,Suriname,2.0,f +45328,97%,Kiribati,10.0,f +17444,100%,Malawi,1.0,f +7804,100%,Russian Federation,3.0,f +30130,100%,Togo,1.0,f +21774,100%,France,1.0,f +16651,100%,Guinea,21.0,f +36940,100%,Faroe Islands,1.0,f +35815,97%,Slovakia (Slovak Republic),8.0,t +36693,90%,,3.0,f +20334,99%,Niger,171.0,t +385,100%,,1.0,f +5213,100%,Niue,1.0,f +19149,,,1.0,f +573,100%,Zimbabwe,3.0,f +27972,94%,Brazil,27.0,f +37688,100%,,1.0,f +16651,100%,Guinea,21.0,f +31979,100%,Kenya,10.0,f +41341,100%,Guinea,3.0,t +18950,100%,,1.0,f +47269,100%,El Salvador,1.0,f +41434,100%,,2.0,t +20334,99%,Niger,171.0,t +25405,100%,Brazil,1.0,f +43912,100%,,1.0,f +27226,100%,Congo,10.0,f +18484,100%,Gambia,108.0,f +24143,0%,Estonia,3.0,f +40971,97%,Bouvet Island (Bouvetoya),13.0,f +40971,97%,Bouvet Island (Bouvetoya),13.0,f +18863,90%,Estonia,9.0,f +10711,93%,Uganda,108.0,t +15126,100%,,1.0,f +20263,99%,Maldives,35.0,t +32203,100%,Barbados,176.0,f +34430,100%,Indonesia,3.0,f +42152,,Lithuania,1.0,f +18863,90%,Estonia,9.0,f +29520,,Nicaragua,54.0,f +37036,94%,Estonia,9.0,f +5613,100%,,1.0,f +18863,90%,Estonia,9.0,f +5962,,Maldives,1.0,t +243,100%,Micronesia,2.0,f +5397,,Gambia,1.0,f +9968,100%,Indonesia,1.0,f +18411,100%,,2.0,t +41588,,Brunei Darussalam,2.0,f +22526,100%,,2.0,t +23875,63%,Chad,1.0,f +19599,,Russian Federation,1.0,f +12812,99%,Croatia,32.0,f +39865,83%,,1.0,f +25794,100%,Estonia,2.0,t +48418,98%,Bosnia and Herzegovina,30.0,f +48418,98%,Bosnia and Herzegovina,30.0,f +46646,100%,Gambia,1.0,t +19428,,Rwanda,1.0,t +28828,100%,Isle of Man,198.0,t +31073,,Isle of Man,3.0,f +25932,100%,Zimbabwe,1.0,f +28794,100%,Denmark,1.0,f +6737,100%,Isle of Man,2.0,f +24143,0%,Estonia,3.0,f +5896,100%,China,3.0,t +16645,,,1.0,f +20754,,China,13.0,f +13019,100%,,1.0,f +16162,100%,Svalbard & Jan Mayen Islands,2.0,t +37978,100%,Uzbekistan,2.0,f +37858,92%,Anguilla,7.0,f +21177,100%,Denmark,1.0,f +36168,100%,,2.0,f +2435,,Gambia,1.0,f +4653,,Chad,1.0,t +49591,100%,Turks and Caicos Islands,2.0,f +45232,100%,,3.0,f +33325,,Greenland,4.0,f +37140,,,1.0,f +7655,98%,Gambia,7.0,f +37978,100%,Uzbekistan,2.0,f +47892,100%,,1.0,f +19910,75%,Turkey,2.0,t +19214,100%,Senegal,55.0,f +541,93%,Marshall Islands,17.0,f +38319,100%,Nicaragua,20.0,f +38319,100%,Nicaragua,20.0,f +38319,100%,Nicaragua,20.0,f +10971,,,1.0,t +5179,,,12.0,f +29520,,Nicaragua,54.0,f +46208,100%,Mauritania,1.0,f +20153,96%,Reunion,51.0,f +11952,100%,,1.0,f +12802,100%,Niger,3.0,t +15135,,,2.0,f +25128,100%,Barbados,5.0,t +44500,100%,,1.0,f +38319,100%,Nicaragua,20.0,f +25165,93%,Uzbekistan,7.0,f +48418,98%,Bosnia and Herzegovina,30.0,f +42164,100%,,6.0,f +33487,100%,,1.0,f +28399,,Guinea,4.0,f +21908,100%,Niue,49.0,f +2794,100%,Indonesia,3.0,f +27334,100%,China,16.0,f +49594,100%,Uganda,7.0,f +49594,100%,Uganda,7.0,f +23351,100%,Togo,1.0,f +9802,,Indonesia,38.0,t +47472,100%,Nicaragua,4.0,f +24671,,Ghana,10.0,f +26929,100%,Croatia,2.0,f +15118,,Montserrat,2.0,f +30019,20%,,4.0,f +12137,99%,Sao Tome and Principe,33.0,t +6259,100%,Indonesia,1.0,f +42164,100%,,6.0,f +30019,20%,,4.0,f +28828,100%,Isle of Man,198.0,t +28241,97%,Maldives,10.0,f +30019,20%,,4.0,f +18484,100%,Gambia,108.0,f +2588,,Reunion,1.0,f +28055,100%,Kiribati,1.0,f +16651,100%,Guinea,21.0,f +47452,85%,France,2.0,f +4632,80%,Niue,1.0,t +27009,,Cook Islands,1.0,f +31073,,Isle of Man,3.0,f +45121,100%,Andorra,5.0,t +30019,20%,,4.0,f +14247,,Mexico,4.0,f +37047,97%,United Kingdom,5.0,f +24758,,,1.0,f +14514,,China,80.0,t +24386,100%,Brazil,1.0,f +6726,100%,Tonga,2.0,t +1054,100%,Guinea,20.0,f +10711,93%,Uganda,108.0,t +197,90%,Pakistan,8.0,f +4519,,Mexico,1.0,f +29520,,Nicaragua,54.0,f +14514,,China,80.0,t +36723,89%,Niger,1.0,f +5003,100%,Jersey,8.0,f +20334,99%,Niger,171.0,t +28828,100%,Isle of Man,198.0,t +5756,100%,Philippines,2.0,f +46491,,Venezuela,12.0,t +25002,,China,12.0,f +5420,100%,Tonga,41.0,f +49576,100%,Portugal,1.0,f +37043,100%,Pakistan,11.0,f +11457,90%,Denmark,1.0,t +7903,,Micronesia,1.0,t +5704,,,2.0,f +21735,50%,Isle of Man,1.0,t +11293,100%,Togo,2.0,f +36744,60%,Indonesia,1.0,f +17140,100%,,1.0,f +11803,100%,Chad,1.0,f +2649,,,1.0,f +37238,100%,,1.0,f +726,,Kiribati,1.0,f +30435,99%,Cape Verde,41.0,f +52,100%,,1.0,t +43170,75%,,1.0,f +35247,100%,,1.0,f +28243,100%,Gibraltar,1.0,f +38657,100%,Niue,1.0,f +41361,100%,Puerto Rico,1.0,f +37247,100%,Tanzania,3.0,f +11712,95%,Monaco,4.0,f +28635,78%,Ecuador,1.0,f +35799,,Netherlands,7.0,f +36796,90%,,1.0,t +18785,,,1.0,f +43959,100%,Tunisia,3.0,t +5773,100%,,1.0,f +41493,100%,Gambia,5.0,f +47274,100%,Tonga,48.0,f +47274,100%,Tonga,48.0,f +9239,100%,Cuba,17.0,f +16651,100%,Guinea,21.0,f +39458,100%,Gambia,1.0,t +33369,,,4.0,f +33369,,,4.0,f +33369,,,4.0,f +13404,100%,,1.0,f +38319,100%,Nicaragua,20.0,f +11485,0%,Holy See (Vatican City State),1.0,f +32203,100%,Barbados,176.0,f +14157,20%,Congo,3.0,f +32155,,Uzbekistan,2.0,t +981,100%,Gambia,1.0,t +12965,100%,Vietnam,11.0,t +12137,99%,Sao Tome and Principe,33.0,t +16133,100%,,2.0,f +46988,,Somalia,4.0,t +6181,100%,Zimbabwe,4.0,f +20153,96%,Reunion,51.0,f +33369,,,4.0,f +20153,96%,Reunion,51.0,f +14790,,Niger,1.0,f +20153,96%,Reunion,51.0,f +41434,100%,,2.0,t +9545,100%,,1.0,f +48418,98%,Bosnia and Herzegovina,30.0,f +18312,100%,Guinea,1.0,f +2266,100%,Tonga,10.0,t +40903,100%,,1.0,f +10015,,Bosnia and Herzegovina,8.0,f +35622,,Anguilla,1.0,t +2090,100%,Barbados,1.0,f +1076,100%,Guernsey,1.0,f +11311,,Sao Tome and Principe,1.0,f +14119,,Vanuatu,1.0,f +5973,,Jersey,5.0,f +16275,98%,Maldives,24.0,f +14148,,,1.0,f +36108,,,1.0,f +34171,100%,Anguilla,6.0,f +16651,100%,Guinea,21.0,f +9802,,Indonesia,38.0,t +18484,100%,Gambia,108.0,f +43413,100%,Anguilla,1.0,f +43777,100%,Denmark,18.0,f +14853,,Niue,4.0,f +26616,100%,Isle of Man,10.0,f +27334,100%,China,16.0,f +28961,,Vietnam,3.0,f +9899,90%,Maldives,3.0,f +16275,98%,Maldives,24.0,f +16651,100%,Guinea,21.0,f +4902,80%,Djibouti,3.0,t +35941,,,2.0,f +47402,100%,,2.0,f +21908,100%,Niue,49.0,f +19716,100%,,3.0,t +8229,100%,Indonesia,1.0,f +16277,100%,Nicaragua,1.0,f +24541,90%,Tonga,1.0,f +28316,100%,,2.0,f +49103,80%,Rwanda,5.0,f +8351,100%,Turks and Caicos Islands,2.0,f +9131,100%,Gambia,5.0,f +25304,100%,Zimbabwe,1.0,f +28727,,Monaco,1.0,f +22376,100%,Vanuatu,6.0,f +37582,100%,Cook Islands,3.0,f +9131,100%,Gambia,5.0,f +43509,,,1.0,t +1935,100%,Papua New Guinea,1.0,f +31391,100%,,1.0,f +23469,100%,Nicaragua,116.0,f +16983,,,1.0,f +23469,100%,Nicaragua,116.0,f +43340,100%,Andorra,1.0,f +23611,100%,Pakistan,3.0,t +48627,67%,Puerto Rico,1.0,f +6663,95%,Gambia,5.0,f +48518,100%,,1.0,t +2519,,,1.0,f +10361,100%,,4.0,f +14386,100%,Nicaragua,8.0,f +48418,98%,Bosnia and Herzegovina,30.0,f +32495,100%,Tonga,9.0,f +32968,,,1.0,f +15279,,Afghanistan,22.0,t +15279,,Afghanistan,22.0,t +3254,,Tonga,16.0,t +37744,,Micronesia,1.0,f +48370,,,1.0,t +23588,,Ghana,3.0,f +48038,,Bouvet Island (Bouvetoya),2.0,f +12263,,,3.0,t +17289,,Rwanda,1.0,f +19994,100%,Saint Helena,5.0,f +34284,100%,Cape Verde,2.0,f +33108,100%,Costa Rica,3.0,f +22619,90%,Niue,4.0,f +38972,78%,Tunisia,1.0,f +6960,,Greenland,4.0,f +15255,,Portugal,1.0,f +22619,90%,Niue,4.0,f +28113,100%,,1.0,f +37252,100%,,1.0,f +8842,100%,Slovakia (Slovak Republic),3.0,f +25429,93%,Zimbabwe,3.0,f +22619,90%,Niue,4.0,f +44484,38%,,1.0,f +17589,80%,,1.0,f +19024,,Ghana,1.0,f +35799,,Netherlands,7.0,f +9824,93%,,1.0,f +26425,100%,Cocos (Keeling) Islands,1.0,f +27784,,Montserrat,5.0,f +7831,,,1.0,f +35799,,Netherlands,7.0,f +14814,100%,Kenya,1.0,f +8125,,Monaco,1.0,f +25085,,Niue,1.0,t +551,95%,Rwanda,17.0,f +551,95%,Rwanda,17.0,f +26623,100%,Nicaragua,1.0,t +4319,100%,Uganda,6.0,f +12481,100%,,1.0,t +4701,100%,Senegal,3.0,f +13042,100%,Costa Rica,5.0,f +14853,,Niue,4.0,f +15642,,Brazil,3.0,f +14853,,Niue,4.0,f +19655,100%,Tonga,13.0,t +20048,,El Salvador,5.0,t +26419,100%,Barbados,6.0,f +15762,,Niger,2.0,f +22361,100%,Jersey,2.0,f +46541,100%,Chad,1.0,f +14510,,Mauritania,2.0,f +36616,100%,Guinea,2.0,f +783,100%,Svalbard & Jan Mayen Islands,12.0,t +42615,100%,Kenya,3.0,f +24634,100%,Guinea,20.0,t +20048,,El Salvador,5.0,t +30124,,,2.0,f +31394,,Djibouti,1.0,f +18447,100%,Venezuela,2.0,f +26398,,,1.0,f +33262,90%,Niger,1.0,f +30435,99%,Cape Verde,41.0,f +21275,100%,Marshall Islands,1.0,f +45984,100%,Gambia,1.0,f +1335,100%,Nicaragua,3.0,f +23143,65%,Bouvet Island (Bouvetoya),14.0,f +46955,83%,,2.0,f +10588,100%,Peru,2.0,f +37302,76%,,7.0,f +10588,100%,Peru,2.0,f +43933,100%,Guernsey,2.0,f +9516,99%,Pakistan,45.0,t +35229,88%,Marshall Islands,1.0,f +37302,76%,,7.0,f +32495,100%,Tonga,9.0,f +1558,100%,,10.0,f +32495,100%,Tonga,9.0,f +14131,90%,Niue,2.0,t +37714,100%,Zimbabwe,3.0,f +17192,,,1.0,f +32943,,,1.0,f +18462,100%,Reunion,2.0,t +10691,,Chile,1.0,f +41873,100%,Zimbabwe,2.0,f +753,,,1.0,f +14853,,Niue,4.0,f +7434,100%,,1.0,f +30266,100%,United Kingdom,1.0,f +10917,100%,Micronesia,1.0,f +25112,,Togo,4.0,f +13492,100%,France,2.0,f +8931,,,1.0,t +18816,0%,,1.0,f +11990,,Niue,3.0,f +35941,,,2.0,f +31296,98%,,4.0,f +25152,100%,Gambia,4.0,t +26880,100%,Russian Federation,1.0,f +45928,100%,,2.0,t +1896,,Fiji,1.0,f +36812,,Cook Islands,2.0,f +16489,100%,Russian Federation,42.0,t +49076,97%,Kenya,12.0,t +41873,100%,Zimbabwe,2.0,f +44686,,Sao Tome and Principe,1.0,t +3389,100%,Estonia,13.0,f +26018,,Venezuela,1.0,t +20151,,Marshall Islands,1.0,t +20355,100%,,1.0,t +14203,100%,Turks and Caicos Islands,1.0,f +9801,100%,Niger,1.0,f +41863,100%,Micronesia,2.0,f +411,100%,Cuba,2.0,f +40543,,Indonesia,3.0,f +22352,100%,Gibraltar,1.0,t +17769,,Estonia,1.0,f +37150,100%,,1.0,f +34059,100%,,2.0,f +29314,100%,Mauritania,1.0,f +3272,,,1.0,t +2764,,Togo,1.0,f +47249,,Tonga,2.0,f +8409,98%,Maldives,9.0,f +39732,100%,Niue,1.0,f +30140,100%,Lebanon,4.0,t +22596,90%,Russian Federation,8.0,f +40039,100%,Croatia,1.0,f +22596,90%,Russian Federation,8.0,f +40543,,Indonesia,3.0,f +3233,100%,Monaco,2.0,f +31246,0%,Reunion,1.0,f +1824,100%,,4.0,t +29249,75%,Russian Federation,1.0,f +23568,,Denmark,1.0,f +32527,100%,Tonga,7.0,f +1824,100%,,4.0,t +9575,,Kiribati,1.0,f +46192,,,1.0,t +32527,100%,Tonga,7.0,f +10005,,Turkmenistan,1.0,t +26754,50%,Niue,1.0,f +31235,,Togo,1.0,f +49332,100%,Tonga,3.0,f +13648,,Uzbekistan,1.0,f +42405,67%,Indonesia,3.0,f +49935,100%,Guernsey,1.0,f +36205,,Kiribati,1.0,f +7881,100%,Niue,6.0,t +43082,83%,Isle of Man,1.0,f +39730,,Marshall Islands,3.0,t +3384,90%,Venezuela,4.0,t +38063,56%,,1.0,f +10118,100%,Saint Helena,1.0,f +45439,100%,Barbados,3.0,f +34773,,Kenya,1.0,t +28828,100%,Isle of Man,198.0,t +15393,60%,Gambia,1.0,f +41134,,,1.0,f +36092,80%,Gambia,3.0,t +18183,100%,Netherlands,5.0,t +30500,100%,Zimbabwe,1.0,t +49578,100%,Rwanda,1.0,f +14247,,Mexico,4.0,f +42326,80%,Papua New Guinea,10.0,t +14247,,Mexico,4.0,f +2356,60%,,1.0,f +45688,,Kenya,10.0,f +1969,,Micronesia,1.0,f +13488,100%,,1.0,f +48973,100%,Tonga,6.0,f +14247,,Mexico,4.0,f +34472,,Wallis and Futuna,1.0,t +39476,100%,Rwanda,1.0,f +2800,,Afghanistan,1.0,f +20334,99%,Niger,171.0,t +18187,100%,Turkmenistan,1.0,f +18077,100%,Sao Tome and Principe,139.0,f +20334,99%,Niger,171.0,t +14787,0%,Maldives,1.0,f +11358,100%,Iceland,4.0,t +29596,,Nauru,3.0,f +16489,100%,Russian Federation,42.0,t +2266,100%,Tonga,10.0,t +15990,90%,Portugal,3.0,f +2266,100%,Tonga,10.0,t +1002,100%,,1.0,f +2845,,Kiribati,9.0,f +33741,90%,Russian Federation,1.0,f +38509,,Vanuatu,1.0,f +48474,,,1.0,t +18077,100%,Sao Tome and Principe,139.0,f +16489,100%,Russian Federation,42.0,t +20172,90%,Barbados,1.0,f +36123,100%,Kiribati,5.0,f +18177,93%,Fiji,10.0,f +29520,,Nicaragua,54.0,f +45121,100%,Andorra,5.0,t +42014,69%,China,17.0,f +30216,98%,Maldives,34.0,f +16489,100%,Russian Federation,42.0,t +16489,100%,Russian Federation,42.0,t +36123,100%,Kiribati,5.0,f +45384,100%,Niue,1.0,f +18484,100%,Gambia,108.0,f +16489,100%,Russian Federation,42.0,t +19746,100%,Jersey,2.0,t +40793,100%,,75.0,t +19602,100%,Lithuania,24.0,f +23842,,Palestinian Territory,1.0,f +36123,100%,Kiribati,5.0,f +14312,,Monaco,2.0,f +36123,100%,Kiribati,5.0,f +29520,,Nicaragua,54.0,f +20165,94%,Ukraine,30.0,f +36817,91%,Slovakia (Slovak Republic),6.0,f +46610,100%,,1.0,t +11166,80%,Marshall Islands,1.0,f +25889,,Tonga,1.0,f +21586,,China,1.0,f +36123,100%,Kiribati,5.0,f +32194,,China,1.0,f +11510,,Montserrat,11.0,f +9771,100%,Bosnia and Herzegovina,7.0,t +41266,100%,Papua New Guinea,1.0,f +7467,,Cape Verde,2.0,f +40919,100%,Zimbabwe,2.0,t +10134,100%,Uzbekistan,7.0,t +10134,100%,Uzbekistan,7.0,t +5986,100%,Puerto Rico,1.0,f +5887,100%,Netherlands,2.0,f +31645,100%,Jersey,1.0,f +24268,,Greenland,5.0,f +20153,96%,Reunion,51.0,f +24594,100%,Rwanda,14.0,f +19625,100%,Costa Rica,2.0,f +46126,100%,Zimbabwe,2.0,f +34868,100%,,3.0,f +4643,100%,Guinea,2.0,f +11171,100%,Turks and Caicos Islands,4.0,f +18137,,,1.0,f +39671,60%,Venezuela,1.0,t +48976,100%,Philippines,4.0,f +5525,,,1.0,f +24199,,Lebanon,1.0,t +48976,100%,Philippines,4.0,f +48976,100%,Philippines,4.0,f +5057,100%,Zimbabwe,23.0,t +46387,100%,Russian Federation,1.0,f +30435,99%,Cape Verde,41.0,f +25177,100%,Costa Rica,2.0,t +541,93%,Marshall Islands,17.0,f +31206,,,3.0,f +37921,,Papua New Guinea,1.0,f +1815,,Marshall Islands,2.0,t +8253,,Nicaragua,4.0,f +39246,100%,Niger,1.0,t +42461,100%,,4.0,t +43187,78%,Isle of Man,1.0,f +23928,100%,Jersey,2.0,f +5708,100%,,1.0,t +45358,100%,Micronesia,3.0,t +12226,100%,El Salvador,1.0,f +1632,,Puerto Rico,1.0,f +16368,100%,Faroe Islands,4.0,t +27203,,Bouvet Island (Bouvetoya),13.0,f +22119,,Nicaragua,3.0,t +36327,100%,Guinea,5.0,t +48996,100%,,1.0,f +12509,100%,,1.0,f +30758,100%,,3.0,f +36327,100%,Guinea,5.0,t +5278,100%,Guinea,1.0,t +1865,100%,,2.0,f +12961,100%,,1.0,f +36327,100%,Guinea,5.0,t +10156,100%,Ecuador,1.0,f +43005,100%,Senegal,3.0,f +41709,100%,,12.0,f +8863,100%,Kenya,1.0,f +24902,100%,Uganda,3.0,t +541,93%,Marshall Islands,17.0,f +41709,100%,,12.0,f +26616,100%,Isle of Man,10.0,f +41709,100%,,12.0,f +42965,100%,Uzbekistan,11.0,t +18876,60%,Netherlands,26.0,f +8128,96%,Nauru,4.0,f +16243,,Lebanon,3.0,f +37277,100%,Mauritania,1.0,f +11018,,,1.0,f +37378,83%,Brazil,1.0,f +19265,100%,Denmark,2.0,f +42378,,Nauru,1.0,f +23505,70%,,2.0,t +12229,100%,Isle of Man,1.0,t +8720,100%,Cocos (Keeling) Islands,2.0,f +20334,99%,Niger,171.0,t +20407,100%,,4.0,f +13288,90%,Jersey,3.0,f +41923,100%,Puerto Rico,4.0,f +7871,100%,Jersey,1.0,f +39515,100%,United Kingdom,5.0,t +8395,100%,Andorra,1.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +32167,100%,Lebanon,1.0,f +37666,100%,Ecuador,9.0,f +1335,100%,Nicaragua,3.0,f +9962,100%,Ukraine,3.0,f +40310,100%,Zimbabwe,1.0,f +16001,100%,Gambia,1.0,f +18077,100%,Sao Tome and Principe,139.0,f +23034,99%,Monaco,54.0,f +6314,100%,,2.0,f +16082,100%,Sao Tome and Principe,2.0,f +40303,100%,Guinea,82.0,f +35221,100%,Turks and Caicos Islands,30.0,t +22305,,Kiribati,3.0,f +21348,100%,,1.0,f +6988,88%,United Kingdom,2.0,f +42461,100%,,4.0,t +1081,100%,Russian Federation,1.0,f +42913,,Lebanon,1.0,t +14130,,Russian Federation,10.0,f +31149,100%,Tonga,1.0,f +14130,,Russian Federation,10.0,f +26718,100%,Tunisia,1.0,f +14130,,Russian Federation,10.0,f +14130,,Russian Federation,10.0,f +32912,,,1.0,f +14130,,Russian Federation,10.0,f +14130,,Russian Federation,10.0,f +40793,100%,,75.0,t +5529,80%,,1.0,f +24207,100%,Pakistan,3.0,f +34042,100%,Marshall Islands,37.0,f +34618,38%,Isle of Man,1.0,f +21279,100%,Ghana,1.0,f +18177,93%,Fiji,10.0,f +3025,90%,,1.0,f +35091,100%,Zimbabwe,3.0,f +18177,93%,Fiji,10.0,f +12988,98%,Pakistan,5.0,f +5353,100%,,1.0,f +49953,100%,Niger,1.0,f +42695,,Rwanda,1.0,f +541,93%,Marshall Islands,17.0,f +29520,,Nicaragua,54.0,f +46987,100%,Lebanon,1.0,f +8544,100%,Malawi,3.0,t +5903,100%,Micronesia,1.0,f +19359,,,2.0,t +14801,100%,Uganda,1.0,t +21908,100%,Niue,49.0,f +33248,100%,,4.0,f +43214,100%,Russian Federation,1.0,f +16137,100%,Gibraltar,1.0,f +47552,,China,1.0,f +22119,,Nicaragua,3.0,t +40364,100%,Tonga,25.0,f +45992,,Chad,3.0,f +1166,,Lithuania,9.0,t +21992,100%,,1.0,f +23528,100%,Malawi,1.0,t +49824,,,1.0,f +33248,100%,,4.0,f +22119,,Nicaragua,3.0,t +5302,100%,Nicaragua,6.0,f +6225,90%,Barbados,7.0,f +18952,100%,,1.0,f +1822,100%,Anguilla,1.0,f +22797,100%,,2.0,t +15385,100%,Cook Islands,3.0,f +39990,100%,,1.0,f +49648,100%,Niue,2.0,f +37979,,France,1.0,t +50051,100%,Netherlands,5.0,t +5704,,,2.0,f +31073,,Isle of Man,3.0,f +9503,100%,Guinea,1.0,f +6004,90%,Micronesia,4.0,f +6004,90%,Micronesia,4.0,f +42687,,,1.0,f +28234,100%,Marshall Islands,4.0,f +44698,100%,Isle of Man,3.0,f +4529,,Estonia,1.0,t +18595,100%,Micronesia,1.0,f +12949,100%,Russian Federation,2.0,f +1558,100%,,10.0,f +37735,100%,Uganda,13.0,t +33494,100%,Papua New Guinea,1.0,f +48821,100%,Micronesia,1.0,f +42282,,,1.0,f +25203,100%,Somalia,1.0,f +42434,100%,Tanzania,1.0,f +15078,,Vietnam,8.0,f +1657,,Croatia,13.0,t +3921,98%,,14.0,f +38566,,,1.0,f +1657,,Croatia,13.0,t +47513,100%,,1.0,t +29520,,Nicaragua,54.0,f +27443,100%,Guinea,3.0,f +7209,100%,Uganda,3.0,f +34723,100%,Peru,12.0,f +25668,100%,Jersey,12.0,t +33272,100%,Marshall Islands,1.0,f +38832,97%,,15.0,f +41675,100%,Zimbabwe,1.0,f +40654,100%,,2.0,f +43321,100%,France,40.0,f +12988,98%,Pakistan,5.0,f +32557,100%,Mexico,1.0,f +10809,100%,Bosnia and Herzegovina,4.0,f +47425,,Turks and Caicos Islands,1.0,f +29647,100%,Peru,1305.0,f +9905,,Zimbabwe,1.0,f +12247,100%,Maldives,33.0,f +40513,,Lebanon,1.0,t +16314,100%,Chile,1.0,f +2383,,French Guiana,3.0,t +526,100%,,3.0,f +6054,100%,France,1.0,f +33489,100%,,1.0,t +7391,100%,Russian Federation,1.0,t +21665,100%,Gambia,1.0,f +13804,100%,El Salvador,2.0,f +32542,100%,,2.0,f +39327,100%,France,1.0,f +29423,100%,Niue,3.0,f +12247,100%,Maldives,33.0,f +46285,100%,Turkmenistan,3.0,t +41043,100%,Bosnia and Herzegovina,11.0,f +21775,67%,Puerto Rico,1.0,f +12247,100%,Maldives,33.0,f +35697,100%,,1.0,f +12247,100%,Maldives,33.0,f +14224,90%,Lebanon,1.0,f +11254,90%,Tanzania,1.0,f +24140,,Greenland,2.0,f +12247,100%,Maldives,33.0,f +29733,,Russian Federation,15.0,f +28572,100%,Kiribati,1.0,f +5765,100%,Kiribati,1.0,t +29520,,Nicaragua,54.0,f +45439,100%,Barbados,3.0,f +45559,100%,Lithuania,1.0,f +20441,90%,,1.0,f +16818,98%,Nicaragua,5.0,t +4737,100%,Brunei Darussalam,2.0,f +29520,,Nicaragua,54.0,f +19613,100%,Guinea,1.0,f +29520,,Nicaragua,54.0,f +5471,100%,Isle of Man,2.0,f +1467,100%,Micronesia,3.0,t +4359,100%,Nauru,3.0,t +18484,100%,Gambia,108.0,f +12137,99%,Sao Tome and Principe,33.0,t +50015,100%,,2.0,f +22721,100%,Ecuador,109.0,f +24594,100%,Rwanda,14.0,f +35815,97%,Slovakia (Slovak Republic),8.0,t +2166,,Kenya,4.0,t +35438,100%,Cuba,1.0,t +28772,100%,Niger,15.0,t +39014,33%,Nicaragua,1.0,f +18484,100%,Gambia,108.0,f +32203,100%,Barbados,176.0,f +24729,,Gambia,1.0,f +37302,76%,,7.0,f +14130,,Russian Federation,10.0,f +35500,100%,Niue,1.0,f +12137,99%,Sao Tome and Principe,33.0,t +14334,90%,Tunisia,1.0,t +12068,100%,Malawi,1.0,t +20844,,Tonga,2.0,t +22846,90%,Lebanon,1.0,t +3806,,,11.0,f +36001,100%,Philippines,1.0,t +5314,100%,,1.0,f +30951,100%,Papua New Guinea,1.0,t +5426,100%,Zimbabwe,1.0,t +40324,,Jersey,2.0,t +28193,,Bosnia and Herzegovina,1.0,f +42445,100%,,1.0,f +3806,,,11.0,f +19873,100%,Christmas Island,1.0,f +15357,100%,Kiribati,2.0,f +28869,,Antarctica (the territory South of 60 deg S),172.0,f +17210,100%,Maldives,2.0,f +19937,100%,Zimbabwe,1.0,f +49133,100%,Reunion,3.0,t +30758,100%,,3.0,f +30758,100%,,3.0,f +31298,96%,,5.0,f +31298,96%,,5.0,f +24491,,Russian Federation,1.0,f +4330,94%,Ukraine,60.0,t +15233,100%,Jersey,2.0,t +42461,100%,,4.0,t +32386,97%,Indonesia,19.0,f +5764,100%,,2.0,t +5021,80%,Niue,1.0,f +5459,100%,,1.0,f +23741,100%,Malta,2.0,f +29923,100%,Peru,1.0,f +32203,100%,Barbados,176.0,f +38237,100%,Ghana,1.0,f +17454,90%,Indonesia,2.0,f +45799,,Kiribati,6.0,t +26365,100%,El Salvador,1.0,f +48243,,,1.0,f +28869,,Antarctica (the territory South of 60 deg S),172.0,f +25147,99%,Niger,48.0,f +47471,100%,Lithuania,1.0,f +29520,,Nicaragua,54.0,f +27768,65%,Kiribati,15.0,t +44126,100%,Gambia,1.0,f +27768,65%,Kiribati,15.0,t +45742,,France,1.0,t +28412,100%,Netherlands,1.0,f +29520,,Nicaragua,54.0,f +9118,100%,,1.0,f +27662,100%,Brazil,2.0,f +40303,100%,Guinea,82.0,f +24118,98%,Ghana,21.0,t +13739,20%,Vanuatu,1.0,f +26541,100%,Nicaragua,12.0,f +11157,100%,,2.0,t +24118,98%,Ghana,21.0,t +38537,100%,Russian Federation,1.0,f +24118,98%,Ghana,21.0,t +40793,100%,,75.0,t +28254,77%,,2.0,t +13791,100%,Sao Tome and Principe,1.0,f +31092,,Senegal,19.0,f +20153,96%,Reunion,51.0,f +25944,100%,,1.0,t +22855,100%,French Guiana,1.0,f +3806,,,11.0,f +20153,96%,Reunion,51.0,f +9234,100%,Sao Tome and Principe,1.0,f +24912,100%,Sao Tome and Principe,5.0,f +49060,90%,Sao Tome and Principe,1.0,f +30216,98%,Maldives,34.0,f +17661,100%,,1.0,f +209,0%,,1.0,f +45138,79%,Barbados,14.0,f +26386,100%,Fiji,25.0,t +5174,100%,Lithuania,2.0,f +49404,50%,France,1.0,f +45247,,Sao Tome and Principe,1.0,t +2280,100%,Niue,2.0,f +29520,,Nicaragua,54.0,f +15176,,Vanuatu,10.0,f +49390,100%,Croatia,1.0,f +15176,,Vanuatu,10.0,f +15245,100%,,11.0,f +11394,100%,Brazil,1.0,f +30394,100%,Marshall Islands,1.0,f +25082,64%,Estonia,10.0,f +25082,64%,Estonia,10.0,f +25082,64%,Estonia,10.0,f +25082,64%,Estonia,10.0,f +25082,64%,Estonia,10.0,f +35815,97%,Slovakia (Slovak Republic),8.0,t +25082,64%,Estonia,10.0,f +25082,64%,Estonia,10.0,f +25082,64%,Estonia,10.0,f +39469,100%,Micronesia,11.0,t +35610,62%,Fiji,8.0,f +35610,62%,Fiji,8.0,f +35610,62%,Fiji,8.0,f +35610,62%,Fiji,8.0,f +35610,62%,Fiji,8.0,f +35610,62%,Fiji,8.0,f +4747,100%,Bouvet Island (Bouvetoya),1.0,f +7331,99%,Indonesia,8.0,t +36890,90%,Uzbekistan,1.0,t +39674,100%,Guinea,1.0,t +10019,29%,,1.0,f +4420,100%,,1.0,f +14407,100%,El Salvador,3.0,f +38632,100%,,1.0,f +46881,100%,Andorra,1.0,f +24033,100%,Uganda,45.0,f +40716,100%,,3.0,f +17849,100%,Turkmenistan,1.0,t +35442,,Russian Federation,14.0,f +44877,75%,Tunisia,1.0,t +17478,100%,Marshall Islands,2.0,f +4359,100%,Nauru,3.0,t +47360,100%,,3.0,f +14402,100%,Denmark,1.0,f +17022,100%,Kiribati,1.0,f +41666,,,1.0,f +22376,100%,Vanuatu,6.0,f +7098,100%,Gambia,2.0,f +7098,100%,Gambia,2.0,f +25345,100%,Estonia,2.0,f +47804,,,2.0,f +28808,100%,Brazil,1.0,t +47804,,,2.0,f +42824,100%,Greenland,1.0,f +1657,,Croatia,13.0,t +14733,100%,Zimbabwe,1.0,f +2266,100%,Tonga,10.0,t +22588,100%,,1.0,f +8381,100%,Faroe Islands,1.0,t +31383,100%,Spain,4.0,f +8839,100%,Sao Tome and Principe,1.0,f +9172,100%,Russian Federation,1.0,f +27313,,Sao Tome and Principe,1.0,f +41658,100%,France,1.0,f +28828,100%,Isle of Man,198.0,t +43777,100%,Denmark,18.0,f +3653,100%,,1.0,t +19128,100%,Uzbekistan,12.0,t +40615,,El Salvador,1.0,f +43183,98%,Tonga,12.0,t +31718,100%,France,6.0,f +31938,100%,Venezuela,1.0,f +31143,,Faroe Islands,1.0,f +32043,100%,Libyan Arab Jamahiriya,4.0,f +19879,99%,Guinea,19.0,f +14076,100%,Russian Federation,1.0,f +20334,99%,Niger,171.0,t +22996,100%,,1.0,f +34150,100%,Gibraltar,2.0,f +7958,40%,Chad,1.0,f +23177,100%,Estonia,5.0,f +31718,100%,France,6.0,f +9270,100%,Micronesia,1.0,f +2381,100%,,3.0,f +20153,96%,Reunion,51.0,f +38304,100%,United Kingdom,1.0,t +32272,90%,Turks and Caicos Islands,1.0,f +20153,96%,Reunion,51.0,f +48033,100%,Kiribati,1.0,t +44975,100%,El Salvador,1.0,f +15589,100%,Nicaragua,48.0,f +45807,50%,Malawi,2.0,f +29914,,Guinea,3.0,f +20334,99%,Niger,171.0,t +3192,100%,,1.0,t +27814,100%,Barbados,2.0,t +30092,50%,Indonesia,5.0,f +40315,,,2.0,f +30092,50%,Indonesia,5.0,f +30092,50%,Indonesia,5.0,f +30092,50%,Indonesia,5.0,f +19879,99%,Guinea,19.0,f +30221,50%,Vietnam,5.0,f +30221,50%,Vietnam,5.0,f +30221,50%,Vietnam,5.0,f +30221,50%,Vietnam,5.0,f +45807,50%,Malawi,2.0,f +29520,,Nicaragua,54.0,f +25519,100%,Slovakia (Slovak Republic),9.0,t +12945,100%,Ghana,1.0,t +19403,,Guinea,1.0,f +4074,50%,Isle of Man,17.0,f +4074,50%,Isle of Man,17.0,f +4074,50%,Isle of Man,17.0,f +4074,50%,Isle of Man,17.0,f +4074,50%,Isle of Man,17.0,f +4074,50%,Isle of Man,17.0,f +4074,50%,Isle of Man,17.0,f +4074,50%,Isle of Man,17.0,f +4074,50%,Isle of Man,17.0,f +4074,50%,Isle of Man,17.0,f +4074,50%,Isle of Man,17.0,f +4074,50%,Isle of Man,17.0,f +4074,50%,Isle of Man,17.0,f +4074,50%,Isle of Man,17.0,f +19879,99%,Guinea,19.0,f +17809,100%,Reunion,1.0,f +2732,100%,Turkmenistan,4.0,f +29520,,Nicaragua,54.0,f +29850,,,3.0,f +6386,100%,Niger,6.0,t +37911,100%,Guinea,2.0,f +20153,96%,Reunion,51.0,f +20165,94%,Ukraine,30.0,f +6386,100%,Niger,6.0,t +19879,99%,Guinea,19.0,f +25366,100%,Kiribati,2.0,f +15295,,Lebanon,1.0,f +31718,100%,France,6.0,f +48672,100%,,1.0,f +6386,100%,Niger,6.0,t +40315,,,2.0,f +28869,,Antarctica (the territory South of 60 deg S),172.0,f +1617,100%,Russian Federation,2.0,f +6386,100%,Niger,6.0,t +6663,95%,Gambia,5.0,f +38607,90%,Barbados,1.0,f +17358,100%,,3.0,f +6386,100%,Niger,6.0,t +35499,94%,Andorra,4.0,f +48359,,Niger,2.0,f +20312,100%,Papua New Guinea,2.0,f +13700,100%,Isle of Man,8.0,f +20165,94%,Ukraine,30.0,f +13700,100%,Isle of Man,8.0,f +1617,100%,Russian Federation,2.0,f +10347,100%,Chad,1.0,f +46693,100%,Papua New Guinea,1.0,f +541,93%,Marshall Islands,17.0,f +42990,80%,Uzbekistan,3.0,f +11177,,Kenya,1.0,f +23824,100%,French Guiana,1.0,f +181,100%,Peru,1.0,f +37312,100%,Nicaragua,1.0,f +11455,75%,Kenya,1.0,f +36543,100%,Pakistan,1.0,f +46083,,Guinea,1.0,f +26481,100%,,1.0,f +16275,98%,Maldives,24.0,f +2266,100%,Tonga,10.0,t +15473,90%,Brazil,1.0,f +3112,94%,Indonesia,25.0,f +47633,100%,Reunion,4.0,t +10841,80%,,2.0,f +24055,100%,Pakistan,1.0,f +24071,100%,Indonesia,22.0,f +1146,95%,French Polynesia,9.0,f +12125,100%,Estonia,1.0,f +47272,,Anguilla,1.0,f +22240,,Vanuatu,1.0,f +39658,100%,,4.0,f +776,100%,,1.0,t +14412,,,1.0,f +46099,98%,Uzbekistan,28.0,f +46409,100%,,1.0,f +46099,98%,Uzbekistan,28.0,f +32072,100%,Christmas Island,1.0,t +46099,98%,Uzbekistan,28.0,f +37293,92%,Russian Federation,15.0,f +47680,90%,Netherlands,1.0,f +13065,100%,Jersey,5.0,f +48922,100%,Niue,2.0,f +37060,100%,,1.0,f +26344,100%,El Salvador,1.0,t +46752,100%,,2.0,t +46752,100%,,2.0,t +30435,99%,Cape Verde,41.0,f +26867,80%,Denmark,1.0,t +32386,97%,Indonesia,19.0,f +32386,97%,Indonesia,19.0,f +9516,99%,Pakistan,45.0,t +5955,90%,Russian Federation,1.0,t +43275,,,1.0,f +21723,100%,Niue,2.0,t +41856,100%,Maldives,13.0,t +3953,100%,Tonga,1.0,f +10831,100%,Turkmenistan,3.0,f +14983,100%,,1.0,t +20913,100%,Niue,2.0,t +46750,100%,Denmark,1.0,f +9887,100%,,1.0,f +12006,100%,Uruguay,5.0,f +30469,100%,Marshall Islands,1.0,t +12006,100%,Uruguay,5.0,f +20030,100%,Svalbard & Jan Mayen Islands,1.0,f +28279,100%,Uzbekistan,1.0,f +28512,100%,,1.0,t +43014,80%,Anguilla,2.0,t +16483,100%,,1.0,f +18499,100%,Saint Helena,5.0,f +31120,98%,,7.0,f +31120,98%,,7.0,f +36227,100%,Malta,2.0,f +13316,100%,,1.0,f +16376,100%,Denmark,1.0,t +11801,100%,Zimbabwe,1.0,f +7971,100%,Malta,3.0,f +28646,100%,Kiribati,2.0,f +2393,100%,Pakistan,1.0,f +28115,92%,,1.0,f +35478,100%,United Kingdom,1.0,f +4453,100%,,1.0,f +33031,100%,Zimbabwe,1.0,f +16489,100%,Russian Federation,42.0,t +31120,98%,,7.0,f +49274,100%,,2.0,f +32458,92%,Vietnam,4.0,f +475,,,1.0,f +27567,100%,,1.0,f +28908,75%,Lebanon,1.0,t +31120,98%,,7.0,f +33642,100%,,1.0,f +8554,100%,Denmark,2.0,f +30491,100%,Guernsey,1.0,f +17363,100%,Tonga,1.0,f +28954,100%,Rwanda,4.0,f +43237,40%,Montserrat,24.0,f +34565,100%,Uganda,1.0,t +19265,100%,Denmark,2.0,f +42353,100%,Lithuania,1.0,f +25472,100%,,1.0,f +27030,100%,Cocos (Keeling) Islands,1.0,f +23034,99%,Monaco,54.0,f +31873,99%,Uzbekistan,22.0,f +41394,100%,Isle of Man,1.0,f +35038,100%,,1.0,f +16668,90%,,1.0,f +1600,100%,,2.0,t +25632,100%,Cuba,13.0,f +46880,100%,,1.0,f +11976,,Gambia,2.0,t +36475,100%,Guernsey,4.0,t +6900,70%,,1.0,f +2895,100%,France,1.0,f +25632,100%,Cuba,13.0,f +19667,100%,Monaco,1.0,f +21302,100%,Nicaragua,4.0,f +28623,100%,Russian Federation,1.0,t +33113,100%,,2.0,t +25632,100%,Cuba,13.0,f +38018,100%,Venezuela,1.0,f +40128,100%,Russian Federation,3.0,t +1558,100%,,10.0,f +9290,90%,Philippines,1.0,f +37237,100%,Tunisia,1.0,f +42326,80%,Papua New Guinea,10.0,t +42326,80%,Papua New Guinea,10.0,t +41856,100%,Maldives,13.0,t +20816,100%,Bouvet Island (Bouvetoya),3.0,f +43232,100%,Montserrat,1.0,t +36098,100%,,1.0,f +26788,100%,Kiribati,2.0,t +13371,100%,Russian Federation,1.0,t +12858,90%,Venezuela,2.0,f +48675,100%,Venezuela,2.0,f +42223,100%,Andorra,1.0,f +34280,100%,Niue,1.0,f +16368,100%,Faroe Islands,4.0,t +37293,92%,Russian Federation,15.0,f +36405,100%,,1.0,t +25632,100%,Cuba,13.0,f +35389,,Kiribati,1.0,f +25632,100%,Cuba,13.0,f +28851,100%,Guinea,4.0,t +27321,90%,Micronesia,4.0,f +4112,100%,Isle of Man,1.0,f +6580,100%,Kiribati,5.0,t +1722,100%,,1.0,f +13295,100%,Denmark,4.0,f +34913,,,1.0,f +2367,100%,Kiribati,9.0,f +3806,,,11.0,f +14448,33%,United Kingdom,1.0,f +37281,,,1.0,t +32942,,Pakistan,6.0,f +47046,100%,Lebanon,9.0,f +5032,100%,Isle of Man,1.0,t +2748,100%,Nicaragua,2.0,f +29976,100%,,3.0,f +32767,100%,,1.0,f +46523,90%,Guinea,2.0,t +19879,99%,Guinea,19.0,f +20742,100%,Bosnia and Herzegovina,1.0,f +3649,100%,Russian Federation,1.0,f +41220,100%,Tonga,1.0,f +9345,100%,Bosnia and Herzegovina,4.0,f +1635,0%,Barbados,1.0,f +6838,96%,Spain,59.0,t +24912,100%,Sao Tome and Principe,5.0,f +25956,100%,,1.0,f +6386,100%,Niger,6.0,t +47943,100%,,2.0,f +48601,,,3.0,f +32942,,Pakistan,6.0,f +29520,,Nicaragua,54.0,f +37069,100%,Marshall Islands,1.0,t +18484,100%,Gambia,108.0,f +16434,100%,Maldives,1.0,t +40364,100%,Tonga,25.0,f +30411,56%,Togo,25.0,f +48928,87%,French Guiana,5.0,f +32249,100%,Jersey,1.0,f +7868,100%,Marshall Islands,1.0,f +37062,100%,Isle of Man,2.0,f +19909,100%,Andorra,1.0,f +29150,100%,Chad,1.0,f +20334,99%,Niger,171.0,t +29483,100%,Turkmenistan,1.0,f +38843,100%,Uzbekistan,3.0,f +18484,100%,Gambia,108.0,f +31543,,Nicaragua,1.0,t +25374,100%,Tonga,8.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +6744,100%,,1.0,f +22755,,,8.0,t +14133,100%,Guinea,1.0,f +38723,100%,Bosnia and Herzegovina,1.0,f +14514,,China,80.0,t +29520,,Nicaragua,54.0,f +8253,,Nicaragua,4.0,f +17243,100%,,11.0,f +16275,98%,Maldives,24.0,f +50078,100%,Chad,2.0,t +28376,100%,,1.0,f +28414,100%,Uzbekistan,22.0,f +28689,100%,Tonga,1.0,f +25147,99%,Niger,48.0,f +17560,100%,Kenya,1.0,f +33457,100%,Micronesia,1.0,t +21493,,Uzbekistan,6.0,f +5673,100%,,1.0,f +44367,91%,Brazil,12.0,f +37606,,Reunion,2.0,f +2807,100%,Nicaragua,1.0,f +38656,100%,Mauritania,8.0,f +22319,100%,Tanzania,2.0,f +48903,,Anguilla,1.0,t +541,93%,Marshall Islands,17.0,f +38825,100%,,2.0,f +35743,100%,Palestinian Territory,2.0,t +29906,100%,Fiji,2.0,f +19171,100%,Uzbekistan,1.0,f +12965,100%,Vietnam,11.0,t +3360,100%,United Kingdom,1.0,f +19626,100%,,1.0,f +13087,100%,Gibraltar,1.0,t +1406,0%,Guinea,1.0,t +11816,100%,Ecuador,1.0,f +36996,100%,Micronesia,1.0,t +29161,86%,Marshall Islands,1.0,f +25668,100%,Jersey,12.0,t +6177,100%,Niger,2.0,f +37448,100%,Russian Federation,1.0,t +16489,100%,Russian Federation,42.0,t +38510,100%,,1.0,t +10217,100%,Bosnia and Herzegovina,7.0,t +41057,,,1.0,t +21016,,,1.0,f +21058,100%,Tunisia,1.0,f +48084,,Niger,3.0,f +13070,100%,Fiji,45.0,f +33720,100%,,2.0,f +15325,100%,,1.0,f +41711,100%,Uzbekistan,2.0,f +4124,,,2.0,f +49046,100%,Barbados,1.0,t +30505,100%,Turkmenistan,2.0,f +37516,100%,Guinea,1.0,f +26287,100%,Tonga,2.0,f +3766,100%,Russian Federation,1.0,f +19811,90%,Nicaragua,21.0,t +7727,80%,Svalbard & Jan Mayen Islands,2.0,t +3109,100%,Marshall Islands,1.0,f +29945,100%,Korea,4.0,f +46637,78%,Uganda,1.0,f +29116,100%,El Salvador,19.0,t +29520,,Nicaragua,54.0,f +32500,,Malta,1.0,f +30216,98%,Maldives,34.0,f +42014,69%,China,17.0,f +32928,100%,Lebanon,1.0,t +30216,98%,Maldives,34.0,f +2149,,Maldives,1.0,f +30216,98%,Maldives,34.0,f +40645,100%,Cocos (Keeling) Islands,1.0,f +37858,92%,Anguilla,7.0,f +44174,100%,Guinea,2.0,t +21452,99%,Lebanon,29.0,f +21452,99%,Lebanon,29.0,f +23723,,Isle of Man,2.0,f +42461,100%,,4.0,t +21452,99%,Lebanon,29.0,f +3790,100%,Netherlands,16.0,f +35451,100%,Nicaragua,1.0,f +21452,99%,Lebanon,29.0,f +26636,100%,Barbados,2.0,f +21452,99%,Lebanon,29.0,f +21452,99%,Lebanon,29.0,f +19905,97%,Monaco,8.0,f +21452,99%,Lebanon,29.0,f +38549,100%,Chad,2.0,t +29520,,Nicaragua,54.0,f +21452,99%,Lebanon,29.0,f +19217,98%,Marshall Islands,46.0,f +42443,97%,Tonga,7.0,t +15843,100%,Slovakia (Slovak Republic),18.0,f +3714,100%,Estonia,1.0,f +10795,80%,,1.0,f +21508,100%,China,1.0,f +21452,99%,Lebanon,29.0,f +36446,100%,,1.0,t +31402,100%,Guinea,4.0,f +32007,80%,El Salvador,2.0,f +48455,89%,Uzbekistan,20.0,t +46296,100%,Faroe Islands,1.0,f +38277,100%,Guinea,1.0,f +29520,,Nicaragua,54.0,f +24594,100%,Rwanda,14.0,f +19072,100%,Anguilla,1.0,f +7435,75%,Holy See (Vatican City State),1.0,t +17815,80%,Ghana,3.0,f +17900,100%,Russian Federation,1.0,f +21452,99%,Lebanon,29.0,f +17619,74%,Ghana,14.0,f +854,100%,Venezuela,4.0,t +39298,,Malta,1.0,f +13820,,Bouvet Island (Bouvetoya),1.0,f +19330,100%,Kiribati,1.0,t +24599,,,1.0,t +44316,98%,Uganda,6.0,t +28828,100%,Isle of Man,198.0,t +31191,100%,Niger,1.0,f +22668,,Sao Tome and Principe,1.0,f +7512,100%,,1.0,f +43252,100%,Uzbekistan,1.0,t +22224,100%,Chad,3.0,f +9210,100%,,1.0,f +41546,100%,Mauritania,21.0,f +8355,87%,Togo,16.0,f +8912,,Lebanon,4.0,f +46706,,,1.0,f +2631,100%,Togo,2.0,f +8355,87%,Togo,16.0,f +5494,100%,Sao Tome and Principe,1.0,f +49147,83%,Turkmenistan,2.0,f +15741,100%,Cuba,14.0,f +4266,100%,,1.0,f +24993,67%,Canada,4.0,f +2534,100%,Malta,2.0,f +42340,,,2.0,f +810,100%,Brazil,2.0,f +48380,,Ghana,3.0,f +37735,100%,Uganda,13.0,t +916,100%,,1.0,f +10841,80%,,2.0,f +48396,,Togo,1.0,f +28959,99%,,7.0,f +37735,100%,Uganda,13.0,t +21358,100%,Congo,1.0,f +37735,100%,Uganda,13.0,t +44379,80%,El Salvador,8.0,t +42432,63%,,2.0,f +33165,,,1.0,f +45758,100%,Brazil,1.0,f +5390,100%,Tonga,1.0,f +12161,,,1.0,t +7620,100%,Togo,4.0,f +16814,60%,,1.0,f +36982,100%,Svalbard & Jan Mayen Islands,1.0,t +31019,100%,Ghana,5.0,f +28372,100%,Indonesia,12.0,f +17478,100%,Marshall Islands,2.0,f +6050,100%,,1.0,t +14130,,Russian Federation,10.0,f +42184,100%,Uzbekistan,1.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +41856,100%,Maldives,13.0,t +490,100%,Bosnia and Herzegovina,6.0,f +14130,,Russian Federation,10.0,f +40445,100%,Lebanon,1.0,f +44614,100%,Slovenia,2.0,f +18177,93%,Fiji,10.0,f +41856,100%,Maldives,13.0,t +43866,100%,Lithuania,1.0,f +8069,100%,Kiribati,1.0,f +28959,99%,,7.0,f +15847,,Uganda,13.0,f +15847,,Uganda,13.0,f +22115,100%,France,2.0,f +8585,100%,Uzbekistan,1.0,f +19625,100%,Costa Rica,2.0,f +47528,70%,Denmark,2.0,f +22376,100%,Vanuatu,6.0,f +3049,100%,,1.0,f +30675,67%,Guinea,3.0,f +46822,98%,,12.0,f +31466,100%,Uzbekistan,2.0,f +46822,98%,,12.0,f +26616,100%,Isle of Man,10.0,f +25687,100%,Anguilla,17.0,f +302,100%,Tunisia,20.0,f +30764,100%,Slovakia (Slovak Republic),8.0,t +5420,100%,Tonga,41.0,f +4147,100%,Niger,1.0,f +47667,,,1.0,f +24071,100%,Indonesia,22.0,f +47210,,Papua New Guinea,1.0,f +25687,100%,Anguilla,17.0,f +27155,100%,,1.0,f +32539,90%,,1.0,f +36315,75%,Denmark,1.0,f +27784,,Montserrat,5.0,f +25687,100%,Anguilla,17.0,f +28828,100%,Isle of Man,198.0,t +27130,100%,Croatia,1.0,f +23405,,Sao Tome and Principe,1.0,f +27784,,Montserrat,5.0,f +7268,100%,Denmark,3.0,f +20889,100%,Isle of Man,2.0,f +43362,100%,,1.0,f +24033,100%,Uganda,45.0,f +25687,100%,Anguilla,17.0,f +7275,,,2.0,f +33817,100%,Gibraltar,62.0,f +20399,,,1.0,f +8996,,Montserrat,2.0,t +8276,,Zimbabwe,2.0,f +33817,100%,Gibraltar,62.0,f +45119,,Rwanda,2.0,f +19688,100%,Malawi,2.0,t +18832,100%,Zimbabwe,8.0,f +242,100%,Denmark,1.0,f +24882,100%,Zimbabwe,2.0,t +49481,100%,Micronesia,1.0,f +27841,100%,Jersey,1.0,f +28205,,Iraq,22.0,f +48985,97%,Guinea,8.0,f +46879,100%,Netherlands,1.0,f +4826,100%,France,1.0,f +48418,98%,Bosnia and Herzegovina,30.0,f +37455,,Sao Tome and Principe,2.0,f +7300,100%,,2.0,f +11657,100%,Uzbekistan,1.0,f +25374,100%,Tonga,8.0,f +9298,100%,Pakistan,15.0,f +17343,,,2.0,f +9298,100%,Pakistan,15.0,f +47025,90%,Guinea,2.0,t +49513,100%,Denmark,2.0,f +16770,83%,Tonga,2.0,f +2741,100%,Mauritania,2.0,f +25152,100%,Gambia,4.0,t +31539,100%,,1.0,f +9298,100%,Pakistan,15.0,f +9298,100%,Pakistan,15.0,f +9298,100%,Pakistan,15.0,f +9298,100%,Pakistan,15.0,f +9298,100%,Pakistan,15.0,f +31529,100%,Wallis and Futuna,6.0,f +47402,100%,,2.0,f +35373,100%,Gambia,1.0,f +46099,98%,Uzbekistan,28.0,f +24882,100%,Zimbabwe,2.0,t +27464,,Kiribati,1.0,t +38952,100%,Russian Federation,1.0,f +29377,90%,,2.0,f +40517,90%,Reunion,1.0,f +39168,83%,Tonga,6.0,f +33817,100%,Gibraltar,62.0,f +18077,100%,Sao Tome and Principe,139.0,f +39061,,Sao Tome and Principe,1.0,f +17869,100%,Reunion,5.0,t +21615,100%,Montserrat,4.0,f +20334,99%,Niger,171.0,t +44219,,Gambia,1.0,f +33817,100%,Gibraltar,62.0,f +40012,100%,Mexico,1.0,f +1835,100%,Ecuador,8.0,f +11280,100%,Slovakia (Slovak Republic),10.0,f +12665,100%,Maldives,2.0,f +24033,100%,Uganda,45.0,f +14087,100%,,5.0,f +20900,100%,Uganda,2.0,t +15789,100%,Niue,1.0,f +5266,100%,Russian Federation,1.0,f +572,100%,Uganda,1.0,f +3790,100%,Netherlands,16.0,f +24071,100%,Indonesia,22.0,f +13403,96%,Maldives,21.0,t +19015,100%,Sri Lanka,2.0,f +3631,100%,Anguilla,1.0,t +4068,100%,Togo,1.0,f +22376,100%,Vanuatu,6.0,f +43321,100%,France,40.0,f +17619,74%,Ghana,14.0,f +9363,95%,Ukraine,50.0,f +21452,99%,Lebanon,29.0,f +49771,100%,Turks and Caicos Islands,4.0,f +9354,100%,Spain,12.0,f +4162,,Zimbabwe,3.0,f +11007,73%,Kiribati,1.0,f +21452,99%,Lebanon,29.0,f +29614,100%,San Marino,1.0,f +37352,100%,Mauritania,2.0,f +35355,100%,Gambia,3.0,f +37902,100%,Zimbabwe,1.0,f +21780,100%,Bosnia and Herzegovina,1.0,t +44684,100%,Andorra,3.0,f +13236,100%,Vanuatu,1.0,f +48102,96%,Indonesia,4.0,f +2250,100%,Brazil,1.0,t +36658,94%,China,20.0,t +49771,100%,Turks and Caicos Islands,4.0,f +7812,100%,Bosnia and Herzegovina,8.0,f +2401,100%,,2.0,t +17619,74%,Ghana,14.0,f +6234,100%,Isle of Man,4.0,t +22145,,,1.0,f +3806,,,11.0,f +41501,100%,Montserrat,2.0,t +34642,100%,,2.0,f +19904,100%,Kiribati,1.0,t +33902,,Libyan Arab Jamahiriya,1.0,f +13070,100%,Fiji,45.0,f +18146,100%,,2.0,t +47203,100%,,1.0,f +30936,100%,Monaco,1.0,t +14681,100%,Uzbekistan,1.0,t +29073,90%,Canada,1.0,t +7620,100%,Togo,4.0,f +8126,56%,,2.0,f +37735,100%,Uganda,13.0,t +13065,100%,Jersey,5.0,f +9236,80%,,1.0,f +49768,80%,Montserrat,7.0,t +25505,,,1.0,f +46113,100%,United Kingdom,2.0,f +1657,,Croatia,13.0,t +37735,100%,Uganda,13.0,t +39214,88%,Vietnam,2.0,f +21629,90%,Bouvet Island (Bouvetoya),1.0,f +5189,100%,Venezuela,2.0,f +45737,,Tonga,29.0,t +26386,100%,Fiji,25.0,t +36942,82%,Uzbekistan,3.0,t +26370,100%,,4.0,t +41837,100%,Brazil,2.0,t +41329,100%,Reunion,1.0,f +22551,100%,,2.0,f +14048,100%,Finland,6.0,t +3945,71%,,1.0,t +47251,90%,,2.0,t +43321,100%,France,40.0,f +40622,100%,Malta,1.0,f +31092,,Senegal,19.0,f +41834,100%,Micronesia,2.0,f +21575,100%,Saint Helena,1.0,f +40934,100%,Brazil,3.0,f +32458,92%,Vietnam,4.0,f +25565,90%,Niue,1.0,f +1215,100%,Sao Tome and Principe,1.0,f +41043,100%,Bosnia and Herzegovina,11.0,f +34085,89%,Cocos (Keeling) Islands,3.0,t +42014,69%,China,17.0,f +20263,99%,Maldives,35.0,t +14476,100%,Kiribati,6.0,f +39546,100%,,1.0,f +48601,,,3.0,f +26160,,Lebanon,1.0,f +23981,100%,Nicaragua,1.0,f +5591,99%,Indonesia,16.0,t +5235,100%,Afghanistan,1.0,t +21740,100%,,2.0,f +5378,100%,Uzbekistan,1.0,f +49422,100%,Sao Tome and Principe,1.0,f +37763,80%,Guinea,2.0,f +24896,100%,Algeria,50.0,t +9809,100%,Malta,1.0,f +15427,100%,Malta,3.0,f +15411,100%,Nauru,2.0,t +21309,100%,Svalbard & Jan Mayen Islands,1.0,f +13212,100%,Zimbabwe,12.0,t +22472,100%,Vanuatu,1.0,t +46486,100%,Nicaragua,1.0,f +2041,100%,Zimbabwe,1.0,f +18362,100%,Uganda,5.0,f +9458,100%,Reunion,2.0,f +2266,100%,Tonga,10.0,t +47237,94%,Marshall Islands,5.0,f +7309,100%,Togo,4.0,f +49987,100%,,19.0,f +37646,100%,Estonia,60.0,f +4267,100%,Senegal,22.0,t +29001,50%,,1.0,f +38101,100%,Switzerland,1.0,f +20754,,China,13.0,f +21700,100%,Mauritania,1.0,f +47252,,Afghanistan,2.0,f +20552,100%,Peru,1.0,f +8340,100%,Maldives,2.0,f +29286,100%,,1.0,f +20932,,,1.0,t +16844,,,1.0,f +356,99%,Wallis and Futuna,32.0,t +45347,,Gambia,1.0,f +22734,88%,Puerto Rico,1.0,f +13065,100%,Jersey,5.0,f +13065,100%,Jersey,5.0,f +10714,,,1.0,f +36087,100%,,8.0,f +36087,100%,,8.0,f +36087,100%,,8.0,f +36087,100%,,8.0,f +36087,100%,,8.0,f +36087,100%,,8.0,f +36087,100%,,8.0,f +36087,100%,,8.0,f +36669,,,1.0,f +14208,93%,,3.0,f +14208,93%,,3.0,f +35070,100%,,3.0,f +27415,100%,,1.0,f +18177,93%,Fiji,10.0,f +47945,,,2.0,f +42440,100%,Kiribati,1.0,t +48869,100%,Slovakia (Slovak Republic),22.0,f +44169,97%,Portugal,39.0,f +27908,100%,Saint Barthelemy,3.0,t +27719,89%,,4.0,f +14531,100%,Tonga,3.0,f +23967,100%,France,2.0,f +47618,60%,,1.0,f +26848,100%,El Salvador,1.0,f +28414,100%,Uzbekistan,22.0,f +32542,100%,,2.0,f +25202,100%,Cuba,3.0,f +43005,100%,Senegal,3.0,f +33638,100%,Sao Tome and Principe,3.0,f +16652,40%,,1.0,f +25913,89%,Uzbekistan,1.0,f +13658,,,1.0,f +7774,100%,,1.0,t +33356,100%,Jersey,1.0,f +24493,,Bosnia and Herzegovina,3.0,f +36731,100%,Nicaragua,7.0,f +4882,,Switzerland,3.0,f +22114,100%,,1.0,t +45525,93%,Tonga,9.0,f +27784,,Montserrat,5.0,f +24488,100%,Kenya,3.0,t +1092,,Nauru,1.0,f +27753,100%,Uganda,3.0,f +24488,100%,Kenya,3.0,t +41270,100%,,1.0,f +17869,100%,Reunion,5.0,t +32586,,Kiribati,1.0,f +28294,100%,Puerto Rico,1.0,f +5045,70%,Zimbabwe,2.0,f +2908,100%,Maldives,1.0,f +798,100%,,1.0,f +34735,100%,,1.0,f +20789,98%,Sao Tome and Principe,13.0,f +31676,100%,,1.0,f +18440,100%,Denmark,1.0,f +26675,100%,,3.0,f +26386,100%,Fiji,25.0,t +21056,,,1.0,f +47580,90%,Micronesia,2.0,t +13337,100%,Indonesia,1.0,f +3254,,Tonga,16.0,t +45967,,Russian Federation,1.0,f +25012,100%,Niue,1.0,f +36253,100%,Nauru,21.0,t +32977,100%,,2.0,f +11469,100%,Guinea,2.0,f +21403,95%,Vietnam,8.0,f +13503,,,1.0,f +22723,,,1.0,f +27907,100%,Puerto Rico,21.0,f +34608,67%,Sao Tome and Principe,1.0,t +4316,100%,Micronesia,18.0,f +13224,100%,Malta,1.0,f +47873,100%,Papua New Guinea,1.0,f +35660,100%,Faroe Islands,1.0,t +13136,100%,Cape Verde,1.0,f +752,100%,Brazil,3.0,t +18484,100%,Gambia,108.0,f +19214,100%,Senegal,55.0,f +7971,100%,Malta,3.0,f +47986,100%,,2.0,f +4856,100%,Philippines,5.0,f +18901,100%,Turks and Caicos Islands,1.0,f +49591,100%,Turks and Caicos Islands,2.0,f +17243,100%,,11.0,f +34876,100%,Niue,2.0,f +1913,100%,Niue,2.0,f +10627,100%,,1.0,f +42840,100%,Niger,1.0,f +27784,,Montserrat,5.0,f +5313,90%,Cook Islands,4.0,f +5591,99%,Indonesia,16.0,t +26401,100%,,1.0,f +1335,100%,Nicaragua,3.0,f +43800,100%,Maldives,5.0,t +19214,100%,Senegal,55.0,f +43341,100%,United Kingdom,1.0,f +15581,100%,,1.0,f +43323,100%,Greenland,1.0,f +11305,,,23.0,f +18812,100%,Guinea,1.0,f +23855,94%,France,2.0,t +46769,100%,Venezuela,1.0,f +26559,,Guinea,4.0,t +23695,100%,France,3.0,f +15968,100%,,1.0,f +46657,100%,Mauritania,1.0,f +14421,100%,Isle of Man,1.0,t +15184,100%,Maldives,1.0,t +29935,100%,Gambia,2.0,t +16520,100%,Marshall Islands,22.0,f +1967,100%,Denmark,1.0,t +26721,,United Kingdom,1.0,t +2548,97%,Marshall Islands,3.0,f +14014,100%,Kenya,1.0,f +4261,100%,Brazil,1.0,f +8950,,Vanuatu,1.0,f +17260,100%,Isle of Man,1.0,f +2776,100%,,1.0,f +18333,80%,Niue,1.0,t +3532,100%,Congo,1.0,f +36325,100%,Nauru,2.0,f +36499,75%,Anguilla,25.0,t +27590,100%,Suriname,8.0,t +23404,91%,Malta,1.0,f +13774,100%,Turks and Caicos Islands,1.0,t +45525,93%,Tonga,9.0,f +35167,100%,Korea,2.0,t +6639,100%,Faroe Islands,1.0,f +22202,100%,Jersey,1.0,f +33915,97%,,1.0,f +22760,100%,Nicaragua,1.0,t +29523,100%,,1.0,f +25668,100%,Jersey,12.0,t +33817,100%,Gibraltar,62.0,f +49812,100%,Kenya,2.0,t +14548,100%,Liberia,2.0,t +40378,100%,Chad,3.0,f +18484,100%,Gambia,108.0,f +16436,100%,,1.0,t +38990,100%,Gambia,1.0,f +43549,50%,United Kingdom,1.0,f +27203,,Bouvet Island (Bouvetoya),13.0,f +20942,90%,Russian Federation,2.0,f +21452,99%,Lebanon,29.0,f +2962,100%,Sao Tome and Principe,2.0,t +15651,,Libyan Arab Jamahiriya,1.0,f +15270,98%,Suriname,3.0,f +4780,100%,Svalbard & Jan Mayen Islands,1.0,f +18162,75%,Sao Tome and Principe,2.0,f +48117,98%,Ukraine,41.0,f +4477,90%,French Guiana,14.0,f +48337,100%,Rwanda,1.0,f +16504,100%,,1.0,t +27321,90%,Micronesia,4.0,f +12730,100%,Tonga,4.0,f +36210,100%,Marshall Islands,1.0,f +12730,100%,Tonga,4.0,f +12730,100%,Tonga,4.0,f +20334,99%,Niger,171.0,t +49946,80%,Niue,1.0,f +5789,,Mexico,1.0,t +29520,,Nicaragua,54.0,f +17978,100%,Kiribati,2.0,t +33573,33%,,1.0,f +45078,100%,Barbados,1.0,f +29520,,Nicaragua,54.0,f +48445,,Zimbabwe,1.0,f +12664,100%,Ecuador,1.0,t +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +33433,100%,Rwanda,9.0,f +20334,99%,Niger,171.0,t +33825,100%,Russian Federation,1.0,f +37992,100%,Guinea,1.0,t +29123,100%,Zimbabwe,16.0,t +26905,50%,Puerto Rico,2.0,f +36333,100%,Turks and Caicos Islands,2.0,f +38841,100%,Turkmenistan,1.0,f +16682,70%,,1.0,f +47883,100%,Russian Federation,1.0,f +31707,100%,Niger,48.0,f +42446,,Turkmenistan,1.0,f +12730,100%,Tonga,4.0,f +14142,,Svalbard & Jan Mayen Islands,1.0,f +5591,99%,Indonesia,16.0,t +23589,100%,Guinea,2.0,f +34192,75%,Tanzania,3.0,f +17872,100%,Maldives,2.0,t +978,95%,Lithuania,29.0,f +41779,100%,Ghana,1.0,f +7046,100%,Ecuador,1.0,f +6835,100%,,1.0,t +46829,,China,1.0,t +45814,,Monaco,1.0,f +18484,100%,Gambia,108.0,f +4654,100%,Cape Verde,3.0,f +44944,0%,,1.0,f +40577,,France,1.0,f +6960,,Greenland,4.0,f +8029,100%,Djibouti,1.0,f +36722,100%,Philippines,17.0,f +25540,70%,Rwanda,1.0,t +28973,75%,Gambia,1.0,f +9325,,,1.0,t +31994,,Mexico,1.0,f +22467,100%,Estonia,2.0,f +31234,100%,Uzbekistan,1.0,f +43854,100%,Ecuador,3.0,f +20754,,China,13.0,f +20754,,China,13.0,f +20754,,China,13.0,f +20754,,China,13.0,f +2849,83%,,1.0,t +15762,,Niger,2.0,f +26476,100%,Kiribati,1.0,f +5179,,,12.0,f +45687,100%,Greenland,2.0,f +41381,100%,Niue,1.0,f +33072,100%,El Salvador,4.0,f +15741,100%,Cuba,14.0,f +48594,80%,,1.0,f +15741,100%,Cuba,14.0,f +33433,100%,Rwanda,9.0,f +49882,100%,Senegal,1.0,f +1900,100%,Tunisia,5.0,t +38549,100%,Chad,2.0,t +47773,100%,Zimbabwe,1.0,f +48601,,,3.0,f +4137,100%,Papua New Guinea,4.0,t +45205,100%,Denmark,1.0,f +27768,65%,Kiribati,15.0,t +44575,100%,Cuba,1.0,f +1509,100%,Vanuatu,4.0,f +6708,60%,Portugal,1.0,f +35439,94%,United Kingdom,23.0,t +6960,,Greenland,4.0,f +44169,97%,Portugal,39.0,f +15746,83%,China,3.0,f +18019,100%,Togo,2.0,f +23900,88%,,42.0,f +10020,90%,China,5.0,f +41476,,Denmark,1.0,f +41102,100%,Sao Tome and Principe,1.0,f +31637,100%,Estonia,1.0,f +10565,100%,Andorra,1.0,f +14514,,China,80.0,t +26785,100%,Zimbabwe,1.0,f +978,95%,Lithuania,29.0,f +40797,100%,Brazil,2.0,t +33817,100%,Gibraltar,62.0,f +24016,100%,Bosnia and Herzegovina,29.0,f +49636,100%,,1.0,f +4910,100%,Cocos (Keeling) Islands,1.0,f +17594,100%,Sao Tome and Principe,3.0,f +6847,100%,Vietnam,4.0,f +13914,100%,Libyan Arab Jamahiriya,2.0,f +42234,100%,Estonia,1.0,f +24896,100%,Algeria,50.0,t +23061,90%,Uganda,2.0,f +6477,100%,Nicaragua,2.0,f +23589,100%,Guinea,2.0,f +31779,100%,Uzbekistan,2.0,f +22756,100%,Uzbekistan,2.0,f +4477,90%,French Guiana,14.0,f +44881,,,1.0,f +8282,100%,Guinea,2.0,t +40579,30%,Montserrat,2.0,t +19214,100%,Senegal,55.0,f +3791,100%,Uganda,4.0,f +45047,,Malta,1.0,t +15398,,,1.0,f +46794,100%,,2.0,f +46669,86%,Brazil,11.0,f +48133,,Isle of Man,45.0,f +46669,86%,Brazil,11.0,f +37293,92%,Russian Federation,15.0,f +15351,,Cape Verde,1.0,f +13042,100%,Costa Rica,5.0,f +31383,100%,Spain,4.0,f +44331,100%,Andorra,2.0,f +47472,100%,Nicaragua,4.0,f +36127,100%,,16.0,f +4654,100%,Cape Verde,3.0,f +3771,100%,,3.0,f +20198,,Nicaragua,1.0,f +47472,100%,Nicaragua,4.0,f +6894,80%,Estonia,47.0,t +34192,75%,Tanzania,3.0,f +31641,100%,Kiribati,3.0,f +9516,99%,Pakistan,45.0,t +4477,90%,French Guiana,14.0,f +30713,100%,Guinea,1.0,f +9516,99%,Pakistan,45.0,t +12185,78%,Fiji,1.0,t +43292,100%,,1.0,f +3791,100%,Uganda,4.0,f +25002,,China,12.0,f +15466,100%,Senegal,4.0,f +22721,100%,Ecuador,109.0,f +33478,100%,Estonia,2.0,t +46078,80%,Malta,1.0,f +25544,100%,Micronesia,1.0,f +27768,65%,Kiribati,15.0,t +49039,100%,,1.0,f +8912,,Lebanon,4.0,f +22756,100%,Uzbekistan,2.0,f +38795,100%,Isle of Man,1.0,f +2885,100%,,1.0,t +44773,100%,,1.0,f +41994,,Portugal,2.0,f +44669,33%,France,1.0,f +45426,100%,France,2.0,f +14679,100%,,1.0,f +23704,100%,France,1.0,f +4186,100%,Chile,1.0,f +18195,78%,,1.0,t +13520,100%,,1.0,f +34095,100%,Russian Federation,3.0,f +35105,100%,Gambia,4.0,f +43837,,,1.0,t +5887,100%,Netherlands,2.0,f +16377,,Gambia,5.0,f +46243,71%,Kiribati,1.0,f +35554,100%,,2.0,f +6663,95%,Gambia,5.0,f +44537,100%,Tonga,7.0,f +3132,100%,,1.0,f +41493,100%,Gambia,5.0,f +49817,,,1.0,f +30528,100%,,1.0,f +17075,100%,,2.0,t +17921,100%,Cuba,1.0,t +26732,,Djibouti,2.0,t +12250,100%,Montserrat,1.0,f +26199,100%,,1.0,f +36475,100%,Guernsey,4.0,t +33330,100%,,1.0,t +23247,100%,Turks and Caicos Islands,2.0,f +32457,100%,Tonga,1.0,t +18484,100%,Gambia,108.0,f +23012,100%,Isle of Man,1.0,f +48117,98%,Ukraine,41.0,f +40793,100%,,75.0,t +2681,100%,Russian Federation,1.0,f +7591,100%,Isle of Man,1.0,f +43656,92%,Saint Helena,2.0,f +41604,100%,Tonga,4.0,f +44812,90%,Philippines,1.0,f +29520,,Nicaragua,54.0,f +14242,,,1.0,f +19046,100%,,1.0,f +14006,93%,Maldives,2.0,f +13383,100%,,1.0,f +42647,100%,Mauritania,1.0,f +41373,,Lebanon,8.0,f +3417,,Fiji,32.0,t +12320,100%,Bosnia and Herzegovina,20.0,f +38114,94%,Uzbekistan,19.0,f +5420,100%,Tonga,41.0,f +24026,98%,Cape Verde,69.0,t +12137,99%,Sao Tome and Principe,33.0,t +24026,98%,Cape Verde,69.0,t +40793,100%,,75.0,t +21690,100%,Anguilla,5.0,t +28291,90%,Afghanistan,5.0,t +27016,100%,Gambia,1.0,t +37866,,Mexico,1.0,f +38114,94%,Uzbekistan,19.0,f +38114,94%,Uzbekistan,19.0,f +48685,100%,Russian Federation,5.0,f +38114,94%,Uzbekistan,19.0,f +33817,100%,Gibraltar,62.0,f +48357,100%,Denmark,1.0,f +38114,94%,Uzbekistan,19.0,f +43753,100%,,2.0,f +6523,100%,Niue,1.0,f +25765,100%,Sao Tome and Principe,1.0,f +21302,100%,Nicaragua,4.0,f +23302,100%,Uzbekistan,1.0,f +34042,100%,Marshall Islands,37.0,f +3406,91%,Monaco,6.0,t +29191,100%,Guinea,1.0,f +21302,100%,Nicaragua,4.0,f +48409,,Estonia,60.0,t +13146,100%,,1.0,f +16973,100%,Lithuania,1.0,f +23393,100%,Denmark,2.0,f +1948,63%,Rwanda,3.0,f +39929,100%,Guinea,2.0,f +34419,,Lebanon,1.0,f +38114,94%,Uzbekistan,19.0,f +3791,100%,Uganda,4.0,f +46806,100%,Maldives,1.0,f +15620,95%,Marshall Islands,5.0,f +8934,84%,Marshall Islands,2.0,f +44930,100%,Denmark,2.0,t +27744,100%,Venezuela,1.0,t +20789,98%,Sao Tome and Principe,13.0,f +42879,100%,Gambia,1.0,f +6821,100%,Lithuania,1.0,f +47304,67%,,1.0,t +32975,100%,Micronesia,3.0,f +44857,100%,Zimbabwe,24.0,t +17608,0%,,1.0,f +44782,100%,,2.0,f +26397,100%,Kenya,1.0,t +16560,,Isle of Man,1.0,f +26526,94%,Tonga,8.0,f +12911,100%,Maldives,1.0,f +2939,100%,Holy See (Vatican City State),1.0,f +25147,99%,Niger,48.0,f +20135,100%,Niue,1.0,t +44769,0%,Fiji,1.0,f +20099,0%,Isle of Man,1.0,f +8800,100%,,3.0,f +31120,98%,,7.0,f +42828,,Ghana,1.0,f +5145,100%,Niue,2.0,f +4204,100%,Micronesia,1.0,f +21454,,Turkmenistan,1.0,f +23681,100%,Saint Helena,4.0,t +20849,100%,Marshall Islands,1.0,f +2272,80%,Lithuania,1.0,f +40543,,Indonesia,3.0,f +22359,100%,,3.0,f +14720,100%,Korea,2.0,f +43494,98%,Saint Helena,5.0,f +25668,100%,Jersey,12.0,t +11061,100%,Togo,2.0,f +12812,99%,Croatia,32.0,f +4316,100%,Micronesia,18.0,f +31581,,Cook Islands,1.0,f +31120,98%,,7.0,f +33170,100%,Tonga,2.0,t +22359,100%,,3.0,f +22359,100%,,3.0,f +48502,100%,Nicaragua,11.0,t +7593,100%,Senegal,2.0,f +48502,100%,Nicaragua,11.0,t +6713,100%,Mauritania,10.0,f +48502,100%,Nicaragua,11.0,t +46212,100%,China,4.0,f +41427,100%,,1.0,f +20153,96%,Reunion,51.0,f +27263,80%,China,5.0,f +34416,100%,Guinea,5.0,f +48114,80%,China,3.0,t +15316,100%,Russian Federation,1.0,t +34416,100%,Guinea,5.0,f +43590,100%,Costa Rica,9.0,f +34416,100%,Guinea,5.0,f +1444,67%,Isle of Man,3.0,f +18320,50%,Reunion,19.0,t +34416,100%,Guinea,5.0,f +18320,50%,Reunion,19.0,t +19304,100%,Cape Verde,1.0,t +45064,98%,Anguilla,15.0,f +23078,100%,Ukraine,8.0,f +25582,100%,French Guiana,1.0,t +48802,100%,Niue,1.0,f +3300,0%,Vanuatu,1.0,f +48439,100%,Guinea,2.0,f +43494,98%,Saint Helena,5.0,f +42805,,Russian Federation,2.0,f +3386,100%,Isle of Man,2.0,f +20428,100%,Cocos (Keeling) Islands,2.0,f +21799,100%,Guinea,1.0,f +12365,,Niue,3.0,f +31072,100%,Montserrat,6.0,t +24374,100%,Zimbabwe,1.0,f +15245,100%,,11.0,f +20165,94%,Ukraine,30.0,f +33817,100%,Gibraltar,62.0,f +26652,97%,Pakistan,6.0,f +18320,50%,Reunion,19.0,t +13070,100%,Fiji,45.0,f +15535,100%,Niue,1.0,f +29520,,Nicaragua,54.0,f +46384,100%,Palestinian Territory,1.0,t +25381,100%,,5.0,f +36408,100%,Nauru,5.0,f +35090,100%,Niger,2.0,f +38143,100%,Russian Federation,1.0,f +16142,,Bosnia and Herzegovina,1.0,t +32203,100%,Barbados,176.0,f +33817,100%,Gibraltar,62.0,f +2166,,Kenya,4.0,t +31072,100%,Montserrat,6.0,t +48685,100%,Russian Federation,5.0,f +27546,100%,Netherlands Antilles,2.0,t +34169,,Lebanon,3.0,t +34818,,Jersey,1.0,f +23149,94%,Estonia,1.0,f +24588,,,1.0,f +12137,99%,Sao Tome and Principe,33.0,t +45525,93%,Tonga,9.0,f +25147,99%,Niger,48.0,f +14514,,China,80.0,t +27035,90%,,1.0,f +36093,100%,Denmark,18.0,t +40793,100%,,75.0,t +23164,100%,China,12.0,t +9363,95%,Ukraine,50.0,f +19128,100%,Uzbekistan,12.0,t +10031,100%,Nicaragua,2.0,f +17920,96%,,9.0,f +19214,100%,Senegal,55.0,f +9363,95%,Ukraine,50.0,f +4682,100%,Vanuatu,5.0,f +34802,100%,,1.0,f +9363,95%,Ukraine,50.0,f +43903,100%,,1.0,f +42612,100%,,1.0,f +43494,98%,Saint Helena,5.0,f +5145,100%,Niue,2.0,f +28598,50%,Peru,1.0,f +12812,99%,Croatia,32.0,f +409,100%,,1.0,f +12812,99%,Croatia,32.0,f +30956,,Rwanda,1.0,f +28316,100%,,2.0,f +18898,100%,,1.0,f +10103,100%,Zimbabwe,1.0,f +22220,100%,Indonesia,1.0,f +19749,100%,Denmark,6.0,t +49796,67%,,1.0,f +7984,100%,,1.0,f +39441,96%,Cuba,4.0,f +31120,98%,,7.0,f +49594,100%,Uganda,7.0,f +28156,100%,Lebanon,2.0,f +38319,100%,Nicaragua,20.0,f +30621,60%,,3.0,f +28159,100%,French Polynesia,1.0,f +2846,62%,United Kingdom,2.0,t +18442,100%,Reunion,5.0,t +26526,94%,Tonga,8.0,f +36640,100%,Uganda,6.0,f +18177,93%,Fiji,10.0,f +44316,98%,Uganda,6.0,t +34309,100%,Kenya,1.0,f +10352,100%,Jersey,1.0,t +33817,100%,Gibraltar,62.0,f +13955,,China,2.0,f +19039,94%,Bahrain,17.0,f +20153,96%,Reunion,51.0,f +17286,100%,,1.0,f +25011,100%,Kenya,1.0,t +19039,94%,Bahrain,17.0,f +1702,100%,,1.0,f +19039,94%,Bahrain,17.0,f +22391,96%,Niger,2.0,f +40884,50%,Zimbabwe,1.0,t +9354,100%,Spain,12.0,f +47347,100%,Ecuador,3.0,f +18832,100%,Zimbabwe,8.0,f +26454,100%,Bouvet Island (Bouvetoya),12.0,f +49771,100%,Turks and Caicos Islands,4.0,f +40023,100%,Uganda,6.0,t +4267,100%,Senegal,22.0,t +18817,100%,Togo,2.0,f +5177,,Sao Tome and Principe,1.0,f +47711,100%,,1.0,f +10755,,,1.0,f +18817,100%,Togo,2.0,f +6811,100%,Monaco,3.0,f +20354,100%,Kiribati,1.0,f +48955,100%,Somalia,1.0,f +31377,100%,Isle of Man,1.0,f +16373,100%,Guinea,2.0,t +46251,100%,,1.0,f +11413,98%,Somalia,8.0,f +25381,100%,,5.0,f +11413,98%,Somalia,8.0,f +6269,100%,,1.0,f +49354,88%,Philippines,3.0,f +11413,98%,Somalia,8.0,f +25147,99%,Niger,48.0,f +18484,100%,Gambia,108.0,f +17507,100%,Guinea,6.0,f +36640,100%,Uganda,6.0,f +15589,100%,Nicaragua,48.0,f +15589,100%,Nicaragua,48.0,f +15589,100%,Nicaragua,48.0,f +7309,100%,Togo,4.0,f +30531,100%,Zimbabwe,1.0,f +28621,100%,Marshall Islands,1.0,f +4976,100%,,1.0,f +4477,90%,French Guiana,14.0,f +4477,90%,French Guiana,14.0,f +12320,100%,Bosnia and Herzegovina,20.0,f +26454,100%,Bouvet Island (Bouvetoya),12.0,f +5345,100%,,2.0,f +36640,100%,Uganda,6.0,f +30447,80%,Lebanon,1.0,t +12247,100%,Maldives,33.0,f +24579,,,3.0,f +25381,100%,,5.0,f +25381,100%,,5.0,f +25381,100%,,5.0,f +44776,100%,Vanuatu,1.0,f +24579,,,3.0,f +8253,,Nicaragua,4.0,f +32787,100%,Uzbekistan,2.0,t +48252,,Vanuatu,4.0,f +5124,100%,Isle of Man,1.0,f +38586,,Isle of Man,1.0,f +26454,100%,Bouvet Island (Bouvetoya),12.0,f +31781,95%,Guinea,6.0,f +25482,,Marshall Islands,1.0,f +26454,100%,Bouvet Island (Bouvetoya),12.0,f +26454,100%,Bouvet Island (Bouvetoya),12.0,f +28965,90%,Pakistan,2.0,f +15817,100%,Barbados,4.0,t +41871,100%,Mauritania,1.0,t +4972,100%,,1.0,t +4330,94%,Ukraine,60.0,t +23641,100%,Niue,1.0,f +1509,100%,Vanuatu,4.0,f +1509,100%,Vanuatu,4.0,f +7620,100%,Togo,4.0,f +7620,100%,Togo,4.0,f +44371,100%,,3.0,f +44371,100%,,3.0,f +11679,100%,,2.0,f +45645,100%,,1.0,f +23247,100%,Turks and Caicos Islands,2.0,f +37815,88%,Kenya,3.0,f +43712,,Sao Tome and Principe,1.0,f +21144,,Mauritania,2.0,t +24565,100%,Anguilla,4.0,f +32618,100%,Anguilla,2.0,f +35520,100%,,1.0,f +20312,100%,Papua New Guinea,2.0,f +39436,100%,United Kingdom,2.0,f +18228,100%,Afghanistan,1.0,t +3680,100%,Indonesia,1.0,f +17044,80%,Bouvet Island (Bouvetoya),1.0,t +45986,100%,Holy See (Vatican City State),1.0,f +25339,100%,,1.0,f +25744,90%,Mauritania,1.0,f +17675,60%,Svalbard & Jan Mayen Islands,2.0,t +30748,,Guinea,5.0,f +33759,94%,Ghana,1.0,f +47626,100%,,1.0,f +18894,,,1.0,f +37492,100%,Niue,1.0,f +8021,100%,El Salvador,2.0,f +44477,90%,Maldives,3.0,t +15990,90%,Portugal,3.0,f +43095,100%,Chad,2.0,t +14476,100%,Kiribati,6.0,f +7589,100%,Uzbekistan,3.0,f +15990,90%,Portugal,3.0,f +386,100%,Chile,1.0,f +42010,,Gambia,4.0,t +14171,100%,Russian Federation,3.0,f +26000,100%,,1.0,t +17657,67%,Kenya,1.0,f +44586,85%,Ukraine,13.0,f +48987,100%,,2.0,f +21154,100%,,1.0,f +10373,90%,Bouvet Island (Bouvetoya),2.0,f +23041,100%,,1.0,t +44586,85%,Ukraine,13.0,f +3274,86%,Barbados,24.0,f +7827,,Guinea,1.0,f +28414,100%,Uzbekistan,22.0,f +40582,57%,Kenya,4.0,t +31781,95%,Guinea,6.0,f +4918,,,1.0,f +5102,100%,Nicaragua,2.0,f +26454,100%,Bouvet Island (Bouvetoya),12.0,f +26454,100%,Bouvet Island (Bouvetoya),12.0,f +1805,100%,Philippines,1.0,t +43287,100%,Lebanon,1.0,t +26454,100%,Bouvet Island (Bouvetoya),12.0,f +41812,100%,Indonesia,1.0,t +26454,100%,Bouvet Island (Bouvetoya),12.0,f +26675,100%,,3.0,f +36644,100%,Ecuador,4.0,t +21187,100%,Niger,2.0,f +45552,93%,Nicaragua,12.0,t +42037,100%,,1.0,f +6188,100%,Denmark,1.0,f +26182,100%,,1.0,t +41757,100%,Malta,5.0,f +18005,100%,,1.0,t +636,97%,Vanuatu,3.0,f +11679,100%,,2.0,f +37947,100%,Jersey,1.0,f +8190,100%,,1.0,f +4069,100%,Togo,1.0,f +43165,,,1.0,f +34416,100%,Guinea,5.0,f +24753,100%,,1.0,t +36998,92%,Lebanon,10.0,f +36784,,,1.0,f +12206,100%,Bouvet Island (Bouvetoya),2.0,f +19449,100%,,3.0,f +24565,100%,Anguilla,4.0,f +27342,100%,Mauritania,1.0,f +13033,80%,Moldova,3.0,t +26454,100%,Bouvet Island (Bouvetoya),12.0,f +6576,100%,Gibraltar,3.0,t +26454,100%,Bouvet Island (Bouvetoya),12.0,f +4525,98%,El Salvador,9.0,t +26454,100%,Bouvet Island (Bouvetoya),12.0,f +4819,100%,Bouvet Island (Bouvetoya),11.0,f +13651,100%,El Salvador,1.0,f +5057,100%,Zimbabwe,23.0,t +42645,100%,China,2.0,f +4819,100%,Bouvet Island (Bouvetoya),11.0,f +4540,100%,,2.0,f +38524,100%,Libyan Arab Jamahiriya,1.0,t +1146,95%,French Polynesia,9.0,f +21945,90%,Denmark,2.0,f +35972,100%,,3.0,f +4819,100%,Bouvet Island (Bouvetoya),11.0,f +4819,100%,Bouvet Island (Bouvetoya),11.0,f +30106,100%,,1.0,f +3882,90%,Nicaragua,1.0,f +4819,100%,Bouvet Island (Bouvetoya),11.0,f +4819,100%,Bouvet Island (Bouvetoya),11.0,f +4819,100%,Bouvet Island (Bouvetoya),11.0,f +23607,100%,Niue,1.0,f +4819,100%,Bouvet Island (Bouvetoya),11.0,f +28369,90%,Sao Tome and Principe,9.0,f +4819,100%,Bouvet Island (Bouvetoya),11.0,f +4819,100%,Bouvet Island (Bouvetoya),11.0,f +3003,100%,,1.0,f +4819,100%,Bouvet Island (Bouvetoya),11.0,f +11543,44%,,2.0,f +7754,100%,Sao Tome and Principe,1.0,f +7530,100%,Lebanon,1.0,f +21773,100%,Papua New Guinea,2.0,f +13641,85%,Mauritania,23.0,f +43044,100%,Micronesia,2.0,t +28369,90%,Sao Tome and Principe,9.0,f +21632,100%,Wallis and Futuna,2.0,f +28369,90%,Sao Tome and Principe,9.0,f +25773,75%,,1.0,f +48219,100%,,2.0,t +15587,80%,Gibraltar,1.0,t +12129,,,1.0,f +23080,50%,Nicaragua,1.0,f +44379,80%,El Salvador,8.0,t +16623,80%,Denmark,1.0,f +24392,,Zimbabwe,1.0,f +48171,100%,,1.0,f +7928,100%,,1.0,f +48219,100%,,2.0,t +42167,100%,Sao Tome and Principe,1.0,f +22701,100%,,1.0,f +16546,100%,,1.0,f +35005,100%,Uzbekistan,4.0,f +12812,99%,Croatia,32.0,f +15292,,Barbados,4.0,t +23882,100%,,1.0,f +15837,100%,,1.0,t +8241,100%,Malta,2.0,f +27943,100%,Chile,1.0,f +11917,85%,,1.0,t +49680,,Estonia,1.0,t +2710,40%,,1.0,f +37396,100%,Turkmenistan,1.0,f +48508,100%,Marshall Islands,2.0,f +9516,99%,Pakistan,45.0,t +36994,100%,Isle of Man,2.0,t +20826,100%,,1.0,f +35005,100%,Uzbekistan,4.0,f +15338,,France,1.0,f +16533,,Gambia,1.0,t +40698,100%,Micronesia,3.0,f +41354,100%,Micronesia,4.0,t +1414,100%,Christmas Island,1.0,f +5893,100%,Guinea,4.0,f +47193,100%,Moldova,3.0,f +11750,100%,Gambia,2.0,f +42052,100%,El Salvador,1.0,t +29916,100%,Niue,4.0,t +12638,100%,,1.0,f +23034,99%,Monaco,54.0,f +42058,,Nicaragua,1.0,f +2180,0%,Australia,1.0,f +44169,97%,Portugal,39.0,f +11691,100%,,1.0,f +33559,100%,Vietnam,1.0,f +33817,100%,Gibraltar,62.0,f +48131,100%,Micronesia,1.0,f +24033,100%,Uganda,45.0,f +28900,60%,,1.0,f +44584,89%,Sao Tome and Principe,2.0,f +17858,,Uganda,1.0,f +23397,67%,,1.0,f +5420,100%,Tonga,41.0,f +22027,67%,Togo,1.0,f +11921,100%,Western Sahara,2.0,t +47017,100%,Turks and Caicos Islands,3.0,t +18484,100%,Gambia,108.0,f +6413,,Netherlands,1.0,f +49076,97%,Kenya,12.0,t +26095,100%,Gambia,2.0,f +42014,69%,China,17.0,f +38580,100%,,1.0,f +18320,50%,Reunion,19.0,t +18160,100%,Indonesia,1.0,f +16329,100%,Turks and Caicos Islands,1.0,f +37778,92%,Tonga,24.0,f +11129,90%,,1.0,f +29520,,Nicaragua,54.0,f +19879,99%,Guinea,19.0,f +44339,100%,Mexico,1.0,f +29520,,Nicaragua,54.0,f +3455,100%,,1.0,f +48117,98%,Ukraine,41.0,f +34042,100%,Marshall Islands,37.0,f +45818,,Kenya,1.0,f +29520,,Nicaragua,54.0,f +24302,100%,Cape Verde,6.0,f +47104,100%,Gibraltar,1.0,f +32196,100%,,1.0,f +3417,,Fiji,32.0,t +27334,100%,China,16.0,f +1626,100%,Uganda,2.0,t +31616,100%,Uzbekistan,1.0,f +18832,100%,Zimbabwe,8.0,f +3761,100%,Cocos (Keeling) Islands,1.0,f +667,100%,Croatia,4.0,t +45864,,Slovakia (Slovak Republic),1.0,f +30011,100%,Indonesia,1.0,t +15948,,Niue,1.0,f +12965,100%,Vietnam,11.0,t +19148,100%,Malawi,1.0,f +3121,95%,Zimbabwe,9.0,t +35540,88%,,2.0,f +39441,96%,Cuba,4.0,f +20153,96%,Reunion,51.0,f +34096,100%,Andorra,10.0,f +19602,100%,Lithuania,24.0,f +31781,95%,Guinea,6.0,f +14443,80%,,1.0,f +33778,,China,1.0,f +39311,100%,Cuba,1.0,f +27500,100%,Niue,2.0,f +14476,100%,Kiribati,6.0,f +36741,100%,Papua New Guinea,1.0,f +35554,100%,,2.0,f +11028,100%,Uzbekistan,1.0,f +45480,100%,Guernsey,3.0,t +20827,100%,,1.0,t +19819,100%,Lebanon,2.0,t +24069,,Libyan Arab Jamahiriya,1.0,f +3045,100%,Rwanda,2.0,f +23695,100%,France,3.0,f +2411,75%,Vanuatu,1.0,f +47591,100%,Jersey,1.0,f +40913,100%,Jersey,1.0,t +8630,100%,Lithuania,1.0,f +39238,,Niue,1.0,f +41140,90%,Nicaragua,2.0,t +32495,100%,Tonga,9.0,f +19077,100%,France,3.0,f +12915,0%,,1.0,f +9675,,,1.0,f +29285,100%,,1.0,f +32199,100%,Cuba,2.0,f +26526,94%,Tonga,8.0,f +34096,100%,Andorra,10.0,f +5893,100%,Guinea,4.0,f +27239,100%,,1.0,f +22371,71%,Svalbard & Jan Mayen Islands,3.0,f +48985,97%,Guinea,8.0,f +7407,,,7.0,t +27520,100%,Philippines,2.0,t +31544,100%,Uganda,1.0,f +15471,100%,Russian Federation,1.0,f +41140,90%,Nicaragua,2.0,t +18362,100%,Uganda,5.0,f +874,100%,Puerto Rico,5.0,f +10732,,Uganda,5.0,f +12602,100%,Kiribati,3.0,f +15357,100%,Kiribati,2.0,f +34423,90%,Ukraine,1.0,f +11653,,Malta,1.0,f +16536,50%,Guernsey,1.0,t +1835,100%,Ecuador,8.0,f +44914,100%,Rwanda,1.0,f +23240,100%,Ecuador,1.0,f +12602,100%,Kiribati,3.0,f +18917,90%,Venezuela,1.0,f +41056,100%,Peru,1.0,f +11171,100%,Turks and Caicos Islands,4.0,f +25128,100%,Barbados,5.0,t +31092,,Senegal,19.0,f +45552,93%,Nicaragua,12.0,t +33887,100%,Malta,1.0,f +16649,100%,Gibraltar,8.0,f +12602,100%,Kiribati,3.0,f +33907,100%,Niue,1.0,f +1929,100%,Niue,7.0,t +19405,,Gambia,1.0,f +23395,0%,Tonga,1.0,f +41430,100%,,1.0,t +12814,100%,,1.0,f +39027,80%,Nicaragua,2.0,f +25165,93%,Uzbekistan,7.0,f +28959,99%,,7.0,f +39282,100%,Gambia,2.0,f +6894,80%,Estonia,47.0,t +24149,100%,China,3.0,f +21868,100%,Djibouti,1.0,f +15245,100%,,11.0,f +48869,100%,Slovakia (Slovak Republic),22.0,f +20042,100%,Papua New Guinea,2.0,t +5072,40%,Monaco,1.0,f +44169,97%,Portugal,39.0,f +14766,100%,Rwanda,2.0,t +20153,96%,Reunion,51.0,f +16275,98%,Maldives,24.0,f +9466,,Chile,1.0,f +33248,100%,,4.0,f +33817,100%,Gibraltar,62.0,f +41354,100%,Micronesia,4.0,t +20153,96%,Reunion,51.0,f +20919,,,1.0,f +28292,73%,Lebanon,2.0,f +295,100%,Micronesia,2.0,t +39772,,Montserrat,1.0,f +33248,100%,,4.0,f +8725,100%,Djibouti,1.0,f +31873,99%,Uzbekistan,22.0,f +145,,Bosnia and Herzegovina,1.0,f +19039,94%,Bahrain,17.0,f +43237,40%,Montserrat,24.0,f +18832,100%,Zimbabwe,8.0,f +19039,94%,Bahrain,17.0,f +30198,,Kenya,1.0,f +18801,100%,,1.0,t +38466,91%,Niger,2.0,f +49560,100%,,6.0,t +12205,,,1.0,f +20915,,Croatia,1.0,f +40263,,Nauru,3.0,f +31873,99%,Uzbekistan,22.0,f +19214,100%,Senegal,55.0,f +39922,,Reunion,1.0,f +25671,90%,,1.0,f +41383,100%,Kenya,1.0,f +38466,91%,Niger,2.0,f +19214,100%,Senegal,55.0,f +17467,100%,Micronesia,1.0,f +3801,50%,Maldives,5.0,f +31939,,Reunion,2.0,f +31765,100%,Estonia,1.0,f +41484,89%,Anguilla,23.0,f +23164,100%,China,12.0,t +25852,100%,Micronesia,1.0,f +298,100%,Honduras,3.0,f +30950,100%,French Guiana,3.0,t +27948,100%,Niue,4.0,f +35305,100%,,2.0,f +15741,100%,Cuba,14.0,f +39168,83%,Tonga,6.0,f +30206,90%,Turks and Caicos Islands,1.0,f +26010,100%,Uganda,1.0,f +35093,100%,,1.0,f +14370,100%,,1.0,f +19497,,Maldives,1.0,f +4716,100%,Tonga,1.0,f +6843,100%,,1.0,f +6782,100%,Uganda,5.0,f +25880,100%,Russian Federation,1.0,t +33818,100%,Vanuatu,1.0,f +29012,100%,Tanzania,4.0,t +14921,100%,Micronesia,2.0,f +36121,100%,Russian Federation,2.0,f +8800,100%,,3.0,f +49923,88%,,1.0,f +6225,90%,Barbados,7.0,f +8800,100%,,3.0,f +4133,90%,Maldives,6.0,f +24378,75%,,1.0,f +46955,83%,,2.0,f +29665,93%,,3.0,f +14386,100%,Nicaragua,8.0,f +6225,90%,Barbados,7.0,f +3555,100%,Zimbabwe,2.0,f +28828,100%,Isle of Man,198.0,t +2432,,,1.0,f +8485,100%,,1.0,t +8074,100%,,1.0,t +33817,100%,Gibraltar,62.0,f +6168,,Bouvet Island (Bouvetoya),14.0,t +28616,,,1.0,f +14514,,China,80.0,t +34798,100%,,1.0,f +8990,100%,Turkmenistan,1.0,f +4326,100%,,11.0,f +4326,100%,,11.0,f +2104,100%,Russian Federation,1.0,t +43897,100%,,1.0,f +16940,50%,Russian Federation,1.0,f +18221,100%,Kenya,1.0,f +45878,100%,Costa Rica,1.0,f +1054,100%,Guinea,20.0,f +22391,96%,Niger,2.0,f +40750,90%,Brazil,1.0,f +43229,,Netherlands,1.0,f +33746,100%,Venezuela,2.0,f +6017,,Togo,1.0,f +5912,100%,Micronesia,1.0,f +1054,100%,Guinea,20.0,f +5438,100%,,1.0,f +34604,96%,Kenya,18.0,f +34604,96%,Kenya,18.0,f +13537,100%,,1.0,f +40793,100%,,75.0,t +12137,99%,Sao Tome and Principe,33.0,t +28241,97%,Maldives,10.0,f +35005,100%,Uzbekistan,4.0,f +37858,92%,Anguilla,7.0,f +37599,100%,Marshall Islands,1.0,f +27948,100%,Niue,4.0,f +12137,99%,Sao Tome and Principe,33.0,t +26606,90%,,1.0,t +7184,77%,Reunion,13.0,f +2534,100%,Malta,2.0,f +11572,100%,Niue,1.0,f +32352,100%,French Guiana,2.0,f +32935,,Ghana,40.0,f +3465,80%,Niue,3.0,t +7184,77%,Reunion,13.0,f +43039,100%,Russian Federation,2.0,t +41517,100%,Peru,1.0,f +47574,100%,Lithuania,1.0,t +34604,96%,Kenya,18.0,f +7894,100%,Ukraine,10.0,f +8601,,Angola,16.0,f +34604,96%,Kenya,18.0,f +37292,100%,,3.0,f +11494,100%,Turks and Caicos Islands,1.0,f +34604,96%,Kenya,18.0,f +38931,100%,Niue,1.0,f +49815,90%,Micronesia,1.0,f +4745,100%,Croatia,119.0,f +19217,98%,Marshall Islands,46.0,f +1509,100%,Vanuatu,4.0,f +23084,100%,Micronesia,1.0,f +4745,100%,Croatia,119.0,f +30949,100%,Finland,1.0,f +7127,100%,Denmark,2.0,t +7129,100%,Guinea,4.0,f +4745,100%,Croatia,119.0,f +11353,,Marshall Islands,1.0,f +16903,,Chile,1.0,f +4745,100%,Croatia,119.0,f +4477,90%,French Guiana,14.0,f +43263,100%,,1.0,f +39768,100%,,1.0,t +25774,90%,,1.0,t +29647,100%,Peru,1305.0,f +25147,99%,Niger,48.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +43152,100%,Nicaragua,82.0,t +2553,100%,Turks and Caicos Islands,3.0,f +667,100%,Croatia,4.0,t +39079,100%,France,1.0,f +9764,100%,Micronesia,1.0,f +35005,100%,Uzbekistan,4.0,f +17674,100%,Pakistan,4.0,f +28648,97%,Estonia,5.0,f +41303,100%,Montserrat,1.0,f +36253,100%,Nauru,21.0,t +32340,,Anguilla,1.0,f +32332,100%,Ukraine,1.0,f +1461,100%,Brazil,3.0,f +44061,100%,,1.0,f +34381,83%,Sao Tome and Principe,1.0,f +35460,,Chad,1.0,t +25039,,Saint Helena,7.0,t +46188,100%,,1.0,f +6225,90%,Barbados,7.0,f +2216,100%,,1.0,f +9611,93%,Chad,2.0,f +24405,90%,,1.0,f +890,100%,Zimbabwe,3.0,f +27808,,El Salvador,1.0,f +8576,,French Guiana,2.0,f +620,100%,,1.0,f +4682,100%,Vanuatu,5.0,f +42337,,Ghana,2.0,f +23141,,,1.0,t +32939,,Russian Federation,1.0,f +42337,,Ghana,2.0,f +26248,100%,Marshall Islands,1.0,f +655,100%,Bosnia and Herzegovina,1.0,f +33817,100%,Gibraltar,62.0,f +37058,100%,Kiribati,1.0,f +16520,100%,Marshall Islands,22.0,f +25941,86%,Portugal,4.0,f +4477,90%,French Guiana,14.0,f +4477,90%,French Guiana,14.0,f +19039,94%,Bahrain,17.0,f +7133,90%,,3.0,f +4477,90%,French Guiana,14.0,f +7133,90%,,3.0,f +28744,0%,Ukraine,1.0,f +37143,,El Salvador,1.0,t +42390,100%,Wallis and Futuna,96.0,t +22331,99%,Rwanda,50.0,t +7133,90%,,3.0,f +5003,100%,Jersey,8.0,f +45480,100%,Guernsey,3.0,t +40191,100%,Denmark,1.0,f +45715,,Zimbabwe,1.0,f +26543,,,1.0,t +32455,100%,Guinea,2.0,t +31202,90%,Kiribati,107.0,f +18394,56%,Turks and Caicos Islands,1.0,f +8268,,Micronesia,1.0,f +43511,100%,Russian Federation,2.0,f +28721,100%,French Guiana,1.0,t +29359,100%,Denmark,1.0,f +39536,100%,,1.0,f +11413,98%,Somalia,8.0,f +47539,100%,Tunisia,1.0,f +33299,97%,Zimbabwe,1.0,f +11413,98%,Somalia,8.0,f +44684,100%,Andorra,3.0,f +41855,100%,Brazil,1.0,f +28078,100%,Maldives,1.0,f +25799,100%,Uzbekistan,5.0,t +23902,60%,Russian Federation,1.0,f +21224,90%,Rwanda,3.0,f +36307,,Bouvet Island (Bouvetoya),1.0,f +1182,100%,Russian Federation,2.0,t +1146,95%,French Polynesia,9.0,f +32303,100%,Barbados,1.0,f +39383,78%,France,3.0,t +4330,94%,Ukraine,60.0,t +15843,100%,Slovakia (Slovak Republic),18.0,f +43777,100%,Denmark,18.0,f +19214,100%,Senegal,55.0,f +36093,100%,Denmark,18.0,t +36093,100%,Denmark,18.0,t +36093,100%,Denmark,18.0,t +24016,100%,Bosnia and Herzegovina,29.0,f +28690,100%,,1.0,t +13045,100%,,1.0,t +34042,100%,Marshall Islands,37.0,f +36093,100%,Denmark,18.0,t +36093,100%,Denmark,18.0,t +27602,100%,,1.0,f +48117,98%,Ukraine,41.0,f +922,,Croatia,1.0,t +28837,100%,Wallis and Futuna,3.0,f +18484,100%,Gambia,108.0,f +41987,100%,Malta,2.0,t +47443,100%,Wallis and Futuna,1.0,f +1652,88%,Greenland,2.0,f +19543,,Bosnia and Herzegovina,5.0,f +17797,,Malta,1.0,f +31202,90%,Kiribati,107.0,f +31202,90%,Kiribati,107.0,f +31202,90%,Kiribati,107.0,f +31202,90%,Kiribati,107.0,f +31202,90%,Kiribati,107.0,f +19447,,Afghanistan,2.0,t +40748,100%,Monaco,1.0,f +31692,100%,,1.0,t +24016,100%,Bosnia and Herzegovina,29.0,f +43003,,Chile,1.0,f +3705,,,1.0,f +19123,,,1.0,f +9844,100%,Canada,1.0,f +4065,100%,Reunion,2.0,f +10482,86%,Zimbabwe,2.0,f +15843,100%,Slovakia (Slovak Republic),18.0,f +49487,99%,Marshall Islands,6.0,f +27119,94%,Nicaragua,10.0,t +7700,,Portugal,1.0,f +21382,100%,Marshall Islands,4.0,f +15843,100%,Slovakia (Slovak Republic),18.0,f +37927,83%,Cape Verde,1.0,f +30029,90%,El Salvador,8.0,f +11140,100%,Holy See (Vatican City State),1.0,f +38904,100%,,1.0,f +16406,100%,Bouvet Island (Bouvetoya),16.0,f +16489,100%,Russian Federation,42.0,t +31781,95%,Guinea,6.0,f +44316,98%,Uganda,6.0,t +26254,100%,Gambia,3.0,f +34054,100%,,4.0,f +13515,100%,,3.0,t +13515,100%,,3.0,t +33833,100%,Gibraltar,1.0,f +30261,100%,Papua New Guinea,1.0,f +11503,100%,Palestinian Territory,1.0,f +8131,100%,,1.0,f +3112,94%,Indonesia,25.0,f +19602,100%,Lithuania,24.0,f +27032,100%,Marshall Islands,2.0,t +49785,,Ghana,9.0,f +43596,100%,,1.0,f +26921,98%,Nicaragua,6.0,t +43433,100%,United Kingdom,1.0,f +19039,94%,Bahrain,17.0,f +45888,,Anguilla,1.0,t +48117,98%,Ukraine,41.0,f +19879,99%,Guinea,19.0,f +19039,94%,Bahrain,17.0,f +32719,100%,Nicaragua,2.0,f +47631,100%,Faroe Islands,3.0,f +46362,100%,,1.0,f +20726,0%,Niue,1.0,t +12795,100%,,1.0,t +34859,100%,,1.0,f +36231,100%,Monaco,1.0,f +30763,100%,,1.0,f +33817,100%,Gibraltar,62.0,f +1054,100%,Guinea,20.0,f +19369,80%,,1.0,f +42615,100%,Kenya,3.0,f +46099,98%,Uzbekistan,28.0,f +21403,95%,Vietnam,8.0,f +22679,100%,Barbados,5.0,f +31202,90%,Kiribati,107.0,f +31202,90%,Kiribati,107.0,f +31202,90%,Kiribati,107.0,f +31202,90%,Kiribati,107.0,f +31202,90%,Kiribati,107.0,f +31202,90%,Kiribati,107.0,f +31202,90%,Kiribati,107.0,f +31202,90%,Kiribati,107.0,f +34741,100%,Svalbard & Jan Mayen Islands,2.0,f +31202,90%,Kiribati,107.0,f +31202,90%,Kiribati,107.0,f +31202,90%,Kiribati,107.0,f +31202,90%,Kiribati,107.0,f +31202,90%,Kiribati,107.0,f +31202,90%,Kiribati,107.0,f +13111,100%,Finland,1.0,f +19925,100%,Tonga,1.0,f +22270,100%,,3.0,t +36409,100%,Canada,1.0,f +23256,100%,,6.0,f +24298,100%,,1.0,f +24646,100%,Barbados,1.0,f +18973,100%,Guinea,1.0,f +39596,100%,Cuba,1.0,t +29332,100%,,2.0,f +3286,100%,Estonia,1.0,f +36571,,,1.0,f +46915,,Lebanon,1.0,f +18525,80%,Croatia,2.0,f +27411,100%,,1.0,f +40793,100%,,75.0,t +18484,100%,Gambia,108.0,f +25147,99%,Niger,48.0,f +9392,100%,Niue,1.0,t +21452,99%,Lebanon,29.0,f +26687,100%,,1.0,f +35041,100%,Guinea,1.0,f +1748,86%,,1.0,f +47237,94%,Marshall Islands,5.0,f +31202,90%,Kiribati,107.0,f +21222,,Isle of Man,1.0,f +39335,100%,Suriname,2.0,f +20952,100%,Vanuatu,1.0,t +20597,,,1.0,f +11249,100%,Vanuatu,1.0,f +33160,90%,,1.0,t +811,78%,,1.0,f +14208,93%,,3.0,f +1207,100%,Nicaragua,7.0,f +26161,100%,Maldives,1.0,f +19940,100%,Greenland,1.0,f +31781,95%,Guinea,6.0,f +30806,70%,Guernsey,1.0,f +27826,98%,Saint Helena,5.0,f +45922,100%,,1.0,f +27826,98%,Saint Helena,5.0,f +20178,,Zimbabwe,1.0,f +35547,78%,Nicaragua,2.0,f +12823,100%,Niue,2.0,f +701,,,1.0,f +28774,100%,Montserrat,3.0,f +28222,67%,Kiribati,1.0,f +14358,100%,Maldives,9.0,f +25345,100%,Estonia,2.0,f +39025,100%,France,2.0,t +44479,100%,,1.0,f +18019,100%,Togo,2.0,f +23409,100%,,3.0,t +33819,80%,Mauritania,2.0,f +5615,100%,Guinea,5.0,f +1657,,Croatia,13.0,t +41843,,Lebanon,1.0,f +2299,90%,,1.0,f +45622,,Zimbabwe,1.0,f +34876,100%,Niue,2.0,f +28393,75%,Denmark,1.0,f +11251,100%,Libyan Arab Jamahiriya,2.0,f +24207,100%,Pakistan,3.0,f +15478,80%,,1.0,f +11362,100%,,3.0,f +49436,,,1.0,f +2845,,Kiribati,9.0,f +47452,85%,France,2.0,f +18649,100%,,1.0,f +48267,100%,Tonga,2.0,t +6564,,Uganda,9.0,f +32816,88%,Denmark,1.0,f +15910,100%,Micronesia,3.0,f +10108,50%,Denmark,1.0,f +50051,100%,Netherlands,5.0,t +13258,100%,Micronesia,1.0,f +222,89%,,16.0,f +42550,100%,,1.0,f +31459,100%,Gibraltar,2.0,f +9129,100%,,1.0,f +15236,100%,Kenya,1.0,t +43407,100%,Guinea,1.0,f +2280,100%,Niue,2.0,f +48975,100%,Malawi,1.0,f +26390,98%,Zimbabwe,5.0,f +45780,91%,Palestinian Territory,5.0,f +3112,94%,Indonesia,25.0,f +3112,94%,Indonesia,25.0,f +2774,,,1.0,t +5211,,Sao Tome and Principe,1.0,f +21907,80%,,1.0,f +303,100%,Pakistan,1.0,f +45172,100%,Denmark,1.0,t +7628,100%,,2.0,f +2796,100%,,1.0,f +5089,100%,,1.0,f +36998,92%,Lebanon,10.0,f +17257,,,1.0,f +32432,,Turks and Caicos Islands,4.0,f +41148,100%,Cape Verde,1.0,f +30503,100%,Venezuela,1.0,f +10968,,Nauru,1.0,f +27995,,Togo,2.0,f +16794,90%,Maldives,6.0,f +47448,100%,Gibraltar,1.0,t +16794,90%,Maldives,6.0,f +16794,90%,Maldives,6.0,f +48439,100%,Guinea,2.0,f +16794,90%,Maldives,6.0,f +16794,90%,Maldives,6.0,f +9562,100%,,1.0,t +16794,90%,Maldives,6.0,f +37778,92%,Tonga,24.0,f +48869,100%,Slovakia (Slovak Republic),22.0,f +6313,100%,El Salvador,1.0,f +31087,,Bouvet Island (Bouvetoya),2.0,f +25002,,China,12.0,f +19442,100%,Kenya,3.0,f +26591,67%,,1.0,f +11872,,,13.0,f +29834,100%,Montserrat,1.0,f +40540,,Cape Verde,7.0,f +49836,100%,,1.0,f +49725,100%,Turkmenistan,1.0,f +30953,100%,Uzbekistan,1.0,t +3212,100%,,1.0,f +46688,91%,Vanuatu,2.0,f +45211,100%,Micronesia,2.0,t +1942,100%,Tanzania,2.0,t +15910,100%,Micronesia,3.0,f +15910,100%,Micronesia,3.0,f +3709,,Gambia,1.0,f +15924,,Netherlands,1.0,f +33817,100%,Gibraltar,62.0,f +2193,98%,,7.0,f +46688,91%,Vanuatu,2.0,f +4122,100%,Micronesia,1.0,f +2193,98%,,7.0,f +5516,100%,Saint Helena,1.0,f +31873,99%,Uzbekistan,22.0,f +6000,100%,Cocos (Keeling) Islands,1.0,f +30855,100%,Turks and Caicos Islands,2.0,f +2850,,,1.0,f +23591,100%,Turkmenistan,8.0,t +34245,100%,,2.0,f +42961,,Pakistan,1.0,f +48991,76%,Bosnia and Herzegovina,7.0,t +33749,93%,Mauritania,7.0,f +12206,100%,Bouvet Island (Bouvetoya),2.0,f +8262,100%,Mauritania,6.0,f +35338,80%,,1.0,f +29247,100%,Guinea,1.0,t +49847,,,2.0,f +13856,60%,Afghanistan,2.0,f +49800,100%,Brazil,1.0,t +18254,60%,,1.0,f +20049,100%,,2.0,f +10686,86%,Tonga,21.0,f +42326,80%,Papua New Guinea,10.0,t +5098,60%,,1.0,f +18265,90%,Kiribati,1.0,f +39147,100%,Nicaragua,1.0,f +17075,100%,,2.0,t +46099,98%,Uzbekistan,28.0,f +46099,98%,Uzbekistan,28.0,f +49698,100%,,1.0,f +18247,95%,Iran,80.0,t +12556,100%,Micronesia,1.0,f +44426,100%,Wallis and Futuna,2.0,t +33312,100%,Svalbard & Jan Mayen Islands,2.0,t +34604,96%,Kenya,18.0,f +39548,100%,Estonia,1.0,t +18782,,Russian Federation,3.0,f +22670,93%,Philippines,4.0,f +26564,,Kenya,1.0,f +47406,,,1.0,f +20880,100%,Monaco,1.0,f +1698,,El Salvador,1.0,t +42493,100%,,2.0,t +8707,73%,Rwanda,21.0,t +30691,57%,Kenya,1.0,f +10510,100%,Micronesia,1.0,f +32524,100%,Nicaragua,1.0,t +8123,,,1.0,f +29133,100%,Gambia,4.0,f +14086,100%,,1.0,f +21452,99%,Lebanon,29.0,f +5970,100%,El Salvador,2.0,f +8737,100%,Lebanon,3.0,f +1261,100%,Malawi,3.0,t +44207,80%,Djibouti,8.0,t +33447,100%,,1.0,f +8357,33%,El Salvador,1.0,f +47486,100%,,1.0,f +19166,100%,Brazil,2.0,t +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +85,100%,Russian Federation,1.0,t +48869,100%,Slovakia (Slovak Republic),22.0,f +28322,,,2.0,f +11255,93%,Suriname,41.0,f +14514,,China,80.0,t +33840,100%,Saint Helena,2.0,t +22578,90%,Anguilla,1.0,f +33817,100%,Gibraltar,62.0,f +25460,100%,Maldives,13.0,f +26386,100%,Fiji,25.0,t +33193,100%,Brazil,10.0,f +25002,,China,12.0,f +33817,100%,Gibraltar,62.0,f +10961,100%,Guinea,1.0,f +25897,100%,,1.0,t +48495,100%,Guinea,1.0,f +32909,100%,Faroe Islands,2.0,f +21189,100%,,1.0,f +19214,100%,Senegal,55.0,f +433,100%,,1.0,f +17452,100%,Marshall Islands,2.0,f +12736,33%,French Guiana,1.0,f +31196,60%,Malta,1.0,f +21403,95%,Vietnam,8.0,f +34311,100%,Isle of Man,1.0,t +1674,100%,,1.0,t +1992,,,1.0,f +26386,100%,Fiji,25.0,t +45260,94%,,19.0,f +18077,100%,Sao Tome and Principe,139.0,f +24642,100%,,3.0,f +3921,98%,,14.0,f +39507,89%,,1.0,f +15976,100%,Micronesia,1.0,t +33817,100%,Gibraltar,62.0,f +33886,,Gambia,9.0,t +42158,100%,,15.0,f +42158,100%,,15.0,f +4477,90%,French Guiana,14.0,f +6564,,Uganda,9.0,f +40257,100%,Kenya,2.0,t +4518,100%,Niue,3.0,f +19682,100%,Faroe Islands,15.0,t +42966,100%,Zimbabwe,1.0,t +15245,100%,,11.0,f +19682,100%,Faroe Islands,15.0,t +29133,100%,Gambia,4.0,f +29133,100%,Gambia,4.0,f +8129,100%,Rwanda,5.0,f +19602,100%,Lithuania,24.0,f +18493,100%,Marshall Islands,1.0,f +47499,,Greenland,1.0,f +38320,,Costa Rica,2.0,t +26616,100%,Isle of Man,10.0,f +28369,90%,Sao Tome and Principe,9.0,f +44169,97%,Portugal,39.0,f +19444,100%,Sao Tome and Principe,1.0,f +48026,100%,,3.0,f +46652,100%,Zimbabwe,1.0,t +49649,100%,Russian Federation,4.0,f +25347,100%,,1.0,f +4267,100%,Senegal,22.0,t +777,0%,Micronesia,1.0,f +42340,,,2.0,f +23548,94%,Fiji,7.0,f +7486,100%,,2.0,f +1412,100%,,1.0,f +23548,94%,Fiji,7.0,f +33858,67%,,1.0,f +31158,99%,Suriname,11.0,f +46648,100%,Faroe Islands,4.0,t +38137,99%,Zimbabwe,16.0,f +38137,99%,Zimbabwe,16.0,f +11823,70%,,7.0,f +3946,96%,Anguilla,4.0,t +47055,100%,Togo,3.0,t +32495,100%,Tonga,9.0,f +32495,100%,Tonga,9.0,f +32495,100%,Tonga,9.0,f +20577,100%,,1.0,f +36331,,Sao Tome and Principe,3.0,f +19602,100%,Lithuania,24.0,f +34966,100%,Vanuatu,1.0,f +23582,98%,Montserrat,17.0,f +16907,100%,Cocos (Keeling) Islands,1.0,f +22205,90%,,1.0,f +49594,100%,Uganda,7.0,f +4722,96%,Guinea,13.0,t +49594,100%,Uganda,7.0,f +10135,100%,,1.0,f +5006,,Sao Tome and Principe,1.0,f +14228,100%,Marshall Islands,2.0,f +30929,100%,Turkmenistan,1.0,f +44533,100%,Afghanistan,5.0,f +31202,90%,Kiribati,107.0,f +31202,90%,Kiribati,107.0,f +28939,100%,Afghanistan,1.0,f +6356,100%,Guinea,1.0,t +37311,100%,,1.0,f +16593,100%,Chile,4.0,f +6285,100%,Micronesia,1.0,f +31092,,Senegal,19.0,f +5421,100%,,1.0,f +26823,100%,,2.0,f +34290,80%,Guinea,2.0,f +31092,,Senegal,19.0,f +675,89%,Reunion,1.0,f +13751,67%,Kiribati,1.0,f +43167,100%,French Guiana,1.0,t +10732,,Uganda,5.0,f +27137,,,1.0,f +3364,100%,Tanzania,1.0,f +15589,100%,Nicaragua,48.0,f +15589,100%,Nicaragua,48.0,f +35979,100%,Gambia,1.0,f +29136,86%,Svalbard & Jan Mayen Islands,1.0,f +27948,100%,Niue,4.0,f +33836,100%,Kenya,4.0,f +35461,100%,,1.0,t +31470,100%,Malta,2.0,f +31202,90%,Kiribati,107.0,f +18484,100%,Gambia,108.0,f +31202,90%,Kiribati,107.0,f +38865,100%,,2.0,t +9005,100%,,1.0,f +40032,100%,El Salvador,16.0,f +35159,100%,Lebanon,1.0,f +16489,100%,Russian Federation,42.0,t +31202,90%,Kiribati,107.0,f +49594,100%,Uganda,7.0,f +49384,100%,Slovakia (Slovak Republic),21.0,f +15589,100%,Nicaragua,48.0,f +15589,100%,Nicaragua,48.0,f +13986,,Anguilla,1.0,t +4682,100%,Vanuatu,5.0,f +37211,,Ghana,2.0,f +45498,100%,Indonesia,4.0,t +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +4411,,,1.0,f +35822,100%,Indonesia,2.0,f +43834,99%,Uganda,13.0,f +21066,100%,Svalbard & Jan Mayen Islands,2.0,f +898,50%,,2.0,f +17515,100%,Philippines,5.0,f +35091,100%,Zimbabwe,3.0,f +38821,,,1.0,f +773,100%,,1.0,f +42756,,Denmark,1.0,f +36434,100%,United Kingdom,1.0,f +40631,80%,,1.0,t +12989,100%,Gambia,2.0,f +21908,100%,Niue,49.0,f +38924,100%,Denmark,1.0,f +34604,96%,Kenya,18.0,f +10820,100%,Croatia,1.0,f +4650,100%,,3.0,f +20165,94%,Ukraine,30.0,f +4491,100%,,1.0,f +42437,,El Salvador,1.0,f +16154,100%,,1.0,f +39890,100%,Gambia,4.0,f +21906,,Niue,1.0,f +41741,100%,Brazil,9.0,t +39928,100%,,1.0,f +26351,100%,,2.0,f +22078,,Indonesia,20.0,f +26075,100%,Pakistan,1.0,f +15356,80%,Denmark,2.0,f +13397,,,1.0,f +43207,100%,Venezuela,1.0,f +12461,100%,Russian Federation,1.0,t +3245,100%,,1.0,f +35682,100%,Croatia,1.0,f +15068,100%,Sao Tome and Principe,1.0,f +22585,100%,Togo,3.0,f +16489,100%,Russian Federation,42.0,t +43163,100%,,1.0,f +36029,100%,Guinea,1.0,f +28784,100%,Gambia,1.0,f +15452,90%,Niue,2.0,f +24930,50%,,1.0,f +41995,100%,Reunion,5.0,f +5296,100%,Mauritania,4.0,f +40993,100%,Montserrat,15.0,f +40993,100%,Montserrat,15.0,f +898,50%,,2.0,f +37229,100%,Tanzania,2.0,f +356,99%,Wallis and Futuna,32.0,t +20153,96%,Reunion,51.0,f +38319,100%,Nicaragua,20.0,f +21785,100%,,1.0,t +47055,100%,Togo,3.0,t +25002,,China,12.0,f +20153,96%,Reunion,51.0,f +28065,,Rwanda,4.0,f +28369,90%,Sao Tome and Principe,9.0,f +10357,100%,Indonesia,1.0,t +4485,95%,China,7.0,t +44197,,Sao Tome and Principe,1.0,f +31542,100%,Isle of Man,3.0,f +43590,100%,Costa Rica,9.0,f +35988,100%,Niue,1.0,f +49017,,Turkmenistan,1.0,f +19807,100%,United Kingdom,1.0,f +9421,100%,,5.0,f +39658,100%,,4.0,f +30344,100%,Chile,1.0,t +5693,100%,Croatia,1.0,f +39890,100%,Gambia,4.0,f +47715,,Rwanda,2.0,f +39261,100%,Marshall Islands,1.0,f +9070,90%,Isle of Man,1.0,f +39658,100%,,4.0,f +39890,100%,Gambia,4.0,f +43395,100%,Somalia,1.0,f +39890,100%,Gambia,4.0,f +45525,93%,Tonga,9.0,f +18077,100%,Sao Tome and Principe,139.0,f +1169,,Guinea,3.0,f +2917,100%,,1.0,f +5057,100%,Zimbabwe,23.0,t +8790,100%,Micronesia,1.0,f +27805,100%,,1.0,f +21493,,Uzbekistan,6.0,f +39778,100%,,2.0,t +29012,100%,Tanzania,4.0,t +13782,100%,Mauritania,1.0,f +1054,100%,Guinea,20.0,f +22647,100%,Uzbekistan,1.0,f +29012,100%,Tanzania,4.0,t +14228,100%,Marshall Islands,2.0,f +31324,100%,Isle of Man,2.0,f +17114,100%,France,2.0,t +41655,100%,,2.0,f +25729,100%,Cuba,2.0,f +2355,100%,Turks and Caicos Islands,1.0,f +22670,93%,Philippines,4.0,f +49384,100%,Slovakia (Slovak Republic),21.0,f +43152,100%,Nicaragua,82.0,t +24256,80%,Brazil,2.0,f +24256,80%,Brazil,2.0,f +28951,100%,Venezuela,1.0,t +19905,97%,Monaco,8.0,f +41608,,Montserrat,1.0,f +28766,100%,Estonia,16.0,f +33581,100%,Svalbard & Jan Mayen Islands,2.0,f +47165,100%,Nicaragua,1.0,t +26804,100%,Tonga,1.0,f +19039,94%,Bahrain,17.0,f +12950,100%,,3.0,f +24962,100%,Uzbekistan,1.0,f +36611,71%,Maldives,14.0,f +26964,100%,,1.0,f +45426,100%,France,2.0,f +37676,90%,Congo,7.0,t +41570,90%,Micronesia,1.0,f +22552,67%,Estonia,1.0,t +44367,91%,Brazil,12.0,f +48869,100%,Slovakia (Slovak Republic),22.0,f +2193,98%,,7.0,f +29193,83%,,1.0,t +2193,98%,,7.0,f +25862,100%,,1.0,t +49097,67%,Niger,5.0,t +2193,98%,,7.0,f +4316,100%,Micronesia,18.0,f +16593,100%,Chile,4.0,f +10215,100%,,1.0,f +11095,,Greenland,1.0,f +27829,100%,,2.0,t +42717,100%,Kenya,1.0,f +29671,100%,Niue,1.0,f +35663,78%,Gambia,1.0,f +10388,100%,,2.0,f +8129,100%,Rwanda,5.0,f +4761,89%,,1.0,f +36634,100%,Uganda,4.0,f +40993,100%,Montserrat,15.0,f +14912,100%,Papua New Guinea,1.0,t +38137,99%,Zimbabwe,16.0,f +26758,100%,,1.0,t +38137,99%,Zimbabwe,16.0,f +3636,,,1.0,f +35522,100%,Kiribati,10.0,f +41484,89%,Anguilla,23.0,f +49785,,Ghana,9.0,f +19077,100%,France,3.0,f +33125,50%,,1.0,f +20869,,Chile,1.0,f +23034,99%,Monaco,54.0,f +27466,100%,Isle of Man,2.0,t +27228,100%,Isle of Man,7.0,f +16121,100%,Malta,1.0,f +45414,100%,Gibraltar,1.0,f +27228,100%,Isle of Man,7.0,f +18077,100%,Sao Tome and Principe,139.0,f +49925,100%,Jersey,1.0,t +44016,100%,Gibraltar,2.0,f +10388,100%,,2.0,f +42036,100%,,1.0,f +8129,100%,Rwanda,5.0,f +25567,100%,,4.0,t +22187,100%,Lithuania,1.0,f +37858,92%,Anguilla,7.0,f +27228,100%,Isle of Man,7.0,f +46669,86%,Brazil,11.0,f +15843,100%,Slovakia (Slovak Republic),18.0,f +24281,100%,,1.0,t +8154,100%,,4.0,f +33215,100%,Guinea,1.0,f +10686,86%,Tonga,21.0,f +48922,100%,Niue,2.0,f +42725,100%,Spain,3.0,t +14303,100%,Svalbard & Jan Mayen Islands,1.0,f +4267,100%,Senegal,22.0,t +15245,100%,,11.0,f +2994,100%,El Salvador,1.0,t +15157,100%,Nicaragua,1.0,f +28430,100%,,1.0,t +26986,100%,Jersey,20.0,f +21529,100%,Uzbekistan,2.0,t +26986,100%,Jersey,20.0,f +32584,100%,Kiribati,5.0,f +26986,100%,Jersey,20.0,f +48585,100%,Kiribati,8.0,f +15156,80%,El Salvador,1.0,f +13267,,,1.0,f +11640,100%,Zimbabwe,1.0,f +32153,100%,Isle of Man,3.0,f +44624,,,1.0,f +38948,100%,Turks and Caicos Islands,1.0,f +30134,100%,Uzbekistan,3.0,f +25147,99%,Niger,48.0,f +29089,100%,Vietnam,1.0,f +47419,100%,Guinea,1.0,f +16651,100%,Guinea,21.0,f +24352,100%,Guinea,2.0,f +32826,100%,French Guiana,1.0,f +24701,100%,Lebanon,1.0,f +12522,100%,Mauritania,1.0,f +10120,100%,Lithuania,2.0,f +6999,100%,Brazil,1.0,f +36206,86%,Russian Federation,10.0,f +1183,,,2.0,f +22703,,China,2.0,f +38471,100%,Guinea,2.0,f +26449,100%,Micronesia,1.0,f +453,,Kenya,1.0,f +27466,100%,Isle of Man,2.0,t +38787,,Faroe Islands,10.0,f +31054,100%,,1.0,f +27883,100%,Cuba,11.0,f +44937,100%,Puerto Rico,19.0,t +16942,100%,Uganda,2.0,f +26713,,Afghanistan,4.0,t +19067,100%,Puerto Rico,2.0,f +49112,100%,Svalbard & Jan Mayen Islands,1.0,f +1340,100%,Niue,1.0,f +16803,100%,Brazil,2.0,t +10942,96%,Uganda,3.0,f +33198,100%,Mauritania,12.0,f +3238,100%,,1.0,t +39580,100%,Tonga,3.0,f +9823,100%,Nicaragua,1.0,f +42869,,El Salvador,9.0,f +14460,,Uzbekistan,2.0,f +36690,100%,Afghanistan,2.0,f +30363,,,1.0,f +45480,100%,Guernsey,3.0,t +1018,,,1.0,f +8110,,Papua New Guinea,1.0,f +30688,,Bosnia and Herzegovina,1.0,f +16534,100%,,1.0,f +22894,100%,,1.0,f +36634,100%,Uganda,4.0,f +2901,100%,Turkmenistan,1.0,t +40993,100%,Montserrat,15.0,f +7009,100%,Isle of Man,9.0,f +28959,99%,,7.0,f +26488,100%,Isle of Man,10.0,f +49785,,Ghana,9.0,f +44689,100%,Venezuela,3.0,f +18464,,Anguilla,1.0,f +27928,100%,,4.0,f +25460,100%,Maldives,13.0,f +15493,100%,Tonga,1.0,f +42075,100%,Zimbabwe,1.0,f +33417,100%,,1.0,f +31469,100%,Mauritania,1.0,f +22670,93%,Philippines,4.0,f +721,100%,,1.0,f +41484,89%,Anguilla,23.0,f +12732,,France,1.0,f +18077,100%,Sao Tome and Principe,139.0,f +22364,100%,Denmark,2.0,f +5420,100%,Tonga,41.0,f +2354,100%,Marshall Islands,4.0,t +26980,100%,Tonga,2.0,f +1273,100%,Lithuania,3.0,f +41417,,,1.0,f +15005,100%,El Salvador,1.0,t +44194,100%,Indonesia,5.0,t +8783,100%,,1.0,f +24033,100%,Uganda,45.0,f +24033,100%,Uganda,45.0,f +28828,100%,Isle of Man,198.0,t +41784,100%,Rwanda,3.0,f +49429,99%,Bosnia and Herzegovina,49.0,f +23034,99%,Monaco,54.0,f +28614,50%,,1.0,f +32461,0%,Portugal,1.0,f +21220,100%,Uganda,5.0,f +23572,100%,,1.0,f +29133,100%,Gambia,4.0,f +49429,99%,Bosnia and Herzegovina,49.0,f +14514,,China,80.0,t +18428,100%,Niue,2.0,t +1835,100%,Ecuador,8.0,f +38134,100%,Rwanda,1.0,f +4912,100%,Pakistan,2.0,f +29424,100%,Sao Tome and Principe,1.0,f +15843,100%,Slovakia (Slovak Republic),18.0,f +20244,100%,,1.0,t +10038,100%,,1.0,t +44380,100%,Maldives,2.0,t +18077,100%,Sao Tome and Principe,139.0,f +25147,99%,Niger,48.0,f +15527,,Fiji,1.0,f +1964,100%,Netherlands,1.0,f +18077,100%,Sao Tome and Principe,139.0,f +49987,100%,,19.0,f +19019,97%,Nicaragua,1484.0,f +33896,100%,Kenya,1.0,f +42326,80%,Papua New Guinea,10.0,t +39004,100%,Kiribati,2.0,f +10686,86%,Tonga,21.0,f +42326,80%,Papua New Guinea,10.0,t +18058,100%,,1.0,t +3467,100%,,1.0,t +33979,83%,Reunion,4.0,f +31999,100%,Gibraltar,1.0,f +33433,100%,Rwanda,9.0,f +40140,90%,Marshall Islands,3.0,f +22634,100%,Gambia,3.0,f +46056,,Estonia,3.0,f +31055,64%,Niue,2.0,f +16260,100%,United Kingdom,4.0,t +9298,100%,Pakistan,15.0,f +38299,100%,Gambia,1.0,f +25668,100%,Jersey,12.0,t +9298,100%,Pakistan,15.0,f +9298,100%,Pakistan,15.0,f +31431,100%,Kiribati,2.0,t +14359,,,1.0,t +36829,,Puerto Rico,1.0,f +45726,90%,Togo,3.0,f +38137,99%,Zimbabwe,16.0,f +30438,100%,,1.0,f +38137,99%,Zimbabwe,16.0,f +40032,100%,El Salvador,16.0,f +15341,100%,Reunion,4.0,t +49990,100%,,1.0,f +43007,,,1.0,f +42416,97%,Puerto Rico,20.0,f +10686,86%,Tonga,21.0,f +10656,100%,,1.0,t +24554,100%,,2.0,f +48776,100%,Andorra,1.0,t +8238,91%,Barbados,15.0,t +32761,80%,,1.0,f +46822,98%,,12.0,f +26452,100%,Micronesia,2.0,f +34245,100%,,2.0,f +1913,100%,Niue,2.0,f +18346,100%,Mauritania,1.0,t +8952,100%,Montserrat,4.0,t +31282,,Djibouti,1.0,f +20900,100%,Uganda,2.0,t +3071,100%,Indonesia,1.0,f +16549,100%,Costa Rica,1.0,f +9363,95%,Ukraine,50.0,f +34804,,,1.0,f +18955,90%,Denmark,3.0,f +28166,0%,Puerto Rico,2.0,f +49568,100%,Niue,2.0,f +28166,0%,Puerto Rico,2.0,f +34953,100%,Uzbekistan,4.0,t +42416,97%,Puerto Rico,20.0,f +2354,100%,Marshall Islands,4.0,t +23469,100%,Nicaragua,116.0,f +22077,100%,Mauritania,10.0,f +29123,100%,Zimbabwe,16.0,t +23469,100%,Nicaragua,116.0,f +23469,100%,Nicaragua,116.0,f +48876,90%,Uzbekistan,1.0,f +2325,100%,Mexico,2.0,f +39283,100%,Uganda,13.0,f +35365,,Sao Tome and Principe,2.0,t +30283,100%,Brazil,15.0,f +23469,100%,Nicaragua,116.0,f +38,90%,,1.0,f +49384,100%,Slovakia (Slovak Republic),21.0,f +6334,100%,Marshall Islands,3.0,f +23469,100%,Nicaragua,116.0,f +23469,100%,Nicaragua,116.0,f +541,93%,Marshall Islands,17.0,f +26278,100%,Jersey,2.0,f +23469,100%,Nicaragua,116.0,f +23469,100%,Nicaragua,116.0,f +2354,100%,Marshall Islands,4.0,t +18830,100%,Kenya,1.0,f +23469,100%,Nicaragua,116.0,f +23469,100%,Nicaragua,116.0,f +23469,100%,Nicaragua,116.0,f +30958,,Ghana,1.0,f +23469,100%,Nicaragua,116.0,f +23469,100%,Nicaragua,116.0,f +23469,100%,Nicaragua,116.0,f +23469,100%,Nicaragua,116.0,f +8765,,Montserrat,1.0,f +946,100%,,2.0,t +10686,86%,Tonga,21.0,f +25240,100%,Gibraltar,2.0,t +36443,100%,Tonga,1.0,t +39019,100%,,2.0,f +32791,,,3.0,f +23469,100%,Nicaragua,116.0,f +49176,,,1.0,t +23469,100%,Nicaragua,116.0,f +23469,100%,Nicaragua,116.0,f +13002,100%,Russian Federation,1.0,f +23469,100%,Nicaragua,116.0,f +44357,100%,Kiribati,1.0,f +32408,100%,France,1.0,f +41817,,,1.0,f +3033,100%,,1.0,f +12480,100%,Jersey,1.0,t +29417,80%,,1.0,f +44248,100%,,1.0,f +4312,100%,Tanzania,1.0,f +455,100%,Uganda,5.0,f +30123,100%,,2.0,f +29562,100%,Indonesia,1.0,f +29859,93%,Guinea,4.0,t +46099,98%,Uzbekistan,28.0,f +3921,98%,,14.0,f +46099,98%,Uzbekistan,28.0,f +46099,98%,Uzbekistan,28.0,f +3921,98%,,14.0,f +36176,33%,Micronesia,1.0,f +3921,98%,,14.0,f +4079,87%,Iran,5.0,t +23469,100%,Nicaragua,116.0,f +7456,100%,France,2.0,f +6731,100%,El Salvador,1.0,f +42721,100%,Netherlands,1.0,f +29368,100%,Kiribati,4.0,f +21937,100%,Indonesia,1.0,t +48603,100%,Guinea,40.0,f +22364,100%,Denmark,2.0,f +41630,100%,Kiribati,24.0,f +15304,100%,Korea,1.0,f +32370,100%,Costa Rica,3.0,t +22857,100%,,2.0,t +22386,100%,Micronesia,1.0,t +41395,100%,,3.0,f +40718,100%,Tonga,1.0,t +31890,100%,,1.0,t +28065,,Rwanda,4.0,f +42471,100%,Fiji,1.0,f +48603,100%,Guinea,40.0,f +27497,100%,,1.0,f +18337,89%,,1.0,f +5591,99%,Indonesia,16.0,t +22320,100%,Denmark,1.0,f +21790,100%,El Salvador,1.0,t +48603,100%,Guinea,40.0,f +38301,90%,Spain,2.0,f +44811,100%,Monaco,1.0,t +48603,100%,Guinea,40.0,f +41386,,Turkmenistan,1.0,f +41630,100%,Kiribati,24.0,f +14771,100%,Tunisia,1.0,f +49507,100%,Ecuador,1.0,f +9635,100%,,2.0,f +38179,100%,Netherlands,1.0,f +7863,100%,Russian Federation,2.0,t +15024,100%,Puerto Rico,3.0,f +12826,100%,,2.0,f +29451,33%,Croatia,1.0,t +22480,,Anguilla,1.0,t +43360,100%,Denmark,2.0,f +7031,100%,South Georgia and the South Sandwich Islands,3.0,f +1168,80%,,1.0,f +16676,100%,Indonesia,2.0,t +46030,100%,Togo,4.0,f +568,,Micronesia,1.0,f +40550,,,1.0,t +11266,100%,Monaco,1.0,t +47274,100%,Tonga,48.0,f +6239,100%,,3.0,f +17897,100%,Kiribati,1.0,f +37303,,,1.0,f +46612,100%,Anguilla,1.0,f +9363,95%,Ukraine,50.0,f +5180,100%,Sao Tome and Principe,1.0,f +45139,100%,Uzbekistan,1.0,f +6918,75%,Faroe Islands,1.0,t +16997,,Rwanda,1.0,f +49116,100%,,1.0,f +23039,100%,,1.0,f +27601,100%,,1.0,f +10494,90%,United Kingdom,1.0,f +33170,100%,Tonga,2.0,t +9153,100%,Papua New Guinea,1.0,f +17953,,,1.0,t +17131,,Anguilla,1.0,f +46049,100%,El Salvador,2.0,f +22499,100%,Togo,1.0,t +36524,100%,Saint Helena,8.0,t +9856,100%,Uzbekistan,2.0,t +10833,100%,Turkmenistan,4.0,f +5097,100%,Barbados,1.0,f +32199,100%,Cuba,2.0,f +40261,100%,Jersey,1.0,f +42869,,El Salvador,9.0,f +40078,100%,Croatia,7.0,t +10220,100%,Kenya,1.0,t +7351,100%,,1.0,f +11872,,,13.0,f +30283,100%,Brazil,15.0,f +10351,98%,El Salvador,15.0,f +12192,100%,,1.0,f +34898,,,1.0,f +39810,90%,Russian Federation,1.0,t +40249,100%,,1.0,t +30954,100%,Niue,1.0,f +14568,80%,,2.0,f +24071,100%,Indonesia,22.0,f +5306,100%,,1.0,f +42310,100%,Ecuador,6.0,t +27662,100%,Brazil,2.0,f +48603,100%,Guinea,40.0,f +30799,100%,Zimbabwe,2.0,t +3389,100%,Estonia,13.0,f +24944,100%,,1.0,f +48603,100%,Guinea,40.0,f +19242,60%,Lithuania,2.0,t +4535,,Croatia,5.0,f +14345,50%,,1.0,f +16019,100%,,1.0,f +12988,98%,Pakistan,5.0,f +36834,100%,Slovakia (Slovak Republic),1.0,f +64,100%,Marshall Islands,1.0,f +28848,100%,Uganda,9.0,f +47525,100%,,2.0,t +3389,100%,Estonia,13.0,f +28502,100%,Niue,1.0,t +42940,100%,Afghanistan,1.0,f +6302,100%,Peru,1.0,f +47274,100%,Tonga,48.0,f +41484,89%,Anguilla,23.0,f +42990,80%,Uzbekistan,3.0,f +18025,78%,Puerto Rico,1.0,f +88,,Rwanda,2.0,f +5435,100%,,2.0,f +47606,100%,Togo,17.0,f +38832,97%,,15.0,f +26261,100%,Turks and Caicos Islands,1.0,f +27953,100%,Cocos (Keeling) Islands,3.0,t +21220,100%,Uganda,5.0,f +27953,100%,Cocos (Keeling) Islands,3.0,t +9635,100%,,2.0,f +18077,100%,Sao Tome and Principe,139.0,f +29841,100%,,1.0,f +11871,78%,,1.0,f +49384,100%,Slovakia (Slovak Republic),21.0,f +18371,,Faroe Islands,1.0,t +25142,100%,,2.0,f +4217,,Kenya,52.0,f +38646,70%,,2.0,t +8437,99%,Maldives,6.0,f +20735,100%,Marshall Islands,1.0,f +35814,,El Salvador,1.0,f +28959,99%,,7.0,f +15600,0%,Marshall Islands,1.0,f +36984,100%,,2.0,f +4797,100%,,1.0,f +11630,100%,,1.0,f +43929,89%,Vietnam,3.0,f +48760,98%,Ghana,24.0,f +47890,100%,,1.0,f +4048,100%,,1.0,f +24245,90%,Senegal,1.0,t +32791,,,3.0,f +26488,100%,Isle of Man,10.0,f +26488,100%,Isle of Man,10.0,f +37499,100%,French Guiana,4.0,t +5695,100%,Tanzania,1.0,f +42674,70%,Niue,1.0,f +46280,100%,Vanuatu,1.0,f +29965,100%,Russian Federation,3.0,f +19019,97%,Nicaragua,1484.0,f +48133,,Isle of Man,45.0,f +34663,100%,French Guiana,1.0,t +49431,,Reunion,1.0,f +40858,100%,France,1.0,f +22679,100%,Barbados,5.0,f +33670,100%,Russian Federation,2.0,f +5675,100%,Lebanon,2.0,f +21637,,Russian Federation,2.0,f +13373,100%,Denmark,2.0,f +9772,100%,Marshall Islands,3.0,t +38045,97%,Uzbekistan,7.0,f +31155,90%,,1.0,f +31158,99%,Suriname,11.0,f +11872,,,13.0,f +13892,90%,Sao Tome and Principe,2.0,f +22376,100%,Vanuatu,6.0,f +35365,,Sao Tome and Principe,2.0,t +4871,,Mauritania,2.0,f +28774,100%,Montserrat,3.0,f +5870,,,1.0,f +648,,Zimbabwe,1.0,f +43054,,,2.0,f +24741,100%,Guinea,2.0,t +24741,100%,Guinea,2.0,t +27366,100%,Uzbekistan,9.0,t +14358,100%,Maldives,9.0,f +33639,100%,Turks and Caicos Islands,2.0,f +19039,94%,Bahrain,17.0,f +11677,100%,,8.0,f +36640,100%,Uganda,6.0,f +11677,100%,,8.0,f +38620,100%,,1.0,f +35932,100%,,1.0,f +48372,100%,Barbados,12.0,t +46563,50%,,1.0,t +25147,99%,Niger,48.0,f +22585,100%,Togo,3.0,f +19039,94%,Bahrain,17.0,f +19039,94%,Bahrain,17.0,f +1240,,,1.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +27785,100%,Uzbekistan,58.0,f +21771,100%,Wallis and Futuna,3.0,f +13985,100%,Somalia,1.0,f +12137,99%,Sao Tome and Principe,33.0,t +43237,40%,Montserrat,24.0,f +7239,,Micronesia,1.0,f +45095,,Niue,1.0,f +42512,90%,Guinea,1.0,f +27785,100%,Uzbekistan,58.0,f +4535,,Croatia,5.0,f +37678,,Tonga,1.0,f +4535,,Croatia,5.0,f +23582,98%,Montserrat,17.0,f +25234,,,1.0,f +4535,,Croatia,5.0,f +27785,100%,Uzbekistan,58.0,f +4535,,Croatia,5.0,f +18077,100%,Sao Tome and Principe,139.0,f +38736,80%,Zimbabwe,2.0,f +27785,100%,Uzbekistan,58.0,f +38169,100%,Pakistan,3.0,f +45699,100%,Denmark,2.0,f +21771,100%,Wallis and Futuna,3.0,f +19602,100%,Lithuania,24.0,f +8437,99%,Maldives,6.0,f +6408,100%,Brazil,1.0,t +21771,100%,Wallis and Futuna,3.0,f +27785,100%,Uzbekistan,58.0,f +28241,97%,Maldives,10.0,f +17636,100%,,1.0,t +49429,99%,Bosnia and Herzegovina,49.0,f +19602,100%,Lithuania,24.0,f +8782,56%,Switzerland,1.0,f +41652,90%,,2.0,f +28369,90%,Sao Tome and Principe,9.0,f +38169,100%,Pakistan,3.0,f +9901,,Tonga,1.0,f +49429,99%,Bosnia and Herzegovina,49.0,f +33733,90%,,2.0,f +2445,100%,El Salvador,1.0,t +34650,,Cook Islands,1.0,f +44799,100%,Togo,2.0,f +7165,100%,Brazil,5.0,t +43834,99%,Uganda,13.0,f +44486,100%,,2.0,f +33709,100%,,2.0,f +126,,China,2.0,f +11056,100%,Uzbekistan,3.0,f +38343,,,1.0,f +46824,,Sao Tome and Principe,3.0,f +3337,100%,Nicaragua,1.0,f +23469,100%,Nicaragua,116.0,f +32945,100%,,1.0,f +45598,83%,China,17.0,f +36821,,Vietnam,2.0,f +11222,100%,,1.0,f +44628,100%,Uzbekistan,1.0,f +49289,50%,Gambia,3.0,f +38439,100%,Micronesia,1.0,f +34852,,Niue,10.0,t +34781,,,1.0,t +47775,100%,French Guiana,6.0,f +18484,100%,Gambia,108.0,f +7269,100%,,2.0,f +48980,100%,Mauritania,2.0,f +23839,100%,France,1.0,f +13277,100%,Rwanda,2.0,t +2279,100%,,1.0,t +38137,99%,Zimbabwe,16.0,f +4005,100%,French Guiana,2.0,f +22233,100%,,3.0,f +26415,100%,,1.0,t +7962,100%,,1.0,f +6107,90%,Kiribati,4.0,f +33666,100%,,1.0,f +31561,90%,Estonia,1.0,f +8972,100%,,1.0,f +7330,100%,Vanuatu,1.0,f +40640,,Sao Tome and Principe,1.0,f +28828,100%,Isle of Man,198.0,t +29368,100%,Kiribati,4.0,f +946,100%,,2.0,t +42869,,El Salvador,9.0,f +16406,100%,Bouvet Island (Bouvetoya),16.0,f +36941,100%,Uzbekistan,3.0,t +41540,100%,,1.0,f +25638,100%,,2.0,f +38270,100%,Maldives,6.0,f +41981,100%,Mauritania,3.0,f +42952,100%,,1.0,t +35281,33%,,2.0,f +28959,99%,,7.0,f +49758,100%,Sao Tome and Principe,1.0,f +10219,100%,Lebanon,1.0,t +9677,100%,Nicaragua,1.0,f +39220,100%,Lithuania,1.0,f +6711,100%,Spain,3.0,f +20334,99%,Niger,171.0,t +25687,100%,Anguilla,17.0,f +24033,100%,Uganda,45.0,f +19830,,Sao Tome and Principe,2.0,f +26526,94%,Tonga,8.0,f +20258,100%,,3.0,f +33817,100%,Gibraltar,62.0,f +25687,100%,Anguilla,17.0,f +11384,90%,Sao Tome and Principe,2.0,f +49429,99%,Bosnia and Herzegovina,49.0,f +29645,100%,,1.0,t +34025,,Nicaragua,6.0,f +36470,100%,Bosnia and Herzegovina,1.0,f +22338,100%,Turks and Caicos Islands,2.0,t +19985,100%,,1.0,f +11318,100%,,1.0,f +5544,,Chad,1.0,f +49429,99%,Bosnia and Herzegovina,49.0,f +33938,100%,United Kingdom,2.0,f +21403,95%,Vietnam,8.0,f +26524,100%,Guinea,2.0,t +20427,83%,,2.0,f +49429,99%,Bosnia and Herzegovina,49.0,f +4316,100%,Micronesia,18.0,f +24267,100%,,1.0,f +13749,100%,Estonia,1.0,f +21519,100%,Jersey,3.0,f +11777,100%,,1.0,f +46844,100%,Sao Tome and Principe,1.0,f +21608,50%,Christmas Island,2.0,f +28076,86%,,1.0,f +25687,100%,Anguilla,17.0,f +37249,,Malta,1.0,f +12330,,Bouvet Island (Bouvetoya),1.0,f +25687,100%,Anguilla,17.0,f +8587,100%,Gambia,1.0,t +49384,100%,Slovakia (Slovak Republic),21.0,f +19602,100%,Lithuania,24.0,f +43719,,China,1.0,f +24033,100%,Uganda,45.0,f +16567,100%,Russian Federation,4.0,f +25687,100%,Anguilla,17.0,f +26811,,,1.0,f +25687,100%,Anguilla,17.0,f +25687,100%,Anguilla,17.0,f +12369,90%,Russian Federation,2.0,f +4330,94%,Ukraine,60.0,t +8601,,Angola,16.0,f +19282,100%,Niue,1.0,f +24594,100%,Rwanda,14.0,f +18828,100%,Ecuador,2.0,t +34436,100%,,1.0,f +24016,100%,Bosnia and Herzegovina,29.0,f +11303,100%,Bosnia and Herzegovina,1.0,f +40969,100%,Mauritania,5.0,f +11773,70%,,1.0,f +29580,100%,Russian Federation,3.0,f +7305,,,1.0,f +40969,100%,Mauritania,5.0,f +14993,100%,Chile,1.0,f +49429,99%,Bosnia and Herzegovina,49.0,f +35076,91%,Palestinian Territory,1.0,f +28141,83%,Uzbekistan,2.0,t +40969,100%,Mauritania,5.0,f +21682,100%,United Kingdom,2.0,f +41819,100%,Congo,1.0,f +40969,100%,Mauritania,5.0,f +9098,100%,Turks and Caicos Islands,1.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +40969,100%,Mauritania,5.0,f +16462,,Sao Tome and Principe,1.0,f +14216,100%,Tanzania,1.0,f +6631,100%,El Salvador,1.0,f +44906,100%,,1.0,f +10711,93%,Uganda,108.0,t +28414,100%,Uzbekistan,22.0,f +35000,67%,,1.0,f +15620,95%,Marshall Islands,5.0,f +47274,100%,Tonga,48.0,f +47991,100%,Niue,1.0,f +44316,98%,Uganda,6.0,t +19442,100%,Kenya,3.0,f +28334,100%,,3.0,f +14147,,Kiribati,1.0,f +6737,100%,Isle of Man,2.0,f +23443,100%,,1.0,f +34543,100%,Mauritania,2.0,t +40536,100%,Costa Rica,1.0,f +41721,100%,Turkmenistan,1.0,f +49020,,,1.0,f +16377,,Gambia,5.0,f +25120,100%,,1.0,f +16243,,Lebanon,3.0,f +43227,,China,1.0,f +35507,100%,,1.0,f +3032,75%,Andorra,1.0,f +40623,100%,Holy See (Vatican City State),2.0,t +38137,99%,Zimbabwe,16.0,f +7407,,,7.0,t +42081,,Mauritania,1.0,t +41147,,,1.0,t +36766,100%,Malta,1.0,f +2889,100%,Uganda,1.0,t +43852,100%,Bhutan,3.0,f +9343,100%,Afghanistan,10.0,t +2983,100%,,1.0,f +9723,100%,Rwanda,3.0,t +14514,,China,80.0,t +27432,100%,Uganda,1.0,f +8501,,Montserrat,1.0,f +5906,60%,,1.0,f +39239,100%,,1.0,f +22270,100%,,3.0,t +5771,98%,Vietnam,8.0,f +34102,100%,Nicaragua,6.0,f +36967,100%,Barbados,7.0,t +18821,100%,Mauritania,1.0,f +49513,100%,Denmark,2.0,f +16489,100%,Russian Federation,42.0,t +39781,100%,Brazil,1.0,t +36967,100%,Barbados,7.0,t +36967,100%,Barbados,7.0,t +19142,90%,Niger,9.0,f +41770,100%,,1.0,t +45567,100%,,1.0,f +39383,78%,France,3.0,t +8409,98%,Maldives,9.0,f +46669,86%,Brazil,11.0,f +18484,100%,Gambia,108.0,f +40306,,Anguilla,1.0,t +8473,100%,,1.0,f +9630,100%,,13.0,f +9630,100%,,13.0,f +9630,100%,,13.0,f +9630,100%,,13.0,f +9630,100%,,13.0,f +9630,100%,,13.0,f +32676,100%,China,34.0,f +34862,100%,Uzbekistan,1.0,f +35833,83%,Estonia,9.0,t +28774,100%,Montserrat,3.0,f +13837,,,1.0,f +12044,100%,Switzerland,2.0,f +1619,100%,Malta,1.0,f +2844,98%,Marshall Islands,12.0,f +43422,100%,Canada,1.0,f +41484,89%,Anguilla,23.0,f +25002,,China,12.0,f +49384,100%,Slovakia (Slovak Republic),21.0,f +32676,100%,China,34.0,f +6334,100%,Marshall Islands,3.0,f +27392,90%,Sao Tome and Principe,1.0,f +35977,100%,Marshall Islands,1.0,f +28642,100%,Russian Federation,1.0,f +25222,80%,Kenya,11.0,t +25958,100%,Tonga,3.0,f +25350,100%,,2.0,f +49429,99%,Bosnia and Herzegovina,49.0,f +34836,,,1.0,t +22721,100%,Ecuador,109.0,f +25222,80%,Kenya,11.0,t +49384,100%,Slovakia (Slovak Republic),21.0,f +24071,100%,Indonesia,22.0,f +18300,100%,,1.0,f +32504,100%,Gambia,1.0,f +24565,100%,Anguilla,4.0,f +35833,83%,Estonia,9.0,t +25455,,French Guiana,1.0,f +48067,100%,Indonesia,1.0,f +28369,90%,Sao Tome and Principe,9.0,f +24732,50%,Gibraltar,1.0,t +21623,100%,Maldives,1.0,f +46611,94%,,7.0,f +8908,100%,,2.0,f +29368,100%,Kiribati,4.0,f +36640,100%,Uganda,6.0,f +35631,,Togo,1.0,f +19214,100%,Senegal,55.0,f +25046,100%,Maldives,14.0,f +24656,100%,Finland,4.0,t +15028,100%,Kenya,1.0,f +20495,100%,Anguilla,1.0,f +48133,,Isle of Man,45.0,f +14954,100%,,1.0,f +47261,100%,Estonia,7.0,f +37948,100%,,1.0,f +3128,78%,,1.0,f +27815,71%,,1.0,f +47274,100%,Tonga,48.0,f +43375,,Congo,1.0,f +23639,100%,El Salvador,2.0,f +4565,100%,Turkmenistan,1.0,f +37072,100%,Russian Federation,1.0,t +24070,,Nauru,1.0,f +3992,67%,,1.0,f +24991,100%,Indonesia,14.0,f +27883,100%,Cuba,11.0,f +21184,100%,Chad,2.0,t +32517,100%,Tunisia,5.0,f +49754,100%,Tonga,4.0,f +12957,100%,Lithuania,2.0,f +17807,90%,,1.0,f +4505,0%,Somalia,2.0,f +3921,98%,,14.0,f +41436,100%,Russian Federation,1.0,f +42847,100%,,1.0,f +3921,98%,,14.0,f +36487,100%,,1.0,t +356,99%,Wallis and Futuna,32.0,t +4505,0%,Somalia,2.0,f +686,97%,Micronesia,7.0,t +37763,80%,Guinea,2.0,f +6647,100%,Senegal,2.0,t +24513,,Rwanda,2.0,f +11484,100%,French Guiana,2.0,t +49884,100%,Andorra,1.0,f +28828,100%,Isle of Man,198.0,t +37778,92%,Tonga,24.0,f +43772,50%,Mexico,12.0,t +9916,100%,Niger,4.0,f +9771,100%,Bosnia and Herzegovina,7.0,t +42416,97%,Puerto Rico,20.0,f +14955,100%,Micronesia,1.0,t +184,,,1.0,f +49908,,Chad,1.0,f +13813,100%,,1.0,f +31293,100%,Uzbekistan,1.0,f +28299,100%,Mexico,1.0,f +35672,83%,Wallis and Futuna,1.0,f +5557,25%,Nicaragua,1.0,f +31298,96%,,5.0,f +20546,100%,Gambia,1.0,f +49429,99%,Bosnia and Herzegovina,49.0,f +24594,100%,Rwanda,14.0,f +783,100%,Svalbard & Jan Mayen Islands,12.0,t +31202,90%,Kiribati,107.0,f +31202,90%,Kiribati,107.0,f +31202,90%,Kiribati,107.0,f +12983,100%,Micronesia,1.0,f +39658,100%,,4.0,f +67,100%,Jersey,1.0,t +16695,96%,Tonga,8.0,f +29721,100%,Russian Federation,1.0,f +48416,100%,Mauritania,2.0,f +46271,99%,Micronesia,20.0,f +19217,98%,Marshall Islands,46.0,f +46953,100%,Niger,1.0,f +3790,100%,Netherlands,16.0,f +8952,100%,Montserrat,4.0,t +48440,,,1.0,f +33950,100%,Gambia,1.0,t +20263,99%,Maldives,35.0,t +35349,100%,,1.0,f +9251,100%,,1.0,f +8542,88%,France,1.0,f +30605,,French Guiana,1.0,f +43100,100%,Rwanda,1.0,f +40787,33%,Marshall Islands,2.0,f +19365,90%,French Guiana,1.0,f +35176,100%,Chile,3.0,t +47336,,Micronesia,2.0,f +21305,100%,Russian Federation,1.0,f +19619,,Nicaragua,2.0,f +21514,0%,Greenland,1.0,f +1155,,,1.0,f +43222,100%,,1.0,f +19619,,Nicaragua,2.0,f +8556,100%,Niue,1.0,t +13070,100%,Fiji,45.0,f +34922,100%,Canada,1.0,f +5233,100%,Montserrat,6.0,t +33022,100%,Mauritania,4.0,f +22679,100%,Barbados,5.0,f +28563,100%,,2.0,f +35656,100%,,1.0,f +38270,100%,Maldives,6.0,f +33022,100%,Mauritania,4.0,f +8499,100%,Mauritania,1.0,f +36640,100%,Uganda,6.0,f +8298,100%,Guinea,14.0,f +10711,93%,Uganda,108.0,t +33022,100%,Mauritania,4.0,f +36081,100%,Russian Federation,1.0,f +9592,90%,Jersey,1.0,f +8298,100%,Guinea,14.0,f +8298,100%,Guinea,14.0,f +33022,100%,Mauritania,4.0,f +41630,100%,Kiribati,24.0,f +35833,83%,Estonia,9.0,t +18832,100%,Zimbabwe,8.0,f +49435,100%,Marshall Islands,6.0,t +13070,100%,Fiji,45.0,f +43777,100%,Denmark,18.0,f +26768,,Indonesia,9.0,f +41546,100%,Mauritania,21.0,f +43777,100%,Denmark,18.0,f +41546,100%,Mauritania,21.0,f +31690,100%,,1.0,f +47353,94%,Niue,20.0,f +26768,,Indonesia,9.0,f +26768,,Indonesia,9.0,f +47353,94%,Niue,20.0,f +47353,94%,Niue,20.0,f +6713,100%,Mauritania,10.0,f +26986,100%,Jersey,20.0,f +2635,90%,Vanuatu,1.0,f +19449,100%,,3.0,f +7014,100%,Puerto Rico,1.0,f +2741,100%,Mauritania,2.0,f +41283,100%,Slovakia (Slovak Republic),1.0,f +39318,0%,Nauru,1.0,f +11721,100%,Denmark,2.0,f +3537,17%,,1.0,f +35503,100%,Mexico,3.0,f +15078,,Vietnam,8.0,f +25632,100%,Cuba,13.0,f +15078,,Vietnam,8.0,f +15406,80%,Guinea,1.0,f +25632,100%,Cuba,13.0,f +25632,100%,Cuba,13.0,f +34860,50%,,1.0,f +41820,100%,,1.0,f +35325,100%,,2.0,t +7735,100%,,2.0,t +48530,100%,Malta,1.0,t +41829,100%,Nauru,1.0,f +49358,70%,Uruguay,1.0,f +49384,100%,Slovakia (Slovak Republic),21.0,f +18999,100%,Chile,2.0,f +2081,97%,Niue,2.0,f +23286,100%,Turkmenistan,1.0,t +11340,50%,,5.0,f +28662,100%,Brazil,2.0,f +18177,93%,Fiji,10.0,f +42436,,Ghana,4.0,f +3767,100%,,1.0,f +42093,100%,Micronesia,2.0,f +46145,90%,Zimbabwe,1.0,f +36435,100%,Anguilla,1.0,t +26986,100%,Jersey,20.0,f +40735,,Mauritania,1.0,f +39919,90%,Guinea,3.0,t +28369,90%,Sao Tome and Principe,9.0,f +39919,90%,Guinea,3.0,t +36611,71%,Maldives,14.0,f +15508,0%,El Salvador,1.0,f +10711,93%,Uganda,108.0,t +18990,100%,,1.0,t +2903,100%,Nicaragua,2.0,t +10078,80%,Turkmenistan,1.0,f +20675,100%,Russian Federation,1.0,t +12094,100%,,1.0,t +19637,100%,,1.0,f +7269,100%,,2.0,f +41296,100%,Svalbard & Jan Mayen Islands,1.0,f +10630,100%,Wallis and Futuna,1.0,t +35617,100%,Marshall Islands,1.0,f +18189,,Nauru,1.0,f +13419,100%,Puerto Rico,1.0,f +27246,100%,,3.0,f +33927,100%,Barbados,9.0,f +5202,,,2.0,f +26492,100%,Nicaragua,1.0,f +33260,100%,Turkmenistan,2.0,t +27246,100%,,3.0,f +27246,100%,,3.0,f +33880,84%,Barbados,18.0,f +42307,,,1.0,f +43127,100%,Maldives,1.0,f +2760,100%,Indonesia,3.0,f +2760,100%,Indonesia,3.0,f +20458,,Isle of Man,1.0,f +15972,90%,Chad,1.0,f +36777,100%,Wallis and Futuna,1.0,f +14108,100%,Gambia,1.0,f +39849,100%,Micronesia,3.0,f +1868,100%,China,4.0,t +8779,,,1.0,f +11362,100%,,3.0,f +40138,100%,Djibouti,1.0,f +40267,100%,Uzbekistan,2.0,t +7592,98%,,13.0,t +43312,94%,,1.0,t +40993,100%,Montserrat,15.0,f +9896,100%,Turkmenistan,2.0,f +16076,,,1.0,t +27579,100%,,1.0,f +21675,100%,Tonga,2.0,f +41038,95%,Niue,4.0,f +30941,93%,Barbados,3.0,f +31356,77%,Kiribati,3.0,f +41278,67%,Uzbekistan,1.0,f +32526,100%,Russian Federation,1.0,f +32349,100%,,4.0,f +41630,100%,Kiribati,24.0,f +41630,100%,Kiribati,24.0,f +32759,100%,Sao Tome and Principe,1.0,f +42557,100%,Niue,1.0,t +44123,100%,Russian Federation,1.0,t +41308,90%,Zimbabwe,1.0,t +24856,100%,Portugal,1.0,t +19608,90%,Mexico,1.0,f +49724,,,1.0,f +16489,100%,Russian Federation,42.0,t +45310,,Guinea,2.0,f +26957,100%,Uzbekistan,1.0,f +11061,100%,Togo,2.0,f +15024,100%,Puerto Rico,3.0,f +10192,100%,Palestinian Territory,1.0,f +19118,100%,,2.0,t +18658,,,1.0,f +13815,100%,Malta,1.0,t +21694,100%,Slovakia (Slovak Republic),1.0,f +7331,99%,Indonesia,8.0,t +49665,100%,Libyan Arab Jamahiriya,1.0,f +16489,100%,Russian Federation,42.0,t +38112,100%,Malta,1.0,f +46437,,,5.0,f +9718,100%,,1.0,f +10559,100%,,1.0,t +46437,,,5.0,f +2270,100%,Nicaragua,1.0,f +1809,100%,,1.0,f +23143,65%,Bouvet Island (Bouvetoya),14.0,f +46437,,,5.0,f +49819,100%,Gambia,1.0,f +42416,97%,Puerto Rico,20.0,f +19162,100%,Togo,1.0,f +16800,,,1.0,f +49384,100%,Slovakia (Slovak Republic),21.0,f +31190,,,1.0,t +30662,100%,Guinea,2.0,f +23034,99%,Monaco,54.0,f +25525,90%,Faroe Islands,3.0,t +16593,100%,Chile,4.0,f +45310,,Guinea,2.0,f +6654,100%,Tonga,3.0,f +5996,100%,Peru,1.0,f +26,90%,Niue,2.0,f +21506,100%,Bahrain,1.0,t +42698,,Niger,1.0,f +12491,100%,Pakistan,3.0,f +16753,90%,,2.0,f +9241,100%,Sao Tome and Principe,1.0,f +42875,100%,Faroe Islands,1.0,f +24853,100%,,1.0,f +28835,100%,El Salvador,1.0,f +44693,100%,,1.0,f +48026,100%,,3.0,f +21187,100%,Niger,2.0,f +16642,100%,Finland,1.0,f +19757,100%,Niger,3.0,f +40854,75%,Netherlands,3.0,t +16761,100%,,3.0,f +4712,100%,Marshall Islands,1.0,f +41359,100%,Micronesia,6.0,f +1685,90%,Niue,2.0,f +8409,98%,Maldives,9.0,f +33808,100%,,1.0,f +24605,83%,,1.0,f +8581,100%,,1.0,f +17568,100%,,2.0,f +34771,100%,,1.0,t +50011,100%,,1.0,f +6913,100%,,2.0,t +49103,80%,Rwanda,5.0,f +6646,100%,,1.0,f +13670,92%,,1.0,t +47999,,Turks and Caicos Islands,1.0,f +14843,,,1.0,f +18149,100%,Sao Tome and Principe,1.0,f +33063,100%,,1.0,f +13679,100%,,1.0,f +36499,75%,Anguilla,25.0,t +1190,100%,Papua New Guinea,1.0,f +31390,100%,France,1.0,t +26638,80%,Gambia,1.0,f +36244,100%,Congo,2.0,f +10840,100%,Nicaragua,1.0,f +36524,100%,Saint Helena,8.0,t +30187,100%,Marshall Islands,2.0,f +41986,100%,Congo,1.0,t +30393,100%,Djibouti,9.0,f +16761,100%,,3.0,f +16761,100%,,3.0,f +22648,90%,Niger,1.0,f +5663,,Russian Federation,8.0,t +9431,90%,,2.0,f +17619,74%,Ghana,14.0,f +37301,,Togo,1.0,f +17619,74%,Ghana,14.0,f +31019,100%,Ghana,5.0,f +49384,100%,Slovakia (Slovak Republic),21.0,f +41202,100%,Niue,3.0,f +44008,100%,,1.0,f +47097,100%,Papua New Guinea,1.0,f +36595,100%,Netherlands Antilles,2.0,f +39265,,Sao Tome and Principe,2.0,f +18247,95%,Iran,80.0,t +49384,100%,Slovakia (Slovak Republic),21.0,f +43183,98%,Tonga,12.0,t +18247,95%,Iran,80.0,t +46118,100%,Nicaragua,11.0,f +18247,95%,Iran,80.0,t +18949,100%,Rwanda,1.0,t +43183,98%,Tonga,12.0,t +21229,100%,Pakistan,10.0,t +39307,100%,Nauru,1.0,f +35105,100%,Gambia,4.0,f +18247,95%,Iran,80.0,t +15466,100%,Senegal,4.0,f +18247,95%,Iran,80.0,t +8119,,,1.0,f +18247,95%,Iran,80.0,t +18247,95%,Iran,80.0,t +45868,100%,,1.0,f +6480,100%,Andorra,2.0,f +28772,100%,Niger,15.0,t +37036,94%,Estonia,9.0,f +21883,,Bahrain,11.0,t +43183,98%,Tonga,12.0,t +28414,100%,Uzbekistan,22.0,f +42416,97%,Puerto Rico,20.0,f +16550,100%,Isle of Man,1.0,f +10540,100%,Togo,1.0,f +18155,100%,,2.0,f +25046,100%,Maldives,14.0,f +47281,,Guernsey,1.0,f +28414,100%,Uzbekistan,22.0,f +4799,100%,Mauritania,5.0,f +34042,100%,Marshall Islands,37.0,f +35344,88%,,1.0,f +3095,100%,,1.0,t +38503,100%,Tonga,1.0,t +37048,100%,Isle of Man,1.0,f +42416,97%,Puerto Rico,20.0,f +21452,99%,Lebanon,29.0,f +44403,,Isle of Man,1.0,f +20329,100%,Reunion,21.0,f +18484,100%,Gambia,108.0,f +7765,100%,Niue,9.0,t +40791,93%,Ghana,3.0,f +3406,91%,Monaco,6.0,t +7079,100%,Niue,1.0,f +25207,100%,,9.0,t +2883,100%,Tanzania,2.0,f +43125,100%,Tonga,1.0,f +11277,100%,Afghanistan,1.0,f +26246,80%,Kiribati,1.0,f +35495,100%,Sao Tome and Principe,1.0,f +3406,91%,Monaco,6.0,t +28646,100%,Kiribati,2.0,f +14907,,Kenya,1.0,f +6129,100%,Isle of Man,2.0,f +41751,100%,,1.0,f +11033,100%,Reunion,3.0,f +37422,100%,Brazil,4.0,t +1892,100%,Puerto Rico,1.0,f +12137,99%,Sao Tome and Principe,33.0,t +20334,99%,Niger,171.0,t +17036,81%,Reunion,6.0,f +31905,100%,Niue,1.0,f +30984,,,1.0,f +15957,100%,Nicaragua,1.0,f +8949,100%,Isle of Man,4.0,f +7791,100%,Grenada,2.0,f +40025,,Cook Islands,1.0,f +22679,100%,Barbados,5.0,f +4217,,Kenya,52.0,f +1331,100%,,1.0,f +28414,100%,Uzbekistan,22.0,f +8298,100%,Guinea,14.0,f +46439,100%,Rwanda,5.0,f +27800,100%,Uzbekistan,1.0,f +25002,,China,12.0,f +44888,75%,,7.0,f +44888,75%,,7.0,f +38970,100%,,3.0,f +44888,75%,,7.0,f +44888,75%,,7.0,f +44888,75%,,7.0,f +44888,75%,,7.0,f +44888,75%,,7.0,f +26,90%,Niue,2.0,f +33497,100%,Zimbabwe,1.0,f +31866,100%,Denmark,2.0,f +24493,,Bosnia and Herzegovina,3.0,f +36570,100%,Isle of Man,2.0,f +32806,100%,Niue,1.0,f +22331,99%,Rwanda,50.0,t +20422,100%,Fiji,2.0,f +23328,,,1.0,f +27309,,Isle of Man,4.0,f +27049,67%,Niue,1.0,f +11284,100%,,1.0,f +22331,99%,Rwanda,50.0,t +4050,90%,,1.0,f +19574,89%,,1.0,t +28278,90%,Chile,1.0,t +37824,100%,,2.0,f +33205,100%,Monaco,1.0,f +47579,100%,Uzbekistan,4.0,f +12390,86%,Uzbekistan,3.0,f +12712,100%,Lithuania,1.0,f +33238,100%,France,1.0,f +43971,100%,Monaco,2.0,f +48206,100%,Chile,1.0,f +13453,100%,Jersey,2.0,f +6906,100%,Papua New Guinea,1.0,f +32568,100%,,1.0,f +45757,100%,,1.0,f +4855,,Zimbabwe,2.0,f +48252,,Vanuatu,4.0,f +7318,100%,Niger,2.0,f +21005,100%,Cocos (Keeling) Islands,1.0,f +30393,100%,Djibouti,9.0,f +32458,92%,Vietnam,4.0,f +12039,88%,,1.0,f +3617,100%,Russian Federation,1.0,t +45592,100%,Maldives,2.0,t +39486,,Nicaragua,1.0,f +31576,,Isle of Man,2.0,f +32386,97%,Indonesia,19.0,f +22267,100%,,1.0,f +5239,100%,Nicaragua,2.0,t +5239,100%,Nicaragua,2.0,t +41484,89%,Anguilla,23.0,f +28828,100%,Isle of Man,198.0,t +14666,75%,,1.0,f +33708,100%,Marshall Islands,3.0,f +4526,100%,,4.0,f +24033,100%,Uganda,45.0,f +14396,70%,Isle of Man,2.0,f +25809,100%,Lithuania,5.0,t +11792,100%,,3.0,f +46088,,Ghana,15.0,f +41030,100%,Niue,1.0,f +5274,,Sao Tome and Principe,1.0,t +13775,,Chad,1.0,t +1162,,,2.0,f +5047,100%,Niger,1.0,f +17619,74%,Ghana,14.0,f +37045,100%,Kenya,1.0,t +47274,100%,Tonga,48.0,f +37551,100%,Chad,1.0,t +3790,100%,Netherlands,16.0,f +14139,100%,Isle of Man,1.0,t +20411,100%,Pakistan,4.0,t +13070,100%,Fiji,45.0,f +49790,,,1.0,t +8378,100%,,1.0,f +41889,96%,Uzbekistan,14.0,t +19217,98%,Marshall Islands,46.0,f +12565,100%,Senegal,1.0,f +35182,,Chad,2.0,f +13128,67%,Chile,2.0,t +22585,100%,Togo,3.0,f +47274,100%,Tonga,48.0,f +22969,50%,Sao Tome and Principe,1.0,f +26745,100%,Marshall Islands,1.0,f +11411,100%,Russian Federation,2.0,f +18322,100%,Malta,1.0,f +44416,91%,Kenya,2.0,f +12988,98%,Pakistan,5.0,f +41725,100%,,2.0,f +46663,0%,Puerto Rico,1.0,f +35410,100%,Malawi,1.0,f +5030,0%,Kiribati,1.0,f +22849,100%,Denmark,4.0,t +30748,,Guinea,5.0,f +20609,60%,Mauritania,1.0,f +14514,,China,80.0,t +37434,100%,Cocos (Keeling) Islands,1.0,f +20650,100%,Uzbekistan,3.0,t +13617,100%,,1.0,f +40453,100%,French Guiana,1.0,f +12379,100%,Estonia,1.0,f +47274,100%,Tonga,48.0,f +30748,,Guinea,5.0,f +11872,,,13.0,f +46892,100%,Isle of Man,1.0,f +16917,100%,Guinea,2.0,t +16118,,Cocos (Keeling) Islands,1.0,f +11721,100%,Denmark,2.0,f +19217,98%,Marshall Islands,46.0,f +1386,,Kenya,1.0,f +38868,100%,Montserrat,7.0,f +1630,,Chad,1.0,f +26700,,Niue,6.0,f +30748,,Guinea,5.0,f +23465,100%,Tonga,1.0,f +48267,100%,Tonga,2.0,t +27063,100%,United Kingdom,2.0,f +49429,99%,Bosnia and Herzegovina,49.0,f +12020,100%,Congo,4.0,t +46481,,Philippines,4.0,t +44398,100%,Niue,2.0,f +30375,100%,,1.0,f +36408,100%,Nauru,5.0,f +8727,86%,French Guiana,1.0,f +30734,100%,,1.0,t +15405,50%,Gambia,1.0,t +38868,100%,Montserrat,7.0,f +47084,99%,Anguilla,4.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +7921,100%,Pakistan,1.0,t +4650,100%,,3.0,f +37735,100%,Uganda,13.0,t +4650,100%,,3.0,f +49614,75%,Isle of Man,1.0,f +38868,100%,Montserrat,7.0,f +31884,83%,,2.0,f +5458,100%,,1.0,f +1146,95%,French Polynesia,9.0,f +22160,,Chile,1.0,f +6713,100%,Mauritania,10.0,f +662,,Kenya,1.0,f +13070,100%,Fiji,45.0,f +45734,,Guinea,2.0,f +6713,100%,Mauritania,10.0,f +16962,100%,Montserrat,2.0,f +25808,100%,Malta,1.0,f +1162,,,2.0,f +30393,100%,Djibouti,9.0,f +41493,100%,Gambia,5.0,f +13070,100%,Fiji,45.0,f +17795,100%,Uzbekistan,11.0,t +42622,100%,,1.0,f +1824,100%,,4.0,t +13070,100%,Fiji,45.0,f +30393,100%,Djibouti,9.0,f +6128,100%,Togo,1.0,f +16914,100%,Niue,2.0,f +30393,100%,Djibouti,9.0,f +30393,100%,Djibouti,9.0,f +33065,100%,Uzbekistan,6.0,f +8924,100%,Guinea,5.0,f +27826,98%,Saint Helena,5.0,f +33733,90%,,2.0,f +26203,100%,Netherlands,1.0,f +48245,100%,,2.0,f +48117,98%,Ukraine,41.0,f +30119,100%,Marshall Islands,2.0,f +34223,,,4.0,f +27657,,Netherlands,1.0,f +41663,100%,Greenland,2.0,f +18077,100%,Sao Tome and Principe,139.0,f +4871,,Mauritania,2.0,f +22137,95%,Micronesia,1.0,f +24079,90%,Netherlands Antilles,3.0,f +43321,100%,France,40.0,f +31931,100%,,1.0,f +43321,100%,France,40.0,f +43321,100%,France,40.0,f +32001,100%,Svalbard & Jan Mayen Islands,2.0,t +15275,100%,Niue,1.0,f +22535,67%,Rwanda,1.0,f +44077,57%,Djibouti,1.0,f +8154,100%,,4.0,f +21886,,Croatia,5.0,t +43152,100%,Nicaragua,82.0,t +6977,100%,Croatia,1.0,f +13070,100%,Fiji,45.0,f +3406,91%,Monaco,6.0,t +21461,50%,Slovakia (Slovak Republic),1.0,f +13641,85%,Mauritania,23.0,f +19905,97%,Monaco,8.0,f +29739,100%,Reunion,4.0,f +47345,100%,,2.0,f +43777,100%,Denmark,18.0,f +12173,100%,Uganda,9.0,f +44937,100%,Puerto Rico,19.0,t +38019,100%,Afghanistan,10.0,f +48985,97%,Guinea,8.0,f +13445,100%,,1.0,t +18893,100%,Micronesia,3.0,t +8924,100%,Guinea,5.0,f +47490,78%,Nicaragua,2.0,f +324,100%,,3.0,f +22233,100%,,3.0,f +12173,100%,Uganda,9.0,f +24185,90%,Niue,1.0,f +38405,67%,Zimbabwe,1.0,f +11302,100%,Estonia,2.0,f +48985,97%,Guinea,8.0,f +12173,100%,Uganda,9.0,f +18484,100%,Gambia,108.0,f +22233,100%,,3.0,f +13417,100%,Pakistan,8.0,t +13417,100%,Pakistan,8.0,t +7451,100%,Niue,1.0,t +13417,100%,Pakistan,8.0,t +13417,100%,Pakistan,8.0,t +5443,,,1.0,f +47214,,Cyprus,2.0,t +13417,100%,Pakistan,8.0,t +37911,100%,Guinea,2.0,f +48869,100%,Slovakia (Slovak Republic),22.0,f +49384,100%,Slovakia (Slovak Republic),21.0,f +43152,100%,Nicaragua,82.0,t +17619,74%,Ghana,14.0,f +28382,100%,Grenada,1.0,f +12420,100%,Zimbabwe,1.0,t +47689,,,2.0,f +14087,100%,,5.0,f +31573,,,1.0,f +44785,100%,,1.0,f +19217,98%,Marshall Islands,46.0,f +32309,,,1.0,f +31635,100%,Guinea,1.0,f +32389,75%,,5.0,f +43152,100%,Nicaragua,82.0,t +29647,100%,Peru,1305.0,f +31364,,,1.0,f +42819,100%,Lebanon,2.0,f +47596,50%,Turkmenistan,1.0,f +32389,75%,,5.0,f +19037,,Montserrat,4.0,t +18784,100%,Ukraine,2.0,t +41484,89%,Anguilla,23.0,f +32389,75%,,5.0,f +38222,100%,,3.0,t +33372,100%,Guinea,22.0,t +8272,,Anguilla,1.0,f +41484,89%,Anguilla,23.0,f +41834,100%,Micronesia,2.0,f +42501,100%,Lebanon,1.0,t +8298,100%,Guinea,14.0,f +8924,100%,Guinea,5.0,f +47606,100%,Togo,17.0,f +34852,,Niue,10.0,t +47606,100%,Togo,17.0,f +39619,40%,,1.0,f +8924,100%,Guinea,5.0,f +11423,100%,Lebanon,1.0,f +27652,100%,El Salvador,5.0,f +8228,100%,Isle of Man,1.0,t +29054,100%,Montserrat,1.0,t +47566,64%,,5.0,f +42416,97%,Puerto Rico,20.0,f +28828,100%,Isle of Man,198.0,t +34352,60%,Vanuatu,1.0,f +39470,100%,Chile,1.0,f +3463,,Pakistan,1.0,f +11255,93%,Suriname,41.0,f +2544,100%,,1.0,t +15741,100%,Cuba,14.0,f +36408,100%,Nauru,5.0,f +16275,98%,Maldives,24.0,f +35946,91%,Netherlands,1.0,f +16628,,,1.0,t +42869,,El Salvador,9.0,f +1655,100%,,1.0,f +10361,100%,,4.0,f +35685,100%,Niue,1.0,f +44689,100%,Venezuela,3.0,f +29778,100%,Chile,1.0,f +16768,100%,Montserrat,1.0,f +26707,100%,Gibraltar,1.0,f +5587,100%,,1.0,f +26919,100%,Djibouti,4.0,t +1498,,,2.0,f +1273,100%,Lithuania,3.0,f +47274,100%,Tonga,48.0,f +42416,97%,Puerto Rico,20.0,f +15276,90%,Estonia,1.0,f +25147,99%,Niger,48.0,f +37004,50%,,1.0,f +41043,100%,Bosnia and Herzegovina,11.0,f +37646,100%,Estonia,60.0,f +42435,100%,Russian Federation,3.0,t +4477,90%,French Guiana,14.0,f +24071,100%,Indonesia,22.0,f +19831,100%,Reunion,2.0,f +9632,100%,Papua New Guinea,2.0,f +39616,100%,Costa Rica,13.0,f +4477,90%,French Guiana,14.0,f +25382,75%,,1.0,f +33678,,,1.0,f +34039,100%,Brazil,1.0,f +34179,87%,Niue,1.0,t +28828,100%,Isle of Man,198.0,t +20165,94%,Ukraine,30.0,f +5295,100%,,1.0,t +48326,100%,Lebanon,1.0,f +24033,100%,Uganda,45.0,f +45508,100%,Isle of Man,1.0,f +11255,93%,Suriname,41.0,f +31751,100%,Nicaragua,29.0,f +9673,100%,Niue,2.0,t +9516,99%,Pakistan,45.0,t +49384,100%,Slovakia (Slovak Republic),21.0,f +14087,100%,,5.0,f +36611,71%,Maldives,14.0,f +49557,,Netherlands,1.0,f +8248,,Faroe Islands,1.0,f +38490,100%,Gambia,1.0,f +8298,100%,Guinea,14.0,f +8154,100%,,4.0,f +8298,100%,Guinea,14.0,f +19831,100%,Reunion,2.0,f +49429,99%,Bosnia and Herzegovina,49.0,f +22695,97%,Pakistan,6.0,t +23036,100%,Niue,1.0,f +29817,100%,,1.0,f +26332,100%,Croatia,1.0,f +40338,100%,Niue,1.0,f +31092,,Senegal,19.0,f +35419,100%,,2.0,f +48643,100%,Turkmenistan,1.0,f +1905,,Puerto Rico,1.0,f +14092,100%,Uzbekistan,1.0,f +47077,100%,Bouvet Island (Bouvetoya),2.0,f +30712,100%,Faroe Islands,1.0,f +40772,80%,Estonia,4.0,f +42416,97%,Puerto Rico,20.0,f +40793,100%,,75.0,t +20964,,,1.0,t +41484,89%,Anguilla,23.0,f +5615,100%,Guinea,5.0,f +5665,,,1.0,f +46323,,Niger,3.0,f +31939,,Reunion,2.0,f +10595,,Lebanon,1.0,f +47026,90%,Vietnam,3.0,f +28083,100%,Montserrat,2.0,f +48113,100%,Marshall Islands,1.0,f +17247,100%,,1.0,f +18581,98%,Tonga,3.0,f +48417,100%,Djibouti,5.0,f +49384,100%,Slovakia (Slovak Republic),21.0,f +20293,100%,Anguilla,1.0,f +49233,100%,Andorra,3.0,f +16753,90%,,2.0,f +3921,98%,,14.0,f +11293,100%,Togo,2.0,f +28414,100%,Uzbekistan,22.0,f +45525,93%,Tonga,9.0,f +10686,86%,Tonga,21.0,f +11340,50%,,5.0,f +18581,98%,Tonga,3.0,f +26986,100%,Jersey,20.0,f +26986,100%,Jersey,20.0,f +46553,100%,Faroe Islands,1.0,f +14087,100%,,5.0,f +31516,100%,Venezuela,1.0,f +41443,25%,Russian Federation,1.0,f +26986,100%,Jersey,20.0,f +13862,95%,Bosnia and Herzegovina,5.0,t +13862,95%,Bosnia and Herzegovina,5.0,t +36593,100%,,1.0,f +1955,100%,Monaco,4.0,f +13862,95%,Bosnia and Herzegovina,5.0,t +43008,98%,Costa Rica,5.0,f +41807,93%,Russian Federation,1.0,t +22774,100%,,3.0,f +35974,100%,Gambia,1.0,f +22774,100%,,3.0,f +43008,98%,Costa Rica,5.0,f +30002,100%,,2.0,t +48684,100%,Nicaragua,1.0,f +40572,50%,,1.0,f +13862,95%,Bosnia and Herzegovina,5.0,t +13862,95%,Bosnia and Herzegovina,5.0,t +19479,80%,Niue,4.0,f +39376,100%,,1.0,f +43008,98%,Costa Rica,5.0,f +48409,,Estonia,60.0,t +49906,100%,,1.0,f +49933,,Reunion,6.0,f +49933,,Reunion,6.0,f +37646,100%,Estonia,60.0,f +49933,,Reunion,6.0,f +48409,,Estonia,60.0,t +48409,,Estonia,60.0,t +48409,,Estonia,60.0,t +25118,100%,Indonesia,4.0,f +28372,100%,Indonesia,12.0,f +20334,99%,Niger,171.0,t +35384,70%,Tanzania,1.0,f +27821,50%,,1.0,f +29733,,Russian Federation,15.0,f +19039,94%,Bahrain,17.0,f +42310,100%,Ecuador,6.0,t +12365,,Niue,3.0,f +30830,100%,Turks and Caicos Islands,1.0,f +37047,97%,United Kingdom,5.0,f +43834,99%,Uganda,13.0,f +47901,100%,,1.0,f +29315,100%,Brazil,6.0,f +44347,88%,Wallis and Futuna,2.0,f +24071,100%,Indonesia,22.0,f +39616,100%,Costa Rica,13.0,f +44347,88%,Wallis and Futuna,2.0,f +23177,100%,Estonia,5.0,f +35654,100%,Russian Federation,1.0,t +18077,100%,Sao Tome and Principe,139.0,f +5997,100%,Kenya,3.0,t +27768,65%,Kiribati,15.0,t +7462,100%,Sao Tome and Principe,2.0,f +13978,,Sao Tome and Principe,1.0,f +45325,100%,,1.0,f +18832,100%,Zimbabwe,8.0,f +6603,100%,Gibraltar,1.0,f +39892,100%,Tonga,31.0,t +32972,100%,Marshall Islands,1.0,f +8298,100%,Guinea,14.0,f +36372,,Wallis and Futuna,3.0,f +16275,98%,Maldives,24.0,f +25321,,Lebanon,1.0,f +37123,100%,Guinea,1.0,f +7333,100%,Russian Federation,1.0,f +43136,,Chile,1.0,f +25410,100%,Sao Tome and Principe,1.0,f +1603,100%,Vanuatu,2.0,f +29647,100%,Peru,1305.0,f +28049,,,1.0,f +29647,100%,Peru,1305.0,f +49429,99%,Bosnia and Herzegovina,49.0,f +4833,100%,Uzbekistan,2.0,f +26004,100%,,1.0,f +4477,90%,French Guiana,14.0,f +25147,99%,Niger,48.0,f +11642,100%,Faroe Islands,1.0,f +9741,99%,Cape Verde,8.0,f +150,,Marshall Islands,2.0,f +32386,97%,Indonesia,19.0,f +32386,97%,Indonesia,19.0,f +26162,,Nauru,3.0,f +21740,100%,,2.0,f +14636,90%,Niue,1.0,f +35331,,,1.0,f +22961,100%,Niger,1.0,f +19005,100%,United Kingdom,1.0,f +17731,100%,,2.0,f +40421,96%,Jersey,29.0,t +46577,100%,,1.0,f +7086,100%,Indonesia,1.0,f +5683,100%,Uganda,1.0,f +11565,100%,Kenya,1.0,f +8983,100%,Anguilla,7.0,f +31529,100%,Wallis and Futuna,6.0,f +1788,100%,Isle of Man,1.0,f +42327,80%,,1.0,f +25376,100%,,3.0,f +2648,,Nicaragua,1.0,f +3790,100%,Netherlands,16.0,f +13070,100%,Fiji,45.0,f +5198,100%,,1.0,f +1440,100%,Gibraltar,4.0,t +14492,100%,,1.0,f +11789,100%,Niue,1.0,f +48418,98%,Bosnia and Herzegovina,30.0,f +17080,100%,Papua New Guinea,1.0,f +27875,100%,Guinea,1.0,f +28569,100%,Marshall Islands,1.0,f +27127,100%,Marshall Islands,9.0,t +3742,,,1.0,f +3385,100%,French Polynesia,1.0,f +9632,100%,Papua New Guinea,2.0,f +27000,100%,Kenya,2.0,f +8225,95%,Barbados,31.0,f +34748,,Puerto Rico,1.0,f +12585,,Nauru,1.0,f +26218,80%,Russian Federation,1.0,t +20204,,Argentina,2.0,f +22120,100%,Anguilla,1.0,t +47126,,China,1.0,f +36316,,United Kingdom,2.0,f +35497,100%,Mexico,1.0,f +36861,100%,Russian Federation,1.0,f +38652,100%,Uzbekistan,9.0,f +27785,100%,Uzbekistan,58.0,f +15385,100%,Cook Islands,3.0,f +7649,100%,Jersey,1.0,t +30347,,Kenya,6.0,f +45317,100%,Rwanda,1.0,f +15385,100%,Cook Islands,3.0,f +27785,100%,Uzbekistan,58.0,f +20158,100%,El Salvador,1.0,f +24554,100%,,2.0,f +27785,100%,Uzbekistan,58.0,f +43899,100%,Uzbekistan,1.0,f +31370,100%,,1.0,t +34501,83%,Gambia,1.0,f +6384,100%,Niue,2.0,f +27785,100%,Uzbekistan,58.0,f +50022,100%,Jersey,2.0,t +27785,100%,Uzbekistan,58.0,f +33278,100%,Cuba,3.0,f +12396,100%,Lebanon,2.0,f +27785,100%,Uzbekistan,58.0,f +47467,,Sao Tome and Principe,1.0,f +21405,100%,Greenland,2.0,f +8298,100%,Guinea,14.0,f +16275,98%,Maldives,24.0,f +47541,100%,Palestinian Territory,1.0,t +17881,100%,,1.0,t +8685,100%,French Guiana,1.0,f +25492,100%,United Kingdom,1.0,f +5128,100%,Tunisia,2.0,t +274,90%,Togo,2.0,f +27785,100%,Uzbekistan,58.0,f +42443,97%,Tonga,7.0,t +27895,100%,Greenland,1.0,f +4360,100%,Guinea,1.0,f +32607,100%,,1.0,f +6346,100%,,2.0,f +6589,100%,,1.0,t +15078,,Vietnam,8.0,f +26019,100%,Micronesia,1.0,f +38832,97%,,15.0,f +45975,95%,,2.0,f +47084,99%,Anguilla,4.0,f +47084,99%,Anguilla,4.0,f +3921,98%,,14.0,f +16914,100%,Niue,2.0,f +9756,,Greenland,1.0,f +27826,98%,Saint Helena,5.0,f +3555,100%,Zimbabwe,2.0,f +40348,,Lebanon,1.0,f +23469,100%,Nicaragua,116.0,f +27003,100%,,1.0,t +45552,93%,Nicaragua,12.0,t +46155,,Anguilla,2.0,f +6231,,,1.0,f +36946,100%,Malta,1.0,f +15623,60%,,1.0,t +31240,100%,,1.0,t +26527,100%,,1.0,f +17697,90%,Rwanda,3.0,f +31907,100%,Tonga,1.0,t +25356,100%,,1.0,t +29910,,Russian Federation,1.0,f +22105,83%,Uzbekistan,1.0,f +5723,100%,,1.0,f +10217,100%,Bosnia and Herzegovina,7.0,t +11398,100%,,1.0,f +28156,100%,Lebanon,2.0,f +11556,100%,Gibraltar,2.0,f +48978,100%,Rwanda,2.0,f +36203,100%,,1.0,t +21978,94%,Papua New Guinea,2.0,t +35419,100%,,2.0,f +34283,,,1.0,f +21424,100%,,1.0,t +46859,100%,Isle of Man,2.0,t +3951,100%,Isle of Man,1.0,t +20422,100%,Fiji,2.0,f +23355,100%,,1.0,f +21693,100%,Zimbabwe,1.0,f +47998,100%,Tonga,2.0,t +5753,,,1.0,f +17225,100%,,1.0,f +3772,100%,Tunisia,1.0,f +37337,100%,Niue,2.0,t +23256,100%,,6.0,f +19259,,,3.0,f +40728,100%,Tonga,1.0,f +40745,,,3.0,f +9381,100%,,1.0,t +28022,50%,Nauru,1.0,f +2128,100%,United Kingdom,1.0,f +3019,100%,Barbados,18.0,f +7763,,,1.0,t +18497,80%,Afghanistan,1.0,t +47683,100%,,1.0,f +48625,100%,Sao Tome and Principe,1.0,f +22118,100%,Chad,1.0,t +32473,,,1.0,f +6644,100%,Denmark,1.0,f +29315,100%,Brazil,6.0,f +31300,100%,,1.0,f +40346,100%,,1.0,f +43510,,Chad,2.0,f +32406,60%,,1.0,f +44052,100%,Denmark,4.0,f +37647,100%,Gambia,4.0,f +16995,,,1.0,t +27433,100%,,1.0,t +21920,100%,Lebanon,1.0,f +216,100%,El Salvador,45.0,t +42715,100%,Niue,6.0,t +45540,83%,,1.0,t +14424,100%,,1.0,f +44997,100%,Saint Helena,5.0,f +9259,,French Guiana,1.0,t +29299,100%,,1.0,f +14968,,Uganda,1.0,t +3598,100%,Gambia,1.0,t +1929,100%,Niue,7.0,t +32543,100%,,2.0,t +13675,,,1.0,f +36167,89%,Guinea,3.0,f +13535,100%,Brazil,1.0,f +35138,100%,,1.0,f +42097,100%,Kenya,1.0,f +45448,100%,Vietnam,1.0,f +9354,100%,Spain,12.0,f +22353,100%,Indonesia,1.0,f +8749,100%,Niue,1.0,f +21501,100%,Sao Tome and Principe,1.0,f +40806,80%,France,1.0,f +31517,90%,,3.0,f +35598,100%,France,2.0,f +11340,50%,,5.0,f +38757,90%,Gambia,2.0,t +17520,100%,,1.0,f +30609,100%,Turks and Caicos Islands,3.0,f +43039,100%,Russian Federation,2.0,t +33817,100%,Gibraltar,62.0,f +31002,100%,Brazil,1.0,f +34223,,,4.0,f +11413,98%,Somalia,8.0,f +27127,100%,Marshall Islands,9.0,t +47698,100%,,1.0,f +29520,,Nicaragua,54.0,f +45170,100%,Lebanon,1.0,t +45525,93%,Tonga,9.0,f +27127,100%,Marshall Islands,9.0,t +49812,100%,Kenya,2.0,t +6584,56%,Indonesia,1.0,f +24579,,,3.0,f +8114,100%,Indonesia,1.0,f +27127,100%,Marshall Islands,9.0,t +7353,100%,Russian Federation,1.0,f +21984,100%,Russian Federation,1.0,f +29818,100%,Croatia,2.0,f +33817,100%,Gibraltar,62.0,f +5500,,,2.0,f +15284,100%,Micronesia,1.0,f +43237,40%,Montserrat,24.0,f +12204,,,1.0,f +43237,40%,Montserrat,24.0,f +43237,40%,Montserrat,24.0,f +44954,,Rwanda,2.0,t +18320,50%,Reunion,19.0,t +264,,Kiribati,1.0,f +40352,100%,,2.0,t +33817,100%,Gibraltar,62.0,f +23034,99%,Monaco,54.0,f +18484,100%,Gambia,108.0,f +47078,100%,,2.0,t +31966,75%,Nauru,1.0,f +39616,100%,Costa Rica,13.0,f +23256,100%,,6.0,f +26400,100%,Maldives,1.0,t +8601,,Angola,16.0,f +31356,77%,Kiribati,3.0,f +45111,100%,Sao Tome and Principe,420.0,f +39616,100%,Costa Rica,13.0,f +5420,100%,Tonga,41.0,f +31356,77%,Kiribati,3.0,f +15372,100%,Holy See (Vatican City State),1.0,f +38868,100%,Montserrat,7.0,f +38868,100%,Montserrat,7.0,f +38868,100%,Montserrat,7.0,f +38868,100%,Montserrat,7.0,f +1214,100%,,5.0,f +30497,100%,Slovakia (Slovak Republic),9.0,t +39565,93%,Rwanda,12.0,f +7834,94%,Mexico,13.0,f +21200,100%,Tonga,1.0,t +11210,29%,Estonia,1.0,f +23741,100%,Malta,2.0,f +9366,100%,Lithuania,1.0,f +37508,100%,Nicaragua,1.0,f +49429,99%,Bosnia and Herzegovina,49.0,f +29520,,Nicaragua,54.0,f +29406,100%,Slovenia,1.0,f +7275,,,2.0,f +8128,96%,Nauru,4.0,f +15589,100%,Nicaragua,48.0,f +15589,100%,Nicaragua,48.0,f +11202,100%,,1.0,f +11010,,Micronesia,2.0,f +31467,100%,,1.0,t +29819,80%,Brazil,2.0,f +8983,100%,Anguilla,7.0,f +41614,100%,Uzbekistan,2.0,f +39614,100%,Gambia,2.0,t +41614,100%,Uzbekistan,2.0,f +30123,100%,,2.0,f +2487,100%,Kiribati,1.0,f +14266,,French Guiana,2.0,t +29315,100%,Brazil,6.0,f +39123,70%,,1.0,f +34451,100%,Faroe Islands,3.0,t +22354,100%,,3.0,f +13761,,Nicaragua,2.0,f +32987,100%,,1.0,f +49384,100%,Slovakia (Slovak Republic),21.0,f +9078,,Bosnia and Herzegovina,1.0,f +18775,,Lebanon,1.0,f +30046,,Portugal,1.0,f +2943,91%,Fiji,6.0,f +16837,100%,,2.0,t +24596,100%,,1.0,f +41318,100%,,1.0,f +16720,90%,Gibraltar,1.0,t +6334,100%,Marshall Islands,3.0,f +44941,100%,,1.0,f +3462,100%,Montserrat,1.0,t +46383,100%,Montserrat,1.0,f +12661,50%,Montserrat,2.0,f +6034,,Uzbekistan,1.0,f +44937,100%,Puerto Rico,19.0,t +47046,100%,Lebanon,9.0,f +47046,100%,Lebanon,9.0,f +21902,100%,Vanuatu,3.0,f +16341,90%,France,1.0,t +40935,100%,Uzbekistan,1.0,f +7724,100%,Uzbekistan,1.0,f +6809,100%,Isle of Man,1.0,f +32168,100%,Uganda,2.0,f +48421,100%,,4.0,t +14667,100%,,1.0,f +26605,,Slovakia (Slovak Republic),2.0,f +42370,100%,Marshall Islands,6.0,f +43929,89%,Vietnam,3.0,f +42370,100%,Marshall Islands,6.0,f +38611,100%,,1.0,t +12496,,Vanuatu,1.0,f +10761,,Uganda,1.0,f +18504,80%,,2.0,f +15292,,Barbados,4.0,t +16363,50%,,1.0,f +38099,100%,Vanuatu,1.0,f +48352,50%,Nicaragua,2.0,f +32797,100%,Lithuania,1.0,t +39389,,,1.0,f +8703,90%,Andorra,1.0,f +2943,91%,Fiji,6.0,f +42328,93%,Russian Federation,14.0,f +40229,100%,Holy See (Vatican City State),1.0,t +44169,97%,Portugal,39.0,f +31688,,Turks and Caicos Islands,1.0,f +44381,0%,United Kingdom,1.0,f +14514,,China,80.0,t +9331,100%,Suriname,2.0,f +45552,93%,Nicaragua,12.0,t +12137,99%,Sao Tome and Principe,33.0,t +50051,100%,Netherlands,5.0,t +21240,94%,Niger,130.0,f +21883,,Bahrain,11.0,t +21240,94%,Niger,130.0,f +45088,100%,Reunion,9.0,f +21240,94%,Niger,130.0,f +50026,,Croatia,1.0,t +16245,100%,,1.0,f +43316,100%,Indonesia,23.0,f +48133,,Isle of Man,45.0,f +11341,100%,Micronesia,1.0,f +9239,100%,Cuba,17.0,f +41938,100%,Malta,3.0,f +9939,100%,Philippines,24.0,f +9939,100%,Philippines,24.0,f +5444,,Cook Islands,1.0,f +38970,100%,,3.0,f +9939,100%,Philippines,24.0,f +9939,100%,Philippines,24.0,f +21240,94%,Niger,130.0,f +9417,100%,,1.0,f +38191,100%,Monaco,2.0,f +43538,100%,Slovakia (Slovak Republic),1.0,f +21240,94%,Niger,130.0,f +32317,100%,,1.0,f +38970,100%,,3.0,f +21240,94%,Niger,130.0,f +46500,99%,Pakistan,73.0,f +36595,100%,Netherlands Antilles,2.0,f +7090,80%,Philippines,2.0,f +21240,94%,Niger,130.0,f +21240,94%,Niger,130.0,f +21240,94%,Niger,130.0,f +46500,99%,Pakistan,73.0,f +42906,100%,Tonga,2.0,t +21240,94%,Niger,130.0,f +3964,,San Marino,1.0,f +6912,60%,,1.0,f +26021,100%,Jersey,1.0,f +46500,99%,Pakistan,73.0,f +21240,94%,Niger,130.0,f +46500,99%,Pakistan,73.0,f +8261,100%,Gambia,1.0,t +21240,94%,Niger,130.0,f +7053,100%,Marshall Islands,2.0,f +46500,99%,Pakistan,73.0,f +21240,94%,Niger,130.0,f +21240,94%,Niger,130.0,f +11567,100%,Niger,31.0,t +21240,94%,Niger,130.0,f +17565,100%,Guinea,1.0,t +19749,100%,Denmark,6.0,t +4354,60%,,1.0,f +16662,,,1.0,t +39692,100%,Denmark,1.0,t +46500,99%,Pakistan,73.0,f +13702,100%,Guinea,1.0,f +46500,99%,Pakistan,73.0,f +33406,100%,Reunion,4.0,f +42907,86%,Faroe Islands,1.0,t +46500,99%,Pakistan,73.0,f +48117,98%,Ukraine,41.0,f +31158,99%,Suriname,11.0,f +37284,80%,,2.0,f +28438,100%,,2.0,t +3518,,Tonga,1.0,t +28935,100%,Malta,2.0,f +26700,,Niue,6.0,f +49429,99%,Bosnia and Herzegovina,49.0,f +14035,94%,Greenland,1.0,f +35161,,Anguilla,1.0,f +47602,97%,Puerto Rico,18.0,f +5540,100%,Rwanda,1.0,t +49076,97%,Kenya,12.0,t +18077,100%,Sao Tome and Principe,139.0,f +48409,,Estonia,60.0,t +8298,100%,Guinea,14.0,f +38857,100%,France,1.0,f +47549,100%,,1.0,f +21240,94%,Niger,130.0,f +46500,99%,Pakistan,73.0,f +46500,99%,Pakistan,73.0,f +22721,100%,Ecuador,109.0,f +21240,94%,Niger,130.0,f +11302,100%,Estonia,2.0,f +46500,99%,Pakistan,73.0,f +46500,99%,Pakistan,73.0,f +1929,100%,Niue,7.0,t +30107,100%,Venezuela,2.0,t +46500,99%,Pakistan,73.0,f +21266,92%,Puerto Rico,2.0,f +46500,99%,Pakistan,73.0,f +22774,100%,,3.0,f +39616,100%,Costa Rica,13.0,f +14921,100%,Micronesia,2.0,f +9116,,Lebanon,1.0,f +40793,100%,,75.0,t +45232,100%,,3.0,f +45260,94%,,19.0,f +39077,56%,Micronesia,1.0,f +47353,94%,Niue,20.0,f +9422,100%,Niue,1.0,f +47353,94%,Niue,20.0,f +47353,94%,Niue,20.0,f +2040,,Nauru,1.0,f +36469,,,1.0,f +47046,100%,Lebanon,9.0,f +49381,,Malta,1.0,t +47353,94%,Niue,20.0,f +7281,100%,,1.0,f +19951,88%,Vanuatu,10.0,f +47353,94%,Niue,20.0,f +27021,100%,Denmark,1.0,f +7180,100%,Western Sahara,2.0,t +17172,100%,Niue,1.0,f +33051,100%,Libyan Arab Jamahiriya,1.0,f +47353,94%,Niue,20.0,f +17891,100%,Nicaragua,5.0,t +11454,100%,Montserrat,2.0,f +15825,90%,French Guiana,4.0,t +20548,,Denmark,1.0,f +26984,100%,,1.0,f +9752,,Lebanon,1.0,t +20816,100%,Bouvet Island (Bouvetoya),3.0,f +7857,90%,,1.0,f +33054,100%,Papua New Guinea,1.0,f +4487,100%,United Kingdom,1.0,f +39274,90%,Isle of Man,1.0,f +11687,100%,Tanzania,2.0,f +40940,100%,Malta,2.0,f +10708,0%,Turks and Caicos Islands,4.0,f +17078,100%,,7.0,f +40940,100%,Malta,2.0,f +40364,100%,Tonga,25.0,f +23034,99%,Monaco,54.0,f +44997,100%,Saint Helena,5.0,f +19951,88%,Vanuatu,10.0,f +20816,100%,Bouvet Island (Bouvetoya),3.0,f +5128,100%,Tunisia,2.0,t +29236,100%,,1.0,f +34190,100%,Barbados,6.0,f +34190,100%,Barbados,6.0,f +32700,80%,,2.0,f +25668,100%,Jersey,12.0,t +7034,,Rwanda,1.0,t +6633,100%,Niger,5.0,f +34190,100%,Barbados,6.0,f +6194,75%,,1.0,f +12864,100%,,1.0,t +20699,60%,,2.0,f +5058,100%,Uzbekistan,4.0,f +5842,,China,16.0,f +16537,100%,Marshall Islands,1.0,t +5842,,China,16.0,f +5842,,China,16.0,f +40029,90%,Niger,2.0,t +38983,100%,,1.0,f +11542,100%,,1.0,f +11413,98%,Somalia,8.0,f +28440,75%,Tanzania,1.0,f +730,,,1.0,f +48985,97%,Guinea,8.0,f +4477,90%,French Guiana,14.0,f +36287,100%,Guinea,1.0,t +11677,100%,,8.0,f +45808,100%,Uganda,1.0,f +11677,100%,,8.0,f +37695,,,1.0,f +49236,100%,Spain,3.0,t +48409,,Estonia,60.0,t +324,100%,,3.0,f +37646,100%,Estonia,60.0,f +48117,98%,Ukraine,41.0,f +16268,,,10.0,f +34410,100%,Maldives,1.0,f +5420,100%,Tonga,41.0,f +29647,100%,Peru,1305.0,f +36292,100%,,1.0,f +16268,,,10.0,f +16268,,,10.0,f +3036,,Bosnia and Herzegovina,3.0,f +31075,100%,France,1.0,f +14130,,Russian Federation,10.0,f +41836,100%,Tonga,1.0,f +16268,,,10.0,f +16268,,,10.0,f +18536,100%,Fiji,1.0,f +11612,100%,Kiribati,1.0,f +40772,80%,Estonia,4.0,f +5420,100%,Tonga,41.0,f +16268,,,10.0,f +32790,100%,,2.0,f +6264,100%,Vanuatu,1.0,f +8091,97%,Cuba,10.0,f +22941,100%,Netherlands Antilles,1.0,f +39892,100%,Tonga,31.0,t +45111,100%,Sao Tome and Principe,420.0,f +13064,100%,,1.0,f +21240,94%,Niger,130.0,f +22065,100%,Costa Rica,1.0,t +26919,100%,Djibouti,4.0,t +33946,25%,Cuba,2.0,f +10008,83%,,4.0,f +15611,,,2.0,f +10008,83%,,4.0,f +7204,,Faroe Islands,1.0,f +20263,99%,Maldives,35.0,t +21376,100%,Guinea,1.0,f +43228,100%,,1.0,f +32648,100%,Micronesia,2.0,f +20263,99%,Maldives,35.0,t +26285,94%,Senegal,9.0,f +49987,100%,,19.0,f +32393,100%,Cuba,1.0,f +8511,,,1.0,t +35473,100%,Pakistan,2.0,f +31517,90%,,3.0,f +13403,96%,Maldives,21.0,t +48117,98%,Ukraine,41.0,f +14696,100%,Micronesia,1.0,f +38197,100%,Mauritania,1.0,f +48117,98%,Ukraine,41.0,f +6946,100%,Svalbard & Jan Mayen Islands,1.0,f +16703,100%,Uzbekistan,4.0,f +22012,100%,Christmas Island,1.0,f +34192,75%,Tanzania,3.0,f +28274,100%,Jersey,1.0,f +39775,100%,Niue,1.0,f +21452,99%,Lebanon,29.0,f +49429,99%,Bosnia and Herzegovina,49.0,f +47411,100%,Zimbabwe,1.0,f +20263,99%,Maldives,35.0,t +32517,100%,Tunisia,5.0,f +47274,100%,Tonga,48.0,f +18266,100%,Philippines,2.0,f +35917,90%,Anguilla,1.0,f +21806,89%,,1.0,f +11065,100%,,1.0,t +45080,100%,Estonia,1.0,f +7842,100%,,1.0,f +15611,,,2.0,f +29906,100%,Fiji,2.0,f +46400,93%,,2.0,f +15300,100%,Russian Federation,3.0,t +44821,100%,,1.0,f +17654,,Nauru,3.0,f +19823,100%,,1.0,f +35288,100%,Malta,3.0,t +40793,100%,,75.0,t +31375,100%,Nicaragua,1.0,f +28034,89%,Nauru,2.0,f +14209,100%,Malawi,3.0,f +38733,100%,,2.0,f +5189,100%,Venezuela,2.0,f +10522,46%,Tonga,1.0,f +33456,100%,Mauritania,1.0,f +1107,100%,Papua New Guinea,1.0,f +41024,95%,Uzbekistan,2.0,f +1146,95%,French Polynesia,9.0,f +36521,100%,,1.0,f +39543,100%,,4.0,t +28850,100%,,1.0,t +33028,100%,Uzbekistan,1.0,f +6951,50%,,1.0,f +41024,95%,Uzbekistan,2.0,f +9354,100%,Spain,12.0,f +19673,100%,Croatia,1.0,t +34190,100%,Barbados,6.0,f +42569,75%,Russian Federation,1.0,t +29823,90%,Togo,3.0,f +33237,,Nicaragua,1.0,f +36865,,,1.0,t +21513,100%,,1.0,f +39335,100%,Suriname,2.0,f +48890,,,1.0,f +33823,78%,France,17.0,t +29707,67%,Gambia,1.0,f +19010,,Philippines,2.0,f +49945,100%,Marshall Islands,3.0,f +26502,100%,,1.0,f +27029,100%,Isle of Man,1.0,t +1253,100%,,1.0,f +39280,,United Kingdom,1.0,t +29265,95%,Lithuania,3.0,f +4446,100%,Uganda,58.0,f +12516,,,1.0,t +10086,100%,Kenya,2.0,f +48529,100%,Tonga,1.0,f +27190,,,1.0,f +45292,,Micronesia,2.0,f +38785,100%,Isle of Man,1.0,f +10053,100%,Estonia,1.0,f +18077,100%,Sao Tome and Principe,139.0,f +34991,75%,Nicaragua,2.0,f +13168,100%,,1.0,f +17298,97%,Barbados,7.0,f +33650,,,1.0,f +44967,100%,Estonia,1.0,f +4004,100%,Ecuador,1.0,f +16890,,Niue,1.0,f +39616,100%,Costa Rica,13.0,f +33817,100%,Gibraltar,62.0,f +19039,94%,Bahrain,17.0,f +19039,94%,Bahrain,17.0,f +6645,100%,,1.0,f +37787,100%,Barbados,5.0,f +4316,100%,Micronesia,18.0,f +19039,94%,Bahrain,17.0,f +19039,94%,Bahrain,17.0,f +19514,100%,Djibouti,2.0,f +39616,100%,Costa Rica,13.0,f +10217,100%,Bosnia and Herzegovina,7.0,t +40823,100%,,1.0,f +7894,100%,Ukraine,10.0,f +42166,100%,,1.0,f +39616,100%,Costa Rica,13.0,f +4745,100%,Croatia,119.0,f +32232,,Jersey,1.0,f +4745,100%,Croatia,119.0,f +48069,100%,China,3.0,f +43432,,Chad,1.0,t +26285,94%,Senegal,9.0,f +17218,,Nauru,2.0,f +4745,100%,Croatia,119.0,f +4745,100%,Croatia,119.0,f +16028,100%,Niue,1.0,f +29859,93%,Guinea,4.0,t +34660,100%,Reunion,1.0,f +4446,100%,Uganda,58.0,f +29228,100%,,1.0,f +24020,77%,Tonga,6.0,t +24966,100%,Marshall Islands,1.0,t +36398,,,1.0,f +9263,,Portugal,1.0,f +24149,100%,China,3.0,f +21215,,Monaco,1.0,f +18213,100%,Jersey,2.0,t +18213,100%,Jersey,2.0,t +382,,Sao Tome and Principe,1.0,f +9363,95%,Ukraine,50.0,f +18484,100%,Gambia,108.0,f +11075,,Cocos (Keeling) Islands,1.0,f +24033,100%,Uganda,45.0,f +29647,100%,Peru,1305.0,f +23129,100%,Isle of Man,1.0,f +4311,100%,Afghanistan,1.0,f +15782,,Guinea,1.0,f +26285,94%,Senegal,9.0,f +11985,100%,Marshall Islands,1.0,f +48425,100%,,3.0,f +32995,100%,,1.0,f +4195,100%,Jersey,1.0,f +6564,,Uganda,9.0,f +30976,100%,France,1.0,f +49086,100%,,1.0,f +49550,,Australia,2.0,f +6384,100%,Niue,2.0,f +49550,,Australia,2.0,f +22129,100%,Moldova,1.0,f +10728,,,2.0,f +20980,100%,Zimbabwe,1.0,t +39892,100%,Tonga,31.0,t +28527,100%,Russian Federation,1.0,t +44481,100%,United Kingdom,1.0,f +48252,,Vanuatu,4.0,f +14194,67%,Niue,1.0,t +17606,100%,Guernsey,2.0,f +25668,100%,Jersey,12.0,t +42324,,,1.0,f +21266,92%,Puerto Rico,2.0,f +39892,100%,Tonga,31.0,t +40454,,Zimbabwe,2.0,f +7250,100%,Ecuador,6.0,f +26962,100%,Jersey,1.0,f +38137,99%,Zimbabwe,16.0,f +48196,,France,1.0,f +45451,100%,Zimbabwe,3.0,f +47687,100%,Gibraltar,1.0,t +38137,99%,Zimbabwe,16.0,f +38137,99%,Zimbabwe,16.0,f +48502,100%,Nicaragua,11.0,t +49233,100%,Andorra,3.0,f +38137,99%,Zimbabwe,16.0,f +13247,,El Salvador,2.0,f +32471,83%,Niue,1.0,f +10008,83%,,4.0,f +10008,83%,,4.0,f +45403,90%,Venezuela,3.0,f +21946,0%,Niger,1.0,f +45575,85%,Isle of Man,1.0,f +262,97%,Maldives,16.0,t +24457,0%,Switzerland,1.0,f +43360,100%,Denmark,2.0,f +14514,,China,80.0,t +5398,100%,,1.0,f +13591,100%,,1.0,t +26506,75%,,1.0,f +40076,90%,Montserrat,2.0,f +46993,100%,Togo,2.0,f +35462,,Denmark,1.0,f +41892,100%,Zimbabwe,2.0,f +37597,0%,Nicaragua,1.0,f +44254,100%,,2.0,t +192,,,1.0,f +39616,100%,Costa Rica,13.0,f +13209,100%,Uzbekistan,1.0,f +9046,,,1.0,f +18499,100%,Saint Helena,5.0,f +19905,97%,Monaco,8.0,f +49987,100%,,19.0,f +18168,95%,Ecuador,3.0,f +49858,100%,Estonia,1.0,f +4316,100%,Micronesia,18.0,f +24688,83%,Barbados,7.0,f +39892,100%,Tonga,31.0,t +30347,,Kenya,6.0,f +33683,33%,Somalia,2.0,f +19520,100%,,1.0,f +36372,,Wallis and Futuna,3.0,f +29647,100%,Peru,1305.0,f +6711,100%,Spain,3.0,f +16406,100%,Bouvet Island (Bouvetoya),16.0,f +7545,100%,,1.0,f +35597,100%,Uzbekistan,2.0,f +33740,100%,,1.0,f +49429,99%,Bosnia and Herzegovina,49.0,f +9126,100%,Kenya,1.0,f +20438,100%,Pakistan,1.0,f +10284,100%,Tanzania,3.0,f +20110,100%,Micronesia,1.0,f +40932,96%,Zimbabwe,3.0,f +40931,,Niue,1.0,f +49429,99%,Bosnia and Herzegovina,49.0,f +12455,100%,,1.0,t +39420,100%,Lebanon,1.0,f +37515,90%,Croatia,1.0,f +28457,100%,Maldives,1.0,f +12570,100%,Senegal,1.0,f +1054,100%,Guinea,20.0,f +36931,100%,Russian Federation,2.0,f +37062,100%,Isle of Man,2.0,f +18484,100%,Gambia,108.0,f +25628,100%,Estonia,1.0,f +42533,100%,,1.0,f +12422,100%,Andorra,3.0,f +40932,96%,Zimbabwe,3.0,f +45490,95%,Barbados,6.0,f +8253,,Nicaragua,4.0,f +37333,90%,Greenland,1.0,f +11071,90%,,2.0,f +9402,100%,Kiribati,1.0,f +24079,90%,Netherlands Antilles,3.0,f +37615,100%,Vanuatu,1.0,f +25357,100%,Isle of Man,1.0,f +20506,,Anguilla,2.0,f +15251,100%,Gambia,1.0,f +31620,90%,,1.0,f +10742,100%,,1.0,f +14328,99%,Liechtenstein,21.0,t +39203,67%,,1.0,f +27665,,Togo,1.0,f +44699,100%,Somalia,3.0,f +48806,100%,Togo,1.0,f +11317,90%,China,1.0,f +45122,100%,,1.0,t +35442,,Russian Federation,14.0,f +46030,100%,Togo,4.0,f +5497,,,1.0,t +8924,100%,Guinea,5.0,f +38124,100%,Afghanistan,1.0,f +47998,100%,Tonga,2.0,t +48383,,Tonga,1.0,t +10910,100%,Uzbekistan,2.0,f +36801,100%,Niue,2.0,f +438,100%,,1.0,f +37899,,,2.0,f +44886,0%,,1.0,f +15685,100%,,1.0,f +35296,100%,Tonga,1.0,f +20931,100%,,1.0,f +46102,100%,,2.0,f +11513,100%,Malta,2.0,f +29021,,French Guiana,3.0,t +15723,100%,Gambia,1.0,f +23034,99%,Monaco,54.0,f +18483,,Micronesia,2.0,f +23078,100%,Ukraine,8.0,f +24904,100%,Mauritania,1.0,f +35295,100%,Andorra,1.0,f +12965,100%,Vietnam,11.0,t +42941,,,1.0,f +10482,86%,Zimbabwe,2.0,f +26859,90%,,1.0,f +12357,100%,Gambia,4.0,f +47925,100%,Lebanon,1.0,f +17128,100%,Turks and Caicos Islands,1.0,f +18503,90%,Denmark,1.0,f +20699,60%,,2.0,f +41876,100%,Indonesia,1.0,f +14482,100%,France,1.0,f +1377,100%,Tonga,3.0,f +36611,71%,Maldives,14.0,f +1377,100%,Tonga,3.0,f +28697,100%,Nauru,5.0,t +9882,100%,Kiribati,1.0,t +4897,,,1.0,f +8120,100%,Jersey,1.0,f +226,100%,Maldives,2.0,f +40454,,Zimbabwe,2.0,f +3704,,Barbados,1.0,t +5811,100%,Gibraltar,1.0,f +30209,100%,,1.0,f +29859,93%,Guinea,4.0,t +1161,71%,,2.0,f +23132,100%,Chile,1.0,t +17714,,Estonia,7.0,f +12894,67%,United Kingdom,1.0,t +29265,95%,Lithuania,3.0,f +10344,100%,Niue,1.0,f +33180,100%,Gambia,1.0,f +14115,100%,Anguilla,1.0,f +7570,100%,Uzbekistan,3.0,f +30077,84%,Tonga,1.0,f +37318,100%,Congo,1.0,f +25776,75%,Micronesia,1.0,f +32452,,,1.0,f +44699,100%,Somalia,3.0,f +42821,100%,,1.0,f +44699,100%,Somalia,3.0,f +35881,,Kenya,1.0,f +6632,100%,Micronesia,3.0,f +6420,,,1.0,f +2932,,Sao Tome and Principe,1.0,f +39243,,,1.0,f +8004,,Guernsey,1.0,t +14867,100%,,1.0,f +43494,98%,Saint Helena,5.0,f +48026,100%,,3.0,f +8145,100%,Zimbabwe,1.0,f +37257,100%,Rwanda,2.0,f +4499,,Nauru,1.0,t +37709,,El Salvador,1.0,f +36898,100%,Mauritania,1.0,f +9598,100%,Tonga,1.0,f +27757,100%,Uzbekistan,2.0,f +6582,90%,,3.0,f +1300,100%,Micronesia,1.0,f +27636,100%,,1.0,f +28426,100%,,1.0,f +44268,,Isle of Man,1.0,f +15321,100%,Montserrat,1.0,f +19077,100%,France,3.0,f +48677,100%,Russian Federation,1.0,f +45668,100%,Malta,2.0,f +28031,100%,Vanuatu,4.0,f +8351,100%,Turks and Caicos Islands,2.0,f +31227,50%,El Salvador,1.0,f +725,33%,Peru,2.0,f +46505,100%,Afghanistan,2.0,f +6985,100%,Tonga,1.0,f +49317,100%,El Salvador,2.0,f +30229,100%,Gibraltar,1.0,f +19965,,Uzbekistan,1.0,t +22745,,Indonesia,1.0,f +9888,100%,Micronesia,1.0,t +25899,100%,Guinea,1.0,f +22218,100%,Guinea,1.0,f +37778,92%,Tonga,24.0,f +32165,,Cape Verde,1.0,t +17789,94%,Reunion,6.0,f +36854,,Suriname,1.0,f +47159,88%,Denmark,1.0,t +15640,100%,United Kingdom,1.0,f +5807,100%,Nicaragua,1.0,f +45829,100%,Venezuela,4.0,f +43967,100%,,1.0,f +22675,100%,Indonesia,1.0,f +42079,,,1.0,t +7993,100%,Central African Republic,3.0,t +8113,75%,,1.0,f +28872,100%,Anguilla,1.0,f +31247,100%,Cuba,1.0,f +35027,100%,Micronesia,1.0,t +19214,100%,Senegal,55.0,f +19214,100%,Senegal,55.0,f +41589,100%,Turks and Caicos Islands,1.0,f +42950,100%,Kiribati,1.0,f +42661,100%,Jersey,2.0,f +44586,85%,Ukraine,13.0,f +4330,94%,Ukraine,60.0,t +48443,100%,Maldives,1.0,f +41354,100%,Micronesia,4.0,t +33370,,Togo,1.0,f +7250,100%,Ecuador,6.0,f +44997,100%,Saint Helena,5.0,f +31296,98%,,4.0,f +3993,,Maldives,1.0,f +48443,100%,Maldives,1.0,f +7927,100%,Chad,1.0,f +13768,100%,Ecuador,2.0,t +5413,100%,France,3.0,t +38468,100%,Sao Tome and Principe,2.0,f +27898,100%,Christmas Island,1.0,f +11171,100%,Turks and Caicos Islands,4.0,f +28582,100%,,1.0,f +3806,,,11.0,f +15707,100%,Vietnam,4.0,f +34360,100%,Gibraltar,1.0,f +15683,100%,Isle of Man,2.0,f +11484,100%,French Guiana,2.0,t +3229,100%,Bouvet Island (Bouvetoya),2.0,f +48401,,Mexico,2.0,t +41355,100%,Guernsey,1.0,f +4960,91%,,1.0,t +33708,100%,Marshall Islands,3.0,f +17276,,,1.0,f +9741,99%,Cape Verde,8.0,f +15516,100%,Sao Tome and Principe,1.0,f +43071,100%,Maldives,14.0,f +43071,100%,Maldives,14.0,f +6495,89%,Tonga,34.0,f +43071,100%,Maldives,14.0,f +43071,100%,Maldives,14.0,f +20866,50%,Australia,1.0,f +43071,100%,Maldives,14.0,f +23022,67%,Niue,10.0,t +36395,100%,Malawi,1.0,t +42857,100%,,1.0,f +45318,,Sao Tome and Principe,1.0,f +34017,33%,Marshall Islands,1.0,f +45500,100%,Isle of Man,2.0,t +21883,,Bahrain,11.0,t +5973,,Jersey,5.0,f +34604,96%,Kenya,18.0,f +5357,95%,Sao Tome and Principe,1.0,f +10217,100%,Bosnia and Herzegovina,7.0,t +36206,86%,Russian Federation,10.0,f +41488,100%,Nicaragua,1.0,f +40927,100%,Micronesia,3.0,f +20260,100%,,1.0,t +23057,,France,16.0,t +8887,100%,Senegal,5.0,f +16342,,Marshall Islands,6.0,t +14337,,,1.0,f +15638,100%,,1.0,t +9741,99%,Cape Verde,8.0,f +43714,100%,Palestinian Territory,3.0,f +22755,,,8.0,t +38484,100%,Senegal,2.0,f +47407,100%,Tonga,1.0,t +2476,100%,Saint Helena,2.0,t +2943,91%,Fiji,6.0,f +6168,,Bouvet Island (Bouvetoya),14.0,t +35219,97%,Tonga,4.0,f +14061,75%,France,2.0,t +30487,,,1.0,f +2943,91%,Fiji,6.0,f +49099,,Lithuania,1.0,f +10173,83%,Marshall Islands,2.0,t +2943,91%,Fiji,6.0,f +49228,,Mexico,2.0,f +29220,50%,Costa Rica,1.0,t +31503,,Jersey,1.0,f +49228,,Mexico,2.0,f +37778,92%,Tonga,24.0,f +4799,100%,Mauritania,5.0,f +4799,100%,Mauritania,5.0,f +4799,100%,Mauritania,5.0,f +32231,100%,Chile,1.0,f +30286,100%,Montserrat,39.0,f +45088,100%,Reunion,9.0,f +5864,33%,Djibouti,1.0,t +29647,100%,Peru,1305.0,f +39641,,Togo,1.0,f +24718,90%,Nicaragua,2.0,f +12812,99%,Croatia,32.0,f +45088,100%,Reunion,9.0,f +36662,100%,Papua New Guinea,1.0,f +45088,100%,Reunion,9.0,f +33137,100%,El Salvador,9.0,f +15012,,Denmark,1.0,t +7766,100%,,1.0,t +27449,100%,Mexico,1.0,f +6288,,Croatia,1.0,f +2854,100%,Venezuela,1.0,f +37280,100%,Indonesia,4.0,t +76,96%,Togo,7.0,f +12812,99%,Croatia,32.0,f +20153,96%,Reunion,51.0,f +49959,88%,,1.0,t +21493,,Uzbekistan,6.0,f +15989,100%,Palestinian Territory,1.0,t +45227,100%,Uzbekistan,1.0,f +6745,100%,Gambia,2.0,f +30650,,,1.0,t +12812,99%,Croatia,32.0,f +15580,100%,,1.0,f +33817,100%,Gibraltar,62.0,f +34430,100%,Indonesia,3.0,f +12812,99%,Croatia,32.0,f +9771,100%,Bosnia and Herzegovina,7.0,t +12812,99%,Croatia,32.0,f +25169,,Grenada,1.0,f +17903,100%,,1.0,f +28703,100%,Uzbekistan,2.0,f +32909,100%,Faroe Islands,2.0,f +17938,100%,Montserrat,4.0,f +17991,100%,Kiribati,1.0,f +20461,,Russian Federation,1.0,f +4799,100%,Mauritania,5.0,f +21895,67%,,3.0,f +38019,100%,Afghanistan,10.0,f +8184,,Zimbabwe,2.0,f +13402,100%,Tanzania,1.0,f +40923,75%,,2.0,f +9498,100%,French Guiana,1.0,t +28828,100%,Isle of Man,198.0,t +32386,97%,Indonesia,19.0,f +42296,100%,Palestinian Territory,1.0,f +26526,94%,Tonga,8.0,f +2054,,Bouvet Island (Bouvetoya),1.0,f +16249,100%,Barbados,2.0,f +17329,,Turkmenistan,1.0,t +45353,100%,Uruguay,1.0,f +17674,100%,Pakistan,4.0,f +20430,,French Guiana,1.0,t +43314,100%,Micronesia,2.0,f +46063,100%,,1.0,f +1393,100%,Turks and Caicos Islands,2.0,f +25002,,China,12.0,f +21854,100%,Isle of Man,3.0,t +13181,86%,,1.0,f +41561,100%,Gambia,1.0,f +23756,,Netherlands,1.0,f +46049,100%,El Salvador,2.0,f +6618,100%,Philippines,2.0,f +9830,100%,Barbados,3.0,t +18121,100%,Bouvet Island (Bouvetoya),8.0,f +35799,,Netherlands,7.0,f +43320,,Poland,2.0,f +3112,94%,Indonesia,25.0,f +3112,94%,Indonesia,25.0,f +3112,94%,Indonesia,25.0,f +3112,94%,Indonesia,25.0,f +8059,100%,Bahrain,1.0,t +1974,,,1.0,t +6283,100%,Switzerland,3.0,f +44697,90%,,3.0,f +39139,80%,,2.0,f +20334,99%,Niger,171.0,t +10786,100%,Zimbabwe,2.0,f +32886,90%,Russian Federation,6.0,f +38335,79%,Guinea,11.0,f +38570,100%,Lithuania,2.0,f +33137,100%,El Salvador,9.0,f +46088,,Ghana,15.0,f +47437,100%,French Guiana,1.0,t +33137,100%,El Salvador,9.0,f +21240,94%,Niger,130.0,f +21240,94%,Niger,130.0,f +48070,71%,Tunisia,1.0,f +21240,94%,Niger,130.0,f +12066,,,1.0,f +15233,100%,Jersey,2.0,t +12137,99%,Sao Tome and Principe,33.0,t +21240,94%,Niger,130.0,f +29680,88%,Faroe Islands,2.0,f +44697,90%,,3.0,f +48117,98%,Ukraine,41.0,f +23146,100%,,6.0,f +1929,100%,Niue,7.0,t +26535,,Nicaragua,1.0,t +21240,94%,Niger,130.0,f +19547,100%,Andorra,1.0,f +21240,94%,Niger,130.0,f +5407,,Senegal,1.0,f +21240,94%,Niger,130.0,f +43834,99%,Uganda,13.0,f +44697,90%,,3.0,f +33137,100%,El Salvador,9.0,f +21240,94%,Niger,130.0,f +33137,100%,El Salvador,9.0,f +33137,100%,El Salvador,9.0,f +5243,100%,,1.0,f +21240,94%,Niger,130.0,f +16878,100%,Lithuania,1.0,f +36396,88%,Afghanistan,2.0,f +28142,100%,,1.0,f +21535,100%,Micronesia,3.0,f +25061,,Reunion,1.0,t +839,100%,,1.0,f +21240,94%,Niger,130.0,f +17347,100%,Jersey,1.0,f +49429,99%,Bosnia and Herzegovina,49.0,f +15701,100%,Maldives,1.0,t +2919,100%,Cape Verde,2.0,f +45109,,Kiribati,2.0,f +20263,99%,Maldives,35.0,t +2907,100%,Pitcairn Islands,2.0,t +45171,100%,Kiribati,1.0,t +47274,100%,Tonga,48.0,f +3480,100%,United Kingdom,2.0,f +21535,100%,Micronesia,3.0,f +4990,100%,Isle of Man,1.0,f +13641,85%,Mauritania,23.0,f +49429,99%,Bosnia and Herzegovina,49.0,f +18242,,Bouvet Island (Bouvetoya),12.0,f +8355,87%,Togo,16.0,f +17237,94%,,1.0,f +21535,100%,Micronesia,3.0,f +41789,,,2.0,f +18242,,Bouvet Island (Bouvetoya),12.0,f +18242,,Bouvet Island (Bouvetoya),12.0,f +29573,87%,Turkmenistan,1.0,f +18242,,Bouvet Island (Bouvetoya),12.0,f +18242,,Bouvet Island (Bouvetoya),12.0,f +12307,81%,Maldives,3.0,f +18242,,Bouvet Island (Bouvetoya),12.0,f +16939,,Senegal,11.0,t +9343,100%,Afghanistan,10.0,t +9380,100%,Malta,1.0,t +24026,98%,Cape Verde,69.0,t +37762,100%,,1.0,f +18242,,Bouvet Island (Bouvetoya),12.0,f +24026,98%,Cape Verde,69.0,t +6486,,Uzbekistan,1.0,f +9343,100%,Afghanistan,10.0,t +30286,100%,Montserrat,39.0,f +24026,98%,Cape Verde,69.0,t +44733,,,1.0,f +9343,100%,Afghanistan,10.0,t +29342,67%,Niue,1.0,t +45795,75%,Denmark,1.0,f +17033,81%,,2.0,f +44045,100%,Sao Tome and Principe,2.0,f +34604,96%,Kenya,18.0,f +11285,,,1.0,f +11344,100%,Nauru,1.0,f +44875,,Bosnia and Herzegovina,1.0,t +48238,,Venezuela,4.0,t +13179,77%,Marshall Islands,2.0,f +3613,100%,,1.0,f +2301,100%,,1.0,f +1136,100%,Papua New Guinea,1.0,f +48238,,Venezuela,4.0,t +20153,96%,Reunion,51.0,f +41910,100%,Slovakia (Slovak Republic),5.0,f +33709,100%,,2.0,f +46808,60%,Rwanda,3.0,f +39892,100%,Tonga,31.0,t +47516,100%,,1.0,f +42354,100%,Guinea,1.0,f +39892,100%,Tonga,31.0,t +30163,100%,,1.0,t +1498,,,2.0,f +13467,90%,Micronesia,1.0,f +33823,78%,France,17.0,t +39892,100%,Tonga,31.0,t +40381,100%,,1.0,f +39892,100%,Tonga,31.0,t +39892,100%,Tonga,31.0,t +26175,100%,Russian Federation,4.0,t +36731,100%,Nicaragua,7.0,f +39892,100%,Tonga,31.0,t +2714,100%,Bosnia and Herzegovina,8.0,f +26883,100%,Guernsey,2.0,t +25668,100%,Jersey,12.0,t +24312,100%,Uzbekistan,1.0,f +725,33%,Peru,2.0,f +37518,100%,Marshall Islands,1.0,f +31255,,,1.0,t +16467,,Denmark,2.0,f +10202,89%,Nicaragua,10.0,f +17973,94%,Ukraine,1.0,f +45109,,Kiribati,2.0,f +6168,,Bouvet Island (Bouvetoya),14.0,t +45087,100%,,3.0,f +35221,100%,Turks and Caicos Islands,30.0,t +19602,100%,Lithuania,24.0,f +28870,,Reunion,2.0,f +22921,100%,,1.0,f +20215,,Tonga,1.0,f +19602,100%,Lithuania,24.0,f +18484,100%,Gambia,108.0,f +41518,100%,Montserrat,13.0,t +38743,100%,Micronesia,1.0,f +41518,100%,Montserrat,13.0,t +41518,100%,Montserrat,13.0,t +9540,90%,Somalia,1.0,f +49345,,Tonga,1.0,f +19552,100%,,1.0,f +12369,90%,Russian Federation,2.0,f +38593,100%,Tonga,1.0,f +26067,60%,Reunion,1.0,f +19602,100%,Lithuania,24.0,f +28414,100%,Uzbekistan,22.0,f +48674,100%,Isle of Man,2.0,f +6434,100%,Nicaragua,2.0,f +9178,70%,French Guiana,2.0,f +24772,90%,Denmark,10.0,f +9741,99%,Cape Verde,8.0,f +28657,100%,Kiribati,1.0,f +41787,86%,Russian Federation,1.0,t +41484,89%,Anguilla,23.0,f +15496,50%,,1.0,t +45877,100%,Costa Rica,1.0,f +43875,,Nauru,1.0,f +45402,100%,,1.0,f +36127,100%,,16.0,f +36127,100%,,16.0,f +991,33%,Jersey,1.0,t +32723,100%,,1.0,f +47313,80%,Costa Rica,4.0,f +40391,100%,Malawi,1.0,t +37704,96%,Fiji,26.0,f +47242,100%,Chile,1.0,f +33137,100%,El Salvador,9.0,f +1310,83%,Barbados,5.0,f +18442,100%,Reunion,5.0,t +42370,100%,Marshall Islands,6.0,f +9741,99%,Cape Verde,8.0,f +42370,100%,Marshall Islands,6.0,f +2714,100%,Bosnia and Herzegovina,8.0,f +1610,100%,Niue,1.0,f +978,95%,Lithuania,29.0,f +19598,100%,,2.0,t +17321,,Sao Tome and Principe,1.0,f +45088,100%,Reunion,9.0,f +18242,,Bouvet Island (Bouvetoya),12.0,f +36916,0%,Uzbekistan,1.0,f +24128,54%,Suriname,9.0,t +43097,93%,Sao Tome and Principe,4.0,f +978,95%,Lithuania,29.0,f +37704,96%,Fiji,26.0,f +16703,100%,Uzbekistan,4.0,f +15610,,,1.0,t +49429,99%,Bosnia and Herzegovina,49.0,f +21332,100%,Isle of Man,2.0,t +19126,92%,Niue,2.0,f +8771,100%,Barbados,1.0,f +37704,96%,Fiji,26.0,f +2748,100%,Nicaragua,2.0,f +31707,100%,Niger,48.0,f +14827,90%,,1.0,t +25802,100%,,1.0,f +26883,100%,Guernsey,2.0,t +31707,100%,Niger,48.0,f +43097,93%,Sao Tome and Principe,4.0,f +38364,100%,Vanuatu,1.0,f +43097,93%,Sao Tome and Principe,4.0,f +34543,100%,Mauritania,2.0,t +47353,94%,Niue,20.0,f +45831,100%,Niue,4.0,f +32266,83%,Tonga,2.0,f +10711,93%,Uganda,108.0,t +47353,94%,Niue,20.0,f +38907,100%,,3.0,t +11616,100%,Uzbekistan,12.0,t +29647,100%,Peru,1305.0,f +47311,,Micronesia,2.0,f +1529,100%,Denmark,1.0,f +40650,,,8.0,t +24718,90%,Nicaragua,2.0,f +8502,,Nicaragua,1.0,f +29647,100%,Peru,1305.0,f +48991,76%,Bosnia and Herzegovina,7.0,t +46395,100%,Niger,1.0,f +49135,100%,Vanuatu,1.0,f +29315,100%,Brazil,6.0,f +48475,100%,Lebanon,1.0,f +9962,100%,Ukraine,3.0,f +12685,95%,,3.0,t +743,,Suriname,1.0,t +36168,100%,,2.0,f +11666,73%,Tonga,5.0,t +49097,67%,Niger,5.0,t +28842,100%,Reunion,2.0,t +11027,,United Kingdom,1.0,f +15823,,,1.0,f +19107,,Zimbabwe,1.0,t +36832,83%,Micronesia,1.0,f +9286,60%,,2.0,f +38184,40%,Estonia,1.0,f +4316,100%,Micronesia,18.0,f +4316,100%,Micronesia,18.0,f +14218,100%,Uzbekistan,1.0,f +18206,100%,,3.0,f +43097,93%,Sao Tome and Principe,4.0,f +25132,100%,,2.0,f +29368,100%,Kiribati,4.0,f +25668,100%,Jersey,12.0,t +18206,100%,,3.0,f +26817,50%,Venezuela,1.0,f +18206,100%,,3.0,f +23310,100%,Malawi,1.0,t +9772,100%,Marshall Islands,3.0,t +8671,0%,Costa Rica,1.0,f +26262,100%,Russian Federation,1.0,f +22619,90%,Niue,4.0,f +10617,100%,United Kingdom,1.0,f +45271,,Isle of Man,1.0,f +35980,100%,,2.0,f +19989,100%,Cape Verde,2.0,f +43316,100%,Indonesia,23.0,f +45431,100%,,1.0,f +49833,100%,,1.0,f +28132,100%,Faroe Islands,1.0,f +43316,100%,Indonesia,23.0,f +38680,100%,Tonga,1.0,f +20475,100%,Pakistan,1.0,f +24655,100%,Turks and Caicos Islands,1.0,t +46728,100%,,1.0,f +17568,100%,,2.0,f +49429,99%,Bosnia and Herzegovina,49.0,f +33886,,Gambia,9.0,t +19472,100%,United Kingdom,6.0,f +44948,100%,Chad,3.0,f +1835,100%,Ecuador,8.0,f +44997,100%,Saint Helena,5.0,f +29025,85%,Gabon,2.0,t +31458,100%,Lithuania,2.0,f +36372,,Wallis and Futuna,3.0,f +28847,,,3.0,f +28847,,,3.0,f +28847,,,3.0,f +27932,,China,1.0,f +21502,83%,,1.0,t +34604,96%,Kenya,18.0,f +626,100%,Micronesia,1.0,f +23988,,Niue,4.0,f +35696,,,3.0,t +34398,100%,,3.0,t +11913,100%,Gambia,5.0,f +30767,100%,,1.0,f +40294,100%,Barbados,6.0,f +9741,99%,Cape Verde,8.0,f +30737,88%,,1.0,f +24626,100%,Cocos (Keeling) Islands,3.0,f +40294,100%,Barbados,6.0,f +31233,100%,,1.0,f +1269,82%,China,2.0,t +23988,,Niue,4.0,f +45064,98%,Anguilla,15.0,f +13808,70%,,1.0,f +47993,100%,Malawi,1.0,t +4582,100%,Anguilla,1.0,f +46905,,Bouvet Island (Bouvetoya),1.0,f +37499,100%,French Guiana,4.0,t +37603,100%,Peru,1.0,f +30932,100%,Isle of Man,1.0,f +31466,100%,Uzbekistan,2.0,f +29009,100%,Denmark,1.0,f +41878,91%,Maldives,47.0,f +11364,90%,Senegal,1.0,f +16733,100%,Vanuatu,1.0,f +42215,,Bosnia and Herzegovina,5.0,f +24128,54%,Suriname,9.0,t +46372,100%,Northern Mariana Islands,7.0,t +29647,100%,Peru,1305.0,f +24734,100%,Russian Federation,1.0,f +42215,,Bosnia and Herzegovina,5.0,f +12113,100%,Reunion,2.0,f +6745,100%,Gambia,2.0,f +5202,,,2.0,f +32073,100%,Nicaragua,1.0,f +37215,100%,Indonesia,4.0,t +21225,,Guinea,1.0,f +40370,100%,Zimbabwe,3.0,f +46030,100%,Togo,4.0,f +40370,100%,Zimbabwe,3.0,f +21541,100%,,1.0,f +20842,,Lebanon,1.0,t +19782,,,6.0,f +3314,100%,Slovakia (Slovak Republic),10.0,f +44857,100%,Zimbabwe,24.0,t +10591,100%,Micronesia,2.0,f +37913,61%,,1.0,f +47689,,,2.0,f +36720,100%,Maldives,1.0,f +48284,,Micronesia,1.0,f +10591,100%,Micronesia,2.0,f +24033,100%,Uganda,45.0,f +24033,100%,Uganda,45.0,f +34590,100%,,1.0,f +44586,85%,Ukraine,13.0,f +36221,0%,Turks and Caicos Islands,1.0,f +5523,,Kiribati,1.0,f +36774,100%,Tonga,19.0,f +5886,94%,Fiji,25.0,t +25404,100%,,1.0,t +33793,100%,Russian Federation,2.0,f +44794,100%,,2.0,f +5420,100%,Tonga,41.0,f +12422,100%,Andorra,3.0,f +29081,98%,Uzbekistan,18.0,f +48117,98%,Ukraine,41.0,f +35109,,Chile,2.0,f +43316,100%,Indonesia,23.0,f +34452,100%,Reunion,1.0,t +14514,,China,80.0,t +2713,89%,Micronesia,3.0,f +45975,95%,,2.0,f +10058,100%,Nicaragua,1.0,f +21383,89%,Russian Federation,1.0,t +29806,,Ghana,1.0,f +6635,100%,Guinea,1.0,f +25113,100%,,1.0,t +4833,100%,Uzbekistan,2.0,f +20334,99%,Niger,171.0,t +23631,100%,Tonga,1.0,t +8184,,Zimbabwe,2.0,f +44331,100%,Andorra,2.0,f +14455,100%,,2.0,f +439,100%,Zimbabwe,1.0,t +39146,100%,Guinea,1.0,f +49429,99%,Bosnia and Herzegovina,49.0,f +24688,83%,Barbados,7.0,f +18979,100%,Tonga,6.0,t +46088,,Ghana,15.0,f +23137,,,1.0,f +46088,,Ghana,15.0,f +551,95%,Rwanda,17.0,f +45088,100%,Reunion,9.0,f +14254,100%,Nicaragua,4.0,f +43886,100%,Estonia,1.0,f +49429,99%,Bosnia and Herzegovina,49.0,f +34604,96%,Kenya,18.0,f +23228,100%,Slovakia (Slovak Republic),1.0,f +679,96%,Anguilla,4.0,f +19777,100%,French Guiana,1.0,f +24033,100%,Uganda,45.0,f +36363,82%,Marshall Islands,5.0,f +38484,100%,Senegal,2.0,f +11156,100%,El Salvador,2.0,f +5003,100%,Jersey,8.0,f +34627,100%,Tanzania,1.0,f +40793,100%,,75.0,t +49429,99%,Bosnia and Herzegovina,49.0,f +30384,100%,Isle of Man,1.0,t +25768,100%,Faroe Islands,1.0,t +13128,67%,Chile,2.0,t +5503,100%,,1.0,f +236,100%,,1.0,f +40421,96%,Jersey,29.0,t +48072,100%,Kenya,1.0,t +40009,100%,Svalbard & Jan Mayen Islands,1.0,f +679,96%,Anguilla,4.0,f +47969,100%,Micronesia,1.0,t +47660,94%,,1.0,f +21582,100%,Turkmenistan,1.0,t +37553,100%,Russian Federation,1.0,t +18077,100%,Sao Tome and Principe,139.0,f +18886,95%,Vietnam,3.0,t +6670,100%,Isle of Man,1.0,t +32856,100%,Isle of Man,1.0,f +3774,100%,Nicaragua,3.0,f +17758,80%,,1.0,f +45408,,Cocos (Keeling) Islands,1.0,f +47353,94%,Niue,20.0,f +38127,90%,,2.0,f +9516,99%,Pakistan,45.0,t +48115,100%,Gibraltar,1.0,f +1657,,Croatia,13.0,t +9516,99%,Pakistan,45.0,t +41042,80%,Chile,2.0,f +9516,99%,Pakistan,45.0,t +30082,,Reunion,1.0,f +11983,100%,Gibraltar,2.0,f +41042,80%,Chile,2.0,f +44244,100%,,1.0,f +41091,50%,Gambia,1.0,f +9516,99%,Pakistan,45.0,t +23674,100%,Slovakia (Slovak Republic),3.0,f +9516,99%,Pakistan,45.0,t +16831,,Ghana,1.0,f +28031,100%,Vanuatu,4.0,f +44027,,Uganda,2.0,f +14328,99%,Liechtenstein,21.0,t +38137,99%,Zimbabwe,16.0,f +33517,0%,,1.0,f +15620,95%,Marshall Islands,5.0,f +21830,,,1.0,f +37920,70%,,17.0,t +14254,100%,Nicaragua,4.0,f +11611,90%,Micronesia,3.0,f +15370,,El Salvador,1.0,f +356,99%,Wallis and Futuna,32.0,t +47615,100%,Puerto Rico,1.0,f +27520,100%,Philippines,2.0,t +12216,97%,Uzbekistan,4.0,f +19905,97%,Monaco,8.0,f +32813,70%,Gambia,1.0,t +23146,100%,,6.0,f +4124,,,2.0,f +24004,,,1.0,f +23146,100%,,6.0,f +40914,100%,Russian Federation,1.0,t +29701,98%,Vietnam,3.0,f +23146,100%,,6.0,f +38403,100%,France,1.0,f +37306,100%,Zimbabwe,1.0,f +50070,100%,Vanuatu,1.0,f +39351,100%,Guinea,1.0,f +43838,100%,,1.0,t +20465,100%,Gambia,1.0,f +36376,100%,,1.0,t +41892,100%,Zimbabwe,2.0,f +42878,100%,Greenland,1.0,f +11812,100%,Estonia,1.0,f +15500,,,2.0,f +37778,92%,Tonga,24.0,f +32380,,,1.0,f +14829,,Rwanda,1.0,f +32474,91%,Niue,2.0,f +19305,50%,Monaco,1.0,f +11880,100%,El Salvador,1.0,f +11754,90%,Cuba,2.0,f +43775,100%,,1.0,f +43659,98%,Maldives,14.0,f +14080,100%,,2.0,f +35594,94%,,8.0,f +42416,97%,Puerto Rico,20.0,f +7126,,,1.0,f +7078,100%,Fiji,1.0,f +43659,98%,Maldives,14.0,f +41332,100%,,4.0,f +42335,100%,Mauritania,1.0,f +5809,100%,,2.0,f +15453,100%,,1.0,f +47715,,Rwanda,2.0,f +18770,100%,Mexico,1.0,f +35329,100%,,1.0,f +3851,100%,,2.0,t +49129,0%,Indonesia,1.0,f +12166,100%,,1.0,t +49335,58%,United Kingdom,1.0,f +43959,100%,Tunisia,3.0,t +39161,,French Polynesia,1.0,f +41043,100%,Bosnia and Herzegovina,11.0,f +48222,100%,Sao Tome and Principe,1.0,f +28541,100%,Guernsey,1.0,f +37654,100%,Monaco,1.0,f +24789,100%,Sao Tome and Principe,6.0,f +27968,,Niue,2.0,f +24789,100%,Sao Tome and Principe,6.0,f +38224,100%,Kiribati,2.0,f +1513,,,3.0,f +4782,100%,,3.0,t +27968,,Niue,2.0,f +34703,100%,Pakistan,1.0,f +1513,,,3.0,f +28031,100%,Vanuatu,4.0,f +8949,100%,Isle of Man,4.0,f +28031,100%,Vanuatu,4.0,f +18061,95%,Marshall Islands,1.0,f +48112,100%,Croatia,1.0,t +26229,96%,Wallis and Futuna,1.0,f +15625,100%,Senegal,1.0,f +27160,,,1.0,f +13075,,,1.0,f +44427,100%,,3.0,f +42521,100%,Uzbekistan,3.0,f +44427,100%,,3.0,f +8690,100%,,1.0,f +14791,100%,Cocos (Keeling) Islands,3.0,t +40650,,,8.0,t +10120,100%,Lithuania,2.0,f +49384,100%,Slovakia (Slovak Republic),21.0,f +26870,80%,Sao Tome and Principe,2.0,t +8916,100%,,1.0,f +33200,,China,1.0,f +25871,,Lebanon,1.0,t +41851,100%,,3.0,t +35392,100%,Isle of Man,1.0,f +42890,100%,,1.0,f +28380,,Greenland,3.0,f +9572,,Micronesia,1.0,f +9188,100%,Niue,1.0,t +20165,94%,Ukraine,30.0,f +40676,100%,Jersey,2.0,f +4316,100%,Micronesia,18.0,f +35594,94%,,8.0,f +35594,94%,,8.0,f +35594,94%,,8.0,f +35594,94%,,8.0,f +1679,100%,France,2.0,t +37043,100%,Pakistan,11.0,f +33765,,,2.0,f +17375,94%,Kiribati,1.0,f +32428,100%,Russian Federation,4.0,t +45022,100%,China,1.0,f +19834,100%,Gambia,2.0,f +3607,50%,Faroe Islands,1.0,f +44934,100%,Philippines,17.0,f +41975,100%,,1.0,f +2721,100%,,1.0,t +7327,100%,Isle of Man,1.0,f +32755,,Afghanistan,1.0,f +4059,100%,,2.0,t +16780,,,1.0,f +2479,100%,Isle of Man,1.0,f +48121,100%,,1.0,t +2601,,,4.0,f +39226,100%,Brazil,1.0,f +47778,100%,Cocos (Keeling) Islands,1.0,f +19563,44%,Guinea,1.0,f +21238,100%,,1.0,f +49088,100%,Nauru,1.0,t +4436,,Russian Federation,1.0,f +10114,100%,Guinea,1.0,t +42466,100%,Wallis and Futuna,1.0,t +32399,100%,Somalia,1.0,t +20020,100%,Sao Tome and Principe,2.0,t +12137,99%,Sao Tome and Principe,33.0,t +35234,100%,,1.0,f +910,100%,,1.0,f +20101,100%,United Kingdom,1.0,t +1639,100%,Isle of Man,1.0,f +43486,100%,Niue,1.0,f +43867,100%,Gibraltar,1.0,f +864,23%,Nicaragua,2.0,f +5240,,,2.0,f +24137,100%,,1.0,f +29647,100%,Peru,1305.0,f +1138,100%,Micronesia,1.0,f +18942,100%,Congo,1.0,t +48585,100%,Kiribati,8.0,f +48900,,Micronesia,2.0,f +34057,100%,Lebanon,1.0,f +31343,100%,Sao Tome and Principe,3.0,f +28698,100%,,1.0,f +48585,100%,Kiribati,8.0,f +14693,100%,Vanuatu,1.0,f +8409,98%,Maldives,9.0,f +37754,93%,,1.0,t +24370,90%,Zimbabwe,3.0,f +20835,100%,Gibraltar,3.0,f +40794,56%,,1.0,t +35237,100%,Denmark,2.0,f +35045,,Russian Federation,1.0,f +47589,100%,Micronesia,1.0,f +46979,100%,,1.0,f +28851,100%,Guinea,4.0,t +21245,,Faroe Islands,1.0,f +11004,,Indonesia,1.0,f +9695,,,1.0,f +31726,100%,,1.0,f +26051,,Niue,7.0,f +22416,100%,Brazil,3.0,f +42872,100%,Papua New Guinea,1.0,f +43032,100%,Malta,1.0,t +24091,,Togo,1.0,f +7250,100%,Ecuador,6.0,f +31837,100%,Niue,2.0,t +23123,100%,,1.0,f +3999,100%,Pakistan,1.0,f +43415,100%,Gambia,1.0,f +33139,100%,,1.0,f +36049,,Isle of Man,3.0,f +11062,100%,Philippines,1.0,f +14476,100%,Kiribati,6.0,f +10351,98%,El Salvador,15.0,f +24428,100%,Russian Federation,1.0,f +45848,,Gambia,2.0,f +29447,100%,Faroe Islands,1.0,t +13913,100%,Sao Tome and Principe,1.0,f +34221,100%,Puerto Rico,2.0,t +40932,96%,Zimbabwe,3.0,f +41719,100%,Cape Verde,4.0,f +42573,,Reunion,2.0,t +45848,,Gambia,2.0,f +11310,100%,Congo,4.0,t +14239,100%,Monaco,1.0,f +43009,,,1.0,f +9712,,,1.0,t +16554,,Maldives,3.0,t +20647,100%,,1.0,f +33152,100%,Kiribati,1.0,f +21858,100%,Cuba,2.0,f +29722,100%,Bouvet Island (Bouvetoya),2.0,f +35433,,Gambia,1.0,t +29773,100%,Malawi,1.0,f +32120,100%,Venezuela,1.0,f +48083,100%,,1.0,f +978,95%,Lithuania,29.0,f +23420,100%,Nauru,2.0,f +20334,99%,Niger,171.0,t +37559,100%,Sao Tome and Principe,1.0,f +43571,,,2.0,t +17619,74%,Ghana,14.0,f +30334,,,1.0,f +38282,,Tonga,5.0,f +3314,100%,Slovakia (Slovak Republic),10.0,f +39565,93%,Rwanda,12.0,f +34124,100%,Vanuatu,1.0,f +21938,0%,Lithuania,1.0,f +34190,100%,Barbados,6.0,f +38579,,,1.0,f +20721,,Wallis and Futuna,1.0,f +4131,100%,,1.0,f +39565,93%,Rwanda,12.0,f +9723,100%,Rwanda,3.0,t +44805,,Portugal,2.0,f +36369,93%,,1.0,f +42649,,Kenya,1.0,f +50054,100%,Puerto Rico,1.0,f +45050,100%,Monaco,1.0,t +28317,100%,Somalia,1.0,f +41719,100%,Cape Verde,4.0,f +45254,,Papua New Guinea,1.0,f +11521,100%,Tonga,1.0,f +12761,90%,Anguilla,1.0,t +32719,100%,Nicaragua,2.0,f +36086,100%,Sao Tome and Principe,4.0,t +29859,93%,Guinea,4.0,t +49429,99%,Bosnia and Herzegovina,49.0,f +8852,,,1.0,t +28990,100%,,1.0,f +35442,,Russian Federation,14.0,f +26986,100%,Jersey,20.0,f +28380,,Greenland,3.0,f +41189,100%,Mauritania,4.0,t +38523,,Tonga,2.0,f +24896,100%,Algeria,50.0,t +22253,100%,Bosnia and Herzegovina,1.0,f +18320,50%,Reunion,19.0,t +28157,100%,Turkmenistan,1.0,f +35167,100%,Korea,2.0,t +16980,,Chile,2.0,f +32705,100%,Turkmenistan,3.0,f +28380,,Greenland,3.0,f +45176,,Vanuatu,3.0,f +21452,99%,Lebanon,29.0,f +45306,89%,Rwanda,7.0,t +43834,99%,Uganda,13.0,f +12256,100%,Nicaragua,1.0,f +49429,99%,Bosnia and Herzegovina,49.0,f +46822,98%,,12.0,f +15711,,China,1.0,f +46632,,Bosnia and Herzegovina,1.0,t +18320,50%,Reunion,19.0,t +3732,100%,Russian Federation,1.0,f +45120,,,1.0,f +43550,100%,Rwanda,16.0,t +17573,100%,Jersey,1.0,t +8669,85%,Denmark,2.0,f +49429,99%,Bosnia and Herzegovina,49.0,f +733,100%,,1.0,f +229,100%,Faroe Islands,1.0,f +7834,94%,Mexico,13.0,f +15885,100%,,1.0,f +50023,93%,Russian Federation,1.0,f +14514,,China,80.0,t +601,,Cocos (Keeling) Islands,2.0,f +13070,100%,Fiji,45.0,f +36761,100%,Tonga,1.0,f +29423,100%,Niue,3.0,f +7421,,,1.0,t +14070,100%,,2.0,f +38107,,Bouvet Island (Bouvetoya),1.0,f +32389,75%,,5.0,f +213,96%,Guinea,1.0,f +28772,100%,Niger,15.0,t +5554,100%,,1.0,t +13070,100%,Fiji,45.0,f +29072,50%,Chile,1.0,f +28577,100%,,1.0,t +13070,100%,Fiji,45.0,f +12541,100%,Gibraltar,2.0,t +46265,,Tonga,1.0,f +19655,100%,Tonga,13.0,t +21168,100%,Mauritania,1.0,f +39972,100%,Niue,1.0,f +23203,100%,Uzbekistan,1.0,f +5080,29%,Nicaragua,1.0,f +48573,89%,Wallis and Futuna,1.0,f +22999,100%,Kiribati,1.0,f +21837,100%,Malawi,1.0,f +22953,100%,,3.0,f +49435,100%,Marshall Islands,6.0,t +16425,,Guinea,1.0,f +26378,,Cape Verde,5.0,f +21509,100%,,1.0,t +40697,93%,,2.0,f +49425,,Isle of Man,1.0,f +25301,100%,,2.0,f +41477,,,1.0,t +28418,100%,Vietnam,1.0,f +18884,100%,Tonga,1.0,t +43005,100%,Senegal,3.0,f +24746,100%,Pakistan,1.0,f +47027,88%,,1.0,f +28891,100%,Tanzania,2.0,f +3957,80%,Niue,1.0,f +48384,100%,Mauritania,1.0,f +27919,100%,Faroe Islands,4.0,f +11974,100%,Turkmenistan,4.0,t +39224,,Guinea,2.0,f +28733,86%,,1.0,f +15245,100%,,11.0,f +8521,67%,,1.0,f +42025,100%,France,1.0,f +29094,100%,,1.0,t +27919,100%,Faroe Islands,4.0,f +2802,93%,Togo,3.0,t +9597,100%,Nauru,1.0,f +7593,100%,Senegal,2.0,f +40565,92%,Tonga,1.0,f +31707,100%,Niger,48.0,f +2184,,Isle of Man,1.0,f +41518,100%,Montserrat,13.0,t +44169,97%,Portugal,39.0,f +679,96%,Anguilla,4.0,f +49354,88%,Philippines,3.0,f +41518,100%,Montserrat,13.0,t +49429,99%,Bosnia and Herzegovina,49.0,f +13839,100%,Niue,1.0,f +20578,,Micronesia,2.0,f +34852,,Niue,10.0,t +41518,100%,Montserrat,13.0,t +23166,50%,Faroe Islands,1.0,t +13070,100%,Fiji,45.0,f +26343,100%,,1.0,f +5848,80%,Canada,2.0,f +11968,100%,,3.0,f +34763,100%,Russian Federation,4.0,f +4206,100%,Sao Tome and Principe,2.0,f +5848,80%,Canada,2.0,f +23034,99%,Monaco,54.0,f +39711,100%,Estonia,1.0,f +46418,100%,Kenya,1.0,f +42869,,El Salvador,9.0,f +27663,100%,Kenya,1.0,f +9591,75%,,1.0,f +12026,,Chad,2.0,t +27620,100%,Gambia,1.0,f +10521,100%,Egypt,3.0,t +37768,,,1.0,f +15844,95%,Tonga,2.0,f +39565,93%,Rwanda,12.0,f +49084,,,1.0,f +39565,93%,Rwanda,12.0,f +24071,100%,Indonesia,22.0,f +39616,100%,Costa Rica,13.0,f +7995,86%,Russian Federation,1.0,t +39855,100%,,1.0,f +10484,100%,Guinea,12.0,t +15742,97%,,1.0,f +36127,100%,,16.0,f +38675,100%,Slovakia (Slovak Republic),16.0,t +20727,100%,Russian Federation,4.0,t +6495,89%,Tonga,34.0,f +20985,100%,,1.0,f +10948,100%,Denmark,3.0,f +34604,96%,Kenya,18.0,f +1871,,Ghana,1.0,f +10365,100%,Andorra,1.0,t +50090,100%,Guinea,1.0,f +6495,89%,Tonga,34.0,f +22670,93%,Philippines,4.0,f +15642,,Brazil,3.0,f +16079,100%,Sao Tome and Principe,1.0,f +6164,100%,Lebanon,1.0,f +7715,100%,Montserrat,3.0,f +47274,100%,Tonga,48.0,f +6495,89%,Tonga,34.0,f +8669,85%,Denmark,2.0,f +7504,,Anguilla,1.0,f +36616,100%,Guinea,2.0,f +39789,80%,Svalbard & Jan Mayen Islands,1.0,t +12886,100%,Marshall Islands,2.0,f +5071,0%,Brazil,1.0,f +11255,93%,Suriname,41.0,f +22331,99%,Rwanda,50.0,t +28414,100%,Uzbekistan,22.0,f +13641,85%,Mauritania,23.0,f +14535,88%,Montserrat,18.0,f +44009,,,3.0,f +41853,100%,Denmark,1.0,f +8983,100%,Anguilla,7.0,f +4257,80%,Mauritania,1.0,f +38675,100%,Slovakia (Slovak Republic),16.0,t +3274,86%,Barbados,24.0,f +36499,75%,Anguilla,25.0,t +11125,100%,Nicaragua,12.0,t +40233,90%,Estonia,1.0,t +21686,69%,,1.0,f +17294,,,1.0,f +29232,100%,Nicaragua,9.0,f +15844,95%,Tonga,2.0,f +38406,96%,Russian Federation,6.0,t +19259,,,3.0,f +4322,97%,Tonga,32.0,f +29232,100%,Nicaragua,9.0,f +10686,86%,Tonga,21.0,f +49976,100%,Turkmenistan,1.0,f +17411,100%,,1.0,t +7462,100%,Sao Tome and Principe,2.0,f +48728,,Netherlands,1.0,f +16117,,French Polynesia,1.0,f +32279,100%,Ghana,2.0,t +38930,,Russian Federation,1.0,f +11704,100%,Niue,1.0,f +6698,91%,Jersey,1.0,f +4322,97%,Tonga,32.0,f +4183,100%,,1.0,f +17535,100%,,1.0,t +39637,100%,Niue,1.0,f +22167,100%,Nauru,1.0,f +18263,100%,Kenya,1.0,f +16163,100%,France,2.0,f +7250,100%,Ecuador,6.0,f +47254,50%,,2.0,t +33668,100%,Marshall Islands,2.0,t +4607,25%,Bahrain,1.0,f +25449,100%,Gibraltar,1.0,f +15856,100%,Reunion,2.0,f +31979,100%,Kenya,10.0,f +6736,100%,El Salvador,1.0,f +7250,100%,Ecuador,6.0,f +3468,100%,Nicaragua,1.0,f +21987,,,1.0,f +32377,,,1.0,f +13415,86%,,1.0,t +35166,100%,Denmark,1.0,f +431,67%,,2.0,f +22044,100%,,2.0,t +10351,98%,El Salvador,15.0,f +5058,100%,Uzbekistan,4.0,f +21325,100%,,1.0,f +2713,89%,Micronesia,3.0,f +5058,100%,Uzbekistan,4.0,f +42012,100%,Monaco,3.0,t +47205,100%,,4.0,f +24026,98%,Cape Verde,69.0,t +24026,98%,Cape Verde,69.0,t +48291,,Bosnia and Herzegovina,2.0,f +7616,83%,Sao Tome and Principe,1.0,f +9802,,Indonesia,38.0,t +21746,86%,,2.0,t +5633,100%,Lebanon,1.0,f +49429,99%,Bosnia and Herzegovina,49.0,f +5406,100%,Gambia,3.0,f +39331,100%,,1.0,f +40140,90%,Marshall Islands,3.0,f +6690,92%,,1.0,f +1657,,Croatia,13.0,t +18362,100%,Uganda,5.0,f +28292,73%,Lebanon,2.0,f +49542,100%,Turkmenistan,2.0,f +8355,87%,Togo,16.0,f +6253,,,1.0,t +1709,100%,Tonga,2.0,f +16674,100%,,1.0,f +39096,,Slovakia (Slovak Republic),1.0,f +32886,90%,Russian Federation,6.0,f +2481,,Guinea,1.0,f +37619,100%,Isle of Man,2.0,t +18077,100%,Sao Tome and Principe,139.0,f +8723,100%,,1.0,t +19645,,Maldives,1.0,f +2375,,Tonga,1.0,f +10182,100%,,2.0,f +17166,,French Guiana,1.0,f +40225,100%,Uganda,3.0,t +2906,,Marshall Islands,1.0,t +15847,,Uganda,13.0,f +43152,100%,Nicaragua,82.0,t +3565,,El Salvador,1.0,f +11255,93%,Suriname,41.0,f +13834,,Kiribati,9.0,f +30675,67%,Guinea,3.0,f +41484,89%,Anguilla,23.0,f +20395,,Anguilla,1.0,f +43116,100%,Montserrat,1.0,f +9421,100%,,5.0,f +48983,100%,Sao Tome and Principe,2.0,f +37098,0%,French Polynesia,1.0,f +26986,100%,Jersey,20.0,f +33440,88%,Isle of Man,3.0,f +22526,100%,,2.0,t +35806,,Niue,3.0,f +27671,100%,Turkmenistan,1.0,f +7368,100%,Russian Federation,2.0,t +43999,100%,Niue,1.0,f +49429,99%,Bosnia and Herzegovina,49.0,f +5670,100%,Vietnam,1.0,f +47274,100%,Tonga,48.0,f +12762,100%,United Kingdom,1.0,f +18077,100%,Sao Tome and Principe,139.0,f +25585,100%,Venezuela,2.0,t +47117,100%,Niue,1.0,t +11637,,Sao Tome and Principe,1.0,f +29457,100%,Guinea,3.0,f +29769,100%,Croatia,1.0,t +9363,95%,Ukraine,50.0,f +1776,,Sao Tome and Principe,1.0,t +12988,98%,Pakistan,5.0,f +9419,70%,Brazil,2.0,f +38114,94%,Uzbekistan,19.0,f +679,96%,Anguilla,4.0,f +32667,93%,Montserrat,1.0,f +18000,100%,Slovakia (Slovak Republic),7.0,t +35594,94%,,8.0,f +35594,94%,,8.0,f +48303,100%,France,2.0,f +21205,100%,,1.0,t +47335,78%,Guernsey,15.0,f +40294,100%,Barbados,6.0,f +35311,64%,Isle of Man,1.0,f +7603,100%,Nicaragua,1.0,f +25557,100%,Reunion,2.0,t +24161,95%,,2.0,f +23391,100%,,1.0,t +5008,100%,Guinea,2.0,f +40557,100%,Kenya,2.0,f +18323,100%,,3.0,t +15533,100%,,1.0,t +3921,98%,,14.0,f +17036,81%,Reunion,6.0,f +15902,100%,San Marino,1.0,f +26886,,Uzbekistan,1.0,f +33454,100%,Tonga,7.0,f +28104,100%,Maldives,1.0,f +5437,98%,Reunion,4.0,f +46079,87%,,1.0,f +5319,100%,Kiribati,2.0,f +8888,92%,Ukraine,2.0,f +49565,92%,Uganda,14.0,f +42101,100%,,2.0,f +30935,,France,1.0,f +24643,100%,,1.0,f +40934,100%,Brazil,3.0,f +7953,,,9.0,f +7953,,,9.0,f +7953,,,9.0,f +7953,,,9.0,f +7953,,,9.0,f +7953,,,9.0,f +7953,,,9.0,f +7953,,,9.0,f +20334,99%,Niger,171.0,t +20334,99%,Niger,171.0,t +228,67%,,2.0,t +34471,86%,French Guiana,1.0,f +43316,100%,Indonesia,23.0,f +40934,100%,Brazil,3.0,f +6283,100%,Switzerland,3.0,f +11596,100%,Anguilla,2.0,f +8516,,,1.0,f +44990,100%,Marshall Islands,1.0,f +41910,100%,Slovakia (Slovak Republic),5.0,f +13217,100%,,1.0,f +17498,100%,Lithuania,1.0,t +45496,40%,Niue,6.0,f +43321,100%,France,40.0,f +39170,,Malta,1.0,f +13086,100%,,1.0,f +4217,,Kenya,52.0,f +18354,100%,Gibraltar,1.0,t +38960,100%,,1.0,f +41783,67%,Malta,2.0,t +42494,100%,Mauritania,2.0,f +33263,,Cocos (Keeling) Islands,2.0,f +29813,100%,Holy See (Vatican City State),1.0,f +23729,100%,,1.0,f +6548,100%,Russian Federation,1.0,f +32658,85%,Saint Helena,1.0,f +33455,100%,,1.0,f +4217,,Kenya,52.0,f +6838,96%,Spain,59.0,t +37243,100%,Tunisia,1.0,f +3406,91%,Monaco,6.0,t +7206,100%,Russian Federation,1.0,t +43321,100%,France,40.0,f +43321,100%,France,40.0,f +45553,90%,Brazil,16.0,t +37608,100%,,1.0,f +43152,100%,Nicaragua,82.0,t +42935,100%,,1.0,f +16507,100%,Nauru,1.0,f +40697,93%,,2.0,f +3406,91%,Monaco,6.0,t +31853,,Montserrat,1.0,f +34587,,Isle of Man,22.0,t +43659,98%,Maldives,14.0,f +48641,100%,Anguilla,1.0,f +30216,98%,Maldives,34.0,f +29138,88%,Kiribati,2.0,f +48029,100%,Malta,2.0,f +2601,,,4.0,f +42615,100%,Kenya,3.0,f +13364,91%,Netherlands,21.0,f +11396,100%,Micronesia,1.0,f +22305,,Kiribati,3.0,f +40168,100%,,1.0,f +13731,100%,France,1.0,t +1503,50%,Montserrat,2.0,f +23437,100%,Niger,1.0,f +1503,50%,Montserrat,2.0,f +25420,100%,French Guiana,1.0,f +21452,99%,Lebanon,29.0,f +7198,100%,Isle of Man,4.0,f +28833,100%,Venezuela,5.0,f +18000,100%,Slovakia (Slovak Republic),7.0,t +43590,100%,Costa Rica,9.0,f +44049,100%,,2.0,f +31274,98%,Cuba,7.0,f +43590,100%,Costa Rica,9.0,f +3859,100%,Gibraltar,1.0,f +43590,100%,Costa Rica,9.0,f +6564,,Uganda,9.0,f +18323,100%,,3.0,t +43590,100%,Costa Rica,9.0,f +43590,100%,Costa Rica,9.0,f +48133,,Isle of Man,45.0,f +38889,100%,,1.0,f +33440,88%,Isle of Man,3.0,f +19214,100%,Senegal,55.0,f +3331,100%,Isle of Man,1.0,f +23430,100%,Reunion,16.0,f +43008,98%,Costa Rica,5.0,f +47380,100%,Russian Federation,4.0,f +22044,100%,,2.0,t +19214,100%,Senegal,55.0,f +21625,,Nauru,1.0,f +26107,100%,Niue,3.0,f +37423,100%,Estonia,2.0,f +40650,,,8.0,t +20040,100%,,1.0,f +22928,,Marshall Islands,1.0,f +26700,,Niue,6.0,f +6190,,Chad,1.0,f +48846,100%,,1.0,f +43889,100%,Lebanon,2.0,f +44329,100%,Estonia,2.0,f +27948,100%,Niue,4.0,f +44857,100%,Zimbabwe,24.0,t +26285,94%,Senegal,9.0,f +42921,100%,Chile,3.0,f +22319,100%,Tanzania,2.0,f +46796,100%,,3.0,f +1489,100%,Marshall Islands,1.0,t +24020,77%,Tonga,6.0,t +13200,,China,2.0,f +27128,,Lebanon,1.0,f +26285,94%,Senegal,9.0,f +46796,100%,,3.0,f +42893,100%,,1.0,f +1657,,Croatia,13.0,t +36634,100%,Uganda,4.0,f +8267,100%,Vietnam,1.0,f +42965,100%,Uzbekistan,11.0,t +33106,100%,Nicaragua,1.0,t +28372,100%,Indonesia,12.0,f +46794,100%,,2.0,f +43148,100%,Slovakia (Slovak Republic),1.0,f +44518,,Micronesia,1.0,f +18302,100%,Sao Tome and Principe,1.0,f +49123,100%,Pakistan,1.0,f +3019,100%,Barbados,18.0,f +44173,100%,Greenland,2.0,t +2371,,,1.0,f +32391,,Slovakia (Slovak Republic),1.0,t +26285,94%,Senegal,9.0,f +11520,100%,Niue,1.0,f +14155,,Maldives,1.0,f +31785,,Guinea,1.0,t +33668,100%,Marshall Islands,2.0,t +27123,100%,Chad,1.0,t +32775,100%,,1.0,f +28080,100%,,1.0,f +23276,100%,Brazil,4.0,f +34868,100%,,3.0,f +46259,76%,Kiribati,3.0,f +30590,,Micronesia,1.0,f +5057,100%,Zimbabwe,23.0,t +20956,43%,Rwanda,8.0,f +10446,100%,Gibraltar,1.0,f +1108,100%,Lebanon,5.0,f +1108,100%,Lebanon,5.0,f +49933,,Reunion,6.0,f +18437,80%,Kiribati,1.0,f +19228,100%,Svalbard & Jan Mayen Islands,8.0,f +32790,100%,,2.0,f +48991,76%,Bosnia and Herzegovina,7.0,t +23430,100%,Reunion,16.0,f +1108,100%,Lebanon,5.0,f +34430,100%,Indonesia,3.0,f +21452,99%,Lebanon,29.0,f +22401,100%,Faroe Islands,2.0,f +26378,,Cape Verde,5.0,f +485,80%,French Guiana,2.0,f +1361,100%,,2.0,f +32507,100%,,1.0,f +20578,,Micronesia,2.0,f +38627,100%,Rwanda,2.0,f +15189,79%,China,21.0,f +14400,100%,Lebanon,1.0,f +46259,76%,Kiribati,3.0,f +8553,100%,,1.0,f +43321,100%,France,40.0,f +14476,100%,Kiribati,6.0,f +4427,,Gambia,1.0,f +551,95%,Rwanda,17.0,f +24831,,,1.0,f +49429,99%,Bosnia and Herzegovina,49.0,f +8355,87%,Togo,16.0,f +40793,100%,,75.0,t +34098,100%,,1.0,f +46803,,,1.0,f +12715,100%,Estonia,29.0,f +26851,100%,Nicaragua,1.0,f +40112,100%,Cape Verde,1.0,f +12307,81%,Maldives,3.0,f +40339,97%,Marshall Islands,2.0,t +26700,,Niue,6.0,f +25231,100%,Guinea,1.0,t +29035,,Nicaragua,2.0,f +26986,100%,Jersey,20.0,f +12307,81%,Maldives,3.0,f +20727,100%,Russian Federation,4.0,t +47455,100%,Chile,1.0,f +26986,100%,Jersey,20.0,f +26986,100%,Jersey,20.0,f +26986,100%,Jersey,20.0,f +551,95%,Rwanda,17.0,f +26986,100%,Jersey,20.0,f +32536,100%,Tonga,1.0,f +26986,100%,Jersey,20.0,f +46407,71%,Rwanda,3.0,f +17605,100%,Svalbard & Jan Mayen Islands,1.0,f +26986,100%,Jersey,20.0,f +16489,100%,Russian Federation,42.0,t +4936,91%,Philippines,27.0,f +26986,100%,Jersey,20.0,f +29200,100%,Tunisia,1.0,f +3299,,Bouvet Island (Bouvetoya),1.0,f +551,95%,Rwanda,17.0,f +19228,100%,Svalbard & Jan Mayen Islands,8.0,f +4217,,Kenya,52.0,f +41510,100%,Gambia,1.0,f +12715,100%,Estonia,29.0,f +21978,94%,Papua New Guinea,2.0,t +12344,100%,,1.0,f +4446,100%,Uganda,58.0,f +9516,99%,Pakistan,45.0,t +3274,86%,Barbados,24.0,f +49490,100%,Russian Federation,1.0,t +25102,100%,Isle of Man,1.0,t +4057,100%,Rwanda,16.0,f +20533,67%,Puerto Rico,1.0,f +26928,100%,,4.0,f +23831,100%,Lebanon,2.0,f +2122,100%,Faroe Islands,1.0,t +23831,100%,Lebanon,2.0,f +9363,95%,Ukraine,50.0,f +17036,81%,Reunion,6.0,f +17036,81%,Reunion,6.0,f +19230,,Uzbekistan,3.0,f +7250,100%,Ecuador,6.0,f +15745,90%,Isle of Man,2.0,t +28613,100%,Senegal,1.0,f +38430,,Somalia,1.0,f +45064,98%,Anguilla,15.0,f +4057,100%,Rwanda,16.0,f +4057,100%,Rwanda,16.0,f +4057,100%,Rwanda,16.0,f +5277,100%,Vietnam,10.0,f +25411,33%,Marshall Islands,1.0,f +45737,,Tonga,29.0,t +31947,99%,Jersey,38.0,f +19786,0%,,1.0,t +4613,78%,,1.0,f +41259,,Monaco,1.0,t +47973,,Ghana,5.0,f +3112,94%,Indonesia,25.0,f +3760,,,1.0,t +8908,100%,,2.0,f +1683,100%,,1.0,f +28828,100%,Isle of Man,198.0,t +6663,95%,Gambia,5.0,f +45403,90%,Venezuela,3.0,f +19598,100%,,2.0,t +44701,,Chad,1.0,t +21380,,Brunei Darussalam,2.0,f +30435,99%,Cape Verde,41.0,f +25046,100%,Maldives,14.0,f +25506,,Chile,1.0,f +20263,99%,Maldives,35.0,t +28390,100%,,1.0,f +44734,,Bosnia and Herzegovina,1.0,f +15938,90%,,2.0,f +16498,100%,,1.0,f +26986,100%,Jersey,20.0,f +29809,100%,,3.0,f +42486,75%,Monaco,1.0,f +35016,93%,Russian Federation,2.0,f +5922,100%,Kenya,1.0,f +38036,100%,Switzerland,1.0,f +48342,100%,Russian Federation,1.0,f +2459,,Nauru,2.0,f +26986,100%,Jersey,20.0,f +26212,,,1.0,f +5430,,Gambia,1.0,t +37691,100%,Papua New Guinea,1.0,t +39792,100%,,3.0,f +16818,98%,Nicaragua,5.0,t +47226,,,1.0,f +39792,100%,,3.0,f +1657,,Croatia,13.0,t +45707,87%,Philippines,1.0,f +49255,,,1.0,f +28923,100%,Russian Federation,1.0,t +46822,98%,,12.0,f +37714,100%,Zimbabwe,3.0,f +48560,100%,Barbados,3.0,f +47079,,,1.0,t +7974,100%,,1.0,f +20321,100%,Monaco,1.0,f +39690,,,1.0,t +33663,,,2.0,f +4936,91%,Philippines,27.0,f +37656,,Kiribati,1.0,f +35016,93%,Russian Federation,2.0,f +4936,91%,Philippines,27.0,f +4936,91%,Philippines,27.0,f +4936,91%,Philippines,27.0,f +4936,91%,Philippines,27.0,f +40252,,,1.0,f +4936,91%,Philippines,27.0,f +46184,100%,Tonga,1.0,f +37575,,,1.0,f +19958,100%,Congo,40.0,t +39664,,,2.0,f +14422,,Zimbabwe,1.0,f +25517,,Uzbekistan,1.0,f +4076,50%,Uganda,1.0,t +22632,100%,Togo,1.0,f +4936,91%,Philippines,27.0,f +25149,,Nauru,1.0,f +30435,99%,Cape Verde,41.0,f +4936,91%,Philippines,27.0,f +38546,100%,Cuba,7.0,f +4446,100%,Uganda,58.0,f +37527,100%,Zimbabwe,2.0,f +35584,100%,Lebanon,1.0,f +4936,91%,Philippines,27.0,f +12687,100%,French Guiana,1.0,t +44496,100%,Estonia,1.0,f +4936,91%,Philippines,27.0,f +4446,100%,Uganda,58.0,f +15918,100%,,1.0,f +6564,,Uganda,9.0,f +15170,100%,Guinea,1.0,f +6564,,Uganda,9.0,f +9881,100%,Micronesia,2.0,t +35999,100%,Mauritania,3.0,t +18532,100%,,1.0,f +4936,91%,Philippines,27.0,f +4936,91%,Philippines,27.0,f +49458,,,1.0,f +3244,100%,,1.0,t +47954,97%,Uzbekistan,3.0,f +5318,100%,Maldives,1.0,f +20010,100%,Micronesia,1.0,t +41384,100%,French Polynesia,1.0,t +27882,,France,1.0,f +47894,100%,Turks and Caicos Islands,3.0,f +3019,100%,Barbados,18.0,f +8422,,Vanuatu,1.0,f +6812,100%,Uzbekistan,1.0,t +1642,100%,Marshall Islands,17.0,f +46242,94%,Tanzania,1.0,t +45851,,,1.0,f +3012,,,1.0,f +24578,100%,Jersey,1.0,t +43540,72%,Bosnia and Herzegovina,25.0,f +2508,67%,Marshall Islands,1.0,f +31550,0%,,1.0,f +17677,100%,Micronesia,1.0,f +29528,,Kenya,1.0,f +22949,100%,,1.0,f +36494,,Niger,1.0,f +41012,100%,France,1.0,f +41349,100%,Jersey,1.0,f +48939,100%,Russian Federation,1.0,f +24382,100%,Guinea,1.0,f +39469,100%,Micronesia,11.0,t +28071,100%,Cape Verde,4.0,t +19958,100%,Congo,40.0,t +13407,100%,Lithuania,1.0,f +36637,,China,11.0,f +29056,,,2.0,f +31873,99%,Uzbekistan,22.0,f +35855,,Sao Tome and Principe,3.0,f +10948,100%,Denmark,3.0,f +41604,100%,Tonga,4.0,f +35210,,China,1.0,t +13742,90%,El Salvador,5.0,t +25034,100%,Nicaragua,2.0,f +36106,100%,Holy See (Vatican City State),1.0,t +44790,100%,Guinea,1.0,f +46842,75%,Portugal,13.0,t +45488,,Monaco,1.0,f +30794,100%,Barbados,5.0,t +13807,100%,,2.0,f +10398,67%,Afghanistan,1.0,t +33263,,Cocos (Keeling) Islands,2.0,f +40267,100%,Uzbekistan,2.0,t +12958,20%,Malawi,1.0,t +12110,100%,Tanzania,1.0,t +49897,100%,Uzbekistan,1.0,f +7113,,Malawi,1.0,f +30104,,,1.0,f +48275,100%,Nicaragua,1.0,f +26871,100%,,1.0,t +20734,95%,Ecuador,2.0,f +32089,100%,Cuba,1.0,f +13573,100%,Gibraltar,4.0,t +35559,100%,Svalbard & Jan Mayen Islands,1.0,f +45579,100%,Togo,1.0,f +19230,,Uzbekistan,3.0,f +33926,100%,Uzbekistan,1.0,f +4551,,Christmas Island,1.0,f +19230,,Uzbekistan,3.0,f +28754,100%,Lebanon,1.0,f +26922,100%,,1.0,f +36646,76%,,2.0,f +3287,100%,,1.0,f +13904,,,1.0,f +43473,100%,Finland,1.0,t +27557,100%,,5.0,t +48418,98%,Bosnia and Herzegovina,30.0,f +7905,100%,Wallis and Futuna,1.0,f +16784,100%,Turkmenistan,3.0,t +15540,100%,Russian Federation,1.0,f +38832,97%,,15.0,f +6573,98%,Indonesia,1.0,f +4936,91%,Philippines,27.0,f +4936,91%,Philippines,27.0,f +23533,0%,,1.0,f +4936,91%,Philippines,27.0,f +37735,100%,Uganda,13.0,t +4936,91%,Philippines,27.0,f +42593,100%,Nicaragua,2.0,f +27557,100%,,5.0,t +11144,,Chile,1.0,f +3594,,Papua New Guinea,1.0,f +36637,,China,11.0,f +9285,,,1.0,f +37668,94%,Switzerland,3.0,f +29056,,,2.0,f +39878,0%,,1.0,f +34664,100%,Uruguay,1.0,f +48273,100%,Russian Federation,1.0,f +17213,100%,France,1.0,t +48418,98%,Bosnia and Herzegovina,30.0,f +48880,100%,France,1.0,f +14367,53%,,1.0,f +32565,100%,Niue,1.0,f +10765,,Monaco,3.0,f +45525,93%,Tonga,9.0,f +38342,100%,,2.0,f +20623,,Guinea,1.0,f +41573,,Cook Islands,1.0,f +28904,,Lebanon,1.0,t +39145,,Papua New Guinea,1.0,f +42965,100%,Uzbekistan,11.0,t +1063,100%,Papua New Guinea,4.0,f +34972,,Greenland,4.0,f +21082,100%,Zimbabwe,1.0,t +274,90%,Togo,2.0,f +13065,100%,Jersey,5.0,f +3019,100%,Barbados,18.0,f +18063,100%,China,1.0,f +30393,100%,Djibouti,9.0,f +1657,,Croatia,13.0,t +30393,100%,Djibouti,9.0,f +30393,100%,Djibouti,9.0,f +25668,100%,Jersey,12.0,t +49357,100%,Micronesia,2.0,f +18349,100%,Gambia,1.0,f +39892,100%,Tonga,31.0,t +33719,100%,Turkmenistan,1.0,f +47973,,Ghana,5.0,f +18034,59%,Svalbard & Jan Mayen Islands,4.0,f +2472,100%,,1.0,f +25996,100%,,1.0,f +27826,98%,Saint Helena,5.0,f +3850,67%,Gambia,1.0,f +27985,0%,Russian Federation,1.0,f +10205,100%,Malawi,1.0,t +35860,98%,Vietnam,4.0,t +29208,100%,Libyan Arab Jamahiriya,1.0,f +36637,,China,11.0,f +4168,,Monaco,2.0,t +47630,100%,Gibraltar,1.0,f +13935,100%,Ecuador,2.0,f +36502,70%,,2.0,f +19905,97%,Monaco,8.0,f +551,95%,Rwanda,17.0,f +16406,100%,Bouvet Island (Bouvetoya),16.0,f +24775,97%,Montserrat,44.0,f +24775,97%,Montserrat,44.0,f +7718,,French Polynesia,1.0,t +17847,100%,Anguilla,1.0,f +3262,100%,Philippines,1.0,f +39798,,,1.0,f +41419,100%,Niue,2.0,f +12609,100%,Micronesia,1.0,t +27116,90%,Tunisia,1.0,f +551,95%,Rwanda,17.0,f +5886,94%,Fiji,25.0,t +10051,,Ukraine,3.0,f +48417,100%,Djibouti,5.0,f +39953,,Maldives,1.0,t +31292,100%,,1.0,f +29046,80%,Sao Tome and Principe,1.0,f +10198,100%,Nicaragua,1.0,f +33871,,Rwanda,1.0,f +3596,100%,Marshall Islands,6.0,t +28484,33%,Sao Tome and Principe,1.0,t +5938,100%,,3.0,f +845,,Zimbabwe,1.0,t +22731,100%,Nicaragua,1.0,f +21702,,Kenya,1.0,f +32669,,France,1.0,f +29647,100%,Peru,1305.0,f +49632,10%,Reunion,1.0,f +11255,93%,Suriname,41.0,f +20553,83%,Barbados,4.0,f +10765,,Monaco,3.0,f +20575,100%,,1.0,f +12820,,,1.0,f +18034,59%,Svalbard & Jan Mayen Islands,4.0,f +5938,100%,,3.0,f +39440,,Sao Tome and Principe,2.0,f +39639,100%,Niue,19.0,f +22850,,Turkmenistan,1.0,f +40421,96%,Jersey,29.0,t +39073,67%,Uzbekistan,1.0,t +24033,100%,Uganda,45.0,f +15270,98%,Suriname,3.0,f +8618,100%,,1.0,f +37646,100%,Estonia,60.0,f +24143,0%,Estonia,3.0,f +19261,100%,Gambia,1.0,f +4322,97%,Tonga,32.0,f +49977,100%,Russian Federation,1.0,f +39639,100%,Niue,19.0,f +4322,97%,Tonga,32.0,f +14358,100%,Maldives,9.0,f +15270,98%,Suriname,3.0,f +28589,100%,Bosnia and Herzegovina,5.0,f +36930,100%,Sao Tome and Principe,1.0,t +43834,99%,Uganda,13.0,f +41995,100%,Reunion,5.0,f +43499,100%,Mexico,1.0,f +34619,100%,Isle of Man,1.0,f +4322,97%,Tonga,32.0,f +24896,100%,Algeria,50.0,t +4217,,Kenya,52.0,f +20334,99%,Niger,171.0,t +20334,99%,Niger,171.0,t +20334,99%,Niger,171.0,t +31324,100%,Isle of Man,2.0,f +8934,84%,Marshall Islands,2.0,f +24056,100%,Fiji,1.0,f +4322,97%,Tonga,32.0,f +10686,86%,Tonga,21.0,f +39639,100%,Niue,19.0,f +37180,,Indonesia,1.0,f +33408,100%,Tonga,6.0,f +18361,100%,El Salvador,1.0,f +42181,100%,Sao Tome and Principe,1.0,f +20153,96%,Reunion,51.0,f +41205,100%,United Kingdom,1.0,f +21493,,Uzbekistan,6.0,f +35069,,Turks and Caicos Islands,1.0,f +4322,97%,Tonga,32.0,f +38209,,Bosnia and Herzegovina,2.0,f +19905,97%,Monaco,8.0,f +24507,100%,Micronesia,1.0,t +21990,100%,Guinea,1.0,t +29531,100%,Andorra,1.0,f +38546,100%,Cuba,7.0,f +37047,97%,United Kingdom,5.0,f +24688,83%,Barbados,7.0,f +8894,100%,Lebanon,4.0,t +4322,97%,Tonga,32.0,f +24688,83%,Barbados,7.0,f +4322,97%,Tonga,32.0,f +2504,100%,Nicaragua,1.0,t +11357,100%,Palestinian Territory,1.0,f +48820,100%,Malta,1.0,f +49435,100%,Marshall Islands,6.0,t +46578,100%,Lebanon,6.0,t +38546,100%,Cuba,7.0,f +13521,100%,Guernsey,2.0,t +31731,100%,,1.0,f +43795,89%,Vanuatu,1.0,f +38546,100%,Cuba,7.0,f +38546,100%,Cuba,7.0,f +21373,100%,Rwanda,1.0,f +904,100%,,1.0,t +27966,100%,,1.0,f +46500,99%,Pakistan,73.0,f +22048,100%,Marshall Islands,3.0,t +31611,,,1.0,f +38546,100%,Cuba,7.0,f +50094,100%,Russian Federation,1.0,f +38546,100%,Cuba,7.0,f +22744,100%,,1.0,f +10826,90%,Togo,2.0,f +18722,,,1.0,f +10756,100%,Croatia,1.0,f +24049,100%,,1.0,t +49445,100%,Denmark,4.0,f +3746,100%,,1.0,f +26474,100%,Guinea,4.0,f +12779,100%,Uganda,1.0,t +43418,,Lebanon,1.0,t +19043,100%,,1.0,f +39892,100%,Tonga,31.0,t +49096,100%,El Salvador,3.0,f +16520,100%,Marshall Islands,22.0,f +41724,,Bouvet Island (Bouvetoya),2.0,f +41445,100%,Micronesia,1.0,t +43571,,,2.0,t +41317,100%,Greenland,1.0,f +41724,,Bouvet Island (Bouvetoya),2.0,f +16991,,Zimbabwe,1.0,f +240,100%,Russian Federation,1.0,t +5399,100%,Suriname,2.0,f +9146,100%,Anguilla,1.0,f +41248,,,1.0,f +33718,100%,,1.0,t +27698,,Uzbekistan,1.0,f +39505,,Sao Tome and Principe,2.0,f +61,100%,,1.0,f +42066,100%,Ecuador,1.0,t +48409,,Estonia,60.0,t +27907,100%,Puerto Rico,21.0,f +13479,100%,,5.0,f +22898,100%,French Guiana,1.0,f +12020,100%,Congo,4.0,t +38624,83%,Vanuatu,1.0,t +42143,86%,,1.0,f +24764,100%,,1.0,f +26351,100%,,2.0,f +36995,100%,Marshall Islands,1.0,f +34223,,,4.0,f +19602,100%,Lithuania,24.0,f +44586,85%,Ukraine,13.0,f +1401,100%,Uganda,3.0,f +41484,89%,Anguilla,23.0,f +551,95%,Rwanda,17.0,f +32650,100%,,2.0,f +27981,100%,Cape Verde,1.0,f +11427,,Slovakia (Slovak Republic),4.0,t +18872,100%,Uzbekistan,2.0,t +6063,100%,Isle of Man,1.0,f +38028,,Niue,1.0,f +298,100%,Honduras,3.0,f +45475,100%,Montserrat,2.0,f +12715,100%,Estonia,29.0,f +43382,100%,Lebanon,1.0,f +28421,50%,Gambia,1.0,f +26424,100%,Tonga,2.0,f +40355,96%,Maldives,8.0,t +18484,100%,Gambia,108.0,f +11611,90%,Micronesia,3.0,f +38182,100%,Kiribati,4.0,f +28145,,Tonga,1.0,f +39616,100%,Costa Rica,13.0,f +5834,100%,Marshall Islands,2.0,f +1401,100%,Uganda,3.0,f +39403,90%,Croatia,1.0,f +49766,60%,Ghana,2.0,f +39616,100%,Costa Rica,13.0,f +27907,100%,Puerto Rico,21.0,f +12826,100%,,2.0,f +21901,,Mauritania,1.0,f +36728,100%,,1.0,f +36646,76%,,2.0,f +11682,100%,Anguilla,3.0,f +13479,100%,,5.0,f +25945,100%,,1.0,f +2367,100%,Kiribati,9.0,f +18886,95%,Vietnam,3.0,t +33716,100%,Gibraltar,2.0,f +30280,100%,Sao Tome and Principe,1.0,f +39892,100%,Tonga,31.0,t +4386,,Zimbabwe,4.0,t +39565,93%,Rwanda,12.0,f +11682,100%,Anguilla,3.0,f +42957,,Brazil,1.0,f +9836,100%,Mauritania,2.0,f +2367,100%,Kiribati,9.0,f +43834,99%,Uganda,13.0,f +2367,100%,Kiribati,9.0,f +21877,100%,Cook Islands,7.0,f +12137,99%,Sao Tome and Principe,33.0,t +20344,,Uganda,1.0,f +11682,100%,Anguilla,3.0,f +29647,100%,Peru,1305.0,f +3851,100%,,2.0,t +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +41878,91%,Maldives,47.0,f +33137,100%,El Salvador,9.0,f +24033,100%,Uganda,45.0,f +33137,100%,El Salvador,9.0,f +48688,,Zimbabwe,1.0,f +16033,,Sao Tome and Principe,1.0,t +47582,,Netherlands,1.0,f +45546,100%,Cape Verde,19.0,t +27768,65%,Kiribati,15.0,t +8654,100%,Christmas Island,3.0,f +37505,100%,,3.0,f +18560,100%,,1.0,f +34991,75%,Nicaragua,2.0,f +28860,100%,Lebanon,6.0,t +28337,100%,France,1.0,f +4217,,Kenya,52.0,f +15340,100%,Slovakia (Slovak Republic),1.0,f +8298,100%,Guinea,14.0,f +37505,100%,,3.0,f +37505,100%,,3.0,f +42420,50%,,1.0,f +20764,,France,1.0,f +10711,93%,Uganda,108.0,t +33753,100%,Puerto Rico,1.0,t +28860,100%,Lebanon,6.0,t +43373,100%,Indonesia,2.0,f +24688,83%,Barbados,7.0,f +14266,,French Guiana,2.0,t +24688,83%,Barbados,7.0,f +41484,89%,Anguilla,23.0,f +47648,100%,Lebanon,3.0,t +27721,,,1.0,f +20319,100%,Guinea,1.0,f +10207,100%,Anguilla,1.0,t +19696,100%,,1.0,f +29446,,Indonesia,1.0,f +8377,,,1.0,f +39223,100%,,1.0,f +21104,,Netherlands,1.0,f +19045,100%,Uzbekistan,2.0,t +40613,,China,1.0,f +22417,100%,Turks and Caicos Islands,1.0,f +27203,,Bouvet Island (Bouvetoya),13.0,f +46029,100%,Sao Tome and Principe,2.0,f +28392,100%,Ukraine,10.0,t +15906,100%,Zimbabwe,1.0,f +4053,,Ecuador,6.0,f +41319,100%,Sao Tome and Principe,5.0,f +47125,93%,Kiribati,4.0,f +48069,100%,China,3.0,f +4322,97%,Tonga,32.0,f +20704,,Ghana,1.0,f +18418,,Nicaragua,1.0,f +40401,,Gibraltar,1.0,f +8753,,Niue,1.0,t +11033,100%,Reunion,3.0,f +10604,,Guinea,1.0,f +26921,98%,Nicaragua,6.0,t +36289,100%,Slovakia (Slovak Republic),1.0,f +33716,100%,Gibraltar,2.0,f +36215,100%,Rwanda,1.0,f +6381,88%,Nauru,1.0,f +37036,94%,Estonia,9.0,f +38704,100%,Niue,1.0,t +17891,100%,Nicaragua,5.0,t +15728,100%,Lithuania,1.0,t +29596,,Nauru,3.0,f +46827,100%,,1.0,f +22955,100%,Sao Tome and Principe,1.0,f +48707,33%,Isle of Man,1.0,f +10351,98%,El Salvador,15.0,f +40650,,,8.0,t +38667,100%,Mauritania,2.0,f +35422,100%,Gambia,1.0,f +40746,100%,Slovakia (Slovak Republic),2.0,f +13180,75%,Nicaragua,1.0,f +44764,98%,Maldives,16.0,f +44764,98%,Maldives,16.0,f +44764,98%,Maldives,16.0,f +33394,100%,Bosnia and Herzegovina,2.0,t +44169,97%,Portugal,39.0,f +44764,98%,Maldives,16.0,f +24896,100%,Algeria,50.0,t +18132,100%,,1.0,t +24896,100%,Algeria,50.0,t +16614,100%,Kiribati,1.0,f +4217,,Kenya,52.0,f +44764,98%,Maldives,16.0,f +24293,100%,,1.0,f +24896,100%,Algeria,50.0,t +44169,97%,Portugal,39.0,f +44764,98%,Maldives,16.0,f +10898,100%,Barbados,4.0,t +44764,98%,Maldives,16.0,f +44169,97%,Portugal,39.0,f +28996,100%,Lebanon,1.0,t +2848,100%,Denmark,1.0,f +45018,95%,Portugal,3.0,f +18782,,Russian Federation,3.0,f +24896,100%,Algeria,50.0,t +8601,,Angola,16.0,f +17731,100%,,2.0,f +19856,100%,Saint Helena,1.0,f +28263,,France,1.0,f +28708,100%,Guinea,4.0,t +22021,100%,,1.0,t +23445,100%,Russian Federation,1.0,f +43805,100%,Micronesia,1.0,f +23143,65%,Bouvet Island (Bouvetoya),14.0,f +4322,97%,Tonga,32.0,f +44764,98%,Maldives,16.0,f +1810,100%,Lebanon,2.0,f +44764,98%,Maldives,16.0,f +38329,100%,Vanuatu,1.0,t +25860,100%,Brunei Darussalam,1.0,t +15656,90%,,2.0,t +8849,100%,Brazil,1.0,t +48795,100%,,1.0,f +25536,,Niue,2.0,t +17909,100%,Kiribati,3.0,f +23426,,,1.0,t +15567,100%,Slovakia (Slovak Republic),4.0,f +4322,97%,Tonga,32.0,f +26768,,Indonesia,9.0,f +26768,,Indonesia,9.0,f +26768,,Indonesia,9.0,f +18231,93%,Uganda,7.0,t +9267,100%,Slovakia (Slovak Republic),2.0,f +26768,,Indonesia,9.0,f +41622,,Puerto Rico,1.0,f +45451,100%,Zimbabwe,3.0,f +4217,,Kenya,52.0,f +43042,100%,Niue,3.0,f +13637,60%,,5.0,t +21614,100%,,1.0,f +4322,97%,Tonga,32.0,f +33460,,Togo,1.0,f +18231,93%,Uganda,7.0,t +40444,100%,Nicaragua,1.0,f +23482,100%,Niue,1.0,f +13179,77%,Marshall Islands,2.0,f +4217,,Kenya,52.0,f +48791,97%,Uzbekistan,5.0,t +30022,33%,French Guiana,2.0,f +22683,55%,Togo,1.0,f +3491,83%,Denmark,1.0,f +46197,90%,,1.0,f +47335,78%,Guernsey,15.0,f +1388,,Martinique,2.0,t +42176,,,1.0,t +4217,,Kenya,52.0,f +22349,0%,Monaco,1.0,f +44872,100%,,1.0,t +9267,100%,Slovakia (Slovak Republic),2.0,f +23017,,Niue,1.0,f +43112,100%,Bouvet Island (Bouvetoya),1.0,f +9343,100%,Afghanistan,10.0,t +24698,86%,Russian Federation,2.0,f +7125,,,1.0,f +36257,50%,,1.0,f +42024,100%,Indonesia,1.0,t +41354,100%,Micronesia,4.0,t +23605,100%,Guinea,2.0,f +20515,100%,Niue,2.0,t +12830,,Niue,1.0,t +19602,100%,Lithuania,24.0,f +28910,,Lebanon,1.0,f +45041,100%,Niue,2.0,f +16520,100%,Marshall Islands,22.0,f +36975,100%,Marshall Islands,2.0,f +29580,100%,Russian Federation,3.0,f +35436,99%,Nicaragua,21.0,f +11872,,,13.0,f +29647,100%,Peru,1305.0,f +36841,,Wallis and Futuna,1.0,f +38182,100%,Kiribati,4.0,f +41484,89%,Anguilla,23.0,f +37282,100%,,3.0,f +48869,100%,Slovakia (Slovak Republic),22.0,f +35436,99%,Nicaragua,21.0,f +35436,99%,Nicaragua,21.0,f +41221,75%,,1.0,t +4515,100%,Gambia,2.0,f +49867,100%,,1.0,f +34055,,,1.0,f +48869,100%,Slovakia (Slovak Republic),22.0,f +44973,100%,Kiribati,1.0,f +5114,100%,Niue,2.0,f +44169,97%,Portugal,39.0,f +34284,100%,Cape Verde,2.0,f +2570,,,1.0,f +9822,,Netherlands,2.0,f +15009,100%,Kiribati,1.0,t +47927,100%,Zimbabwe,1.0,f +36396,88%,Afghanistan,2.0,f +46500,99%,Pakistan,73.0,f +43295,,Moldova,1.0,f +39332,100%,Niue,2.0,f +13923,100%,,2.0,f +43145,73%,Sao Tome and Principe,1.0,f +18953,100%,Chile,1.0,f +10974,100%,Niue,1.0,f +45897,,Cook Islands,1.0,t +31522,97%,Niger,5.0,t +27262,79%,Gibraltar,1.0,t +36424,63%,Slovakia (Slovak Republic),12.0,f +27847,100%,Russian Federation,2.0,t +15744,100%,French Guiana,1.0,f +35205,100%,Uzbekistan,1.0,f +28982,100%,Svalbard & Jan Mayen Islands,1.0,f +47164,100%,Ukraine,2.0,f +5254,100%,Malawi,1.0,f +25552,100%,Jersey,1.0,f +24370,90%,Zimbabwe,3.0,f +46099,98%,Uzbekistan,28.0,f +8914,100%,,4.0,f +6346,100%,,2.0,f +8914,100%,,4.0,f +8628,0%,Russian Federation,1.0,f +44193,80%,Croatia,1.0,f +36167,89%,Guinea,3.0,f +13625,80%,Tonga,3.0,f +39762,,,1.0,f +24381,,,2.0,f +13340,100%,Nicaragua,1.0,f +682,,Togo,1.0,f +28735,,Faroe Islands,1.0,f +32735,100%,,2.0,f +49429,99%,Bosnia and Herzegovina,49.0,f +39441,96%,Cuba,4.0,f +28766,100%,Estonia,16.0,f +10278,,China,1.0,f +2124,100%,Somalia,2.0,f +48251,97%,Zimbabwe,6.0,f +1387,,Philippines,4.0,f +31572,60%,Mauritania,1.0,t +39455,100%,Vietnam,1.0,f +23208,75%,Rwanda,1.0,f +20329,100%,Reunion,21.0,f +24943,67%,,1.0,t +24413,100%,Monaco,1.0,f +10570,,Maldives,2.0,f +45581,100%,Venezuela,1.0,f +45636,100%,Reunion,2.0,f +48409,,Estonia,60.0,t +47335,78%,Guernsey,15.0,f +5345,100%,,2.0,f +4150,88%,Monaco,1.0,f +34597,100%,Slovakia (Slovak Republic),3.0,t +3456,100%,Denmark,1.0,f +44764,98%,Maldives,16.0,f +36167,89%,Guinea,3.0,f +38878,100%,,2.0,f +35174,100%,Lithuania,1.0,f +63,,Estonia,1.0,f +44190,100%,,3.0,f +18384,100%,Lithuania,1.0,t +34815,100%,Niue,1.0,t +28677,,Mauritania,1.0,f +16406,100%,Bouvet Island (Bouvetoya),16.0,f +32615,100%,Lebanon,2.0,f +26579,75%,Libyan Arab Jamahiriya,1.0,t +36562,,France,1.0,f +10570,,Maldives,2.0,f +31446,100%,Faroe Islands,9.0,f +22596,90%,Russian Federation,8.0,f +32814,100%,Zimbabwe,2.0,f +37293,92%,Russian Federation,15.0,f +36611,71%,Maldives,14.0,f +31134,100%,Maldives,2.0,t +22596,90%,Russian Federation,8.0,f +31446,100%,Faroe Islands,9.0,f +22721,100%,Ecuador,109.0,f +22596,90%,Russian Federation,8.0,f +20882,100%,Barbados,2.0,f +10035,100%,Tonga,2.0,f +19782,,,6.0,f +35594,94%,,8.0,f +222,89%,,16.0,f +14964,100%,,1.0,f +38182,100%,Kiribati,4.0,f +21142,100%,,1.0,f +46675,100%,Tonga,1.0,f +37398,100%,Ghana,3.0,f +19782,,,6.0,f +29647,100%,Peru,1305.0,f +7290,,,1.0,f +19782,,,6.0,f +26647,71%,,1.0,f +19163,80%,Sao Tome and Principe,1.0,f +49496,100%,Gibraltar,1.0,f +8437,99%,Maldives,6.0,f +20125,75%,,1.0,f +48239,100%,Finland,1.0,f +31900,100%,United Kingdom,1.0,f +40793,100%,,75.0,t +20363,100%,,6.0,f +20363,100%,,6.0,f +20363,100%,,6.0,f +20363,100%,,6.0,f +45460,83%,France,3.0,f +20363,100%,,6.0,f +20363,100%,,6.0,f +28849,100%,Togo,2.0,f +28849,100%,Togo,2.0,f +13710,100%,Christmas Island,3.0,f +46450,,Malta,1.0,t +20894,,Nicaragua,1.0,f +18703,0%,Sao Tome and Principe,1.0,f +49234,100%,Denmark,2.0,f +30792,100%,,1.0,f +17092,100%,Estonia,2.0,f +16783,50%,Lithuania,3.0,f +49558,100%,Malta,5.0,t +49096,100%,El Salvador,3.0,f +36634,100%,Uganda,4.0,f +25376,100%,,3.0,f +18267,100%,Denmark,2.0,t +27110,100%,United Kingdom,3.0,f +16656,100%,,1.0,f +4691,100%,Congo,1.0,f +5264,100%,Rwanda,1.0,f +49127,,El Salvador,1.0,f +16268,,,10.0,f +16268,,,10.0,f +16268,,,10.0,f +49945,100%,Marshall Islands,3.0,f +16479,,France,1.0,f +1960,,,2.0,t +43316,100%,Indonesia,23.0,f +33278,100%,Cuba,3.0,f +13317,100%,,1.0,f +3511,100%,,1.0,t +21739,100%,,1.0,f +24650,75%,Tonga,3.0,t +7614,,,2.0,f +26931,100%,Lithuania,1.0,f +44808,100%,Greenland,1.0,f +29187,86%,Turks and Caicos Islands,1.0,f +15189,79%,China,21.0,f +48869,100%,Slovakia (Slovak Republic),22.0,f +43316,100%,Indonesia,23.0,f +49398,88%,Barbados,18.0,t +1281,100%,Ukraine,1.0,f +28176,100%,Gambia,1.0,f +29715,98%,Tunisia,3.0,f +9864,100%,Holy See (Vatican City State),1.0,f +26652,97%,Pakistan,6.0,f +43834,99%,Uganda,13.0,f +3779,100%,Guernsey,1.0,f +4322,97%,Tonga,32.0,f +45747,71%,Uganda,1.0,t +5217,,Croatia,1.0,f +7567,100%,,1.0,f +16871,,France,1.0,f +4322,97%,Tonga,32.0,f +37091,75%,Anguilla,1.0,f +3083,100%,,1.0,f +45882,100%,,1.0,f +26386,100%,Fiji,25.0,t +29647,100%,Peru,1305.0,f +18484,100%,Gambia,108.0,f +13427,100%,Ecuador,1.0,f +46842,75%,Portugal,13.0,t +3027,90%,Lebanon,1.0,t +17663,100%,,1.0,f +32045,,Rwanda,1.0,f +21452,99%,Lebanon,29.0,f +17977,67%,Puerto Rico,1.0,f +28828,100%,Isle of Man,198.0,t +30746,67%,Gambia,1.0,f +39565,93%,Rwanda,12.0,f +39535,100%,,1.0,f +7614,,,2.0,f +30401,100%,Philippines,1.0,f +34604,96%,Kenya,18.0,f +46091,50%,,2.0,t +37824,100%,,2.0,f +46842,75%,Portugal,13.0,t +2844,98%,Marshall Islands,12.0,f +27323,,Bosnia and Herzegovina,1.0,f +46842,75%,Portugal,13.0,t +20727,100%,Russian Federation,4.0,t +46842,75%,Portugal,13.0,t +21153,,Micronesia,1.0,f +41878,91%,Maldives,47.0,f +30303,,,1.0,f +19553,,Kiribati,1.0,f +20754,,China,13.0,f +13388,100%,Brazil,5.0,f +356,99%,Wallis and Futuna,32.0,t +40211,85%,United Kingdom,1.0,t +36677,100%,Maldives,6.0,f +15179,100%,,1.0,t +43068,100%,Kenya,1.0,f +14006,93%,Maldives,2.0,f +38675,100%,Slovakia (Slovak Republic),16.0,t +19176,,Greenland,1.0,f +34414,,Tonga,1.0,f +17503,50%,,1.0,t +38675,100%,Slovakia (Slovak Republic),16.0,t +17298,97%,Barbados,7.0,f +29060,,,2.0,f +2163,,Netherlands,1.0,f +25636,85%,Tonga,6.0,f +35557,100%,Guernsey,1.0,f +26622,100%,Tanzania,1.0,f +3567,100%,Ukraine,2.0,f +24725,,Isle of Man,1.0,t +38675,100%,Slovakia (Slovak Republic),16.0,t +25636,85%,Tonga,6.0,f +38675,100%,Slovakia (Slovak Republic),16.0,t +38675,100%,Slovakia (Slovak Republic),16.0,t +3567,100%,Ukraine,2.0,f +38675,100%,Slovakia (Slovak Republic),16.0,t +25636,85%,Tonga,6.0,f +38675,100%,Slovakia (Slovak Republic),16.0,t +38675,100%,Slovakia (Slovak Republic),16.0,t +25636,85%,Tonga,6.0,f +25483,100%,,1.0,f +28227,,China,1.0,f +48418,98%,Bosnia and Herzegovina,30.0,f +34271,,Jersey,1.0,t +22477,100%,Togo,1.0,f +38008,100%,French Polynesia,2.0,f +1960,,,2.0,t +47335,78%,Guernsey,15.0,f +19353,100%,Kiribati,1.0,f +47335,78%,Guernsey,15.0,f +18909,100%,,2.0,t +22461,100%,Turks and Caicos Islands,4.0,f +26201,50%,,1.0,f +2367,100%,Kiribati,9.0,f +41202,100%,Niue,3.0,f +48654,100%,,6.0,f +24956,100%,Lebanon,2.0,t +19943,63%,Isle of Man,34.0,f +2092,100%,,2.0,f +23090,79%,Estonia,3.0,f +11033,100%,Reunion,3.0,f +40676,100%,Jersey,2.0,f +44901,100%,Bouvet Island (Bouvetoya),5.0,f +4322,97%,Tonga,32.0,f +20710,100%,Mauritania,1.0,f +27866,100%,Guinea,8.0,f +45678,100%,Bouvet Island (Bouvetoya),3.0,f +4322,97%,Tonga,32.0,f +29185,,Guinea,2.0,t +37302,76%,,7.0,f +9967,,Nicaragua,2.0,f +5074,100%,Palestinian Territory,4.0,f +4322,97%,Tonga,32.0,f +21262,,Anguilla,1.0,f +3019,100%,Barbados,18.0,f +4322,97%,Tonga,32.0,f +43067,100%,Russian Federation,3.0,f +36637,,China,11.0,f +4322,97%,Tonga,32.0,f +2525,50%,Montserrat,2.0,f +48068,100%,,4.0,f +44033,,,3.0,f +9071,100%,Rwanda,1.0,t +5489,100%,Tonga,1.0,f +50087,100%,Uzbekistan,1.0,f +17312,100%,,1.0,f +9050,0%,Lithuania,1.0,f +18602,,Lebanon,1.0,f +4322,97%,Tonga,32.0,f +34067,,Greenland,3.0,f +44033,,,3.0,f +12011,,Estonia,2.0,f +12011,,Estonia,2.0,f +4322,97%,Tonga,32.0,f +37536,100%,,1.0,t +26443,,Guinea,3.0,f +4322,97%,Tonga,32.0,f +4322,97%,Tonga,32.0,f +4936,91%,Philippines,27.0,f +7258,100%,Brazil,2.0,t +22572,,Kenya,2.0,t +4936,91%,Philippines,27.0,f +22572,,Kenya,2.0,t +22271,,Nicaragua,2.0,f +4936,91%,Philippines,27.0,f +4322,97%,Tonga,32.0,f +8949,100%,Isle of Man,4.0,f +934,100%,Chad,1.0,f +3112,94%,Indonesia,25.0,f +43067,100%,Russian Federation,3.0,f +1973,75%,Uganda,1.0,f +16514,100%,Puerto Rico,4.0,f +34982,50%,Kiribati,1.0,f +1186,100%,Isle of Man,2.0,f +38204,,Micronesia,1.0,t +48546,100%,Gambia,1.0,t +17611,,,1.0,f +31751,100%,Nicaragua,29.0,f +3921,98%,,14.0,f +3921,98%,,14.0,f +12064,,,1.0,f +22971,100%,Afghanistan,1.0,f +2161,44%,Rwanda,8.0,f +44584,89%,Sao Tome and Principe,2.0,f +6856,100%,Denmark,1.0,f +11403,80%,Barbados,3.0,f +33415,100%,,1.0,f +49251,100%,Uzbekistan,1.0,f +9941,,,1.0,f +25415,100%,Ghana,1.0,f +11855,0%,Maldives,1.0,f +4308,100%,Togo,1.0,f +33889,100%,Uzbekistan,1.0,f +17813,100%,,1.0,f +5793,100%,,1.0,f +23422,100%,Papua New Guinea,1.0,f +22405,100%,Sao Tome and Principe,1.0,f +21531,100%,Palau,3.0,f +33596,100%,Micronesia,1.0,f +43602,,Lebanon,1.0,t +42732,,United Kingdom,1.0,t +11251,100%,Libyan Arab Jamahiriya,2.0,f +37668,94%,Switzerland,3.0,f +36118,100%,,1.0,f +4810,100%,,1.0,t +19241,100%,Afghanistan,1.0,t +31873,99%,Uzbekistan,22.0,f +34481,100%,,2.0,f +3019,100%,Barbados,18.0,f +44491,100%,Guernsey,1.0,t +17115,100%,Gambia,2.0,t +22721,100%,Ecuador,109.0,f +30149,,Malta,1.0,t +29935,100%,Gambia,2.0,t +46071,89%,Niue,2.0,f +21576,100%,,2.0,f +23644,100%,Mauritania,4.0,t +17398,100%,,1.0,f +31977,100%,,1.0,f +29715,98%,Tunisia,3.0,f +41141,,Vanuatu,1.0,t +35091,100%,Zimbabwe,3.0,f +30995,,,7.0,f +24167,100%,Lebanon,1.0,f +19799,100%,Guinea,2.0,f +25905,100%,Denmark,1.0,f +29715,98%,Tunisia,3.0,f +45208,100%,Svalbard & Jan Mayen Islands,1.0,f +1533,100%,Cocos (Keeling) Islands,2.0,f +26132,100%,Marshall Islands,1.0,f +17256,,,1.0,f +18749,100%,Costa Rica,2.0,f +17442,100%,French Guiana,1.0,f +32944,,,1.0,f +37387,,,1.0,f +31507,67%,,2.0,t +623,84%,,5.0,f +37455,,Sao Tome and Principe,2.0,f +10004,90%,Marshall Islands,3.0,t +12413,100%,Tanzania,1.0,f +27144,100%,Faroe Islands,1.0,f +26167,81%,Senegal,3.0,f +5951,100%,Rwanda,1.0,t +13436,100%,Turkmenistan,2.0,t +5035,,Nauru,1.0,f +9346,100%,Ghana,1.0,f +31632,,Tonga,2.0,f +49487,99%,Marshall Islands,6.0,f +4238,88%,,1.0,f +5993,100%,,1.0,f +8733,100%,Tonga,4.0,t +5057,100%,Zimbabwe,23.0,t +24060,100%,Malta,1.0,t +1922,,France,1.0,f +2514,100%,,2.0,f +8914,100%,,4.0,f +42460,0%,Gambia,1.0,f +45083,100%,,1.0,f +25379,100%,Niue,1.0,t +47380,100%,Russian Federation,4.0,f +38926,100%,Slovenia,2.0,t +29877,100%,,1.0,t +8169,83%,,1.0,f +8566,100%,,1.0,f +34254,,Swaziland,2.0,f +9035,100%,,2.0,f +28374,100%,Jersey,4.0,f +44648,,Rwanda,1.0,f +9780,,Isle of Man,2.0,t +18519,100%,Guinea,1.0,f +39444,100%,Marshall Islands,3.0,f +28374,100%,Jersey,4.0,f +20650,100%,Uzbekistan,3.0,t +47490,78%,Nicaragua,2.0,f +9733,100%,,1.0,f +10035,100%,Tonga,2.0,f +40951,100%,Turkmenistan,1.0,f +9612,88%,,1.0,f +40048,100%,,1.0,f +28848,100%,Uganda,9.0,f +43680,38%,Ukraine,1.0,f +48132,100%,Chile,2.0,t +27866,100%,Guinea,8.0,f +23872,100%,Montserrat,1.0,f +28478,,,1.0,t +48908,100%,Togo,1.0,f +16818,98%,Nicaragua,5.0,t +37302,76%,,7.0,f +23030,100%,Greenland,2.0,f +37302,76%,,7.0,f +37302,76%,,7.0,f +49487,99%,Marshall Islands,6.0,f +20505,93%,Niue,1.0,f +8964,,Sao Tome and Principe,1.0,f +2875,100%,Lebanon,1.0,f +34025,,Nicaragua,6.0,f +1143,100%,Bouvet Island (Bouvetoya),1.0,f +25006,100%,Monaco,1.0,f +23469,100%,Nicaragua,116.0,f +15266,100%,Bouvet Island (Bouvetoya),1.0,f +34158,,Kenya,1.0,f +1943,100%,,1.0,f +10940,100%,,2.0,f +31264,,Malta,2.0,f +22817,,Lebanon,1.0,f +26652,97%,Pakistan,6.0,f +43183,98%,Tonga,12.0,t +47078,100%,,2.0,t +40153,100%,,1.0,t +22567,100%,Marshall Islands,1.0,t +28708,100%,Guinea,4.0,t +3961,100%,Fiji,8.0,f +27883,100%,Cuba,11.0,f +1671,100%,Holy See (Vatican City State),1.0,t +33817,100%,Gibraltar,62.0,f +37646,100%,Estonia,60.0,f +6338,100%,Isle of Man,6.0,f +15912,50%,,1.0,f +24357,100%,,2.0,f +3961,100%,Fiji,8.0,f +26378,,Cape Verde,5.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +18224,100%,Venezuela,1.0,f +9741,99%,Cape Verde,8.0,f +18603,,Faroe Islands,3.0,f +10980,,Estonia,1.0,f +41121,,,1.0,f +26782,,Congo,1.0,f +18804,100%,Kenya,1.0,f +22285,100%,Rwanda,1.0,f +4217,,Kenya,52.0,f +25165,93%,Uzbekistan,7.0,f +27803,100%,,1.0,f +25438,100%,,1.0,f +40654,100%,,2.0,f +48199,100%,,1.0,f +39148,,,1.0,f +17021,100%,Ecuador,1.0,f +37047,97%,United Kingdom,5.0,f +49689,100%,Niger,6.0,f +42760,,Gibraltar,1.0,f +2844,98%,Marshall Islands,12.0,f +26657,100%,Faroe Islands,1.0,t +4217,,Kenya,52.0,f +10686,86%,Tonga,21.0,f +49384,100%,Slovakia (Slovak Republic),21.0,f +12164,100%,Nicaragua,8.0,f +28392,100%,Ukraine,10.0,t +7564,100%,Gambia,1.0,f +27363,80%,,3.0,t +35379,100%,Tonga,4.0,f +26789,,Guinea,3.0,t +42390,100%,Wallis and Futuna,96.0,t +41619,100%,Micronesia,1.0,f +14918,100%,Jersey,1.0,f +34190,100%,Barbados,6.0,f +42390,100%,Wallis and Futuna,96.0,t +23626,,Sao Tome and Principe,1.0,f +16888,100%,,1.0,f +18484,100%,Gambia,108.0,f +21683,100%,,1.0,f +23271,,Turkmenistan,2.0,f +13874,100%,Guinea,2.0,f +9415,100%,Cocos (Keeling) Islands,1.0,f +21520,,Rwanda,1.0,f +7129,100%,Guinea,4.0,f +32478,,Lebanon,1.0,f +14709,67%,Chad,1.0,f +41612,100%,Montserrat,1.0,f +41153,100%,Guinea,9.0,f +13699,90%,,6.0,f +1062,100%,,2.0,f +14468,100%,Tonga,1.0,f +30475,92%,Vietnam,40.0,f +42805,,Russian Federation,2.0,f +21822,100%,Monaco,2.0,t +1640,,Nicaragua,1.0,f +8910,100%,Micronesia,1.0,f +2844,98%,Marshall Islands,12.0,f +28828,100%,Isle of Man,198.0,t +25636,85%,Tonga,6.0,f +19714,100%,Micronesia,2.0,t +24493,,Bosnia and Herzegovina,3.0,f +1214,100%,,5.0,f +2844,98%,Marshall Islands,12.0,f +2844,98%,Marshall Islands,12.0,f +49794,0%,Micronesia,1.0,f +41538,100%,,16.0,f +2844,98%,Marshall Islands,12.0,f +23276,100%,Brazil,4.0,f +41604,100%,Tonga,4.0,f +2844,98%,Marshall Islands,12.0,f +8583,90%,Venezuela,1.0,f +5707,100%,Zimbabwe,3.0,f +38587,,,1.0,t +4936,91%,Philippines,27.0,f +42046,,Kiribati,7.0,t +49035,98%,Maldives,6.0,f +44236,100%,Nicaragua,1.0,f +5707,100%,Zimbabwe,3.0,f +5707,100%,Zimbabwe,3.0,f +32946,,Isle of Man,1.0,f +35387,80%,Puerto Rico,1.0,f +28309,,,1.0,f +12005,,Tonga,1.0,t +42046,,Kiribati,7.0,t +18183,100%,Netherlands,5.0,t +49035,98%,Maldives,6.0,f +8298,100%,Guinea,14.0,f +9516,99%,Pakistan,45.0,t +25460,100%,Maldives,13.0,f +11274,100%,Tanzania,1.0,t +7804,100%,Russian Federation,3.0,f +25993,100%,,1.0,f +37163,100%,,1.0,f +18893,100%,Micronesia,3.0,t +40671,100%,Bosnia and Herzegovina,2.0,t +3312,100%,Vanuatu,1.0,f +48840,100%,Uzbekistan,9.0,f +3253,100%,Christmas Island,1.0,t +49096,100%,El Salvador,3.0,f +29081,98%,Uzbekistan,18.0,f +18697,100%,Rwanda,8.0,f +7415,100%,Uzbekistan,8.0,f +23231,100%,Libyan Arab Jamahiriya,1.0,f +1558,100%,,10.0,f +12726,,Isle of Man,1.0,t +41199,100%,Brazil,1.0,f +38650,80%,Uzbekistan,1.0,t +48251,97%,Zimbabwe,6.0,f +30269,100%,,1.0,f +47347,100%,Ecuador,3.0,f +32176,,Bosnia and Herzegovina,1.0,f +45527,100%,Kiribati,1.0,f +23090,79%,Estonia,3.0,f +38741,,France,1.0,f +41878,91%,Maldives,47.0,f +8951,100%,Faroe Islands,1.0,f +48251,97%,Zimbabwe,6.0,f +39009,82%,Mauritania,1.0,f +40080,,,1.0,t +10335,100%,Guinea,1.0,f +30614,100%,Zimbabwe,1.0,f +6675,,Netherlands,1.0,f +19214,100%,Senegal,55.0,f +47347,100%,Ecuador,3.0,f +13070,100%,Fiji,45.0,f +23090,79%,Estonia,3.0,f +13070,100%,Fiji,45.0,f +38291,,Gibraltar,1.0,t +32632,80%,Rwanda,1.0,f +13070,100%,Fiji,45.0,f +23823,100%,China,3.0,t +45917,,,1.0,f +35230,100%,,2.0,t +29291,100%,,1.0,f +6697,100%,Pakistan,1.0,f +25636,85%,Tonga,6.0,f +36424,63%,Slovakia (Slovak Republic),12.0,f +33943,100%,Tunisia,1.0,f +16463,100%,Cape Verde,2.0,f +41153,100%,Guinea,9.0,f +18484,100%,Gambia,108.0,f +34723,100%,Peru,12.0,f +30475,92%,Vietnam,40.0,f +25049,100%,,2.0,f +2235,100%,Guinea,1.0,f +35400,100%,Guernsey,1.0,f +13063,100%,,2.0,f +27226,100%,Congo,10.0,f +42416,97%,Puerto Rico,20.0,f +6782,100%,Uganda,5.0,f +40784,100%,Niue,3.0,f +18724,,,49.0,f +13479,100%,,5.0,f +37708,69%,,1.0,f +30290,,Chad,1.0,t +2363,,Barbados,3.0,t +48325,60%,United Kingdom,1.0,t +21452,99%,Lebanon,29.0,f +44215,100%,Maldives,1.0,f +38235,80%,Kiribati,3.0,t +34723,100%,Peru,12.0,f +4217,,Kenya,52.0,f +4483,,Gambia,1.0,f +39565,93%,Rwanda,12.0,f +15226,100%,French Polynesia,1.0,t +34723,100%,Peru,12.0,f +13641,85%,Mauritania,23.0,f +46669,86%,Brazil,11.0,f +29924,100%,Sao Tome and Principe,1.0,f +39109,77%,Ukraine,24.0,t +19990,,,1.0,f +37386,100%,,1.0,f +2844,98%,Marshall Islands,12.0,f +16851,,Tonga,2.0,t +24462,,Peru,1.0,f +41153,100%,Guinea,9.0,f +30719,100%,Reunion,1.0,f +2844,98%,Marshall Islands,12.0,f +37963,100%,Lithuania,1.0,t +12115,100%,,1.0,f +32685,100%,,1.0,f +33683,33%,Somalia,2.0,f +2844,98%,Marshall Islands,12.0,f +20082,,,1.0,t +27697,100%,Afghanistan,1.0,f +36505,100%,Gambia,1.0,f +43932,100%,,1.0,f +29296,100%,,1.0,f +47164,100%,Ukraine,2.0,f +40559,95%,Tonga,1.0,f +45088,100%,Reunion,9.0,f +39527,100%,Vanuatu,2.0,f +34409,100%,,1.0,t +28788,100%,Uganda,1.0,f +44075,100%,,3.0,f +26270,100%,Croatia,1.0,t +13699,90%,,6.0,f +33937,82%,,1.0,f +31781,95%,Guinea,6.0,f +17034,100%,Guinea,1.0,t +47546,0%,,1.0,f +42949,100%,Papua New Guinea,2.0,f +47657,100%,Djibouti,1.0,f +8914,100%,,4.0,f +14514,,China,80.0,t +37988,,Puerto Rico,1.0,f +26683,100%,,1.0,f +23958,100%,Kiribati,1.0,t +37856,,Netherlands,3.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +18486,100%,Suriname,1.0,t +29647,100%,Peru,1305.0,f +1425,,Isle of Man,1.0,f +9788,100%,Brazil,1.0,t +31092,,Senegal,19.0,f +39843,100%,Switzerland,3.0,t +41484,89%,Anguilla,23.0,f +25046,100%,Maldives,14.0,f +39613,88%,,1.0,f +43842,,France,1.0,f +41484,89%,Anguilla,23.0,f +34646,100%,Jersey,1.0,f +32935,,Ghana,40.0,f +37856,,Netherlands,3.0,f +15289,100%,Monaco,1.0,f +43777,100%,Denmark,18.0,f +7309,100%,Togo,4.0,f +29231,100%,Ecuador,1.0,f +31873,99%,Uzbekistan,22.0,f +38054,,Barbados,1.0,f +18052,,Russian Federation,1.0,f +4936,91%,Philippines,27.0,f +4936,91%,Philippines,27.0,f +324,100%,,3.0,f +4936,91%,Philippines,27.0,f +27585,100%,Niue,1.0,f +32105,100%,Russian Federation,2.0,t +18498,,Bosnia and Herzegovina,1.0,f +18992,95%,,3.0,f +32495,100%,Tonga,9.0,f +44799,100%,Togo,2.0,f +35493,100%,French Guiana,1.0,t +28993,100%,Kenya,1.0,t +32105,100%,Russian Federation,2.0,t +6240,100%,Kiribati,1.0,f +18697,100%,Rwanda,8.0,f +6212,100%,,2.0,t +21133,,,1.0,f +13273,100%,Isle of Man,1.0,f +15479,100%,Kenya,3.0,t +29838,50%,,1.0,f +48069,100%,China,3.0,f +32870,100%,Gibraltar,1.0,t +46364,100%,Greenland,2.0,f +17556,100%,Malta,1.0,f +60,90%,Greenland,1.0,f +38748,43%,Chad,1.0,f +12127,,Zimbabwe,1.0,f +49487,99%,Marshall Islands,6.0,f +3921,98%,,14.0,f +14318,95%,China,2.0,f +36389,100%,Russian Federation,1.0,f +28374,100%,Jersey,4.0,f +28034,89%,Nauru,2.0,f +10416,,Barbados,1.0,f +23640,80%,Gambia,3.0,f +23547,100%,Anguilla,1.0,f +28374,100%,Jersey,4.0,f +25049,100%,,2.0,f +5287,,Kenya,1.0,f +45551,100%,Jersey,2.0,t +8678,100%,Saint Helena,2.0,t +34219,20%,Zimbabwe,3.0,f +27722,,,3.0,t +38701,40%,Niger,27.0,f +3321,100%,Zimbabwe,1.0,f +23548,94%,Fiji,7.0,f +20734,95%,Ecuador,2.0,f +22600,83%,Malta,2.0,f +42949,100%,Papua New Guinea,2.0,f +14087,100%,,5.0,f +27474,100%,Marshall Islands,1.0,f +19705,100%,,1.0,f +44796,100%,Maldives,2.0,t +20953,100%,Palestinian Territory,1.0,f +5416,100%,Denmark,1.0,f +36424,63%,Slovakia (Slovak Republic),12.0,f +39297,100%,,1.0,f +28828,100%,Isle of Man,198.0,t +37203,,,1.0,t +47788,,Sao Tome and Principe,1.0,f +40769,100%,Nicaragua,1.0,f +40287,100%,Wallis and Futuna,7.0,f +4217,,Kenya,52.0,f +48409,,Estonia,60.0,t +37646,100%,Estonia,60.0,f +18714,67%,French Guiana,1.0,f +41241,100%,Russian Federation,1.0,f +6416,100%,Niue,1.0,f +48869,100%,Slovakia (Slovak Republic),22.0,f +31352,100%,Pakistan,1.0,f +45451,100%,Zimbabwe,3.0,f +44392,,Papua New Guinea,1.0,f +18077,100%,Sao Tome and Principe,139.0,f +34042,100%,Marshall Islands,37.0,f +6087,,Niue,1.0,f +700,,Guinea,2.0,t +16567,100%,Russian Federation,4.0,f +43143,,Madagascar,2.0,f +28529,,Gambia,2.0,f +423,100%,Monaco,1.0,t +49787,100%,,1.0,f +20330,,Lebanon,1.0,f +11951,0%,Anguilla,1.0,f +22721,100%,Ecuador,109.0,f +36928,,Rwanda,1.0,f +17727,100%,French Guiana,1.0,t +26526,94%,Tonga,8.0,f +18077,100%,Sao Tome and Principe,139.0,f +20153,96%,Reunion,51.0,f +22184,100%,Zimbabwe,1.0,f +20337,45%,Tonga,1.0,f +10130,100%,Maldives,1.0,f +45121,100%,Andorra,5.0,t +11861,100%,Isle of Man,1.0,f +18015,100%,Venezuela,1.0,t +36270,100%,Maldives,2.0,f +40793,100%,,75.0,t +30914,80%,Isle of Man,1.0,f +46763,,China,1.0,t +14444,100%,Turkmenistan,1.0,f +33030,100%,Niue,11.0,f +10480,100%,Comoros,22.0,f +13310,,Niue,1.0,f +31888,100%,,1.0,f +23116,90%,Malta,1.0,f +13860,100%,Barbados,1.0,t +34221,100%,Puerto Rico,2.0,t +10480,100%,Comoros,22.0,f +48619,100%,Russian Federation,1.0,f +44611,100%,Micronesia,1.0,f +20524,100%,United Kingdom,1.0,f +43656,92%,Saint Helena,2.0,f +23164,100%,China,12.0,t +12906,67%,,1.0,f +33817,100%,Gibraltar,62.0,f +44297,100%,Kiribati,2.0,f +4322,97%,Tonga,32.0,f +13220,,Lebanon,1.0,f +31072,100%,Montserrat,6.0,t +10238,100%,French Polynesia,2.0,f +10012,100%,Nicaragua,1.0,t +18484,100%,Gambia,108.0,f +49169,50%,Russian Federation,1.0,f +31072,100%,Montserrat,6.0,t +47967,100%,Uzbekistan,2.0,t +4217,,Kenya,52.0,f +18697,100%,Rwanda,8.0,f +13935,100%,Ecuador,2.0,f +21888,100%,Holy See (Vatican City State),1.0,f +8192,100%,,1.0,t +24638,100%,Lebanon,1.0,t +44452,100%,,2.0,t +39411,100%,,1.0,t +623,84%,,5.0,f +4064,,,1.0,f +19602,100%,Lithuania,24.0,f +35442,,Russian Federation,14.0,f +18092,89%,Croatia,1.0,t +31549,100%,,1.0,f +23640,80%,Gambia,3.0,f +26448,100%,Brazil,1.0,f +47293,100%,,3.0,f +27228,100%,Isle of Man,7.0,f +24467,100%,Estonia,1.0,t +27228,100%,Isle of Man,7.0,f +45193,100%,,1.0,f +27228,100%,Isle of Man,7.0,f +22594,100%,Rwanda,12.0,f +33913,,El Salvador,2.0,f +25351,100%,Fiji,6.0,f +26219,100%,Zimbabwe,2.0,f +42673,100%,Somalia,1.0,t +26370,100%,,4.0,t +33275,83%,Netherlands,1.0,f +37226,50%,Jersey,1.0,f +31145,100%,Gambia,1.0,f +17271,100%,Brazil,1.0,t +19617,67%,Somalia,1.0,f +37735,100%,Uganda,13.0,t +38335,79%,Guinea,11.0,f +4316,100%,Micronesia,18.0,f +38335,79%,Guinea,11.0,f +23078,100%,Ukraine,8.0,f +25087,100%,,1.0,f +48646,,,1.0,t +31470,100%,Malta,2.0,f +25715,100%,Vanuatu,1.0,f +10855,100%,Niue,6.0,f +6592,100%,Togo,1.0,f +41008,100%,Venezuela,6.0,f +4252,100%,,1.0,f +28828,100%,Isle of Man,198.0,t +45955,100%,Senegal,1.0,f +11847,71%,Sao Tome and Principe,1.0,t +14201,75%,Turkmenistan,1.0,f +21685,100%,Sao Tome and Principe,1.0,f +1533,100%,Cocos (Keeling) Islands,2.0,f +38264,88%,Russian Federation,4.0,f +45598,83%,China,17.0,f +5884,100%,,1.0,f +4079,87%,Iran,5.0,t +35203,100%,Netherlands,1.0,f +39075,,Zimbabwe,1.0,f +45972,,,1.0,t +34042,100%,Marshall Islands,37.0,f +8207,60%,Saint Helena,2.0,f +41153,100%,Guinea,9.0,f +2900,91%,El Salvador,2.0,f +678,100%,Isle of Man,2.0,t +9113,100%,Denmark,1.0,f +29020,,,1.0,f +36489,100%,Nauru,1.0,f +25585,100%,Venezuela,2.0,t +10051,,Ukraine,3.0,f +18593,,Rwanda,1.0,t +45568,50%,Slovakia (Slovak Republic),1.0,f +37759,,Suriname,1.0,f +22946,100%,,1.0,f +37368,100%,Niger,1.0,f +3367,,Faroe Islands,1.0,f +41153,100%,Guinea,9.0,f +25814,100%,,1.0,f +16295,96%,Philippines,5.0,f +10004,90%,Marshall Islands,3.0,t +9741,99%,Cape Verde,8.0,f +49710,100%,,1.0,f +4822,,Lebanon,1.0,f +39183,75%,,1.0,f +10964,100%,Tonga,5.0,t +11647,,Chad,1.0,f +15176,,Vanuatu,10.0,f +10238,100%,French Polynesia,2.0,f +40793,100%,,75.0,t +45899,93%,,1.0,f +7956,100%,Malta,1.0,f +1071,,Guinea,1.0,f +4936,91%,Philippines,27.0,f +43168,100%,Niue,1.0,f +32935,,Ghana,40.0,f +14331,100%,Estonia,3.0,t +6625,100%,Mauritania,1.0,f +45468,100%,,4.0,f +4936,91%,Philippines,27.0,f +28427,100%,Russian Federation,1.0,f +36637,,China,11.0,f +37677,,French Guiana,1.0,t +25983,,Niue,2.0,f +22392,100%,,2.0,f +4936,91%,Philippines,27.0,f +11091,100%,Serbia,3.0,t +30475,92%,Vietnam,40.0,f +7742,,,1.0,f +7852,100%,Faroe Islands,1.0,f +26645,100%,Venezuela,2.0,f +29647,100%,Peru,1305.0,f +37751,100%,Russian Federation,1.0,f +2585,100%,Svalbard & Jan Mayen Islands,20.0,t +7099,,Anguilla,1.0,f +5420,100%,Tonga,41.0,f +48117,98%,Ukraine,41.0,f +17559,100%,Uruguay,1.0,f +18077,100%,Sao Tome and Principe,139.0,f +11091,100%,Serbia,3.0,t +40421,96%,Jersey,29.0,t +37715,,Guinea,1.0,t +49261,100%,,5.0,f +15279,,Afghanistan,22.0,t +19735,100%,Togo,7.0,f +49261,100%,,5.0,f +39120,,Malta,1.0,t +49261,100%,,5.0,f +34648,100%,,2.0,f +49261,100%,,5.0,f +49261,100%,,5.0,f +13060,100%,Montserrat,2.0,f +37047,97%,United Kingdom,5.0,f +30816,100%,Uzbekistan,1.0,f +41484,89%,Anguilla,23.0,f +49206,100%,Sao Tome and Principe,1.0,f +3702,100%,Maldives,1.0,f +19228,100%,Svalbard & Jan Mayen Islands,8.0,f +19759,86%,Cocos (Keeling) Islands,1.0,f +35501,,Philippines,1.0,t +32556,90%,Estonia,11.0,t +22123,100%,Holy See (Vatican City State),1.0,f +38013,100%,,1.0,f +37672,100%,United Kingdom,1.0,f +11486,100%,El Salvador,2.0,f +35900,100%,Russian Federation,1.0,f +13131,,Rwanda,1.0,f +16615,100%,Chad,1.0,f +44800,100%,Reunion,1.0,f +29371,83%,Nicaragua,1.0,f +5473,100%,Niger,1.0,f +14788,100%,,1.0,f +697,100%,,1.0,f +29699,90%,Zimbabwe,1.0,f +31158,99%,Suriname,11.0,f +40848,100%,Niue,3.0,f +31158,99%,Suriname,11.0,f +45803,50%,Kiribati,1.0,f +32570,,Guinea,4.0,t +21446,100%,,2.0,f +37332,92%,United Kingdom,1.0,f +41008,100%,Venezuela,6.0,f +45237,,Sao Tome and Principe,1.0,f +17242,,Nicaragua,1.0,f +17273,100%,Gambia,1.0,f +18484,100%,Gambia,108.0,f +25302,,Lebanon,2.0,f +48117,98%,Ukraine,41.0,f +18077,100%,Sao Tome and Principe,139.0,f +450,0%,,1.0,f +7642,100%,El Salvador,1.0,f +20412,100%,Jersey,1.0,t +32430,,Maldives,1.0,f +30882,100%,,1.0,f +16406,100%,Bouvet Island (Bouvetoya),16.0,f +41630,100%,Kiribati,24.0,f +774,89%,,1.0,f +43919,100%,Ghana,1.0,f +27332,,Russian Federation,1.0,t +32203,100%,Barbados,176.0,f +40896,,Sao Tome and Principe,1.0,f +18197,86%,Maldives,5.0,f +46077,100%,,1.0,f +13483,100%,United Kingdom,1.0,t +2844,98%,Marshall Islands,12.0,f +18197,86%,Maldives,5.0,f +34604,96%,Kenya,18.0,f +18739,89%,Gambia,2.0,t +48117,98%,Ukraine,41.0,f +18743,100%,Faroe Islands,1.0,f +48664,100%,Maldives,2.0,f +10265,100%,Micronesia,3.0,f +10902,100%,Wallis and Futuna,6.0,f +5420,100%,Tonga,41.0,f +17655,,,1.0,f +35323,89%,,1.0,f +18197,86%,Maldives,5.0,f +10265,100%,Micronesia,3.0,f +40058,100%,Reunion,1.0,f +44251,100%,Gibraltar,1.0,f +44297,100%,Kiribati,2.0,f +18105,100%,Gambia,7.0,t +43134,100%,Suriname,6.0,f +43511,100%,Russian Federation,2.0,f +37464,100%,,1.0,f +48664,100%,Maldives,2.0,f +8987,100%,,1.0,t +20334,99%,Niger,171.0,t +40793,100%,,75.0,t +22094,100%,Vietnam,1.0,f +25331,100%,Ecuador,1.0,f +30475,92%,Vietnam,40.0,f +42718,100%,Niue,2.0,f +36353,100%,Chile,2.0,f +34067,,Greenland,3.0,f +34067,,Greenland,3.0,f +9805,,,1.0,f +17982,100%,,2.0,t +30654,100%,,1.0,f +18484,100%,Gambia,108.0,f +30475,92%,Vietnam,40.0,f +42416,97%,Puerto Rico,20.0,f +11150,100%,Isle of Man,1.0,f +21528,86%,Zimbabwe,1.0,f +38182,100%,Kiribati,4.0,f +31826,100%,Guinea,3.0,f +29060,,,2.0,f +22768,50%,,1.0,f +30475,92%,Vietnam,40.0,f +49035,98%,Maldives,6.0,f +34604,96%,Kenya,18.0,f +15253,100%,,1.0,t +14196,76%,Indonesia,4.0,f +31979,100%,Kenya,10.0,f +36637,,China,11.0,f +32535,,El Salvador,1.0,f +18484,100%,Gambia,108.0,f +36637,,China,11.0,f +46140,,Somalia,1.0,f +34572,100%,Saint Helena,1.0,f +23923,100%,,1.0,f +26285,94%,Senegal,9.0,f +46162,100%,Nicaragua,1.0,f +35126,,French Guiana,1.0,f +34193,100%,Cuba,1.0,f +14196,76%,Indonesia,4.0,f +3790,100%,Netherlands,16.0,f +37704,96%,Fiji,26.0,f +45321,100%,Brazil,2.0,f +18077,100%,Sao Tome and Principe,139.0,f +36637,,China,11.0,f +10825,96%,Somalia,1.0,f +26285,94%,Senegal,9.0,f +14196,76%,Indonesia,4.0,f +49987,100%,,19.0,f +33030,100%,Niue,11.0,f +49987,100%,,19.0,f +34219,20%,Zimbabwe,3.0,f +49987,100%,,19.0,f +17443,100%,Croatia,2.0,f +23266,,Lebanon,1.0,f +5125,100%,Russian Federation,2.0,f +7389,95%,,4.0,f +44764,98%,Maldives,16.0,f +34219,20%,Zimbabwe,3.0,f +44764,98%,Maldives,16.0,f +17443,100%,Croatia,2.0,f +7389,95%,,4.0,f +44764,98%,Maldives,16.0,f +7389,95%,,4.0,f +4173,100%,Nicaragua,1.0,t +19735,100%,Togo,7.0,f +24626,100%,Cocos (Keeling) Islands,3.0,f +6404,,,1.0,f +13400,100%,Sao Tome and Principe,1.0,t +7721,100%,,1.0,t +22470,100%,Russian Federation,1.0,f +36952,100%,Greenland,1.0,f +32056,,,2.0,f +43834,99%,Uganda,13.0,f +41484,89%,Anguilla,23.0,f +11296,100%,Micronesia,1.0,f +41484,89%,Anguilla,23.0,f +41484,89%,Anguilla,23.0,f +7520,100%,Ukraine,15.0,t +48751,100%,Philippines,2.0,f +28414,100%,Uzbekistan,22.0,f +18267,100%,Denmark,2.0,t +47912,100%,Tonga,1.0,f +28414,100%,Uzbekistan,22.0,f +8286,,,1.0,f +38793,100%,Svalbard & Jan Mayen Islands,2.0,f +40650,,,8.0,t +14494,100%,Rwanda,3.0,f +28870,,Reunion,2.0,f +23722,100%,Kiribati,1.0,f +33394,100%,Bosnia and Herzegovina,2.0,t +43247,,Togo,1.0,f +49035,98%,Maldives,6.0,f +15707,100%,Vietnam,4.0,f +3309,100%,Marshall Islands,1.0,f +1443,100%,,1.0,f +7428,88%,Sao Tome and Principe,1.0,f +38122,100%,Tonga,1.0,f +20541,100%,,1.0,t +18947,100%,Malta,1.0,f +48869,100%,Slovakia (Slovak Republic),22.0,f +25337,100%,Rwanda,2.0,f +39723,100%,,1.0,f +42010,,Gambia,4.0,t +29733,,Russian Federation,15.0,f +414,100%,Uganda,17.0,t +19542,83%,Togo,8.0,f +29733,,Russian Federation,15.0,f +47573,100%,Gambia,1.0,t +29733,,Russian Federation,15.0,f +32106,100%,,2.0,f +29733,,Russian Federation,15.0,f +29733,,Russian Federation,15.0,f +29733,,Russian Federation,15.0,f +29733,,Russian Federation,15.0,f +29733,,Russian Federation,15.0,f +21327,86%,Vietnam,1.0,f +13720,,Bouvet Island (Bouvetoya),3.0,t +36824,100%,Isle of Man,1.0,f +39440,,Sao Tome and Principe,2.0,f +38525,100%,,2.0,f +20186,100%,Georgia,3.0,f +35898,33%,Niue,3.0,t +48156,100%,,1.0,t +36399,100%,Monaco,1.0,f +21550,100%,Denmark,1.0,f +34382,100%,Micronesia,2.0,f +26257,100%,,1.0,f +25757,65%,Estonia,1.0,f +20946,100%,,1.0,f +33576,100%,Fiji,1.0,f +44921,,Wallis and Futuna,3.0,t +37216,,Malawi,2.0,f +431,67%,,2.0,f +46964,,Faroe Islands,1.0,f +22879,95%,Maldives,1.0,f +41574,100%,Niue,1.0,f +30382,,,1.0,f +18783,83%,Maldives,1.0,t +28615,75%,Brazil,1.0,f +11931,,,1.0,f +20526,100%,Ecuador,1.0,t +26408,100%,,1.0,f +29974,100%,,1.0,f +2730,,,1.0,f +43256,,Micronesia,3.0,f +22392,100%,,2.0,f +44689,100%,Venezuela,3.0,f +5591,99%,Indonesia,16.0,t +38856,,,1.0,f +41613,100%,,1.0,f +5255,100%,Micronesia,1.0,f +28114,97%,Bouvet Island (Bouvetoya),16.0,f +10203,100%,El Salvador,1.0,t +40781,100%,Guinea,5.0,f +2278,100%,,1.0,f +23897,100%,Denmark,5.0,f +24841,100%,,1.0,t +17486,100%,Montserrat,4.0,t +6213,100%,Guinea,1.0,f +32419,,Greenland,2.0,f +6489,,,1.0,f +20165,94%,Ukraine,30.0,f +30253,100%,Marshall Islands,1.0,f +32734,96%,,4.0,f +32734,96%,,4.0,f +46723,,,1.0,f +32734,96%,,4.0,f +18697,100%,Rwanda,8.0,f +18697,100%,Rwanda,8.0,f +5685,,Nicaragua,4.0,f +23096,100%,Kiribati,1.0,f +47973,,Ghana,5.0,f +4396,100%,,1.0,f +11611,90%,Micronesia,3.0,f +18756,88%,Philippines,3.0,f +17390,100%,Denmark,1.0,f +37563,,United Kingdom,1.0,f +18756,88%,Philippines,3.0,f +7574,100%,Niger,1.0,f +29785,100%,Bouvet Island (Bouvetoya),1.0,f +24398,0%,,1.0,f +40325,93%,Costa Rica,4.0,f +19026,100%,,1.0,f +36080,,,1.0,f +20965,,Guinea,1.0,f +15279,,Afghanistan,22.0,t +18697,100%,Rwanda,8.0,f +34852,,Niue,10.0,t +12876,100%,,1.0,f +16828,60%,,1.0,f +21649,100%,,1.0,t +22072,100%,Palestinian Territory,2.0,f +27501,,Netherlands,1.0,t +25305,,,1.0,t +16500,100%,France,1.0,f +10710,,Costa Rica,1.0,f +25890,100%,,3.0,f +11169,,Tonga,3.0,t +47990,88%,Venezuela,4.0,f +17472,100%,Holy See (Vatican City State),2.0,t +39684,,Svalbard & Jan Mayen Islands,2.0,f +20213,,Russian Federation,1.0,f +28377,100%,Mauritania,1.0,t +50057,100%,,1.0,f +3231,100%,Christmas Island,1.0,f +21759,100%,Croatia,1.0,t +33895,100%,,1.0,f +36931,100%,Russian Federation,2.0,f +31651,86%,Lebanon,2.0,t +21444,50%,Vanuatu,1.0,f +35230,100%,,2.0,t +34054,100%,,4.0,f +45805,100%,Gibraltar,1.0,t +46871,100%,Palestinian Territory,2.0,f +45560,67%,Nauru,1.0,t +33402,100%,Turkmenistan,1.0,t +6913,100%,,2.0,t +36155,100%,,1.0,f +8793,100%,Cuba,1.0,f +8741,57%,Guinea,1.0,f +35596,,,1.0,t +4213,,Greenland,1.0,f +19735,100%,Togo,7.0,f +27757,100%,Uzbekistan,2.0,f +6239,100%,,3.0,f +48550,,Brazil,1.0,f +44945,90%,Marshall Islands,4.0,t +4151,100%,Palestinian Territory,1.0,t +34397,100%,Faroe Islands,1.0,f +48372,100%,Barbados,12.0,t +9658,100%,,1.0,f +38562,,Isle of Man,1.0,f +31179,,,1.0,f +3239,,,1.0,f +12667,100%,,1.0,f +13732,100%,Maldives,1.0,f +37671,,Barbados,1.0,f +32991,100%,Mauritania,2.0,t +29171,100%,Mauritania,1.0,f +3327,100%,Uruguay,1.0,f +34643,,Montserrat,1.0,f +27482,100%,Brazil,1.0,t +32709,100%,,1.0,f +42174,,Faroe Islands,1.0,f +29536,,Guinea,1.0,t +32650,100%,,2.0,f +28447,100%,Zimbabwe,1.0,f +32022,100%,Zimbabwe,1.0,t +15778,100%,China,1.0,f +8041,96%,Bouvet Island (Bouvetoya),2.0,f +19920,100%,,1.0,f +5816,,Rwanda,4.0,f +47038,100%,,1.0,t +31629,63%,,2.0,f +43659,98%,Maldives,14.0,f +7258,100%,Brazil,2.0,t +42193,100%,,1.0,t +19636,,Guernsey,2.0,f +23087,100%,Sao Tome and Principe,1.0,f +31158,99%,Suriname,11.0,f +7326,100%,Kiribati,3.0,t +31147,100%,,1.0,f +32547,100%,Brazil,1.0,f +49414,100%,Tanzania,1.0,f +22492,60%,Kiribati,2.0,f +38046,100%,Rwanda,1.0,f +49150,100%,United Kingdom,2.0,t +38647,100%,Maldives,1.0,f +28765,100%,,1.0,f +37895,,Anguilla,1.0,f +22381,100%,,1.0,f +26959,100%,Fiji,2.0,f +30312,,,1.0,f +23021,,Anguilla,1.0,f +4654,100%,Cape Verde,3.0,f +28779,100%,Portugal,1.0,f +28782,,,1.0,f +34662,100%,,1.0,f +2439,,Bouvet Island (Bouvetoya),1.0,f +26602,100%,France,1.0,f +5399,100%,Suriname,2.0,f +32991,100%,Mauritania,2.0,t +27187,,,1.0,t +35281,33%,,2.0,f +1532,100%,Wallis and Futuna,2.0,t +19655,100%,Tonga,13.0,t +48983,100%,Sao Tome and Principe,2.0,f +8439,97%,Rwanda,17.0,t +19655,100%,Tonga,13.0,t +47335,78%,Guernsey,15.0,f +28486,100%,Uzbekistan,1.0,f +47335,78%,Guernsey,15.0,f +12812,99%,Croatia,32.0,f +47335,78%,Guernsey,15.0,f +12812,99%,Croatia,32.0,f +12812,99%,Croatia,32.0,f +5041,100%,Chile,7.0,f +11814,100%,Micronesia,7.0,t +3643,100%,,3.0,f +12812,99%,Croatia,32.0,f +27025,100%,Reunion,1.0,f +36476,100%,Saint Helena,1.0,f +24021,100%,Venezuela,1.0,f +46796,100%,,3.0,f +47967,100%,Uzbekistan,2.0,t +18570,,,1.0,f +33817,100%,Gibraltar,62.0,f +45498,100%,Indonesia,4.0,t +35799,,Netherlands,7.0,f +10216,,Lebanon,1.0,f +25002,,China,12.0,f +44398,100%,Niue,2.0,f +26616,100%,Isle of Man,10.0,f +546,100%,Uganda,4.0,f +12886,100%,Marshall Islands,2.0,f +33342,,Nicaragua,1.0,f +30945,,Niue,1.0,f +25187,100%,,1.0,f +19348,100%,Marshall Islands,1.0,f +13941,,Turks and Caicos Islands,1.0,t +18197,86%,Maldives,5.0,f +10956,,Lebanon,2.0,f +43537,50%,Costa Rica,1.0,t +10792,100%,Afghanistan,1.0,f +10992,,Togo,2.0,t +45566,100%,,1.0,f +21372,100%,Niue,1.0,t +13479,100%,,5.0,f +23062,100%,Saint Helena,1.0,t +18077,100%,Sao Tome and Principe,139.0,f +3218,100%,Zimbabwe,6.0,f +546,100%,Uganda,4.0,f +49766,60%,Ghana,2.0,f +15195,100%,Svalbard & Jan Mayen Islands,3.0,t +5886,94%,Fiji,25.0,t +19735,100%,Togo,7.0,f +37292,100%,,3.0,f +46943,94%,Peru,2.0,f +31210,100%,Cape Verde,1.0,t +22128,100%,Malta,1.0,f +4399,,Guinea,2.0,t +8616,53%,Canada,4.0,t +21877,100%,Cook Islands,7.0,f +49421,100%,Slovenia,1.0,f +30263,100%,,2.0,f +46943,94%,Peru,2.0,f +611,86%,Montserrat,7.0,f +24053,,Afghanistan,1.0,f +19190,67%,Isle of Man,1.0,f +22611,100%,Sao Tome and Principe,1.0,f +27559,,,1.0,f +47064,,Zimbabwe,1.0,t +45260,94%,,19.0,f +45598,83%,China,17.0,f +26342,,Togo,1.0,f +5886,94%,Fiji,25.0,t +46708,100%,,1.0,f +4217,,Kenya,52.0,f +32620,100%,Gambia,5.0,f +32620,100%,Gambia,5.0,f +11710,100%,Guinea,2.0,f +2733,,Chad,1.0,f +16331,100%,,1.0,f +1723,,Kenya,1.0,f +19779,85%,Gambia,1.0,f +40910,100%,France,2.0,f +32817,100%,Russian Federation,1.0,t +46407,71%,Rwanda,3.0,f +44027,,Uganda,2.0,f +32598,,Vietnam,1.0,f +46407,71%,Rwanda,3.0,f +23034,99%,Monaco,54.0,f +1955,100%,Monaco,4.0,f +5999,100%,Denmark,2.0,t +41484,89%,Anguilla,23.0,f +48107,100%,Uganda,1.0,f +34604,96%,Kenya,18.0,f +27383,,,1.0,f +30263,100%,,2.0,f +315,100%,,1.0,f +31157,86%,Bosnia and Herzegovina,1.0,f +38501,94%,Uzbekistan,2.0,f +48480,,Nicaragua,1.0,f +3199,100%,,1.0,f +20255,100%,Guinea,3.0,f +34488,100%,Faroe Islands,1.0,f +23946,100%,,2.0,f +44363,100%,Turks and Caicos Islands,1.0,f +11013,100%,,1.0,f +47973,,Ghana,5.0,f +1434,100%,Sao Tome and Principe,1.0,f +37398,100%,Ghana,3.0,f +49398,88%,Barbados,18.0,t +414,100%,Uganda,17.0,t +11578,100%,Brazil,1.0,f +42963,100%,Venezuela,1.0,f +37398,100%,Ghana,3.0,f +5225,100%,Bosnia and Herzegovina,1.0,f +37537,100%,,2.0,t +37293,92%,Russian Federation,15.0,f +39682,100%,Uganda,1.0,t +35799,,Netherlands,7.0,f +414,100%,Uganda,17.0,t +45090,100%,,1.0,f +33691,100%,Chad,1.0,f +7968,100%,,1.0,t +40825,,Andorra,1.0,f +26762,71%,Maldives,1.0,t +24512,100%,Kenya,1.0,t +14070,100%,,2.0,f +16649,100%,Gibraltar,8.0,f +19217,98%,Marshall Islands,46.0,f +44788,92%,,1.0,f +48486,100%,,1.0,f +47005,,Lithuania,1.0,t +36408,100%,Nauru,5.0,f +37462,100%,Jersey,1.0,f +24484,100%,Cocos (Keeling) Islands,1.0,f +40745,,,3.0,f +32735,100%,,2.0,f +40745,,,3.0,f +42203,100%,Afghanistan,1.0,t +105,100%,,1.0,t +32814,100%,Zimbabwe,2.0,f +23778,,French Guiana,1.0,f +4288,,Uruguay,1.0,f +43799,100%,Nicaragua,2.0,f +11769,100%,,1.0,f +21180,,Mexico,1.0,t +42801,100%,,1.0,t +36328,,China,3.0,f +25131,100%,Libyan Arab Jamahiriya,1.0,f +40893,100%,Nauru,3.0,f +15046,,Jersey,1.0,f +27640,100%,Isle of Man,1.0,f +32106,100%,,2.0,f +31134,100%,Maldives,2.0,t +7979,100%,,109.0,f +36902,100%,Russian Federation,1.0,f +2878,93%,Bosnia and Herzegovina,3.0,t +45929,96%,Uganda,3.0,f +5095,,Zimbabwe,1.0,f +7657,0%,Marshall Islands,1.0,f +37201,,Zimbabwe,1.0,f +21881,100%,Puerto Rico,2.0,f +41153,100%,Guinea,9.0,f +4912,100%,Pakistan,2.0,f +44508,,Libyan Arab Jamahiriya,1.0,f +35575,,Marshall Islands,1.0,t +37167,,Nicaragua,2.0,f +15675,100%,Isle of Man,1.0,t +38406,96%,Russian Federation,6.0,t +31913,100%,China,1.0,t +1709,100%,Tonga,2.0,f +48409,,Estonia,60.0,t +48409,,Estonia,60.0,t +7198,100%,Isle of Man,4.0,f +18858,100%,Kenya,1.0,t +47305,100%,Maldives,1.0,t +25528,100%,Svalbard & Jan Mayen Islands,1.0,f +5886,94%,Fiji,25.0,t +43316,100%,Indonesia,23.0,f +43152,100%,Nicaragua,82.0,t +5420,100%,Tonga,41.0,f +49398,88%,Barbados,18.0,t +26967,100%,,1.0,f +31489,,Brazil,1.0,f +30256,100%,Monaco,1.0,f +23677,,,6.0,f +17654,,Nauru,3.0,f +5886,94%,Fiji,25.0,t +48085,100%,Andorra,1.0,f +4217,,Kenya,52.0,f +48117,98%,Ukraine,41.0,f +5886,94%,Fiji,25.0,t +32278,,Togo,1.0,f +16728,100%,,3.0,t +17654,,Nauru,3.0,f +5886,94%,Fiji,25.0,t +11054,100%,Svalbard & Jan Mayen Islands,1.0,f +5886,94%,Fiji,25.0,t +8091,97%,Cuba,10.0,f +22107,100%,,1.0,f +22871,,,1.0,f +5886,94%,Fiji,25.0,t +30879,,United Kingdom,1.0,f +17259,100%,Guinea,2.0,f +3359,17%,Isle of Man,1.0,f +15262,86%,Papua New Guinea,1.0,f +25476,100%,Fiji,11.0,f +5015,100%,Pakistan,2.0,f +25393,,Tanzania,1.0,f +19879,99%,Guinea,19.0,f +4217,,Kenya,52.0,f +18484,100%,Gambia,108.0,f +27755,100%,France,1.0,f +7541,100%,Senegal,1.0,f +45436,100%,Tonga,2.0,f +2306,100%,French Guiana,1.0,f +29647,100%,Peru,1305.0,f +29346,100%,El Salvador,1.0,f +30975,100%,France,1.0,t +5084,100%,Congo,1.0,f +7198,100%,Isle of Man,4.0,f +48260,,Bouvet Island (Bouvetoya),1.0,f +13556,100%,Uzbekistan,1.0,f +7119,100%,Bosnia and Herzegovina,1.0,t +1955,100%,Monaco,4.0,f +13641,85%,Mauritania,23.0,f +34354,100%,,1.0,t +26700,,Niue,6.0,f +13152,100%,Russian Federation,2.0,f +37986,,,1.0,f +39484,100%,Gambia,1.0,f +34223,,,4.0,f +1955,100%,Monaco,4.0,f +16031,100%,,1.0,t +33934,100%,Wallis and Futuna,1.0,f +31667,100%,Croatia,1.0,f +19542,83%,Togo,8.0,f +20508,,Gambia,1.0,t +33908,100%,Tonga,1.0,f +33874,,Kenya,2.0,t +19542,83%,Togo,8.0,f +40298,100%,,2.0,f +8409,98%,Maldives,9.0,f +42370,100%,Marshall Islands,6.0,f +19542,83%,Togo,8.0,f +40793,100%,,75.0,t +19542,83%,Togo,8.0,f +45088,100%,Reunion,9.0,f +32705,100%,Turkmenistan,3.0,f +37499,100%,French Guiana,4.0,t +987,,China,1.0,f +4429,100%,Faroe Islands,1.0,f +11387,100%,Uganda,2.0,f +31216,100%,Togo,1.0,t +13479,100%,,5.0,f +19542,83%,Togo,8.0,f +38051,,Somalia,1.0,t +19542,83%,Togo,8.0,f +19542,83%,Togo,8.0,f +40793,100%,,75.0,t +12484,,United Kingdom,1.0,f +29636,100%,Cocos (Keeling) Islands,5.0,f +14635,,Monaco,1.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +12685,95%,,3.0,t +19217,98%,Marshall Islands,46.0,f +44067,100%,,1.0,f +30751,,,1.0,f +10711,93%,Uganda,108.0,t +40250,100%,Palau,5.0,f +37288,,Pakistan,2.0,t +13740,,Micronesia,1.0,f +1099,70%,,1.0,f +25471,83%,,1.0,f +32620,100%,Gambia,5.0,f +27274,,,1.0,f +43848,,Indonesia,1.0,f +47634,100%,,1.0,f +20090,,Vanuatu,1.0,f +38369,100%,,1.0,f +49928,,Sao Tome and Principe,1.0,f +33397,100%,Nicaragua,1.0,f +46500,99%,Pakistan,73.0,f +29480,100%,French Polynesia,6.0,f +19236,100%,,1.0,f +9109,100%,Svalbard & Jan Mayen Islands,1.0,f +24971,,,4.0,f +24220,,,1.0,t +44971,100%,Isle of Man,1.0,f +47898,100%,Greenland,2.0,f +7979,100%,,109.0,f +49087,,,1.0,f +16514,100%,Puerto Rico,4.0,f +13306,,,1.0,f +29636,100%,Cocos (Keeling) Islands,5.0,f +13845,,Ghana,1.0,t +32924,100%,Cocos (Keeling) Islands,1.0,f +31873,99%,Uzbekistan,22.0,f +48800,100%,Maldives,1.0,t +7979,100%,,109.0,f +16514,100%,Puerto Rico,4.0,f +10927,100%,Gambia,2.0,t +13710,100%,Christmas Island,3.0,f +13919,100%,Uzbekistan,1.0,t +34187,100%,,1.0,f +16514,100%,Puerto Rico,4.0,f +36572,,Estonia,1.0,t +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +49035,98%,Maldives,6.0,f +25535,100%,,1.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +7979,100%,,109.0,f +16947,,Chile,2.0,f +15573,,Niue,1.0,f +20279,100%,,1.0,t +31657,,,1.0,f +42955,100%,Kenya,1.0,f +17436,50%,,1.0,f +12748,,,1.0,t +26526,94%,Tonga,8.0,f +33817,100%,Gibraltar,62.0,f +4419,,Pakistan,1.0,f +5663,,Russian Federation,8.0,t +23398,,Bosnia and Herzegovina,1.0,f +43062,100%,,2.0,t +5277,100%,Vietnam,10.0,f +2263,100%,Guinea,1.0,f +18168,95%,Ecuador,3.0,f +32341,70%,Russian Federation,5.0,f +48869,100%,Slovakia (Slovak Republic),22.0,f +29647,100%,Peru,1305.0,f +25930,100%,Kiribati,1.0,t +23532,,Fiji,1.0,f +47990,88%,Venezuela,4.0,f +18484,100%,Gambia,108.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +1593,,Djibouti,1.0,f +31707,100%,Niger,48.0,f +20896,,Kenya,1.0,f +24867,90%,Bosnia and Herzegovina,5.0,f +40557,100%,Kenya,2.0,f +32676,100%,China,34.0,f +35883,,,1.0,t +335,90%,Chad,1.0,f +40022,,,3.0,t +32684,,Kiribati,1.0,f +38235,80%,Kiribati,3.0,t +30332,100%,Ecuador,2.0,f +22935,,United States of America,2.0,t +32676,100%,China,34.0,f +28241,97%,Maldives,10.0,f +18537,,Nauru,1.0,f +37429,0%,Russian Federation,1.0,t +26545,100%,,1.0,t +22487,100%,Kenya,1.0,f +24626,100%,Cocos (Keeling) Islands,3.0,f +6568,,Australia,1.0,f +42513,,Niger,1.0,f +15245,100%,,11.0,f +44114,92%,,5.0,f +17795,100%,Uzbekistan,11.0,t +16638,90%,Bahrain,2.0,f +48869,100%,Slovakia (Slovak Republic),22.0,f +24595,100%,Guinea,3.0,t +41557,100%,Niger,2.0,f +44586,85%,Ukraine,13.0,f +46795,100%,Indonesia,1.0,f +12097,,Guernsey,1.0,f +47990,88%,Venezuela,4.0,f +43316,100%,Indonesia,23.0,f +33817,100%,Gibraltar,62.0,f +24740,,Anguilla,1.0,f +41251,,Turks and Caicos Islands,1.0,f +41484,89%,Anguilla,23.0,f +971,,Kenya,1.0,f +47813,50%,Niue,1.0,f +33187,,Lebanon,1.0,t +28785,100%,Lebanon,1.0,f +28477,100%,Guinea,2.0,t +37001,,Bosnia and Herzegovina,1.0,f +44065,,Kenya,1.0,f +29960,100%,Indonesia,1.0,t +19958,100%,Congo,40.0,t +2870,,,1.0,t +22874,,,1.0,f +1493,,Cape Verde,1.0,f +32676,100%,China,34.0,f +45553,90%,Brazil,16.0,t +18697,100%,Rwanda,8.0,f +13070,100%,Fiji,45.0,f +24709,,,1.0,t +26285,94%,Senegal,9.0,f +49233,100%,Andorra,3.0,f +9361,,French Guiana,1.0,f +12151,100%,,1.0,f +13070,100%,Fiji,45.0,f +29716,,Gibraltar,1.0,f +32831,,Ghana,1.0,f +5003,100%,Jersey,8.0,f +32676,100%,China,34.0,f +14254,100%,Nicaragua,4.0,f +21605,83%,Nicaragua,6.0,f +32734,96%,,4.0,f +19897,100%,Monaco,1.0,f +49377,,Sao Tome and Principe,1.0,f +356,99%,Wallis and Futuna,32.0,t +25460,100%,Maldives,13.0,f +34395,,Chile,1.0,f +40793,100%,,75.0,t +24370,90%,Zimbabwe,3.0,f +14505,,Sao Tome and Principe,2.0,t +32676,100%,China,34.0,f +22594,100%,Rwanda,12.0,f +47313,80%,Costa Rica,4.0,f +34838,,Tanzania,1.0,f +45636,100%,Reunion,2.0,f +32676,100%,China,34.0,f +13890,,Kiribati,13.0,f +33016,89%,Cape Verde,1.0,f +23823,100%,China,3.0,t +24359,100%,Sao Tome and Principe,1.0,t +11973,100%,Niue,7.0,t +21127,,Moldova,5.0,f +26129,,Russian Federation,1.0,f +21605,83%,Nicaragua,6.0,f +30860,,Denmark,1.0,f +7467,,Cape Verde,2.0,f +42967,100%,Zimbabwe,1.0,t +48177,100%,Monaco,1.0,f +47135,,,1.0,f +24161,95%,,2.0,f +27103,100%,Russian Federation,1.0,f +48170,67%,French Polynesia,2.0,f +13890,,Kiribati,13.0,f +11710,100%,Guinea,2.0,f +25392,,Micronesia,1.0,f +7111,,Niue,1.0,f +14249,,Netherlands,1.0,f +48681,75%,,2.0,f +37668,94%,Switzerland,3.0,f +45552,93%,Nicaragua,12.0,t +45552,93%,Nicaragua,12.0,t +45552,93%,Nicaragua,12.0,t +36962,50%,Marshall Islands,1.0,f +40309,,Estonia,1.0,f +19096,100%,Somalia,1.0,f +31158,99%,Suriname,11.0,f +20783,,,1.0,f +3355,78%,Faroe Islands,2.0,t +11792,100%,,3.0,f +4961,,Svalbard & Jan Mayen Islands,1.0,f +33793,100%,Russian Federation,2.0,f +44416,91%,Kenya,2.0,f +32386,97%,Indonesia,19.0,f +16268,,,10.0,f +108,100%,Togo,1.0,f +32386,97%,Indonesia,19.0,f +37324,,Cook Islands,1.0,f +32386,97%,Indonesia,19.0,f +32386,97%,Indonesia,19.0,f +25995,,Gambia,1.0,f +15764,100%,,1.0,t +46669,86%,Brazil,11.0,f +28369,90%,Sao Tome and Principe,9.0,f +19582,,,1.0,f +32851,,Anguilla,1.0,f +42904,70%,Russian Federation,2.0,t +15826,100%,Isle of Man,1.0,t +10488,100%,Niger,17.0,t +14196,76%,Indonesia,4.0,f +35353,,Isle of Man,1.0,t +29636,100%,Cocos (Keeling) Islands,5.0,f +29764,100%,Kenya,1.0,f +9369,,Monaco,1.0,f +40707,100%,Sao Tome and Principe,1.0,t +15532,,Estonia,2.0,f +15346,67%,,1.0,t +20755,,Micronesia,1.0,f +16489,100%,Russian Federation,42.0,t +19415,100%,France,2.0,f +16489,100%,Russian Federation,42.0,t +48869,100%,Slovakia (Slovak Republic),22.0,f +29818,100%,Croatia,2.0,f +15532,,Estonia,2.0,f +5561,100%,,2.0,f +24971,,,4.0,f +45598,83%,China,17.0,f +35755,100%,Zimbabwe,1.0,f +7436,,,1.0,t +20423,67%,Philippines,3.0,f +32372,90%,Ghana,5.0,f +38114,94%,Uzbekistan,19.0,f +25209,,,2.0,t +33817,100%,Gibraltar,62.0,f +18603,,Faroe Islands,3.0,f +13890,,Kiribati,13.0,f +29761,,United Kingdom,1.0,f +34840,,Russian Federation,1.0,f +3819,100%,,1.0,t +27387,96%,Tonga,5.0,f +18026,75%,,1.0,t +49429,99%,Bosnia and Herzegovina,49.0,f +34465,,Estonia,2.0,f +4055,,Ukraine,1.0,f +11948,,Sao Tome and Principe,1.0,f +35140,88%,Nicaragua,1.0,t +13127,100%,Niger,22.0,f +20750,75%,Anguilla,1.0,f +21452,99%,Lebanon,29.0,f +42921,100%,Chile,3.0,f +20123,100%,Indonesia,1.0,f +20472,100%,Monaco,1.0,f +45498,100%,Indonesia,4.0,t +3921,98%,,14.0,f +34810,80%,,1.0,f +32455,100%,Guinea,2.0,t +25830,100%,,1.0,f +21919,,Ukraine,1.0,f +19943,63%,Isle of Man,34.0,f +19943,63%,Isle of Man,34.0,f +45088,100%,Reunion,9.0,f +47375,100%,Lebanon,1.0,f +13387,,Kiribati,1.0,f +7602,100%,,1.0,f +41580,100%,Turkmenistan,1.0,f +14899,100%,Zimbabwe,3.0,t +38398,91%,,1.0,f +6203,,Vietnam,1.0,f +4855,,Zimbabwe,2.0,f +7156,,Christmas Island,1.0,f +27659,100%,Turks and Caicos Islands,3.0,f +28194,100%,,1.0,f +18077,100%,Sao Tome and Principe,139.0,f +18077,100%,Sao Tome and Principe,139.0,f +30625,100%,Isle of Man,2.0,t +46430,,Jersey,1.0,f +1663,,Mauritania,1.0,f +18077,100%,Sao Tome and Principe,139.0,f +5701,100%,Costa Rica,1.0,t +30640,,,1.0,t +17114,100%,France,2.0,t +18697,100%,Rwanda,8.0,f +18581,98%,Tonga,3.0,f +1612,,Micronesia,1.0,t +38522,100%,Sao Tome and Principe,9.0,f +816,,Cook Islands,1.0,f +36520,,Maldives,1.0,f +33404,,Ukraine,1.0,f +15847,,Uganda,13.0,f +7009,100%,Isle of Man,9.0,f +36628,100%,Brazil,1.0,f +41630,100%,Kiribati,24.0,f +43046,,Denmark,1.0,f +38125,,,1.0,f +23945,100%,Guinea,1.0,f +16432,100%,,2.0,t +41630,100%,Kiribati,24.0,f +15085,100%,Zimbabwe,1.0,f +41630,100%,Kiribati,24.0,f +35944,,,2.0,f +4330,94%,Ukraine,60.0,t +47353,94%,Niue,20.0,f +4577,,Faroe Islands,1.0,f +3614,,Isle of Man,1.0,f +48774,,Jersey,1.0,f +13519,,Gibraltar,1.0,f +22256,,Anguilla,1.0,f +13700,100%,Isle of Man,8.0,f +696,,,1.0,f +21493,,Uzbekistan,6.0,f +46222,100%,Isle of Man,1.0,f +29814,100%,,5.0,f +20822,,Bouvet Island (Bouvetoya),1.0,f +26658,100%,,1.0,f +13700,100%,Isle of Man,8.0,f +34440,,Niue,1.0,f +13038,,,1.0,t +33056,,Micronesia,1.0,f +16660,100%,,1.0,f +23000,90%,,4.0,f +8271,,,1.0,f +23968,,Nauru,2.0,f +32787,100%,Uzbekistan,2.0,t +29588,100%,,3.0,f +23605,100%,Guinea,2.0,f +24270,100%,,1.0,t +13728,100%,Pakistan,1.0,f +19299,100%,,1.0,f +3407,,Indonesia,1.0,f +18356,,Bouvet Island (Bouvetoya),1.0,f +23580,60%,,1.0,f +8282,100%,Guinea,2.0,t +27379,,Chad,1.0,f +26302,,Gambia,2.0,f +356,99%,Wallis and Futuna,32.0,t +3338,,Togo,1.0,f +3643,100%,,3.0,f +33162,,France,1.0,f +11886,100%,,1.0,f +23628,100%,,1.0,t +27444,,Guinea,2.0,t +39138,,Ghana,1.0,f +29737,100%,,1.0,f +25601,,Bosnia and Herzegovina,1.0,f +47184,,Portugal,1.0,f +2794,100%,Indonesia,3.0,f +27417,,,1.0,t +30347,,Kenya,6.0,f +26256,100%,Estonia,1.0,f +33812,,Russian Federation,1.0,f +21298,100%,Uzbekistan,2.0,f +22674,100%,,3.0,f +22674,100%,,3.0,f +14493,,Zimbabwe,1.0,f +1861,,Mauritania,1.0,f +22305,,Kiribati,3.0,f +46160,,Micronesia,2.0,f +37331,,Bosnia and Herzegovina,1.0,f +1372,,Estonia,1.0,f +44713,100%,French Guiana,1.0,t +22219,100%,Sao Tome and Principe,1.0,f +48760,98%,Ghana,24.0,f +23552,,Turks and Caicos Islands,1.0,f +33030,100%,Niue,11.0,f +10409,100%,Croatia,1.0,f +18338,88%,Ecuador,1.0,t +30347,,Kenya,6.0,f +7639,,Tonga,5.0,f +47023,,Estonia,1.0,f +23467,80%,,4.0,t +29805,,Russian Federation,1.0,f +34214,,Gibraltar,1.0,f +15108,,Gambia,1.0,f +38492,100%,Palestinian Territory,1.0,f +2743,97%,China,23.0,f +39892,100%,Tonga,31.0,t +31729,100%,Portugal,1.0,f +2743,97%,China,23.0,f +17907,,Cocos (Keeling) Islands,1.0,f +20080,,Nicaragua,1.0,f +15665,71%,Bosnia and Herzegovina,1.0,f +1897,,Guinea,1.0,f +20499,,Togo,1.0,f +2743,97%,China,23.0,f +20551,,Chad,1.0,t +41707,,,1.0,f +28766,100%,Estonia,16.0,f +28766,100%,Estonia,16.0,f +10099,,,1.0,f +18077,100%,Sao Tome and Principe,139.0,f +8989,100%,Mauritania,1.0,t +28828,100%,Isle of Man,198.0,t +316,,France,1.0,f +2533,,Lebanon,3.0,f +24982,100%,Svalbard & Jan Mayen Islands,1.0,f +40793,100%,,75.0,t +40772,80%,Estonia,4.0,f +31940,,Congo,1.0,f +28828,100%,Isle of Man,198.0,t +11225,,,1.0,t +42067,,,1.0,f +22411,85%,Niue,1.0,f +31873,99%,Uzbekistan,22.0,f +16428,100%,,2.0,t +27115,100%,Guinea,2.0,f +43052,100%,Faroe Islands,1.0,f +36056,88%,,1.0,f +42785,100%,Costa Rica,3.0,t +23256,100%,,6.0,f +42785,100%,Costa Rica,3.0,t +47990,88%,Venezuela,4.0,f +48059,100%,,1.0,f +6452,100%,Rwanda,2.0,f +21208,100%,Guernsey,1.0,f +49813,67%,Ecuador,1.0,t +33851,100%,,3.0,f +24688,83%,Barbados,7.0,f +41714,100%,Lebanon,1.0,f +38701,40%,Niger,27.0,f +43777,100%,Denmark,18.0,f +43796,100%,Niue,1.0,f +31316,,Malta,1.0,f +7628,100%,,2.0,f +47353,94%,Niue,20.0,f +9151,100%,,1.0,f +19058,100%,Mauritania,1.0,f +42791,100%,Zimbabwe,1.0,f +29656,100%,,1.0,t +48742,100%,Guinea,2.0,f +48417,100%,Djibouti,5.0,f +9791,80%,Rwanda,2.0,t +2878,93%,Bosnia and Herzegovina,3.0,t +24891,33%,Tonga,1.0,f +36755,100%,,2.0,t +31757,,Mauritania,1.0,f +47735,,,1.0,f +2506,,France,1.0,f +645,,Kiribati,2.0,t +16829,,,1.0,f +26133,100%,,2.0,t +39206,100%,Guatemala,3.0,t +9092,,,1.0,f +8409,98%,Maldives,9.0,f +16949,,Uzbekistan,1.0,f +27430,100%,Christmas Island,4.0,t +18547,,,1.0,f +47303,100%,,2.0,f +6276,100%,Zimbabwe,5.0,f +13364,91%,Netherlands,21.0,f +49124,,Marshall Islands,3.0,t +42416,97%,Puerto Rico,20.0,f +42448,,Portugal,1.0,t +34775,50%,Guernsey,1.0,f +36908,100%,Costa Rica,1.0,f +21151,100%,Portugal,5.0,f +3465,80%,Niue,3.0,t +29580,100%,Russian Federation,3.0,f +47303,100%,,2.0,f +3019,100%,Barbados,18.0,f +42846,50%,Philippines,1.0,t +49384,100%,Slovakia (Slovak Republic),21.0,f +32451,100%,,1.0,f +48673,100%,,1.0,t +39265,,Sao Tome and Principe,2.0,f +29733,,Russian Federation,15.0,f +41550,,Zimbabwe,1.0,f +19274,100%,Denmark,3.0,f +2261,100%,Uzbekistan,2.0,f +40325,93%,Costa Rica,4.0,f +24967,100%,,3.0,t +3066,,Djibouti,1.0,f +26630,,Fiji,1.0,f +49411,100%,Canada,4.0,f +19335,100%,Lithuania,1.0,f +5615,100%,Guinea,5.0,f +43067,100%,Russian Federation,3.0,f +49384,100%,Slovakia (Slovak Republic),21.0,f +10865,88%,Isle of Man,2.0,t +47262,100%,,1.0,f +46713,100%,Mauritania,1.0,t +41043,100%,Bosnia and Herzegovina,11.0,f +9125,,Ghana,2.0,t +41922,,Slovakia (Slovak Republic),2.0,f +40364,100%,Tonga,25.0,f +13890,,Kiribati,13.0,f +813,100%,Maldives,2.0,t +49384,100%,Slovakia (Slovak Republic),21.0,f +25569,,,1.0,f +49834,,Guinea,1.0,f +10291,,French Guiana,2.0,f +33138,,,1.0,f +643,,,1.0,f +42416,97%,Puerto Rico,20.0,f +31178,,Anguilla,1.0,f +48368,,Slovakia (Slovak Republic),9.0,f +38443,,Malawi,1.0,f +36712,100%,Zimbabwe,1.0,f +24232,,Kiribati,1.0,f +13890,,Kiribati,13.0,f +23472,80%,Gibraltar,1.0,f +33788,,Venezuela,3.0,f +48229,100%,Costa Rica,1.0,f +45765,100%,,1.0,f +6497,100%,Canada,1.0,f +31640,100%,,2.0,f +13890,,Kiribati,13.0,f +14884,,Bosnia and Herzegovina,1.0,f +29819,80%,Brazil,2.0,f +13890,,Kiribati,13.0,f +813,100%,Maldives,2.0,t +3332,67%,Guinea,2.0,f +1968,100%,,1.0,t +47817,100%,Saint Helena,2.0,f +26195,93%,Gambia,8.0,t +22671,,Peru,1.0,f +23997,,Marshall Islands,3.0,t +23997,,Marshall Islands,3.0,t +8743,,Indonesia,1.0,f +11280,100%,Slovakia (Slovak Republic),10.0,f +38701,40%,Niger,27.0,f +11707,,,1.0,f +37031,,Kenya,1.0,f +38701,40%,Niger,27.0,f +14161,100%,Montserrat,2.0,f +23640,80%,Gambia,3.0,f +11280,100%,Slovakia (Slovak Republic),10.0,f +20555,100%,Tanzania,3.0,t +24971,,,4.0,f +47353,94%,Niue,20.0,f +29127,100%,France,1.0,t +41630,100%,Kiribati,24.0,f +11301,100%,Kiribati,1.0,f +19274,100%,Denmark,3.0,f +17107,,Isle of Man,1.0,f +46996,100%,Tonga,1.0,f +3072,,Vanuatu,1.0,f +14336,,Saint Helena,1.0,f +44353,,Marshall Islands,2.0,f +28783,100%,Cocos (Keeling) Islands,1.0,f +10139,,,1.0,f +41913,,Andorra,1.0,f +26410,76%,,4.0,f +16905,100%,Reunion,3.0,t +45267,,Lebanon,2.0,f +31482,,Papua New Guinea,2.0,t +48878,100%,,1.0,f +16905,100%,Reunion,3.0,t +7571,33%,Kiribati,2.0,f +34723,100%,Peru,12.0,f +1521,,Nicaragua,1.0,f +16905,100%,Reunion,3.0,t +24423,,,1.0,t +34723,100%,Peru,12.0,f +33788,,Venezuela,3.0,f +34723,100%,Peru,12.0,f +49911,,Greenland,1.0,f +34999,,Pakistan,1.0,f +48785,100%,,2.0,t +44857,100%,Zimbabwe,24.0,t +34054,100%,,4.0,f +34783,,,1.0,f +32743,,Kiribati,2.0,f +45387,100%,,1.0,f +11280,100%,Slovakia (Slovak Republic),10.0,f +47274,100%,Tonga,48.0,f +41630,100%,Kiribati,24.0,f +41630,100%,Kiribati,24.0,f +41624,,,1.0,f +33634,,Guinea,1.0,f +49784,,Peru,1.0,f +49427,,,1.0,f +44462,100%,Russian Federation,1.0,f +48377,50%,,3.0,f +14146,100%,,1.0,t +38946,,Peru,1.0,f +48549,100%,France,2.0,f +18501,,Chile,1.0,t +14296,,Netherlands,4.0,f +21996,,,1.0,f +14882,,,1.0,f +623,84%,,5.0,f +23836,100%,,2.0,f +29277,100%,France,1.0,f +18840,,Turkmenistan,2.0,f +12846,,Afghanistan,1.0,f +14341,,,1.0,f +48851,100%,,1.0,f +25523,100%,Costa Rica,1.0,f +21691,100%,Kenya,2.0,t +34723,100%,Peru,12.0,f +36700,100%,Lebanon,1.0,f +9378,,,1.0,f +38652,100%,Uzbekistan,9.0,f +6434,100%,Nicaragua,2.0,f +42593,100%,Nicaragua,2.0,f +27242,100%,,1.0,f +37242,100%,Maldives,1.0,f +42511,,France,1.0,f +3563,,Malta,1.0,f +13161,,,1.0,t +14131,90%,Niue,2.0,t +42909,100%,Peru,2.0,f +11687,100%,Tanzania,2.0,f +17891,100%,Nicaragua,5.0,t +12435,60%,Marshall Islands,1.0,f +13247,,El Salvador,2.0,f +48869,100%,Slovakia (Slovak Republic),22.0,f +42776,100%,,1.0,f +15140,100%,Isle of Man,2.0,f +31427,,,1.0,t +45473,100%,,2.0,t +27032,100%,Marshall Islands,2.0,t +29233,100%,French Guiana,1.0,f +18749,100%,Costa Rica,2.0,f +14550,89%,Turks and Caicos Islands,1.0,t +49814,,Anguilla,1.0,f +36059,,Sao Tome and Principe,1.0,f +31027,,Cuba,1.0,f +10836,,Croatia,1.0,t +5277,100%,Vietnam,10.0,f +31798,,Zimbabwe,1.0,f +14496,,Isle of Man,1.0,t +33788,,Venezuela,3.0,f +44088,,Costa Rica,2.0,f +42843,100%,,1.0,f +48056,,Slovenia,1.0,t +46699,,French Guiana,1.0,t +40689,100%,Cuba,23.0,f +13710,100%,Christmas Island,3.0,f +31646,,,1.0,f +6914,100%,,1.0,f +18758,,Russian Federation,1.0,t +25579,,Turkmenistan,1.0,f +39341,,,1.0,t +25762,,,1.0,f +34744,,French Guiana,1.0,f +2878,93%,Bosnia and Herzegovina,3.0,t +23261,86%,Jersey,2.0,f +38701,40%,Niger,27.0,f +34351,100%,Greenland,2.0,f +11654,,Kiribati,1.0,t +43788,100%,,2.0,f +20428,100%,Cocos (Keeling) Islands,2.0,f +32467,100%,Lithuania,3.0,t +43604,100%,Senegal,1.0,f +18252,,Anguilla,1.0,f +47559,,Bosnia and Herzegovina,1.0,f +5630,100%,Tonga,1.0,f +13246,100%,,1.0,f +40370,100%,Zimbabwe,3.0,f +41267,100%,Micronesia,2.0,t +22596,90%,Russian Federation,8.0,f +47171,,,1.0,f +45064,98%,Anguilla,15.0,f +35102,,Maldives,1.0,t +48589,,,1.0,f +29722,100%,Bouvet Island (Bouvetoya),2.0,f +17891,100%,Nicaragua,5.0,t +37352,100%,Mauritania,2.0,f +10536,,Nauru,1.0,f +13641,85%,Mauritania,23.0,f +33675,,Indonesia,1.0,t +1921,,,1.0,f +26107,100%,Niue,3.0,f +14669,100%,Australia,4.0,f +9956,,Pakistan,1.0,f +4254,,Micronesia,1.0,f +37235,100%,Monaco,1.0,t +4280,,Ghana,1.0,f +17182,100%,Niue,2.0,t +26720,,Kenya,3.0,f +47594,100%,Kenya,17.0,t +44088,,Costa Rica,2.0,f +7309,100%,Togo,4.0,f +27818,100%,,1.0,f +2773,100%,Gibraltar,3.0,t +47645,,Reunion,1.0,f +44546,100%,Guinea,2.0,f +21598,,Lebanon,6.0,f +2773,100%,Gibraltar,3.0,t +28766,100%,Estonia,16.0,f +27659,100%,Turks and Caicos Islands,3.0,f +47670,100%,Niue,2.0,f +47670,100%,Niue,2.0,f +19785,,Kenya,4.0,f +36035,83%,Bahrain,1.0,f +5886,94%,Fiji,25.0,t +6894,80%,Estonia,47.0,t +25209,,,2.0,t +33710,,Somalia,1.0,f +4849,,Malta,2.0,f +5886,94%,Fiji,25.0,t +13165,,Denmark,1.0,f +5886,94%,Fiji,25.0,t +20918,,Montserrat,1.0,f +19785,,Kenya,4.0,f +13927,,Indonesia,1.0,f +19785,,Kenya,4.0,f +19785,,Kenya,4.0,f +40693,,Philippines,1.0,t +33071,100%,Malta,1.0,f +39192,,Anguilla,1.0,f +18197,86%,Maldives,5.0,f +1214,100%,,5.0,f +1214,100%,,5.0,f +1166,,Lithuania,9.0,t +848,100%,Jersey,1.0,f +37874,,Turks and Caicos Islands,1.0,f +26294,100%,,1.0,f +7812,100%,Bosnia and Herzegovina,8.0,f +24229,100%,Kenya,1.0,f +12152,100%,Greenland,1.0,f +43264,100%,Niue,3.0,t +47046,100%,Lebanon,9.0,f +30430,100%,Guinea,1.0,f +49704,,Grenada,1.0,f +46401,100%,,1.0,f +40364,100%,Tonga,25.0,f +49429,99%,Bosnia and Herzegovina,49.0,f +8347,100%,,1.0,f +27505,,Togo,1.0,t +47046,100%,Lebanon,9.0,f +534,,Uganda,1.0,f +18484,100%,Gambia,108.0,f +1336,,Estonia,1.0,f +5179,,,12.0,f +41292,,Montserrat,1.0,f +12542,98%,Mauritania,19.0,t +22061,,,1.0,t +15330,,Sao Tome and Principe,1.0,f +978,95%,Lithuania,29.0,f +6651,,Malta,1.0,f +15686,,Ghana,1.0,f +12335,,Mauritania,1.0,f +33030,100%,Niue,11.0,f +39892,100%,Tonga,31.0,t +40755,,Lebanon,1.0,f +47060,,Slovakia (Slovak Republic),1.0,f +46542,100%,Micronesia,1.0,t +45660,,Barbados,1.0,t +33319,100%,Mauritania,2.0,t +36843,,Reunion,1.0,f +39892,100%,Tonga,31.0,t +34465,,Estonia,2.0,f +44854,100%,Jersey,1.0,f +4873,,France,1.0,f +26474,100%,Guinea,4.0,f +30347,,Kenya,6.0,f +24650,75%,Tonga,3.0,t +13804,100%,El Salvador,2.0,f +17685,,,5.0,f +46292,,,1.0,f +28745,,,1.0,f +17685,,,5.0,f +12924,,,1.0,f +17685,,,5.0,f +17685,,,5.0,f +45842,100%,Maldives,1.0,t +39892,100%,Tonga,31.0,t +28626,,,1.0,f +13707,,Micronesia,1.0,f +48490,100%,Uzbekistan,1.0,f +36116,,Lebanon,2.0,f +43630,,Suriname,1.0,f +46021,50%,Bosnia and Herzegovina,2.0,f +6993,100%,Costa Rica,1.0,t +49051,,,1.0,f +12410,100%,Uzbekistan,4.0,t +22741,,United Kingdom,1.0,f +36116,,Lebanon,2.0,f +33002,,Cuba,1.0,f +10711,93%,Uganda,108.0,t +3806,,,11.0,f +17183,,,1.0,f +43834,99%,Uganda,13.0,f +26386,100%,Fiji,25.0,t +47544,,Jersey,1.0,f +13890,,Kiribati,13.0,f +33030,100%,Niue,11.0,f +21385,100%,Cuba,10.0,f +14300,100%,Afghanistan,1.0,f +24771,,Kenya,2.0,f +31123,,Cocos (Keeling) Islands,2.0,f +20162,,Niger,1.0,f +37154,,Gibraltar,1.0,f +46207,,Senegal,1.0,f +13890,,Kiribati,13.0,f +21947,,,1.0,f +45326,100%,Maldives,3.0,t +24771,,Kenya,2.0,f +21385,100%,Cuba,10.0,f +25952,,Kiribati,1.0,f +15364,,Croatia,1.0,t +18883,0%,Afghanistan,1.0,t +21385,100%,Cuba,10.0,f +13890,,Kiribati,13.0,f +19409,100%,Micronesia,1.0,f +9363,95%,Ukraine,50.0,f +8426,,Gambia,1.0,f +25132,100%,,2.0,f +42346,,,1.0,f +21216,,Sao Tome and Principe,1.0,f +41963,100%,,1.0,f +33030,100%,Niue,11.0,f +21298,100%,Uzbekistan,2.0,f +17674,100%,Pakistan,4.0,f +33030,100%,Niue,11.0,f +13890,,Kiribati,13.0,f +33030,100%,Niue,11.0,f +14634,100%,,1.0,f +8626,,Estonia,1.0,f +31070,,Chile,1.0,f +46489,100%,Rwanda,2.0,f +13890,,Kiribati,13.0,f +49535,,,1.0,f +6451,80%,Uzbekistan,3.0,f +26696,100%,France,4.0,t +4630,100%,,2.0,f +48539,,,1.0,f +13890,,Kiribati,13.0,f +33278,100%,Cuba,3.0,f +44274,,,3.0,f +25285,100%,Uzbekistan,1.0,f +16138,,,1.0,f +38701,40%,Niger,27.0,f +38942,33%,Antigua and Barbuda,2.0,t +41630,100%,Kiribati,24.0,f +28399,,Guinea,4.0,f +32362,100%,Marshall Islands,4.0,t +13468,,Uzbekistan,1.0,t +44685,,Gambia,1.0,f +39538,,Greenland,3.0,f +38200,,Zimbabwe,1.0,f +22579,,,1.0,f +5842,,China,16.0,f +5842,,China,16.0,f +5842,,China,16.0,f +5842,,China,16.0,f +49000,,Uganda,2.0,f +49000,,Uganda,2.0,f +46225,,Montserrat,1.0,f +26526,94%,Tonga,8.0,f +20005,,Gibraltar,1.0,t +31542,100%,Isle of Man,3.0,f +28710,,Kenya,1.0,f +47170,,United Kingdom,1.0,f +10408,,Portugal,1.0,f +31872,100%,,1.0,f +22271,,Nicaragua,2.0,f +42416,97%,Puerto Rico,20.0,f +15843,100%,Slovakia (Slovak Republic),18.0,f +15817,100%,Barbados,4.0,t +40971,97%,Bouvet Island (Bouvetoya),13.0,f +38618,100%,Guernsey,1.0,t +24750,,Puerto Rico,1.0,f +12111,100%,Isle of Man,1.0,f +38516,95%,Pakistan,9.0,f +40971,97%,Bouvet Island (Bouvetoya),13.0,f +5886,94%,Fiji,25.0,t +5886,94%,Fiji,25.0,t +14936,100%,,1.0,t +6150,,Isle of Man,1.0,t +38154,,French Guiana,1.0,f +42610,,Uzbekistan,1.0,f +23420,100%,Nauru,2.0,f +38516,95%,Pakistan,9.0,f +16782,,Kiribati,1.0,f +45292,,Micronesia,2.0,f +15843,100%,Slovakia (Slovak Republic),18.0,f +31661,,Marshall Islands,1.0,f +7537,100%,Rwanda,2.0,f +42416,97%,Puerto Rico,20.0,f +38516,95%,Pakistan,9.0,f +13579,100%,Uzbekistan,1.0,t +21211,100%,Nicaragua,2.0,f +33318,100%,Jersey,1.0,f +17674,100%,Pakistan,4.0,f +25550,100%,Nicaragua,8.0,t +38516,95%,Pakistan,9.0,f +3314,100%,Slovakia (Slovak Republic),10.0,f +33578,100%,Isle of Man,6.0,t +15843,100%,Slovakia (Slovak Republic),18.0,f +41627,,Croatia,1.0,f +40971,97%,Bouvet Island (Bouvetoya),13.0,f +44829,83%,,1.0,t +45437,,United Kingdom,2.0,f +33548,,Christmas Island,1.0,f +31652,100%,Kenya,8.0,t +40461,,,1.0,t +14261,,Greenland,1.0,f +38516,95%,Pakistan,9.0,f +25426,,Ghana,1.0,f +25058,100%,Tanzania,1.0,f +48780,100%,Tunisia,2.0,f +18386,100%,,2.0,t +22684,,Gambia,1.0,f +33817,100%,Gibraltar,62.0,f +46300,,Peru,1.0,f +17619,74%,Ghana,14.0,f +33817,100%,Gibraltar,62.0,f +31652,100%,Kenya,8.0,t +9622,,Kiribati,1.0,f +40971,97%,Bouvet Island (Bouvetoya),13.0,f +12504,,,1.0,f +30726,,Isle of Man,1.0,f +627,,Holy See (Vatican City State),1.0,f +1230,,Croatia,4.0,f +37704,96%,Fiji,26.0,f +41657,87%,Switzerland,4.0,f +29647,100%,Peru,1305.0,f +29647,100%,Peru,1305.0,f +47258,100%,,1.0,f +13353,100%,,1.0,t +22596,90%,Russian Federation,8.0,f +11270,,French Guiana,1.0,f +29647,100%,Peru,1305.0,f +41657,87%,Switzerland,4.0,f +24110,100%,Ecuador,1.0,f +45598,83%,China,17.0,f +40829,,Rwanda,2.0,f +30324,,Lebanon,1.0,t +46948,,Kenya,1.0,f +42416,97%,Puerto Rico,20.0,f +41153,100%,Guinea,9.0,f +36363,82%,Marshall Islands,5.0,f +33270,100%,Faroe Islands,2.0,f +45598,83%,China,17.0,f +45688,,Kenya,10.0,f +44352,,Faroe Islands,1.0,f +38501,94%,Uzbekistan,2.0,f +45598,83%,China,17.0,f +19217,98%,Marshall Islands,46.0,f +12812,99%,Croatia,32.0,f +28223,100%,Uzbekistan,1.0,f +43750,100%,,1.0,f +34975,,Netherlands,1.0,f +13097,100%,Uganda,4.0,t +45598,83%,China,17.0,f +30864,,Finland,1.0,f +5692,,Uzbekistan,2.0,t +45111,100%,Sao Tome and Principe,420.0,f +49429,99%,Bosnia and Herzegovina,49.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +8148,,,1.0,f +10097,,,1.0,f +45111,100%,Sao Tome and Principe,420.0,f +45598,83%,China,17.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +49429,99%,Bosnia and Herzegovina,49.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +7039,,Uganda,2.0,f +45111,100%,Sao Tome and Principe,420.0,f +18077,100%,Sao Tome and Principe,139.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +30435,99%,Cape Verde,41.0,f +37112,100%,,2.0,t +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +13097,100%,Uganda,4.0,t +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +9878,,,1.0,t +45111,100%,Sao Tome and Principe,420.0,f +47346,,Kiribati,1.0,f +45111,100%,Sao Tome and Principe,420.0,f +27164,100%,Brazil,2.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +4792,100%,Jersey,4.0,t +45111,100%,Sao Tome and Principe,420.0,f +46259,76%,Kiribati,3.0,f +45111,100%,Sao Tome and Principe,420.0,f +45525,93%,Tonga,9.0,f +45111,100%,Sao Tome and Principe,420.0,f +47675,,Netherlands,1.0,f +4446,100%,Uganda,58.0,f +45111,100%,Sao Tome and Principe,420.0,f +40006,,Uzbekistan,1.0,f +45111,100%,Sao Tome and Principe,420.0,f +15146,,Costa Rica,1.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +11324,,Bouvet Island (Bouvetoya),1.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +27234,,Niue,1.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +40793,100%,,75.0,t +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +43834,99%,Uganda,13.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +42839,,Bosnia and Herzegovina,1.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +45111,100%,Sao Tome and Principe,420.0,f +13097,100%,Uganda,4.0,t +45111,100%,Sao Tome and Principe,420.0,f +15757,,Niue,1.0,f +45111,100%,Sao Tome and Principe,420.0,f +27713,,Nauru,1.0,f +49321,,,1.0,f +37557,100%,Brazil,4.0,t +7039,,Uganda,2.0,f +40327,,,3.0,f +45111,100%,Sao Tome and Principe,420.0,f +23558,,Philippines,3.0,f +9982,,Uzbekistan,1.0,f +14212,,Isle of Man,1.0,f +17406,,Anguilla,1.0,f +38721,,,1.0,f +8314,,,1.0,f +12400,100%,Maldives,1.0,t +41922,,Slovakia (Slovak Republic),2.0,f +23558,,Philippines,3.0,f +18447,100%,Venezuela,2.0,f +3435,100%,Bahrain,2.0,f +9523,100%,Vietnam,2.0,t +19929,,Niue,1.0,f +43494,98%,Saint Helena,5.0,f +34707,,Senegal,1.0,f +17666,,Guinea,1.0,f +30445,,Russian Federation,1.0,f +45326,100%,Maldives,3.0,t +39024,100%,Uzbekistan,2.0,f +821,,Turks and Caicos Islands,1.0,f +14653,80%,Kenya,2.0,t +37557,100%,Brazil,4.0,t +5102,100%,Nicaragua,2.0,f +32459,100%,Russian Federation,1.0,t +35942,100%,,1.0,f +41279,,Grenada,2.0,t +45570,,Christmas Island,1.0,t +10484,100%,Guinea,12.0,t +41630,100%,Kiribati,24.0,f +42019,,Malawi,1.0,t +10697,100%,Uzbekistan,3.0,t +22492,60%,Kiribati,2.0,f +12791,,Niue,1.0,t +32546,,,1.0,f +7912,100%,,1.0,f +43659,98%,Maldives,14.0,f +10488,100%,Niger,17.0,t +23558,,Philippines,3.0,f +31877,,Puerto Rico,1.0,t +5842,,China,16.0,f +25726,100%,France,3.0,f +47766,100%,Uzbekistan,1.0,t +5842,,China,16.0,f +24040,,Rwanda,1.0,f +43310,100%,Russian Federation,1.0,f +21847,,,1.0,f +5842,,China,16.0,f +5842,,China,16.0,f +5842,,China,16.0,f +5842,,China,16.0,f +42869,,El Salvador,9.0,f +5842,,China,16.0,f +5842,,China,16.0,f +1558,100%,,10.0,f +5842,,China,16.0,f +43659,98%,Maldives,14.0,f +32330,100%,,1.0,f +23642,100%,Holy See (Vatican City State),5.0,f +8785,100%,Turks and Caicos Islands,3.0,f +2947,,Russian Federation,2.0,f +38227,100%,Switzerland,1.0,f +8785,100%,Turks and Caicos Islands,3.0,f +13266,,Peru,1.0,t +9504,,,1.0,f +27960,69%,Suriname,6.0,f +29889,,,1.0,f +8104,100%,,4.0,f +30172,100%,Russian Federation,12.0,f +30709,,Tonga,1.0,f +33708,100%,Marshall Islands,3.0,f +27509,,,1.0,f +16311,,,1.0,f +9222,100%,Brazil,18.0,t +24200,,,1.0,f +6052,,Micronesia,1.0,f +46160,,Micronesia,2.0,f +27827,100%,,3.0,f +11182,,,1.0,f +42909,100%,Peru,2.0,f +41279,,Grenada,2.0,t +22153,,Suriname,1.0,f +36485,100%,South Georgia and the South Sandwich Islands,3.0,f +44764,98%,Maldives,16.0,f +18276,,Malta,1.0,f +42319,,Malta,1.0,f +28894,100%,Nicaragua,2.0,f +33751,,Lebanon,1.0,t +20334,99%,Niger,171.0,t +2261,100%,Uzbekistan,2.0,f +1385,,Rwanda,1.0,f +20334,99%,Niger,171.0,t +15189,79%,China,21.0,f +29647,100%,Peru,1305.0,f +8329,,,1.0,f +25664,100%,,1.0,f +19214,100%,Senegal,55.0,f +44033,,,3.0,f +23146,100%,,6.0,f +40364,100%,Tonga,25.0,f +34604,96%,Kenya,18.0,f +38388,,Russian Federation,1.0,t +33924,,Uganda,1.0,f +45553,90%,Brazil,16.0,t +41347,,Congo,1.0,f +17757,100%,Uganda,1.0,f +13834,,Kiribati,9.0,f +36208,100%,Nicaragua,1.0,t +40364,100%,Tonga,25.0,f +13459,,Malawi,1.0,f +30134,100%,Uzbekistan,3.0,f +27309,,Isle of Man,4.0,f +48303,100%,France,2.0,f +25726,100%,France,3.0,f +44162,,,1.0,f +38699,,Uzbekistan,1.0,f +24022,100%,Montserrat,3.0,f +9363,95%,Ukraine,50.0,f +41972,,,1.0,t +49429,99%,Bosnia and Herzegovina,49.0,f +36232,,Marshall Islands,1.0,f +32389,75%,,5.0,f +27309,,Isle of Man,4.0,f +31946,,Gambia,1.0,f +47353,94%,Niue,20.0,f +48418,98%,Bosnia and Herzegovina,30.0,f +9856,100%,Uzbekistan,2.0,t +1401,100%,Uganda,3.0,f +29679,100%,Guinea,1.0,f +25712,,,1.0,f +47353,94%,Niue,20.0,f +19977,,,1.0,f +18434,,Cuba,1.0,f +36018,100%,,7.0,f +5971,,Niue,1.0,f +39066,,Sao Tome and Principe,1.0,f +21755,100%,Russian Federation,1.0,f +12063,100%,Isle of Man,1.0,t +9909,,,1.0,f +24022,100%,Montserrat,3.0,f +33198,100%,Mauritania,12.0,f +44041,,Netherlands,1.0,t +34604,96%,Kenya,18.0,f +24022,100%,Montserrat,3.0,f +7830,100%,,1.0,t +14452,,,1.0,t +21989,,Uganda,1.0,f +17820,100%,Montserrat,8.0,f +34375,,Fiji,1.0,t +32405,,Gambia,1.0,f +4778,100%,,2.0,f +36929,,,1.0,f +49917,,Svalbard & Jan Mayen Islands,1.0,f +24151,,Somalia,1.0,f +2406,,French Guiana,1.0,f +13641,85%,Mauritania,23.0,f +46839,,Kiribati,1.0,f +4602,,Tunisia,1.0,f +16607,,Peru,3.0,t +44312,,,1.0,f +40829,,Rwanda,2.0,f +45525,93%,Tonga,9.0,f +22331,99%,Rwanda,50.0,t +35435,,Reunion,1.0,f +10267,,Tonga,1.0,f +41446,,,1.0,f +16974,,Gambia,1.0,t +27491,,Kiribati,1.0,f +18077,100%,Sao Tome and Principe,139.0,f +16362,0%,Palestinian Territory,2.0,f +34926,,Uzbekistan,1.0,f +30347,,Kenya,6.0,f +24136,,Chile,1.0,f +31527,,,1.0,f +16200,,Lebanon,1.0,t +36751,,Ukraine,2.0,t +13543,,Brazil,1.0,t +37877,,Tanzania,1.0,f +26566,,Tonga,1.0,f +9363,95%,Ukraine,50.0,f +37651,,Brazil,1.0,f +38300,,Bouvet Island (Bouvetoya),1.0,f +29951,90%,Russian Federation,2.0,f +11897,,Sao Tome and Principe,1.0,f +15245,100%,,11.0,f +5366,,,1.0,f +18007,,Russian Federation,1.0,f +26511,,Andorra,1.0,t +2428,,Kenya,1.0,t +16613,,Montserrat,1.0,f +20611,,Guinea,3.0,f +42177,100%,,4.0,t +46364,100%,Greenland,2.0,f +29636,100%,Cocos (Keeling) Islands,5.0,f +47192,,Russian Federation,1.0,t +12965,100%,Vietnam,11.0,t +23714,100%,Montserrat,1.0,f +301,100%,,1.0,f +29117,,Chad,2.0,t +25726,100%,France,3.0,f +20789,98%,Sao Tome and Principe,13.0,f +29636,100%,Cocos (Keeling) Islands,5.0,f +44705,,,1.0,f +44114,92%,,5.0,f +48681,75%,,2.0,f +7494,100%,Micronesia,2.0,f +49185,,Isle of Man,4.0,f +48702,,Turks and Caicos Islands,1.0,t +28234,100%,Marshall Islands,4.0,f +30452,,,1.0,t +16368,100%,Faroe Islands,4.0,t +41630,100%,Kiribati,24.0,f +6388,,French Guiana,1.0,f +44114,92%,,5.0,f +43036,,Marshall Islands,1.0,f +44114,92%,,5.0,f +42904,70%,Russian Federation,2.0,t +3700,,Puerto Rico,1.0,f +30172,100%,Russian Federation,12.0,f +19048,,,1.0,f +23197,,,1.0,f +24628,,Jersey,1.0,f +2007,,Denmark,1.0,f +6580,100%,Kiribati,5.0,t +6185,,Pakistan,1.0,t +1868,100%,China,4.0,t +6782,100%,Uganda,5.0,f +35242,,,1.0,t +13017,,Palestinian Territory,1.0,t +33078,,Cuba,1.0,f +8575,,Mauritania,1.0,f +41108,,Uganda,1.0,f +4247,,,2.0,f +4247,,,2.0,f +4738,,Rwanda,4.0,f +43388,94%,Barbados,2.0,f +41153,100%,Guinea,9.0,f +40556,,Togo,1.0,f +12216,97%,Uzbekistan,4.0,f +34671,100%,Montserrat,3.0,f +39361,,Bosnia and Herzegovina,1.0,f +4738,,Rwanda,4.0,f +4738,,Rwanda,4.0,f +6477,100%,Nicaragua,2.0,f +20868,100%,Montserrat,2.0,t +36107,,Denmark,1.0,f +11280,100%,Slovakia (Slovak Republic),10.0,f +28766,100%,Estonia,16.0,f +3822,,Uzbekistan,5.0,f +18218,,Sao Tome and Principe,1.0,f +29912,,Marshall Islands,1.0,t +24867,90%,Bosnia and Herzegovina,5.0,f +45688,,Kenya,10.0,f +5786,,El Salvador,2.0,f +34042,100%,Marshall Islands,37.0,f +46988,,Somalia,4.0,t +16062,100%,Brazil,2.0,f +18756,88%,Philippines,3.0,f +36160,,Guinea,1.0,f +19803,75%,Guinea,2.0,f +27930,,Ukraine,2.0,f +2092,100%,,2.0,f +20297,80%,Montserrat,17.0,f +6129,100%,Isle of Man,2.0,f +19879,99%,Guinea,19.0,f +22649,,Russian Federation,1.0,f +41153,100%,Guinea,9.0,f +10248,,Costa Rica,1.0,f +27930,,Ukraine,2.0,f +22325,,,1.0,f +47470,,Kenya,1.0,t +28169,,Guernsey,1.0,f +19879,99%,Guinea,19.0,f +32886,90%,Russian Federation,6.0,f +48093,,Brazil,1.0,t +20371,,,1.0,f +36795,,Russian Federation,1.0,f +25674,70%,Cocos (Keeling) Islands,1.0,f +36157,100%,Tonga,6.0,t +2760,100%,Indonesia,3.0,f +32886,90%,Russian Federation,6.0,f +15019,,Tonga,1.0,f +10329,,Nicaragua,1.0,t +34171,100%,Anguilla,6.0,f +12137,99%,Sao Tome and Principe,33.0,t +36774,100%,Tonga,19.0,f +31153,,,1.0,f +28650,100%,Zimbabwe,2.0,f +19958,100%,Congo,40.0,t +45496,40%,Niue,6.0,f +45121,100%,Andorra,5.0,t +14731,100%,Brazil,2.0,f +34042,100%,Marshall Islands,37.0,f +10766,,Lebanon,1.0,f +49429,99%,Bosnia and Herzegovina,49.0,f +25035,,Micronesia,2.0,f +15807,,Gambia,1.0,f +28196,,Svalbard & Jan Mayen Islands,3.0,t +33656,,Niue,1.0,f +43799,100%,Nicaragua,2.0,f +42046,,Kiribati,7.0,t +1054,100%,Guinea,20.0,f +8137,,Fiji,1.0,t +49317,100%,El Salvador,2.0,f +18156,,Monaco,1.0,f +28234,100%,Marshall Islands,4.0,f +18173,100%,Barbados,5.0,t +27641,,Uzbekistan,1.0,f +47353,94%,Niue,20.0,f +3482,100%,Marshall Islands,4.0,f +35925,100%,Croatia,2.0,f +23220,,,1.0,t +28234,100%,Marshall Islands,4.0,f +18669,,Marshall Islands,1.0,f +18561,,Gambia,1.0,f +13163,25%,Svalbard & Jan Mayen Islands,2.0,f +45605,,Vanuatu,4.0,f +25027,,Papua New Guinea,1.0,f +47353,94%,Niue,20.0,f +5179,,,12.0,f +7415,100%,Uzbekistan,8.0,f +20020,100%,Sao Tome and Principe,2.0,t +2031,,United Kingdom,1.0,t +22743,,Somalia,1.0,f +21877,100%,Cook Islands,7.0,f +6276,100%,Zimbabwe,5.0,f +22099,,,1.0,f +22532,,,1.0,f +20611,,Guinea,3.0,f +29308,,,1.0,f +23975,0%,Cuba,1.0,f +23964,,,1.0,f +13094,,Kiribati,1.0,f +20611,,Guinea,3.0,f +24965,,,1.0,f +20408,,Svalbard & Jan Mayen Islands,1.0,t +35741,,,1.0,f +40250,100%,Palau,5.0,f +40218,100%,Estonia,6.0,f +5816,,Rwanda,4.0,f +19274,100%,Denmark,3.0,f +200,,El Salvador,1.0,f +44467,,Russian Federation,1.0,t +40859,100%,Togo,1.0,f +1742,,Greenland,1.0,f +15249,,Marshall Islands,1.0,f +44431,,,1.0,f +25724,,,1.0,f +32743,,Kiribati,2.0,f +19010,,Philippines,2.0,f +6654,100%,Tonga,3.0,f +8000,,Chile,2.0,t +14296,,Netherlands,4.0,f +27363,80%,,3.0,t +12542,98%,Mauritania,19.0,t diff --git a/docs/source/03_tutorial/data/reviews.csv b/docs/source/03_tutorial/data/reviews.csv new file mode 100755 index 0000000000..fa0d379d98 --- /dev/null +++ b/docs/source/03_tutorial/data/reviews.csv @@ -0,0 +1,77097 @@ +shuttle_id,review_scores_rating,review_scores_comfort,review_scores_amenities,review_scores_trip,review_scores_crew,review_scores_location,review_scores_price,number_of_reviews,reviews_per_month +63561,97.0,10.0,9.0,10.0,10.0,9.0,10.0,133,1.65 +36260,90.0,8.0,9.0,10.0,9.0,9.0,9.0,3,0.09 +57015,95.0,9.0,10.0,9.0,10.0,9.0,9.0,14,0.14 +14035,93.0,10.0,9.0,9.0,9.0,10.0,9.0,39,0.42 +10036,98.0,10.0,10.0,10.0,10.0,9.0,9.0,92,0.94 +45163,91.0,10.0,9.0,9.0,9.0,9.0,9.0,26,0.77 +64643,95.0,9.0,10.0,10.0,10.0,9.0,9.0,118,1.12 +23389,76.0,8.0,8.0,8.0,8.0,9.0,9.0,5,0.05 +39934,96.0,10.0,10.0,10.0,10.0,10.0,9.0,38,0.49 +57063,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +58991,97.0,10.0,10.0,10.0,10.0,9.0,10.0,109,1.06 +4563,85.0,8.0,10.0,10.0,10.0,10.0,7.0,4,0.04 +25926,93.0,10.0,9.0,10.0,10.0,10.0,9.0,168,1.64 +49438,96.0,10.0,10.0,10.0,10.0,10.0,9.0,61,0.62 +10750,97.0,10.0,10.0,10.0,10.0,10.0,10.0,467,4.66 +61282,97.0,10.0,10.0,10.0,10.0,9.0,10.0,52,0.51 +74345,,,,,,,,0, +4428,95.0,9.0,10.0,10.0,10.0,9.0,9.0,137,1.37 +4146,95.0,10.0,10.0,10.0,10.0,9.0,9.0,318,3.22 +5067,97.0,10.0,9.0,10.0,10.0,9.0,10.0,22,0.29 +22966,,,,,,,,0, +47570,89.0,9.0,7.0,9.0,10.0,9.0,8.0,7,0.13 +30150,,,,,,,,0, +21906,98.0,10.0,10.0,10.0,10.0,9.0,10.0,77,0.77 +14891,93.0,9.0,8.0,10.0,9.0,9.0,9.0,15,0.19 +21228,89.0,9.0,8.0,9.0,10.0,10.0,9.0,65,0.71 +5689,92.0,9.0,10.0,9.0,10.0,10.0,9.0,75,0.79 +36824,90.0,10.0,10.0,8.0,10.0,8.0,8.0,2,0.02 +9938,96.0,10.0,9.0,10.0,10.0,9.0,9.0,148,1.46 +75321,97.0,10.0,10.0,10.0,10.0,9.0,10.0,450,4.5 +35746,93.0,9.0,9.0,10.0,10.0,10.0,9.0,9,0.33 +27341,,,,,,,,0, +38226,,,,,,,,0, +25733,94.0,10.0,9.0,10.0,10.0,9.0,9.0,168,2.55 +6329,96.0,10.0,9.0,10.0,10.0,9.0,9.0,89,1.15 +74362,96.0,9.0,9.0,10.0,10.0,10.0,9.0,30,0.46 +53471,91.0,9.0,9.0,9.0,9.0,9.0,10.0,9,0.14 +38733,88.0,10.0,8.0,9.0,9.0,9.0,9.0,38,0.41 +14998,,,,,,,,1,0.03 +61198,96.0,9.0,9.0,10.0,10.0,10.0,9.0,95,0.95 +28701,96.0,10.0,9.0,10.0,10.0,9.0,9.0,25,0.28 +2509,94.0,10.0,10.0,10.0,10.0,9.0,10.0,50,0.52 +40725,,,,,,,,0, +51059,96.0,10.0,10.0,10.0,10.0,9.0,10.0,170,1.7 +37878,95.0,10.0,10.0,10.0,10.0,9.0,10.0,342,3.42 +61424,88.0,9.0,9.0,9.0,9.0,9.0,9.0,101,1.01 +9858,,,,,,,,0, +71365,93.0,9.0,10.0,10.0,10.0,9.0,9.0,66,0.68 +49512,97.0,10.0,9.0,10.0,10.0,10.0,10.0,14,0.14 +57848,94.0,9.0,9.0,10.0,10.0,10.0,9.0,103,1.07 +31989,85.0,8.0,7.0,9.0,10.0,8.0,8.0,9,0.12 +70608,98.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.15 +6476,96.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.11 +40407,95.0,9.0,9.0,10.0,10.0,9.0,9.0,78,0.81 +20759,100.0,10.0,9.0,10.0,9.0,10.0,10.0,2,0.57 +26232,98.0,10.0,10.0,10.0,10.0,10.0,10.0,72,0.73 +56156,,,,,,,,0, +46324,97.0,9.0,10.0,10.0,10.0,9.0,10.0,69,0.7 +18221,95.0,9.0,10.0,10.0,10.0,10.0,9.0,184,1.9 +18590,95.0,10.0,9.0,10.0,10.0,9.0,10.0,172,1.91 +20990,,,,,,,,0, +55477,91.0,9.0,8.0,10.0,10.0,9.0,9.0,56,0.78 +15748,95.0,10.0,9.0,10.0,10.0,9.0,9.0,13,9.29 +19813,72.0,7.0,8.0,8.0,8.0,9.0,8.0,10,0.15 +43480,87.0,9.0,8.0,10.0,9.0,10.0,9.0,362,3.74 +48270,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.11 +74856,95.0,9.0,10.0,10.0,10.0,9.0,9.0,176,1.95 +19072,,,,,,,,0, +16779,93.0,9.0,10.0,10.0,9.0,10.0,10.0,23,0.24 +69497,96.0,10.0,10.0,10.0,10.0,10.0,9.0,91,0.97 +76722,98.0,10.0,10.0,10.0,10.0,10.0,10.0,30,0.41 +29755,93.0,9.0,10.0,10.0,10.0,9.0,9.0,23,0.27 +39224,90.0,10.0,10.0,9.0,10.0,10.0,9.0,6,0.08 +15332,94.0,10.0,10.0,9.0,10.0,10.0,9.0,57,0.67 +49328,98.0,10.0,10.0,9.0,10.0,9.0,10.0,12,0.13 +16900,98.0,10.0,10.0,10.0,10.0,10.0,10.0,38,0.4 +54588,96.0,10.0,10.0,10.0,10.0,9.0,9.0,138,1.47 +40674,98.0,10.0,10.0,10.0,10.0,9.0,10.0,54,0.84 +460,98.0,10.0,10.0,10.0,10.0,9.0,10.0,21,0.26 +31293,96.0,10.0,10.0,10.0,10.0,9.0,9.0,103,1.34 +38089,95.0,10.0,10.0,10.0,10.0,9.0,9.0,68,1.26 +39684,97.0,10.0,10.0,10.0,10.0,9.0,10.0,192,2.03 +12358,95.0,9.0,9.0,10.0,10.0,10.0,9.0,23,0.28 +10651,,,,,,,,0, +13204,97.0,10.0,10.0,10.0,10.0,10.0,10.0,49,1.08 +9408,97.0,10.0,10.0,10.0,10.0,9.0,10.0,111,1.48 +61147,,,,,,,,0, +63769,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.53 +64105,91.0,9.0,9.0,9.0,10.0,9.0,9.0,13,0.14 +731,98.0,10.0,10.0,10.0,10.0,10.0,10.0,113,1.24 +53151,97.0,9.0,9.0,10.0,10.0,10.0,9.0,25,0.83 +41233,,,,,,,,0, +33027,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.15 +31438,87.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.26 +13020,97.0,9.0,8.0,10.0,10.0,10.0,10.0,8,0.13 +16167,97.0,10.0,10.0,10.0,10.0,10.0,9.0,165,1.82 +259,94.0,10.0,10.0,10.0,10.0,9.0,9.0,182,1.97 +15231,98.0,10.0,10.0,10.0,10.0,10.0,10.0,76,0.83 +71339,96.0,10.0,9.0,10.0,10.0,9.0,10.0,55,0.59 +10145,99.0,10.0,10.0,10.0,10.0,10.0,10.0,49,0.74 +70741,,,,,,,,0, +65850,94.0,9.0,9.0,10.0,10.0,9.0,9.0,185,1.99 +46666,92.0,10.0,9.0,10.0,10.0,10.0,9.0,12,0.2 +56191,93.0,9.0,10.0,10.0,9.0,9.0,9.0,25,0.27 +37906,92.0,9.0,9.0,9.0,10.0,9.0,9.0,5,0.06 +14915,95.0,9.0,10.0,10.0,10.0,9.0,9.0,299,3.22 +17752,98.0,10.0,10.0,10.0,10.0,9.0,10.0,61,1.22 +41943,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.73 +68811,96.0,10.0,10.0,10.0,10.0,9.0,9.0,372,4.0 +26044,91.0,9.0,9.0,10.0,10.0,10.0,9.0,92,2.51 +29121,95.0,10.0,9.0,10.0,10.0,9.0,9.0,73,0.83 +66904,,,,,,,,0, +37365,94.0,10.0,9.0,10.0,10.0,10.0,9.0,167,1.87 +45810,,,,,,,,0, +61429,20.0,4.0,2.0,8.0,8.0,8.0,2.0,3,0.37 +56325,99.0,10.0,10.0,10.0,10.0,9.0,10.0,31,0.42 +48376,,,,,,,,0, +25335,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +11371,93.0,9.0,9.0,10.0,10.0,10.0,9.0,42,0.83 +19134,93.0,9.0,9.0,10.0,10.0,9.0,9.0,76,0.85 +39938,100.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.09 +21531,99.0,10.0,10.0,10.0,10.0,10.0,10.0,63,4.22 +55681,89.0,9.0,9.0,10.0,10.0,10.0,9.0,11,0.23 +12572,94.0,10.0,10.0,10.0,10.0,9.0,9.0,56,0.76 +76195,88.0,9.0,8.0,9.0,10.0,10.0,9.0,311,3.43 +56080,100.0,10.0,10.0,10.0,10.0,10.0,10.0,26,1.07 +42762,97.0,10.0,10.0,10.0,10.0,10.0,10.0,183,2.02 +6581,91.0,9.0,10.0,9.0,9.0,9.0,9.0,165,1.82 +28956,,,,,,,,0, +66637,94.0,9.0,9.0,9.0,10.0,9.0,10.0,13,0.14 +66614,93.0,9.0,9.0,9.0,9.0,10.0,9.0,15,0.18 +16886,91.0,10.0,9.0,10.0,10.0,10.0,9.0,96,1.1 +42451,96.0,10.0,10.0,10.0,10.0,10.0,9.0,163,2.04 +51751,97.0,10.0,9.0,10.0,10.0,9.0,9.0,41,0.66 +23175,94.0,10.0,10.0,10.0,9.0,9.0,10.0,17,0.19 +45008,93.0,10.0,10.0,10.0,10.0,10.0,9.0,13,0.14 +16992,97.0,10.0,10.0,10.0,10.0,10.0,10.0,21,2.76 +13647,,,,,,,,0, +16137,96.0,9.0,9.0,10.0,10.0,9.0,9.0,65,0.71 +60607,,,,,,,,0, +55840,97.0,10.0,10.0,10.0,10.0,9.0,9.0,7,0.08 +7352,98.0,10.0,10.0,10.0,10.0,9.0,10.0,242,2.63 +15564,,,,,,,,0, +34507,97.0,10.0,10.0,10.0,10.0,9.0,9.0,31,0.35 +54844,94.0,10.0,9.0,10.0,10.0,9.0,9.0,74,1.05 +35473,89.0,9.0,9.0,10.0,10.0,9.0,9.0,91,1.33 +65830,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.06 +10638,92.0,9.0,9.0,9.0,10.0,9.0,9.0,26,0.33 +72379,92.0,9.0,9.0,10.0,10.0,10.0,9.0,62,0.91 +44042,97.0,10.0,10.0,10.0,10.0,9.0,10.0,95,1.04 +22762,84.0,9.0,8.0,9.0,9.0,9.0,9.0,42,1.31 +18202,95.0,10.0,10.0,10.0,10.0,9.0,10.0,100,1.15 +11822,95.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.1 +46547,91.0,10.0,9.0,10.0,10.0,8.0,9.0,73,0.79 +39023,90.0,10.0,7.0,9.0,9.0,8.0,10.0,3,0.03 +39325,90.0,9.0,9.0,9.0,9.0,9.0,9.0,27,0.3 +8804,98.0,10.0,10.0,10.0,10.0,10.0,10.0,303,3.29 +28001,98.0,10.0,10.0,10.0,10.0,9.0,10.0,26,0.35 +36913,,,,,,,,0, +39975,95.0,10.0,9.0,10.0,10.0,9.0,10.0,144,1.61 +11802,97.0,10.0,9.0,10.0,10.0,10.0,10.0,65,0.71 +74388,96.0,10.0,10.0,10.0,10.0,10.0,9.0,426,4.65 +32943,98.0,10.0,10.0,10.0,10.0,10.0,10.0,371,4.1 +871,92.0,10.0,9.0,10.0,10.0,9.0,9.0,347,3.83 +11537,80.0,9.0,9.0,10.0,9.0,9.0,9.0,7,0.2 +58486,60.0,9.0,8.0,8.0,8.0,9.0,7.0,3,0.03 +47087,,,,,,,,0, +11014,98.0,10.0,10.0,10.0,10.0,9.0,10.0,16,0.24 +33417,96.0,10.0,10.0,9.0,10.0,9.0,9.0,46,0.55 +14259,91.0,9.0,9.0,10.0,10.0,10.0,9.0,202,2.2 +63191,100.0,10.0,10.0,10.0,10.0,10.0,9.0,10,0.21 +57247,89.0,9.0,9.0,10.0,10.0,10.0,9.0,28,0.73 +73799,96.0,10.0,9.0,10.0,10.0,9.0,10.0,5,1.47 +59101,98.0,10.0,10.0,10.0,10.0,10.0,10.0,186,2.06 +27878,,,,,,,,0, +4755,100.0,10.0,10.0,10.0,10.0,9.0,9.0,5,0.69 +5792,95.0,10.0,10.0,10.0,10.0,9.0,10.0,94,1.06 +18818,98.0,10.0,10.0,10.0,10.0,10.0,10.0,201,2.23 +38941,94.0,10.0,10.0,10.0,10.0,10.0,9.0,42,0.57 +28718,91.0,9.0,9.0,10.0,10.0,10.0,9.0,49,0.86 +41603,93.0,9.0,10.0,10.0,10.0,9.0,9.0,29,0.33 +34374,99.0,10.0,10.0,10.0,10.0,10.0,9.0,71,0.79 +50365,93.0,9.0,9.0,10.0,10.0,9.0,8.0,3,0.18 +39519,94.0,9.0,9.0,10.0,10.0,10.0,9.0,16,0.33 +53733,92.0,10.0,10.0,9.0,9.0,9.0,9.0,38,0.44 +258,95.0,9.0,9.0,10.0,10.0,9.0,10.0,87,0.97 +5637,87.0,9.0,9.0,9.0,9.0,9.0,9.0,25,0.34 +35038,88.0,9.0,8.0,9.0,9.0,7.0,8.0,8,0.15 +23951,97.0,10.0,10.0,10.0,10.0,9.0,10.0,34,0.93 +66246,96.0,10.0,9.0,10.0,10.0,9.0,9.0,6,0.07 +75783,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +50239,96.0,10.0,9.0,10.0,10.0,9.0,10.0,141,1.59 +2990,95.0,9.0,9.0,10.0,10.0,10.0,9.0,25,0.28 +64982,97.0,10.0,9.0,10.0,10.0,9.0,9.0,168,2.11 +20340,94.0,9.0,10.0,10.0,10.0,10.0,9.0,134,1.49 +7653,94.0,10.0,10.0,10.0,10.0,9.0,9.0,70,0.8 +12529,93.0,10.0,9.0,9.0,10.0,8.0,9.0,69,0.77 +8358,95.0,10.0,9.0,10.0,10.0,9.0,9.0,135,1.52 +67969,92.0,9.0,9.0,10.0,10.0,9.0,9.0,37,0.41 +24026,89.0,10.0,10.0,8.0,8.0,10.0,8.0,1,0.02 +69229,93.0,10.0,9.0,10.0,10.0,10.0,9.0,134,1.54 +23176,90.0,8.0,7.0,10.0,10.0,10.0,9.0,3,2.25 +51740,97.0,10.0,10.0,10.0,10.0,10.0,10.0,135,1.52 +54779,100.0,9.0,9.0,10.0,10.0,9.0,10.0,4,0.04 +66176,99.0,10.0,10.0,10.0,10.0,10.0,10.0,125,1.4 +74286,95.0,10.0,10.0,10.0,10.0,9.0,9.0,29,0.35 +12148,98.0,10.0,10.0,10.0,10.0,10.0,10.0,95,1.5 +63641,95.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.2 +39538,,,,,,,,0, +3295,93.0,10.0,10.0,9.0,10.0,10.0,9.0,140,1.59 +13127,83.0,8.0,8.0,8.0,9.0,9.0,8.0,47,0.54 +40515,97.0,10.0,9.0,9.0,10.0,10.0,9.0,64,0.73 +47990,83.0,8.0,8.0,10.0,10.0,9.0,8.0,143,1.96 +45692,91.0,9.0,10.0,10.0,10.0,8.0,9.0,15,0.28 +65673,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.4 +15000,97.0,10.0,10.0,10.0,10.0,9.0,10.0,141,1.6 +48747,97.0,10.0,9.0,10.0,10.0,9.0,10.0,21,0.3 +43966,85.0,9.0,9.0,10.0,10.0,9.0,9.0,4,0.13 +20081,96.0,10.0,10.0,10.0,10.0,10.0,10.0,141,1.72 +328,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.08 +47138,86.0,8.0,9.0,9.0,10.0,9.0,9.0,22,0.33 +45446,93.0,9.0,9.0,9.0,9.0,9.0,9.0,236,2.66 +71902,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.26 +18155,99.0,10.0,10.0,10.0,10.0,10.0,10.0,134,1.51 +57609,97.0,10.0,10.0,10.0,10.0,9.0,10.0,18,0.34 +58876,70.0,9.0,9.0,10.0,10.0,9.0,7.0,5,0.06 +24706,100.0,10.0,10.0,6.0,10.0,8.0,10.0,1,0.01 +70604,96.0,10.0,9.0,9.0,10.0,9.0,9.0,18,0.21 +26742,94.0,9.0,10.0,10.0,10.0,9.0,9.0,18,0.94 +26471,,,,,,,,0, +5108,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.01 +49800,95.0,10.0,10.0,10.0,10.0,10.0,10.0,142,1.61 +22234,73.0,7.0,9.0,9.0,9.0,9.0,8.0,7,0.1 +13131,95.0,10.0,9.0,10.0,10.0,10.0,9.0,82,0.97 +2665,91.0,10.0,8.0,9.0,10.0,8.0,9.0,20,0.23 +21879,95.0,10.0,9.0,10.0,10.0,9.0,9.0,173,2.16 +76521,90.0,9.0,9.0,9.0,10.0,8.0,9.0,87,1.16 +50684,86.0,9.0,9.0,10.0,9.0,9.0,9.0,12,0.14 +45010,85.0,9.0,8.0,9.0,9.0,10.0,9.0,244,2.75 +16340,94.0,9.0,9.0,10.0,10.0,10.0,9.0,42,0.49 +27079,89.0,9.0,9.0,10.0,10.0,8.0,9.0,46,0.52 +46579,97.0,10.0,10.0,10.0,10.0,10.0,10.0,52,0.6 +38152,94.0,9.0,9.0,10.0,10.0,9.0,9.0,22,0.25 +41203,83.0,8.0,8.0,8.0,8.0,9.0,9.0,20,0.29 +17610,94.0,9.0,10.0,10.0,10.0,9.0,9.0,63,0.73 +7917,,,,,,,,0, +22280,100.0,8.0,10.0,10.0,10.0,10.0,9.0,9,0.1 +65964,,,,,,,,0, +65980,95.0,10.0,10.0,10.0,10.0,9.0,10.0,179,2.09 +68535,90.0,9.0,10.0,10.0,10.0,10.0,9.0,12,0.31 +14024,89.0,9.0,8.0,10.0,9.0,10.0,9.0,365,4.67 +6684,87.0,9.0,8.0,9.0,10.0,9.0,9.0,30,0.35 +70441,97.0,10.0,10.0,10.0,10.0,9.0,10.0,148,1.7 +17455,,,,,,,,0, +10850,98.0,10.0,10.0,9.0,10.0,10.0,10.0,8,0.09 +50779,96.0,10.0,10.0,10.0,10.0,9.0,10.0,123,1.4 +31569,88.0,9.0,9.0,9.0,9.0,9.0,9.0,193,2.27 +58669,88.0,9.0,9.0,9.0,9.0,9.0,9.0,123,1.41 +73070,98.0,10.0,10.0,10.0,10.0,9.0,10.0,65,0.75 +9147,,,,,,,,0, +76975,94.0,10.0,10.0,10.0,10.0,10.0,10.0,49,0.68 +70032,88.0,9.0,9.0,9.0,9.0,8.0,8.0,22,0.43 +25631,97.0,10.0,10.0,10.0,10.0,10.0,10.0,253,2.9 +17713,,,,,,,,0, +61591,90.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.05 +73895,98.0,10.0,10.0,10.0,10.0,9.0,10.0,57,0.65 +13839,100.0,10.0,10.0,10.0,8.0,10.0,10.0,2,0.02 +71557,97.0,10.0,9.0,10.0,10.0,9.0,9.0,33,0.41 +47092,95.0,10.0,10.0,10.0,10.0,9.0,9.0,275,3.19 +26087,99.0,10.0,9.0,10.0,10.0,10.0,10.0,33,0.38 +12881,96.0,10.0,10.0,10.0,10.0,9.0,10.0,220,2.55 +36890,95.0,9.0,9.0,10.0,10.0,10.0,9.0,207,2.37 +10191,96.0,10.0,10.0,10.0,10.0,10.0,10.0,146,1.67 +32376,92.0,10.0,10.0,9.0,9.0,10.0,9.0,431,5.0 +35048,93.0,10.0,9.0,9.0,10.0,10.0,9.0,46,0.53 +77029,94.0,10.0,9.0,10.0,10.0,10.0,9.0,108,1.34 +22433,88.0,9.0,9.0,10.0,10.0,9.0,9.0,17,0.2 +14272,97.0,10.0,10.0,10.0,10.0,10.0,9.0,176,2.03 +40191,94.0,9.0,10.0,10.0,10.0,9.0,9.0,91,1.05 +10602,92.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.07 +6062,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.01 +9155,94.0,9.0,9.0,10.0,10.0,9.0,9.0,107,1.33 +57334,96.0,10.0,9.0,10.0,10.0,10.0,10.0,28,0.33 +38914,,,,,,,,0, +35680,96.0,10.0,10.0,10.0,10.0,9.0,10.0,53,0.61 +2266,98.0,10.0,10.0,10.0,10.0,9.0,10.0,21,0.25 +35341,96.0,9.0,10.0,10.0,10.0,9.0,10.0,11,0.17 +14979,94.0,10.0,9.0,10.0,10.0,10.0,10.0,123,1.48 +7784,90.0,9.0,9.0,9.0,10.0,9.0,9.0,244,3.47 +50332,94.0,9.0,9.0,10.0,10.0,9.0,10.0,130,1.74 +62819,,,,,,,,0, +24650,91.0,9.0,9.0,9.0,9.0,8.0,9.0,29,0.35 +45910,80.0,10.0,8.0,4.0,10.0,10.0,8.0,2,0.04 +70003,86.0,9.0,8.0,10.0,10.0,8.0,9.0,14,0.17 +42010,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.03 +40761,82.0,9.0,8.0,9.0,10.0,9.0,8.0,134,1.56 +21579,88.0,9.0,9.0,9.0,9.0,9.0,9.0,77,1.15 +33806,88.0,9.0,9.0,9.0,9.0,10.0,9.0,53,1.18 +51621,85.0,9.0,9.0,9.0,9.0,9.0,8.0,87,2.84 +70388,88.0,9.0,8.0,9.0,9.0,9.0,8.0,9,0.14 +46814,89.0,9.0,9.0,10.0,10.0,9.0,9.0,134,2.64 +62092,,,,,,,,0, +40270,93.0,10.0,9.0,10.0,10.0,9.0,9.0,40,0.48 +5332,,,,,,,,0, +8691,89.0,9.0,9.0,9.0,9.0,9.0,9.0,38,0.47 +30384,97.0,10.0,10.0,10.0,10.0,9.0,9.0,18,0.64 +33196,94.0,10.0,10.0,10.0,10.0,9.0,10.0,237,2.75 +66171,90.0,9.0,8.0,9.0,9.0,9.0,8.0,5,0.12 +53116,,,,,,,,0, +65916,95.0,9.0,10.0,10.0,10.0,9.0,9.0,42,1.02 +26728,97.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.16 +51823,99.0,10.0,10.0,10.0,10.0,9.0,10.0,41,0.5 +29717,,,,,,,,0, +76403,96.0,10.0,10.0,10.0,10.0,9.0,10.0,11,0.13 +53656,88.0,9.0,8.0,10.0,9.0,9.0,9.0,9,0.19 +50190,,,,,,,,0, +15804,89.0,9.0,9.0,9.0,9.0,10.0,9.0,190,2.21 +18767,95.0,10.0,10.0,10.0,10.0,10.0,9.0,125,1.89 +49707,93.0,10.0,9.0,10.0,10.0,10.0,9.0,235,2.73 +48391,88.0,9.0,9.0,9.0,9.0,9.0,9.0,120,1.45 +53724,86.0,9.0,8.0,9.0,9.0,8.0,8.0,19,0.22 +70709,97.0,10.0,10.0,10.0,9.0,9.0,10.0,19,0.35 +37568,100.0,10.0,10.0,10.0,10.0,9.0,9.0,2,0.07 +30716,90.0,9.0,9.0,10.0,9.0,8.0,9.0,14,0.25 +69779,91.0,9.0,9.0,9.0,9.0,8.0,9.0,11,0.27 +38097,91.0,9.0,9.0,10.0,9.0,8.0,9.0,8,0.11 +50543,80.0,9.0,8.0,10.0,10.0,9.0,9.0,4,0.29 +28073,50.0,6.0,5.0,6.0,6.0,8.0,7.0,2,0.37 +66840,95.0,10.0,10.0,10.0,9.0,9.0,9.0,8,0.13 +65376,98.0,9.0,9.0,10.0,10.0,9.0,10.0,11,0.24 +62332,92.0,10.0,10.0,10.0,10.0,9.0,10.0,12,0.14 +56396,98.0,10.0,10.0,10.0,10.0,10.0,10.0,471,5.49 +30465,87.0,8.0,7.0,8.0,9.0,9.0,9.0,12,0.14 +55579,93.0,9.0,10.0,9.0,10.0,10.0,9.0,390,4.58 +43897,96.0,10.0,10.0,9.0,10.0,10.0,9.0,77,1.0 +22950,89.0,9.0,8.0,9.0,9.0,9.0,8.0,19,0.23 +28853,97.0,10.0,10.0,10.0,10.0,9.0,10.0,43,0.5 +17836,96.0,10.0,10.0,10.0,10.0,9.0,10.0,81,1.34 +62664,,,,,,,,0, +47452,90.0,9.0,10.0,10.0,10.0,10.0,9.0,27,0.41 +32449,83.0,8.0,9.0,9.0,9.0,8.0,8.0,7,0.11 +65545,90.0,9.0,9.0,9.0,10.0,9.0,9.0,104,2.3 +57492,97.0,10.0,9.0,10.0,10.0,9.0,10.0,8,0.1 +46646,86.0,9.0,9.0,10.0,10.0,10.0,9.0,27,0.76 +68424,95.0,10.0,10.0,10.0,10.0,10.0,9.0,39,0.46 +63110,93.0,9.0,9.0,10.0,10.0,9.0,9.0,115,1.37 +14058,93.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.27 +68950,94.0,9.0,10.0,10.0,10.0,9.0,9.0,19,0.24 +66676,90.0,9.0,9.0,9.0,10.0,9.0,9.0,39,1.0 +18171,86.0,9.0,8.0,9.0,9.0,9.0,8.0,12,0.15 +27700,88.0,9.0,9.0,9.0,9.0,9.0,9.0,51,0.6 +21690,100.0,10.0,10.0,10.0,10.0,9.0,10.0,17,0.21 +44433,85.0,9.0,9.0,9.0,9.0,9.0,9.0,54,0.67 +29405,,,,,,,,0, +33270,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.08 +42319,93.0,10.0,10.0,9.0,10.0,10.0,9.0,67,1.75 +12232,,,,,,,,0, +15523,91.0,9.0,9.0,9.0,9.0,10.0,9.0,269,3.22 +55011,93.0,10.0,9.0,9.0,10.0,9.0,9.0,15,0.27 +44970,97.0,10.0,10.0,10.0,10.0,9.0,10.0,67,0.82 +4654,99.0,10.0,10.0,10.0,10.0,10.0,10.0,74,0.91 +73584,,,,,,,,0, +111,,,,,,,,0, +44858,97.0,9.0,9.0,10.0,10.0,10.0,9.0,17,0.26 +62024,93.0,9.0,9.0,9.0,10.0,9.0,9.0,4,0.24 +47659,83.0,8.0,8.0,9.0,8.0,9.0,8.0,82,1.11 +54409,98.0,10.0,9.0,10.0,10.0,10.0,10.0,26,0.32 +38755,98.0,10.0,10.0,10.0,10.0,10.0,9.0,8,0.16 +56798,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.01 +62135,95.0,10.0,9.0,10.0,10.0,10.0,10.0,37,0.75 +1152,97.0,10.0,10.0,10.0,10.0,9.0,10.0,63,0.84 +9649,95.0,10.0,9.0,10.0,10.0,10.0,9.0,18,0.21 +27275,,,,,,,,0, +5269,84.0,8.0,8.0,9.0,9.0,9.0,8.0,14,0.17 +9132,97.0,10.0,10.0,10.0,10.0,9.0,10.0,36,0.43 +49308,95.0,10.0,10.0,10.0,10.0,9.0,10.0,33,0.4 +46155,92.0,9.0,9.0,10.0,9.0,10.0,10.0,6,0.36 +45995,,,,,,,,0, +34357,,,,,,,,0, +3379,100.0,8.0,10.0,10.0,10.0,10.0,8.0,1,0.03 +71445,,,,,,,,0, +65948,88.0,9.0,8.0,9.0,9.0,10.0,9.0,100,1.18 +53347,91.0,9.0,9.0,10.0,10.0,10.0,9.0,17,0.28 +25610,,,,,,,,0, +65506,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.02 +70486,95.0,10.0,10.0,10.0,10.0,9.0,9.0,41,0.51 +33940,96.0,10.0,10.0,10.0,10.0,9.0,9.0,49,0.96 +54092,,,,,,,,0, +458,85.0,8.0,9.0,9.0,9.0,8.0,9.0,100,1.21 +25633,90.0,9.0,9.0,9.0,10.0,9.0,9.0,202,2.46 +24831,85.0,9.0,8.0,9.0,9.0,9.0,9.0,62,0.84 +56327,97.0,10.0,10.0,10.0,10.0,10.0,10.0,39,0.51 +49181,,,,,,,,0, +44012,,,,,,,,0, +9219,,,,,,,,0, +55901,93.0,10.0,9.0,10.0,10.0,10.0,10.0,133,1.65 +69671,84.0,9.0,8.0,10.0,9.0,8.0,9.0,95,1.18 +26818,,,,,,,,0, +18422,97.0,10.0,9.0,10.0,10.0,9.0,9.0,53,0.64 +36272,95.0,10.0,10.0,10.0,10.0,9.0,10.0,34,0.63 +48101,,,,,,,,0, +27037,,,,,,,,0, +12783,89.0,9.0,9.0,9.0,9.0,9.0,9.0,246,2.94 +30670,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.03 +35984,100.0,10.0,9.0,9.0,10.0,10.0,9.0,4,0.06 +47256,76.0,8.0,8.0,9.0,9.0,9.0,8.0,56,0.68 +15450,88.0,8.0,9.0,9.0,8.0,7.0,9.0,10,0.14 +28552,85.0,9.0,9.0,9.0,9.0,8.0,9.0,15,0.22 +54377,96.0,10.0,10.0,10.0,10.0,10.0,9.0,262,3.23 +46327,,,,,,,,0, +61817,95.0,9.0,9.0,10.0,10.0,9.0,9.0,106,1.32 +22361,,,,,,,,0, +12123,,,,,,,,0, +31738,80.0,8.0,8.0,8.0,6.0,6.0,7.0,3,0.04 +19299,91.0,9.0,9.0,9.0,10.0,9.0,9.0,210,2.52 +65726,94.0,9.0,9.0,10.0,10.0,8.0,9.0,8,0.14 +53927,98.0,10.0,10.0,9.0,10.0,9.0,9.0,17,0.21 +76645,96.0,10.0,10.0,10.0,10.0,9.0,10.0,74,0.88 +21207,96.0,10.0,10.0,10.0,10.0,10.0,9.0,49,0.62 +50385,96.0,10.0,9.0,10.0,10.0,9.0,9.0,15,0.23 +30954,70.0,7.0,6.0,9.0,9.0,9.0,7.0,20,0.28 +12017,96.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.23 +60690,,,,,,,,0, +66091,98.0,10.0,10.0,10.0,10.0,10.0,10.0,20,0.26 +73554,97.0,10.0,10.0,10.0,10.0,10.0,10.0,148,1.86 +20415,99.0,10.0,10.0,10.0,10.0,9.0,10.0,195,2.64 +39790,98.0,9.0,9.0,10.0,10.0,10.0,9.0,9,0.11 +70815,84.0,8.0,8.0,9.0,8.0,9.0,9.0,72,0.89 +6236,82.0,9.0,9.0,9.0,8.0,9.0,9.0,18,0.25 +37977,85.0,9.0,7.0,9.0,10.0,9.0,9.0,90,1.06 +68686,96.0,9.0,10.0,10.0,10.0,8.0,10.0,48,0.84 +31148,99.0,10.0,10.0,10.0,10.0,10.0,10.0,74,0.95 +64665,90.0,9.0,10.0,9.0,9.0,9.0,9.0,25,0.34 +76130,92.0,9.0,9.0,10.0,10.0,9.0,9.0,244,2.95 +40227,98.0,9.0,10.0,10.0,10.0,9.0,9.0,10,0.12 +63063,93.0,10.0,9.0,10.0,10.0,9.0,9.0,220,2.72 +50173,92.0,9.0,9.0,9.0,10.0,9.0,9.0,37,0.5 +56351,96.0,10.0,9.0,10.0,10.0,8.0,9.0,6,0.1 +62620,94.0,9.0,9.0,10.0,10.0,10.0,9.0,16,0.23 +9902,91.0,9.0,9.0,10.0,10.0,9.0,9.0,61,0.79 +57908,95.0,10.0,10.0,10.0,10.0,9.0,9.0,343,4.26 +65858,92.0,9.0,9.0,10.0,10.0,10.0,9.0,30,0.36 +22623,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.05 +17058,,,,,,,,0, +14882,96.0,10.0,10.0,10.0,10.0,9.0,10.0,84,1.01 +3381,98.0,10.0,10.0,10.0,10.0,10.0,9.0,25,0.3 +12312,,,,,,,,0, +31501,95.0,10.0,9.0,10.0,10.0,10.0,9.0,245,3.01 +28300,95.0,10.0,10.0,10.0,10.0,9.0,9.0,43,0.56 +24279,93.0,10.0,9.0,10.0,10.0,10.0,9.0,9,0.14 +26457,,,,,,,,0, +1756,71.0,7.0,8.0,9.0,8.0,9.0,8.0,9,0.14 +40828,,,,,,,,0, +61273,88.0,9.0,9.0,9.0,9.0,9.0,9.0,120,1.51 +67331,93.0,9.0,9.0,10.0,10.0,8.0,9.0,21,0.3 +56906,96.0,10.0,10.0,10.0,10.0,10.0,10.0,62,0.77 +69882,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +7870,,,,,,,,0, +33983,97.0,10.0,10.0,10.0,10.0,10.0,9.0,7,0.11 +46698,98.0,10.0,10.0,10.0,10.0,9.0,10.0,150,1.89 +10709,92.0,9.0,8.0,10.0,10.0,10.0,9.0,80,1.18 +38657,,,,,,,,0, +62223,86.0,9.0,8.0,10.0,9.0,9.0,9.0,160,2.11 +62211,,,,,,,,0, +46418,93.0,10.0,9.0,10.0,9.0,9.0,9.0,6,0.11 +69763,97.0,9.0,10.0,10.0,10.0,9.0,9.0,201,2.49 +30934,89.0,9.0,8.0,9.0,9.0,10.0,9.0,185,2.29 +57220,,,,,,,,0, +25046,,,,,,,,0, +19334,94.0,9.0,10.0,10.0,9.0,9.0,9.0,63,0.84 +52805,99.0,10.0,10.0,10.0,10.0,9.0,10.0,110,1.34 +23668,,,,,,,,0, +22527,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.25 +11820,96.0,10.0,9.0,10.0,9.0,10.0,10.0,6,0.09 +51183,,,,,,,,0, +6211,,,,,,,,0, +59051,97.0,10.0,9.0,10.0,10.0,10.0,9.0,157,1.91 +25507,91.0,9.0,10.0,10.0,10.0,9.0,9.0,97,1.48 +16723,98.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.1 +37927,97.0,10.0,10.0,10.0,10.0,9.0,10.0,153,1.86 +43592,89.0,9.0,8.0,10.0,9.0,10.0,9.0,149,1.8 +2565,87.0,9.0,9.0,9.0,9.0,8.0,9.0,385,5.02 +70959,,,,,,,,0, +16309,98.0,10.0,10.0,10.0,10.0,10.0,10.0,44,0.56 +24928,,,,,,,,0, +67534,90.0,9.0,9.0,9.0,10.0,9.0,9.0,293,3.74 +56402,94.0,10.0,9.0,10.0,10.0,9.0,9.0,27,0.37 +14185,80.0,8.0,6.0,10.0,10.0,10.0,7.0,2,0.21 +45807,95.0,10.0,9.0,10.0,10.0,9.0,9.0,21,1.22 +16757,98.0,10.0,10.0,10.0,10.0,9.0,10.0,74,0.92 +65668,99.0,10.0,10.0,10.0,10.0,10.0,10.0,15,1.32 +71211,98.0,10.0,10.0,10.0,10.0,10.0,10.0,266,3.22 +41530,87.0,9.0,9.0,9.0,9.0,9.0,9.0,62,0.78 +29920,83.0,8.0,8.0,9.0,9.0,8.0,8.0,23,0.36 +39546,,,,,,,,0, +21477,100.0,10.0,10.0,9.0,10.0,9.0,9.0,4,0.06 +15228,84.0,9.0,9.0,9.0,9.0,8.0,9.0,23,0.34 +11888,,,,,,,,0, +31317,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.02 +66198,,,,,,,,0, +5546,97.0,10.0,10.0,10.0,10.0,10.0,10.0,38,0.63 +72993,95.0,10.0,10.0,10.0,10.0,9.0,9.0,203,2.48 +24315,97.0,10.0,10.0,10.0,10.0,9.0,10.0,30,0.39 +52671,98.0,10.0,10.0,10.0,10.0,9.0,10.0,43,0.54 +40241,93.0,9.0,9.0,10.0,10.0,9.0,9.0,140,1.77 +28906,90.0,10.0,8.0,10.0,10.0,8.0,10.0,2,0.05 +73711,94.0,10.0,9.0,10.0,10.0,9.0,9.0,132,1.96 +55322,,,,,,,,0, +10934,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.27 +633,,,,,,,,0, +25374,,,,,,,,0, +28004,97.0,10.0,10.0,10.0,10.0,9.0,9.0,32,0.39 +9969,96.0,10.0,10.0,10.0,10.0,10.0,9.0,90,1.32 +55265,96.0,10.0,9.0,10.0,10.0,10.0,10.0,11,0.81 +50834,,,,,,,,0, +60559,100.0,10.0,10.0,10.0,10.0,10.0,10.0,19,0.26 +25548,,,,,,,,0, +6191,99.0,10.0,10.0,10.0,10.0,9.0,10.0,104,1.29 +56899,99.0,10.0,10.0,10.0,10.0,10.0,10.0,62,0.82 +76988,93.0,9.0,9.0,10.0,10.0,10.0,9.0,37,0.89 +20272,98.0,10.0,10.0,10.0,10.0,10.0,9.0,46,0.58 +60445,100.0,8.0,8.0,10.0,10.0,10.0,10.0,1,0.01 +48917,100.0,10.0,9.0,10.0,10.0,9.0,9.0,3,0.06 +74398,93.0,9.0,8.0,10.0,10.0,9.0,10.0,63,0.77 +19395,97.0,10.0,10.0,10.0,10.0,10.0,9.0,17,0.21 +46926,99.0,10.0,10.0,10.0,10.0,10.0,10.0,86,1.11 +20524,96.0,10.0,9.0,10.0,10.0,9.0,9.0,18,0.22 +25889,97.0,10.0,10.0,10.0,10.0,10.0,10.0,56,1.99 +66483,,,,,,,,0, +71387,85.0,9.0,8.0,9.0,9.0,10.0,8.0,193,2.39 +41337,90.0,9.0,9.0,10.0,10.0,9.0,9.0,183,2.3 +16270,96.0,10.0,10.0,10.0,10.0,10.0,10.0,55,0.69 +6059,87.0,9.0,8.0,9.0,10.0,8.0,9.0,42,0.53 +50007,91.0,9.0,9.0,9.0,9.0,10.0,9.0,96,1.26 +63296,80.0,10.0,9.0,9.0,10.0,9.0,9.0,6,0.08 +47236,,,,,,,,0, +1245,85.0,9.0,8.0,9.0,9.0,9.0,9.0,34,0.5 +39939,99.0,10.0,9.0,10.0,10.0,9.0,10.0,14,0.44 +12307,94.0,10.0,10.0,10.0,10.0,9.0,9.0,72,0.89 +38892,,,,,,,,0, +24457,89.0,10.0,8.0,10.0,10.0,8.0,9.0,7,0.12 +70885,96.0,10.0,10.0,10.0,10.0,9.0,9.0,12,0.16 +49895,,,,,,,,0, +27694,96.0,10.0,9.0,10.0,10.0,9.0,9.0,24,0.45 +15821,94.0,9.0,10.0,10.0,10.0,9.0,9.0,84,1.04 +43929,95.0,10.0,10.0,10.0,10.0,9.0,10.0,231,2.87 +36856,96.0,10.0,10.0,10.0,10.0,9.0,9.0,21,0.26 +21340,98.0,10.0,10.0,10.0,10.0,10.0,10.0,91,1.11 +16400,96.0,10.0,9.0,10.0,10.0,10.0,9.0,113,3.3 +45164,97.0,9.0,10.0,10.0,10.0,10.0,9.0,18,0.24 +36312,93.0,9.0,9.0,10.0,10.0,10.0,9.0,54,0.71 +38033,90.0,9.0,9.0,9.0,10.0,10.0,9.0,97,1.19 +53843,97.0,10.0,10.0,10.0,10.0,10.0,10.0,82,1.07 +55707,93.0,10.0,10.0,10.0,10.0,9.0,9.0,93,1.18 +24917,95.0,10.0,9.0,10.0,10.0,10.0,9.0,132,1.64 +71031,98.0,10.0,10.0,10.0,10.0,10.0,10.0,461,5.65 +63014,89.0,9.0,10.0,10.0,10.0,8.0,9.0,57,0.78 +23623,99.0,10.0,10.0,10.0,10.0,10.0,10.0,50,0.73 +66971,,,,,,,,0, +26825,,,,,,,,0, +68694,,,,,,,,0, +52109,,,,,,,,0, +26743,88.0,9.0,9.0,9.0,9.0,9.0,9.0,82,1.1 +48095,91.0,10.0,9.0,10.0,10.0,10.0,9.0,14,0.44 +30759,88.0,9.0,8.0,10.0,10.0,9.0,9.0,52,0.65 +47686,,,,,,,,0, +69192,98.0,10.0,10.0,10.0,10.0,10.0,10.0,232,3.0 +36850,88.0,9.0,8.0,10.0,9.0,9.0,9.0,91,1.3 +59209,97.0,10.0,9.0,10.0,10.0,9.0,10.0,9,0.11 +24757,100.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.23 +28760,97.0,10.0,10.0,10.0,10.0,10.0,9.0,86,1.07 +38740,97.0,10.0,10.0,10.0,10.0,9.0,10.0,22,0.33 +5904,97.0,10.0,10.0,10.0,10.0,10.0,10.0,212,2.63 +24070,67.0,6.0,4.0,8.0,8.0,8.0,6.0,1,0.01 +42143,87.0,8.0,9.0,9.0,9.0,9.0,8.0,96,1.19 +56838,93.0,9.0,9.0,10.0,10.0,9.0,9.0,120,1.47 +66021,92.0,9.0,10.0,9.0,10.0,8.0,9.0,90,1.37 +65829,98.0,10.0,9.0,10.0,10.0,10.0,10.0,34,0.42 +26566,,,,,,,,0, +3021,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.08 +53300,92.0,9.0,9.0,10.0,10.0,9.0,9.0,10,0.15 +52524,97.0,10.0,10.0,9.0,10.0,10.0,10.0,13,0.67 +36395,87.0,9.0,8.0,9.0,9.0,9.0,9.0,442,5.45 +31370,100.0,10.0,10.0,10.0,10.0,10.0,10.0,47,0.61 +29055,98.0,10.0,10.0,10.0,10.0,10.0,9.0,53,0.66 +46695,97.0,10.0,10.0,10.0,10.0,9.0,10.0,123,1.57 +22308,98.0,10.0,10.0,10.0,10.0,10.0,10.0,63,0.79 +14143,,,,,,,,0, +60535,,,,,,,,0, +48387,97.0,10.0,10.0,10.0,10.0,9.0,9.0,38,0.51 +31446,96.0,10.0,10.0,10.0,10.0,9.0,9.0,11,0.35 +63186,98.0,10.0,10.0,10.0,10.0,10.0,9.0,9,0.66 +64248,94.0,10.0,10.0,10.0,10.0,9.0,9.0,97,1.4 +30247,97.0,10.0,10.0,10.0,10.0,9.0,9.0,224,2.77 +2765,87.0,9.0,8.0,10.0,10.0,10.0,10.0,7,0.09 +52424,98.0,10.0,9.0,9.0,10.0,10.0,9.0,16,0.2 +51979,90.0,9.0,9.0,9.0,9.0,9.0,9.0,98,1.22 +58964,97.0,9.0,8.0,10.0,9.0,9.0,9.0,6,0.07 +56730,98.0,10.0,10.0,10.0,10.0,10.0,10.0,81,1.01 +48043,93.0,10.0,9.0,10.0,10.0,10.0,9.0,265,3.26 +31592,94.0,10.0,10.0,10.0,10.0,9.0,9.0,59,0.72 +44063,93.0,10.0,9.0,10.0,10.0,9.0,9.0,246,3.03 +26394,92.0,9.0,9.0,10.0,10.0,9.0,9.0,166,2.13 +52244,93.0,9.0,10.0,10.0,10.0,9.0,9.0,414,5.07 +52918,96.0,10.0,10.0,9.0,10.0,9.0,10.0,83,1.02 +52130,92.0,9.0,9.0,10.0,10.0,10.0,10.0,18,0.22 +23521,94.0,9.0,9.0,9.0,10.0,9.0,9.0,44,0.54 +9084,98.0,10.0,10.0,10.0,10.0,10.0,10.0,58,0.76 +75277,93.0,9.0,8.0,10.0,10.0,9.0,9.0,48,0.62 +34283,87.0,9.0,9.0,9.0,9.0,9.0,9.0,26,0.41 +67521,,,,,,,,0, +39254,98.0,10.0,10.0,10.0,10.0,10.0,10.0,79,0.97 +39086,93.0,8.0,9.0,10.0,9.0,9.0,8.0,4,0.06 +32802,100.0,9.0,10.0,10.0,10.0,9.0,9.0,5,0.07 +39736,82.0,8.0,9.0,9.0,10.0,9.0,9.0,12,0.17 +75904,100.0,10.0,10.0,10.0,10.0,9.0,10.0,47,0.58 +74463,99.0,10.0,10.0,10.0,10.0,10.0,10.0,127,1.56 +14119,90.0,10.0,8.0,10.0,10.0,10.0,8.0,2,0.02 +25762,97.0,10.0,8.0,10.0,10.0,10.0,9.0,102,1.25 +27251,,,,,,,,0, +63583,91.0,10.0,9.0,10.0,9.0,9.0,9.0,62,0.76 +58248,92.0,10.0,9.0,10.0,10.0,9.0,9.0,47,0.58 +3928,93.0,9.0,9.0,10.0,10.0,9.0,9.0,133,1.63 +7026,60.0,10.0,10.0,10.0,4.0,6.0,2.0,1,0.02 +23508,80.0,8.0,6.0,10.0,10.0,8.0,8.0,1,0.2 +45741,100.0,,,,,,,1,0.01 +31791,95.0,10.0,10.0,10.0,10.0,10.0,9.0,122,1.54 +46916,95.0,10.0,10.0,10.0,10.0,10.0,10.0,127,1.56 +72178,94.0,10.0,9.0,10.0,10.0,9.0,10.0,18,0.33 +60913,95.0,9.0,10.0,10.0,10.0,10.0,9.0,249,3.38 +13595,95.0,10.0,10.0,10.0,10.0,9.0,9.0,60,0.78 +41926,89.0,9.0,9.0,9.0,10.0,10.0,9.0,16,0.21 +34820,98.0,10.0,10.0,10.0,10.0,9.0,10.0,175,2.18 +32176,93.0,10.0,9.0,10.0,9.0,9.0,9.0,6,0.08 +32925,,,,,,,,0, +29149,91.0,9.0,8.0,10.0,10.0,9.0,9.0,65,0.8 +33309,96.0,9.0,9.0,10.0,10.0,9.0,10.0,23,0.28 +61718,95.0,10.0,9.0,10.0,10.0,10.0,9.0,12,0.2 +31707,,,,,,,,0, +22163,98.0,10.0,10.0,10.0,10.0,9.0,10.0,138,1.69 +45061,96.0,10.0,10.0,10.0,10.0,10.0,10.0,440,5.39 +9738,95.0,10.0,9.0,10.0,10.0,10.0,9.0,29,0.47 +66316,96.0,10.0,10.0,10.0,10.0,10.0,9.0,24,0.38 +59108,,,,,,,,0, +19045,97.0,10.0,10.0,10.0,10.0,10.0,10.0,48,0.59 +40583,96.0,10.0,10.0,10.0,10.0,9.0,10.0,56,0.69 +29057,99.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.2 +62775,89.0,9.0,8.0,10.0,10.0,9.0,9.0,65,0.8 +65793,95.0,9.0,10.0,10.0,10.0,10.0,10.0,4,0.1 +38403,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.48 +18434,,,,,,,,0, +25137,90.0,9.0,8.0,10.0,10.0,9.0,9.0,116,1.42 +13529,94.0,9.0,8.0,10.0,10.0,9.0,9.0,24,0.3 +35102,91.0,9.0,9.0,9.0,9.0,9.0,10.0,7,0.09 +38752,90.0,9.0,9.0,10.0,10.0,10.0,9.0,300,3.85 +3883,97.0,10.0,9.0,10.0,10.0,9.0,9.0,15,0.19 +61537,,,,,,,,0, +11407,92.0,9.0,9.0,10.0,10.0,10.0,9.0,100,1.98 +19720,,,,,,,,0, +69488,88.0,10.0,9.0,10.0,9.0,9.0,9.0,18,0.23 +71269,96.0,10.0,10.0,10.0,10.0,9.0,10.0,65,2.47 +50044,,,,,,,,0, +17433,94.0,9.0,9.0,10.0,10.0,9.0,9.0,44,0.54 +43109,60.0,6.0,2.0,10.0,10.0,6.0,10.0,1,0.18 +10369,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,4.7 +33026,95.0,10.0,10.0,10.0,10.0,9.0,9.0,22,0.3 +27379,96.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.3 +18407,96.0,10.0,10.0,10.0,10.0,9.0,10.0,114,1.41 +8433,97.0,9.0,9.0,10.0,10.0,9.0,9.0,27,0.34 +5158,92.0,9.0,10.0,10.0,10.0,9.0,9.0,45,0.65 +32096,,,,,,,,0, +10535,80.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.02 +41284,95.0,10.0,10.0,10.0,10.0,10.0,9.0,83,1.31 +11236,93.0,10.0,10.0,10.0,10.0,9.0,9.0,160,1.96 +16002,95.0,10.0,10.0,10.0,10.0,10.0,10.0,223,2.73 +43566,96.0,10.0,10.0,10.0,10.0,10.0,9.0,256,3.14 +1305,,,,,,,,0, +59532,95.0,10.0,10.0,10.0,10.0,9.0,9.0,122,1.51 +48449,96.0,10.0,10.0,10.0,10.0,9.0,10.0,227,4.46 +74955,100.0,10.0,10.0,9.0,10.0,9.0,10.0,12,0.15 +28342,97.0,10.0,10.0,10.0,10.0,9.0,10.0,246,3.01 +61194,93.0,9.0,10.0,9.0,10.0,9.0,9.0,27,0.33 +11122,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.04 +47647,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.01 +72697,97.0,10.0,10.0,10.0,10.0,9.0,10.0,69,0.85 +59997,96.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.15 +34664,97.0,10.0,9.0,10.0,10.0,9.0,9.0,23,0.29 +72655,96.0,10.0,10.0,10.0,10.0,10.0,10.0,63,0.77 +6845,96.0,10.0,10.0,10.0,10.0,9.0,10.0,127,1.6 +31124,99.0,10.0,10.0,10.0,10.0,9.0,10.0,96,1.19 +4997,,,,,,,,0, +11441,94.0,9.0,9.0,10.0,10.0,10.0,9.0,231,2.83 +35244,93.0,10.0,9.0,10.0,10.0,9.0,9.0,74,0.94 +2390,91.0,10.0,8.0,10.0,10.0,10.0,9.0,34,0.63 +50943,97.0,10.0,9.0,10.0,10.0,10.0,10.0,35,0.43 +12329,95.0,10.0,10.0,10.0,10.0,9.0,10.0,34,0.44 +68765,,,,,,,,0, +13936,98.0,10.0,10.0,10.0,10.0,10.0,10.0,113,1.38 +69661,96.0,10.0,10.0,10.0,10.0,10.0,9.0,109,2.54 +65907,94.0,10.0,10.0,9.0,10.0,9.0,9.0,50,0.61 +65199,94.0,9.0,10.0,10.0,9.0,9.0,10.0,151,1.85 +67870,96.0,10.0,10.0,10.0,10.0,10.0,10.0,54,0.67 +20141,,,,,,,,0, +15340,97.0,10.0,10.0,10.0,10.0,9.0,10.0,280,3.67 +1464,98.0,10.0,10.0,10.0,10.0,10.0,10.0,94,1.17 +43475,96.0,10.0,10.0,10.0,10.0,10.0,9.0,19,0.24 +59952,87.0,9.0,8.0,9.0,10.0,10.0,9.0,33,0.41 +47810,100.0,2.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +4069,97.0,10.0,10.0,10.0,10.0,10.0,10.0,455,5.58 +73246,98.0,10.0,10.0,10.0,10.0,9.0,10.0,10,0.13 +71390,93.0,10.0,8.0,10.0,10.0,10.0,10.0,30,1.54 +30439,100.0,10.0,10.0,10.0,10.0,9.0,10.0,9,0.11 +21708,,,,,,,,0, +17020,90.0,10.0,9.0,10.0,10.0,9.0,9.0,5,0.09 +5480,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.04 +47786,64.0,6.0,5.0,5.0,6.0,8.0,6.0,9,0.12 +16177,98.0,10.0,10.0,10.0,10.0,9.0,10.0,78,1.12 +64474,99.0,10.0,10.0,10.0,10.0,9.0,9.0,19,0.93 +18325,92.0,10.0,9.0,10.0,9.0,9.0,9.0,30,0.44 +37385,93.0,9.0,9.0,10.0,10.0,9.0,9.0,262,3.25 +67047,100.0,10.0,9.0,10.0,10.0,9.0,10.0,5,0.6 +44901,99.0,10.0,10.0,10.0,10.0,10.0,10.0,302,3.7 +25685,95.0,9.0,9.0,10.0,10.0,10.0,10.0,64,0.78 +23839,90.0,9.0,9.0,9.0,9.0,9.0,9.0,32,0.39 +2213,97.0,10.0,10.0,10.0,10.0,10.0,9.0,42,0.52 +24334,87.0,9.0,8.0,10.0,9.0,9.0,9.0,12,0.15 +25749,,,,,,,,0, +60484,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.01 +9432,,,,,,,,0, +57489,,,,,,,,0, +11671,,,,,,,,0, +56941,97.0,10.0,10.0,10.0,10.0,9.0,10.0,130,1.9 +69151,90.0,9.0,6.0,9.0,10.0,10.0,10.0,4,0.07 +50666,96.0,10.0,10.0,10.0,10.0,10.0,10.0,115,1.42 +43828,,,,,,,,0, +76729,96.0,10.0,8.0,10.0,10.0,10.0,9.0,10,0.15 +7460,94.0,9.0,9.0,10.0,10.0,10.0,9.0,145,1.78 +951,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.04 +57389,,,,,,,,0, +61597,96.0,9.0,9.0,9.0,10.0,9.0,9.0,15,0.19 +24639,95.0,10.0,9.0,10.0,10.0,10.0,10.0,10,0.24 +20380,,,,,,,,0, +5917,91.0,9.0,9.0,9.0,8.0,10.0,9.0,7,0.36 +20244,,,,,,,,0, +73903,93.0,9.0,9.0,10.0,10.0,9.0,9.0,16,0.21 +26659,,,,,,,,0, +32081,,,,,,,,0, +17313,92.0,9.0,10.0,10.0,10.0,9.0,9.0,77,0.95 +16350,100.0,10.0,10.0,10.0,10.0,9.0,9.0,13,0.23 +61876,91.0,9.0,9.0,10.0,10.0,10.0,9.0,66,0.84 +68343,94.0,9.0,10.0,9.0,9.0,9.0,9.0,20,0.25 +74635,97.0,10.0,10.0,10.0,10.0,9.0,10.0,149,1.87 +65011,83.0,8.0,8.0,9.0,9.0,9.0,8.0,33,0.46 +30461,91.0,9.0,10.0,10.0,9.0,9.0,9.0,21,0.27 +41486,93.0,10.0,9.0,10.0,10.0,9.0,9.0,23,0.39 +52992,,,,,,,,0, +75029,97.0,10.0,10.0,10.0,10.0,9.0,10.0,156,1.92 +35380,,,,,,,,0, +25356,97.0,10.0,10.0,10.0,10.0,9.0,10.0,26,0.34 +5819,92.0,9.0,9.0,9.0,10.0,10.0,9.0,161,1.99 +70540,,,,,,,,0, +21106,95.0,10.0,9.0,10.0,10.0,9.0,9.0,58,0.74 +43332,90.0,9.0,8.0,9.0,10.0,8.0,9.0,7,0.09 +34862,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.08 +29760,97.0,10.0,10.0,10.0,10.0,10.0,10.0,24,0.31 +23744,,,,,,,,0, +67585,,,,,,,,0, +11557,96.0,10.0,10.0,10.0,10.0,9.0,10.0,75,0.93 +58955,97.0,10.0,10.0,10.0,10.0,9.0,9.0,19,0.35 +77062,100.0,9.0,10.0,9.0,10.0,8.0,9.0,2,0.05 +12152,98.0,10.0,10.0,10.0,10.0,9.0,10.0,38,0.52 +19800,,,,,,,,0, +33496,,,,,,,,0, +45891,96.0,10.0,9.0,10.0,10.0,10.0,9.0,85,1.09 +30363,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.08 +30140,92.0,9.0,9.0,10.0,10.0,10.0,8.0,108,1.35 +39997,90.0,9.0,8.0,10.0,10.0,10.0,8.0,71,0.93 +12974,85.0,8.0,8.0,8.0,8.0,8.0,8.0,42,0.52 +19318,94.0,10.0,9.0,10.0,10.0,9.0,9.0,189,3.29 +10094,,,,,,,,0, +4819,91.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +74837,98.0,10.0,10.0,10.0,10.0,9.0,10.0,97,1.24 +69284,,,,,,,,0, +41901,97.0,10.0,10.0,10.0,10.0,9.0,10.0,100,1.24 +8076,97.0,10.0,9.0,10.0,10.0,10.0,10.0,144,1.78 +46778,97.0,10.0,9.0,10.0,10.0,10.0,10.0,124,1.6 +44458,89.0,9.0,8.0,9.0,9.0,10.0,8.0,62,0.91 +45465,,,,,,,,0, +10811,,,,,,,,0, +24042,,,,,,,,0, +27293,84.0,9.0,7.0,9.0,9.0,8.0,8.0,37,0.49 +678,97.0,10.0,10.0,10.0,9.0,10.0,10.0,13,0.17 +62917,90.0,9.0,10.0,10.0,10.0,10.0,10.0,2,0.45 +6665,96.0,9.0,9.0,10.0,10.0,10.0,9.0,10,0.13 +6460,81.0,8.0,8.0,8.0,9.0,9.0,8.0,65,0.81 +23736,89.0,9.0,9.0,9.0,10.0,10.0,9.0,80,1.04 +23854,97.0,10.0,10.0,10.0,10.0,10.0,10.0,41,2.0 +50095,97.0,10.0,10.0,10.0,10.0,9.0,10.0,27,0.35 +60691,,,,,,,,0, +51146,96.0,10.0,10.0,10.0,10.0,9.0,9.0,83,1.22 +3909,97.0,9.0,9.0,10.0,10.0,9.0,9.0,21,0.26 +74556,,,,,,,,0, +30122,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.05 +54376,,,,,,,,0, +63663,97.0,10.0,10.0,10.0,10.0,10.0,10.0,21,1.24 +47945,83.0,8.0,8.0,9.0,9.0,8.0,8.0,16,0.21 +67817,93.0,9.0,9.0,10.0,10.0,9.0,9.0,22,0.27 +63731,,,,,,,,0, +56300,,,,,,,,0, +58997,97.0,10.0,10.0,10.0,10.0,10.0,10.0,86,1.14 +76165,96.0,10.0,9.0,10.0,10.0,9.0,10.0,37,1.73 +67860,94.0,10.0,10.0,10.0,10.0,9.0,10.0,7,7.0 +66632,96.0,9.0,9.0,9.0,10.0,9.0,10.0,12,0.2 +40738,98.0,10.0,10.0,10.0,10.0,9.0,9.0,25,0.34 +45143,89.0,9.0,9.0,9.0,10.0,9.0,9.0,128,1.63 +70121,,,,,,,,0, +6389,93.0,10.0,10.0,10.0,10.0,8.0,9.0,44,0.55 +43618,93.0,9.0,9.0,10.0,10.0,9.0,9.0,61,0.78 +34030,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.18 +13849,80.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.02 +57364,,,,,,,,0, +37079,98.0,10.0,9.0,10.0,10.0,10.0,9.0,34,0.43 +39980,,,,,,,,0, +63729,100.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.22 +10025,87.0,9.0,8.0,9.0,9.0,8.0,8.0,3,0.05 +12284,97.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.1 +63824,99.0,10.0,10.0,10.0,10.0,10.0,10.0,286,3.55 +40045,,,,,,,,0, +56922,94.0,9.0,9.0,9.0,9.0,9.0,9.0,17,0.24 +49739,93.0,9.0,9.0,10.0,10.0,9.0,9.0,113,1.44 +28814,99.0,10.0,10.0,10.0,10.0,10.0,10.0,102,1.27 +20191,,,,,,,,0, +75959,,,,,,,,0, +28846,91.0,9.0,9.0,9.0,10.0,9.0,9.0,211,4.2 +44067,96.0,10.0,10.0,10.0,10.0,10.0,9.0,236,2.97 +47758,94.0,10.0,10.0,9.0,10.0,9.0,10.0,59,0.75 +60707,,,,,,,,0, +6568,87.0,9.0,9.0,10.0,10.0,9.0,9.0,106,1.36 +3951,95.0,10.0,9.0,10.0,10.0,10.0,10.0,27,3.79 +17918,88.0,9.0,9.0,9.0,10.0,8.0,9.0,154,1.95 +67281,93.0,8.0,8.0,9.0,9.0,9.0,8.0,18,0.23 +3980,,,,,,,,0, +37297,93.0,9.0,9.0,10.0,10.0,9.0,9.0,169,2.14 +11190,86.0,9.0,8.0,9.0,9.0,9.0,9.0,129,1.74 +52519,91.0,9.0,9.0,10.0,9.0,9.0,9.0,74,0.93 +26638,98.0,10.0,10.0,10.0,10.0,9.0,10.0,111,1.38 +38491,96.0,10.0,10.0,10.0,10.0,9.0,9.0,49,0.64 +46614,87.0,9.0,9.0,9.0,9.0,9.0,8.0,3,0.04 +74089,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.01 +22804,,,,,,,,0, +55261,93.0,10.0,10.0,10.0,10.0,9.0,10.0,12,0.15 +40097,96.0,10.0,10.0,9.0,10.0,9.0,9.0,31,0.4 +22614,96.0,10.0,10.0,10.0,10.0,10.0,9.0,47,0.59 +47548,94.0,10.0,10.0,10.0,10.0,9.0,9.0,67,0.86 +65453,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.08 +48954,98.0,10.0,10.0,10.0,10.0,9.0,9.0,8,0.1 +25324,,,,,,,,0, +72132,88.0,9.0,9.0,10.0,10.0,8.0,9.0,42,0.53 +53553,78.0,8.0,7.0,9.0,9.0,9.0,8.0,10,0.15 +19451,,,,,,,,0, +63952,,,,,,,,0, +5805,98.0,10.0,10.0,10.0,10.0,10.0,10.0,118,1.51 +47707,,,,,,,,0, +16187,93.0,9.0,9.0,10.0,10.0,9.0,9.0,133,1.9 +5045,92.0,10.0,9.0,10.0,10.0,9.0,10.0,65,0.81 +20059,99.0,10.0,10.0,10.0,10.0,9.0,10.0,92,1.15 +73769,100.0,10.0,10.0,10.0,10.0,10.0,10.0,52,0.65 +43027,97.0,10.0,10.0,10.0,10.0,10.0,10.0,25,2.03 +72768,97.0,9.0,9.0,10.0,10.0,9.0,9.0,7,0.42 +32811,,,,,,,,0, +26349,97.0,10.0,9.0,10.0,10.0,9.0,10.0,35,0.54 +20892,96.0,10.0,10.0,10.0,10.0,10.0,9.0,46,0.59 +22867,50.0,6.0,6.0,6.0,6.0,7.0,4.0,2,0.11 +10763,91.0,9.0,9.0,9.0,9.0,10.0,9.0,185,2.3 +33606,85.0,9.0,8.0,9.0,10.0,8.0,8.0,4,0.06 +75385,,,,,,,,0, +12197,97.0,10.0,10.0,10.0,10.0,9.0,10.0,117,1.46 +54604,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.04 +74023,99.0,10.0,10.0,10.0,10.0,10.0,10.0,19,0.29 +53628,83.0,9.0,10.0,9.0,10.0,9.0,9.0,8,0.5 +2085,94.0,9.0,9.0,10.0,10.0,10.0,9.0,232,3.05 +47041,95.0,10.0,9.0,10.0,10.0,9.0,10.0,15,0.2 +30497,100.0,10.0,9.0,10.0,10.0,10.0,10.0,12,0.15 +24181,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +20270,98.0,10.0,10.0,10.0,10.0,10.0,10.0,32,0.42 +9169,94.0,9.0,9.0,10.0,10.0,8.0,9.0,54,0.67 +26104,86.0,9.0,8.0,9.0,10.0,9.0,9.0,73,0.96 +17322,,,,,,,,0, +21717,,,,,,,,0, +11725,89.0,9.0,9.0,10.0,9.0,9.0,9.0,206,2.74 +41579,99.0,10.0,10.0,10.0,10.0,10.0,10.0,72,0.92 +65893,95.0,10.0,10.0,10.0,10.0,10.0,9.0,51,0.66 +36976,90.0,9.0,9.0,7.0,6.0,9.0,10.0,5,0.07 +66990,,,,,,,,0, +40119,94.0,10.0,10.0,10.0,10.0,9.0,9.0,157,2.03 +34134,96.0,9.0,9.0,10.0,10.0,9.0,9.0,15,0.19 +1636,94.0,9.0,10.0,10.0,10.0,9.0,9.0,29,0.54 +7202,94.0,10.0,10.0,10.0,10.0,10.0,9.0,17,0.22 +73044,95.0,10.0,10.0,10.0,10.0,9.0,10.0,65,0.82 +43090,,,,,,,,0, +24698,93.0,9.0,9.0,10.0,10.0,9.0,10.0,3,0.15 +70399,100.0,10.0,9.0,10.0,10.0,9.0,9.0,13,0.17 +29826,88.0,9.0,8.0,9.0,9.0,8.0,8.0,21,0.27 +193,,,,,,,,0, +50222,89.0,9.0,9.0,9.0,9.0,9.0,9.0,39,0.49 +17465,98.0,9.0,10.0,10.0,10.0,10.0,9.0,20,0.38 +34345,98.0,10.0,9.0,10.0,10.0,9.0,9.0,23,0.33 +32571,,,,,,,,0, +13946,80.0,8.0,8.0,10.0,10.0,8.0,8.0,2,0.1 +42181,88.0,9.0,8.0,10.0,10.0,10.0,9.0,53,0.66 +76424,,,,,,,,0, +39269,99.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.56 +37724,,,,,,,,0, +68568,98.0,10.0,10.0,10.0,10.0,9.0,9.0,9,0.16 +71858,93.0,9.0,10.0,10.0,10.0,9.0,9.0,11,0.17 +35414,,,,,,,,0, +55690,91.0,9.0,9.0,10.0,10.0,9.0,9.0,7,0.42 +67841,97.0,10.0,10.0,10.0,10.0,10.0,10.0,168,2.11 +2915,90.0,10.0,10.0,10.0,10.0,9.0,9.0,4,0.06 +46073,88.0,9.0,9.0,9.0,10.0,9.0,10.0,15,0.22 +63576,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +43860,96.0,10.0,10.0,10.0,10.0,9.0,10.0,10,0.13 +44818,96.0,10.0,9.0,10.0,10.0,10.0,10.0,10,0.15 +7998,99.0,10.0,10.0,10.0,10.0,10.0,10.0,41,0.52 +57159,,,,,,,,0, +65080,95.0,10.0,9.0,10.0,10.0,9.0,9.0,40,0.5 +29870,92.0,9.0,9.0,10.0,10.0,9.0,9.0,36,0.48 +34765,92.0,9.0,9.0,10.0,10.0,9.0,9.0,137,1.72 +41774,92.0,9.0,9.0,10.0,10.0,10.0,9.0,16,0.26 +40722,94.0,10.0,9.0,10.0,10.0,9.0,10.0,30,0.38 +48919,,,,,,,,0, +9780,95.0,10.0,10.0,10.0,10.0,9.0,9.0,30,0.39 +17813,98.0,10.0,10.0,10.0,10.0,9.0,10.0,24,0.36 +2898,93.0,9.0,9.0,10.0,10.0,9.0,10.0,85,1.1 +5367,96.0,10.0,9.0,10.0,10.0,10.0,9.0,26,1.1 +51720,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.04 +12330,83.0,8.0,9.0,9.0,8.0,9.0,9.0,14,1.0 +72628,,,,,,,,0, +52234,,,,,,,,0, +70863,97.0,10.0,10.0,10.0,10.0,10.0,10.0,199,2.55 +36154,96.0,10.0,9.0,10.0,10.0,10.0,9.0,5,0.2 +7720,91.0,9.0,9.0,9.0,9.0,9.0,9.0,26,0.38 +8089,93.0,9.0,9.0,10.0,10.0,9.0,9.0,276,3.57 +11946,,,,,,,,0, +40747,97.0,10.0,10.0,10.0,10.0,9.0,10.0,72,0.94 +62415,,,,,,,,0, +12753,,,,,,,,0, +65869,90.0,9.0,9.0,9.0,9.0,9.0,9.0,48,0.61 +18936,97.0,10.0,10.0,9.0,10.0,10.0,9.0,42,0.54 +23522,94.0,10.0,9.0,10.0,10.0,10.0,9.0,83,1.22 +10649,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.1 +1445,95.0,10.0,9.0,10.0,10.0,10.0,9.0,55,0.71 +26611,95.0,10.0,9.0,10.0,10.0,10.0,9.0,68,0.86 +39856,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.1 +37850,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.29 +5833,98.0,10.0,10.0,10.0,10.0,9.0,9.0,66,0.83 +57620,94.0,10.0,10.0,10.0,10.0,10.0,9.0,23,0.3 +31025,90.0,9.0,10.0,10.0,10.0,9.0,9.0,6,0.17 +37290,,,,,,,,0, +24703,95.0,10.0,9.0,10.0,10.0,9.0,9.0,27,0.36 +32544,,,,,,,,0, +36399,,,,,,,,0, +68614,97.0,9.0,9.0,9.0,10.0,8.0,9.0,8,0.1 +25582,93.0,9.0,10.0,10.0,10.0,9.0,9.0,12,0.17 +37452,91.0,9.0,9.0,10.0,10.0,10.0,9.0,7,0.11 +39316,86.0,8.0,9.0,9.0,9.0,9.0,8.0,10,0.14 +1767,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.08 +10558,97.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.11 +49989,92.0,9.0,9.0,10.0,10.0,10.0,9.0,22,0.4 +69391,85.0,9.0,9.0,9.0,9.0,8.0,9.0,56,0.77 +17485,96.0,10.0,10.0,10.0,10.0,9.0,10.0,101,1.31 +48577,95.0,10.0,10.0,10.0,10.0,9.0,9.0,39,0.51 +18414,97.0,10.0,9.0,9.0,9.0,9.0,10.0,15,0.25 +45551,,,,,,,,0, +36278,98.0,10.0,10.0,10.0,10.0,9.0,10.0,68,1.03 +26408,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.06 +59237,,,,,,,,0, +21501,99.0,10.0,10.0,10.0,10.0,10.0,10.0,36,0.46 +3572,83.0,9.0,9.0,8.0,9.0,9.0,8.0,33,0.42 +20271,90.0,9.0,9.0,10.0,9.0,10.0,9.0,23,0.31 +30360,90.0,9.0,8.0,9.0,9.0,9.0,10.0,8,0.1 +16133,87.0,9.0,8.0,10.0,10.0,10.0,9.0,40,0.59 +18723,80.0,6.0,6.0,10.0,10.0,10.0,8.0,1,0.02 +8093,80.0,10.0,10.0,10.0,10.0,9.0,9.0,4,0.05 +36068,89.0,10.0,10.0,10.0,9.0,10.0,10.0,13,0.23 +23716,98.0,10.0,10.0,10.0,10.0,9.0,10.0,176,2.21 +48119,93.0,10.0,9.0,10.0,10.0,9.0,9.0,65,0.83 +66871,98.0,10.0,10.0,10.0,10.0,8.0,10.0,16,0.23 +27618,,,,,,,,0, +45159,100.0,8.0,8.0,10.0,10.0,10.0,8.0,1,0.22 +33319,99.0,10.0,10.0,10.0,10.0,10.0,10.0,28,0.44 +19589,93.0,10.0,10.0,10.0,9.0,10.0,9.0,25,0.31 +75157,,,,,,,,0, +65013,97.0,9.0,9.0,10.0,10.0,9.0,10.0,27,0.34 +26662,,,,,,,,0, +36180,,,,,,,,0, +34335,96.0,9.0,9.0,10.0,10.0,10.0,9.0,17,0.22 +42215,92.0,10.0,9.0,10.0,10.0,9.0,9.0,191,2.47 +16974,98.0,10.0,10.0,10.0,10.0,10.0,10.0,60,0.77 +11854,91.0,8.0,10.0,10.0,10.0,8.0,10.0,1,0.02 +52152,93.0,9.0,9.0,9.0,10.0,9.0,9.0,5,0.09 +17830,96.0,10.0,10.0,10.0,10.0,10.0,10.0,278,3.54 +31626,96.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.09 +22002,97.0,10.0,9.0,9.0,9.0,8.0,9.0,8,0.2 +26496,94.0,10.0,10.0,10.0,10.0,10.0,9.0,10,0.13 +16687,,,,,,,,0, +34085,86.0,9.0,9.0,10.0,10.0,8.0,9.0,17,0.28 +5654,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.02 +40471,89.0,9.0,9.0,9.0,9.0,9.0,9.0,91,1.26 +49005,87.0,10.0,7.0,10.0,10.0,10.0,10.0,3,0.1 +39133,,,,,,,,0, +5565,83.0,8.0,8.0,9.0,9.0,9.0,9.0,214,3.19 +51403,91.0,9.0,9.0,9.0,10.0,10.0,9.0,99,1.64 +32170,91.0,9.0,9.0,10.0,10.0,9.0,9.0,389,4.88 +55286,,,,,,,,0, +52051,97.0,10.0,10.0,10.0,10.0,10.0,9.0,8,0.13 +27672,98.0,10.0,10.0,10.0,10.0,9.0,10.0,23,0.42 +28985,100.0,10.0,10.0,10.0,10.0,8.0,9.0,14,0.18 +70355,72.0,7.0,6.0,8.0,9.0,8.0,6.0,7,1.4 +36167,86.0,9.0,8.0,9.0,9.0,9.0,9.0,47,0.82 +31445,98.0,10.0,10.0,10.0,10.0,9.0,10.0,25,0.73 +14505,98.0,10.0,10.0,10.0,10.0,9.0,10.0,23,0.33 +51642,91.0,9.0,9.0,10.0,10.0,9.0,9.0,93,1.25 +30877,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.12 +29519,,,,,,,,0, +51544,,,,,,,,0, +5309,91.0,10.0,10.0,10.0,10.0,8.0,9.0,9,0.11 +13055,97.0,9.0,10.0,10.0,10.0,10.0,9.0,7,0.11 +26485,,,,,,,,0, +33830,94.0,10.0,9.0,10.0,9.0,10.0,9.0,19,0.26 +6044,93.0,10.0,9.0,10.0,10.0,10.0,9.0,38,0.49 +38116,,,,,,,,0, +18734,90.0,9.0,9.0,10.0,10.0,10.0,9.0,3,0.05 +66911,98.0,10.0,10.0,10.0,10.0,9.0,10.0,245,3.07 +29293,92.0,9.0,9.0,10.0,10.0,9.0,9.0,49,0.8 +71015,92.0,10.0,9.0,10.0,10.0,9.0,9.0,100,1.31 +23204,94.0,10.0,10.0,10.0,10.0,9.0,9.0,184,2.39 +41803,98.0,10.0,10.0,10.0,10.0,9.0,10.0,91,1.15 +39058,91.0,9.0,10.0,10.0,10.0,9.0,9.0,157,2.0 +49690,93.0,10.0,10.0,10.0,10.0,9.0,9.0,199,2.59 +48381,,,,,,,,0, +14738,,,,,,,,0, +70165,96.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.17 +4869,94.0,10.0,10.0,10.0,10.0,10.0,9.0,200,2.56 +74478,96.0,10.0,10.0,10.0,10.0,10.0,10.0,84,1.15 +36280,,,,,,,,0, +47473,86.0,8.0,9.0,8.0,8.0,9.0,9.0,14,0.18 +22091,,,,,,,,0, +68636,,,,,,,,0, +68118,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.15 +40704,97.0,10.0,9.0,10.0,10.0,10.0,10.0,95,1.25 +43114,97.0,10.0,10.0,10.0,10.0,10.0,10.0,130,1.63 +26732,97.0,10.0,10.0,10.0,10.0,9.0,10.0,100,1.28 +10307,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.18 +71059,99.0,10.0,10.0,10.0,10.0,10.0,10.0,82,1.05 +70762,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.27 +73094,,,,,,,,0, +57683,100.0,9.0,9.0,10.0,10.0,9.0,9.0,3,0.04 +49358,,,,,,,,0, +58041,97.0,10.0,10.0,10.0,10.0,9.0,9.0,49,0.63 +32188,,,,,,,,0, +23372,,,,,,,,0, +73861,,,,,,,,0, +60726,,10.0,10.0,10.0,10.0,8.0,6.0,1,0.01 +41799,,,,,,,,0, +55533,87.0,9.0,8.0,9.0,9.0,8.0,9.0,81,1.94 +3327,94.0,9.0,10.0,10.0,10.0,10.0,9.0,87,1.13 +76907,90.0,9.0,10.0,10.0,10.0,8.0,9.0,33,0.42 +21525,90.0,9.0,9.0,10.0,9.0,9.0,9.0,179,2.28 +39170,,,,,,,,0, +46404,96.0,10.0,9.0,10.0,10.0,10.0,9.0,17,0.22 +55078,97.0,10.0,10.0,10.0,10.0,10.0,10.0,233,2.94 +31983,,,,,,,,0, +10419,95.0,9.0,9.0,10.0,10.0,9.0,9.0,52,0.68 +40139,94.0,9.0,10.0,10.0,10.0,9.0,9.0,97,1.28 +15973,99.0,10.0,10.0,10.0,10.0,10.0,10.0,60,0.8 +11220,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.04 +58127,92.0,9.0,9.0,10.0,10.0,10.0,9.0,142,2.08 +44837,,,,,,,,0, +67435,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.34 +62298,94.0,10.0,9.0,10.0,10.0,9.0,9.0,217,2.82 +45082,,,,,,,,0, +59727,98.0,10.0,10.0,10.0,10.0,10.0,10.0,27,0.35 +62945,95.0,10.0,10.0,10.0,10.0,9.0,10.0,32,0.6 +50983,,,,,,,,0, +76876,96.0,9.0,10.0,9.0,9.0,10.0,9.0,18,0.42 +24351,,,,,,,,0, +51491,94.0,10.0,9.0,10.0,10.0,9.0,9.0,97,1.23 +32906,90.0,9.0,9.0,9.0,9.0,10.0,8.0,44,0.58 +63808,90.0,9.0,8.0,10.0,10.0,9.0,8.0,6,0.15 +44359,99.0,10.0,9.0,10.0,10.0,10.0,10.0,17,0.25 +51000,93.0,9.0,9.0,10.0,9.0,9.0,9.0,12,0.17 +5908,86.0,9.0,8.0,9.0,9.0,9.0,9.0,47,0.62 +31897,94.0,9.0,9.0,10.0,10.0,10.0,9.0,28,0.46 +70663,99.0,10.0,10.0,10.0,10.0,10.0,10.0,23,0.29 +59558,90.0,9.0,10.0,10.0,9.0,10.0,10.0,2,0.03 +60659,,,,,,,,0, +68438,99.0,10.0,10.0,10.0,10.0,9.0,10.0,21,0.27 +69946,,,,,,,,0, +33391,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.06 +8171,89.0,9.0,8.0,10.0,10.0,10.0,9.0,13,0.3 +50694,91.0,10.0,10.0,10.0,10.0,9.0,10.0,132,1.71 +16911,90.0,9.0,9.0,10.0,10.0,10.0,9.0,98,1.26 +56616,95.0,10.0,9.0,10.0,10.0,9.0,10.0,67,0.85 +5223,92.0,10.0,10.0,10.0,10.0,9.0,9.0,456,5.79 +63033,99.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.05 +25601,90.0,9.0,9.0,10.0,10.0,10.0,9.0,18,0.35 +9300,,,,,,,,0, +30018,87.0,9.0,9.0,9.0,9.0,9.0,9.0,214,2.78 +33917,89.0,9.0,9.0,10.0,10.0,9.0,9.0,82,1.05 +14897,97.0,10.0,10.0,10.0,10.0,9.0,10.0,26,0.33 +73473,94.0,9.0,9.0,10.0,10.0,9.0,9.0,67,0.85 +69976,,,,,,,,0, +24678,,,,,,,,0, +4507,86.0,9.0,9.0,9.0,9.0,9.0,9.0,113,1.44 +56260,,,,,,,,0, +8686,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.17 +19227,86.0,9.0,8.0,10.0,10.0,8.0,9.0,78,1.01 +51181,92.0,10.0,9.0,10.0,10.0,9.0,10.0,139,5.13 +57083,91.0,9.0,9.0,9.0,9.0,9.0,9.0,64,0.81 +21193,96.0,10.0,9.0,10.0,10.0,9.0,9.0,117,1.5 +38805,,,,,,,,0, +53224,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.11 +15605,98.0,10.0,9.0,10.0,10.0,10.0,10.0,10,0.25 +60263,88.0,9.0,8.0,10.0,9.0,9.0,9.0,303,3.86 +23119,96.0,10.0,10.0,10.0,10.0,10.0,9.0,222,2.83 +69160,98.0,10.0,10.0,10.0,10.0,9.0,10.0,12,0.15 +31723,,,,,,,,0, +47793,,,,,,,,0, +46749,,,,,,,,0, +26139,89.0,9.0,8.0,9.0,10.0,10.0,9.0,4,0.05 +54223,91.0,9.0,10.0,9.0,9.0,10.0,9.0,22,0.29 +6895,,,,,,,,0, +17255,96.0,10.0,10.0,10.0,10.0,10.0,9.0,65,0.84 +27605,98.0,10.0,10.0,10.0,10.0,9.0,10.0,9,1.96 +43283,,,,,,,,0, +76515,100.0,10.0,10.0,,10.0,,,1,0.06 +63546,93.0,10.0,9.0,10.0,10.0,9.0,9.0,3,0.04 +47206,97.0,10.0,10.0,10.0,10.0,9.0,10.0,24,0.38 +26453,95.0,10.0,9.0,10.0,10.0,9.0,10.0,118,1.56 +27459,97.0,9.0,9.0,10.0,10.0,10.0,9.0,6,0.08 +63804,84.0,9.0,7.0,10.0,9.0,9.0,8.0,25,0.32 +32031,97.0,10.0,10.0,10.0,10.0,9.0,10.0,177,3.28 +4622,92.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.15 +55063,92.0,10.0,9.0,10.0,10.0,9.0,9.0,15,0.19 +72450,100.0,10.0,10.0,10.0,10.0,9.0,10.0,16,0.21 +61949,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.01 +63871,92.0,9.0,9.0,10.0,10.0,9.0,10.0,36,0.47 +71734,,,,,,,,0, +51610,97.0,9.0,9.0,10.0,10.0,9.0,10.0,10,0.13 +61004,,,,,,,,0, +53554,97.0,10.0,10.0,10.0,10.0,9.0,9.0,23,0.31 +45295,87.0,9.0,8.0,10.0,10.0,9.0,9.0,19,0.33 +11765,90.0,8.0,9.0,10.0,10.0,10.0,9.0,2,0.38 +57118,,,,,,,,0, +41164,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.06 +49501,94.0,10.0,9.0,9.0,9.0,9.0,9.0,147,1.92 +36874,93.0,10.0,9.0,10.0,10.0,10.0,9.0,23,0.3 +59849,100.0,,,,,,,1,0.03 +3110,,,,,,,,0, +18174,,,,,,,,0, +48591,95.0,10.0,9.0,10.0,10.0,10.0,9.0,9,0.12 +63919,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.62 +55198,99.0,10.0,10.0,10.0,10.0,9.0,10.0,14,0.39 +15602,93.0,9.0,9.0,10.0,10.0,9.0,9.0,45,0.68 +50572,99.0,10.0,10.0,10.0,10.0,10.0,10.0,40,0.53 +61242,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.35 +58496,88.0,9.0,8.0,9.0,9.0,9.0,9.0,27,0.35 +66890,95.0,9.0,9.0,10.0,9.0,9.0,9.0,82,1.05 +21783,90.0,10.0,9.0,10.0,10.0,10.0,9.0,4,0.12 +14337,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.36 +57286,98.0,10.0,10.0,10.0,10.0,10.0,9.0,28,0.42 +44515,77.0,8.0,7.0,9.0,10.0,7.0,8.0,7,0.13 +30202,96.0,10.0,10.0,10.0,10.0,9.0,10.0,28,0.42 +6797,94.0,10.0,10.0,10.0,10.0,9.0,9.0,175,2.53 +35285,95.0,10.0,10.0,10.0,10.0,9.0,10.0,162,2.11 +57166,99.0,10.0,10.0,10.0,10.0,9.0,10.0,106,1.38 +25217,90.0,9.0,8.0,9.0,9.0,9.0,9.0,34,0.44 +71216,,,,,,,,0, +35400,87.0,9.0,8.0,10.0,10.0,9.0,9.0,172,2.27 +62720,96.0,10.0,9.0,10.0,10.0,9.0,10.0,76,0.98 +58105,92.0,9.0,9.0,10.0,9.0,9.0,9.0,51,0.71 +873,97.0,10.0,10.0,10.0,10.0,10.0,10.0,56,0.73 +1512,,,,,,,,0, +13749,,,,,,,,0, +64290,95.0,10.0,9.0,10.0,10.0,9.0,10.0,112,1.43 +34319,98.0,10.0,10.0,10.0,10.0,10.0,9.0,23,0.31 +35783,97.0,10.0,9.0,10.0,10.0,10.0,10.0,13,1.35 +1135,98.0,9.0,10.0,10.0,10.0,9.0,10.0,7,0.09 +49792,97.0,10.0,10.0,10.0,10.0,9.0,10.0,167,2.12 +28423,,,,,,,,0, +60333,90.0,9.0,9.0,9.0,9.0,10.0,9.0,72,0.96 +4399,96.0,9.0,10.0,10.0,10.0,9.0,9.0,60,0.77 +31611,95.0,10.0,9.0,10.0,10.0,9.0,9.0,11,0.14 +35745,,,,,,,,0, +55566,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.04 +15243,,,,,,,,0, +27367,96.0,9.0,10.0,9.0,10.0,9.0,10.0,13,0.17 +12047,,,,,,,,0, +46642,99.0,10.0,10.0,10.0,10.0,10.0,10.0,43,1.36 +47404,,,,,,,,0, +45867,97.0,10.0,10.0,10.0,10.0,8.0,10.0,3,0.04 +75005,97.0,10.0,10.0,10.0,10.0,10.0,10.0,174,3.37 +14492,93.0,9.0,9.0,10.0,10.0,10.0,9.0,3,0.05 +57692,93.0,10.0,10.0,10.0,9.0,9.0,9.0,35,0.86 +21016,86.0,9.0,8.0,9.0,10.0,10.0,9.0,54,0.77 +44334,89.0,9.0,9.0,9.0,9.0,10.0,9.0,71,0.94 +36733,96.0,9.0,9.0,10.0,10.0,9.0,9.0,36,0.66 +10207,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.09 +67358,91.0,9.0,9.0,10.0,10.0,10.0,9.0,18,0.26 +45911,,,,,,,,0, +44938,,,,,,,,0, +71005,,,,,,,,0, +17519,87.0,7.0,9.0,10.0,10.0,10.0,9.0,4,0.08 +49136,99.0,10.0,10.0,10.0,10.0,9.0,9.0,28,0.37 +67861,99.0,10.0,10.0,10.0,10.0,10.0,10.0,57,1.11 +54251,,6.0,6.0,2.0,4.0,8.0,6.0,2,0.03 +30939,86.0,8.0,9.0,10.0,10.0,9.0,8.0,64,1.54 +76437,90.0,9.0,9.0,9.0,9.0,9.0,9.0,14,0.18 +42892,96.0,10.0,9.0,10.0,10.0,10.0,10.0,10,1.3 +35082,99.0,10.0,10.0,10.0,10.0,9.0,10.0,25,0.33 +18485,99.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.23 +38981,,,,,,,,0, +41732,98.0,10.0,10.0,10.0,10.0,10.0,10.0,221,2.93 +66127,98.0,10.0,10.0,9.0,10.0,9.0,9.0,13,0.19 +69307,94.0,10.0,10.0,10.0,9.0,10.0,9.0,45,0.58 +48640,96.0,10.0,9.0,10.0,10.0,9.0,10.0,44,0.99 +25216,,,,,,,,0, +33650,92.0,10.0,10.0,10.0,10.0,9.0,9.0,37,0.7 +9853,92.0,9.0,9.0,9.0,10.0,9.0,9.0,135,1.73 +41319,98.0,10.0,10.0,10.0,10.0,10.0,9.0,16,0.33 +71693,80.0,7.0,8.0,6.0,10.0,9.0,6.0,2,0.87 +56022,92.0,9.0,9.0,9.0,10.0,9.0,9.0,251,3.18 +49949,89.0,9.0,9.0,9.0,9.0,8.0,9.0,37,0.5 +76169,97.0,10.0,10.0,10.0,10.0,10.0,10.0,38,0.5 +61739,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.02 +40586,,,,,,,,0, +65998,,,,,,,,0, +5678,98.0,10.0,9.0,10.0,10.0,9.0,10.0,35,0.45 +11135,95.0,10.0,9.0,10.0,10.0,10.0,10.0,186,2.44 +43632,85.0,9.0,8.0,9.0,10.0,8.0,9.0,21,0.46 +39513,93.0,9.0,8.0,10.0,10.0,9.0,8.0,8,0.13 +2100,91.0,9.0,9.0,10.0,10.0,9.0,9.0,7,0.13 +2308,93.0,8.0,8.0,9.0,10.0,9.0,8.0,11,0.14 +6838,96.0,10.0,10.0,10.0,10.0,9.0,10.0,23,0.3 +68727,93.0,9.0,10.0,10.0,10.0,9.0,9.0,11,0.18 +64323,,,,,,,,0, +17886,91.0,9.0,9.0,10.0,10.0,8.0,9.0,11,0.14 +10323,87.0,9.0,9.0,9.0,9.0,8.0,9.0,86,1.1 +15519,,,,,,,,0, +23679,96.0,10.0,10.0,10.0,10.0,10.0,9.0,123,1.59 +24081,91.0,9.0,9.0,9.0,9.0,9.0,9.0,46,0.59 +4627,97.0,10.0,10.0,10.0,10.0,9.0,10.0,194,2.6 +644,89.0,9.0,9.0,9.0,9.0,10.0,9.0,54,0.71 +74982,83.0,8.0,8.0,8.0,9.0,6.0,8.0,17,0.22 +41756,,,,,,,,0, +27596,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.18 +44946,96.0,10.0,10.0,10.0,10.0,9.0,10.0,186,2.43 +24997,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.2 +64990,,,,,,,,0, +33930,90.0,9.0,10.0,10.0,10.0,9.0,9.0,130,1.75 +43430,,,,,,,,0, +56183,88.0,9.0,9.0,9.0,8.0,10.0,9.0,19,0.24 +38039,96.0,10.0,10.0,10.0,10.0,10.0,9.0,177,2.36 +23673,92.0,9.0,10.0,10.0,10.0,9.0,9.0,12,0.19 +22881,93.0,10.0,9.0,9.0,10.0,10.0,9.0,12,0.18 +66920,76.0,8.0,7.0,9.0,8.0,9.0,7.0,6,0.08 +50798,98.0,10.0,10.0,10.0,10.0,9.0,10.0,22,0.29 +38836,92.0,9.0,10.0,9.0,9.0,10.0,9.0,202,2.63 +23112,98.0,10.0,10.0,10.0,10.0,10.0,10.0,79,2.59 +19635,,,,,,,,0, +18336,90.0,9.0,8.0,10.0,10.0,10.0,9.0,4,0.07 +53037,98.0,10.0,10.0,10.0,10.0,10.0,10.0,89,1.16 +44269,93.0,9.0,9.0,10.0,10.0,9.0,9.0,18,0.27 +13009,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.09 +32412,94.0,9.0,9.0,10.0,10.0,10.0,9.0,49,0.65 +16224,97.0,10.0,10.0,10.0,10.0,9.0,10.0,91,1.22 +9876,96.0,10.0,10.0,10.0,10.0,9.0,10.0,21,0.34 +60152,90.0,9.0,8.0,10.0,10.0,9.0,9.0,10,0.54 +58479,,,,,,,,0, +26992,95.0,10.0,10.0,10.0,10.0,9.0,10.0,34,0.44 +44541,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.03 +67526,92.0,9.0,10.0,10.0,10.0,9.0,9.0,21,0.28 +22746,94.0,10.0,9.0,10.0,10.0,9.0,9.0,66,0.98 +19420,,,,,,,,0, +5040,93.0,10.0,10.0,10.0,10.0,9.0,9.0,77,1.02 +41396,97.0,9.0,10.0,10.0,10.0,9.0,10.0,47,0.93 +58302,92.0,9.0,9.0,9.0,9.0,9.0,9.0,12,0.23 +31841,100.0,10.0,10.0,9.0,9.0,10.0,9.0,5,0.06 +13410,,,,,,,,0, +49110,90.0,9.0,9.0,10.0,10.0,8.0,9.0,35,0.48 +61552,100.0,9.0,10.0,10.0,10.0,10.0,9.0,2,0.04 +64916,93.0,9.0,9.0,10.0,9.0,10.0,9.0,62,0.81 +68921,,,,,,,,0, +45336,,,,,,,,0, +45754,90.0,9.0,8.0,9.0,9.0,9.0,8.0,6,0.09 +74974,95.0,10.0,10.0,10.0,10.0,10.0,9.0,115,1.56 +17692,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.01 +5716,,,,,,,,0, +67036,97.0,10.0,10.0,10.0,10.0,9.0,10.0,30,0.39 +60851,,,,,,,,0, +24921,,,,,,,,0, +6682,95.0,10.0,10.0,10.0,10.0,10.0,9.0,196,2.67 +72843,,,,,,,,0, +30081,89.0,9.0,9.0,9.0,10.0,10.0,9.0,29,0.54 +8294,100.0,9.0,9.0,9.0,9.0,8.0,8.0,2,0.03 +66352,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.03 +64106,,,,,,,,0, +9728,80.0,9.0,8.0,9.0,9.0,10.0,8.0,13,0.19 +66433,96.0,10.0,10.0,10.0,10.0,9.0,9.0,19,0.33 +71903,96.0,10.0,9.0,9.0,10.0,9.0,10.0,5,0.07 +20095,,,,,,,,0, +22882,,,,,,,,0, +20792,97.0,10.0,10.0,10.0,10.0,10.0,10.0,68,0.94 +41136,89.0,9.0,9.0,9.0,9.0,9.0,9.0,16,0.54 +40050,95.0,9.0,10.0,10.0,10.0,10.0,9.0,55,0.8 +24052,,,,,,,,0, +63958,97.0,10.0,9.0,10.0,10.0,9.0,9.0,26,0.34 +41940,99.0,10.0,10.0,10.0,10.0,10.0,10.0,54,1.18 +74142,98.0,10.0,10.0,10.0,10.0,10.0,10.0,89,1.15 +73237,,,,,,,,0, +71020,94.0,9.0,9.0,10.0,10.0,10.0,9.0,194,2.5 +34877,,,,,,,,0, +74968,,,,,,,,0, +72753,93.0,10.0,9.0,9.0,9.0,9.0,9.0,62,1.09 +70179,100.0,10.0,10.0,10.0,10.0,10.0,10.0,22,0.81 +33603,100.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.47 +36019,98.0,10.0,10.0,10.0,10.0,10.0,10.0,57,0.75 +36342,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.03 +34728,,,,,,,,0, +61818,97.0,10.0,10.0,10.0,10.0,10.0,9.0,78,1.01 +7699,97.0,10.0,9.0,10.0,10.0,10.0,9.0,40,0.52 +71991,93.0,10.0,9.0,10.0,10.0,9.0,9.0,59,0.76 +76896,87.0,9.0,9.0,10.0,10.0,9.0,9.0,3,0.07 +14070,96.0,10.0,9.0,10.0,10.0,9.0,9.0,39,0.51 +51191,100.0,10.0,9.0,10.0,10.0,9.0,9.0,3,0.05 +6057,,,,,,,,0, +46978,82.0,9.0,8.0,9.0,8.0,9.0,9.0,11,0.15 +11638,88.0,10.0,9.0,10.0,10.0,9.0,9.0,12,0.19 +1638,95.0,9.0,10.0,9.0,10.0,9.0,9.0,25,0.32 +57842,,,,,,,,0, +65651,86.0,9.0,9.0,9.0,10.0,8.0,9.0,147,1.96 +32908,91.0,9.0,9.0,10.0,10.0,9.0,9.0,37,0.51 +64648,,,,,,,,0, +35249,97.0,9.0,10.0,10.0,10.0,9.0,9.0,7,0.11 +36206,80.0,10.0,6.0,10.0,10.0,10.0,10.0,1,0.15 +43621,100.0,10.0,8.0,9.0,10.0,9.0,8.0,2,0.03 +38872,94.0,9.0,9.0,9.0,10.0,10.0,9.0,24,0.31 +33031,98.0,10.0,10.0,10.0,10.0,10.0,10.0,43,0.68 +62833,84.0,8.0,9.0,9.0,8.0,7.0,8.0,60,1.14 +62121,97.0,10.0,10.0,10.0,10.0,10.0,9.0,33,0.61 +7292,95.0,10.0,9.0,10.0,10.0,9.0,10.0,8,0.11 +20560,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +53260,98.0,10.0,9.0,10.0,10.0,9.0,10.0,37,0.48 +20887,77.0,8.0,8.0,9.0,9.0,9.0,8.0,133,1.71 +1056,96.0,10.0,10.0,10.0,10.0,10.0,10.0,77,1.01 +73430,,,,,,,,0, +21021,98.0,10.0,10.0,10.0,10.0,10.0,9.0,10,0.16 +13455,94.0,9.0,10.0,9.0,10.0,8.0,9.0,19,0.25 +46882,100.0,10.0,8.0,10.0,10.0,8.0,9.0,5,0.06 +32877,94.0,10.0,8.0,10.0,10.0,9.0,9.0,25,0.32 +39412,96.0,10.0,10.0,10.0,10.0,9.0,10.0,231,2.99 +34773,95.0,10.0,10.0,10.0,10.0,9.0,9.0,20,0.3 +21203,81.0,9.0,9.0,8.0,8.0,9.0,8.0,32,0.44 +46282,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.01 +22134,99.0,10.0,10.0,10.0,10.0,10.0,10.0,22,0.39 +43527,,,,,,,,0, +6876,,,,,,,,0, +60651,,,,,,,,0, +36429,96.0,10.0,10.0,10.0,10.0,10.0,10.0,33,0.45 +12167,93.0,9.0,10.0,10.0,10.0,10.0,9.0,61,0.95 +24371,80.0,9.0,8.0,9.0,10.0,8.0,8.0,8,0.13 +72798,88.0,9.0,9.0,10.0,10.0,10.0,9.0,204,3.34 +59034,,,,,,,,0, +13470,,,,,,,,0, +64156,,,,,,,,0, +41338,96.0,10.0,10.0,10.0,10.0,9.0,9.0,90,1.86 +6002,96.0,9.0,9.0,10.0,10.0,9.0,10.0,34,0.51 +58213,81.0,9.0,9.0,9.0,9.0,8.0,8.0,147,1.97 +22370,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +47830,93.0,9.0,10.0,10.0,10.0,9.0,9.0,69,0.9 +1676,,,,,,,,0, +55378,,,,,,,,0, +1602,100.0,10.0,9.0,9.0,10.0,10.0,9.0,4,0.05 +23073,,,,,,,,0, +34160,,,,,,,,0, +30442,91.0,9.0,9.0,10.0,10.0,9.0,9.0,82,1.13 +70603,,10.0,8.0,10.0,6.0,6.0,10.0,1,0.01 +54571,95.0,10.0,10.0,10.0,10.0,10.0,9.0,12,0.2 +29514,96.0,9.0,9.0,10.0,10.0,10.0,10.0,142,1.85 +62360,,,,,,,,0, +8537,92.0,9.0,10.0,9.0,9.0,9.0,9.0,65,0.86 +76442,92.0,9.0,10.0,10.0,10.0,10.0,9.0,10,0.14 +18077,,,,,,,,0, +10565,,,,,,,,0, +64218,96.0,10.0,10.0,10.0,10.0,9.0,10.0,34,0.44 +15714,98.0,10.0,10.0,10.0,10.0,9.0,10.0,74,1.02 +58364,91.0,9.0,10.0,10.0,9.0,10.0,9.0,75,1.0 +71648,95.0,10.0,9.0,10.0,10.0,10.0,9.0,44,0.58 +36864,,,,,,,,0, +169,87.0,9.0,9.0,9.0,9.0,9.0,9.0,215,4.57 +13904,90.0,10.0,9.0,9.0,9.0,9.0,9.0,14,0.21 +57728,,,,,,,,0, +29045,,,,,,,,0, +61305,,,,,,,,0, +27142,91.0,9.0,9.0,10.0,10.0,9.0,9.0,19,0.32 +25554,,,,,,,,0, +14850,98.0,10.0,10.0,10.0,10.0,9.0,10.0,13,0.17 +53032,97.0,10.0,10.0,10.0,10.0,9.0,10.0,118,1.88 +70705,75.0,7.0,8.0,7.0,8.0,8.0,7.0,8,0.16 +47300,,,,,,,,0, +53763,99.0,10.0,10.0,10.0,10.0,10.0,10.0,245,3.24 +10028,100.0,9.0,9.0,8.0,10.0,10.0,8.0,2,0.13 +74657,96.0,9.0,10.0,10.0,10.0,9.0,10.0,11,0.17 +23128,98.0,10.0,10.0,10.0,10.0,10.0,10.0,66,4.63 +67372,93.0,10.0,9.0,10.0,10.0,9.0,9.0,9,0.12 +67104,,,,,,,,0, +62595,90.0,9.0,9.0,10.0,10.0,10.0,9.0,11,0.14 +9495,94.0,9.0,9.0,10.0,10.0,10.0,9.0,52,0.68 +19843,,,,,,,,0, +5890,92.0,10.0,10.0,10.0,10.0,10.0,9.0,13,0.75 +17087,,,,,,,,0, +39345,94.0,10.0,10.0,10.0,10.0,9.0,10.0,13,0.22 +56499,95.0,10.0,8.0,9.0,10.0,10.0,8.0,12,0.16 +2733,,,,,,,,0, +49514,91.0,8.0,8.0,10.0,10.0,10.0,8.0,1,0.01 +14583,,,,,,,,0, +68481,,,,,,,,0, +27780,93.0,10.0,10.0,10.0,10.0,9.0,9.0,27,0.48 +19226,93.0,9.0,9.0,9.0,9.0,9.0,8.0,6,0.1 +29416,,,,,,,,0, +26963,96.0,10.0,10.0,10.0,10.0,9.0,10.0,220,2.99 +29207,97.0,10.0,10.0,10.0,10.0,10.0,9.0,26,0.35 +32160,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.06 +43646,91.0,10.0,9.0,10.0,10.0,10.0,10.0,55,0.73 +21354,94.0,9.0,9.0,10.0,10.0,10.0,9.0,128,2.15 +18478,90.0,9.0,9.0,9.0,9.0,9.0,9.0,64,0.83 +41999,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.26 +20622,96.0,10.0,10.0,10.0,10.0,9.0,10.0,108,1.42 +19953,,,,,,,,0, +67662,,,,,,,,0, +37611,,,,,,,,0, +62125,,,,,,,,0, +39272,99.0,10.0,10.0,10.0,10.0,10.0,10.0,28,0.71 +46105,94.0,9.0,9.0,10.0,10.0,9.0,9.0,301,3.88 +14169,93.0,10.0,10.0,10.0,10.0,9.0,10.0,9,0.12 +33809,94.0,10.0,9.0,10.0,10.0,10.0,9.0,131,1.7 +21219,94.0,10.0,9.0,10.0,10.0,10.0,9.0,152,1.97 +12706,98.0,10.0,10.0,10.0,10.0,9.0,10.0,87,1.31 +12130,97.0,10.0,10.0,10.0,10.0,10.0,10.0,55,1.01 +46480,,,,,,,,0, +5371,,,,,,,,0, +6109,,,,,,,,0, +2657,,,,,,,,0, +30059,94.0,9.0,9.0,9.0,9.0,9.0,9.0,17,0.25 +51884,91.0,10.0,9.0,9.0,10.0,8.0,9.0,39,0.53 +5530,,,,,,,,0, +3345,,,,,,,,0, +34655,98.0,10.0,10.0,10.0,10.0,10.0,9.0,29,1.44 +2317,,,,,,,,0, +56243,96.0,9.0,10.0,10.0,10.0,10.0,10.0,6,0.08 +54869,,,,,,,,1,0.02 +68984,,,,,,,,0, +43542,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.16 +67820,97.0,10.0,10.0,10.0,10.0,9.0,10.0,59,0.77 +45912,92.0,9.0,8.0,9.0,9.0,10.0,9.0,17,0.57 +19811,88.0,9.0,8.0,9.0,9.0,10.0,9.0,36,0.55 +33067,99.0,10.0,10.0,10.0,10.0,10.0,10.0,187,2.47 +33430,,,,,,,,0, +34252,93.0,9.0,9.0,10.0,10.0,9.0,9.0,40,0.66 +50559,96.0,10.0,10.0,10.0,10.0,10.0,10.0,63,0.92 +29901,90.0,10.0,10.0,10.0,10.0,10.0,9.0,12,0.19 +17919,94.0,10.0,10.0,10.0,10.0,9.0,9.0,43,1.08 +63928,99.0,10.0,9.0,10.0,10.0,10.0,10.0,39,1.35 +64787,90.0,9.0,9.0,9.0,9.0,10.0,9.0,41,0.54 +1884,98.0,9.0,9.0,10.0,10.0,9.0,10.0,9,0.15 +59768,97.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.16 +42356,87.0,10.0,9.0,10.0,10.0,10.0,9.0,3,0.06 +19914,96.0,10.0,10.0,10.0,10.0,9.0,10.0,38,1.29 +23551,99.0,10.0,10.0,10.0,10.0,10.0,10.0,24,0.32 +13135,96.0,10.0,10.0,10.0,10.0,9.0,10.0,314,4.07 +26302,92.0,9.0,9.0,9.0,9.0,9.0,9.0,4,0.05 +62685,96.0,10.0,9.0,9.0,9.0,9.0,9.0,11,0.16 +11705,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.7 +50734,,,,,,,,0, +70759,,,,,,,,0, +42487,96.0,10.0,10.0,10.0,10.0,10.0,9.0,46,0.61 +6777,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.14 +64010,96.0,9.0,10.0,10.0,9.0,10.0,9.0,11,0.14 +2968,86.0,9.0,9.0,9.0,9.0,10.0,9.0,189,2.46 +61582,,,,,,,,0, +74281,,,,,,,,0, +35200,94.0,10.0,9.0,10.0,10.0,10.0,9.0,242,3.13 +61945,,,,,,,,0, +71159,,,,,,,,0, +34757,99.0,10.0,10.0,10.0,10.0,10.0,10.0,120,1.6 +48977,100.0,10.0,8.0,6.0,5.0,10.0,10.0,2,0.03 +25954,91.0,9.0,9.0,9.0,10.0,9.0,9.0,412,5.39 +70556,91.0,9.0,9.0,10.0,10.0,10.0,9.0,30,0.42 +3799,,,,,,,,0, +27505,50.0,5.0,8.0,5.0,6.0,9.0,4.0,2,0.03 +38155,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.55 +28615,96.0,10.0,10.0,10.0,10.0,9.0,10.0,16,0.23 +71853,,,,,,,,0, +28183,,,,,,,,0, +6116,93.0,10.0,9.0,10.0,10.0,9.0,9.0,11,0.15 +71877,,,,,,,,0, +50984,95.0,10.0,10.0,10.0,10.0,10.0,10.0,20,0.33 +8153,92.0,10.0,9.0,10.0,10.0,9.0,9.0,37,0.53 +76301,87.0,9.0,9.0,9.0,9.0,9.0,9.0,3,0.48 +30046,,,,,,,,0, +15188,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.36 +38516,98.0,10.0,10.0,10.0,10.0,10.0,10.0,49,0.7 +73844,100.0,10.0,8.0,10.0,10.0,10.0,,1,0.01 +26704,96.0,9.0,9.0,10.0,10.0,10.0,9.0,11,0.31 +4249,95.0,10.0,9.0,10.0,10.0,10.0,10.0,222,2.88 +25370,96.0,10.0,10.0,10.0,10.0,10.0,10.0,28,3.33 +67772,99.0,10.0,10.0,10.0,10.0,10.0,10.0,40,0.58 +59646,98.0,10.0,10.0,10.0,10.0,9.0,10.0,147,1.98 +17288,88.0,9.0,9.0,9.0,9.0,9.0,9.0,61,0.79 +67142,99.0,10.0,10.0,10.0,10.0,10.0,10.0,501,6.5 +66596,96.0,10.0,10.0,10.0,10.0,10.0,10.0,35,0.47 +8889,96.0,10.0,10.0,10.0,10.0,9.0,9.0,116,1.52 +40580,100.0,9.0,8.0,10.0,10.0,10.0,9.0,5,0.08 +52771,97.0,10.0,10.0,10.0,10.0,10.0,9.0,109,1.41 +68623,93.0,9.0,9.0,10.0,10.0,10.0,9.0,82,1.11 +51560,93.0,10.0,9.0,10.0,10.0,10.0,8.0,9,0.52 +36344,96.0,10.0,10.0,10.0,10.0,10.0,10.0,92,1.2 +19305,97.0,10.0,10.0,10.0,10.0,9.0,10.0,64,0.85 +49993,,,,,,,,0, +7700,,,,,,,,0, +9727,96.0,10.0,10.0,10.0,10.0,9.0,10.0,21,0.27 +62625,,,,,,,,0, +66593,88.0,9.0,8.0,10.0,10.0,9.0,9.0,114,1.51 +30982,,,,,,,,0, +12958,90.0,9.0,7.0,9.0,10.0,9.0,9.0,22,0.33 +56842,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.06 +30230,97.0,10.0,10.0,10.0,10.0,9.0,10.0,112,1.74 +17492,90.0,9.0,9.0,10.0,10.0,10.0,8.0,8,0.13 +68120,,,,,,,,0, +28405,,,,,,,,0, +8130,99.0,10.0,10.0,10.0,10.0,10.0,10.0,67,0.88 +15850,94.0,10.0,9.0,10.0,10.0,10.0,9.0,144,1.87 +16204,99.0,10.0,10.0,10.0,10.0,9.0,9.0,26,0.39 +25238,95.0,10.0,10.0,10.0,10.0,9.0,10.0,85,2.14 +72257,95.0,10.0,9.0,10.0,10.0,10.0,9.0,39,0.56 +36196,89.0,9.0,9.0,9.0,9.0,10.0,9.0,20,0.29 +32917,99.0,10.0,10.0,10.0,10.0,9.0,9.0,85,1.15 +53825,92.0,9.0,10.0,9.0,9.0,10.0,9.0,5,0.07 +71066,93.0,10.0,9.0,10.0,9.0,10.0,9.0,23,0.37 +57000,95.0,10.0,10.0,10.0,10.0,10.0,9.0,72,1.02 +1617,,,,,,,,0, +58666,97.0,10.0,10.0,10.0,10.0,10.0,9.0,15,0.22 +21592,,,,,,,,0, +33413,,,,,,,,0, +34516,95.0,10.0,10.0,10.0,10.0,9.0,9.0,25,0.36 +9261,96.0,10.0,10.0,10.0,10.0,10.0,9.0,45,0.62 +36923,,,,,,,,0, +40563,99.0,10.0,10.0,10.0,10.0,9.0,10.0,14,0.18 +57148,,,,,,,,0, +43023,97.0,10.0,10.0,10.0,10.0,9.0,10.0,26,0.35 +2347,96.0,10.0,10.0,10.0,10.0,10.0,9.0,28,0.38 +39287,87.0,9.0,8.0,9.0,10.0,8.0,9.0,220,3.04 +35443,87.0,9.0,9.0,9.0,9.0,9.0,9.0,153,1.99 +47565,91.0,9.0,9.0,9.0,10.0,9.0,9.0,24,0.38 +4686,97.0,10.0,10.0,10.0,10.0,10.0,10.0,98,1.5 +27765,96.0,10.0,10.0,10.0,10.0,10.0,10.0,74,1.37 +28804,,,,,,,,0, +25506,,,,,,,,0, +13775,96.0,10.0,10.0,10.0,10.0,9.0,9.0,51,0.69 +36585,91.0,9.0,9.0,10.0,10.0,9.0,9.0,177,2.54 +14370,77.0,8.0,8.0,9.0,8.0,9.0,8.0,199,2.63 +52580,94.0,10.0,9.0,10.0,10.0,10.0,9.0,59,0.78 +58417,92.0,10.0,9.0,10.0,10.0,9.0,9.0,289,3.94 +41831,82.0,9.0,8.0,9.0,9.0,9.0,8.0,10,0.16 +37345,86.0,9.0,9.0,9.0,9.0,9.0,9.0,27,0.36 +33088,100.0,10.0,10.0,10.0,10.0,10.0,10.0,43,0.6 +3706,96.0,10.0,10.0,10.0,10.0,9.0,9.0,114,1.51 +25494,,,,,,,,0, +441,93.0,9.0,9.0,9.0,9.0,9.0,9.0,45,0.61 +62511,100.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.03 +25707,,,,,,,,0, +12590,88.0,9.0,9.0,9.0,9.0,8.0,9.0,141,1.83 +21097,,,,,,,,0, +30232,,,,,,,,0, +22400,90.0,9.0,7.0,8.0,9.0,8.0,8.0,2,0.07 +20290,,,,,,,,0, +48660,88.0,9.0,9.0,9.0,9.0,9.0,9.0,28,0.37 +12633,98.0,10.0,10.0,10.0,10.0,10.0,10.0,122,1.61 +43629,95.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.07 +4603,91.0,9.0,10.0,10.0,9.0,10.0,10.0,7,0.13 +72663,98.0,10.0,10.0,10.0,10.0,9.0,10.0,11,0.14 +73990,,,,,,,,0, +6108,95.0,10.0,10.0,10.0,10.0,10.0,9.0,8,0.12 +25883,99.0,10.0,10.0,10.0,10.0,10.0,10.0,30,0.53 +2549,94.0,9.0,9.0,10.0,10.0,9.0,9.0,59,0.79 +72471,,,,,,,,0, +55978,90.0,9.0,9.0,10.0,10.0,9.0,9.0,21,0.3 +16561,97.0,10.0,9.0,10.0,10.0,8.0,9.0,26,0.34 +61011,,,,,,,,0, +13869,96.0,9.0,10.0,10.0,10.0,9.0,9.0,89,1.43 +72037,96.0,10.0,10.0,10.0,10.0,9.0,10.0,119,1.59 +67944,60.0,8.0,2.0,10.0,10.0,8.0,4.0,1,0.05 +1770,,,,,,,,0, +27723,98.0,10.0,10.0,10.0,10.0,9.0,10.0,91,1.25 +59982,97.0,10.0,10.0,10.0,10.0,9.0,10.0,136,1.81 +75017,,,,,,,,0, +64056,93.0,9.0,9.0,10.0,9.0,9.0,9.0,8,0.11 +4178,97.0,10.0,9.0,10.0,10.0,9.0,9.0,136,1.78 +60703,,,,,,,,0, +9388,89.0,9.0,9.0,10.0,10.0,10.0,9.0,155,2.02 +43177,95.0,10.0,9.0,10.0,10.0,10.0,9.0,34,0.66 +74500,93.0,9.0,10.0,9.0,10.0,10.0,9.0,71,0.97 +19678,97.0,10.0,10.0,10.0,10.0,8.0,10.0,39,0.51 +68900,95.0,9.0,10.0,10.0,10.0,10.0,10.0,83,1.09 +64158,94.0,10.0,10.0,10.0,9.0,9.0,9.0,23,0.31 +67774,93.0,9.0,9.0,10.0,10.0,9.0,9.0,86,1.29 +62776,77.0,7.0,7.0,9.0,9.0,9.0,9.0,9,0.22 +9686,96.0,10.0,9.0,10.0,10.0,10.0,10.0,99,1.33 +67866,88.0,10.0,10.0,9.0,10.0,8.0,9.0,12,0.16 +11967,97.0,10.0,10.0,10.0,10.0,10.0,9.0,14,0.35 +17225,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.08 +57608,93.0,9.0,8.0,10.0,10.0,10.0,8.0,7,0.13 +37177,,,,,,,,0, +57947,90.0,9.0,9.0,10.0,10.0,9.0,9.0,48,0.8 +3183,88.0,9.0,9.0,9.0,9.0,9.0,9.0,335,4.49 +47552,99.0,10.0,10.0,10.0,10.0,10.0,10.0,76,1.09 +75888,97.0,10.0,9.0,10.0,10.0,9.0,9.0,74,1.02 +45223,94.0,9.0,10.0,9.0,9.0,10.0,9.0,21,0.28 +13108,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.13 +37325,92.0,9.0,9.0,10.0,10.0,9.0,9.0,37,0.48 +65500,96.0,9.0,10.0,10.0,10.0,10.0,9.0,106,1.38 +34785,92.0,10.0,9.0,10.0,10.0,9.0,9.0,46,0.62 +63899,91.0,9.0,8.0,9.0,10.0,8.0,9.0,20,0.26 +57152,97.0,10.0,10.0,9.0,9.0,10.0,10.0,2,0.03 +31400,83.0,9.0,9.0,7.0,8.0,9.0,8.0,15,0.24 +10451,98.0,10.0,10.0,10.0,10.0,10.0,10.0,208,2.77 +70735,96.0,10.0,9.0,9.0,9.0,9.0,9.0,10,0.18 +62134,93.0,9.0,9.0,10.0,10.0,10.0,9.0,93,1.37 +39175,98.0,10.0,10.0,10.0,10.0,9.0,9.0,19,0.28 +7783,,,,,,,,0, +72335,96.0,9.0,10.0,10.0,10.0,10.0,9.0,10,0.24 +64786,82.0,8.0,9.0,8.0,9.0,8.0,8.0,12,0.17 +67304,85.0,9.0,9.0,9.0,9.0,9.0,8.0,27,0.36 +28337,93.0,9.0,9.0,10.0,9.0,9.0,9.0,58,0.84 +76912,,,,,,,,0, +64303,75.0,7.0,9.0,10.0,10.0,9.0,7.0,4,0.06 +45847,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.16 +29752,89.0,10.0,9.0,10.0,9.0,9.0,9.0,18,0.28 +24596,88.0,8.0,9.0,10.0,9.0,9.0,9.0,106,1.93 +5420,88.0,9.0,10.0,10.0,10.0,10.0,9.0,50,0.66 +37953,95.0,10.0,9.0,10.0,10.0,10.0,9.0,4,0.06 +38100,,,,,,,,1,0.2 +14599,98.0,10.0,10.0,9.0,10.0,10.0,9.0,12,0.16 +38545,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.71 +75771,97.0,10.0,10.0,9.0,10.0,10.0,9.0,145,2.01 +11182,95.0,9.0,10.0,10.0,10.0,9.0,9.0,31,0.42 +44572,94.0,9.0,9.0,10.0,10.0,10.0,9.0,56,0.75 +71401,90.0,9.0,9.0,9.0,10.0,10.0,9.0,44,0.58 +73167,95.0,10.0,9.0,10.0,10.0,10.0,9.0,15,1.97 +59006,93.0,9.0,9.0,10.0,10.0,9.0,9.0,11,0.15 +75461,97.0,10.0,10.0,10.0,10.0,10.0,10.0,140,2.24 +11920,95.0,10.0,9.0,10.0,10.0,9.0,10.0,8,0.27 +70299,88.0,9.0,9.0,9.0,9.0,9.0,9.0,48,0.64 +13638,,,,,,,,0, +16918,75.0,7.0,7.0,8.0,8.0,8.0,6.0,6,0.09 +69569,91.0,9.0,9.0,10.0,10.0,10.0,9.0,224,2.97 +68375,,,,,,,,0, +29543,85.0,8.0,8.0,10.0,10.0,9.0,8.0,26,0.41 +13769,92.0,10.0,9.0,10.0,9.0,9.0,9.0,12,0.21 +43989,90.0,9.0,9.0,10.0,9.0,9.0,9.0,37,0.49 +22673,,,,,,,,0, +3702,87.0,10.0,9.0,8.0,9.0,8.0,9.0,3,0.05 +19748,60.0,7.0,9.0,7.0,8.0,10.0,8.0,4,0.06 +14556,97.0,10.0,10.0,10.0,10.0,10.0,10.0,53,0.7 +48156,89.0,9.0,9.0,10.0,10.0,9.0,9.0,43,0.65 +42218,96.0,10.0,10.0,10.0,10.0,8.0,10.0,130,1.77 +18014,80.0,8.0,6.0,6.0,8.0,10.0,8.0,2,0.03 +17668,100.0,9.0,9.0,10.0,10.0,9.0,9.0,3,0.05 +57697,89.0,9.0,9.0,9.0,9.0,10.0,9.0,99,1.31 +68210,77.0,8.0,8.0,8.0,8.0,6.0,8.0,1,0.02 +61217,94.0,9.0,9.0,10.0,10.0,9.0,9.0,47,0.83 +5990,93.0,10.0,9.0,10.0,10.0,9.0,10.0,116,1.54 +39548,98.0,10.0,10.0,10.0,10.0,10.0,10.0,96,1.27 +17175,85.0,9.0,8.0,10.0,10.0,9.0,9.0,20,0.26 +54051,96.0,10.0,10.0,10.0,10.0,9.0,9.0,41,0.54 +39829,97.0,10.0,10.0,10.0,10.0,10.0,9.0,86,1.14 +59542,97.0,10.0,10.0,10.0,10.0,9.0,9.0,49,0.66 +71954,96.0,10.0,10.0,10.0,10.0,9.0,9.0,28,0.38 +47799,91.0,10.0,9.0,10.0,10.0,9.0,10.0,37,0.54 +63733,97.0,10.0,10.0,10.0,10.0,10.0,9.0,228,3.02 +54178,86.0,9.0,9.0,9.0,9.0,9.0,9.0,86,1.15 +74153,96.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.19 +53961,100.0,9.0,10.0,10.0,10.0,10.0,10.0,3,0.04 +44037,97.0,9.0,10.0,10.0,10.0,10.0,10.0,7,0.12 +6953,95.0,10.0,10.0,9.0,10.0,9.0,9.0,53,0.77 +56416,91.0,9.0,9.0,9.0,10.0,10.0,9.0,24,0.32 +672,92.0,10.0,10.0,9.0,10.0,9.0,9.0,12,0.18 +21863,93.0,9.0,9.0,10.0,10.0,10.0,10.0,6,0.11 +75967,95.0,9.0,9.0,10.0,10.0,9.0,9.0,34,0.46 +69634,90.0,9.0,10.0,9.0,9.0,9.0,9.0,69,0.92 +53872,97.0,9.0,10.0,10.0,10.0,10.0,10.0,36,0.51 +13729,97.0,10.0,10.0,10.0,10.0,10.0,10.0,53,0.73 +48192,90.0,9.0,9.0,10.0,10.0,10.0,9.0,153,2.05 +59556,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.18 +63134,96.0,9.0,10.0,10.0,10.0,9.0,9.0,11,0.16 +70160,95.0,10.0,9.0,10.0,10.0,10.0,10.0,78,1.04 +18119,,,,,,,,0, +54167,,,,,,,,0, +29547,98.0,10.0,10.0,10.0,10.0,9.0,9.0,67,0.9 +52905,94.0,9.0,10.0,10.0,10.0,10.0,9.0,50,0.69 +41599,97.0,10.0,10.0,10.0,10.0,10.0,10.0,197,2.64 +15293,70.0,8.0,7.0,9.0,9.0,9.0,6.0,3,0.08 +27093,96.0,10.0,10.0,10.0,10.0,10.0,9.0,17,0.26 +29183,87.0,9.0,9.0,10.0,9.0,9.0,9.0,48,0.64 +66884,97.0,10.0,10.0,10.0,10.0,9.0,10.0,361,4.85 +74448,90.0,10.0,9.0,9.0,10.0,9.0,9.0,22,0.33 +64813,95.0,10.0,10.0,10.0,10.0,10.0,9.0,38,0.68 +10801,96.0,10.0,10.0,10.0,10.0,10.0,9.0,36,0.63 +27490,97.0,10.0,10.0,10.0,10.0,9.0,9.0,54,0.93 +17525,91.0,10.0,10.0,10.0,10.0,9.0,9.0,9,0.14 +2840,85.0,9.0,10.0,10.0,10.0,9.0,10.0,9,0.15 +44163,,,,,,,,0, +41100,97.0,10.0,10.0,10.0,10.0,10.0,10.0,32,0.52 +29858,91.0,9.0,9.0,10.0,10.0,10.0,9.0,42,0.6 +32206,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.21 +22390,70.0,9.0,9.0,8.0,8.0,8.0,8.0,5,0.07 +25958,,,,,,,,0, +50722,96.0,10.0,10.0,10.0,10.0,9.0,10.0,42,0.57 +61005,89.0,10.0,8.0,9.0,10.0,8.0,9.0,27,0.36 +49529,98.0,10.0,10.0,10.0,10.0,10.0,10.0,30,0.4 +15948,75.0,9.0,6.0,9.0,9.0,9.0,9.0,5,0.99 +6528,93.0,9.0,9.0,10.0,10.0,9.0,9.0,24,0.35 +43400,100.0,10.0,10.0,10.0,10.0,9.0,9.0,5,0.39 +6128,89.0,10.0,10.0,10.0,10.0,9.0,9.0,13,0.18 +5631,,,,,,,,0, +39441,98.0,10.0,10.0,10.0,10.0,9.0,10.0,31,0.52 +23999,,,,,,,,0, +12150,99.0,10.0,10.0,10.0,10.0,10.0,10.0,215,2.87 +58201,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +6846,92.0,8.0,9.0,10.0,10.0,9.0,9.0,5,0.07 +56509,85.0,9.0,9.0,9.0,9.0,8.0,9.0,27,0.36 +53786,96.0,10.0,10.0,10.0,10.0,10.0,10.0,230,3.07 +73006,91.0,10.0,9.0,10.0,10.0,9.0,9.0,7,0.12 +43030,98.0,10.0,10.0,10.0,10.0,10.0,10.0,44,0.59 +64586,94.0,9.0,9.0,9.0,10.0,9.0,10.0,28,0.65 +73096,96.0,10.0,10.0,10.0,10.0,9.0,10.0,78,1.07 +57911,97.0,10.0,10.0,10.0,10.0,9.0,10.0,205,2.74 +60069,95.0,9.0,9.0,9.0,10.0,9.0,9.0,24,0.36 +27766,98.0,10.0,10.0,10.0,10.0,10.0,10.0,175,2.41 +69426,96.0,10.0,10.0,10.0,10.0,10.0,9.0,88,1.18 +5824,93.0,9.0,9.0,10.0,10.0,9.0,9.0,46,0.66 +22471,86.0,9.0,9.0,9.0,10.0,8.0,9.0,32,0.53 +71225,97.0,10.0,10.0,10.0,10.0,9.0,10.0,50,0.69 +15161,98.0,10.0,10.0,10.0,10.0,10.0,10.0,45,0.6 +75598,91.0,8.0,9.0,10.0,10.0,9.0,9.0,18,0.32 +39029,,,,,,,,0, +66740,96.0,10.0,10.0,10.0,10.0,10.0,9.0,203,2.7 +23755,92.0,9.0,10.0,10.0,10.0,9.0,9.0,158,2.11 +30328,97.0,10.0,10.0,10.0,10.0,9.0,10.0,24,0.86 +67437,96.0,9.0,10.0,9.0,10.0,9.0,9.0,17,0.3 +53076,97.0,10.0,10.0,10.0,10.0,9.0,10.0,36,0.58 +16888,92.0,10.0,10.0,10.0,10.0,10.0,9.0,231,3.07 +39095,97.0,10.0,9.0,10.0,10.0,10.0,10.0,75,1.01 +17452,94.0,9.0,9.0,10.0,10.0,9.0,9.0,107,1.44 +33392,100.0,9.0,9.0,10.0,9.0,9.0,10.0,9,0.12 +69591,96.0,10.0,10.0,10.0,10.0,9.0,9.0,181,2.44 +46627,93.0,9.0,9.0,9.0,9.0,8.0,9.0,4,0.05 +63861,90.0,10.0,9.0,10.0,10.0,10.0,9.0,6,0.09 +59505,,,,,,,,0, +31511,84.0,10.0,9.0,8.0,7.0,9.0,9.0,11,0.15 +7054,96.0,10.0,10.0,10.0,10.0,9.0,9.0,122,3.15 +34280,95.0,10.0,10.0,10.0,10.0,9.0,9.0,140,1.89 +60196,94.0,10.0,10.0,10.0,9.0,10.0,9.0,309,4.11 +74963,95.0,10.0,9.0,10.0,10.0,9.0,9.0,21,0.3 +15909,94.0,10.0,10.0,10.0,10.0,10.0,9.0,217,2.89 +39946,92.0,9.0,10.0,10.0,10.0,10.0,9.0,269,3.57 +17099,97.0,10.0,10.0,10.0,10.0,10.0,10.0,139,1.86 +53384,94.0,9.0,9.0,10.0,10.0,10.0,9.0,34,0.5 +15898,98.0,10.0,10.0,10.0,10.0,10.0,10.0,75,1.08 +46035,,,,,,,,0, +8132,90.0,9.0,10.0,10.0,9.0,10.0,9.0,302,4.03 +51325,94.0,9.0,10.0,10.0,10.0,10.0,9.0,50,0.74 +20606,99.0,10.0,10.0,10.0,10.0,10.0,10.0,110,1.48 +15722,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,2.89 +6907,91.0,9.0,9.0,9.0,10.0,9.0,9.0,46,0.65 +2611,,,,,,,,0, +47661,95.0,9.0,9.0,9.0,9.0,10.0,9.0,15,0.2 +2011,,,,,,,,0, +42111,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.26 +20733,98.0,10.0,10.0,10.0,10.0,10.0,9.0,9,0.38 +32325,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +52960,60.0,4.0,6.0,8.0,8.0,10.0,6.0,2,0.03 +65553,77.0,8.0,8.0,9.0,8.0,9.0,9.0,7,0.1 +71816,91.0,9.0,10.0,10.0,10.0,10.0,9.0,279,3.73 +73025,97.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.09 +75651,94.0,9.0,10.0,10.0,10.0,10.0,9.0,304,4.06 +58480,90.0,9.0,9.0,9.0,10.0,9.0,9.0,146,1.97 +59141,97.0,10.0,10.0,10.0,10.0,10.0,10.0,20,0.59 +59336,86.0,9.0,9.0,9.0,9.0,8.0,8.0,51,0.72 +50250,95.0,10.0,10.0,10.0,10.0,10.0,9.0,52,0.7 +32444,97.0,10.0,10.0,10.0,10.0,9.0,10.0,63,0.84 +20920,93.0,9.0,9.0,10.0,10.0,9.0,9.0,15,0.23 +55731,91.0,9.0,10.0,10.0,10.0,9.0,9.0,10,0.16 +50045,98.0,10.0,10.0,10.0,10.0,9.0,10.0,54,0.73 +44347,94.0,10.0,9.0,9.0,9.0,9.0,9.0,120,1.72 +37175,70.0,6.0,6.0,10.0,9.0,8.0,6.0,4,0.07 +65052,98.0,10.0,10.0,10.0,10.0,9.0,10.0,135,1.81 +38898,93.0,10.0,9.0,10.0,10.0,9.0,9.0,6,0.08 +45190,99.0,10.0,10.0,10.0,10.0,10.0,9.0,31,0.45 +28781,95.0,10.0,10.0,10.0,9.0,10.0,9.0,8,1.46 +43619,90.0,10.0,10.0,10.0,9.0,10.0,8.0,2,0.03 +15132,93.0,10.0,9.0,9.0,10.0,9.0,9.0,16,0.22 +3835,90.0,9.0,9.0,10.0,9.0,9.0,9.0,4,0.13 +9898,90.0,10.0,9.0,10.0,10.0,9.0,9.0,18,0.47 +25652,90.0,9.0,10.0,10.0,10.0,9.0,9.0,2,0.05 +3997,95.0,10.0,9.0,10.0,10.0,9.0,9.0,66,0.91 +21645,91.0,9.0,9.0,9.0,10.0,10.0,9.0,35,0.57 +57774,85.0,9.0,8.0,9.0,9.0,7.0,9.0,51,0.69 +61177,93.0,10.0,9.0,10.0,10.0,9.0,9.0,107,1.48 +49331,98.0,10.0,10.0,10.0,10.0,10.0,10.0,199,2.72 +47306,70.0,9.0,8.0,8.0,9.0,9.0,9.0,4,0.06 +42860,96.0,10.0,10.0,10.0,10.0,10.0,9.0,24,0.34 +2829,93.0,10.0,10.0,10.0,10.0,10.0,9.0,227,3.06 +2246,94.0,10.0,10.0,10.0,10.0,10.0,9.0,226,3.1 +45541,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.09 +69839,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.36 +8142,93.0,10.0,9.0,10.0,10.0,9.0,9.0,144,2.6 +410,96.0,9.0,9.0,10.0,10.0,10.0,9.0,116,1.55 +5196,97.0,10.0,10.0,10.0,10.0,10.0,10.0,174,2.41 +27206,96.0,10.0,10.0,10.0,10.0,9.0,10.0,170,2.3 +55222,96.0,10.0,10.0,10.0,10.0,9.0,10.0,50,0.68 +58249,92.0,9.0,9.0,9.0,10.0,10.0,9.0,48,0.65 +13883,93.0,9.0,10.0,10.0,10.0,9.0,10.0,5,0.16 +66497,89.0,9.0,9.0,9.0,9.0,8.0,9.0,163,2.39 +39318,94.0,9.0,9.0,10.0,10.0,10.0,9.0,40,0.54 +32950,94.0,10.0,9.0,10.0,10.0,10.0,9.0,121,1.71 +32548,92.0,9.0,9.0,9.0,10.0,10.0,9.0,24,0.32 +16978,88.0,9.0,9.0,9.0,9.0,10.0,9.0,54,0.73 +47308,99.0,10.0,10.0,10.0,10.0,9.0,10.0,33,0.45 +72236,99.0,10.0,10.0,10.0,10.0,10.0,10.0,43,0.58 +69433,99.0,10.0,10.0,10.0,10.0,10.0,10.0,65,0.89 +13533,96.0,10.0,10.0,10.0,10.0,10.0,10.0,32,0.46 +60828,95.0,9.0,9.0,10.0,10.0,10.0,9.0,23,0.31 +15362,99.0,10.0,10.0,10.0,10.0,10.0,10.0,74,1.75 +35686,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.08 +19302,96.0,10.0,9.0,10.0,10.0,9.0,10.0,15,0.58 +31107,80.0,8.0,8.0,10.0,9.0,10.0,8.0,8,0.13 +74853,94.0,10.0,10.0,9.0,10.0,9.0,10.0,36,0.53 +76856,91.0,9.0,9.0,10.0,10.0,9.0,9.0,51,0.72 +12731,88.0,8.0,9.0,10.0,9.0,9.0,9.0,33,0.49 +1560,94.0,9.0,9.0,10.0,10.0,9.0,9.0,76,1.05 +18553,96.0,10.0,10.0,10.0,10.0,9.0,10.0,35,0.52 +63273,90.0,10.0,9.0,9.0,9.0,9.0,9.0,39,0.55 +55520,92.0,10.0,9.0,10.0,10.0,10.0,9.0,21,0.72 +46323,88.0,9.0,10.0,9.0,9.0,9.0,9.0,23,0.32 +76120,94.0,10.0,10.0,10.0,10.0,10.0,10.0,34,0.5 +21733,92.0,9.0,9.0,9.0,10.0,10.0,9.0,77,1.04 +12598,98.0,10.0,10.0,10.0,10.0,9.0,9.0,36,0.6 +55875,94.0,10.0,10.0,10.0,10.0,10.0,9.0,62,0.91 +7551,93.0,10.0,10.0,10.0,9.0,10.0,9.0,332,4.47 +76697,100.0,9.0,9.0,10.0,10.0,10.0,10.0,3,0.05 +66338,96.0,10.0,9.0,10.0,10.0,9.0,10.0,132,1.79 +47794,100.0,10.0,10.0,10.0,10.0,10.0,10.0,45,0.63 +58603,98.0,10.0,10.0,9.0,9.0,9.0,9.0,14,0.21 +25457,89.0,8.0,8.0,10.0,10.0,9.0,8.0,17,0.23 +53141,100.0,10.0,10.0,10.0,10.0,10.0,10.0,20,0.4 +21785,98.0,10.0,10.0,10.0,10.0,9.0,10.0,43,0.58 +8581,94.0,10.0,9.0,10.0,10.0,10.0,9.0,17,0.42 +64511,99.0,10.0,10.0,10.0,10.0,10.0,10.0,85,1.16 +73002,88.0,9.0,8.0,9.0,9.0,9.0,9.0,52,0.71 +71609,97.0,10.0,10.0,10.0,10.0,10.0,9.0,58,0.78 +774,,,,,,,,0, +37414,,,,,,,,1,0.01 +24532,93.0,10.0,9.0,10.0,10.0,9.0,10.0,23,0.34 +10824,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.01 +40614,90.0,9.0,9.0,9.0,9.0,10.0,9.0,158,2.13 +13906,97.0,10.0,10.0,10.0,10.0,9.0,10.0,148,2.01 +73827,97.0,10.0,10.0,10.0,10.0,9.0,9.0,13,0.21 +7722,90.0,9.0,9.0,10.0,10.0,9.0,8.0,7,0.2 +30318,89.0,9.0,10.0,10.0,10.0,9.0,10.0,13,0.2 +5385,98.0,10.0,10.0,10.0,10.0,9.0,9.0,32,0.47 +76013,98.0,10.0,10.0,10.0,10.0,10.0,10.0,118,1.63 +14251,94.0,10.0,9.0,10.0,10.0,9.0,10.0,36,0.51 +14160,100.0,10.0,10.0,10.0,10.0,9.0,10.0,11,0.15 +37942,,,,,,,,0, +52669,98.0,10.0,10.0,10.0,10.0,10.0,9.0,88,1.21 +40174,91.0,9.0,9.0,10.0,10.0,8.0,9.0,17,0.26 +66572,94.0,9.0,10.0,10.0,10.0,9.0,9.0,12,0.17 +11151,95.0,10.0,8.0,10.0,10.0,9.0,10.0,2,0.03 +60772,,,,,,,,0, +34260,99.0,10.0,10.0,10.0,10.0,10.0,10.0,85,1.5 +71999,,,,,,,,0, +771,80.0,7.0,8.0,9.0,10.0,6.0,7.0,3,0.04 +11872,97.0,10.0,10.0,10.0,10.0,9.0,10.0,16,0.22 +74574,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.04 +5147,,,,,,,,0, +32012,93.0,10.0,10.0,10.0,10.0,9.0,10.0,53,0.73 +75995,95.0,10.0,10.0,10.0,10.0,10.0,9.0,210,2.92 +12764,94.0,10.0,9.0,10.0,10.0,9.0,9.0,73,1.05 +28765,89.0,9.0,9.0,10.0,10.0,9.0,9.0,200,2.73 +60355,88.0,10.0,9.0,10.0,10.0,10.0,8.0,10,0.16 +15116,,,,,,,,0, +36083,98.0,10.0,10.0,10.0,10.0,10.0,10.0,139,1.91 +34946,100.0,8.0,6.0,10.0,10.0,9.0,9.0,3,0.64 +16529,97.0,10.0,10.0,10.0,10.0,10.0,9.0,25,0.42 +76549,98.0,10.0,10.0,10.0,10.0,9.0,10.0,13,0.18 +36541,76.0,9.0,6.0,8.0,8.0,9.0,8.0,9,0.17 +35173,99.0,10.0,10.0,10.0,10.0,10.0,9.0,28,0.41 +67810,96.0,10.0,9.0,10.0,10.0,10.0,10.0,42,0.58 +42422,97.0,10.0,9.0,10.0,10.0,9.0,9.0,39,0.54 +57488,,,,,,,,0, +44337,93.0,10.0,8.0,9.0,10.0,9.0,9.0,17,0.23 +46931,100.0,10.0,10.0,10.0,10.0,9.0,9.0,4,0.07 +23741,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.44 +18300,99.0,10.0,10.0,10.0,10.0,10.0,10.0,43,0.79 +45184,93.0,9.0,9.0,10.0,10.0,10.0,9.0,10,0.15 +45621,,,,,,,,0, +37078,99.0,10.0,10.0,10.0,10.0,10.0,10.0,33,0.52 +9523,83.0,9.0,9.0,10.0,9.0,9.0,8.0,49,0.71 +3856,95.0,9.0,10.0,10.0,10.0,10.0,10.0,8,0.11 +55703,79.0,8.0,8.0,9.0,9.0,8.0,8.0,35,0.51 +50107,91.0,9.0,9.0,10.0,10.0,10.0,9.0,34,1.08 +35743,92.0,9.0,9.0,9.0,9.0,9.0,9.0,38,0.52 +73063,97.0,10.0,9.0,10.0,10.0,9.0,10.0,69,1.04 +53220,,,,,,,,0, +16352,97.0,10.0,10.0,10.0,10.0,9.0,10.0,231,3.16 +76953,,,,,,,,0, +30134,,,,,,,,1,0.15 +70913,93.0,10.0,9.0,9.0,9.0,10.0,10.0,19,0.38 +14836,84.0,9.0,8.0,9.0,9.0,8.0,9.0,18,0.28 +62656,92.0,9.0,9.0,10.0,10.0,9.0,9.0,81,1.23 +66752,97.0,10.0,9.0,10.0,10.0,10.0,10.0,409,5.57 +16139,94.0,9.0,9.0,10.0,10.0,9.0,9.0,7,0.11 +68516,,,,,,,,0, +7477,96.0,10.0,10.0,10.0,10.0,10.0,10.0,39,0.59 +1242,99.0,10.0,10.0,10.0,10.0,10.0,10.0,80,1.17 +17043,90.0,9.0,10.0,10.0,10.0,9.0,9.0,2,0.08 +36230,,,,,,,,0, +15422,95.0,10.0,9.0,10.0,10.0,10.0,9.0,108,1.47 +47511,92.0,9.0,9.0,10.0,10.0,9.0,9.0,19,0.44 +74161,85.0,8.0,8.0,10.0,10.0,9.0,9.0,87,1.19 +3640,100.0,10.0,9.0,10.0,10.0,9.0,10.0,4,0.12 +48638,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.17 +53360,93.0,10.0,10.0,10.0,9.0,10.0,9.0,8,0.33 +62492,98.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.19 +40998,100.0,10.0,10.0,9.0,10.0,10.0,10.0,6,0.09 +41394,94.0,9.0,10.0,10.0,10.0,10.0,9.0,18,0.77 +20341,97.0,10.0,10.0,10.0,10.0,10.0,10.0,22,0.34 +52150,,,,,,,,0, +23650,100.0,9.0,9.0,10.0,10.0,9.0,8.0,3,0.04 +20068,94.0,10.0,10.0,10.0,9.0,9.0,9.0,38,0.54 +10250,93.0,9.0,9.0,10.0,10.0,9.0,9.0,62,0.86 +19493,95.0,10.0,8.0,10.0,10.0,10.0,10.0,20,0.73 +13559,83.0,7.0,8.0,9.0,9.0,9.0,9.0,17,0.24 +33705,98.0,10.0,10.0,10.0,10.0,9.0,10.0,110,1.57 +19718,98.0,10.0,10.0,10.0,10.0,9.0,10.0,181,2.51 +66932,88.0,9.0,9.0,9.0,9.0,10.0,8.0,66,1.0 +2651,88.0,9.0,9.0,9.0,10.0,9.0,9.0,22,0.3 +730,99.0,10.0,10.0,10.0,10.0,10.0,10.0,290,4.37 +42907,84.0,9.0,8.0,9.0,9.0,9.0,8.0,28,0.39 +35710,88.0,9.0,9.0,10.0,10.0,10.0,9.0,171,2.52 +56734,87.0,9.0,9.0,9.0,9.0,9.0,9.0,32,0.48 +2367,,,,,,,,0, +29710,,,,,,,,0, +29650,93.0,10.0,10.0,10.0,10.0,10.0,9.0,67,0.94 +2876,,,,,,,,0, +14617,90.0,9.0,9.0,10.0,10.0,9.0,9.0,65,0.95 +66782,88.0,9.0,8.0,9.0,10.0,9.0,9.0,46,1.53 +14578,96.0,10.0,10.0,9.0,10.0,9.0,10.0,24,0.35 +33703,90.0,9.0,9.0,10.0,10.0,10.0,9.0,33,0.49 +7844,98.0,9.0,10.0,10.0,10.0,9.0,10.0,12,0.19 +5344,96.0,10.0,10.0,10.0,10.0,9.0,10.0,24,0.36 +48668,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.33 +46641,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.15 +19229,98.0,9.0,10.0,10.0,10.0,10.0,9.0,9,0.14 +10480,83.0,9.0,9.0,9.0,9.0,9.0,8.0,52,0.72 +48799,80.0,8.0,9.0,9.0,9.0,9.0,8.0,3,0.1 +39687,100.0,10.0,10.0,9.0,10.0,9.0,10.0,9,0.12 +9761,,,,,,,,0, +4307,97.0,10.0,10.0,10.0,10.0,10.0,9.0,186,2.58 +72569,82.0,8.0,8.0,9.0,9.0,9.0,9.0,9,0.15 +62160,100.0,8.0,10.0,10.0,10.0,8.0,8.0,2,0.03 +76664,90.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.09 +51019,92.0,10.0,9.0,10.0,10.0,9.0,9.0,10,0.15 +1379,96.0,10.0,10.0,10.0,10.0,10.0,9.0,178,3.42 +68530,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.1 +34987,94.0,9.0,9.0,10.0,10.0,8.0,9.0,96,1.33 +14473,100.0,9.0,9.0,10.0,10.0,10.0,9.0,3,0.04 +43174,96.0,10.0,10.0,10.0,10.0,9.0,9.0,87,2.24 +32064,98.0,10.0,10.0,10.0,10.0,9.0,10.0,46,0.65 +17262,91.0,10.0,8.0,10.0,10.0,10.0,9.0,50,0.72 +14067,91.0,9.0,9.0,10.0,9.0,9.0,9.0,72,1.01 +56427,95.0,10.0,8.0,10.0,10.0,10.0,9.0,14,0.35 +13543,89.0,9.0,9.0,9.0,9.0,9.0,9.0,57,1.04 +41370,86.0,9.0,8.0,9.0,9.0,9.0,8.0,7,0.1 +43886,96.0,10.0,9.0,10.0,10.0,10.0,9.0,123,1.72 +26630,85.0,9.0,9.0,9.0,9.0,9.0,9.0,30,0.42 +11923,93.0,9.0,10.0,9.0,9.0,9.0,9.0,11,0.37 +22282,80.0,8.0,8.0,8.0,10.0,10.0,8.0,3,0.05 +49506,88.0,10.0,10.0,9.0,9.0,9.0,9.0,10,0.31 +45634,97.0,10.0,10.0,10.0,10.0,10.0,10.0,43,1.68 +60089,94.0,10.0,10.0,10.0,10.0,10.0,9.0,72,1.09 +72765,,,,,,,,0, +36801,97.0,10.0,10.0,10.0,10.0,8.0,10.0,3,0.04 +44417,,,,,,,,0, +26347,80.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.02 +37298,98.0,10.0,10.0,10.0,10.0,9.0,10.0,12,0.17 +42837,97.0,10.0,10.0,10.0,10.0,9.0,10.0,167,2.39 +45418,87.0,9.0,8.0,9.0,9.0,9.0,9.0,43,0.63 +33611,95.0,10.0,10.0,10.0,10.0,10.0,9.0,52,0.96 +70117,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +72404,98.0,10.0,10.0,10.0,10.0,10.0,10.0,84,1.16 +44226,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.11 +58905,100.0,9.0,10.0,10.0,8.0,9.0,8.0,4,0.07 +38995,97.0,10.0,10.0,10.0,10.0,10.0,9.0,67,0.93 +43501,95.0,9.0,9.0,10.0,10.0,9.0,9.0,19,0.45 +22688,92.0,9.0,9.0,10.0,10.0,10.0,9.0,122,1.69 +55483,95.0,10.0,9.0,10.0,10.0,9.0,9.0,70,1.02 +37320,96.0,9.0,10.0,10.0,10.0,10.0,9.0,52,0.71 +59164,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +13314,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.06 +53905,92.0,10.0,9.0,10.0,9.0,9.0,9.0,36,0.53 +57271,93.0,9.0,9.0,9.0,10.0,9.0,9.0,29,0.44 +69021,93.0,9.0,9.0,10.0,10.0,10.0,9.0,29,0.9 +913,85.0,9.0,9.0,10.0,10.0,10.0,9.0,4,0.07 +50985,,,,,,,,0, +53305,90.0,9.0,8.0,10.0,10.0,9.0,9.0,55,0.79 +53815,77.0,8.0,7.0,9.0,9.0,10.0,8.0,20,0.29 +21566,97.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.57 +50929,97.0,10.0,9.0,9.0,10.0,9.0,10.0,14,0.87 +444,92.0,10.0,9.0,10.0,9.0,10.0,9.0,142,1.97 +65905,94.0,10.0,10.0,10.0,9.0,10.0,10.0,30,0.44 +21688,98.0,10.0,10.0,10.0,10.0,9.0,10.0,110,2.15 +11121,75.0,7.0,7.0,10.0,9.0,7.0,8.0,4,0.06 +42873,100.0,8.0,10.0,10.0,10.0,8.0,10.0,1,0.07 +72786,80.0,10.0,10.0,8.0,8.0,6.0,8.0,1,0.03 +64100,97.0,10.0,9.0,10.0,10.0,10.0,9.0,7,0.13 +35469,89.0,10.0,9.0,9.0,10.0,8.0,9.0,18,0.25 +27438,,,,,,,,0, +31858,98.0,10.0,10.0,10.0,10.0,10.0,9.0,13,0.19 +48382,92.0,9.0,8.0,9.0,10.0,10.0,8.0,13,0.19 +32495,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.07 +16793,92.0,10.0,9.0,10.0,10.0,9.0,10.0,12,0.3 +20905,,,,,,,,0, +24673,92.0,10.0,10.0,10.0,10.0,10.0,9.0,90,1.26 +71628,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +49125,94.0,10.0,9.0,10.0,10.0,10.0,9.0,19,0.29 +11326,87.0,8.0,8.0,9.0,9.0,9.0,9.0,57,0.83 +52972,,,,,,,,0, +55818,87.0,9.0,9.0,9.0,9.0,9.0,8.0,21,0.37 +1069,94.0,10.0,9.0,10.0,10.0,9.0,10.0,32,0.45 +42522,93.0,10.0,9.0,9.0,10.0,9.0,9.0,93,1.31 +41635,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.18 +64026,96.0,10.0,10.0,10.0,10.0,10.0,10.0,19,0.26 +57036,94.0,10.0,9.0,10.0,10.0,9.0,10.0,175,2.48 +13508,95.0,10.0,9.0,10.0,10.0,10.0,10.0,79,1.16 +27130,88.0,9.0,9.0,10.0,10.0,10.0,9.0,193,2.71 +57283,90.0,10.0,10.0,10.0,10.0,9.0,9.0,28,0.43 +45979,97.0,10.0,9.0,10.0,10.0,9.0,10.0,153,2.21 +36744,83.0,9.0,10.0,9.0,9.0,8.0,9.0,138,2.0 +21023,82.0,9.0,9.0,8.0,8.0,9.0,8.0,27,0.38 +69742,93.0,9.0,9.0,10.0,10.0,9.0,9.0,8,0.11 +75131,,,,,,,,0, +43221,97.0,10.0,9.0,10.0,10.0,9.0,9.0,49,0.74 +20256,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.06 +38737,94.0,9.0,10.0,10.0,10.0,9.0,9.0,114,2.16 +27144,100.0,9.0,8.0,9.0,10.0,9.0,9.0,2,0.03 +65813,88.0,9.0,8.0,10.0,9.0,9.0,9.0,22,0.34 +7322,99.0,10.0,10.0,10.0,10.0,10.0,10.0,452,6.67 +18817,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.12 +161,94.0,10.0,9.0,10.0,10.0,9.0,10.0,190,2.69 +52285,95.0,10.0,9.0,10.0,10.0,9.0,9.0,202,2.92 +19758,92.0,9.0,9.0,10.0,10.0,10.0,9.0,48,0.75 +73498,93.0,9.0,9.0,10.0,10.0,9.0,10.0,55,0.77 +5845,96.0,10.0,10.0,10.0,10.0,9.0,9.0,101,1.43 +13260,80.0,8.0,9.0,9.0,9.0,9.0,7.0,3,0.08 +21820,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.04 +68092,95.0,9.0,9.0,10.0,10.0,10.0,9.0,155,3.01 +9821,97.0,10.0,9.0,10.0,10.0,10.0,10.0,117,1.71 +13862,96.0,10.0,10.0,10.0,10.0,10.0,10.0,46,0.66 +13012,92.0,9.0,8.0,9.0,9.0,9.0,9.0,18,0.26 +43853,96.0,10.0,10.0,10.0,10.0,9.0,10.0,67,1.02 +10833,94.0,10.0,9.0,10.0,10.0,9.0,10.0,247,3.73 +55854,91.0,10.0,10.0,10.0,10.0,10.0,9.0,7,0.35 +5212,,,,,,,,0, +39145,92.0,10.0,9.0,10.0,9.0,9.0,9.0,113,1.81 +12498,89.0,9.0,9.0,10.0,10.0,10.0,9.0,170,2.39 +29243,96.0,10.0,9.0,10.0,10.0,10.0,10.0,80,1.12 +55330,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.06 +67427,20.0,2.0,2.0,4.0,2.0,6.0,2.0,2,0.12 +3242,92.0,9.0,9.0,10.0,10.0,10.0,9.0,117,1.77 +76178,99.0,10.0,10.0,10.0,10.0,10.0,10.0,30,0.48 +44807,96.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.32 +73022,,,,,,,,0, +41865,100.0,10.0,10.0,10.0,10.0,8.0,10.0,3,0.04 +43614,100.0,8.0,10.0,10.0,10.0,8.0,8.0,2,0.03 +60600,98.0,9.0,9.0,10.0,10.0,9.0,9.0,9,0.15 +70614,96.0,10.0,10.0,10.0,10.0,8.0,9.0,2,0.03 +10213,,,,,,,,0, +18800,97.0,10.0,10.0,10.0,10.0,10.0,10.0,81,1.14 +13438,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.18 +75438,100.0,10.0,10.0,10.0,10.0,9.0,9.0,2,0.05 +74045,99.0,10.0,10.0,10.0,10.0,10.0,10.0,29,1.31 +10897,90.0,8.0,8.0,10.0,10.0,9.0,9.0,9,0.13 +31938,96.0,10.0,10.0,10.0,10.0,10.0,10.0,148,2.1 +14138,99.0,10.0,10.0,10.0,10.0,10.0,10.0,96,1.39 +38979,98.0,10.0,10.0,10.0,10.0,10.0,10.0,54,0.85 +511,95.0,10.0,9.0,10.0,10.0,10.0,9.0,35,0.52 +55069,96.0,10.0,10.0,10.0,10.0,9.0,10.0,50,0.88 +20492,89.0,9.0,9.0,10.0,10.0,9.0,9.0,36,1.47 +13144,83.0,9.0,8.0,9.0,9.0,8.0,8.0,258,3.74 +39702,96.0,10.0,10.0,10.0,10.0,8.0,9.0,83,1.22 +24327,87.0,9.0,9.0,10.0,10.0,9.0,8.0,3,0.06 +64117,,,,,,,,0, +45390,98.0,10.0,10.0,10.0,10.0,9.0,10.0,14,0.2 +58422,94.0,9.0,10.0,10.0,10.0,10.0,9.0,48,0.69 +4116,96.0,9.0,10.0,10.0,10.0,10.0,9.0,15,0.24 +33626,89.0,9.0,9.0,10.0,10.0,9.0,9.0,163,3.03 +73722,97.0,10.0,10.0,10.0,10.0,10.0,10.0,111,1.6 +39669,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.14 +39826,95.0,10.0,10.0,10.0,10.0,9.0,9.0,75,1.08 +50700,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.12 +42406,90.0,9.0,9.0,10.0,9.0,9.0,9.0,22,0.33 +31558,95.0,10.0,9.0,10.0,10.0,10.0,9.0,125,1.78 +11653,97.0,10.0,10.0,10.0,10.0,10.0,10.0,119,1.79 +36899,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.04 +8439,96.0,9.0,9.0,10.0,10.0,9.0,9.0,46,0.7 +27149,95.0,9.0,9.0,10.0,10.0,10.0,9.0,35,0.5 +71722,97.0,10.0,10.0,10.0,10.0,10.0,10.0,52,0.76 +6541,93.0,9.0,8.0,9.0,10.0,10.0,10.0,4,0.06 +3320,80.0,8.0,6.0,9.0,9.0,9.0,8.0,6,0.22 +32793,95.0,10.0,10.0,10.0,10.0,10.0,9.0,91,1.31 +30810,92.0,9.0,9.0,10.0,10.0,9.0,9.0,31,0.51 +31075,92.0,9.0,9.0,10.0,10.0,10.0,10.0,6,0.09 +30014,86.0,9.0,8.0,8.0,9.0,8.0,9.0,14,0.23 +6439,,,,,,,,0, +26354,88.0,9.0,8.0,9.0,9.0,8.0,9.0,23,0.34 +9050,,,,,,,,0, +17250,89.0,9.0,9.0,10.0,10.0,9.0,9.0,11,0.17 +64246,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +16925,,,,,,,,0, +47611,80.0,10.0,8.0,10.0,8.0,7.0,8.0,2,0.05 +28173,97.0,10.0,10.0,10.0,10.0,9.0,10.0,81,1.15 +7806,,,,,,,,0, +75306,97.0,10.0,10.0,10.0,10.0,9.0,10.0,92,1.34 +24701,95.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.06 +39407,96.0,10.0,10.0,10.0,10.0,9.0,9.0,118,1.76 +75605,94.0,10.0,9.0,10.0,10.0,9.0,9.0,187,2.69 +13870,94.0,10.0,10.0,10.0,10.0,9.0,9.0,122,1.74 +71765,96.0,10.0,10.0,10.0,10.0,9.0,9.0,10,0.14 +59832,99.0,10.0,10.0,10.0,10.0,10.0,10.0,129,1.82 +58645,,,,,,,,0, +12857,95.0,10.0,10.0,10.0,10.0,10.0,10.0,151,2.18 +34003,100.0,10.0,9.0,10.0,10.0,10.0,10.0,11,1.3 +28990,97.0,10.0,10.0,10.0,10.0,10.0,9.0,80,1.45 +58017,97.0,10.0,9.0,10.0,10.0,10.0,9.0,40,0.57 +74584,98.0,10.0,9.0,10.0,10.0,10.0,10.0,22,0.32 +11694,92.0,9.0,9.0,9.0,9.0,9.0,9.0,78,1.13 +13680,96.0,9.0,9.0,10.0,9.0,9.0,9.0,177,2.55 +63590,91.0,10.0,9.0,9.0,9.0,9.0,9.0,148,2.33 +53906,100.0,10.0,10.0,10.0,10.0,9.0,10.0,11,0.16 +71992,94.0,10.0,9.0,10.0,10.0,9.0,9.0,141,2.01 +48840,89.0,8.0,8.0,10.0,10.0,9.0,9.0,24,0.34 +18326,96.0,10.0,9.0,9.0,10.0,10.0,10.0,6,0.1 +67994,90.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +52466,96.0,10.0,10.0,10.0,10.0,9.0,10.0,127,1.82 +52379,97.0,10.0,10.0,10.0,10.0,10.0,10.0,22,0.32 +70278,96.0,10.0,10.0,10.0,10.0,9.0,9.0,49,1.22 +69176,86.0,9.0,8.0,9.0,9.0,9.0,9.0,35,0.5 +37377,89.0,9.0,8.0,9.0,9.0,9.0,9.0,58,0.85 +12618,92.0,9.0,9.0,9.0,10.0,10.0,9.0,131,2.29 +68554,95.0,10.0,10.0,9.0,9.0,9.0,10.0,17,0.25 +45367,,,,,,,,0, +57034,100.0,10.0,10.0,10.0,10.0,9.0,10.0,40,0.57 +38442,93.0,10.0,10.0,10.0,10.0,9.0,9.0,14,0.2 +58392,92.0,9.0,9.0,10.0,10.0,10.0,9.0,25,0.36 +50912,88.0,9.0,9.0,9.0,9.0,9.0,8.0,26,0.4 +25459,95.0,9.0,9.0,10.0,10.0,9.0,10.0,108,1.55 +49650,95.0,10.0,9.0,10.0,10.0,8.0,9.0,111,1.65 +37785,80.0,8.0,7.0,9.0,10.0,10.0,8.0,7,0.12 +16922,95.0,10.0,10.0,10.0,10.0,9.0,9.0,230,3.31 +41086,98.0,10.0,10.0,10.0,10.0,10.0,10.0,44,0.63 +35685,94.0,10.0,10.0,10.0,10.0,9.0,9.0,18,0.26 +14994,87.0,9.0,9.0,9.0,10.0,9.0,9.0,93,1.34 +61932,96.0,10.0,9.0,10.0,10.0,9.0,10.0,17,0.32 +6771,80.0,7.0,7.0,9.0,9.0,8.0,8.0,3,0.08 +48412,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.21 +64221,95.0,10.0,9.0,10.0,10.0,9.0,9.0,50,0.78 +21890,94.0,10.0,9.0,10.0,10.0,9.0,10.0,179,2.9 +65606,80.0,9.0,7.0,9.0,9.0,8.0,9.0,7,1.3 +77058,98.0,10.0,10.0,10.0,10.0,10.0,10.0,33,0.79 +65945,99.0,10.0,10.0,10.0,10.0,10.0,10.0,52,0.76 +6326,99.0,10.0,10.0,10.0,10.0,9.0,10.0,24,0.36 +56847,93.0,9.0,9.0,10.0,9.0,9.0,9.0,31,0.55 +9336,97.0,10.0,10.0,10.0,10.0,9.0,10.0,20,0.33 +6403,94.0,10.0,10.0,10.0,10.0,9.0,10.0,420,6.01 +27049,93.0,9.0,10.0,10.0,10.0,10.0,9.0,56,0.81 +30952,100.0,10.0,10.0,10.0,10.0,9.0,10.0,51,0.87 +38565,98.0,10.0,10.0,10.0,10.0,10.0,10.0,195,3.36 +37036,95.0,10.0,9.0,10.0,10.0,9.0,9.0,36,0.53 +67009,95.0,10.0,10.0,10.0,10.0,10.0,9.0,143,2.09 +21141,92.0,10.0,8.0,10.0,10.0,9.0,9.0,4,0.06 +49114,91.0,8.0,9.0,9.0,9.0,9.0,9.0,17,0.24 +29345,95.0,10.0,10.0,10.0,10.0,9.0,9.0,280,4.09 +27602,96.0,10.0,10.0,10.0,10.0,10.0,10.0,281,4.04 +63908,91.0,9.0,8.0,10.0,10.0,9.0,9.0,20,0.3 +23953,93.0,10.0,9.0,9.0,9.0,8.0,9.0,20,0.3 +12372,,,,,,,,0, +72898,88.0,9.0,9.0,10.0,10.0,9.0,9.0,17,0.44 +11004,100.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.16 +36428,86.0,8.0,9.0,9.0,9.0,9.0,9.0,40,0.59 +72111,93.0,9.0,9.0,10.0,10.0,9.0,9.0,3,0.04 +8498,84.0,9.0,9.0,9.0,9.0,8.0,9.0,187,4.34 +10038,72.0,8.0,8.0,8.0,8.0,8.0,8.0,5,0.07 +19902,93.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.07 +19884,,,,,,,,0, +41539,96.0,10.0,10.0,10.0,10.0,10.0,10.0,192,2.96 +12280,86.0,9.0,9.0,9.0,9.0,10.0,9.0,29,0.42 +54212,89.0,9.0,9.0,10.0,10.0,10.0,9.0,34,0.52 +50109,96.0,10.0,9.0,10.0,10.0,10.0,10.0,10,0.15 +16694,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.03 +43347,95.0,9.0,10.0,10.0,10.0,9.0,9.0,11,0.17 +72570,100.0,10.0,10.0,10.0,10.0,10.0,10.0,36,0.51 +19729,89.0,8.0,7.0,9.0,9.0,8.0,8.0,8,0.12 +32358,85.0,9.0,8.0,9.0,10.0,9.0,9.0,83,1.32 +32874,98.0,10.0,10.0,10.0,10.0,9.0,10.0,12,0.17 +73214,96.0,10.0,9.0,10.0,10.0,10.0,9.0,54,0.78 +72637,98.0,10.0,10.0,10.0,10.0,10.0,9.0,30,0.43 +13168,83.0,8.0,8.0,9.0,9.0,9.0,8.0,153,2.32 +68844,99.0,10.0,10.0,10.0,10.0,10.0,10.0,20,1.31 +72592,98.0,10.0,10.0,9.0,9.0,9.0,10.0,12,0.18 +48691,96.0,10.0,9.0,10.0,10.0,9.0,10.0,50,0.72 +74895,91.0,9.0,9.0,10.0,10.0,9.0,9.0,276,4.0 +35545,90.0,9.0,9.0,9.0,10.0,9.0,9.0,187,2.81 +28339,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.06 +45721,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.13 +56172,,,,,,,,0, +27402,91.0,9.0,9.0,9.0,9.0,9.0,9.0,49,0.85 +66167,95.0,9.0,10.0,10.0,10.0,10.0,9.0,66,0.94 +6919,79.0,9.0,7.0,9.0,9.0,9.0,8.0,48,0.73 +33607,90.0,9.0,9.0,10.0,10.0,9.0,9.0,165,2.38 +47327,87.0,9.0,9.0,9.0,9.0,9.0,9.0,349,5.05 +39167,91.0,9.0,9.0,10.0,10.0,9.0,9.0,58,0.86 +3592,93.0,9.0,9.0,9.0,10.0,9.0,9.0,54,0.78 +49729,88.0,9.0,9.0,10.0,9.0,9.0,9.0,8,0.19 +17931,93.0,10.0,10.0,9.0,10.0,7.0,9.0,3,0.24 +49891,96.0,10.0,9.0,10.0,10.0,10.0,10.0,69,1.54 +38019,97.0,10.0,9.0,10.0,10.0,10.0,9.0,37,0.56 +60505,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.38 +51723,97.0,9.0,10.0,10.0,10.0,10.0,10.0,21,0.31 +28660,97.0,9.0,9.0,10.0,10.0,10.0,9.0,12,0.18 +57099,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.19 +30143,99.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.38 +39993,94.0,10.0,9.0,10.0,10.0,10.0,9.0,63,0.95 +65804,95.0,10.0,9.0,10.0,10.0,9.0,10.0,16,0.3 +32923,90.0,9.0,8.0,9.0,8.0,7.0,9.0,3,0.05 +3700,98.0,10.0,10.0,10.0,10.0,10.0,10.0,61,0.97 +56773,96.0,9.0,10.0,10.0,10.0,10.0,10.0,37,0.56 +31752,91.0,9.0,9.0,9.0,10.0,9.0,9.0,20,0.32 +43385,99.0,10.0,10.0,10.0,10.0,9.0,10.0,76,1.12 +35268,95.0,10.0,9.0,10.0,10.0,9.0,9.0,46,0.66 +42318,95.0,10.0,9.0,10.0,10.0,9.0,9.0,15,0.22 +71053,87.0,9.0,8.0,8.0,8.0,8.0,8.0,13,0.2 +33223,94.0,10.0,9.0,10.0,10.0,10.0,9.0,100,1.43 +46827,,,,,,,,0, +41366,99.0,10.0,10.0,10.0,10.0,10.0,10.0,43,0.77 +46703,95.0,10.0,10.0,10.0,10.0,9.0,10.0,13,0.19 +59287,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.75 +49696,92.0,10.0,9.0,10.0,10.0,8.0,9.0,5,0.08 +57165,95.0,10.0,9.0,10.0,10.0,10.0,10.0,50,0.74 +19727,87.0,8.0,8.0,9.0,9.0,9.0,8.0,11,0.16 +55227,,,,,,,,3,0.2 +8366,84.0,8.0,8.0,10.0,9.0,9.0,9.0,32,0.46 +28427,92.0,9.0,9.0,10.0,10.0,9.0,9.0,324,4.7 +14894,94.0,10.0,10.0,10.0,10.0,9.0,9.0,334,4.9 +28859,94.0,9.0,10.0,10.0,10.0,10.0,9.0,307,4.5 +34975,94.0,10.0,10.0,10.0,10.0,10.0,10.0,339,4.94 +62432,,,,,,,,0, +47093,95.0,10.0,10.0,10.0,10.0,9.0,10.0,73,1.08 +51688,98.0,10.0,10.0,10.0,10.0,10.0,10.0,160,2.34 +28735,90.0,10.0,10.0,10.0,9.0,8.0,10.0,2,0.04 +53392,87.0,9.0,9.0,9.0,10.0,9.0,8.0,3,0.12 +73597,99.0,10.0,10.0,10.0,10.0,10.0,10.0,166,2.41 +52685,99.0,10.0,10.0,10.0,10.0,10.0,10.0,20,0.3 +42222,98.0,10.0,10.0,10.0,10.0,10.0,10.0,63,0.93 +12645,98.0,10.0,10.0,10.0,10.0,9.0,10.0,82,1.23 +54110,96.0,10.0,9.0,10.0,10.0,10.0,9.0,10,0.15 +62922,94.0,9.0,10.0,9.0,9.0,10.0,9.0,47,0.68 +12131,,,,,,,,0, +64239,96.0,10.0,10.0,10.0,10.0,9.0,10.0,185,2.67 +10869,96.0,10.0,10.0,10.0,10.0,9.0,10.0,118,1.71 +36523,97.0,10.0,10.0,10.0,10.0,9.0,10.0,153,2.21 +25102,94.0,10.0,9.0,10.0,10.0,9.0,9.0,169,2.64 +61925,93.0,9.0,10.0,10.0,10.0,8.0,9.0,99,1.47 +55947,96.0,10.0,10.0,10.0,10.0,9.0,9.0,90,1.32 +24668,83.0,9.0,8.0,9.0,9.0,9.0,8.0,58,0.86 +766,96.0,10.0,10.0,10.0,10.0,10.0,9.0,81,1.17 +29089,,,,,,,,0, +3318,92.0,9.0,9.0,10.0,10.0,10.0,9.0,123,1.8 +69379,94.0,10.0,9.0,10.0,10.0,9.0,9.0,35,0.51 +37527,95.0,10.0,10.0,10.0,10.0,9.0,9.0,23,0.41 +69242,94.0,10.0,9.0,9.0,10.0,9.0,9.0,24,0.4 +57506,98.0,10.0,10.0,10.0,10.0,10.0,10.0,83,1.31 +35260,86.0,9.0,9.0,10.0,10.0,9.0,9.0,43,0.66 +28076,90.0,9.0,10.0,9.0,10.0,9.0,9.0,74,1.17 +60240,91.0,9.0,9.0,10.0,10.0,10.0,9.0,89,1.37 +12661,97.0,10.0,10.0,10.0,10.0,10.0,10.0,261,4.05 +10743,95.0,10.0,10.0,10.0,10.0,10.0,9.0,38,0.56 +39754,96.0,10.0,10.0,10.0,10.0,9.0,9.0,32,0.48 +44007,97.0,10.0,10.0,10.0,10.0,8.0,9.0,11,0.18 +70510,91.0,9.0,10.0,10.0,10.0,9.0,9.0,92,1.45 +67107,88.0,9.0,9.0,9.0,9.0,9.0,9.0,25,0.42 +2299,95.0,10.0,10.0,10.0,10.0,9.0,9.0,64,1.28 +16386,96.0,9.0,9.0,9.0,10.0,10.0,9.0,23,0.42 +67876,99.0,10.0,10.0,10.0,10.0,10.0,10.0,67,0.98 +23346,96.0,10.0,9.0,10.0,10.0,9.0,9.0,10,0.15 +14311,87.0,9.0,9.0,10.0,10.0,9.0,9.0,76,1.1 +53338,99.0,10.0,10.0,10.0,10.0,10.0,10.0,14,1.09 +65377,97.0,10.0,10.0,10.0,10.0,9.0,10.0,46,0.69 +24977,93.0,10.0,9.0,10.0,10.0,10.0,9.0,9,0.3 +45268,91.0,9.0,9.0,10.0,10.0,10.0,9.0,112,1.65 +6649,89.0,9.0,9.0,9.0,9.0,9.0,9.0,44,1.08 +72001,98.0,10.0,10.0,10.0,10.0,10.0,10.0,152,2.21 +26120,,,,,,,,0, +10549,97.0,10.0,10.0,10.0,10.0,10.0,10.0,42,0.61 +48230,88.0,9.0,9.0,9.0,9.0,9.0,9.0,54,0.8 +10373,99.0,10.0,10.0,10.0,10.0,10.0,10.0,91,1.69 +45109,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.26 +28502,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.17 +40065,94.0,9.0,7.0,10.0,10.0,9.0,8.0,13,0.2 +11269,95.0,10.0,10.0,9.0,10.0,10.0,9.0,26,0.42 +65536,98.0,10.0,10.0,10.0,10.0,9.0,10.0,36,0.64 +72119,,,,,,,,0, +16877,87.0,9.0,8.0,9.0,9.0,9.0,9.0,44,0.68 +16318,98.0,10.0,10.0,10.0,10.0,10.0,10.0,32,0.47 +71983,96.0,10.0,10.0,10.0,10.0,9.0,10.0,5,4.69 +47569,96.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.31 +5353,87.0,9.0,9.0,10.0,9.0,8.0,9.0,8,0.12 +30505,89.0,9.0,9.0,10.0,10.0,9.0,9.0,35,0.51 +13979,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.13 +62800,89.0,9.0,9.0,9.0,9.0,9.0,9.0,111,1.63 +10074,89.0,9.0,9.0,10.0,10.0,9.0,9.0,162,2.43 +47880,97.0,10.0,10.0,9.0,10.0,10.0,10.0,6,0.09 +52338,89.0,9.0,9.0,9.0,9.0,9.0,9.0,154,2.24 +4372,82.0,9.0,9.0,9.0,9.0,9.0,8.0,22,0.34 +70523,97.0,10.0,9.0,10.0,10.0,10.0,10.0,210,3.12 +57324,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.12 +33313,91.0,9.0,9.0,10.0,10.0,9.0,9.0,55,1.27 +31970,91.0,9.0,9.0,9.0,9.0,9.0,9.0,130,1.97 +56645,99.0,10.0,10.0,10.0,10.0,10.0,9.0,23,0.41 +52866,87.0,8.0,7.0,9.0,10.0,9.0,9.0,21,0.31 +57623,89.0,9.0,7.0,10.0,10.0,8.0,9.0,17,0.36 +45543,97.0,10.0,10.0,10.0,10.0,10.0,10.0,29,0.43 +5453,88.0,9.0,9.0,10.0,10.0,9.0,9.0,18,0.27 +4704,98.0,10.0,10.0,10.0,10.0,10.0,10.0,19,0.28 +63493,80.0,8.0,6.0,8.0,9.0,8.0,8.0,9,0.45 +58976,93.0,10.0,9.0,10.0,10.0,10.0,9.0,109,2.1 +43035,93.0,10.0,9.0,10.0,10.0,10.0,9.0,61,1.44 +62485,98.0,10.0,9.0,10.0,10.0,10.0,9.0,13,0.2 +41502,90.0,9.0,9.0,9.0,9.0,9.0,9.0,48,2.04 +43048,99.0,10.0,10.0,10.0,10.0,10.0,10.0,68,1.75 +129,85.0,9.0,8.0,9.0,9.0,9.0,9.0,111,1.63 +14555,89.0,9.0,8.0,10.0,10.0,10.0,10.0,9,0.25 +50096,90.0,9.0,9.0,10.0,10.0,9.0,9.0,16,0.27 +10520,96.0,10.0,9.0,10.0,10.0,10.0,10.0,8,0.15 +45877,96.0,10.0,10.0,10.0,10.0,10.0,10.0,146,2.14 +21997,98.0,10.0,10.0,10.0,10.0,10.0,10.0,63,0.93 +48180,98.0,10.0,10.0,10.0,10.0,9.0,10.0,56,0.92 +25175,99.0,10.0,10.0,10.0,10.0,9.0,10.0,204,2.99 +42719,94.0,10.0,10.0,10.0,10.0,9.0,10.0,10,0.18 +49504,84.0,9.0,8.0,9.0,9.0,10.0,8.0,39,0.58 +30792,100.0,10.0,10.0,10.0,10.0,10.0,10.0,45,1.14 +76607,92.0,9.0,9.0,10.0,10.0,9.0,9.0,84,1.26 +3105,91.0,9.0,9.0,9.0,9.0,9.0,9.0,13,0.19 +50828,97.0,10.0,10.0,10.0,10.0,9.0,10.0,214,3.14 +45153,85.0,10.0,8.0,10.0,10.0,10.0,9.0,9,0.13 +69704,100.0,,,,,,,2,0.03 +73987,96.0,10.0,10.0,10.0,10.0,10.0,10.0,100,2.28 +36055,90.0,9.0,9.0,10.0,10.0,9.0,9.0,171,2.51 +51402,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.4 +10222,,,,,,,,0, +51726,,,,,,,,0, +42598,91.0,10.0,9.0,10.0,9.0,10.0,9.0,184,2.7 +34702,96.0,10.0,10.0,10.0,10.0,9.0,10.0,28,0.41 +66319,90.0,9.0,9.0,10.0,10.0,9.0,9.0,132,1.97 +69406,97.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.2 +51356,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.16 +15346,94.0,10.0,10.0,10.0,10.0,9.0,9.0,102,1.52 +27023,98.0,10.0,10.0,10.0,10.0,9.0,10.0,189,2.81 +42000,91.0,9.0,9.0,10.0,10.0,8.0,9.0,28,0.51 +53476,91.0,9.0,9.0,9.0,9.0,10.0,9.0,54,0.79 +73596,84.0,9.0,9.0,9.0,10.0,10.0,9.0,29,0.43 +28578,99.0,10.0,10.0,10.0,10.0,10.0,10.0,88,1.36 +66424,98.0,10.0,9.0,10.0,10.0,8.0,9.0,10,1.57 +4113,,,,,,,,0, +76377,98.0,10.0,10.0,10.0,10.0,9.0,10.0,39,0.58 +41589,88.0,9.0,9.0,9.0,9.0,10.0,9.0,41,0.6 +63758,88.0,9.0,9.0,10.0,10.0,8.0,9.0,126,1.84 +44876,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.08 +3273,85.0,9.0,8.0,9.0,9.0,9.0,8.0,84,1.25 +71752,89.0,9.0,8.0,9.0,9.0,9.0,9.0,47,0.69 +2950,97.0,10.0,10.0,10.0,10.0,9.0,10.0,79,1.56 +41948,99.0,10.0,10.0,10.0,10.0,10.0,10.0,44,0.65 +61259,93.0,10.0,9.0,10.0,10.0,10.0,9.0,154,2.32 +65329,93.0,10.0,9.0,10.0,10.0,10.0,9.0,18,0.32 +38579,98.0,10.0,10.0,10.0,10.0,9.0,10.0,179,2.67 +27015,96.0,10.0,10.0,10.0,10.0,9.0,9.0,37,0.55 +32121,86.0,9.0,10.0,10.0,10.0,7.0,9.0,59,0.86 +8001,84.0,9.0,8.0,9.0,9.0,7.0,9.0,193,2.85 +3034,99.0,10.0,10.0,10.0,10.0,10.0,10.0,68,1.01 +8547,88.0,9.0,8.0,9.0,10.0,9.0,9.0,11,0.16 +34146,88.0,9.0,9.0,10.0,9.0,9.0,9.0,155,2.33 +8532,,,,,,,,0, +45316,97.0,10.0,10.0,10.0,10.0,10.0,10.0,264,3.89 +65398,80.0,10.0,8.0,10.0,10.0,8.0,8.0,1,0.02 +552,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.01 +1350,93.0,10.0,10.0,10.0,10.0,9.0,9.0,28,0.89 +11566,84.0,9.0,8.0,9.0,9.0,7.0,9.0,189,2.79 +68296,92.0,9.0,9.0,9.0,10.0,9.0,9.0,33,0.5 +61747,94.0,10.0,9.0,10.0,10.0,9.0,9.0,10,0.15 +70204,93.0,10.0,10.0,10.0,10.0,10.0,9.0,16,0.24 +61765,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.1 +60785,98.0,10.0,10.0,10.0,10.0,10.0,10.0,209,3.23 +29189,95.0,10.0,10.0,10.0,10.0,10.0,9.0,50,0.74 +7749,98.0,10.0,10.0,10.0,10.0,9.0,10.0,25,0.38 +23141,97.0,10.0,10.0,10.0,10.0,10.0,10.0,141,2.11 +4772,,,,,,,,0, +45604,96.0,9.0,10.0,10.0,10.0,10.0,9.0,18,0.27 +67374,90.0,9.0,9.0,9.0,9.0,9.0,9.0,31,0.48 +41841,98.0,9.0,10.0,10.0,10.0,9.0,10.0,12,0.18 +25276,90.0,10.0,8.0,10.0,9.0,10.0,10.0,36,0.72 +18498,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.04 +43617,100.0,10.0,10.0,10.0,10.0,8.0,9.0,8,0.12 +9196,,,,,,,,0, +69301,95.0,9.0,9.0,10.0,10.0,10.0,10.0,365,5.36 +2566,93.0,10.0,9.0,10.0,10.0,9.0,9.0,99,1.61 +62029,93.0,9.0,9.0,10.0,10.0,8.0,9.0,33,0.49 +66016,90.0,10.0,9.0,9.0,10.0,10.0,9.0,14,2.96 +20802,94.0,10.0,9.0,10.0,10.0,9.0,9.0,189,2.78 +41441,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.09 +1662,89.0,9.0,9.0,9.0,9.0,10.0,9.0,229,3.37 +20099,92.0,10.0,9.0,10.0,10.0,9.0,9.0,14,0.25 +35884,93.0,10.0,10.0,9.0,10.0,10.0,9.0,25,0.37 +5436,93.0,9.0,9.0,10.0,10.0,9.0,9.0,128,1.94 +12010,90.0,9.0,9.0,10.0,10.0,9.0,9.0,77,1.16 +65641,97.0,10.0,10.0,10.0,10.0,10.0,10.0,53,0.8 +25737,92.0,10.0,10.0,9.0,10.0,9.0,9.0,76,1.14 +26465,84.0,7.0,8.0,10.0,9.0,9.0,8.0,20,0.3 +76216,90.0,9.0,9.0,9.0,10.0,10.0,9.0,55,0.83 +42808,95.0,10.0,9.0,10.0,10.0,9.0,9.0,124,2.15 +11107,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.07 +5839,95.0,10.0,10.0,10.0,10.0,9.0,9.0,59,0.91 +17304,96.0,10.0,10.0,10.0,10.0,9.0,10.0,86,1.31 +47286,93.0,9.0,9.0,10.0,10.0,9.0,9.0,104,1.58 +8682,92.0,9.0,8.0,10.0,10.0,9.0,8.0,11,0.17 +7617,99.0,10.0,10.0,10.0,10.0,9.0,10.0,103,1.53 +22228,95.0,10.0,10.0,10.0,10.0,9.0,9.0,116,2.13 +21326,,,,,,,,0, +4497,91.0,9.0,8.0,10.0,10.0,9.0,9.0,28,0.43 +62885,85.0,8.0,8.0,9.0,9.0,9.0,8.0,8,0.18 +10564,96.0,10.0,8.0,10.0,10.0,9.0,9.0,22,0.33 +25760,100.0,10.0,9.0,10.0,10.0,9.0,10.0,3,0.14 +60003,96.0,10.0,10.0,10.0,10.0,9.0,10.0,80,2.0 +13409,92.0,9.0,9.0,10.0,10.0,10.0,9.0,11,0.16 +49957,93.0,9.0,9.0,10.0,10.0,9.0,9.0,18,0.32 +53648,98.0,10.0,10.0,10.0,10.0,10.0,10.0,44,0.66 +7773,96.0,9.0,10.0,10.0,10.0,9.0,10.0,9,0.17 +72998,97.0,10.0,10.0,10.0,10.0,9.0,10.0,84,1.24 +18196,,,,,,,,0, +15018,97.0,10.0,10.0,10.0,10.0,10.0,9.0,66,1.04 +18305,96.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.06 +14275,97.0,10.0,10.0,10.0,10.0,10.0,10.0,23,0.34 +22159,96.0,10.0,10.0,10.0,10.0,9.0,9.0,14,0.21 +7486,92.0,10.0,9.0,10.0,10.0,10.0,10.0,47,0.7 +72763,99.0,10.0,10.0,10.0,10.0,10.0,10.0,32,0.48 +54219,,,,,,,,0, +56040,99.0,10.0,10.0,10.0,10.0,10.0,9.0,15,1.11 +72166,98.0,10.0,10.0,9.0,10.0,10.0,10.0,11,0.3 +71305,91.0,10.0,9.0,9.0,10.0,8.0,10.0,30,0.44 +40115,95.0,9.0,10.0,10.0,10.0,10.0,10.0,9,0.15 +13343,80.0,9.0,8.0,10.0,10.0,9.0,7.0,2,0.03 +17368,94.0,10.0,10.0,9.0,10.0,9.0,9.0,131,2.04 +28877,92.0,9.0,10.0,10.0,10.0,9.0,9.0,58,0.86 +72417,96.0,10.0,10.0,10.0,9.0,9.0,9.0,58,0.86 +15318,97.0,9.0,10.0,10.0,10.0,10.0,9.0,27,0.41 +59522,,,,,,,,0, +38742,,,,,,,,0, +61052,85.0,9.0,7.0,10.0,10.0,9.0,9.0,33,0.49 +41669,88.0,10.0,9.0,9.0,10.0,9.0,9.0,17,0.34 +38150,81.0,8.0,8.0,9.0,9.0,9.0,8.0,70,1.06 +24594,96.0,10.0,10.0,10.0,10.0,9.0,10.0,62,0.94 +72120,100.0,10.0,10.0,9.0,10.0,9.0,9.0,4,0.07 +72914,95.0,10.0,10.0,10.0,10.0,9.0,10.0,19,0.28 +6641,93.0,9.0,10.0,10.0,10.0,10.0,9.0,17,0.26 +24319,94.0,9.0,9.0,9.0,10.0,10.0,9.0,44,0.66 +2290,90.0,9.0,9.0,10.0,10.0,9.0,9.0,96,1.5 +42856,94.0,10.0,9.0,10.0,10.0,10.0,9.0,56,1.4 +23553,91.0,9.0,9.0,10.0,10.0,9.0,9.0,38,0.56 +61559,94.0,10.0,10.0,10.0,10.0,9.0,10.0,22,0.33 +11250,97.0,10.0,10.0,10.0,10.0,9.0,9.0,24,0.36 +67461,97.0,10.0,10.0,10.0,10.0,10.0,9.0,13,0.2 +17799,80.0,8.0,6.0,10.0,10.0,10.0,10.0,1,0.06 +68715,92.0,10.0,9.0,9.0,9.0,10.0,9.0,77,1.24 +62605,99.0,10.0,10.0,10.0,10.0,10.0,10.0,44,0.66 +24648,96.0,10.0,10.0,10.0,10.0,9.0,9.0,11,0.16 +36490,94.0,9.0,9.0,10.0,10.0,10.0,9.0,267,4.02 +11286,60.0,7.0,7.0,7.0,9.0,9.0,6.0,3,0.05 +45994,94.0,9.0,9.0,10.0,10.0,9.0,10.0,19,0.6 +51779,95.0,10.0,9.0,10.0,10.0,9.0,9.0,207,3.12 +43117,99.0,10.0,10.0,10.0,10.0,10.0,10.0,86,2.59 +32400,89.0,9.0,9.0,9.0,9.0,9.0,9.0,18,0.28 +30856,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.05 +59191,96.0,10.0,10.0,10.0,10.0,9.0,10.0,100,1.5 +56957,,,,,,,,0, +34510,96.0,10.0,9.0,10.0,10.0,9.0,10.0,37,0.55 +74406,91.0,9.0,10.0,9.0,9.0,10.0,9.0,14,0.25 +55309,94.0,10.0,9.0,10.0,10.0,10.0,9.0,302,4.62 +46562,100.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.12 +71995,94.0,10.0,9.0,10.0,10.0,9.0,9.0,46,0.74 +30354,93.0,10.0,9.0,10.0,9.0,10.0,9.0,204,3.03 +32320,95.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.18 +42018,95.0,9.0,8.0,10.0,10.0,9.0,9.0,13,0.2 +73082,96.0,10.0,10.0,10.0,10.0,10.0,10.0,79,1.19 +18829,96.0,10.0,10.0,10.0,10.0,10.0,9.0,181,2.7 +8971,98.0,10.0,10.0,10.0,10.0,10.0,10.0,38,0.57 +52787,89.0,9.0,9.0,10.0,10.0,10.0,9.0,68,1.01 +2228,91.0,9.0,9.0,10.0,10.0,9.0,9.0,418,6.3 +64124,99.0,10.0,10.0,10.0,10.0,10.0,10.0,211,3.16 +76782,94.0,9.0,10.0,10.0,10.0,9.0,9.0,44,0.66 +62582,95.0,9.0,10.0,9.0,9.0,9.0,9.0,5,0.09 +5750,93.0,10.0,9.0,10.0,10.0,10.0,9.0,8,0.12 +55631,86.0,9.0,8.0,9.0,9.0,8.0,9.0,172,2.57 +38803,97.0,10.0,10.0,10.0,10.0,10.0,10.0,27,0.45 +76064,,,,,,,,0, +76753,99.0,10.0,10.0,10.0,10.0,10.0,9.0,54,0.81 +40426,,,,,,,,0, +39634,97.0,10.0,10.0,10.0,10.0,9.0,9.0,34,0.51 +14797,94.0,10.0,10.0,10.0,10.0,9.0,9.0,139,2.61 +40091,87.0,9.0,9.0,10.0,10.0,10.0,9.0,344,5.2 +73664,97.0,10.0,10.0,10.0,10.0,10.0,10.0,40,0.61 +57409,99.0,10.0,10.0,10.0,10.0,9.0,10.0,58,1.86 +67420,88.0,9.0,8.0,10.0,9.0,9.0,9.0,57,0.93 +53292,,,,,,,,0, +76668,90.0,10.0,9.0,9.0,10.0,9.0,9.0,21,0.31 +62046,93.0,10.0,10.0,10.0,10.0,8.0,9.0,110,1.65 +39105,95.0,9.0,10.0,9.0,10.0,10.0,9.0,5,0.08 +35272,97.0,10.0,10.0,10.0,10.0,10.0,9.0,136,2.04 +75750,98.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.27 +42785,91.0,9.0,9.0,10.0,9.0,9.0,9.0,71,1.39 +74958,91.0,9.0,9.0,10.0,10.0,9.0,9.0,58,0.91 +18482,99.0,10.0,10.0,10.0,10.0,10.0,10.0,38,0.57 +1930,100.0,9.0,9.0,10.0,10.0,9.0,9.0,2,0.03 +40182,97.0,10.0,10.0,10.0,10.0,9.0,9.0,18,0.27 +59343,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.06 +35645,92.0,9.0,9.0,9.0,9.0,9.0,9.0,11,0.17 +13187,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.05 +43859,94.0,9.0,9.0,10.0,10.0,9.0,9.0,32,0.59 +62466,99.0,10.0,10.0,10.0,10.0,10.0,10.0,27,0.41 +69751,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.23 +63966,95.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.12 +9058,83.0,8.0,7.0,9.0,9.0,8.0,8.0,14,0.22 +24436,95.0,9.0,8.0,10.0,9.0,9.0,9.0,12,0.18 +7147,96.0,10.0,10.0,10.0,10.0,9.0,10.0,97,1.47 +27099,88.0,9.0,9.0,10.0,10.0,8.0,9.0,204,3.07 +27791,100.0,10.0,10.0,10.0,10.0,9.0,9.0,7,0.11 +2928,98.0,10.0,10.0,10.0,10.0,10.0,10.0,56,0.83 +75305,99.0,10.0,10.0,10.0,10.0,10.0,10.0,236,3.54 +3428,98.0,10.0,10.0,10.0,10.0,9.0,10.0,47,0.72 +12737,100.0,10.0,10.0,10.0,10.0,10.0,10.0,52,2.86 +3802,91.0,9.0,8.0,10.0,10.0,9.0,10.0,9,0.14 +43226,99.0,10.0,10.0,10.0,10.0,10.0,10.0,29,0.44 +69776,91.0,9.0,7.0,8.0,9.0,10.0,9.0,7,0.17 +35424,93.0,10.0,9.0,10.0,10.0,10.0,9.0,28,0.44 +65713,95.0,10.0,9.0,10.0,10.0,9.0,9.0,23,0.34 +12025,95.0,9.0,10.0,10.0,10.0,9.0,9.0,24,0.41 +56157,95.0,10.0,9.0,9.0,10.0,10.0,9.0,4,0.11 +7105,,,,,,,,0, +8661,100.0,10.0,10.0,10.0,10.0,9.0,9.0,9,0.28 +23924,96.0,10.0,9.0,10.0,10.0,10.0,10.0,11,0.17 +53720,96.0,9.0,10.0,10.0,10.0,9.0,9.0,32,0.48 +30649,93.0,10.0,10.0,10.0,9.0,10.0,9.0,42,0.64 +47038,95.0,10.0,9.0,10.0,10.0,10.0,9.0,18,0.27 +60171,90.0,9.0,9.0,10.0,10.0,9.0,9.0,45,0.87 +18352,100.0,10.0,10.0,10.0,10.0,10.0,10.0,30,0.59 +70371,94.0,9.0,9.0,10.0,10.0,10.0,9.0,167,2.55 +25389,89.0,9.0,9.0,10.0,10.0,10.0,9.0,529,7.92 +56839,92.0,10.0,9.0,10.0,10.0,9.0,9.0,70,1.06 +54733,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,1.01 +44918,97.0,10.0,10.0,10.0,10.0,9.0,9.0,109,1.64 +21828,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.02 +63667,92.0,9.0,10.0,10.0,9.0,9.0,9.0,78,1.21 +36546,89.0,9.0,8.0,10.0,10.0,10.0,9.0,137,2.09 +1406,94.0,9.0,10.0,10.0,10.0,9.0,9.0,339,5.12 +2040,94.0,9.0,9.0,10.0,10.0,9.0,9.0,23,0.35 +16289,95.0,10.0,9.0,10.0,10.0,9.0,9.0,57,1.26 +15573,98.0,10.0,10.0,10.0,10.0,10.0,10.0,20,0.72 +38469,100.0,10.0,10.0,10.0,10.0,10.0,10.0,26,0.39 +32892,98.0,10.0,10.0,10.0,10.0,9.0,10.0,181,2.72 +33888,100.0,10.0,9.0,9.0,9.0,10.0,10.0,3,0.05 +2872,95.0,10.0,9.0,10.0,10.0,9.0,9.0,45,0.69 +62064,98.0,10.0,10.0,10.0,10.0,10.0,10.0,91,1.46 +45562,97.0,10.0,10.0,10.0,10.0,9.0,10.0,40,0.91 +4467,,,,,,,,0, +453,81.0,9.0,8.0,9.0,9.0,8.0,8.0,126,2.55 +1897,95.0,10.0,10.0,10.0,10.0,9.0,10.0,15,0.32 +3417,93.0,10.0,9.0,10.0,10.0,10.0,9.0,19,0.29 +1784,94.0,10.0,10.0,10.0,10.0,10.0,9.0,58,0.88 +44258,91.0,9.0,9.0,10.0,10.0,9.0,9.0,15,0.23 +34809,98.0,10.0,10.0,10.0,10.0,10.0,10.0,198,3.01 +32459,95.0,9.0,10.0,10.0,10.0,9.0,9.0,39,1.0 +31203,94.0,10.0,9.0,10.0,10.0,10.0,9.0,200,3.12 +76934,99.0,10.0,10.0,10.0,10.0,10.0,9.0,23,0.37 +36102,98.0,10.0,10.0,10.0,10.0,10.0,10.0,25,0.39 +11906,95.0,10.0,10.0,10.0,10.0,10.0,10.0,35,0.53 +66766,95.0,9.0,9.0,9.0,10.0,9.0,9.0,31,0.48 +73593,93.0,10.0,10.0,10.0,10.0,9.0,9.0,46,0.71 +240,95.0,10.0,10.0,10.0,10.0,9.0,9.0,168,2.89 +50444,95.0,10.0,9.0,10.0,10.0,10.0,9.0,146,2.28 +72901,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.03 +50861,67.0,8.0,4.0,10.0,6.0,,6.0,1,0.02 +1083,96.0,9.0,9.0,10.0,10.0,9.0,9.0,10,0.15 +61703,91.0,9.0,9.0,10.0,9.0,9.0,9.0,31,0.47 +22444,86.0,9.0,8.0,9.0,10.0,10.0,9.0,52,0.8 +5496,92.0,10.0,9.0,9.0,10.0,8.0,9.0,21,0.32 +30611,90.0,9.0,9.0,10.0,10.0,9.0,9.0,93,1.41 +43568,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.09 +24264,,,,,,,,0, +63817,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.94 +34777,,,,,,,,0, +37418,99.0,10.0,10.0,10.0,10.0,10.0,9.0,20,0.3 +24401,96.0,10.0,10.0,10.0,10.0,9.0,10.0,15,0.24 +7027,92.0,9.0,9.0,10.0,10.0,9.0,9.0,167,2.53 +70543,,,,,,,,0, +13604,70.0,7.0,7.0,10.0,10.0,9.0,7.0,2,0.04 +60035,88.0,9.0,9.0,9.0,10.0,10.0,9.0,39,0.7 +34810,93.0,10.0,9.0,10.0,10.0,10.0,9.0,176,2.73 +13431,,,,,,,,0, +10375,89.0,9.0,9.0,9.0,9.0,9.0,9.0,15,0.23 +12610,94.0,10.0,9.0,9.0,10.0,10.0,10.0,101,1.53 +25438,94.0,10.0,10.0,9.0,10.0,10.0,9.0,114,1.72 +51661,94.0,9.0,9.0,10.0,10.0,10.0,9.0,106,1.6 +63381,78.0,8.0,7.0,9.0,9.0,9.0,7.0,11,0.17 +3184,,,,,,,,0, +4110,90.0,9.0,8.0,10.0,9.0,9.0,8.0,6,0.09 +18065,92.0,9.0,9.0,10.0,10.0,10.0,9.0,26,0.39 +52907,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,3.06 +65084,93.0,10.0,9.0,10.0,10.0,10.0,9.0,91,1.37 +15129,96.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.08 +69911,91.0,9.0,8.0,10.0,10.0,10.0,9.0,42,0.67 +37684,94.0,10.0,9.0,10.0,10.0,9.0,10.0,38,0.62 +8240,98.0,10.0,9.0,10.0,10.0,10.0,10.0,9,0.17 +25670,89.0,10.0,9.0,10.0,10.0,9.0,9.0,7,0.11 +37737,97.0,10.0,10.0,10.0,10.0,10.0,9.0,31,0.6 +14873,91.0,9.0,9.0,9.0,10.0,9.0,9.0,100,1.53 +18285,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.23 +9931,86.0,9.0,9.0,9.0,9.0,8.0,8.0,27,0.49 +12113,92.0,9.0,9.0,10.0,10.0,9.0,9.0,23,0.35 +8043,90.0,9.0,8.0,10.0,10.0,10.0,8.0,2,0.05 +2216,99.0,10.0,10.0,10.0,10.0,10.0,9.0,48,0.74 +16836,92.0,9.0,8.0,10.0,10.0,10.0,9.0,35,0.53 +19760,97.0,9.0,9.0,10.0,10.0,10.0,10.0,6,0.11 +36595,,,,,,,,0, +40726,98.0,10.0,9.0,10.0,10.0,10.0,10.0,17,0.26 +38295,95.0,10.0,8.0,10.0,9.0,8.0,9.0,4,0.06 +18581,90.0,9.0,9.0,10.0,10.0,9.0,9.0,39,0.59 +30487,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.11 +48575,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +23849,97.0,10.0,10.0,10.0,10.0,10.0,9.0,7,1.26 +58884,73.0,10.0,10.0,10.0,9.0,10.0,9.0,3,0.36 +20178,86.0,9.0,8.0,9.0,9.0,10.0,9.0,25,0.38 +35967,,,,,,,,0, +11518,93.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.05 +42748,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +41523,93.0,9.0,10.0,10.0,10.0,9.0,9.0,102,1.56 +16423,95.0,10.0,10.0,10.0,10.0,10.0,9.0,86,1.39 +70660,87.0,9.0,8.0,9.0,9.0,9.0,9.0,43,0.65 +11391,80.0,8.0,6.0,8.0,8.0,8.0,6.0,1,0.02 +20171,91.0,9.0,9.0,9.0,10.0,9.0,9.0,67,2.81 +51070,93.0,10.0,9.0,10.0,10.0,9.0,9.0,34,0.52 +39028,96.0,10.0,9.0,10.0,10.0,9.0,10.0,19,0.91 +17226,96.0,9.0,9.0,10.0,10.0,10.0,9.0,18,0.28 +61828,,,,,,,,0, +9715,98.0,10.0,10.0,10.0,10.0,10.0,10.0,438,6.78 +76007,97.0,10.0,9.0,10.0,10.0,9.0,9.0,41,0.62 +13884,86.0,10.0,10.0,10.0,8.0,8.0,6.0,1,0.02 +72004,95.0,10.0,9.0,10.0,10.0,10.0,9.0,127,2.23 +21823,,,,,,,,0, +790,97.0,10.0,9.0,10.0,10.0,10.0,10.0,7,0.12 +10084,87.0,9.0,8.0,9.0,9.0,8.0,9.0,42,0.63 +76789,91.0,9.0,8.0,9.0,10.0,10.0,9.0,52,0.81 +65143,97.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.11 +18497,97.0,10.0,10.0,10.0,10.0,10.0,9.0,32,0.49 +3204,89.0,9.0,9.0,9.0,9.0,9.0,9.0,29,0.46 +62227,92.0,9.0,10.0,10.0,10.0,10.0,9.0,105,1.58 +72979,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.11 +48360,98.0,10.0,10.0,10.0,10.0,10.0,10.0,114,1.72 +4763,96.0,10.0,10.0,10.0,10.0,9.0,9.0,59,0.95 +40870,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.03 +75827,85.0,9.0,8.0,9.0,9.0,9.0,9.0,50,0.76 +41278,,,,,,,,0, +16658,90.0,9.0,9.0,10.0,9.0,9.0,9.0,108,1.63 +72815,92.0,9.0,10.0,10.0,10.0,8.0,9.0,139,2.12 +54908,96.0,10.0,10.0,9.0,10.0,10.0,9.0,51,0.79 +4823,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.34 +3100,98.0,10.0,9.0,10.0,10.0,10.0,9.0,43,0.65 +16707,97.0,10.0,10.0,10.0,10.0,10.0,10.0,67,1.84 +53210,86.0,9.0,8.0,9.0,9.0,9.0,8.0,66,1.0 +74254,92.0,10.0,9.0,10.0,10.0,10.0,10.0,10,0.28 +6233,96.0,10.0,9.0,9.0,9.0,10.0,9.0,12,0.19 +7949,90.0,9.0,9.0,10.0,10.0,9.0,9.0,120,1.84 +72419,89.0,9.0,9.0,10.0,10.0,9.0,9.0,146,2.25 +9694,85.0,9.0,9.0,9.0,9.0,9.0,9.0,72,1.15 +35638,,,,,,,,0, +42064,98.0,9.0,10.0,10.0,10.0,10.0,9.0,19,0.29 +76568,90.0,9.0,9.0,10.0,10.0,9.0,9.0,80,1.21 +29219,86.0,9.0,9.0,9.0,10.0,9.0,9.0,180,2.85 +65000,89.0,9.0,9.0,9.0,9.0,8.0,9.0,8,0.12 +48774,90.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.06 +26249,90.0,9.0,9.0,10.0,10.0,9.0,9.0,67,1.38 +31586,100.0,9.0,9.0,10.0,10.0,9.0,9.0,3,0.05 +51639,90.0,9.0,9.0,10.0,9.0,9.0,9.0,127,1.98 +71905,85.0,9.0,9.0,10.0,9.0,9.0,9.0,124,2.54 +30471,73.0,8.0,7.0,9.0,9.0,10.0,9.0,10,0.16 +27106,93.0,10.0,9.0,10.0,10.0,10.0,9.0,18,0.31 +15134,91.0,9.0,9.0,10.0,10.0,9.0,9.0,110,1.71 +14742,91.0,9.0,9.0,10.0,10.0,9.0,9.0,27,0.41 +48343,96.0,10.0,10.0,10.0,10.0,9.0,10.0,58,1.07 +13691,98.0,10.0,10.0,10.0,10.0,10.0,10.0,36,0.57 +44482,93.0,9.0,10.0,10.0,10.0,9.0,9.0,47,0.91 +20055,,,,,,,,0, +32929,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.3 +47787,90.0,9.0,9.0,9.0,10.0,9.0,9.0,2,0.17 +57941,97.0,10.0,10.0,10.0,10.0,10.0,10.0,38,0.59 +44252,93.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.07 +74101,83.0,8.0,9.0,9.0,9.0,9.0,8.0,246,3.81 +50726,93.0,9.0,10.0,10.0,10.0,9.0,9.0,347,5.26 +18752,90.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.04 +66662,,,,,,,,0, +62572,95.0,10.0,9.0,10.0,10.0,9.0,9.0,100,1.53 +5817,93.0,10.0,10.0,10.0,10.0,10.0,9.0,12,0.23 +11064,94.0,9.0,10.0,10.0,10.0,9.0,9.0,23,0.36 +61153,95.0,10.0,9.0,10.0,10.0,9.0,10.0,72,1.09 +50103,89.0,9.0,9.0,10.0,10.0,9.0,9.0,166,2.57 +13848,91.0,10.0,10.0,10.0,10.0,9.0,9.0,137,2.09 +3877,90.0,9.0,8.0,10.0,9.0,9.0,9.0,27,0.42 +49487,,,,,,,,0, +20650,93.0,9.0,9.0,10.0,10.0,9.0,9.0,13,0.26 +40641,88.0,9.0,9.0,10.0,10.0,9.0,9.0,49,0.76 +24249,95.0,10.0,10.0,10.0,10.0,9.0,9.0,57,1.03 +4304,94.0,9.0,9.0,10.0,10.0,9.0,9.0,29,0.44 +37734,,,,,,,,0, +30368,96.0,10.0,10.0,10.0,10.0,10.0,9.0,22,0.46 +8651,97.0,10.0,10.0,10.0,10.0,10.0,9.0,61,0.97 +10002,95.0,10.0,10.0,10.0,10.0,10.0,9.0,134,2.45 +74107,92.0,8.0,8.0,10.0,10.0,9.0,9.0,23,0.37 +76923,96.0,9.0,10.0,10.0,10.0,10.0,9.0,131,2.06 +27735,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.38 +19537,94.0,10.0,9.0,10.0,10.0,10.0,9.0,102,1.58 +70802,98.0,10.0,9.0,10.0,10.0,10.0,10.0,36,0.63 +22608,90.0,9.0,9.0,10.0,10.0,9.0,9.0,157,2.48 +21483,94.0,9.0,9.0,10.0,10.0,9.0,9.0,58,0.89 +27327,97.0,10.0,10.0,10.0,10.0,10.0,9.0,22,0.34 +6014,99.0,10.0,10.0,10.0,10.0,9.0,10.0,66,1.02 +29490,95.0,9.0,9.0,10.0,10.0,10.0,9.0,16,0.46 +36830,,,,,,,,0, +37186,,,,,,,,0, +2909,92.0,9.0,9.0,10.0,10.0,9.0,9.0,40,0.64 +68807,,,,,,,,0, +46213,94.0,10.0,9.0,10.0,10.0,10.0,9.0,18,0.32 +64832,98.0,9.0,10.0,10.0,10.0,9.0,9.0,18,0.3 +68169,99.0,10.0,10.0,10.0,10.0,10.0,10.0,24,0.45 +1769,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.09 +27570,82.0,8.0,9.0,9.0,9.0,8.0,8.0,49,0.79 +15566,93.0,10.0,9.0,10.0,9.0,9.0,9.0,39,0.6 +1854,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.14 +21513,,,,,,,,1,0.02 +53209,97.0,10.0,10.0,10.0,10.0,10.0,10.0,26,0.4 +18912,98.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.27 +68497,98.0,10.0,10.0,10.0,10.0,10.0,9.0,49,0.76 +15954,88.0,9.0,8.0,10.0,10.0,9.0,9.0,86,1.35 +68190,93.0,9.0,9.0,9.0,10.0,10.0,9.0,191,3.0 +47016,95.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.17 +45558,96.0,10.0,10.0,10.0,10.0,10.0,10.0,41,0.65 +31634,92.0,9.0,9.0,9.0,10.0,9.0,9.0,39,0.59 +52282,,,,,,,,1,0.59 +35926,90.0,9.0,9.0,10.0,10.0,9.0,9.0,84,1.31 +22447,90.0,9.0,9.0,10.0,9.0,9.0,9.0,134,2.07 +76237,91.0,9.0,9.0,10.0,9.0,9.0,9.0,121,1.86 +52210,,,,,,,,0, +45906,96.0,10.0,10.0,10.0,10.0,9.0,10.0,37,2.85 +30886,100.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.15 +67724,96.0,10.0,9.0,10.0,10.0,9.0,9.0,32,0.49 +73785,96.0,10.0,10.0,10.0,10.0,9.0,9.0,73,1.29 +1292,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.3 +21150,89.0,9.0,9.0,10.0,10.0,9.0,9.0,55,0.85 +5948,93.0,10.0,10.0,9.0,9.0,9.0,9.0,5,0.08 +41112,98.0,10.0,10.0,10.0,10.0,10.0,10.0,28,0.43 +71359,97.0,10.0,10.0,10.0,10.0,9.0,10.0,72,1.11 +25858,86.0,9.0,8.0,9.0,10.0,9.0,8.0,75,1.17 +72284,97.0,10.0,10.0,10.0,10.0,10.0,10.0,176,2.73 +68422,95.0,10.0,10.0,10.0,10.0,10.0,9.0,73,1.11 +7073,99.0,10.0,10.0,10.0,10.0,10.0,10.0,60,0.94 +68788,90.0,10.0,9.0,10.0,10.0,9.0,9.0,7,0.16 +73113,96.0,10.0,10.0,10.0,10.0,9.0,9.0,103,1.61 +57212,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +10730,,,,,,,,0, +9891,97.0,10.0,10.0,10.0,10.0,10.0,10.0,64,0.99 +58148,,,,,,,,0, +3070,98.0,10.0,10.0,10.0,10.0,10.0,10.0,49,0.76 +4735,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.28 +22266,97.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.27 +31686,,,,,,,,0, +10187,86.0,9.0,9.0,10.0,10.0,9.0,9.0,7,0.18 +23512,92.0,9.0,9.0,10.0,10.0,9.0,9.0,19,0.35 +5760,92.0,9.0,9.0,10.0,9.0,9.0,9.0,70,1.07 +1536,96.0,10.0,10.0,10.0,10.0,10.0,9.0,80,2.56 +47617,100.0,10.0,9.0,10.0,9.0,9.0,10.0,4,0.06 +4001,98.0,10.0,10.0,10.0,10.0,9.0,10.0,54,0.85 +3130,80.0,10.0,8.0,8.0,10.0,10.0,10.0,1,1.0 +63258,93.0,10.0,9.0,10.0,10.0,9.0,9.0,59,0.92 +34188,93.0,10.0,9.0,10.0,10.0,8.0,9.0,22,0.53 +69199,95.0,9.0,9.0,10.0,10.0,10.0,10.0,36,0.57 +57779,95.0,10.0,10.0,10.0,10.0,9.0,10.0,16,0.87 +52307,,,,,,,,0, +65038,84.0,9.0,8.0,10.0,10.0,8.0,9.0,10,0.15 +15805,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.11 +39741,100.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.52 +29649,90.0,9.0,8.0,10.0,10.0,9.0,9.0,83,1.27 +27660,98.0,10.0,10.0,10.0,10.0,9.0,9.0,7,0.11 +38794,95.0,10.0,9.0,10.0,10.0,10.0,9.0,61,0.95 +76256,90.0,8.0,10.0,9.0,9.0,8.0,7.0,2,0.04 +4144,91.0,9.0,9.0,10.0,10.0,10.0,9.0,82,1.26 +45667,94.0,10.0,9.0,10.0,10.0,9.0,9.0,25,0.39 +13887,,,,,,,,0, +17670,100.0,10.0,9.0,10.0,10.0,10.0,9.0,8,0.12 +56214,97.0,10.0,10.0,10.0,10.0,9.0,10.0,47,0.74 +61054,93.0,9.0,9.0,10.0,9.0,9.0,9.0,120,1.83 +26225,,,,,,,,0, +31231,83.0,9.0,8.0,9.0,9.0,9.0,9.0,12,0.38 +40552,97.0,10.0,9.0,10.0,10.0,10.0,9.0,198,3.05 +11248,97.0,10.0,10.0,10.0,10.0,10.0,10.0,116,2.32 +4574,96.0,10.0,10.0,10.0,10.0,9.0,10.0,150,2.4 +46552,96.0,10.0,9.0,10.0,10.0,10.0,10.0,23,0.39 +69279,96.0,10.0,10.0,10.0,10.0,10.0,9.0,69,1.06 +34937,94.0,10.0,10.0,10.0,10.0,9.0,10.0,25,0.48 +60512,95.0,10.0,9.0,10.0,10.0,9.0,9.0,40,0.96 +3049,93.0,10.0,9.0,10.0,10.0,9.0,9.0,111,1.7 +49202,94.0,9.0,10.0,10.0,10.0,9.0,9.0,47,0.76 +73286,98.0,10.0,10.0,10.0,10.0,10.0,10.0,134,2.21 +15712,90.0,9.0,9.0,9.0,9.0,9.0,9.0,80,1.23 +14700,98.0,10.0,10.0,10.0,10.0,10.0,9.0,252,3.89 +15824,,,,,,,,0, +16063,94.0,10.0,10.0,10.0,10.0,10.0,9.0,221,3.53 +61777,97.0,9.0,10.0,10.0,10.0,9.0,10.0,7,0.11 +21757,91.0,9.0,9.0,10.0,10.0,9.0,9.0,14,0.71 +28139,90.0,10.0,9.0,9.0,9.0,9.0,9.0,23,0.36 +73821,97.0,10.0,10.0,10.0,10.0,9.0,10.0,21,0.33 +73485,100.0,8.0,10.0,10.0,10.0,8.0,8.0,1,0.4 +54286,96.0,10.0,10.0,10.0,10.0,9.0,9.0,260,4.01 +71512,100.0,9.0,10.0,10.0,10.0,10.0,7.0,4,0.07 +6003,96.0,10.0,9.0,10.0,10.0,10.0,9.0,22,1.2 +14565,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.09 +65051,88.0,9.0,9.0,9.0,10.0,10.0,9.0,16,0.27 +60210,100.0,10.0,9.0,10.0,10.0,10.0,10.0,7,0.11 +69143,90.0,10.0,8.0,10.0,10.0,9.0,9.0,8,0.12 +10037,95.0,10.0,9.0,10.0,10.0,10.0,9.0,41,0.71 +10646,96.0,10.0,10.0,10.0,10.0,10.0,10.0,59,1.41 +52332,88.0,9.0,9.0,9.0,10.0,8.0,8.0,7,0.11 +704,85.0,10.0,10.0,10.0,10.0,9.0,9.0,6,0.1 +17732,80.0,8.0,7.0,9.0,9.0,10.0,8.0,4,0.07 +46565,87.0,9.0,8.0,9.0,9.0,8.0,8.0,6,0.13 +45078,94.0,10.0,9.0,9.0,10.0,9.0,9.0,22,0.34 +28582,98.0,10.0,10.0,10.0,10.0,10.0,10.0,25,0.82 +55373,95.0,9.0,10.0,10.0,10.0,9.0,9.0,42,0.67 +31904,99.0,10.0,10.0,10.0,10.0,10.0,10.0,143,2.25 +59767,92.0,9.0,9.0,10.0,10.0,10.0,9.0,30,0.46 +66052,,,,,,,,0, +41297,84.0,9.0,9.0,9.0,9.0,9.0,8.0,92,1.45 +24358,91.0,9.0,9.0,10.0,9.0,10.0,9.0,17,0.41 +74044,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.04 +10994,95.0,10.0,9.0,10.0,10.0,9.0,9.0,28,0.44 +40215,94.0,9.0,9.0,10.0,10.0,10.0,9.0,47,0.76 +51032,,,,,,,,0, +15175,91.0,9.0,10.0,10.0,10.0,9.0,10.0,17,0.29 +52121,96.0,10.0,10.0,9.0,10.0,9.0,9.0,51,0.8 +25843,96.0,10.0,10.0,10.0,10.0,9.0,9.0,62,1.08 +22736,99.0,10.0,10.0,10.0,10.0,10.0,10.0,84,1.32 +57367,91.0,9.0,9.0,10.0,10.0,10.0,9.0,578,9.08 +45972,93.0,9.0,9.0,10.0,10.0,10.0,9.0,507,7.84 +23382,97.0,10.0,10.0,10.0,10.0,10.0,10.0,185,2.91 +36702,100.0,10.0,10.0,9.0,9.0,10.0,10.0,3,0.18 +26718,80.0,8.0,7.0,9.0,10.0,9.0,8.0,11,0.2 +41757,96.0,10.0,10.0,10.0,10.0,10.0,10.0,32,0.53 +691,96.0,10.0,10.0,10.0,10.0,10.0,9.0,40,0.62 +75334,96.0,10.0,9.0,10.0,10.0,10.0,9.0,16,0.51 +54458,91.0,9.0,9.0,9.0,9.0,9.0,9.0,41,0.76 +76542,86.0,9.0,10.0,10.0,10.0,10.0,9.0,17,1.41 +16527,93.0,10.0,9.0,10.0,10.0,10.0,9.0,45,0.69 +39347,97.0,10.0,10.0,10.0,10.0,9.0,10.0,31,0.48 +67217,,,,,,,,0, +986,,,,,,,,0, +71233,97.0,10.0,10.0,10.0,10.0,9.0,9.0,74,1.14 +49074,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.15 +62725,93.0,10.0,9.0,9.0,10.0,9.0,9.0,183,2.82 +57172,94.0,10.0,10.0,10.0,10.0,9.0,9.0,58,1.06 +33186,97.0,10.0,10.0,10.0,10.0,9.0,9.0,35,0.54 +3938,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +19772,89.0,8.0,9.0,9.0,10.0,10.0,8.0,18,0.28 +66193,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.1 +46021,98.0,10.0,10.0,10.0,10.0,9.0,10.0,20,0.32 +41874,,,,,,,,0, +44831,100.0,9.0,10.0,10.0,10.0,10.0,9.0,4,0.06 +75723,89.0,10.0,10.0,9.0,9.0,10.0,9.0,50,0.96 +15373,91.0,9.0,9.0,8.0,9.0,9.0,9.0,14,0.22 +75181,95.0,10.0,9.0,10.0,10.0,9.0,9.0,17,0.31 +14837,100.0,10.0,10.0,10.0,10.0,10.0,10.0,79,1.4 +51194,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.18 +22630,90.0,10.0,9.0,9.0,10.0,9.0,9.0,31,1.37 +24355,95.0,10.0,9.0,10.0,10.0,10.0,10.0,33,0.59 +36698,90.0,9.0,9.0,9.0,9.0,9.0,9.0,4,0.09 +35367,98.0,9.0,10.0,10.0,10.0,9.0,9.0,10,0.16 +4259,86.0,9.0,8.0,9.0,9.0,8.0,9.0,35,0.64 +28870,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,6.0 +66941,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.16 +40290,,,,,,,,0, +41254,89.0,9.0,8.0,10.0,10.0,10.0,9.0,11,0.17 +20222,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +17787,95.0,10.0,10.0,10.0,10.0,8.0,10.0,4,0.06 +61660,98.0,10.0,10.0,10.0,10.0,10.0,10.0,50,0.88 +22848,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.11 +63875,,,,,,,,0, +43101,99.0,10.0,10.0,10.0,10.0,10.0,10.0,77,3.0 +22274,97.0,9.0,9.0,10.0,10.0,10.0,10.0,20,1.03 +25777,,,,,,,,0, +51517,98.0,10.0,10.0,10.0,10.0,10.0,10.0,25,0.39 +73517,,,,,,,,0, +2064,98.0,10.0,10.0,10.0,10.0,10.0,10.0,83,2.13 +71351,93.0,9.0,10.0,10.0,10.0,10.0,9.0,45,0.71 +7588,93.0,10.0,10.0,10.0,9.0,10.0,9.0,4,0.19 +74728,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.17 +17166,92.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.08 +8148,,,,,,,,0, +34849,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.25 +51092,97.0,10.0,9.0,10.0,10.0,10.0,9.0,93,1.51 +4210,96.0,10.0,9.0,10.0,10.0,10.0,10.0,88,1.39 +4678,98.0,10.0,10.0,10.0,10.0,10.0,10.0,45,0.85 +16251,100.0,10.0,9.0,10.0,10.0,10.0,10.0,13,0.21 +3230,99.0,10.0,10.0,10.0,10.0,10.0,10.0,87,1.34 +41856,98.0,10.0,10.0,10.0,10.0,10.0,9.0,47,0.75 +47545,96.0,10.0,9.0,10.0,10.0,10.0,9.0,31,0.62 +7039,96.0,10.0,10.0,10.0,10.0,9.0,9.0,53,0.85 +48397,93.0,9.0,9.0,10.0,10.0,10.0,9.0,47,0.85 +26654,99.0,10.0,10.0,10.0,10.0,10.0,10.0,95,1.49 +47132,98.0,9.0,10.0,10.0,10.0,9.0,10.0,21,1.66 +68913,95.0,10.0,10.0,10.0,10.0,10.0,10.0,28,0.49 +50971,93.0,10.0,10.0,10.0,10.0,10.0,9.0,9,0.14 +23652,93.0,10.0,9.0,10.0,10.0,10.0,9.0,16,0.25 +71246,90.0,9.0,9.0,10.0,10.0,9.0,9.0,87,1.38 +56431,98.0,10.0,9.0,10.0,10.0,9.0,9.0,67,1.05 +15201,84.0,9.0,7.0,9.0,9.0,9.0,8.0,13,0.3 +72755,,,,,,,,0, +73868,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.04 +17218,94.0,9.0,9.0,10.0,10.0,9.0,9.0,115,1.8 +30878,99.0,10.0,10.0,10.0,10.0,9.0,10.0,30,1.64 +21138,,,,,,,,0, +19284,98.0,10.0,10.0,10.0,10.0,10.0,10.0,55,0.85 +225,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.27 +60381,97.0,10.0,10.0,10.0,10.0,10.0,9.0,47,0.8 +16740,93.0,10.0,9.0,10.0,10.0,9.0,9.0,46,0.72 +52881,97.0,10.0,10.0,10.0,10.0,10.0,10.0,19,0.45 +6443,98.0,10.0,10.0,10.0,10.0,10.0,9.0,8,0.13 +19157,91.0,10.0,9.0,10.0,10.0,9.0,10.0,11,0.35 +62891,89.0,9.0,9.0,9.0,9.0,9.0,9.0,88,1.42 +38468,92.0,9.0,10.0,10.0,10.0,10.0,9.0,58,0.91 +76406,94.0,9.0,9.0,10.0,10.0,10.0,9.0,67,1.05 +13976,100.0,10.0,10.0,10.0,10.0,9.0,10.0,9,0.24 +14230,95.0,10.0,10.0,10.0,10.0,9.0,9.0,164,2.58 +50536,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.18 +58501,95.0,9.0,10.0,10.0,10.0,8.0,9.0,8,0.12 +13152,99.0,10.0,10.0,10.0,10.0,10.0,10.0,268,8.21 +60119,94.0,10.0,9.0,10.0,10.0,9.0,9.0,10,0.23 +17629,100.0,9.0,10.0,10.0,10.0,9.0,9.0,3,0.07 +10859,96.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.83 +73613,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.11 +40211,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.2 +25672,98.0,10.0,10.0,10.0,10.0,10.0,10.0,87,1.62 +67934,93.0,9.0,9.0,10.0,10.0,10.0,9.0,83,1.88 +7632,98.0,10.0,10.0,10.0,10.0,9.0,10.0,68,1.33 +51554,98.0,10.0,10.0,10.0,10.0,10.0,10.0,38,0.61 +72984,,,,,,,,0, +42600,96.0,10.0,10.0,10.0,10.0,9.0,10.0,17,0.32 +38781,90.0,9.0,9.0,10.0,10.0,10.0,9.0,61,0.95 +26346,91.0,9.0,9.0,10.0,10.0,9.0,9.0,8,0.2 +16066,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.15 +69980,94.0,9.0,9.0,10.0,10.0,10.0,9.0,34,0.61 +18499,86.0,9.0,9.0,10.0,10.0,10.0,9.0,158,2.48 +65754,96.0,10.0,10.0,10.0,10.0,9.0,9.0,195,3.05 +47558,,,,,,,,0, +11227,84.0,10.0,6.0,10.0,9.0,10.0,9.0,9,0.16 +26574,91.0,9.0,9.0,10.0,10.0,10.0,9.0,31,0.5 +28312,96.0,10.0,10.0,10.0,10.0,9.0,9.0,63,0.99 +44447,98.0,10.0,9.0,10.0,10.0,10.0,10.0,9,0.19 +49648,95.0,10.0,10.0,10.0,10.0,9.0,10.0,110,3.31 +26869,90.0,10.0,9.0,9.0,10.0,9.0,9.0,44,0.73 +69337,97.0,10.0,10.0,10.0,10.0,10.0,10.0,23,0.58 +43737,93.0,9.0,9.0,10.0,9.0,9.0,9.0,24,0.38 +66937,91.0,10.0,9.0,10.0,10.0,8.0,9.0,156,2.44 +5535,80.0,9.0,9.0,8.0,9.0,8.0,7.0,2,0.04 +34298,98.0,10.0,10.0,10.0,10.0,10.0,10.0,364,5.7 +46554,92.0,9.0,10.0,9.0,9.0,10.0,8.0,15,0.23 +22921,,,,,,,,0, +45904,,,,,,,,0, +69767,,,,,,,,0, +45468,93.0,10.0,10.0,10.0,10.0,9.0,9.0,21,0.37 +49392,96.0,10.0,9.0,10.0,10.0,10.0,9.0,47,0.74 +48667,93.0,9.0,9.0,9.0,10.0,9.0,9.0,12,0.22 +27102,,,,,,,,0, +68821,97.0,10.0,10.0,10.0,10.0,10.0,10.0,47,0.74 +4812,97.0,10.0,9.0,10.0,10.0,9.0,10.0,52,1.31 +12365,94.0,9.0,9.0,10.0,10.0,9.0,9.0,177,3.07 +57909,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.23 +27676,70.0,9.0,8.0,9.0,10.0,9.0,8.0,3,0.05 +26581,,,,,,,,0, +28003,95.0,9.0,9.0,10.0,10.0,10.0,10.0,81,1.76 +58196,,,,,,,,0, +30244,97.0,10.0,10.0,10.0,10.0,10.0,10.0,78,1.23 +42162,93.0,10.0,10.0,10.0,10.0,9.0,9.0,22,0.56 +17960,,,,,,,,0, +14681,97.0,9.0,9.0,10.0,10.0,9.0,9.0,33,0.52 +42380,91.0,9.0,8.0,10.0,10.0,10.0,9.0,42,0.68 +68514,90.0,9.0,9.0,9.0,10.0,9.0,9.0,11,0.19 +13684,98.0,10.0,10.0,10.0,10.0,10.0,10.0,45,0.71 +69117,94.0,9.0,9.0,10.0,9.0,10.0,9.0,27,0.42 +13770,93.0,10.0,9.0,10.0,10.0,10.0,10.0,18,0.93 +48943,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.19 +51424,,,,,,,,0, +67545,98.0,10.0,10.0,10.0,10.0,10.0,9.0,9,0.27 +35044,90.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.09 +76077,82.0,8.0,9.0,8.0,9.0,8.0,9.0,66,1.03 +22599,91.0,9.0,10.0,9.0,10.0,9.0,9.0,32,0.51 +4942,98.0,10.0,9.0,10.0,10.0,10.0,10.0,15,0.25 +56723,,,,,,,,0, +10644,91.0,9.0,9.0,10.0,9.0,8.0,9.0,45,0.78 +62602,93.0,9.0,9.0,10.0,9.0,10.0,10.0,3,2.43 +39390,86.0,9.0,9.0,9.0,9.0,9.0,9.0,57,0.89 +31386,90.0,9.0,9.0,9.0,10.0,9.0,9.0,60,0.94 +20188,94.0,10.0,10.0,10.0,10.0,10.0,9.0,39,0.61 +63943,92.0,10.0,9.0,10.0,9.0,10.0,9.0,22,0.38 +1282,97.0,10.0,10.0,10.0,10.0,9.0,9.0,121,1.91 +17846,80.0,10.0,8.0,10.0,10.0,8.0,10.0,1,0.02 +71857,,,,,,,,0, +43783,94.0,10.0,10.0,9.0,10.0,9.0,9.0,20,0.32 +21488,87.0,8.0,9.0,10.0,10.0,10.0,9.0,28,0.44 +41726,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.22 +58734,95.0,10.0,10.0,9.0,9.0,9.0,9.0,21,0.33 +57526,88.0,9.0,8.0,9.0,9.0,8.0,9.0,22,0.34 +51965,89.0,9.0,9.0,10.0,10.0,9.0,9.0,14,0.25 +23608,99.0,10.0,10.0,10.0,10.0,10.0,10.0,21,1.1 +66280,94.0,10.0,9.0,10.0,10.0,10.0,9.0,21,0.5 +40841,,,,,,,,0, +5142,90.0,9.0,10.0,9.0,9.0,9.0,9.0,177,2.86 +55578,98.0,10.0,10.0,10.0,10.0,10.0,10.0,126,1.99 +29465,96.0,10.0,10.0,10.0,10.0,9.0,10.0,26,2.11 +24882,97.0,10.0,10.0,10.0,10.0,9.0,9.0,52,0.83 +55137,99.0,10.0,10.0,10.0,10.0,10.0,10.0,76,1.19 +42767,94.0,10.0,9.0,10.0,9.0,10.0,9.0,145,2.33 +70262,,,,,,,,0, +11042,93.0,10.0,9.0,10.0,10.0,9.0,10.0,25,0.4 +18333,100.0,10.0,9.0,10.0,10.0,10.0,9.0,4,0.11 +1501,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.1 +4762,,,,,,,,0, +2001,98.0,10.0,10.0,10.0,10.0,10.0,10.0,25,0.62 +17723,,,,,,,,0, +43312,98.0,10.0,9.0,10.0,10.0,10.0,10.0,107,2.02 +53191,83.0,9.0,7.0,9.0,10.0,9.0,8.0,36,0.57 +38617,,,,,,,,0, +68298,93.0,10.0,10.0,8.0,9.0,9.0,9.0,3,0.06 +51272,90.0,9.0,9.0,9.0,10.0,9.0,9.0,76,1.19 +69223,99.0,10.0,10.0,10.0,10.0,10.0,10.0,76,1.95 +12929,94.0,10.0,9.0,10.0,10.0,10.0,9.0,49,0.8 +10630,85.0,10.0,8.0,9.0,10.0,10.0,9.0,4,0.08 +22577,100.0,10.0,10.0,10.0,10.0,10.0,10.0,222,3.5 +15165,97.0,10.0,9.0,10.0,10.0,10.0,9.0,30,0.49 +71080,89.0,9.0,9.0,9.0,9.0,9.0,9.0,39,0.65 +15840,85.0,9.0,8.0,9.0,8.0,9.0,9.0,12,0.21 +18350,89.0,10.0,9.0,10.0,10.0,9.0,9.0,19,0.34 +10104,99.0,10.0,10.0,10.0,10.0,9.0,10.0,256,4.31 +68472,100.0,10.0,9.0,10.0,10.0,10.0,10.0,6,0.1 +26444,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +47388,,,,,,,,0, +41981,86.0,9.0,9.0,9.0,10.0,9.0,9.0,13,0.31 +46111,,,,,,,,0, +59371,80.0,8.0,10.0,10.0,10.0,10.0,6.0,1,0.23 +11437,91.0,10.0,9.0,10.0,10.0,9.0,9.0,33,0.53 +35887,98.0,10.0,10.0,10.0,10.0,9.0,10.0,43,1.13 +38899,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.11 +73456,99.0,10.0,10.0,10.0,10.0,9.0,10.0,79,1.24 +68427,80.0,10.0,8.0,10.0,9.0,9.0,9.0,3,0.05 +17549,94.0,9.0,9.0,10.0,10.0,10.0,10.0,8,0.13 +58621,92.0,9.0,9.0,10.0,10.0,10.0,9.0,48,0.75 +24158,93.0,10.0,9.0,10.0,10.0,9.0,9.0,247,4.06 +73917,100.0,10.0,9.0,10.0,10.0,9.0,9.0,5,0.1 +58557,90.0,9.0,7.0,10.0,10.0,10.0,8.0,2,0.05 +46838,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +31595,96.0,10.0,9.0,10.0,10.0,10.0,10.0,14,0.25 +67967,96.0,10.0,10.0,10.0,10.0,10.0,10.0,45,0.71 +23774,97.0,10.0,10.0,10.0,10.0,9.0,10.0,138,2.19 +49445,97.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.39 +52606,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.06 +4579,97.0,10.0,10.0,10.0,10.0,10.0,10.0,242,3.8 +65300,,,,,,,,0, +27263,99.0,10.0,10.0,10.0,10.0,10.0,10.0,51,0.81 +50855,,,,,,,,0, +70309,60.0,8.0,6.0,8.0,8.0,8.0,6.0,2,0.35 +12588,,,,,,,,0, +2837,94.0,9.0,10.0,10.0,10.0,10.0,9.0,94,1.89 +42865,98.0,10.0,10.0,10.0,10.0,10.0,10.0,48,1.23 +55382,95.0,10.0,10.0,10.0,10.0,9.0,9.0,229,3.7 +36271,90.0,9.0,9.0,10.0,10.0,10.0,9.0,90,1.44 +67663,99.0,10.0,10.0,10.0,10.0,9.0,9.0,24,0.46 +23252,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.06 +23407,94.0,10.0,9.0,10.0,10.0,9.0,10.0,28,0.47 +3317,96.0,10.0,9.0,10.0,10.0,10.0,9.0,42,0.67 +43814,91.0,9.0,8.0,10.0,10.0,8.0,9.0,10,0.17 +74346,97.0,10.0,10.0,10.0,10.0,10.0,10.0,151,2.41 +57583,50.0,7.0,5.0,10.0,9.0,10.0,8.0,2,0.05 +66472,87.0,9.0,8.0,10.0,10.0,9.0,9.0,184,3.06 +22275,95.0,10.0,9.0,10.0,10.0,9.0,9.0,79,1.42 +17429,99.0,10.0,10.0,10.0,10.0,10.0,9.0,101,1.59 +51287,94.0,10.0,10.0,10.0,10.0,10.0,9.0,45,0.72 +34281,92.0,9.0,8.0,10.0,10.0,9.0,9.0,71,1.12 +17167,97.0,10.0,9.0,10.0,10.0,9.0,10.0,39,0.63 +13202,89.0,10.0,9.0,10.0,10.0,9.0,9.0,9,0.29 +12583,98.0,10.0,10.0,10.0,10.0,10.0,10.0,153,2.69 +45416,86.0,9.0,8.0,10.0,10.0,9.0,9.0,75,1.18 +61088,99.0,10.0,10.0,10.0,10.0,10.0,10.0,57,0.91 +56759,88.0,10.0,9.0,9.0,10.0,10.0,9.0,26,0.42 +19808,91.0,9.0,9.0,9.0,9.0,10.0,9.0,26,0.79 +34908,85.0,8.0,9.0,8.0,8.0,9.0,9.0,27,0.48 +45771,81.0,8.0,9.0,9.0,9.0,9.0,8.0,18,0.31 +53876,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.02 +18564,89.0,9.0,8.0,9.0,10.0,9.0,9.0,93,1.48 +62499,97.0,10.0,10.0,10.0,10.0,10.0,10.0,19,0.3 +22295,91.0,10.0,9.0,9.0,10.0,9.0,9.0,87,1.67 +70187,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.07 +27336,92.0,10.0,9.0,10.0,10.0,9.0,9.0,35,0.55 +49954,98.0,10.0,10.0,10.0,10.0,10.0,10.0,29,0.46 +52053,92.0,10.0,9.0,10.0,10.0,9.0,9.0,35,0.56 +1036,89.0,9.0,8.0,9.0,9.0,9.0,9.0,11,0.18 +41201,97.0,10.0,9.0,10.0,10.0,9.0,10.0,25,0.4 +14228,95.0,10.0,10.0,9.0,10.0,10.0,10.0,4,0.14 +9499,96.0,10.0,10.0,10.0,10.0,9.0,10.0,88,1.41 +50195,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +71683,99.0,10.0,10.0,10.0,10.0,9.0,10.0,14,0.25 +53061,98.0,10.0,10.0,10.0,10.0,10.0,10.0,17,2.64 +32899,94.0,10.0,8.0,10.0,10.0,10.0,10.0,9,0.15 +5866,96.0,10.0,10.0,10.0,10.0,9.0,9.0,42,0.94 +15212,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.13 +8342,81.0,8.0,8.0,9.0,9.0,9.0,8.0,38,0.6 +72014,88.0,10.0,9.0,9.0,9.0,9.0,9.0,21,0.42 +14099,97.0,10.0,10.0,10.0,10.0,10.0,10.0,25,0.64 +33957,98.0,10.0,10.0,10.0,10.0,10.0,10.0,149,2.38 +20583,97.0,10.0,9.0,10.0,10.0,10.0,10.0,8,0.8 +60131,93.0,9.0,9.0,9.0,10.0,10.0,9.0,61,0.97 +19834,96.0,10.0,10.0,10.0,10.0,10.0,10.0,190,3.88 +42168,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.86 +69363,93.0,9.0,9.0,10.0,10.0,9.0,9.0,40,0.64 +57250,91.0,9.0,9.0,9.0,10.0,10.0,9.0,7,0.12 +66152,97.0,10.0,10.0,10.0,10.0,8.0,9.0,10,0.16 +658,88.0,9.0,8.0,9.0,9.0,10.0,9.0,87,1.55 +37994,97.0,10.0,9.0,10.0,10.0,9.0,10.0,37,0.59 +55783,,,,,,,,0, +4484,93.0,10.0,9.0,9.0,10.0,9.0,9.0,16,0.28 +21844,96.0,10.0,10.0,10.0,10.0,10.0,10.0,30,0.54 +62915,87.0,10.0,9.0,10.0,10.0,10.0,9.0,3,0.07 +57736,95.0,10.0,9.0,10.0,10.0,10.0,9.0,219,3.52 +49638,91.0,10.0,9.0,10.0,10.0,10.0,9.0,42,0.7 +26069,95.0,9.0,9.0,10.0,10.0,10.0,9.0,66,1.05 +25198,98.0,10.0,10.0,10.0,10.0,10.0,10.0,60,0.96 +57616,93.0,9.0,9.0,10.0,10.0,10.0,9.0,31,0.5 +47169,96.0,10.0,9.0,9.0,10.0,9.0,9.0,23,0.42 +62176,93.0,10.0,10.0,10.0,10.0,7.0,10.0,18,0.32 +53336,85.0,9.0,9.0,9.0,10.0,8.0,8.0,22,0.46 +46142,93.0,9.0,9.0,10.0,10.0,9.0,9.0,63,1.0 +36015,90.0,9.0,10.0,9.0,10.0,10.0,9.0,2,0.04 +30971,98.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.18 +41232,98.0,10.0,10.0,10.0,10.0,9.0,10.0,319,5.11 +51619,95.0,9.0,9.0,10.0,10.0,9.0,9.0,41,0.66 +3427,83.0,8.0,7.0,9.0,9.0,9.0,8.0,6,0.1 +63035,98.0,10.0,10.0,10.0,10.0,10.0,10.0,56,0.89 +22493,94.0,9.0,9.0,10.0,10.0,8.0,10.0,34,1.22 +75133,96.0,10.0,10.0,10.0,10.0,9.0,10.0,10,0.29 +34636,95.0,10.0,9.0,9.0,9.0,10.0,9.0,8,0.13 +72175,97.0,10.0,10.0,10.0,10.0,9.0,10.0,15,0.25 +53472,96.0,10.0,10.0,10.0,9.0,9.0,10.0,6,0.26 +33502,90.0,9.0,8.0,10.0,10.0,8.0,8.0,6,0.13 +60807,96.0,10.0,9.0,10.0,10.0,8.0,10.0,77,1.3 +5927,93.0,10.0,9.0,9.0,9.0,8.0,9.0,9,0.15 +62423,89.0,8.0,8.0,10.0,9.0,9.0,9.0,21,0.34 +32711,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.18 +17679,97.0,10.0,10.0,10.0,10.0,10.0,10.0,96,1.55 +69578,,,,,,,,0, +16564,,,,,,,,0, +36127,95.0,10.0,9.0,10.0,10.0,10.0,10.0,37,0.68 +41602,99.0,10.0,10.0,10.0,10.0,10.0,10.0,22,0.39 +3262,98.0,10.0,10.0,10.0,10.0,10.0,9.0,69,1.12 +55258,97.0,10.0,10.0,10.0,10.0,9.0,10.0,194,3.33 +52410,92.0,10.0,9.0,10.0,10.0,9.0,9.0,10,0.19 +13859,96.0,10.0,9.0,10.0,10.0,10.0,10.0,60,0.97 +25755,97.0,10.0,10.0,10.0,10.0,10.0,10.0,52,0.83 +47726,96.0,10.0,9.0,10.0,10.0,10.0,10.0,34,0.57 +35273,96.0,10.0,9.0,10.0,10.0,10.0,9.0,52,0.96 +5572,98.0,10.0,10.0,10.0,10.0,10.0,10.0,97,2.39 +66724,98.0,10.0,10.0,9.0,10.0,10.0,9.0,22,0.35 +29765,99.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.3 +39,80.0,8.0,7.0,9.0,9.0,9.0,8.0,42,0.67 +5443,100.0,,,,,,,1,0.02 +14763,,,,,,,,0, +65493,97.0,10.0,10.0,10.0,10.0,10.0,10.0,64,1.61 +5263,95.0,10.0,10.0,10.0,10.0,10.0,10.0,127,2.02 +10377,98.0,10.0,10.0,10.0,10.0,10.0,10.0,60,1.06 +18451,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.04 +20985,91.0,9.0,9.0,10.0,10.0,9.0,9.0,164,2.62 +54404,94.0,10.0,9.0,10.0,10.0,10.0,9.0,91,1.45 +36045,94.0,10.0,9.0,10.0,10.0,9.0,9.0,77,1.86 +5577,98.0,10.0,10.0,10.0,9.0,9.0,9.0,11,0.17 +58725,99.0,10.0,10.0,10.0,10.0,10.0,10.0,24,0.44 +35306,98.0,10.0,10.0,10.0,10.0,10.0,10.0,377,6.11 +44228,100.0,10.0,10.0,10.0,10.0,8.0,9.0,21,0.38 +76660,98.0,10.0,10.0,10.0,10.0,9.0,10.0,55,1.06 +13666,94.0,10.0,9.0,10.0,10.0,9.0,9.0,170,2.7 +8309,95.0,9.0,9.0,10.0,10.0,9.0,9.0,41,0.68 +43249,95.0,10.0,9.0,10.0,10.0,10.0,9.0,54,0.86 +25690,,,,,,,,0, +8716,86.0,9.0,7.0,9.0,9.0,9.0,9.0,111,1.78 +40373,80.0,8.0,10.0,10.0,10.0,10.0,6.0,1,0.02 +55848,,,,,,,,0, +46438,94.0,9.0,9.0,10.0,10.0,9.0,9.0,29,0.47 +23515,95.0,9.0,9.0,10.0,10.0,10.0,9.0,76,1.24 +52305,98.0,9.0,10.0,10.0,10.0,10.0,9.0,14,0.23 +24836,87.0,9.0,8.0,9.0,10.0,9.0,9.0,88,1.41 +24058,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.22 +46161,96.0,10.0,9.0,10.0,10.0,10.0,9.0,83,1.33 +41828,92.0,9.0,9.0,9.0,10.0,9.0,9.0,396,6.33 +40008,94.0,10.0,9.0,10.0,10.0,9.0,9.0,139,2.21 +51169,94.0,9.0,10.0,10.0,10.0,9.0,9.0,156,2.72 +1188,88.0,10.0,9.0,10.0,10.0,9.0,9.0,12,0.19 +56821,98.0,10.0,10.0,10.0,10.0,9.0,10.0,96,1.6 +62101,95.0,10.0,8.0,10.0,9.0,9.0,9.0,21,0.34 +34031,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +33832,90.0,8.0,6.0,7.0,10.0,8.0,8.0,2,0.05 +62853,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.25 +39812,95.0,9.0,10.0,10.0,10.0,10.0,10.0,68,1.18 +5614,89.0,9.0,9.0,9.0,10.0,10.0,9.0,53,0.86 +76132,98.0,10.0,10.0,10.0,10.0,10.0,10.0,33,0.54 +35253,91.0,9.0,9.0,10.0,10.0,9.0,9.0,18,0.3 +40749,93.0,10.0,9.0,10.0,10.0,10.0,9.0,231,3.78 +61850,99.0,10.0,10.0,10.0,10.0,10.0,10.0,97,1.58 +11153,89.0,9.0,9.0,9.0,10.0,9.0,9.0,79,1.26 +27804,97.0,10.0,10.0,10.0,10.0,10.0,10.0,21,0.35 +22546,90.0,9.0,9.0,9.0,9.0,10.0,9.0,67,1.13 +39012,97.0,10.0,10.0,10.0,10.0,9.0,9.0,69,1.18 +12728,88.0,9.0,9.0,9.0,9.0,8.0,9.0,31,0.55 +6957,86.0,9.0,8.0,9.0,9.0,9.0,9.0,62,1.4 +54961,100.0,10.0,10.0,10.0,10.0,10.0,6.0,1,0.06 +69937,99.0,10.0,10.0,10.0,10.0,9.0,10.0,93,1.5 +11849,,,,,,,,0, +27136,98.0,10.0,10.0,10.0,10.0,10.0,10.0,132,2.12 +52777,93.0,10.0,9.0,10.0,10.0,10.0,9.0,19,0.35 +7798,97.0,10.0,10.0,10.0,10.0,10.0,9.0,45,0.74 +49299,98.0,10.0,10.0,10.0,10.0,10.0,10.0,20,0.74 +11775,94.0,10.0,9.0,9.0,10.0,10.0,10.0,7,0.95 +76254,89.0,9.0,9.0,10.0,10.0,9.0,9.0,125,2.0 +53816,87.0,9.0,8.0,10.0,10.0,10.0,9.0,11,0.19 +23354,88.0,9.0,8.0,10.0,10.0,10.0,9.0,15,0.25 +41477,97.0,10.0,9.0,9.0,10.0,9.0,10.0,8,0.13 +52588,96.0,10.0,10.0,9.0,10.0,9.0,10.0,25,1.7 +45829,,,,,,,,0, +10809,100.0,8.0,8.0,10.0,10.0,10.0,8.0,1,0.02 +24395,93.0,9.0,9.0,10.0,10.0,10.0,10.0,3,0.05 +65188,90.0,8.0,8.0,10.0,10.0,9.0,8.0,2,0.04 +68136,82.0,8.0,8.0,9.0,9.0,9.0,9.0,54,0.98 +72927,92.0,9.0,9.0,10.0,10.0,9.0,9.0,78,1.26 +34019,99.0,10.0,10.0,10.0,10.0,10.0,9.0,19,0.32 +62677,86.0,9.0,9.0,9.0,9.0,8.0,9.0,8,0.2 +70683,80.0,6.0,6.0,8.0,8.0,6.0,6.0,1,0.06 +7183,94.0,10.0,10.0,10.0,10.0,9.0,10.0,14,0.24 +5529,93.0,9.0,9.0,10.0,10.0,10.0,9.0,99,1.6 +35754,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.91 +1336,89.0,9.0,9.0,9.0,9.0,9.0,9.0,223,3.58 +71141,95.0,10.0,9.0,10.0,10.0,10.0,9.0,27,0.58 +29945,95.0,10.0,10.0,10.0,9.0,10.0,9.0,83,1.41 +17829,96.0,9.0,9.0,9.0,9.0,9.0,9.0,15,0.28 +76661,90.0,10.0,9.0,10.0,10.0,9.0,9.0,6,0.1 +52279,,,,,,,,0, +42944,94.0,10.0,10.0,10.0,10.0,10.0,10.0,50,1.56 +59841,97.0,10.0,10.0,10.0,10.0,10.0,10.0,84,1.8 +13696,94.0,10.0,9.0,10.0,10.0,10.0,9.0,39,1.36 +68585,92.0,10.0,10.0,10.0,10.0,10.0,9.0,50,0.81 +74495,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.11 +29191,99.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.29 +26564,98.0,10.0,10.0,10.0,10.0,10.0,9.0,8,0.32 +574,95.0,10.0,10.0,10.0,10.0,10.0,10.0,22,0.36 +35679,96.0,10.0,10.0,10.0,10.0,10.0,9.0,214,3.59 +75785,92.0,10.0,10.0,9.0,10.0,9.0,10.0,45,0.72 +70301,100.0,10.0,9.0,10.0,10.0,10.0,10.0,9,0.15 +66178,95.0,9.0,9.0,10.0,10.0,10.0,9.0,37,0.61 +37449,92.0,10.0,10.0,10.0,10.0,9.0,9.0,38,0.62 +46684,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +67098,91.0,9.0,9.0,10.0,10.0,10.0,9.0,125,2.01 +15531,83.0,8.0,8.0,9.0,10.0,9.0,9.0,6,0.2 +126,90.0,10.0,9.0,9.0,10.0,10.0,9.0,12,0.19 +56733,99.0,10.0,10.0,10.0,10.0,10.0,10.0,39,0.71 +73359,95.0,9.0,9.0,10.0,10.0,10.0,9.0,132,2.13 +44131,95.0,10.0,10.0,10.0,10.0,10.0,9.0,92,1.49 +58892,97.0,10.0,10.0,10.0,10.0,9.0,10.0,38,0.65 +50578,97.0,10.0,10.0,10.0,10.0,10.0,9.0,32,0.56 +17315,97.0,10.0,10.0,10.0,10.0,9.0,10.0,120,1.93 +36949,95.0,10.0,9.0,10.0,10.0,10.0,9.0,42,0.87 +1019,98.0,10.0,10.0,10.0,10.0,10.0,10.0,47,0.78 +46819,95.0,10.0,10.0,10.0,10.0,9.0,10.0,76,1.25 +49239,92.0,9.0,9.0,10.0,9.0,10.0,9.0,36,0.6 +56085,93.0,9.0,9.0,10.0,10.0,10.0,10.0,12,0.2 +76649,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.09 +76018,92.0,9.0,9.0,10.0,10.0,10.0,9.0,41,0.76 +923,,,,,,,,0, +38069,97.0,10.0,10.0,10.0,10.0,10.0,10.0,48,0.79 +74751,93.0,10.0,9.0,10.0,10.0,8.0,8.0,11,0.18 +71067,94.0,9.0,9.0,10.0,10.0,10.0,9.0,7,0.17 +22563,96.0,10.0,9.0,10.0,10.0,9.0,10.0,43,1.02 +18639,100.0,8.0,6.0,10.0,10.0,8.0,8.0,1,0.02 +7741,92.0,10.0,10.0,10.0,10.0,8.0,9.0,5,0.1 +70902,98.0,10.0,10.0,10.0,10.0,8.0,9.0,10,0.17 +68814,98.0,10.0,10.0,10.0,10.0,10.0,9.0,48,0.78 +37769,95.0,10.0,10.0,10.0,10.0,9.0,9.0,41,0.96 +22622,91.0,9.0,9.0,9.0,10.0,10.0,9.0,35,0.66 +51787,90.0,10.0,9.0,10.0,10.0,9.0,9.0,13,0.25 +9091,93.0,10.0,9.0,10.0,10.0,10.0,9.0,22,0.41 +22065,100.0,10.0,9.0,10.0,10.0,10.0,9.0,4,0.18 +43008,93.0,10.0,9.0,10.0,10.0,9.0,9.0,6,0.1 +67801,98.0,10.0,10.0,10.0,10.0,10.0,10.0,69,1.12 +47215,99.0,10.0,10.0,10.0,10.0,9.0,10.0,36,0.58 +71741,,,,,,,,0, +17623,96.0,10.0,10.0,10.0,10.0,9.0,10.0,66,1.19 +50930,91.0,10.0,9.0,10.0,10.0,9.0,10.0,19,0.33 +75039,98.0,10.0,10.0,10.0,10.0,10.0,10.0,101,1.66 +71663,92.0,9.0,9.0,9.0,9.0,9.0,9.0,12,0.59 +9634,100.0,10.0,10.0,10.0,10.0,10.0,9.0,12,0.21 +70757,,,,,,,,0, +71086,100.0,10.0,9.0,10.0,10.0,10.0,9.0,3,0.05 +17750,100.0,9.0,9.0,10.0,10.0,10.0,9.0,3,0.39 +14443,94.0,10.0,10.0,10.0,10.0,9.0,9.0,27,0.48 +65089,96.0,10.0,10.0,10.0,10.0,10.0,10.0,40,0.71 +8653,90.0,9.0,9.0,9.0,9.0,10.0,9.0,82,1.52 +8077,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.08 +62480,,,,,,,,0, +35930,80.0,7.0,6.0,9.0,9.0,10.0,8.0,3,0.13 +70214,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.44 +4649,,,,,,,,0, +29053,,,,,,,,0, +61816,,,,,,,,0, +58192,81.0,8.0,9.0,8.0,9.0,10.0,9.0,15,0.34 +44566,99.0,10.0,10.0,10.0,10.0,10.0,10.0,69,1.59 +45622,100.0,10.0,10.0,10.0,10.0,9.0,10.0,17,0.28 +34846,,,,,,,,0, +72886,90.0,9.0,9.0,10.0,9.0,10.0,9.0,49,0.8 +49740,99.0,10.0,10.0,10.0,10.0,9.0,10.0,35,0.64 +57746,,,,,,,,0, +20527,98.0,10.0,10.0,10.0,10.0,10.0,9.0,84,1.4 +59003,98.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.39 +43865,,,,,,,,0, +36003,94.0,9.0,9.0,9.0,9.0,10.0,10.0,23,0.38 +54896,93.0,10.0,9.0,10.0,10.0,10.0,9.0,3,0.1 +72543,95.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.75 +62183,,,,,,,,0, +61594,98.0,10.0,10.0,10.0,10.0,10.0,10.0,43,0.84 +68883,100.0,10.0,10.0,10.0,10.0,8.0,9.0,3,0.05 +58498,90.0,10.0,9.0,9.0,9.0,9.0,9.0,10,0.3 +59404,89.0,9.0,9.0,9.0,9.0,10.0,9.0,65,1.06 +1378,100.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.28 +40759,97.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.21 +5418,93.0,9.0,9.0,10.0,10.0,10.0,9.0,8,0.14 +28008,96.0,10.0,10.0,10.0,10.0,10.0,9.0,23,0.38 +41031,97.0,10.0,10.0,9.0,10.0,10.0,10.0,6,1.18 +17978,,,,,,,,0, +31654,93.0,9.0,10.0,8.0,8.0,10.0,9.0,7,0.11 +23143,100.0,10.0,10.0,10.0,10.0,9.0,10.0,9,0.15 +44887,,,,,,,,0, +69148,87.0,10.0,10.0,9.0,9.0,10.0,9.0,16,0.26 +10318,93.0,10.0,9.0,10.0,10.0,10.0,9.0,46,0.81 +44189,99.0,10.0,10.0,10.0,10.0,10.0,9.0,23,0.38 +30111,92.0,9.0,10.0,10.0,10.0,9.0,9.0,117,1.99 +70836,93.0,9.0,9.0,10.0,10.0,9.0,9.0,6,0.1 +24298,89.0,8.0,9.0,10.0,10.0,10.0,9.0,14,0.23 +45921,100.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.3 +43743,95.0,10.0,10.0,10.0,10.0,9.0,9.0,212,3.45 +22050,85.0,9.0,9.0,10.0,10.0,10.0,10.0,5,0.08 +3335,80.0,9.0,7.0,8.0,9.0,9.0,9.0,3,0.08 +1771,99.0,10.0,10.0,10.0,10.0,9.0,10.0,58,2.15 +34061,100.0,10.0,10.0,10.0,10.0,9.0,9.0,7,0.13 +3691,94.0,10.0,10.0,10.0,10.0,9.0,10.0,33,0.54 +59305,91.0,9.0,9.0,9.0,9.0,9.0,9.0,11,0.19 +37598,93.0,10.0,10.0,10.0,10.0,10.0,9.0,30,0.49 +72081,,,,,,,,1,0.02 +8272,92.0,10.0,9.0,9.0,10.0,9.0,9.0,5,0.08 +37222,93.0,10.0,10.0,9.0,10.0,10.0,9.0,76,1.25 +56229,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.48 +43497,,,,,,,,0, +23582,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.21 +31757,89.0,9.0,9.0,10.0,10.0,10.0,9.0,61,1.0 +40309,97.0,10.0,10.0,10.0,10.0,10.0,10.0,63,1.02 +42529,96.0,10.0,10.0,10.0,10.0,10.0,9.0,101,1.68 +76757,97.0,10.0,9.0,10.0,10.0,10.0,9.0,7,0.12 +61107,94.0,10.0,9.0,9.0,9.0,10.0,9.0,39,0.96 +6827,86.0,9.0,9.0,9.0,9.0,10.0,9.0,64,1.05 +27997,97.0,10.0,10.0,10.0,10.0,10.0,9.0,7,0.14 +45817,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.12 +53591,,,,,,,,0, +66878,,,,,,,,0, +16632,91.0,9.0,9.0,10.0,10.0,10.0,9.0,175,2.85 +57399,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +47313,96.0,10.0,9.0,9.0,9.0,10.0,10.0,19,0.31 +22024,95.0,10.0,10.0,10.0,10.0,9.0,9.0,32,0.53 +5014,89.0,9.0,10.0,10.0,9.0,9.0,10.0,9,0.28 +7842,99.0,10.0,10.0,10.0,10.0,9.0,9.0,46,1.59 +50959,,,,,,,,0, +1456,93.0,9.0,10.0,9.0,9.0,10.0,9.0,8,0.14 +23474,,,,,,,,1,0.05 +57167,97.0,10.0,10.0,10.0,10.0,9.0,10.0,24,0.58 +21935,95.0,10.0,9.0,10.0,10.0,9.0,9.0,21,0.47 +51093,99.0,10.0,10.0,10.0,10.0,10.0,10.0,33,0.55 +44052,99.0,10.0,10.0,10.0,10.0,10.0,10.0,100,3.68 +50534,95.0,10.0,9.0,10.0,10.0,9.0,9.0,47,0.91 +39388,95.0,10.0,10.0,10.0,10.0,10.0,9.0,61,1.28 +18555,96.0,10.0,10.0,9.0,10.0,9.0,9.0,18,0.3 +1943,88.0,9.0,9.0,9.0,9.0,9.0,9.0,52,1.3 +48141,98.0,10.0,10.0,10.0,10.0,10.0,10.0,33,0.89 +35824,,,,,,,,0, +76041,96.0,10.0,10.0,10.0,10.0,10.0,9.0,52,0.87 +17747,88.0,9.0,9.0,10.0,10.0,10.0,9.0,82,1.37 +54033,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +44011,98.0,10.0,10.0,10.0,10.0,10.0,10.0,116,1.9 +65055,87.0,9.0,8.0,8.0,9.0,9.0,9.0,9,0.19 +13092,98.0,10.0,10.0,10.0,10.0,10.0,10.0,42,0.74 +823,80.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.07 +66337,86.0,9.0,7.0,9.0,9.0,9.0,8.0,18,0.88 +40302,96.0,10.0,10.0,10.0,10.0,10.0,10.0,100,2.0 +57177,96.0,10.0,10.0,10.0,10.0,10.0,9.0,138,2.3 +38863,,,,,,,,0, +37050,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.38 +73553,97.0,9.0,9.0,10.0,10.0,10.0,10.0,14,0.23 +11376,91.0,9.0,9.0,10.0,10.0,9.0,9.0,71,1.18 +6079,93.0,9.0,10.0,10.0,7.0,9.0,9.0,4,0.07 +54171,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.18 +46756,98.0,10.0,10.0,10.0,10.0,9.0,10.0,98,1.68 +3981,95.0,10.0,10.0,10.0,10.0,9.0,9.0,165,2.69 +9476,89.0,9.0,9.0,10.0,10.0,8.0,9.0,19,0.34 +15885,96.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.65 +56202,78.0,9.0,7.0,10.0,10.0,10.0,8.0,12,0.2 +73229,98.0,10.0,10.0,10.0,10.0,9.0,9.0,80,1.33 +13490,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +8663,96.0,10.0,10.0,10.0,10.0,9.0,10.0,46,0.79 +1525,91.0,10.0,9.0,9.0,10.0,8.0,9.0,17,0.28 +70771,97.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.02 +27729,97.0,10.0,10.0,10.0,10.0,9.0,10.0,14,0.33 +32980,,,,,,,,0, +67312,,,,,,,,0, +9108,,,,,,,,0, +73373,94.0,10.0,10.0,10.0,10.0,10.0,9.0,98,1.63 +2748,95.0,10.0,9.0,10.0,10.0,10.0,10.0,63,1.06 +64278,83.0,8.0,9.0,9.0,9.0,10.0,7.0,6,0.35 +67265,96.0,10.0,10.0,10.0,10.0,10.0,10.0,153,2.51 +25960,95.0,10.0,9.0,10.0,10.0,9.0,9.0,29,0.48 +53268,96.0,10.0,10.0,10.0,10.0,9.0,9.0,27,0.48 +31747,100.0,10.0,6.0,10.0,10.0,8.0,10.0,2,0.15 +30575,96.0,10.0,10.0,9.0,9.0,10.0,9.0,15,0.25 +39045,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.04 +57771,,,,,,,,0, +806,91.0,9.0,9.0,10.0,10.0,10.0,9.0,35,0.59 +46690,90.0,10.0,9.0,10.0,10.0,9.0,9.0,6,0.15 +4296,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +39011,94.0,10.0,10.0,10.0,10.0,9.0,9.0,87,1.42 +77096,99.0,10.0,10.0,10.0,10.0,10.0,10.0,68,1.68 +27169,92.0,9.0,9.0,9.0,10.0,9.0,9.0,94,1.54 +20076,100.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.02 +13990,91.0,9.0,9.0,10.0,10.0,9.0,9.0,92,1.52 +6482,96.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.15 +59681,,,,,,,,0, +19940,88.0,9.0,8.0,10.0,10.0,10.0,10.0,5,0.1 +56421,93.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.13 +51401,96.0,10.0,10.0,10.0,10.0,9.0,10.0,19,0.37 +28341,,,,,,,,0, +7692,93.0,9.0,9.0,9.0,10.0,9.0,9.0,21,0.34 +45104,92.0,10.0,9.0,10.0,10.0,9.0,9.0,45,0.77 +31502,90.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.04 +34355,96.0,10.0,10.0,9.0,10.0,9.0,10.0,47,0.78 +47795,97.0,10.0,10.0,10.0,10.0,10.0,10.0,101,1.66 +20765,95.0,9.0,10.0,10.0,10.0,10.0,9.0,20,0.47 +71147,96.0,10.0,10.0,10.0,10.0,10.0,9.0,141,2.35 +74486,,,,,,,,0, +16771,,,,,,,,0, +13794,91.0,9.0,9.0,10.0,10.0,9.0,9.0,76,1.29 +32821,97.0,10.0,9.0,10.0,10.0,10.0,10.0,77,1.4 +65561,74.0,7.0,8.0,9.0,8.0,9.0,8.0,17,0.28 +70128,60.0,8.0,8.0,8.0,7.0,7.0,7.0,5,0.09 +25145,80.0,8.0,9.0,8.0,8.0,9.0,8.0,23,0.38 +51753,,,,,,,,0, +39917,82.0,8.0,8.0,9.0,10.0,9.0,8.0,22,0.39 +2788,98.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.15 +54675,95.0,9.0,9.0,10.0,10.0,9.0,9.0,193,3.3 +42117,87.0,9.0,7.0,9.0,9.0,9.0,9.0,3,0.05 +9967,96.0,10.0,10.0,10.0,10.0,10.0,9.0,24,0.39 +21853,,,,,,,,0, +3965,91.0,9.0,9.0,10.0,10.0,9.0,9.0,32,0.53 +68155,94.0,10.0,10.0,10.0,10.0,9.0,9.0,7,0.24 +48479,,,,,,,,0, +42084,100.0,10.0,10.0,10.0,10.0,10.0,8.0,2,0.04 +55630,89.0,9.0,9.0,9.0,9.0,10.0,9.0,41,0.67 +13245,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.08 +27559,80.0,9.0,10.0,7.0,7.0,10.0,9.0,3,0.07 +33267,95.0,10.0,10.0,10.0,10.0,9.0,10.0,35,0.57 +6976,96.0,10.0,10.0,10.0,10.0,10.0,9.0,137,2.26 +71627,99.0,10.0,10.0,9.0,10.0,9.0,9.0,15,0.27 +39450,93.0,9.0,9.0,10.0,10.0,10.0,9.0,16,0.31 +5601,94.0,10.0,9.0,9.0,10.0,10.0,9.0,57,0.95 +27796,,,,,,,,0, +69183,95.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.07 +65661,,,,,,,,0, +50160,,,,,,,,0, +11353,89.0,9.0,9.0,9.0,10.0,10.0,9.0,129,2.15 +2951,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.09 +18926,,,,,,,,0, +53180,95.0,9.0,9.0,9.0,9.0,10.0,10.0,87,1.7 +25003,100.0,10.0,8.0,10.0,10.0,10.0,8.0,1,1.0 +35977,99.0,10.0,10.0,10.0,10.0,10.0,10.0,19,0.58 +8860,91.0,10.0,9.0,10.0,10.0,8.0,10.0,19,0.38 +21737,89.0,10.0,10.0,9.0,9.0,9.0,9.0,15,0.29 +6852,89.0,9.0,8.0,10.0,9.0,9.0,9.0,16,0.28 +49009,89.0,10.0,9.0,9.0,10.0,8.0,9.0,66,1.1 +9708,90.0,9.0,9.0,10.0,9.0,10.0,9.0,6,0.1 +23578,92.0,10.0,10.0,9.0,9.0,9.0,9.0,82,1.37 +17509,97.0,10.0,10.0,10.0,10.0,9.0,10.0,44,0.87 +34534,80.0,10.0,10.0,10.0,9.0,8.0,9.0,3,0.05 +29221,97.0,10.0,9.0,10.0,10.0,9.0,9.0,75,1.23 +59335,57.0,6.0,8.0,6.0,4.0,6.0,6.0,1,0.02 +22827,91.0,9.0,9.0,10.0,10.0,9.0,9.0,119,2.13 +70196,,,,,,,,0, +15449,100.0,10.0,10.0,10.0,9.0,9.0,9.0,9,0.16 +25490,,,,,,,,0, +41951,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.3 +20855,93.0,9.0,9.0,10.0,10.0,8.0,9.0,34,0.57 +7596,84.0,9.0,8.0,10.0,10.0,8.0,9.0,16,0.32 +22193,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.12 +32205,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.52 +13665,96.0,10.0,9.0,10.0,10.0,10.0,9.0,306,5.03 +23222,96.0,10.0,9.0,10.0,10.0,10.0,9.0,64,1.05 +71439,87.0,10.0,9.0,10.0,10.0,9.0,9.0,3,0.09 +61505,95.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.74 +35574,100.0,10.0,9.0,10.0,10.0,7.0,10.0,2,1.03 +74655,98.0,10.0,10.0,10.0,10.0,10.0,10.0,80,1.39 +53658,87.0,9.0,10.0,10.0,9.0,10.0,10.0,3,1.53 +2927,78.0,8.0,8.0,8.0,9.0,8.0,8.0,35,0.58 +14960,91.0,9.0,9.0,10.0,10.0,9.0,9.0,173,2.9 +60540,100.0,9.0,9.0,10.0,10.0,10.0,10.0,3,0.09 +33109,98.0,10.0,10.0,10.0,10.0,10.0,10.0,76,1.27 +41408,,,,,,,,0, +41228,93.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.07 +7167,90.0,10.0,9.0,9.0,10.0,9.0,9.0,21,0.37 +10484,94.0,10.0,10.0,9.0,9.0,9.0,9.0,23,0.46 +20274,90.0,10.0,9.0,9.0,9.0,9.0,9.0,9,0.15 +30870,97.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.12 +5039,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.04 +74874,,,,,,,,0, +37424,93.0,10.0,8.0,9.0,10.0,10.0,9.0,4,0.09 +71676,98.0,10.0,9.0,10.0,10.0,9.0,10.0,28,0.49 +16358,92.0,9.0,9.0,10.0,10.0,9.0,9.0,17,0.28 +72563,96.0,10.0,9.0,10.0,10.0,9.0,10.0,63,1.45 +62579,,,,,,,,0, +37490,95.0,10.0,9.0,10.0,10.0,9.0,9.0,67,1.12 +14569,94.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.34 +49276,94.0,10.0,10.0,10.0,10.0,10.0,10.0,99,1.76 +20559,88.0,9.0,9.0,9.0,10.0,8.0,9.0,27,0.44 +25812,90.0,10.0,9.0,10.0,10.0,9.0,9.0,2,0.18 +53453,,,,,,,,0, +69609,91.0,9.0,9.0,10.0,10.0,9.0,9.0,11,0.19 +5414,85.0,8.0,8.0,9.0,9.0,8.0,9.0,19,0.33 +51893,,,,,,,,0, +32317,95.0,10.0,10.0,10.0,10.0,10.0,10.0,88,2.18 +36497,80.0,8.0,9.0,7.0,10.0,8.0,7.0,2,0.04 +71906,87.0,7.0,7.0,8.0,9.0,9.0,8.0,4,0.08 +30688,,,,,,,,0, +76210,88.0,9.0,8.0,9.0,9.0,9.0,9.0,16,0.31 +68600,99.0,10.0,10.0,10.0,10.0,10.0,10.0,22,0.58 +32678,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +21867,97.0,10.0,10.0,10.0,10.0,10.0,10.0,333,7.84 +10579,100.0,10.0,10.0,9.0,9.0,10.0,10.0,4,0.07 +18175,100.0,9.0,8.0,10.0,10.0,10.0,9.0,4,0.07 +48710,97.0,10.0,10.0,10.0,10.0,10.0,9.0,50,0.9 +13664,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +1066,98.0,10.0,10.0,10.0,10.0,10.0,9.0,13,0.22 +68030,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.16 +20570,96.0,10.0,10.0,9.0,10.0,10.0,9.0,14,0.23 +50736,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.21 +61365,94.0,10.0,9.0,10.0,10.0,10.0,9.0,70,1.18 +60186,96.0,10.0,9.0,10.0,10.0,10.0,10.0,97,1.69 +17731,,,,,,,,0, +28334,98.0,9.0,9.0,10.0,10.0,9.0,10.0,23,0.5 +59799,93.0,10.0,9.0,10.0,10.0,9.0,9.0,9,0.15 +7901,,,,,,,,0, +75018,81.0,8.0,6.0,10.0,10.0,8.0,7.0,2,0.03 +48643,63.0,6.0,7.0,7.0,8.0,9.0,6.0,6,0.14 +68609,,,,,,,,0, +46777,87.0,9.0,9.0,9.0,9.0,9.0,9.0,22,0.91 +25362,92.0,10.0,9.0,9.0,9.0,10.0,9.0,82,1.37 +31069,96.0,10.0,9.0,10.0,10.0,10.0,9.0,25,0.46 +47109,92.0,9.0,9.0,10.0,10.0,9.0,9.0,209,3.44 +59648,94.0,9.0,8.0,10.0,10.0,8.0,9.0,7,0.12 +62110,95.0,10.0,10.0,10.0,10.0,10.0,9.0,17,0.29 +21569,,,,,,,,0, +32145,81.0,8.0,8.0,9.0,9.0,9.0,8.0,56,0.92 +37220,89.0,9.0,9.0,9.0,9.0,10.0,9.0,97,1.64 +63693,,,,,,,,0, +27708,95.0,10.0,9.0,10.0,10.0,10.0,9.0,411,6.79 +47231,98.0,10.0,10.0,10.0,10.0,9.0,10.0,20,0.33 +37608,98.0,10.0,10.0,10.0,10.0,10.0,10.0,28,0.47 +38844,88.0,9.0,9.0,9.0,9.0,9.0,8.0,13,0.23 +24647,,,,,,,,0, +9216,,,,,,,,0, +64879,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +67052,98.0,10.0,10.0,10.0,10.0,9.0,10.0,24,0.88 +29624,,,,,,,,0, +21134,100.0,10.0,10.0,10.0,10.0,10.0,8.0,2,0.04 +16179,98.0,10.0,10.0,10.0,10.0,9.0,10.0,18,0.7 +38735,,,,,,,,0, +27386,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.12 +52378,97.0,10.0,10.0,10.0,10.0,10.0,9.0,94,1.57 +5044,93.0,8.0,8.0,7.0,10.0,7.0,8.0,3,0.05 +6244,91.0,9.0,10.0,10.0,10.0,10.0,10.0,22,0.87 +43393,,,,,,,,0, +48812,95.0,9.0,8.0,10.0,10.0,10.0,10.0,4,0.07 +37195,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.05 +5368,88.0,9.0,8.0,9.0,9.0,9.0,9.0,83,1.37 +27429,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.27 +43938,89.0,10.0,9.0,10.0,10.0,10.0,8.0,27,0.45 +40971,80.0,8.0,9.0,9.0,8.0,9.0,7.0,10,0.17 +48916,85.0,9.0,9.0,9.0,9.0,9.0,9.0,4,0.07 +11239,97.0,10.0,10.0,10.0,10.0,9.0,9.0,14,0.25 +11170,,,,,,,,0, +25942,100.0,10.0,10.0,10.0,10.0,8.0,9.0,2,0.04 +70890,90.0,10.0,9.0,9.0,9.0,10.0,9.0,26,0.44 +4655,96.0,10.0,10.0,10.0,10.0,10.0,9.0,32,0.57 +46567,96.0,10.0,10.0,9.0,10.0,9.0,9.0,35,0.64 +59215,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +4855,98.0,10.0,9.0,10.0,10.0,10.0,10.0,9,0.15 +394,95.0,9.0,10.0,10.0,10.0,9.0,9.0,4,0.08 +41068,94.0,9.0,9.0,10.0,10.0,10.0,9.0,142,2.41 +46949,93.0,9.0,9.0,10.0,10.0,10.0,9.0,193,3.27 +18082,94.0,10.0,10.0,10.0,10.0,10.0,9.0,14,0.25 +16716,95.0,10.0,10.0,10.0,10.0,9.0,10.0,93,1.57 +583,,,,,,,,1,0.05 +7444,98.0,10.0,9.0,10.0,10.0,9.0,10.0,46,0.77 +16202,91.0,9.0,9.0,10.0,10.0,10.0,9.0,17,0.62 +60529,94.0,9.0,9.0,10.0,10.0,9.0,9.0,18,0.32 +55209,97.0,10.0,10.0,10.0,10.0,9.0,9.0,27,0.45 +46250,,,,,,,,0, +3663,,,,,,,,0, +58340,92.0,10.0,9.0,10.0,10.0,10.0,9.0,190,3.25 +28176,,,,,,,,1,0.2 +10680,80.0,10.0,8.0,4.0,8.0,10.0,8.0,1,0.02 +62943,98.0,10.0,10.0,10.0,10.0,10.0,9.0,9,0.52 +55400,97.0,10.0,10.0,10.0,10.0,10.0,9.0,7,0.12 +62690,92.0,10.0,9.0,10.0,10.0,9.0,9.0,34,0.71 +59119,76.0,8.0,8.0,8.0,8.0,9.0,8.0,67,1.11 +53582,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.15 +74220,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +51765,86.0,9.0,9.0,10.0,9.0,10.0,9.0,60,1.08 +71454,77.0,8.0,7.0,9.0,8.0,8.0,8.0,8,0.13 +67365,95.0,10.0,9.0,10.0,10.0,9.0,9.0,32,0.53 +65204,97.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.13 +9867,88.0,9.0,8.0,10.0,9.0,9.0,9.0,26,0.49 +61333,93.0,10.0,9.0,9.0,10.0,9.0,9.0,45,0.78 +62571,90.0,10.0,4.0,9.0,9.0,10.0,9.0,3,0.19 +60614,88.0,10.0,9.0,10.0,10.0,10.0,9.0,29,0.6 +53436,97.0,10.0,9.0,10.0,10.0,10.0,9.0,41,0.69 +27212,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,8.05 +46707,95.0,9.0,10.0,10.0,10.0,9.0,9.0,162,2.71 +69737,92.0,10.0,8.0,9.0,10.0,8.0,10.0,5,0.08 +71794,89.0,9.0,8.0,9.0,10.0,10.0,9.0,23,0.41 +20063,,,,,,,,0, +63916,86.0,9.0,7.0,10.0,10.0,10.0,8.0,10,0.19 +69124,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.07 +49289,,,,,,,,0, +35427,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +23106,98.0,10.0,10.0,10.0,10.0,10.0,10.0,59,0.98 +6498,96.0,10.0,9.0,10.0,10.0,10.0,10.0,6,0.12 +48258,,,,,,,,0, +62949,,,,,,,,0, +55957,93.0,9.0,9.0,9.0,10.0,10.0,8.0,8,0.18 +73719,90.0,9.0,9.0,9.0,10.0,10.0,9.0,123,2.08 +9782,86.0,9.0,9.0,9.0,9.0,9.0,9.0,113,2.01 +51785,97.0,10.0,10.0,10.0,10.0,9.0,10.0,116,2.0 +18099,,,,,,,,0, +41459,95.0,10.0,10.0,10.0,10.0,8.0,9.0,96,1.62 +11670,91.0,9.0,9.0,10.0,9.0,9.0,9.0,42,0.78 +65912,92.0,9.0,9.0,9.0,9.0,10.0,9.0,50,0.83 +40696,,,,,,,,0, +44478,95.0,10.0,9.0,10.0,10.0,10.0,10.0,29,0.48 +23891,94.0,10.0,9.0,10.0,10.0,9.0,10.0,48,0.82 +9543,97.0,9.0,10.0,10.0,10.0,10.0,9.0,20,0.36 +74597,98.0,10.0,10.0,10.0,10.0,9.0,10.0,47,0.94 +5424,,,,,,,,0, +9043,80.0,6.0,8.0,10.0,10.0,8.0,8.0,1,0.02 +51604,87.0,9.0,9.0,9.0,9.0,9.0,9.0,289,4.89 +59130,93.0,10.0,9.0,10.0,10.0,9.0,9.0,11,0.18 +10629,,,,,,,,0, +4476,,,,,,,,0, +75015,97.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.02 +39957,97.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.3 +6731,97.0,10.0,10.0,9.0,10.0,10.0,10.0,7,0.12 +4611,100.0,10.0,10.0,10.0,9.0,10.0,9.0,7,0.97 +3423,94.0,10.0,9.0,10.0,10.0,9.0,10.0,67,1.16 +57949,83.0,10.0,9.0,10.0,9.0,9.0,9.0,8,0.13 +56603,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.24 +63589,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.22 +9358,,,,,,,,0, +22637,100.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.18 +9107,98.0,9.0,10.0,10.0,10.0,9.0,10.0,18,0.3 +40177,97.0,10.0,10.0,10.0,10.0,10.0,9.0,64,1.27 +60786,96.0,10.0,10.0,10.0,10.0,10.0,9.0,7,0.19 +73927,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.05 +76897,80.0,8.0,9.0,9.0,9.0,9.0,8.0,4,0.08 +70993,90.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.08 +20547,97.0,10.0,9.0,10.0,10.0,10.0,10.0,7,0.12 +41822,97.0,10.0,10.0,10.0,10.0,10.0,10.0,468,8.26 +61262,98.0,10.0,10.0,10.0,10.0,9.0,10.0,23,0.41 +60514,96.0,10.0,9.0,10.0,10.0,9.0,10.0,90,3.68 +49479,,,,,,,,0, +36603,99.0,10.0,10.0,10.0,10.0,10.0,10.0,100,1.75 +51946,93.0,9.0,9.0,9.0,10.0,9.0,9.0,17,0.29 +66235,90.0,10.0,9.0,10.0,9.0,10.0,9.0,46,0.81 +7419,98.0,10.0,10.0,10.0,10.0,9.0,10.0,99,1.72 +50401,,,,,,,,0, +11805,96.0,10.0,10.0,10.0,10.0,9.0,10.0,17,0.29 +3433,,,,,,,,0, +13828,97.0,10.0,10.0,10.0,10.0,9.0,9.0,8,0.18 +45999,98.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.3 +41079,98.0,10.0,10.0,10.0,10.0,9.0,10.0,44,1.04 +10689,93.0,9.0,10.0,10.0,10.0,9.0,9.0,237,4.02 +5273,,,,,,,,0, +59296,95.0,10.0,9.0,10.0,10.0,9.0,9.0,91,2.16 +5561,96.0,10.0,10.0,10.0,10.0,9.0,9.0,49,0.85 +66873,99.0,10.0,10.0,10.0,10.0,10.0,10.0,193,3.3 +7953,96.0,10.0,9.0,10.0,10.0,10.0,10.0,113,2.01 +57033,95.0,10.0,10.0,10.0,10.0,9.0,9.0,11,0.43 +49702,99.0,10.0,10.0,10.0,10.0,10.0,10.0,116,1.94 +66471,90.0,10.0,9.0,9.0,10.0,10.0,9.0,43,1.33 +44006,,,,,,,,0, +7583,98.0,10.0,10.0,9.0,10.0,10.0,10.0,13,0.29 +8364,,,,,,,,0, +45607,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,6.46 +50213,98.0,10.0,10.0,10.0,10.0,9.0,10.0,88,1.55 +43528,91.0,9.0,9.0,10.0,10.0,8.0,9.0,23,0.4 +39070,95.0,10.0,8.0,10.0,10.0,9.0,9.0,4,0.07 +46232,95.0,10.0,9.0,10.0,10.0,10.0,9.0,19,0.33 +796,96.0,10.0,10.0,10.0,9.0,10.0,10.0,15,0.26 +52446,91.0,9.0,9.0,9.0,9.0,9.0,9.0,51,0.9 +21189,86.0,9.0,9.0,9.0,9.0,9.0,9.0,38,0.69 +37191,96.0,10.0,10.0,9.0,9.0,9.0,10.0,19,0.38 +48563,88.0,8.0,8.0,10.0,9.0,8.0,9.0,6,0.11 +28382,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +68826,93.0,9.0,9.0,10.0,10.0,9.0,9.0,33,0.91 +49154,92.0,9.0,9.0,10.0,10.0,10.0,9.0,60,1.02 +65513,100.0,8.0,10.0,10.0,10.0,8.0,10.0,1,0.03 +42690,85.0,9.0,8.0,9.0,9.0,9.0,8.0,70,1.18 +15505,94.0,10.0,10.0,10.0,10.0,10.0,9.0,130,2.27 +19543,100.0,,,,10.0,10.0,10.0,1,0.02 +77002,100.0,9.0,10.0,10.0,10.0,10.0,9.0,2,0.04 +43186,96.0,10.0,9.0,10.0,10.0,10.0,10.0,9,0.15 +56197,100.0,8.0,6.0,10.0,10.0,8.0,8.0,1,0.02 +7867,97.0,10.0,9.0,10.0,10.0,10.0,9.0,40,1.04 +69437,97.0,10.0,10.0,10.0,10.0,10.0,10.0,21,0.37 +3530,97.0,10.0,10.0,10.0,10.0,9.0,10.0,16,0.27 +24632,93.0,9.0,9.0,10.0,10.0,10.0,9.0,117,2.1 +40579,93.0,9.0,10.0,10.0,10.0,9.0,9.0,4,0.08 +23739,99.0,10.0,10.0,10.0,10.0,10.0,10.0,14,3.44 +64503,95.0,10.0,9.0,10.0,10.0,9.0,10.0,24,0.42 +29247,91.0,9.0,9.0,10.0,10.0,10.0,9.0,30,0.54 +15876,94.0,10.0,10.0,10.0,10.0,9.0,9.0,85,1.43 +35852,92.0,9.0,9.0,10.0,10.0,9.0,9.0,19,0.33 +41199,96.0,10.0,8.0,10.0,10.0,10.0,10.0,14,0.24 +48341,88.0,9.0,9.0,10.0,9.0,9.0,9.0,40,0.7 +31363,93.0,9.0,10.0,10.0,10.0,10.0,10.0,16,2.03 +13231,90.0,9.0,8.0,10.0,10.0,9.0,9.0,130,2.22 +39375,97.0,10.0,9.0,10.0,10.0,9.0,10.0,60,1.03 +38686,,,,,,,,1,0.02 +4238,99.0,10.0,10.0,10.0,10.0,10.0,10.0,26,0.47 +67833,96.0,10.0,10.0,10.0,10.0,9.0,9.0,25,0.43 +46624,98.0,10.0,10.0,10.0,10.0,10.0,10.0,118,2.11 +67669,99.0,10.0,10.0,10.0,10.0,10.0,9.0,40,0.7 +31862,100.0,9.0,6.0,10.0,10.0,10.0,8.0,3,0.07 +43088,80.0,9.0,6.0,10.0,10.0,8.0,9.0,3,0.05 +69939,96.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.2 +60866,96.0,10.0,9.0,10.0,10.0,10.0,10.0,25,0.43 +58738,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.5 +49191,88.0,10.0,9.0,10.0,10.0,10.0,9.0,39,1.48 +34484,94.0,10.0,10.0,10.0,10.0,10.0,9.0,132,2.24 +36377,,,,,,,,0, +70971,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.06 +2852,,,,,,,,0, +6546,,,,,,,,0, +34982,100.0,10.0,10.0,10.0,10.0,10.0,8.0,2,0.08 +54188,90.0,10.0,9.0,10.0,10.0,8.0,9.0,3,0.11 +10995,88.0,9.0,9.0,10.0,9.0,9.0,9.0,6,0.14 +21556,81.0,9.0,9.0,8.0,8.0,9.0,8.0,21,0.45 +7177,92.0,9.0,8.0,10.0,10.0,9.0,9.0,5,0.09 +41625,91.0,10.0,10.0,10.0,10.0,9.0,9.0,120,2.09 +9905,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.09 +20142,94.0,9.0,9.0,10.0,10.0,9.0,9.0,14,0.26 +39778,96.0,10.0,10.0,10.0,10.0,10.0,9.0,31,0.72 +23877,93.0,9.0,9.0,10.0,10.0,10.0,9.0,107,2.59 +44517,99.0,10.0,10.0,10.0,10.0,10.0,10.0,38,1.14 +62934,96.0,10.0,10.0,10.0,10.0,9.0,9.0,106,1.87 +52545,88.0,9.0,8.0,9.0,10.0,9.0,9.0,47,0.81 +45602,98.0,10.0,10.0,10.0,10.0,8.0,9.0,8,0.14 +5955,94.0,10.0,9.0,10.0,10.0,10.0,9.0,10,0.17 +23711,96.0,10.0,10.0,10.0,10.0,10.0,10.0,221,3.79 +11189,97.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.12 +57027,93.0,10.0,9.0,10.0,10.0,9.0,9.0,42,0.74 +62634,95.0,9.0,9.0,10.0,10.0,10.0,9.0,190,3.3 +48730,97.0,10.0,10.0,10.0,10.0,9.0,10.0,15,0.75 +25020,94.0,10.0,9.0,10.0,10.0,9.0,10.0,208,6.22 +13698,97.0,10.0,10.0,10.0,10.0,10.0,9.0,18,0.56 +33985,92.0,9.0,9.0,9.0,9.0,9.0,9.0,15,0.25 +14162,98.0,10.0,9.0,10.0,10.0,10.0,9.0,9,0.16 +43668,93.0,10.0,9.0,10.0,10.0,10.0,9.0,10,0.2 +54997,96.0,10.0,10.0,10.0,10.0,10.0,9.0,42,1.13 +22672,93.0,9.0,9.0,10.0,10.0,9.0,9.0,89,1.56 +53152,97.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.7 +52561,94.0,10.0,9.0,10.0,10.0,10.0,10.0,69,1.18 +12932,95.0,10.0,9.0,10.0,10.0,10.0,9.0,12,0.21 +22791,99.0,10.0,10.0,10.0,10.0,10.0,10.0,29,0.7 +13030,97.0,10.0,10.0,10.0,10.0,10.0,10.0,20,0.34 +72560,97.0,10.0,10.0,10.0,10.0,10.0,10.0,156,2.66 +19027,95.0,10.0,10.0,10.0,10.0,10.0,9.0,26,0.62 +14244,87.0,9.0,7.0,9.0,10.0,9.0,9.0,4,0.09 +67527,,,,,,,,0, +12092,100.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.18 +20779,81.0,9.0,8.0,9.0,9.0,9.0,8.0,56,1.04 +18115,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.05 +39798,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.09 +11400,74.0,8.0,7.0,9.0,9.0,9.0,8.0,30,0.51 +63607,,,,,,,,0, +44763,90.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.05 +19432,95.0,10.0,9.0,9.0,10.0,10.0,9.0,9,0.16 +49371,93.0,10.0,9.0,10.0,10.0,10.0,9.0,24,0.41 +30281,95.0,10.0,9.0,10.0,10.0,10.0,9.0,57,0.96 +26984,97.0,10.0,10.0,10.0,10.0,9.0,9.0,116,2.04 +65498,,,,,,,,0, +75615,95.0,10.0,9.0,10.0,10.0,9.0,9.0,68,1.17 +11160,93.0,9.0,9.0,10.0,10.0,9.0,9.0,24,0.46 +35164,93.0,9.0,9.0,10.0,10.0,9.0,9.0,68,1.31 +13822,,,,,,,,0, +38172,90.0,9.0,9.0,10.0,10.0,9.0,9.0,9,0.15 +61342,,,,,,,,0, +13535,93.0,10.0,10.0,10.0,10.0,9.0,10.0,44,1.45 +24120,100.0,10.0,10.0,10.0,10.0,10.0,9.0,13,0.23 +16898,98.0,10.0,10.0,10.0,10.0,10.0,10.0,25,0.44 +4336,97.0,9.0,10.0,10.0,10.0,10.0,9.0,6,0.1 +14885,95.0,10.0,9.0,10.0,10.0,10.0,9.0,27,0.48 +42447,96.0,10.0,10.0,10.0,10.0,10.0,10.0,35,0.6 +30812,98.0,10.0,10.0,10.0,10.0,10.0,10.0,64,1.92 +41244,,,,,,,,0, +39229,99.0,10.0,10.0,10.0,10.0,10.0,10.0,19,0.97 +49013,80.0,7.0,5.0,9.0,10.0,7.0,8.0,2,0.03 +44129,89.0,9.0,9.0,9.0,9.0,9.0,9.0,160,2.79 +18030,92.0,9.0,10.0,10.0,10.0,10.0,9.0,26,1.28 +4728,97.0,10.0,10.0,10.0,10.0,10.0,10.0,23,0.4 +284,94.0,10.0,9.0,10.0,10.0,10.0,10.0,49,0.91 +48675,97.0,10.0,9.0,10.0,10.0,10.0,9.0,61,1.16 +43404,94.0,9.0,10.0,10.0,10.0,9.0,9.0,194,3.29 +27561,92.0,9.0,10.0,9.0,10.0,10.0,9.0,143,2.56 +66933,95.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.17 +23221,,,,,,,,0, +29686,,,,,,,,0, +61219,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.2 +51505,92.0,9.0,10.0,10.0,10.0,9.0,10.0,25,0.45 +1010,,,,,,,,0, +4047,97.0,10.0,9.0,10.0,10.0,10.0,10.0,6,4.39 +66903,98.0,10.0,10.0,10.0,10.0,9.0,10.0,24,0.42 +10745,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.56 +49061,92.0,10.0,9.0,10.0,10.0,9.0,9.0,46,0.78 +32391,97.0,10.0,9.0,10.0,10.0,9.0,10.0,192,3.43 +43579,95.0,10.0,10.0,10.0,10.0,8.0,9.0,14,0.24 +38079,80.0,8.0,8.0,8.0,10.0,10.0,6.0,3,0.07 +42156,99.0,10.0,10.0,10.0,10.0,9.0,10.0,81,1.49 +17399,95.0,9.0,9.0,9.0,9.0,9.0,9.0,22,0.39 +18655,94.0,10.0,10.0,10.0,10.0,10.0,10.0,104,2.66 +51160,93.0,10.0,9.0,10.0,10.0,10.0,9.0,56,0.99 +22897,93.0,9.0,9.0,9.0,10.0,9.0,9.0,3,0.06 +57921,98.0,10.0,9.0,10.0,10.0,10.0,9.0,20,0.38 +55466,91.0,9.0,10.0,10.0,10.0,9.0,9.0,18,0.45 +582,88.0,9.0,9.0,9.0,9.0,9.0,9.0,74,1.27 +75091,,,,,,,,0, +33739,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +8232,81.0,9.0,9.0,9.0,9.0,9.0,9.0,22,0.5 +55066,94.0,10.0,9.0,10.0,10.0,9.0,9.0,22,0.45 +33190,97.0,10.0,9.0,10.0,10.0,10.0,10.0,47,1.33 +8524,94.0,10.0,10.0,10.0,10.0,9.0,9.0,14,0.25 +7458,80.0,8.0,10.0,10.0,10.0,6.0,6.0,4,0.07 +37731,,,,,,,,0, +42651,99.0,10.0,10.0,10.0,10.0,10.0,10.0,20,0.34 +4198,,,,,,,,0, +3522,87.0,8.0,9.0,10.0,9.0,10.0,9.0,18,0.31 +75956,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +68728,98.0,10.0,10.0,10.0,10.0,9.0,10.0,14,0.24 +92,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.06 +75698,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.02 +20385,98.0,10.0,10.0,10.0,10.0,10.0,10.0,32,1.14 +23494,98.0,10.0,10.0,10.0,10.0,9.0,9.0,103,1.77 +49578,99.0,10.0,10.0,10.0,10.0,9.0,10.0,215,3.73 +28198,96.0,10.0,9.0,10.0,10.0,10.0,10.0,14,0.6 +39867,96.0,10.0,10.0,10.0,10.0,9.0,10.0,11,0.2 +42688,100.0,9.0,10.0,10.0,10.0,9.0,10.0,3,0.06 +70223,92.0,10.0,9.0,10.0,9.0,10.0,9.0,74,1.32 +40628,93.0,10.0,9.0,10.0,10.0,9.0,9.0,37,0.66 +34740,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.15 +40325,95.0,10.0,9.0,10.0,10.0,9.0,9.0,91,1.73 +19325,100.0,8.0,8.0,9.0,9.0,10.0,9.0,2,0.03 +56699,93.0,10.0,10.0,10.0,10.0,9.0,9.0,5,0.11 +70408,95.0,10.0,8.0,10.0,10.0,10.0,9.0,4,0.07 +71135,,,,,,,,0, +75516,100.0,10.0,10.0,10.0,10.0,10.0,10.0,32,0.61 +59811,100.0,10.0,10.0,9.0,10.0,10.0,10.0,7,0.13 +4111,,,,,,,,1,0.04 +51961,,,,,,,,0, +53942,100.0,10.0,8.0,10.0,10.0,10.0,10.0,3,0.05 +35525,95.0,9.0,9.0,8.0,10.0,10.0,8.0,4,0.07 +39644,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.15 +64335,93.0,9.0,9.0,10.0,10.0,10.0,9.0,8,0.16 +71145,95.0,10.0,9.0,10.0,10.0,10.0,10.0,12,0.21 +47898,88.0,10.0,9.0,10.0,10.0,9.0,9.0,14,0.24 +54805,95.0,10.0,10.0,10.0,10.0,9.0,9.0,71,1.29 +6313,,,,,,,,0, +13879,95.0,10.0,10.0,10.0,10.0,8.0,9.0,80,1.41 +74118,,,,,,,,0, +29698,,,,,,,,0, +31859,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +22697,100.0,10.0,10.0,10.0,10.0,9.0,9.0,12,0.21 +76011,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,1.47 +42548,95.0,9.0,9.0,9.0,10.0,10.0,10.0,14,0.24 +63148,,,,,,,,0, +50277,,,,,,,,0, +13930,,,,,,,,0, +347,81.0,9.0,8.0,10.0,9.0,10.0,9.0,133,2.46 +17841,80.0,9.0,6.0,10.0,9.0,10.0,9.0,2,0.05 +46878,96.0,10.0,10.0,10.0,10.0,9.0,9.0,132,2.26 +40345,93.0,10.0,9.0,10.0,10.0,10.0,10.0,7,0.59 +8035,93.0,10.0,10.0,9.0,9.0,10.0,9.0,22,0.38 +75765,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,2.67 +52165,96.0,10.0,9.0,10.0,10.0,10.0,9.0,7,0.13 +34791,93.0,9.0,9.0,10.0,9.0,10.0,9.0,27,0.88 +35987,100.0,10.0,10.0,10.0,10.0,10.0,10.0,75,1.34 +12386,97.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.23 +13710,81.0,8.0,8.0,9.0,8.0,9.0,8.0,163,2.82 +59845,98.0,10.0,10.0,10.0,10.0,9.0,10.0,193,3.63 +70087,84.0,9.0,8.0,9.0,9.0,8.0,8.0,97,1.69 +62112,92.0,10.0,9.0,10.0,10.0,9.0,9.0,107,1.91 +14226,98.0,10.0,10.0,10.0,10.0,10.0,10.0,55,0.98 +57858,,,,,,,,0, +65420,94.0,9.0,10.0,10.0,9.0,10.0,9.0,55,0.96 +57751,97.0,10.0,10.0,10.0,10.0,10.0,10.0,101,1.76 +37348,96.0,10.0,8.0,10.0,10.0,10.0,10.0,12,0.21 +67648,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.11 +50097,95.0,10.0,9.0,10.0,10.0,8.0,9.0,12,0.22 +70364,,,,,,,,0, +65598,99.0,10.0,10.0,10.0,10.0,10.0,10.0,37,0.65 +13362,93.0,9.0,9.0,10.0,10.0,9.0,10.0,35,0.61 +22438,92.0,9.0,10.0,10.0,9.0,9.0,9.0,68,1.18 +3455,94.0,9.0,9.0,10.0,10.0,10.0,8.0,10,0.18 +8749,88.0,9.0,9.0,9.0,10.0,9.0,9.0,15,0.26 +57072,87.0,9.0,9.0,10.0,9.0,9.0,8.0,13,0.24 +14711,95.0,10.0,9.0,10.0,10.0,10.0,9.0,12,0.24 +74623,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.17 +72825,99.0,10.0,10.0,10.0,10.0,9.0,10.0,195,3.4 +27235,97.0,10.0,10.0,10.0,10.0,9.0,10.0,44,0.77 +68848,,,,,,,,0, +7379,99.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.38 +17565,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.06 +19987,85.0,9.0,8.0,10.0,10.0,10.0,9.0,17,0.69 +39021,92.0,10.0,10.0,10.0,10.0,9.0,9.0,5,0.16 +75848,100.0,10.0,10.0,10.0,10.0,10.0,10.0,20,0.44 +17780,,,,,,,,0, +58840,93.0,10.0,9.0,10.0,10.0,10.0,9.0,12,0.22 +31627,,,,,,,,0, +4256,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.58 +64053,80.0,6.0,4.0,10.0,10.0,8.0,8.0,1,0.02 +14554,97.0,9.0,10.0,10.0,10.0,9.0,9.0,7,0.18 +25116,93.0,10.0,9.0,10.0,10.0,10.0,9.0,4,0.1 +76772,100.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.43 +29435,90.0,10.0,9.0,10.0,10.0,9.0,9.0,53,2.8 +30392,99.0,10.0,10.0,10.0,10.0,10.0,9.0,45,0.83 +26557,96.0,10.0,10.0,10.0,10.0,10.0,10.0,108,1.9 +27377,80.0,10.0,7.0,9.0,9.0,9.0,10.0,3,0.14 +31816,99.0,10.0,9.0,10.0,10.0,9.0,9.0,16,0.28 +55937,97.0,10.0,10.0,10.0,10.0,9.0,10.0,87,1.55 +18311,90.0,10.0,9.0,10.0,10.0,9.0,9.0,13,0.22 +57653,98.0,10.0,9.0,10.0,10.0,9.0,10.0,38,0.66 +12890,96.0,10.0,10.0,10.0,10.0,9.0,10.0,13,1.34 +27969,97.0,10.0,9.0,10.0,10.0,10.0,9.0,60,1.09 +19761,95.0,9.0,9.0,9.0,10.0,9.0,9.0,15,0.26 +9700,95.0,9.0,9.0,10.0,10.0,9.0,9.0,429,7.58 +32451,96.0,10.0,9.0,10.0,10.0,9.0,9.0,68,1.36 +57004,98.0,10.0,9.0,10.0,10.0,8.0,10.0,9,0.46 +73933,74.0,8.0,7.0,9.0,8.0,9.0,8.0,67,1.18 +11274,100.0,10.0,9.0,10.0,10.0,9.0,10.0,2,0.04 +6027,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.16 +7991,93.0,9.0,10.0,10.0,10.0,9.0,9.0,32,0.77 +44273,100.0,10.0,10.0,10.0,10.0,10.0,9.0,16,0.28 +9294,88.0,9.0,9.0,9.0,9.0,9.0,9.0,96,1.65 +57430,92.0,10.0,10.0,9.0,10.0,9.0,10.0,20,0.35 +59726,100.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.67 +24060,96.0,10.0,9.0,10.0,10.0,10.0,10.0,78,1.38 +59802,,,,,,,,0, +9403,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.16 +71923,,,,,,,,0, +51329,91.0,9.0,9.0,10.0,10.0,9.0,9.0,32,0.57 +2815,99.0,10.0,10.0,10.0,10.0,10.0,10.0,81,1.45 +66046,98.0,10.0,10.0,10.0,10.0,10.0,10.0,97,1.68 +37902,93.0,10.0,9.0,10.0,10.0,10.0,9.0,8,0.14 +52536,87.0,9.0,9.0,10.0,10.0,9.0,9.0,40,0.74 +1458,96.0,9.0,9.0,10.0,10.0,10.0,9.0,23,0.41 +46225,97.0,10.0,10.0,10.0,10.0,10.0,10.0,211,3.68 +63109,,,,,,,,0, +71361,97.0,10.0,10.0,10.0,10.0,10.0,10.0,66,1.55 +26979,91.0,10.0,9.0,9.0,10.0,9.0,9.0,35,0.61 +72070,72.0,8.0,7.0,8.0,8.0,10.0,7.0,40,0.7 +25950,87.0,9.0,9.0,9.0,10.0,10.0,9.0,51,0.9 +36996,97.0,10.0,9.0,10.0,10.0,9.0,9.0,27,0.48 +39468,89.0,9.0,9.0,10.0,10.0,9.0,9.0,222,3.97 +46741,95.0,10.0,10.0,10.0,10.0,9.0,9.0,198,3.4 +40817,98.0,10.0,10.0,10.0,10.0,10.0,10.0,27,0.51 +57480,,,,,,,,0, +44099,,,,,,,,0, +8902,97.0,10.0,9.0,10.0,10.0,10.0,9.0,7,0.13 +75275,87.0,9.0,9.0,9.0,9.0,9.0,9.0,74,1.27 +58233,92.0,9.0,10.0,10.0,10.0,9.0,9.0,63,1.16 +52875,95.0,10.0,9.0,10.0,10.0,9.0,10.0,23,0.44 +23850,95.0,10.0,9.0,10.0,10.0,9.0,9.0,73,1.28 +42684,90.0,9.0,9.0,10.0,10.0,9.0,9.0,47,0.87 +35630,98.0,10.0,10.0,10.0,10.0,10.0,10.0,27,0.47 +12508,96.0,10.0,10.0,10.0,10.0,10.0,10.0,164,2.83 +29265,,,,,,,,0, +47086,100.0,9.0,10.0,10.0,10.0,10.0,8.0,2,0.04 +50319,93.0,9.0,9.0,9.0,10.0,8.0,9.0,19,0.4 +16405,93.0,10.0,10.0,9.0,10.0,9.0,9.0,3,0.06 +36146,98.0,10.0,10.0,9.0,9.0,10.0,9.0,14,0.28 +29979,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +3123,89.0,9.0,9.0,9.0,9.0,10.0,9.0,11,0.58 +58912,87.0,9.0,10.0,10.0,9.0,9.0,8.0,7,0.14 +49453,85.0,9.0,8.0,9.0,10.0,10.0,8.0,4,0.07 +62151,95.0,10.0,9.0,10.0,10.0,10.0,9.0,8,0.15 +71659,91.0,9.0,10.0,10.0,10.0,9.0,10.0,7,0.86 +23138,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.19 +2103,97.0,10.0,10.0,10.0,10.0,10.0,10.0,21,0.37 +9382,99.0,10.0,10.0,10.0,10.0,10.0,9.0,16,0.3 +9082,98.0,10.0,10.0,10.0,10.0,10.0,10.0,63,1.15 +13457,99.0,10.0,10.0,10.0,10.0,9.0,10.0,74,1.41 +15387,94.0,10.0,10.0,10.0,10.0,10.0,9.0,40,0.73 +47835,,,,,,,,0, +40068,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +56266,98.0,10.0,10.0,10.0,10.0,9.0,9.0,26,0.48 +59424,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.2 +44846,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.02 +11099,93.0,10.0,9.0,8.0,8.0,10.0,9.0,18,0.32 +25712,,,,,,,,0, +32225,,,,,,,,0, +37057,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.09 +29316,94.0,10.0,9.0,10.0,10.0,10.0,10.0,27,0.48 +35312,91.0,10.0,9.0,10.0,10.0,10.0,9.0,45,0.8 +5744,83.0,9.0,8.0,9.0,9.0,9.0,9.0,146,2.54 +47147,90.0,8.0,8.0,9.0,10.0,8.0,9.0,2,0.04 +52790,80.0,8.0,7.0,9.0,9.0,9.0,7.0,2,0.04 +18148,95.0,10.0,9.0,10.0,10.0,10.0,9.0,110,1.95 +55495,79.0,8.0,7.0,9.0,8.0,8.0,8.0,21,0.38 +1219,80.0,6.0,10.0,9.0,9.0,10.0,8.0,2,0.04 +13369,98.0,10.0,9.0,10.0,10.0,10.0,9.0,32,0.55 +41711,96.0,10.0,10.0,10.0,10.0,9.0,9.0,36,0.64 +42724,,,,,,,,0, +75484,90.0,9.0,10.0,10.0,10.0,9.0,9.0,58,1.01 +68674,100.0,9.0,9.0,10.0,10.0,9.0,10.0,2,0.87 +41206,97.0,9.0,10.0,10.0,10.0,9.0,9.0,8,0.14 +73477,99.0,10.0,10.0,10.0,10.0,9.0,10.0,31,0.55 +64480,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.13 +32854,96.0,10.0,9.0,10.0,10.0,10.0,10.0,33,0.57 +76497,97.0,10.0,10.0,10.0,10.0,10.0,10.0,92,1.61 +50104,91.0,10.0,9.0,10.0,10.0,10.0,10.0,72,1.24 +51495,97.0,9.0,9.0,10.0,9.0,9.0,10.0,6,0.11 +6104,98.0,10.0,10.0,10.0,10.0,9.0,10.0,208,3.62 +21639,92.0,10.0,10.0,10.0,10.0,9.0,9.0,17,0.45 +35582,95.0,9.0,9.0,9.0,10.0,9.0,9.0,9,0.17 +7499,96.0,9.0,9.0,9.0,10.0,10.0,9.0,9,0.16 +30859,95.0,10.0,10.0,10.0,10.0,9.0,9.0,177,3.1 +16869,88.0,9.0,9.0,10.0,9.0,9.0,9.0,17,0.38 +70799,90.0,9.0,9.0,10.0,10.0,10.0,9.0,23,0.41 +56212,89.0,9.0,8.0,9.0,10.0,9.0,8.0,12,0.21 +35274,99.0,10.0,10.0,10.0,10.0,10.0,10.0,30,0.57 +4029,93.0,9.0,9.0,10.0,10.0,10.0,9.0,167,2.96 +22235,86.0,9.0,9.0,9.0,9.0,9.0,9.0,90,1.7 +18901,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.21 +67935,95.0,9.0,9.0,10.0,9.0,9.0,9.0,31,0.54 +50895,90.0,10.0,9.0,10.0,10.0,9.0,9.0,134,2.63 +69171,,,,,,,,0, +68199,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.07 +73958,88.0,9.0,8.0,9.0,9.0,10.0,9.0,67,1.17 +38715,99.0,10.0,10.0,10.0,10.0,9.0,10.0,57,1.06 +17689,99.0,10.0,10.0,10.0,10.0,10.0,10.0,138,2.43 +68571,94.0,10.0,10.0,10.0,10.0,10.0,9.0,65,1.2 +13774,98.0,10.0,10.0,10.0,10.0,9.0,10.0,34,0.61 +65443,98.0,10.0,10.0,10.0,10.0,10.0,10.0,77,1.34 +24431,92.0,10.0,9.0,9.0,10.0,9.0,9.0,150,2.65 +5632,97.0,9.0,10.0,10.0,10.0,9.0,10.0,52,0.92 +65931,100.0,10.0,10.0,10.0,10.0,9.0,9.0,6,0.11 +39297,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.33 +42964,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.11 +15562,95.0,10.0,9.0,10.0,10.0,9.0,9.0,20,0.38 +25022,88.0,9.0,8.0,9.0,10.0,10.0,9.0,20,0.41 +76289,86.0,9.0,7.0,10.0,9.0,9.0,8.0,12,0.28 +58641,94.0,10.0,9.0,10.0,10.0,10.0,9.0,48,0.87 +5982,91.0,9.0,8.0,9.0,9.0,9.0,9.0,15,0.27 +35867,95.0,10.0,10.0,10.0,10.0,9.0,10.0,76,1.35 +7929,99.0,10.0,10.0,10.0,10.0,10.0,10.0,21,0.38 +36990,95.0,10.0,9.0,10.0,10.0,10.0,9.0,17,0.3 +34729,98.0,10.0,10.0,10.0,9.0,8.0,9.0,16,0.31 +35640,89.0,9.0,9.0,10.0,10.0,9.0,9.0,76,1.38 +46590,95.0,9.0,9.0,10.0,10.0,10.0,10.0,120,2.2 +41115,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.08 +73981,94.0,10.0,10.0,10.0,10.0,9.0,9.0,20,0.37 +18677,95.0,9.0,10.0,10.0,10.0,9.0,10.0,70,1.25 +59477,96.0,10.0,9.0,10.0,10.0,10.0,10.0,43,0.96 +54298,93.0,10.0,9.0,10.0,10.0,9.0,9.0,65,1.13 +7018,95.0,10.0,9.0,10.0,10.0,10.0,10.0,31,0.77 +64673,85.0,10.0,9.0,10.0,9.0,10.0,9.0,14,0.25 +50143,96.0,10.0,10.0,10.0,10.0,9.0,10.0,15,0.27 +39677,80.0,9.0,8.0,9.0,10.0,10.0,6.0,2,0.04 +5401,85.0,9.0,8.0,9.0,9.0,9.0,9.0,113,2.0 +40077,98.0,10.0,10.0,10.0,10.0,10.0,9.0,108,1.89 +32107,93.0,10.0,9.0,10.0,10.0,9.0,10.0,9,0.16 +4102,90.0,9.0,9.0,9.0,9.0,9.0,9.0,2,0.06 +70216,97.0,9.0,9.0,10.0,10.0,10.0,9.0,16,0.33 +73830,98.0,10.0,10.0,10.0,10.0,10.0,10.0,104,1.85 +13623,88.0,9.0,9.0,9.0,10.0,9.0,9.0,13,0.24 +8580,98.0,10.0,10.0,10.0,10.0,10.0,9.0,45,0.8 +10527,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.03 +43677,,,,,,,,0, +65256,93.0,10.0,10.0,10.0,10.0,10.0,10.0,73,1.37 +59926,,,,,,,,0, +22070,97.0,10.0,10.0,10.0,10.0,10.0,10.0,48,0.85 +35131,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +43426,94.0,10.0,9.0,9.0,9.0,10.0,9.0,163,2.99 +25243,94.0,9.0,10.0,9.0,9.0,9.0,10.0,11,0.21 +73472,95.0,10.0,10.0,10.0,10.0,10.0,10.0,61,1.69 +14668,97.0,10.0,10.0,10.0,10.0,10.0,9.0,41,0.73 +42900,94.0,9.0,10.0,9.0,10.0,10.0,9.0,112,2.0 +4168,98.0,10.0,10.0,10.0,10.0,9.0,10.0,12,0.21 +51277,80.0,10.0,10.0,6.0,10.0,10.0,10.0,3,0.06 +23514,93.0,9.0,10.0,9.0,10.0,9.0,9.0,6,0.15 +18212,94.0,10.0,10.0,9.0,10.0,9.0,9.0,10,0.19 +30499,97.0,10.0,10.0,10.0,10.0,9.0,10.0,82,1.43 +55769,94.0,10.0,9.0,10.0,10.0,10.0,9.0,70,1.28 +64405,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.07 +72200,98.0,10.0,10.0,10.0,10.0,9.0,10.0,103,1.8 +30214,93.0,9.0,9.0,10.0,10.0,9.0,9.0,141,2.49 +42663,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.16 +10841,91.0,10.0,9.0,9.0,9.0,10.0,9.0,219,3.86 +23944,93.0,10.0,9.0,10.0,10.0,9.0,9.0,50,0.88 +3260,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.09 +72747,96.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.51 +24623,96.0,10.0,10.0,10.0,10.0,9.0,9.0,38,0.68 +9456,93.0,9.0,10.0,10.0,10.0,9.0,9.0,3,0.06 +8381,97.0,10.0,10.0,10.0,10.0,9.0,10.0,151,2.64 +18603,96.0,9.0,10.0,10.0,10.0,10.0,10.0,20,0.36 +48167,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.18 +58687,96.0,10.0,10.0,10.0,10.0,9.0,9.0,68,1.25 +12236,89.0,9.0,9.0,10.0,10.0,9.0,9.0,74,1.33 +51680,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.11 +41128,96.0,10.0,10.0,10.0,10.0,10.0,9.0,96,1.72 +28872,88.0,9.0,9.0,9.0,9.0,9.0,9.0,37,0.66 +38260,89.0,9.0,8.0,9.0,10.0,10.0,9.0,30,0.56 +65221,85.0,9.0,9.0,10.0,10.0,10.0,9.0,4,0.1 +20735,100.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.19 +70679,,,,,,,,0, +75051,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.14 +7623,97.0,10.0,10.0,10.0,10.0,9.0,10.0,56,0.99 +49735,93.0,10.0,9.0,10.0,10.0,10.0,9.0,43,0.77 +58269,,,,,,,,0, +73165,95.0,9.0,9.0,10.0,9.0,10.0,9.0,22,0.4 +26913,91.0,10.0,10.0,10.0,10.0,9.0,9.0,17,0.43 +33792,100.0,10.0,10.0,10.0,10.0,9.0,10.0,11,0.2 +21314,95.0,10.0,9.0,10.0,10.0,10.0,9.0,86,1.52 +8623,97.0,10.0,10.0,10.0,10.0,10.0,9.0,21,0.37 +13207,,,,,,,,0, +34725,85.0,9.0,8.0,9.0,10.0,9.0,9.0,9,0.17 +72490,92.0,10.0,9.0,10.0,10.0,9.0,9.0,85,1.52 +7084,95.0,9.0,9.0,10.0,10.0,10.0,10.0,8,0.65 +16615,93.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.1 +67183,,,,,,,,0, +39895,95.0,10.0,10.0,10.0,10.0,9.0,9.0,15,0.27 +26005,96.0,10.0,10.0,10.0,10.0,9.0,10.0,10,0.28 +70321,92.0,10.0,10.0,10.0,10.0,8.0,9.0,90,1.71 +18410,96.0,9.0,9.0,10.0,10.0,9.0,9.0,10,0.26 +8091,94.0,10.0,9.0,10.0,10.0,10.0,10.0,17,0.43 +7355,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.21 +68412,97.0,10.0,10.0,10.0,10.0,10.0,10.0,101,1.8 +38425,93.0,9.0,10.0,10.0,10.0,9.0,9.0,3,0.06 +57577,97.0,10.0,10.0,10.0,10.0,10.0,10.0,80,1.41 +73825,94.0,10.0,9.0,10.0,10.0,10.0,10.0,179,3.13 +56024,100.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.49 +57102,95.0,10.0,10.0,10.0,10.0,9.0,10.0,49,1.2 +479,96.0,10.0,9.0,10.0,10.0,9.0,10.0,96,2.0 +73988,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.05 +44414,98.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.46 +4671,100.0,10.0,10.0,10.0,10.0,10.0,9.0,6,3.0 +14819,100.0,10.0,10.0,10.0,10.0,10.0,9.0,10,3.19 +49515,97.0,10.0,10.0,10.0,10.0,10.0,10.0,166,3.2 +14026,93.0,9.0,9.0,10.0,10.0,10.0,9.0,54,1.02 +55233,85.0,10.0,9.0,9.0,10.0,9.0,9.0,8,0.15 +73885,89.0,9.0,9.0,9.0,9.0,9.0,9.0,131,2.3 +14444,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +24693,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +31665,91.0,9.0,9.0,9.0,9.0,10.0,10.0,27,0.5 +20493,90.0,9.0,9.0,9.0,9.0,9.0,9.0,18,0.32 +26038,92.0,10.0,9.0,9.0,10.0,9.0,9.0,19,0.63 +55497,99.0,10.0,10.0,10.0,10.0,10.0,10.0,73,2.77 +38928,96.0,10.0,10.0,10.0,10.0,10.0,10.0,67,1.2 +53632,83.0,9.0,8.0,9.0,9.0,9.0,9.0,8,0.14 +32563,94.0,10.0,10.0,10.0,10.0,9.0,9.0,117,2.15 +76086,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.13 +66607,,,,,,,,0, +6515,96.0,10.0,9.0,10.0,10.0,9.0,10.0,25,0.56 +36005,92.0,9.0,10.0,10.0,10.0,9.0,9.0,13,0.23 +36176,97.0,10.0,10.0,10.0,10.0,10.0,10.0,39,0.72 +20587,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +47296,96.0,10.0,9.0,10.0,10.0,10.0,10.0,16,0.28 +11501,94.0,10.0,10.0,9.0,10.0,9.0,9.0,23,0.42 +43515,89.0,9.0,9.0,9.0,9.0,9.0,9.0,107,2.05 +63349,,,,,,,,0, +10380,88.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.11 +76101,91.0,9.0,9.0,9.0,9.0,9.0,9.0,9,0.16 +63617,84.0,9.0,8.0,9.0,9.0,9.0,9.0,12,0.21 +65463,95.0,10.0,9.0,9.0,9.0,10.0,9.0,11,0.2 +24909,100.0,9.0,9.0,10.0,10.0,10.0,9.0,3,0.73 +8799,96.0,10.0,10.0,10.0,10.0,9.0,10.0,128,2.28 +54115,100.0,10.0,10.0,9.0,10.0,10.0,10.0,4,0.07 +64984,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.02 +71109,86.0,8.0,9.0,10.0,10.0,9.0,9.0,39,0.74 +56827,94.0,10.0,10.0,10.0,10.0,9.0,9.0,421,7.39 +12638,,,,,,,,0, +25831,82.0,9.0,10.0,9.0,9.0,6.0,8.0,9,0.17 +35141,97.0,10.0,10.0,10.0,10.0,10.0,10.0,82,1.44 +38534,96.0,10.0,10.0,10.0,10.0,9.0,10.0,123,2.15 +35949,76.0,8.0,7.0,9.0,8.0,9.0,8.0,30,0.56 +52470,97.0,10.0,9.0,10.0,10.0,9.0,9.0,35,0.66 +63316,98.0,10.0,10.0,10.0,10.0,10.0,10.0,59,1.04 +3681,98.0,10.0,9.0,10.0,10.0,9.0,10.0,10,0.28 +3210,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.06 +61506,,,,,,,,0, +27195,80.0,9.0,9.0,10.0,10.0,9.0,9.0,5,0.76 +5855,94.0,10.0,10.0,10.0,10.0,9.0,9.0,335,5.88 +26420,95.0,10.0,10.0,10.0,10.0,9.0,9.0,393,6.93 +36227,93.0,9.0,9.0,10.0,10.0,10.0,9.0,149,2.67 +62277,93.0,9.0,9.0,10.0,10.0,9.0,9.0,383,6.74 +25129,90.0,10.0,9.0,10.0,10.0,10.0,9.0,4,0.07 +35435,98.0,10.0,10.0,10.0,10.0,9.0,10.0,413,7.27 +54536,93.0,9.0,9.0,10.0,10.0,9.0,9.0,42,0.91 +68573,90.0,9.0,10.0,9.0,10.0,8.0,9.0,8,0.18 +23896,93.0,9.0,10.0,10.0,10.0,9.0,9.0,131,2.31 +61719,97.0,10.0,10.0,10.0,10.0,9.0,10.0,23,0.44 +4626,85.0,10.0,9.0,10.0,9.0,9.0,9.0,4,0.08 +31444,100.0,9.0,10.0,10.0,10.0,10.0,9.0,4,0.07 +64763,92.0,10.0,9.0,10.0,10.0,10.0,9.0,213,3.81 +53088,98.0,10.0,10.0,10.0,10.0,10.0,9.0,8,3.69 +67352,,,,,,,,0, +54133,,,,,,,,0, +45471,96.0,10.0,10.0,9.0,10.0,9.0,8.0,5,0.44 +72550,80.0,8.0,8.0,10.0,10.0,8.0,10.0,1,0.02 +69910,98.0,10.0,10.0,10.0,10.0,9.0,10.0,14,0.27 +10157,97.0,10.0,10.0,10.0,10.0,9.0,10.0,13,0.26 +48592,96.0,10.0,10.0,10.0,10.0,9.0,10.0,45,0.8 +34985,99.0,10.0,10.0,10.0,10.0,10.0,10.0,63,1.11 +23676,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.07 +1435,97.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.13 +69987,94.0,10.0,9.0,10.0,10.0,10.0,9.0,184,3.29 +53084,99.0,10.0,10.0,10.0,10.0,10.0,10.0,65,1.15 +70245,85.0,9.0,9.0,10.0,9.0,9.0,9.0,62,1.09 +20969,96.0,10.0,9.0,9.0,10.0,9.0,10.0,14,0.41 +66683,95.0,10.0,10.0,10.0,10.0,9.0,9.0,111,1.98 +2315,,,,,,,,0, +62592,,,,,,,,0, +54767,,,,,,,,0, +76752,87.0,9.0,9.0,9.0,9.0,10.0,9.0,13,0.4 +29513,91.0,9.0,10.0,10.0,10.0,10.0,9.0,171,3.12 +13657,92.0,9.0,10.0,10.0,10.0,9.0,9.0,264,4.69 +21552,96.0,10.0,10.0,10.0,10.0,9.0,9.0,30,1.06 +66067,95.0,10.0,9.0,10.0,10.0,10.0,9.0,137,2.41 +57738,90.0,9.0,9.0,10.0,9.0,9.0,9.0,127,6.05 +74602,91.0,9.0,10.0,10.0,10.0,9.0,9.0,237,4.31 +4800,98.0,10.0,10.0,10.0,10.0,10.0,10.0,180,4.23 +74476,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +66121,91.0,9.0,9.0,10.0,10.0,9.0,8.0,7,0.13 +47580,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.05 +20411,93.0,10.0,10.0,10.0,10.0,9.0,9.0,38,0.67 +31917,94.0,10.0,9.0,9.0,10.0,10.0,9.0,164,2.94 +53903,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.16 +35772,94.0,8.0,9.0,10.0,10.0,10.0,10.0,7,0.15 +11155,98.0,10.0,10.0,10.0,10.0,9.0,10.0,9,0.16 +27525,,,,,,,,0, +48918,98.0,10.0,10.0,10.0,10.0,10.0,10.0,34,2.58 +49037,60.0,10.0,6.0,10.0,10.0,8.0,8.0,1,0.03 +67486,97.0,10.0,10.0,10.0,10.0,9.0,9.0,6,0.11 +20036,,,,,,,,0, +59497,98.0,10.0,10.0,10.0,10.0,10.0,10.0,53,0.96 +49655,92.0,9.0,9.0,10.0,10.0,10.0,9.0,18,0.34 +29258,97.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.73 +28014,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.84 +10705,,,,,,,,0, +30673,,,,,,,,0, +64950,96.0,10.0,9.0,10.0,10.0,9.0,9.0,79,1.49 +33667,83.0,8.0,7.0,9.0,9.0,8.0,8.0,20,0.36 +57369,96.0,10.0,9.0,10.0,10.0,9.0,10.0,5,0.1 +24894,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.13 +31183,89.0,9.0,9.0,10.0,10.0,10.0,9.0,34,0.6 +2087,79.0,8.0,8.0,9.0,9.0,10.0,8.0,30,0.53 +8936,91.0,9.0,9.0,10.0,10.0,10.0,9.0,7,0.18 +33349,97.0,10.0,10.0,10.0,10.0,9.0,10.0,117,2.06 +45933,98.0,10.0,10.0,10.0,10.0,9.0,10.0,141,3.45 +2935,92.0,9.0,9.0,10.0,10.0,10.0,9.0,78,1.4 +67977,97.0,10.0,10.0,10.0,10.0,10.0,9.0,75,1.32 +69416,,,,,,,,0, +39196,87.0,9.0,9.0,9.0,9.0,9.0,8.0,14,0.26 +46380,,,,,,,,0, +10551,97.0,10.0,10.0,10.0,10.0,10.0,10.0,19,0.34 +14504,94.0,10.0,10.0,10.0,10.0,9.0,9.0,82,1.45 +56313,93.0,9.0,9.0,10.0,10.0,9.0,9.0,27,0.71 +71371,96.0,10.0,10.0,10.0,10.0,10.0,9.0,201,3.57 +59746,84.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.09 +41784,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.15 +35970,95.0,10.0,9.0,10.0,9.0,9.0,9.0,25,0.45 +74048,94.0,10.0,9.0,10.0,10.0,10.0,9.0,120,2.11 +54642,97.0,10.0,10.0,9.0,10.0,9.0,9.0,13,0.83 +50875,87.0,9.0,7.0,10.0,10.0,9.0,9.0,3,0.06 +71815,100.0,10.0,9.0,10.0,10.0,9.0,10.0,2,0.04 +11403,94.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.13 +73441,95.0,10.0,10.0,10.0,10.0,10.0,10.0,224,3.97 +6371,95.0,9.0,9.0,10.0,10.0,9.0,9.0,58,1.05 +66274,96.0,10.0,9.0,10.0,10.0,9.0,10.0,10,0.19 +56600,95.0,10.0,9.0,10.0,10.0,9.0,10.0,62,1.11 +47184,99.0,10.0,10.0,10.0,10.0,9.0,10.0,31,0.56 +19677,,,,,,,,0, +4175,94.0,9.0,9.0,10.0,10.0,10.0,9.0,24,0.43 +69827,98.0,10.0,10.0,10.0,10.0,9.0,10.0,50,1.17 +38997,100.0,10.0,10.0,9.0,10.0,10.0,10.0,2,0.09 +32797,97.0,10.0,10.0,10.0,10.0,9.0,10.0,49,0.91 +54218,95.0,9.0,10.0,10.0,10.0,9.0,10.0,17,0.54 +14944,91.0,9.0,10.0,10.0,10.0,9.0,9.0,7,0.13 +7650,,,,,,,,0, +53581,91.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.33 +31524,89.0,9.0,8.0,9.0,10.0,9.0,9.0,68,1.22 +40656,95.0,10.0,10.0,10.0,10.0,10.0,9.0,33,0.59 +41811,,,,,,,,0, +40154,85.0,8.0,9.0,9.0,9.0,9.0,8.0,23,0.45 +28890,93.0,10.0,9.0,10.0,10.0,10.0,9.0,30,0.53 +12715,94.0,10.0,9.0,10.0,10.0,9.0,10.0,106,1.88 +20832,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.15 +36391,96.0,9.0,10.0,10.0,10.0,9.0,10.0,11,1.09 +62487,89.0,10.0,9.0,10.0,10.0,10.0,10.0,38,3.99 +61239,99.0,10.0,10.0,10.0,10.0,9.0,10.0,36,0.98 +74805,95.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.29 +23593,98.0,10.0,10.0,10.0,10.0,9.0,10.0,68,1.35 +4656,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.52 +29846,99.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.83 +56813,98.0,10.0,10.0,10.0,10.0,9.0,10.0,218,4.03 +70646,95.0,10.0,10.0,10.0,10.0,10.0,9.0,77,1.38 +24287,100.0,8.0,8.0,10.0,10.0,10.0,8.0,1,0.02 +49892,,,,,,,,0, +2487,80.0,8.0,7.0,9.0,9.0,8.0,8.0,6,0.11 +62538,87.0,9.0,9.0,9.0,10.0,8.0,9.0,142,2.56 +22994,90.0,9.0,9.0,9.0,10.0,9.0,9.0,46,0.82 +21536,98.0,10.0,10.0,10.0,10.0,9.0,10.0,9,0.28 +11689,,,,,,,,0, +21401,,,,,,,,0, +6269,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.26 +5378,99.0,10.0,10.0,10.0,10.0,9.0,10.0,46,0.87 +27752,94.0,9.0,9.0,10.0,10.0,10.0,9.0,63,1.13 +64422,94.0,10.0,10.0,9.0,10.0,9.0,9.0,38,0.69 +55872,,,,,,,,0, +66535,91.0,9.0,9.0,10.0,10.0,10.0,9.0,99,2.4 +64784,,,,,,,,0, +51783,92.0,10.0,10.0,10.0,10.0,9.0,9.0,116,2.13 +19069,97.0,10.0,10.0,10.0,10.0,10.0,9.0,89,5.15 +32931,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.08 +3390,100.0,10.0,10.0,10.0,10.0,10.0,10.0,25,0.46 +58379,95.0,10.0,10.0,10.0,10.0,10.0,10.0,25,0.46 +15880,96.0,10.0,10.0,10.0,10.0,9.0,10.0,143,2.57 +32491,88.0,10.0,9.0,9.0,10.0,9.0,9.0,16,0.3 +75446,94.0,10.0,9.0,10.0,10.0,10.0,9.0,128,2.29 +34474,96.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.1 +56453,96.0,10.0,10.0,10.0,10.0,9.0,9.0,27,0.49 +59463,97.0,10.0,10.0,10.0,10.0,9.0,9.0,89,1.61 +69656,96.0,10.0,9.0,10.0,10.0,10.0,9.0,41,0.73 +29770,90.0,9.0,9.0,9.0,9.0,9.0,9.0,65,1.22 +57833,80.0,10.0,8.0,8.0,8.0,9.0,8.0,2,0.12 +26872,87.0,7.0,7.0,8.0,7.0,7.0,7.0,3,0.06 +12696,97.0,10.0,10.0,10.0,10.0,10.0,9.0,26,0.47 +64473,95.0,10.0,9.0,10.0,10.0,10.0,10.0,21,0.4 +3185,98.0,10.0,10.0,10.0,10.0,10.0,10.0,193,3.48 +16814,,,,,,,,0, +43190,94.0,10.0,9.0,10.0,10.0,10.0,9.0,31,0.55 +73900,,,,,,,,0, +73045,96.0,10.0,10.0,10.0,10.0,10.0,9.0,74,2.28 +59223,89.0,9.0,8.0,9.0,9.0,9.0,9.0,133,2.36 +66749,99.0,10.0,10.0,10.0,10.0,9.0,10.0,19,0.35 +39692,97.0,10.0,9.0,10.0,10.0,9.0,10.0,28,0.53 +18644,99.0,10.0,10.0,10.0,10.0,10.0,10.0,40,0.75 +25953,98.0,10.0,10.0,10.0,10.0,10.0,10.0,38,0.71 +63338,95.0,9.0,9.0,10.0,10.0,9.0,9.0,27,0.62 +13711,94.0,10.0,10.0,10.0,10.0,9.0,9.0,43,0.77 +37319,96.0,10.0,10.0,9.0,10.0,8.0,9.0,19,0.35 +19182,,,,,,,,0, +48623,81.0,8.0,8.0,9.0,9.0,9.0,8.0,99,1.77 +6934,98.0,10.0,10.0,10.0,10.0,9.0,10.0,27,0.51 +62297,95.0,10.0,9.0,10.0,10.0,9.0,10.0,4,0.15 +60226,100.0,10.0,10.0,10.0,10.0,10.0,9.0,10,0.18 +35016,99.0,10.0,10.0,10.0,10.0,10.0,10.0,350,6.45 +63421,,,,,,,,0, +36029,99.0,10.0,10.0,10.0,10.0,10.0,10.0,54,0.98 +10580,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.1 +64877,89.0,9.0,9.0,9.0,9.0,9.0,9.0,15,0.35 +36736,87.0,9.0,9.0,9.0,10.0,10.0,9.0,46,0.85 +56942,92.0,10.0,9.0,9.0,9.0,9.0,9.0,186,3.4 +29507,97.0,10.0,10.0,10.0,10.0,9.0,9.0,23,0.41 +26772,97.0,10.0,10.0,10.0,10.0,10.0,9.0,37,0.69 +9282,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.17 +47369,,,,,,,,0, +74186,89.0,9.0,8.0,10.0,9.0,9.0,9.0,10,0.19 +29568,98.0,10.0,10.0,10.0,10.0,10.0,10.0,58,1.07 +4857,100.0,9.0,10.0,10.0,10.0,10.0,9.0,8,0.15 +10153,87.0,10.0,8.0,10.0,10.0,9.0,9.0,23,0.51 +64839,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.08 +68661,98.0,10.0,10.0,10.0,10.0,10.0,10.0,41,0.75 +58336,99.0,10.0,10.0,10.0,10.0,10.0,10.0,163,2.96 +7542,,,,,,,,0, +72760,93.0,10.0,9.0,10.0,10.0,10.0,9.0,103,1.93 +51238,70.0,6.0,8.0,9.0,8.0,9.0,8.0,3,0.06 +27636,94.0,9.0,10.0,10.0,10.0,10.0,9.0,176,3.2 +31017,98.0,10.0,10.0,10.0,10.0,9.0,10.0,34,0.61 +828,94.0,10.0,10.0,9.0,10.0,9.0,10.0,89,2.31 +71030,94.0,10.0,10.0,10.0,10.0,9.0,9.0,145,2.59 +28875,99.0,10.0,10.0,10.0,10.0,10.0,9.0,21,0.38 +22054,100.0,10.0,10.0,10.0,10.0,9.0,10.0,47,1.6 +33301,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.09 +16468,98.0,10.0,10.0,10.0,10.0,10.0,10.0,100,1.8 +16921,96.0,10.0,9.0,10.0,10.0,9.0,9.0,24,0.43 +38827,100.0,10.0,10.0,9.0,10.0,10.0,10.0,9,0.21 +27657,95.0,10.0,9.0,10.0,10.0,9.0,9.0,4,0.08 +35727,98.0,10.0,10.0,10.0,10.0,10.0,10.0,112,2.04 +54010,98.0,10.0,10.0,10.0,10.0,9.0,10.0,51,0.99 +12524,83.0,9.0,9.0,9.0,9.0,9.0,8.0,43,0.77 +73407,96.0,10.0,10.0,10.0,10.0,10.0,10.0,140,2.59 +56649,91.0,10.0,9.0,10.0,10.0,9.0,9.0,8,0.18 +29651,100.0,10.0,10.0,10.0,10.0,10.0,9.0,7,0.17 +673,100.0,10.0,10.0,10.0,10.0,10.0,10.0,26,0.71 +3072,87.0,9.0,9.0,9.0,9.0,9.0,9.0,3,0.11 +73778,86.0,9.0,9.0,9.0,9.0,10.0,9.0,70,1.26 +10453,98.0,10.0,10.0,10.0,10.0,10.0,10.0,33,0.61 +42031,98.0,10.0,10.0,10.0,9.0,10.0,10.0,11,0.22 +37066,89.0,10.0,9.0,10.0,10.0,10.0,9.0,9,0.16 +29571,,,,,,,,0, +66913,80.0,9.0,8.0,9.0,9.0,10.0,9.0,53,0.99 +41252,88.0,9.0,9.0,10.0,10.0,8.0,9.0,22,0.4 +5858,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +50259,60.0,6.0,6.0,10.0,10.0,10.0,6.0,1,0.02 +23146,90.0,9.0,8.0,9.0,9.0,9.0,9.0,26,0.46 +22582,99.0,10.0,10.0,10.0,10.0,10.0,10.0,23,0.45 +57155,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.06 +57461,100.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.31 +69826,95.0,10.0,9.0,10.0,10.0,10.0,9.0,41,0.77 +74686,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.12 +35718,98.0,10.0,10.0,10.0,10.0,10.0,10.0,47,0.87 +15699,97.0,10.0,10.0,10.0,10.0,10.0,9.0,37,0.68 +60679,100.0,9.0,10.0,10.0,10.0,10.0,10.0,3,0.07 +35880,76.0,8.0,8.0,9.0,9.0,9.0,8.0,46,0.84 +28138,96.0,10.0,10.0,10.0,10.0,8.0,9.0,41,0.73 +34273,98.0,10.0,10.0,10.0,10.0,9.0,9.0,68,1.29 +52797,95.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.08 +3775,92.0,10.0,10.0,10.0,9.0,9.0,9.0,19,0.35 +57522,90.0,10.0,10.0,10.0,9.0,9.0,9.0,38,0.73 +35434,95.0,9.0,9.0,10.0,10.0,10.0,9.0,70,1.29 +65780,97.0,10.0,9.0,10.0,10.0,10.0,9.0,6,0.15 +75223,98.0,10.0,10.0,10.0,10.0,10.0,10.0,185,3.51 +23052,99.0,10.0,10.0,10.0,10.0,9.0,10.0,14,0.31 +6094,96.0,10.0,10.0,10.0,10.0,10.0,10.0,21,0.54 +42618,80.0,9.0,8.0,10.0,10.0,8.0,9.0,2,0.04 +41989,95.0,9.0,9.0,10.0,10.0,10.0,9.0,20,0.4 +6082,92.0,9.0,9.0,9.0,9.0,9.0,9.0,208,3.75 +73941,97.0,10.0,9.0,10.0,10.0,9.0,10.0,14,0.26 +64069,94.0,9.0,10.0,9.0,9.0,9.0,9.0,10,0.34 +32992,94.0,9.0,9.0,10.0,10.0,9.0,9.0,25,0.49 +6530,96.0,9.0,10.0,10.0,10.0,10.0,10.0,5,0.1 +45065,96.0,10.0,9.0,10.0,10.0,9.0,9.0,75,1.34 +46541,96.0,10.0,10.0,10.0,10.0,9.0,10.0,84,1.51 +64275,86.0,8.0,8.0,9.0,9.0,9.0,9.0,311,5.6 +56872,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.26 +22778,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.12 +64662,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +59133,91.0,9.0,9.0,9.0,10.0,10.0,9.0,15,0.31 +34440,98.0,10.0,10.0,10.0,10.0,10.0,10.0,46,0.84 +31739,,,,,,,,5,0.16 +25709,62.0,7.0,6.0,7.0,7.0,9.0,6.0,10,0.19 +1864,100.0,10.0,10.0,10.0,10.0,10.0,10.0,209,3.83 +42524,91.0,10.0,9.0,9.0,9.0,9.0,9.0,40,0.74 +48765,,,,,,,,0, +7851,99.0,10.0,10.0,10.0,10.0,9.0,10.0,14,0.51 +1250,88.0,9.0,8.0,10.0,9.0,8.0,9.0,90,1.63 +19474,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.35 +8602,88.0,9.0,8.0,10.0,10.0,10.0,9.0,13,0.24 +50600,,,,,,,,0, +9833,98.0,10.0,10.0,10.0,10.0,9.0,10.0,138,2.51 +53834,99.0,10.0,10.0,10.0,10.0,10.0,10.0,21,0.52 +21105,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.6 +15772,97.0,9.0,9.0,10.0,9.0,10.0,9.0,27,0.51 +73634,90.0,9.0,9.0,10.0,10.0,10.0,9.0,36,0.66 +7319,98.0,9.0,9.0,10.0,10.0,10.0,9.0,9,0.21 +46523,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +230,95.0,9.0,9.0,8.0,9.0,9.0,9.0,4,0.08 +29143,93.0,10.0,9.0,10.0,10.0,9.0,9.0,130,2.33 +55131,,,,,,,,1,0.05 +70423,100.0,9.0,10.0,9.0,9.0,9.0,10.0,4,0.1 +32840,96.0,9.0,9.0,10.0,10.0,10.0,9.0,42,0.76 +4558,97.0,10.0,10.0,10.0,10.0,10.0,9.0,32,0.6 +25973,99.0,10.0,10.0,9.0,10.0,9.0,10.0,28,0.51 +73531,91.0,10.0,9.0,10.0,10.0,10.0,10.0,9,0.22 +41243,90.0,9.0,10.0,10.0,10.0,9.0,10.0,5,0.1 +6937,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.1 +10968,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.37 +65766,100.0,9.0,10.0,10.0,10.0,10.0,10.0,4,0.1 +76613,94.0,10.0,10.0,10.0,10.0,9.0,9.0,50,0.93 +33954,98.0,10.0,10.0,10.0,10.0,10.0,10.0,39,0.71 +10142,92.0,9.0,10.0,10.0,10.0,9.0,10.0,12,0.25 +42801,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +46822,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.24 +50457,98.0,10.0,10.0,10.0,10.0,9.0,9.0,18,0.34 +58355,95.0,10.0,10.0,10.0,10.0,9.0,10.0,66,1.41 +19839,97.0,10.0,10.0,10.0,10.0,10.0,9.0,20,0.38 +63068,93.0,9.0,9.0,9.0,10.0,10.0,9.0,28,0.52 +48647,80.0,8.0,8.0,8.0,10.0,8.0,8.0,1,0.02 +62490,100.0,9.0,9.0,10.0,10.0,10.0,10.0,3,0.06 +44229,85.0,9.0,9.0,10.0,10.0,10.0,8.0,4,0.08 +55281,99.0,10.0,10.0,10.0,10.0,10.0,10.0,35,0.83 +69586,93.0,9.0,9.0,10.0,10.0,9.0,9.0,75,1.41 +61572,92.0,10.0,9.0,10.0,10.0,9.0,9.0,44,0.8 +68089,89.0,10.0,9.0,9.0,10.0,9.0,9.0,9,0.27 +47338,98.0,10.0,10.0,10.0,10.0,9.0,10.0,35,0.93 +8345,91.0,9.0,9.0,10.0,10.0,10.0,10.0,14,0.29 +27865,99.0,10.0,10.0,10.0,10.0,10.0,10.0,147,2.66 +56515,93.0,9.0,8.0,9.0,9.0,10.0,9.0,3,0.07 +9320,90.0,9.0,8.0,10.0,10.0,9.0,10.0,2,0.05 +57134,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +27457,100.0,8.0,8.0,8.0,10.0,10.0,8.0,1,0.43 +37760,85.0,9.0,9.0,9.0,9.0,9.0,9.0,183,3.33 +13939,95.0,10.0,10.0,10.0,10.0,9.0,10.0,138,2.51 +54431,97.0,10.0,9.0,10.0,10.0,10.0,9.0,49,0.95 +66162,95.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.09 +47275,97.0,10.0,10.0,10.0,10.0,8.0,9.0,13,0.23 +49752,96.0,10.0,9.0,10.0,10.0,10.0,9.0,200,3.86 +38880,88.0,9.0,9.0,9.0,9.0,10.0,9.0,28,0.51 +24652,94.0,10.0,10.0,10.0,10.0,10.0,9.0,211,4.55 +47571,99.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.28 +31588,97.0,10.0,10.0,10.0,10.0,9.0,10.0,27,0.5 +11554,95.0,10.0,9.0,10.0,10.0,9.0,9.0,17,0.31 +74563,99.0,10.0,10.0,10.0,10.0,10.0,9.0,15,0.61 +69574,,,,,,,,1,1.0 +46286,93.0,10.0,10.0,10.0,10.0,9.0,9.0,49,0.89 +8964,91.0,9.0,9.0,10.0,9.0,9.0,9.0,80,1.49 +43044,,,,,,,,0, +70348,95.0,9.0,9.0,10.0,10.0,10.0,10.0,13,0.24 +2699,98.0,10.0,10.0,10.0,10.0,10.0,10.0,27,0.5 +8704,91.0,9.0,9.0,9.0,10.0,10.0,9.0,54,0.98 +39127,84.0,9.0,8.0,10.0,9.0,8.0,9.0,14,0.29 +6916,97.0,10.0,10.0,10.0,10.0,9.0,10.0,115,2.11 +57100,85.0,9.0,8.0,9.0,9.0,9.0,9.0,27,0.52 +20156,96.0,10.0,10.0,10.0,10.0,9.0,10.0,213,4.21 +60042,,,,,,,,0, +73052,94.0,10.0,10.0,10.0,10.0,9.0,9.0,40,1.32 +36067,77.0,8.0,6.0,9.0,9.0,9.0,8.0,31,0.58 +5299,,,,,,,,0, +6765,,,,,,,,0, +75023,93.0,10.0,9.0,10.0,10.0,10.0,9.0,33,0.62 +41113,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.12 +31340,81.0,8.0,8.0,9.0,9.0,9.0,8.0,43,0.91 +35481,91.0,9.0,9.0,10.0,10.0,9.0,9.0,28,0.73 +33814,94.0,10.0,10.0,10.0,10.0,10.0,9.0,13,0.24 +94,96.0,10.0,10.0,10.0,10.0,9.0,10.0,80,1.54 +33827,96.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.12 +59909,97.0,10.0,10.0,10.0,10.0,9.0,10.0,39,0.77 +67153,97.0,10.0,9.0,10.0,10.0,9.0,9.0,37,0.68 +48495,90.0,9.0,9.0,9.0,8.0,8.0,9.0,7,0.3 +35797,99.0,10.0,10.0,10.0,10.0,10.0,10.0,45,0.83 +27297,100.0,10.0,10.0,10.0,10.0,9.0,9.0,7,0.13 +36762,60.0,8.0,4.0,8.0,8.0,10.0,10.0,1,0.05 +37349,92.0,10.0,9.0,10.0,10.0,9.0,9.0,98,1.76 +68134,96.0,10.0,9.0,10.0,10.0,10.0,9.0,52,0.94 +58852,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.17 +20316,90.0,9.0,8.0,9.0,10.0,10.0,9.0,14,0.25 +27706,93.0,10.0,9.0,10.0,10.0,9.0,9.0,3,0.06 +66487,98.0,10.0,10.0,10.0,10.0,9.0,10.0,9,0.17 +48274,94.0,10.0,10.0,10.0,10.0,10.0,9.0,35,0.64 +52189,91.0,9.0,9.0,10.0,9.0,10.0,9.0,15,0.5 +41844,94.0,10.0,9.0,10.0,9.0,9.0,9.0,13,0.24 +37870,97.0,10.0,10.0,10.0,10.0,10.0,10.0,19,0.41 +23613,93.0,10.0,8.0,9.0,9.0,8.0,9.0,20,0.38 +19199,99.0,10.0,10.0,10.0,10.0,10.0,10.0,34,0.62 +41344,94.0,10.0,9.0,10.0,10.0,9.0,10.0,8,0.15 +21784,,,,,,,,0, +51375,95.0,10.0,9.0,10.0,10.0,10.0,9.0,43,0.8 +36987,,,,,,,,0, +13630,90.0,10.0,9.0,10.0,9.0,10.0,9.0,2,0.04 +64562,60.0,5.0,3.0,9.0,7.0,10.0,5.0,2,0.07 +15783,93.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.15 +56130,,,,,,,,1,0.03 +55195,94.0,9.0,9.0,10.0,9.0,10.0,9.0,18,0.62 +22226,97.0,10.0,10.0,10.0,10.0,10.0,10.0,21,0.39 +16132,,,,,,,,0, +39195,95.0,10.0,10.0,10.0,10.0,9.0,10.0,102,1.85 +54696,89.0,9.0,9.0,9.0,9.0,10.0,9.0,69,1.26 +54949,98.0,10.0,10.0,10.0,10.0,9.0,10.0,136,2.46 +7958,92.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.13 +61419,92.0,9.0,8.0,10.0,10.0,10.0,9.0,12,0.24 +25795,,,,,,,,0, +61762,95.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.23 +73964,93.0,10.0,10.0,10.0,10.0,10.0,9.0,27,0.5 +56620,95.0,10.0,9.0,10.0,10.0,10.0,10.0,23,1.5 +68949,96.0,10.0,9.0,10.0,10.0,10.0,10.0,17,2.74 +76957,,,,,,,,0, +22911,,,,,,,,0, +70019,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.04 +68750,84.0,7.0,10.0,10.0,9.0,9.0,10.0,9,0.17 +32346,98.0,10.0,10.0,10.0,10.0,10.0,10.0,124,2.26 +37910,98.0,10.0,10.0,10.0,10.0,9.0,9.0,10,0.19 +1387,100.0,10.0,10.0,10.0,10.0,8.0,9.0,3,0.05 +12440,96.0,10.0,10.0,10.0,10.0,9.0,10.0,133,2.43 +76304,95.0,10.0,10.0,10.0,10.0,10.0,9.0,152,2.78 +14633,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.22 +69610,,,,,,,,0, +31554,95.0,10.0,10.0,9.0,9.0,9.0,9.0,47,0.86 +34935,100.0,9.0,8.0,10.0,10.0,9.0,10.0,3,0.06 +5980,90.0,9.0,9.0,9.0,10.0,9.0,9.0,73,1.37 +3845,96.0,10.0,10.0,10.0,10.0,10.0,10.0,333,6.28 +8101,,,,,,,,0, +57142,96.0,10.0,10.0,10.0,10.0,10.0,9.0,26,0.59 +9240,98.0,10.0,10.0,10.0,10.0,10.0,10.0,59,1.11 +5112,90.0,9.0,9.0,9.0,9.0,9.0,9.0,260,5.31 +16906,100.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.28 +7108,96.0,10.0,9.0,10.0,10.0,9.0,9.0,34,1.04 +19743,93.0,9.0,9.0,9.0,9.0,10.0,8.0,23,0.59 +8117,,,,,,,,0, +45303,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.27 +53248,99.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.33 +71833,98.0,10.0,10.0,10.0,10.0,9.0,10.0,99,1.8 +44825,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.05 +48240,84.0,9.0,8.0,8.0,8.0,9.0,9.0,5,0.09 +39370,100.0,9.0,10.0,9.0,10.0,9.0,10.0,3,0.06 +64931,85.0,10.0,9.0,10.0,9.0,9.0,8.0,5,0.09 +67965,,,,,,,,0, +65119,89.0,10.0,9.0,10.0,9.0,9.0,9.0,41,0.77 +24967,96.0,10.0,10.0,10.0,10.0,10.0,10.0,93,1.73 +7115,96.0,10.0,9.0,10.0,10.0,10.0,10.0,19,0.37 +21194,,,,,,,,1,0.03 +73151,90.0,9.0,9.0,10.0,10.0,9.0,9.0,205,3.73 +11280,98.0,10.0,10.0,10.0,10.0,9.0,10.0,11,0.27 +57088,80.0,10.0,7.0,9.0,10.0,10.0,8.0,3,0.06 +13611,73.0,8.0,7.0,7.0,9.0,9.0,8.0,3,0.05 +14780,100.0,10.0,10.0,10.0,10.0,9.0,10.0,28,0.53 +60460,98.0,10.0,10.0,10.0,10.0,9.0,10.0,12,0.23 +24951,90.0,9.0,9.0,10.0,9.0,10.0,9.0,12,0.22 +22351,97.0,10.0,9.0,10.0,10.0,10.0,9.0,6,0.11 +28019,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +70157,97.0,10.0,10.0,10.0,10.0,9.0,9.0,88,1.63 +34192,97.0,10.0,9.0,10.0,10.0,9.0,10.0,7,0.13 +2109,96.0,10.0,9.0,10.0,10.0,10.0,10.0,10,0.19 +74129,94.0,10.0,10.0,10.0,10.0,10.0,9.0,46,0.84 +63671,86.0,9.0,8.0,9.0,9.0,9.0,9.0,56,1.15 +23828,93.0,10.0,8.0,10.0,10.0,9.0,9.0,10,0.24 +74727,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.04 +19409,97.0,10.0,10.0,10.0,10.0,10.0,9.0,55,1.32 +15799,93.0,10.0,9.0,10.0,10.0,10.0,9.0,41,0.74 +4730,97.0,10.0,10.0,10.0,10.0,10.0,9.0,32,0.61 +21135,87.0,9.0,9.0,9.0,9.0,9.0,9.0,3,0.06 +403,83.0,9.0,8.0,9.0,10.0,9.0,8.0,7,0.13 +62547,95.0,10.0,10.0,10.0,10.0,10.0,10.0,115,2.09 +62250,88.0,9.0,8.0,9.0,10.0,10.0,9.0,26,0.49 +53071,71.0,8.0,6.0,8.0,8.0,8.0,7.0,8,0.15 +67951,89.0,10.0,8.0,9.0,10.0,8.0,9.0,12,0.37 +881,98.0,10.0,10.0,10.0,10.0,9.0,10.0,93,1.69 +28844,97.0,10.0,10.0,10.0,9.0,10.0,9.0,135,2.44 +57580,92.0,9.0,9.0,9.0,9.0,10.0,9.0,45,0.84 +71860,,,,,,,,0, +20681,95.0,10.0,9.0,10.0,10.0,9.0,9.0,30,0.6 +49038,90.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.07 +58605,,,,,,,,0, +1414,87.0,7.0,9.0,9.0,9.0,9.0,9.0,4,0.08 +8641,91.0,9.0,9.0,9.0,9.0,8.0,9.0,9,0.16 +76807,91.0,9.0,9.0,10.0,10.0,9.0,9.0,23,0.42 +16385,83.0,9.0,8.0,9.0,9.0,9.0,9.0,121,2.21 +40233,93.0,10.0,9.0,10.0,10.0,9.0,9.0,12,0.22 +60629,98.0,10.0,10.0,10.0,10.0,10.0,9.0,177,3.24 +13856,100.0,10.0,10.0,10.0,10.0,9.0,10.0,12,2.83 +41067,94.0,10.0,10.0,10.0,10.0,9.0,9.0,78,1.43 +56883,,,,,,,,0, +76700,98.0,10.0,9.0,10.0,10.0,9.0,9.0,9,0.16 +64189,97.0,10.0,10.0,10.0,10.0,9.0,10.0,51,0.95 +53161,90.0,9.0,7.0,10.0,9.0,10.0,9.0,2,0.04 +3591,90.0,10.0,9.0,10.0,10.0,8.0,9.0,6,0.11 +29263,95.0,10.0,9.0,10.0,10.0,10.0,10.0,33,0.6 +737,,,,,,,,0, +51732,99.0,10.0,10.0,10.0,10.0,10.0,10.0,95,1.78 +44051,99.0,10.0,10.0,10.0,10.0,10.0,10.0,72,1.38 +57835,,,,,,,,0, +10972,77.0,8.0,8.0,8.0,8.0,9.0,8.0,8,0.15 +16872,100.0,10.0,9.0,9.0,9.0,10.0,10.0,3,0.06 +70563,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.08 +38165,99.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.62 +8890,100.0,10.0,10.0,9.0,10.0,10.0,10.0,3,0.06 +6551,97.0,10.0,10.0,10.0,10.0,9.0,10.0,56,1.02 +27154,90.0,9.0,9.0,10.0,10.0,9.0,9.0,178,3.26 +71613,95.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.24 +72048,99.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.3 +2993,94.0,10.0,9.0,10.0,10.0,9.0,10.0,158,2.89 +43169,92.0,9.0,9.0,10.0,10.0,10.0,10.0,31,0.56 +69515,,,,,,,,0, +1259,96.0,10.0,10.0,10.0,10.0,10.0,10.0,118,2.17 +18801,100.0,10.0,10.0,10.0,10.0,10.0,10.0,24,0.44 +14702,97.0,10.0,10.0,10.0,10.0,9.0,10.0,52,0.94 +53847,99.0,10.0,10.0,10.0,10.0,9.0,10.0,15,2.23 +29738,88.0,9.0,9.0,9.0,9.0,9.0,9.0,118,3.46 +53600,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.13 +53490,91.0,9.0,8.0,9.0,10.0,10.0,9.0,7,0.22 +12523,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,3.0 +57994,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +29385,,,,,,,,0, +30610,98.0,10.0,10.0,10.0,10.0,9.0,10.0,11,0.21 +67550,89.0,10.0,10.0,9.0,9.0,9.0,9.0,9,0.17 +37393,86.0,9.0,9.0,9.0,9.0,8.0,8.0,19,0.35 +36722,100.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.04 +49500,93.0,9.0,9.0,10.0,10.0,9.0,9.0,85,1.57 +73260,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +9262,100.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +25179,93.0,10.0,9.0,9.0,9.0,9.0,9.0,4,0.07 +3386,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.04 +45373,93.0,9.0,9.0,10.0,10.0,9.0,9.0,3,0.06 +13831,100.0,10.0,10.0,10.0,10.0,9.0,10.0,11,0.22 +49039,89.0,10.0,10.0,6.0,10.0,10.0,6.0,1,0.02 +62349,95.0,10.0,8.0,10.0,10.0,10.0,9.0,4,0.07 +16643,96.0,10.0,9.0,10.0,10.0,10.0,10.0,57,1.07 +20847,,,,,,,,0, +64943,80.0,8.0,9.0,9.0,9.0,9.0,8.0,48,1.02 +68823,90.0,9.0,9.0,10.0,10.0,10.0,9.0,193,4.58 +53175,93.0,9.0,9.0,10.0,10.0,8.0,9.0,10,0.19 +27995,94.0,10.0,9.0,10.0,10.0,9.0,10.0,295,5.47 +44955,99.0,10.0,10.0,10.0,10.0,9.0,10.0,33,0.61 +28236,93.0,9.0,9.0,10.0,10.0,9.0,9.0,55,1.03 +69519,89.0,9.0,9.0,9.0,9.0,9.0,9.0,68,1.25 +8694,89.0,9.0,9.0,9.0,10.0,9.0,9.0,42,0.77 +42954,99.0,10.0,10.0,10.0,10.0,8.0,10.0,14,0.26 +1185,100.0,10.0,9.0,10.0,10.0,9.0,9.0,4,0.09 +28298,93.0,9.0,10.0,10.0,10.0,8.0,9.0,15,0.27 +13215,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.16 +40080,97.0,10.0,10.0,10.0,10.0,9.0,10.0,25,0.48 +21903,97.0,10.0,10.0,10.0,10.0,10.0,10.0,39,0.72 +63920,99.0,10.0,9.0,10.0,10.0,10.0,10.0,14,0.27 +33543,95.0,9.0,10.0,10.0,10.0,10.0,9.0,99,1.85 +26292,,,,,,,,0, +64809,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.88 +59959,96.0,10.0,10.0,9.0,9.0,9.0,9.0,16,0.32 +68171,93.0,10.0,9.0,10.0,10.0,9.0,9.0,45,1.04 +67118,96.0,10.0,10.0,10.0,10.0,9.0,10.0,89,1.65 +54621,97.0,10.0,10.0,10.0,10.0,10.0,10.0,21,0.38 +74198,86.0,8.0,9.0,9.0,10.0,9.0,9.0,42,0.78 +60978,96.0,10.0,9.0,10.0,10.0,9.0,10.0,137,6.85 +12805,100.0,10.0,10.0,10.0,10.0,9.0,10.0,10,0.19 +5238,94.0,9.0,9.0,10.0,9.0,9.0,9.0,19,0.55 +30352,,,,,,,,0, +16570,96.0,10.0,9.0,10.0,10.0,10.0,10.0,26,0.49 +12900,95.0,9.0,9.0,10.0,10.0,9.0,9.0,11,0.21 +52123,84.0,9.0,8.0,9.0,9.0,8.0,9.0,91,1.67 +34887,,,,,,,,0, +50110,95.0,10.0,9.0,10.0,10.0,9.0,9.0,15,0.28 +48434,99.0,10.0,10.0,10.0,10.0,10.0,10.0,58,1.32 +57998,95.0,10.0,10.0,10.0,10.0,9.0,10.0,83,1.55 +51253,92.0,10.0,9.0,9.0,10.0,9.0,9.0,56,1.04 +20536,91.0,9.0,9.0,10.0,10.0,10.0,9.0,14,0.3 +13361,,,,,,,,0, +51713,100.0,10.0,6.0,10.0,10.0,10.0,8.0,1,0.02 +64340,86.0,9.0,9.0,9.0,9.0,10.0,9.0,356,6.5 +20740,98.0,9.0,10.0,10.0,10.0,10.0,9.0,15,0.29 +21471,95.0,10.0,10.0,10.0,10.0,9.0,9.0,96,1.9 +3307,,,,,,,,0, +8501,99.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.33 +53256,99.0,10.0,10.0,10.0,10.0,10.0,9.0,19,0.35 +55658,96.0,10.0,10.0,10.0,10.0,9.0,10.0,197,3.6 +73232,95.0,10.0,9.0,10.0,10.0,10.0,10.0,124,2.31 +6900,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.21 +46037,90.0,10.0,10.0,10.0,10.0,9.0,9.0,4,0.1 +25562,100.0,9.0,9.0,10.0,10.0,9.0,9.0,2,0.04 +67399,95.0,10.0,10.0,9.0,10.0,10.0,9.0,37,0.68 +8962,93.0,10.0,9.0,10.0,10.0,10.0,9.0,9,0.21 +45276,86.0,8.0,8.0,9.0,9.0,10.0,9.0,15,0.27 +56248,95.0,9.0,10.0,10.0,10.0,9.0,9.0,23,0.43 +55517,80.0,8.0,7.0,9.0,9.0,9.0,9.0,81,1.49 +25896,91.0,10.0,10.0,10.0,10.0,9.0,9.0,7,0.15 +24208,93.0,10.0,9.0,10.0,10.0,9.0,9.0,35,0.8 +2700,80.0,8.0,6.0,10.0,10.0,10.0,8.0,1,0.02 +36911,92.0,10.0,9.0,10.0,10.0,10.0,9.0,28,0.55 +66476,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.06 +2130,,,,,,,,0, +44267,88.0,9.0,9.0,10.0,10.0,9.0,9.0,123,2.27 +50052,86.0,9.0,9.0,9.0,10.0,9.0,9.0,185,3.39 +61914,88.0,9.0,9.0,9.0,9.0,9.0,9.0,183,3.35 +46802,86.0,9.0,9.0,9.0,9.0,9.0,9.0,138,2.61 +18135,91.0,9.0,9.0,10.0,10.0,9.0,9.0,109,2.0 +8196,84.0,7.0,8.0,10.0,10.0,9.0,8.0,5,5.0 +50964,93.0,10.0,9.0,10.0,10.0,9.0,9.0,12,0.33 +56049,92.0,9.0,9.0,10.0,10.0,10.0,9.0,31,0.62 +59719,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.15 +58168,97.0,10.0,9.0,10.0,10.0,10.0,10.0,25,1.29 +43180,,,,,,,,0, +60092,90.0,10.0,10.0,10.0,10.0,7.0,10.0,2,0.04 +73526,93.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.07 +9973,96.0,10.0,10.0,10.0,10.0,9.0,10.0,172,3.26 +71989,94.0,10.0,10.0,10.0,10.0,9.0,9.0,168,3.13 +70491,87.0,8.0,7.0,9.0,8.0,9.0,8.0,6,0.11 +58643,90.0,10.0,9.0,10.0,10.0,9.0,9.0,4,0.1 +75648,,,,,,,,0, +66868,97.0,10.0,10.0,10.0,9.0,9.0,9.0,8,0.26 +21970,92.0,9.0,9.0,10.0,9.0,9.0,9.0,127,2.4 +51367,,,,,,,,0, +23570,92.0,10.0,9.0,10.0,10.0,9.0,9.0,31,0.58 +20489,97.0,9.0,10.0,10.0,10.0,9.0,9.0,12,0.22 +31022,96.0,10.0,10.0,10.0,10.0,10.0,10.0,25,0.46 +71230,88.0,9.0,9.0,10.0,9.0,8.0,9.0,17,0.34 +6103,88.0,9.0,8.0,9.0,9.0,10.0,8.0,11,0.22 +71206,98.0,10.0,10.0,10.0,10.0,10.0,9.0,32,0.59 +18438,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.1 +40056,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,1.76 +55673,92.0,9.0,9.0,10.0,10.0,10.0,10.0,13,0.24 +20226,90.0,9.0,9.0,10.0,10.0,9.0,10.0,6,0.11 +9981,,,,,,,,0, +42494,,,,,,,,0, +24654,81.0,9.0,8.0,10.0,10.0,9.0,8.0,21,0.4 +63331,88.0,9.0,7.0,10.0,10.0,9.0,9.0,17,0.32 +71172,95.0,10.0,10.0,10.0,10.0,10.0,10.0,59,1.09 +69611,92.0,9.0,10.0,10.0,10.0,9.0,9.0,30,0.55 +70265,98.0,10.0,10.0,10.0,10.0,9.0,10.0,116,2.18 +17045,97.0,10.0,10.0,10.0,10.0,10.0,10.0,24,0.46 +64827,93.0,9.0,9.0,9.0,9.0,9.0,9.0,3,0.06 +57614,76.0,8.0,8.0,8.0,8.0,9.0,8.0,25,0.46 +21540,98.0,10.0,10.0,10.0,10.0,9.0,10.0,28,0.53 +26487,60.0,10.0,8.0,4.0,4.0,10.0,10.0,1,0.21 +21466,,,,,,,,0, +29358,,,,,,,,0, +64031,87.0,9.0,9.0,9.0,9.0,9.0,8.0,9,0.51 +622,94.0,10.0,10.0,9.0,10.0,10.0,9.0,33,0.61 +19323,94.0,10.0,10.0,10.0,10.0,10.0,9.0,122,2.29 +45422,91.0,9.0,9.0,10.0,10.0,10.0,9.0,143,2.61 +18158,100.0,10.0,9.0,10.0,10.0,10.0,9.0,4,0.08 +33433,84.0,8.0,8.0,9.0,9.0,8.0,8.0,11,0.2 +26476,88.0,9.0,9.0,9.0,9.0,9.0,9.0,55,1.02 +47398,100.0,10.0,8.0,10.0,10.0,9.0,10.0,3,0.15 +53898,98.0,10.0,9.0,10.0,10.0,9.0,10.0,11,0.21 +43710,80.0,9.0,7.0,8.0,9.0,8.0,8.0,9,0.17 +7908,100.0,10.0,10.0,10.0,10.0,10.0,9.0,22,0.55 +35811,94.0,10.0,9.0,10.0,10.0,9.0,10.0,16,0.32 +18377,80.0,8.0,8.0,9.0,9.0,10.0,8.0,10,0.22 +55819,95.0,9.0,10.0,10.0,10.0,10.0,10.0,4,0.08 +68226,94.0,10.0,10.0,10.0,10.0,9.0,9.0,43,1.08 +59676,91.0,10.0,9.0,10.0,10.0,9.0,9.0,112,2.06 +44195,,,,,,,,0, +9446,94.0,9.0,9.0,10.0,10.0,9.0,9.0,38,0.7 +50257,80.0,8.0,4.0,8.0,8.0,8.0,8.0,1,0.02 +71678,91.0,9.0,10.0,10.0,9.0,9.0,10.0,16,0.31 +63015,73.0,7.0,7.0,8.0,7.0,7.0,6.0,6,0.12 +65113,88.0,10.0,8.0,10.0,10.0,9.0,9.0,21,0.4 +52238,86.0,9.0,9.0,9.0,10.0,8.0,9.0,25,0.46 +11993,98.0,10.0,10.0,10.0,10.0,9.0,10.0,62,1.15 +54557,86.0,9.0,9.0,10.0,9.0,9.0,9.0,15,0.8 +40390,,,,,,,,0, +2259,80.0,9.0,8.0,8.0,8.0,9.0,9.0,19,0.35 +362,94.0,10.0,9.0,10.0,10.0,10.0,9.0,20,0.38 +26741,,,,,,,,0, +14252,80.0,9.0,8.0,10.0,10.0,9.0,8.0,5,0.1 +31614,93.0,9.0,10.0,10.0,10.0,10.0,9.0,192,3.56 +53479,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.24 +52190,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +28677,100.0,10.0,10.0,10.0,10.0,8.0,10.0,2,0.04 +27484,97.0,10.0,10.0,10.0,10.0,9.0,9.0,14,0.26 +27642,90.0,9.0,9.0,9.0,10.0,10.0,9.0,2,0.04 +28616,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +74334,97.0,10.0,10.0,10.0,10.0,10.0,9.0,115,2.36 +8577,81.0,8.0,8.0,9.0,9.0,9.0,8.0,42,0.79 +61226,80.0,9.0,8.0,9.0,10.0,8.0,8.0,17,0.33 +32247,91.0,9.0,9.0,10.0,10.0,9.0,9.0,295,5.5 +21685,96.0,10.0,10.0,10.0,10.0,10.0,9.0,27,0.52 +30115,89.0,9.0,9.0,10.0,10.0,9.0,9.0,22,0.41 +45655,90.0,9.0,9.0,9.0,9.0,10.0,9.0,33,0.62 +27846,99.0,10.0,10.0,10.0,10.0,10.0,10.0,79,1.49 +52239,91.0,10.0,9.0,9.0,9.0,9.0,9.0,11,0.29 +45873,96.0,10.0,10.0,10.0,10.0,9.0,10.0,81,1.5 +69799,92.0,10.0,9.0,10.0,10.0,9.0,10.0,5,0.17 +71434,98.0,10.0,10.0,10.0,10.0,10.0,10.0,24,0.44 +4016,97.0,10.0,9.0,10.0,10.0,9.0,9.0,14,0.26 +26923,,,,,,,,0, +41942,89.0,9.0,10.0,9.0,10.0,10.0,9.0,27,0.62 +42076,100.0,9.0,9.0,10.0,10.0,9.0,9.0,3,0.07 +16662,90.0,10.0,8.0,10.0,10.0,8.0,10.0,2,0.04 +53316,94.0,10.0,10.0,10.0,10.0,10.0,10.0,49,1.0 +28373,91.0,10.0,8.0,10.0,10.0,10.0,9.0,13,0.29 +49996,100.0,10.0,10.0,10.0,10.0,9.0,9.0,8,0.17 +39442,100.0,10.0,10.0,10.0,10.0,10.0,9.0,7,0.3 +41497,98.0,10.0,10.0,10.0,10.0,10.0,9.0,69,1.28 +55665,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,1.08 +43822,98.0,10.0,10.0,10.0,10.0,10.0,10.0,31,0.62 +44430,98.0,10.0,10.0,10.0,10.0,10.0,10.0,59,1.42 +23239,100.0,10.0,10.0,10.0,10.0,10.0,9.0,13,0.24 +56321,88.0,9.0,9.0,10.0,10.0,9.0,9.0,88,1.62 +20447,92.0,9.0,9.0,10.0,10.0,9.0,9.0,75,1.41 +19294,96.0,10.0,9.0,10.0,10.0,10.0,10.0,59,1.08 +16708,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +38678,96.0,10.0,9.0,10.0,10.0,9.0,10.0,15,0.88 +18105,97.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.18 +8822,,,,,,,,0, +18054,,,,,,,,0, +3565,97.0,10.0,10.0,10.0,10.0,9.0,10.0,126,2.35 +21355,91.0,9.0,8.0,10.0,10.0,9.0,9.0,139,2.86 +18494,93.0,9.0,9.0,10.0,10.0,10.0,9.0,16,0.37 +5964,93.0,9.0,9.0,10.0,10.0,9.0,9.0,86,1.63 +31133,91.0,9.0,8.0,10.0,10.0,10.0,9.0,7,0.31 +71312,99.0,10.0,10.0,10.0,10.0,10.0,10.0,29,1.92 +76539,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.3 +15636,94.0,10.0,9.0,10.0,10.0,9.0,9.0,149,2.76 +72894,98.0,10.0,10.0,10.0,10.0,10.0,10.0,57,1.17 +49426,,,,,,,,0, +60768,98.0,10.0,10.0,10.0,10.0,9.0,9.0,47,0.87 +64978,94.0,10.0,9.0,10.0,10.0,9.0,9.0,27,0.51 +69532,100.0,8.0,8.0,10.0,10.0,10.0,10.0,1,0.15 +68017,71.0,6.0,6.0,8.0,8.0,10.0,6.0,1,0.02 +35208,93.0,10.0,9.0,10.0,10.0,9.0,9.0,16,0.3 +45445,98.0,10.0,10.0,10.0,10.0,10.0,10.0,31,0.59 +75865,99.0,10.0,10.0,10.0,10.0,10.0,10.0,37,0.71 +62859,89.0,9.0,9.0,10.0,10.0,9.0,9.0,136,2.52 +69275,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.34 +8085,92.0,9.0,9.0,10.0,9.0,9.0,9.0,43,0.8 +34331,90.0,9.0,9.0,10.0,9.0,9.0,9.0,25,0.57 +8452,93.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.11 +12571,96.0,10.0,9.0,10.0,10.0,9.0,9.0,18,0.33 +21983,93.0,9.0,10.0,9.0,9.0,9.0,9.0,66,1.33 +19003,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.09 +49771,99.0,10.0,10.0,10.0,10.0,10.0,10.0,37,0.72 +23855,96.0,10.0,9.0,10.0,10.0,10.0,9.0,5,0.12 +32832,95.0,10.0,10.0,10.0,10.0,9.0,9.0,50,0.93 +62187,91.0,9.0,9.0,10.0,10.0,10.0,9.0,54,1.05 +3126,,,,,,,,0, +57180,97.0,10.0,10.0,10.0,10.0,10.0,10.0,154,3.82 +19686,97.0,10.0,10.0,10.0,10.0,10.0,10.0,55,1.22 +775,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +68597,88.0,9.0,9.0,9.0,9.0,9.0,9.0,17,0.32 +20056,92.0,9.0,8.0,10.0,10.0,9.0,9.0,13,0.25 +69850,86.0,9.0,8.0,10.0,10.0,9.0,9.0,63,1.17 +73066,99.0,10.0,10.0,10.0,10.0,10.0,10.0,115,2.15 +40510,95.0,10.0,9.0,10.0,10.0,10.0,9.0,42,2.03 +61335,90.0,9.0,10.0,10.0,9.0,10.0,9.0,17,0.33 +76788,88.0,9.0,9.0,10.0,10.0,9.0,8.0,13,0.25 +15479,99.0,10.0,10.0,10.0,10.0,10.0,10.0,43,0.8 +64366,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +61030,,,,,,,,0, +22029,80.0,10.0,8.0,8.0,8.0,10.0,10.0,1,0.02 +16007,97.0,10.0,10.0,10.0,10.0,9.0,9.0,6,0.11 +51526,91.0,10.0,9.0,10.0,10.0,9.0,9.0,14,0.27 +27844,93.0,9.0,10.0,9.0,9.0,8.0,9.0,11,0.2 +4137,93.0,9.0,9.0,10.0,10.0,9.0,9.0,19,0.89 +13609,92.0,10.0,10.0,9.0,10.0,10.0,9.0,20,0.37 +14551,91.0,9.0,9.0,10.0,10.0,10.0,9.0,113,2.11 +13224,96.0,10.0,10.0,10.0,10.0,10.0,9.0,26,0.52 +17807,,,,,,,,0, +8751,94.0,10.0,10.0,10.0,10.0,9.0,9.0,79,1.52 +43918,92.0,10.0,10.0,9.0,10.0,10.0,9.0,12,0.23 +67466,94.0,10.0,10.0,10.0,10.0,9.0,9.0,25,0.47 +43383,96.0,10.0,9.0,10.0,10.0,9.0,9.0,194,3.61 +39875,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.04 +35461,90.0,9.0,8.0,9.0,10.0,8.0,9.0,23,0.43 +39051,97.0,10.0,9.0,10.0,10.0,10.0,10.0,13,0.3 +20686,93.0,9.0,10.0,10.0,10.0,10.0,9.0,155,2.88 +30060,,,,,,,,0, +22288,88.0,9.0,9.0,10.0,9.0,9.0,9.0,10,0.2 +67455,100.0,9.0,10.0,10.0,10.0,10.0,10.0,21,0.39 +16156,92.0,10.0,10.0,10.0,10.0,9.0,9.0,126,2.34 +11503,93.0,9.0,10.0,10.0,10.0,8.0,9.0,114,2.18 +18319,98.0,10.0,10.0,10.0,10.0,10.0,10.0,20,0.39 +21499,99.0,10.0,10.0,10.0,10.0,10.0,10.0,19,0.7 +25845,95.0,10.0,10.0,10.0,10.0,10.0,9.0,101,1.86 +69084,79.0,8.0,8.0,8.0,8.0,8.0,8.0,27,0.64 +41727,87.0,9.0,7.0,10.0,10.0,9.0,9.0,3,0.06 +65023,,,,,,,,0, +48832,,,,,,,,0, +44963,95.0,10.0,8.0,10.0,10.0,9.0,9.0,4,0.07 +66815,97.0,10.0,10.0,10.0,10.0,9.0,10.0,51,0.95 +66736,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.22 +21805,94.0,10.0,9.0,10.0,10.0,9.0,9.0,43,0.83 +4802,,,,,,,,0, +18104,90.0,9.0,8.0,9.0,9.0,10.0,10.0,4,0.08 +2660,94.0,10.0,10.0,10.0,10.0,10.0,9.0,75,1.38 +75158,91.0,9.0,9.0,9.0,9.0,9.0,9.0,24,0.45 +47125,97.0,10.0,10.0,10.0,10.0,10.0,9.0,62,1.16 +50602,,,,,,,,0, +31040,97.0,9.0,10.0,9.0,10.0,10.0,10.0,6,0.11 +37118,92.0,9.0,9.0,10.0,10.0,9.0,9.0,33,0.61 +37019,93.0,9.0,10.0,10.0,10.0,9.0,9.0,129,2.49 +49929,97.0,10.0,10.0,9.0,10.0,9.0,9.0,8,0.15 +34205,98.0,10.0,10.0,10.0,10.0,10.0,9.0,41,0.82 +61999,89.0,9.0,8.0,8.0,9.0,9.0,10.0,2,0.04 +10232,94.0,10.0,10.0,10.0,10.0,8.0,10.0,109,2.08 +48685,78.0,9.0,9.0,9.0,8.0,9.0,8.0,12,0.22 +55201,88.0,9.0,10.0,9.0,9.0,9.0,8.0,40,0.75 +14331,80.0,9.0,9.0,9.0,9.0,8.0,9.0,4,0.08 +1436,90.0,10.0,10.0,9.0,9.0,9.0,9.0,24,0.45 +73795,80.0,9.0,8.0,9.0,10.0,9.0,9.0,2,0.04 +19188,92.0,10.0,9.0,9.0,10.0,10.0,10.0,5,0.14 +16213,,,,,,,,0, +23408,88.0,9.0,8.0,10.0,9.0,9.0,9.0,95,1.75 +41654,93.0,10.0,9.0,10.0,10.0,10.0,9.0,149,2.94 +60862,98.0,10.0,10.0,10.0,10.0,9.0,10.0,13,0.25 +75978,83.0,10.0,10.0,10.0,10.0,9.0,9.0,6,0.11 +30755,98.0,10.0,9.0,10.0,10.0,9.0,10.0,41,0.76 +76879,96.0,10.0,10.0,10.0,10.0,9.0,9.0,96,2.0 +5513,,,,,,,,0, +45142,,,,,,,,0, +72053,83.0,9.0,8.0,9.0,9.0,8.0,8.0,20,0.38 +74339,88.0,9.0,9.0,9.0,9.0,9.0,9.0,13,0.24 +49085,78.0,8.0,8.0,9.0,9.0,8.0,7.0,21,0.39 +35730,90.0,9.0,9.0,9.0,10.0,8.0,9.0,9,0.17 +67711,85.0,8.0,9.0,9.0,10.0,9.0,8.0,16,0.3 +59913,93.0,10.0,9.0,10.0,10.0,9.0,9.0,23,0.44 +74722,,,,,,,,0, +17584,,,,,,,,0, +27760,99.0,10.0,10.0,10.0,10.0,10.0,10.0,23,0.55 +70085,99.0,10.0,10.0,10.0,10.0,10.0,10.0,24,0.78 +28187,93.0,9.0,9.0,10.0,10.0,10.0,9.0,120,2.26 +24089,93.0,10.0,10.0,10.0,10.0,10.0,9.0,132,2.47 +1463,95.0,10.0,10.0,10.0,10.0,10.0,9.0,79,1.46 +1927,92.0,9.0,9.0,10.0,10.0,9.0,9.0,56,1.04 +49323,90.0,9.0,9.0,10.0,10.0,10.0,9.0,16,0.3 +76520,86.0,9.0,8.0,9.0,9.0,9.0,9.0,185,5.12 +18897,94.0,10.0,10.0,10.0,10.0,10.0,10.0,38,0.71 +15832,93.0,9.0,10.0,10.0,10.0,9.0,9.0,78,1.48 +36286,98.0,10.0,10.0,10.0,10.0,9.0,9.0,9,0.17 +21768,,,,,,,,0, +45437,91.0,10.0,10.0,10.0,10.0,9.0,9.0,140,3.84 +9234,93.0,9.0,10.0,10.0,10.0,9.0,9.0,44,0.82 +31581,92.0,9.0,9.0,10.0,10.0,9.0,9.0,26,0.5 +55589,98.0,10.0,10.0,10.0,10.0,10.0,10.0,83,1.53 +21038,86.0,9.0,8.0,9.0,10.0,8.0,9.0,8,0.46 +21722,97.0,10.0,10.0,10.0,10.0,10.0,9.0,43,0.8 +62308,100.0,9.0,8.0,10.0,10.0,10.0,9.0,2,0.07 +50963,95.0,10.0,9.0,10.0,10.0,10.0,10.0,25,0.8 +38949,96.0,10.0,8.0,10.0,10.0,9.0,10.0,6,0.11 +35969,96.0,10.0,10.0,10.0,10.0,9.0,10.0,92,1.79 +43152,100.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.62 +14657,95.0,9.0,9.0,10.0,10.0,9.0,9.0,27,0.52 +69942,94.0,10.0,9.0,10.0,10.0,8.0,9.0,31,0.57 +5907,90.0,10.0,10.0,9.0,10.0,8.0,10.0,2,0.04 +75850,99.0,10.0,10.0,10.0,10.0,9.0,10.0,16,0.33 +73751,98.0,10.0,10.0,10.0,10.0,10.0,10.0,104,1.97 +72210,,,,,,,,0, +59818,94.0,10.0,10.0,10.0,10.0,9.0,10.0,17,0.33 +73892,,,,,,,,0, +72992,98.0,10.0,10.0,9.0,9.0,10.0,10.0,9,0.18 +11793,90.0,9.0,9.0,9.0,9.0,8.0,9.0,2,0.05 +70897,96.0,10.0,9.0,10.0,10.0,9.0,10.0,11,0.2 +39454,99.0,10.0,9.0,10.0,10.0,10.0,10.0,23,0.43 +56741,,,,,,,,0, +18470,97.0,10.0,10.0,10.0,10.0,9.0,9.0,19,0.37 +33446,,,,,,,,0, +41205,100.0,10.0,9.0,9.0,10.0,9.0,9.0,2,0.04 +4766,,,,,,,,0, +48780,94.0,10.0,9.0,10.0,9.0,9.0,9.0,40,0.75 +62156,100.0,10.0,9.0,10.0,10.0,10.0,9.0,2,0.48 +17280,95.0,10.0,10.0,10.0,10.0,9.0,9.0,105,2.08 +21754,90.0,10.0,9.0,9.0,10.0,9.0,9.0,4,0.08 +44979,94.0,10.0,10.0,10.0,10.0,8.0,9.0,144,2.67 +51770,88.0,9.0,9.0,9.0,10.0,10.0,9.0,206,4.86 +29270,99.0,10.0,10.0,10.0,10.0,9.0,10.0,18,0.35 +18549,89.0,9.0,8.0,9.0,9.0,10.0,9.0,2,0.04 +59778,,,,,,,,0, +58118,96.0,10.0,9.0,10.0,10.0,9.0,9.0,19,0.36 +34573,97.0,10.0,10.0,10.0,10.0,10.0,10.0,82,1.54 +18633,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.13 +22586,98.0,10.0,9.0,10.0,10.0,10.0,10.0,38,0.71 +67282,96.0,10.0,8.0,10.0,10.0,9.0,9.0,11,0.21 +25866,,,,,,,,0, +17874,97.0,10.0,10.0,10.0,10.0,10.0,10.0,43,0.86 +75030,83.0,9.0,8.0,9.0,9.0,9.0,9.0,22,0.41 +45638,84.0,9.0,8.0,9.0,10.0,9.0,9.0,17,0.32 +7468,94.0,10.0,10.0,10.0,10.0,9.0,9.0,36,1.07 +76334,97.0,10.0,10.0,10.0,10.0,10.0,10.0,63,1.16 +52103,70.0,10.0,7.0,9.0,10.0,10.0,9.0,4,0.08 +57449,90.0,9.0,9.0,10.0,10.0,9.0,9.0,51,0.94 +68979,94.0,10.0,9.0,10.0,10.0,10.0,10.0,7,0.14 +43975,,,,,,,,0, +8015,,,,,,,,0, +67099,97.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.23 +37511,60.0,7.0,6.0,10.0,10.0,10.0,6.0,4,0.08 +49495,93.0,10.0,9.0,10.0,10.0,10.0,9.0,10,0.19 +28444,96.0,10.0,9.0,10.0,10.0,9.0,10.0,22,0.49 +62256,90.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.04 +13528,,,,,,,,0, +9771,82.0,9.0,8.0,9.0,9.0,8.0,8.0,146,2.74 +24733,80.0,9.0,7.0,8.0,9.0,9.0,8.0,13,0.27 +36865,90.0,9.0,9.0,10.0,10.0,10.0,9.0,11,0.2 +49774,77.0,9.0,9.0,9.0,8.0,9.0,7.0,7,0.18 +5136,,,,,,,,0, +65186,,,,,,,,0, +34133,72.0,8.0,7.0,10.0,8.0,9.0,7.0,12,0.23 +2309,100.0,10.0,10.0,10.0,10.0,10.0,10.0,20,0.46 +69999,,,,,,,,0, +22387,89.0,9.0,9.0,9.0,9.0,9.0,9.0,49,0.91 +36667,97.0,10.0,10.0,10.0,10.0,9.0,10.0,73,1.36 +17637,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.04 +14193,99.0,10.0,10.0,10.0,10.0,10.0,10.0,55,1.03 +45708,94.0,10.0,10.0,10.0,10.0,9.0,9.0,16,0.3 +26504,,,,,,,,0, +77011,100.0,10.0,10.0,10.0,10.0,9.0,9.0,2,0.04 +34508,,,,,,,,0, +24168,93.0,10.0,10.0,9.0,10.0,10.0,10.0,8,0.53 +72931,97.0,10.0,10.0,10.0,10.0,10.0,10.0,25,0.47 +18834,92.0,10.0,9.0,10.0,10.0,8.0,9.0,7,0.13 +66250,100.0,10.0,10.0,10.0,10.0,10.0,10.0,130,2.5 +54638,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.03 +34103,98.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.28 +54920,93.0,10.0,8.0,10.0,10.0,9.0,9.0,33,0.62 +76516,92.0,10.0,9.0,9.0,9.0,10.0,9.0,76,1.41 +57829,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +32077,98.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.32 +48758,,,,,,,,0, +12603,100.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.02 +19320,95.0,10.0,9.0,10.0,10.0,10.0,9.0,34,0.71 +54631,93.0,10.0,9.0,9.0,10.0,9.0,10.0,3,0.06 +75351,92.0,10.0,9.0,10.0,10.0,9.0,9.0,26,0.49 +47232,96.0,10.0,10.0,10.0,10.0,10.0,9.0,15,0.33 +2528,86.0,8.0,8.0,9.0,10.0,10.0,9.0,8,0.15 +55339,80.0,8.0,8.0,6.0,6.0,8.0,8.0,1,0.02 +21577,100.0,9.0,10.0,10.0,10.0,8.0,10.0,2,0.05 +31316,,,,,,,,0, +40619,63.0,7.0,7.0,8.0,7.0,9.0,7.0,6,0.12 +37005,97.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.27 +10143,,,,,,,,0, +37979,,,,,,,,0, +74251,64.0,8.0,8.0,9.0,8.0,9.0,7.0,11,0.24 +61519,97.0,10.0,10.0,10.0,10.0,10.0,10.0,25,0.92 +6088,93.0,10.0,10.0,9.0,10.0,9.0,9.0,18,0.34 +17908,80.0,8.0,9.0,10.0,8.0,8.0,8.0,9,0.26 +73348,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +35425,98.0,10.0,9.0,10.0,10.0,10.0,9.0,8,0.46 +55013,92.0,9.0,10.0,10.0,10.0,10.0,9.0,56,1.04 +3902,,,,,,,,0, +74518,95.0,10.0,10.0,10.0,10.0,10.0,9.0,52,0.98 +72408,96.0,10.0,9.0,10.0,10.0,10.0,9.0,5,0.1 +12115,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.21 +594,97.0,10.0,10.0,10.0,10.0,9.0,10.0,33,1.48 +41695,86.0,9.0,9.0,10.0,10.0,10.0,9.0,8,0.15 +65934,,,,,,,,0, +6101,94.0,10.0,9.0,10.0,10.0,10.0,9.0,61,1.49 +70529,,,,,,,,0, +15603,94.0,10.0,10.0,10.0,10.0,10.0,9.0,216,4.02 +67858,93.0,9.0,9.0,10.0,10.0,9.0,9.0,241,4.93 +30500,96.0,10.0,9.0,10.0,10.0,9.0,10.0,191,3.61 +76089,,,,,,,,0, +53968,89.0,9.0,8.0,10.0,9.0,9.0,9.0,48,0.89 +19674,92.0,10.0,9.0,10.0,10.0,9.0,9.0,20,0.37 +3309,,,,,,,,0, +42645,91.0,9.0,10.0,10.0,9.0,9.0,9.0,9,0.17 +41276,97.0,10.0,10.0,10.0,9.0,10.0,9.0,6,0.11 +6904,98.0,10.0,10.0,10.0,10.0,10.0,10.0,93,1.74 +13230,80.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.02 +571,86.0,9.0,9.0,9.0,9.0,9.0,9.0,138,2.57 +76926,78.0,7.0,8.0,9.0,9.0,8.0,8.0,56,1.29 +3202,94.0,9.0,9.0,10.0,10.0,10.0,10.0,11,0.22 +42001,96.0,10.0,9.0,10.0,10.0,10.0,9.0,38,0.98 +39035,100.0,10.0,9.0,10.0,10.0,10.0,10.0,6,0.15 +68771,96.0,9.0,8.0,10.0,10.0,9.0,9.0,5,0.09 +70221,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +40332,91.0,10.0,9.0,9.0,10.0,8.0,9.0,7,0.17 +21773,83.0,8.0,8.0,9.0,9.0,9.0,9.0,22,0.45 +34172,,,,,,,,1,0.67 +14869,91.0,9.0,9.0,10.0,9.0,9.0,9.0,35,0.69 +27905,83.0,9.0,7.0,10.0,9.0,9.0,8.0,6,0.11 +58927,95.0,9.0,10.0,10.0,10.0,10.0,9.0,45,0.85 +33338,,,,,,,,0, +51464,85.0,9.0,8.0,9.0,9.0,10.0,8.0,16,0.3 +52364,89.0,9.0,9.0,9.0,9.0,9.0,9.0,24,0.5 +9032,96.0,10.0,9.0,10.0,10.0,10.0,9.0,57,1.06 +58610,,,,,,,,0, +46852,96.0,10.0,10.0,10.0,10.0,9.0,9.0,11,0.21 +66062,96.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.19 +44253,95.0,10.0,10.0,10.0,10.0,10.0,10.0,79,1.81 +32177,87.0,9.0,8.0,10.0,10.0,9.0,9.0,6,0.11 +16749,94.0,10.0,9.0,10.0,10.0,9.0,9.0,31,0.59 +54645,89.0,9.0,9.0,8.0,9.0,10.0,9.0,63,1.29 +14106,94.0,10.0,10.0,10.0,10.0,10.0,10.0,65,1.21 +65396,91.0,10.0,9.0,9.0,9.0,10.0,9.0,27,0.51 +55403,99.0,10.0,10.0,10.0,10.0,10.0,10.0,39,0.73 +51705,,,,,,,,0, +35890,80.0,8.0,8.0,10.0,10.0,8.0,8.0,2,0.05 +54705,85.0,9.0,9.0,9.0,10.0,9.0,9.0,7,0.13 +55290,99.0,10.0,10.0,10.0,10.0,10.0,10.0,267,4.96 +38507,,,,,,,,0, +50744,91.0,9.0,9.0,9.0,9.0,9.0,9.0,148,2.77 +51281,93.0,10.0,9.0,10.0,10.0,9.0,9.0,111,2.07 +13155,94.0,10.0,9.0,10.0,10.0,9.0,9.0,127,2.45 +10790,88.0,9.0,8.0,9.0,10.0,9.0,9.0,29,0.54 +57359,85.0,10.0,8.0,9.0,9.0,9.0,9.0,12,0.23 +32987,,,,,,,,0, +56630,99.0,10.0,10.0,10.0,10.0,10.0,10.0,28,0.53 +44770,95.0,9.0,10.0,10.0,10.0,9.0,9.0,11,0.21 +46471,92.0,9.0,8.0,10.0,10.0,10.0,9.0,46,0.87 +21026,,,,,,,,0, +17654,,,,,,,,0, +63141,80.0,7.0,7.0,8.0,8.0,7.0,8.0,4,0.08 +20592,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.14 +18662,97.0,10.0,10.0,10.0,10.0,9.0,9.0,57,1.53 +35489,96.0,9.0,9.0,10.0,10.0,9.0,9.0,11,0.21 +73841,83.0,9.0,8.0,9.0,10.0,9.0,8.0,14,0.27 +12754,87.0,8.0,7.0,9.0,10.0,8.0,9.0,20,0.37 +76669,95.0,10.0,9.0,10.0,10.0,9.0,10.0,4,0.08 +7483,99.0,10.0,10.0,10.0,10.0,10.0,10.0,29,0.57 +63602,,,,,,,,0, +54186,95.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.08 +66163,,,,,,,,0, +6999,,,,,,,,0, +7175,97.0,10.0,9.0,10.0,10.0,10.0,10.0,7,0.13 +6,87.0,10.0,8.0,10.0,10.0,8.0,10.0,1,0.02 +50850,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.23 +72213,98.0,10.0,10.0,10.0,10.0,10.0,10.0,25,0.76 +9271,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +28029,,,,,,,,0, +58159,100.0,10.0,10.0,10.0,10.0,10.0,9.0,15,0.28 +26907,83.0,8.0,8.0,8.0,10.0,8.0,8.0,1,0.02 +55643,,,,,,,,1,0.03 +39832,96.0,10.0,9.0,10.0,10.0,9.0,9.0,36,0.69 +75970,,,,,,,,0, +5234,96.0,10.0,9.0,10.0,9.0,10.0,9.0,5,0.09 +61525,85.0,9.0,9.0,10.0,10.0,9.0,9.0,11,0.21 +12158,98.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.32 +37920,87.0,9.0,8.0,10.0,10.0,9.0,9.0,17,0.32 +58463,,,,,,,,0, +31182,97.0,9.0,9.0,10.0,10.0,8.0,9.0,7,0.13 +30494,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +20908,91.0,9.0,8.0,9.0,10.0,10.0,9.0,38,0.71 +35846,88.0,8.0,8.0,10.0,10.0,9.0,9.0,6,0.11 +45973,,,,,,,,0, +11129,97.0,10.0,10.0,10.0,10.0,10.0,9.0,62,1.16 +23219,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.08 +26095,95.0,10.0,9.0,10.0,10.0,10.0,9.0,58,1.09 +53595,100.0,10.0,10.0,8.0,10.0,8.0,8.0,2,0.04 +58526,100.0,10.0,8.0,10.0,10.0,8.0,10.0,1,0.03 +74654,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +49428,82.0,8.0,8.0,9.0,9.0,9.0,9.0,10,0.2 +14091,93.0,10.0,10.0,10.0,10.0,10.0,9.0,128,2.39 +41738,90.0,8.0,9.0,9.0,10.0,8.0,10.0,2,0.05 +58271,94.0,9.0,8.0,10.0,10.0,10.0,9.0,20,0.39 +53698,81.0,8.0,8.0,8.0,8.0,9.0,8.0,23,0.44 +12860,100.0,9.0,10.0,10.0,9.0,10.0,10.0,4,0.08 +74259,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.07 +44500,90.0,9.0,9.0,10.0,10.0,9.0,9.0,24,0.45 +64683,97.0,10.0,10.0,10.0,10.0,10.0,10.0,52,0.98 +64452,,,,,,,,0, +46771,95.0,9.0,10.0,9.0,10.0,9.0,9.0,11,0.21 +17803,95.0,10.0,10.0,10.0,10.0,9.0,9.0,120,2.25 +24434,83.0,10.0,8.0,9.0,10.0,9.0,8.0,8,0.15 +58763,94.0,10.0,9.0,10.0,10.0,9.0,9.0,77,1.46 +5438,91.0,9.0,9.0,10.0,10.0,9.0,9.0,37,0.7 +56797,,,,,,,,0, +53529,90.0,9.0,8.0,10.0,10.0,10.0,9.0,39,0.73 +67452,99.0,10.0,10.0,10.0,10.0,10.0,10.0,25,0.47 +73376,100.0,9.0,10.0,10.0,10.0,9.0,9.0,2,0.04 +28500,,,,,,,,0, +67453,96.0,10.0,10.0,10.0,10.0,10.0,10.0,26,0.49 +69691,91.0,10.0,10.0,10.0,9.0,8.0,9.0,9,0.17 +57209,94.0,10.0,10.0,10.0,10.0,9.0,9.0,42,0.83 +9522,73.0,6.0,9.0,9.0,10.0,7.0,7.0,4,0.11 +7199,98.0,10.0,10.0,10.0,10.0,9.0,10.0,32,0.6 +7586,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.08 +73329,97.0,10.0,9.0,10.0,10.0,10.0,10.0,42,0.78 +53166,98.0,10.0,10.0,10.0,10.0,10.0,10.0,276,5.17 +11285,,,,,,,,0, +31086,97.0,10.0,9.0,10.0,10.0,9.0,9.0,54,1.01 +49260,89.0,9.0,9.0,10.0,10.0,9.0,9.0,47,0.92 +35317,98.0,10.0,10.0,10.0,10.0,10.0,10.0,90,2.22 +31977,93.0,9.0,9.0,10.0,10.0,9.0,9.0,46,1.06 +57607,,,,,,,,0, +29916,100.0,10.0,10.0,10.0,10.0,9.0,9.0,2,0.05 +14506,94.0,10.0,9.0,10.0,10.0,9.0,9.0,8,0.28 +27857,95.0,10.0,9.0,10.0,10.0,9.0,9.0,104,1.97 +23416,80.0,9.0,8.0,9.0,9.0,8.0,8.0,45,0.85 +61866,84.0,8.0,9.0,9.0,9.0,9.0,8.0,19,0.36 +75610,90.0,10.0,10.0,9.0,9.0,9.0,8.0,5,0.09 +44878,92.0,10.0,9.0,10.0,10.0,9.0,9.0,66,1.23 +70440,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.18 +54104,92.0,9.0,9.0,10.0,10.0,10.0,9.0,252,4.69 +1119,98.0,10.0,10.0,10.0,10.0,10.0,10.0,44,0.83 +63341,96.0,10.0,9.0,10.0,10.0,10.0,9.0,9,0.17 +65876,94.0,9.0,9.0,10.0,10.0,10.0,9.0,24,0.45 +46096,94.0,9.0,9.0,10.0,10.0,10.0,9.0,38,0.71 +13317,96.0,10.0,9.0,10.0,10.0,9.0,9.0,47,0.9 +14454,97.0,10.0,9.0,9.0,10.0,9.0,10.0,6,0.11 +2691,90.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.1 +32993,,,,,,,,0, +38968,90.0,9.0,9.0,9.0,9.0,9.0,10.0,44,0.83 +37595,99.0,10.0,10.0,10.0,10.0,10.0,10.0,32,0.63 +50951,96.0,10.0,9.0,10.0,10.0,10.0,10.0,22,1.59 +33833,,,,,,,,0, +39473,76.0,8.0,8.0,9.0,8.0,8.0,8.0,5,0.09 +32996,94.0,9.0,10.0,10.0,10.0,10.0,9.0,53,1.0 +23761,98.0,10.0,10.0,10.0,10.0,10.0,10.0,19,0.37 +42599,86.0,9.0,8.0,9.0,10.0,8.0,9.0,8,0.28 +37015,92.0,9.0,9.0,10.0,9.0,9.0,9.0,44,0.84 +10079,97.0,10.0,10.0,10.0,10.0,10.0,10.0,52,0.98 +66720,91.0,9.0,10.0,10.0,10.0,10.0,9.0,285,5.36 +9416,,,,,,,,1,0.03 +822,98.0,10.0,10.0,10.0,10.0,9.0,10.0,20,0.38 +45427,100.0,10.0,10.0,9.0,10.0,10.0,10.0,3,0.06 +75898,100.0,9.0,10.0,9.0,10.0,8.0,10.0,2,0.12 +36177,99.0,10.0,10.0,10.0,10.0,8.0,9.0,16,0.31 +6760,,,,,,,,0, +5117,82.0,9.0,9.0,9.0,9.0,10.0,9.0,45,1.57 +13791,84.0,9.0,9.0,9.0,9.0,9.0,9.0,9,0.2 +13068,100.0,10.0,10.0,10.0,9.0,9.0,10.0,6,0.23 +25577,98.0,10.0,10.0,10.0,10.0,10.0,10.0,60,1.21 +49552,,,,,,,,0, +76712,93.0,9.0,9.0,9.0,9.0,9.0,9.0,30,0.56 +41740,,,,,,,,0, +5557,100.0,9.0,10.0,10.0,10.0,10.0,10.0,4,0.08 +76381,86.0,9.0,8.0,9.0,8.0,9.0,8.0,10,0.19 +75175,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +69576,93.0,10.0,9.0,10.0,10.0,10.0,9.0,19,0.37 +8467,,,,,,,,0, +13947,90.0,9.0,10.0,9.0,9.0,8.0,9.0,2,0.04 +6978,,,,,,,,0, +34177,69.0,7.0,8.0,8.0,8.0,8.0,7.0,8,0.16 +17379,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.18 +10168,98.0,10.0,10.0,10.0,10.0,10.0,10.0,20,0.68 +17934,80.0,8.0,8.0,8.0,10.0,8.0,8.0,1,0.03 +49287,95.0,9.0,9.0,10.0,10.0,9.0,9.0,12,0.22 +47295,93.0,9.0,9.0,10.0,10.0,9.0,9.0,32,0.6 +34285,93.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.1 +60001,99.0,10.0,10.0,10.0,10.0,10.0,10.0,30,1.06 +10724,92.0,9.0,10.0,10.0,10.0,10.0,9.0,15,0.29 +25426,94.0,10.0,9.0,10.0,10.0,10.0,9.0,13,0.45 +55062,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.19 +19644,96.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.8 +75726,96.0,10.0,9.0,10.0,10.0,10.0,10.0,11,0.22 +42657,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.28 +17187,93.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.11 +36979,,,,,,,,0, +36819,,,,,,,,0, +9988,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.16 +26968,96.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.15 +72023,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.81 +50990,,,,,,,,0, +11666,93.0,9.0,9.0,9.0,10.0,10.0,9.0,3,0.69 +54619,,,,,,,,0, +66789,97.0,10.0,10.0,10.0,10.0,9.0,10.0,12,0.24 +64556,88.0,9.0,8.0,10.0,10.0,9.0,9.0,83,1.62 +8710,95.0,10.0,9.0,10.0,10.0,9.0,9.0,9,0.18 +16866,80.0,9.0,9.0,10.0,10.0,9.0,8.0,3,0.3 +26246,98.0,10.0,10.0,10.0,10.0,10.0,10.0,162,3.04 +64932,94.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.28 +38493,97.0,10.0,10.0,10.0,10.0,9.0,10.0,12,0.22 +32721,,,,,,,,0, +9952,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.08 +61916,92.0,10.0,9.0,10.0,10.0,9.0,9.0,23,0.44 +72159,96.0,10.0,10.0,10.0,10.0,10.0,10.0,21,0.4 +13736,75.0,9.0,8.0,9.0,10.0,8.0,8.0,4,0.09 +47269,90.0,8.0,9.0,9.0,9.0,10.0,9.0,3,0.06 +68542,,,,,,,,0, +54089,87.0,8.0,8.0,9.0,9.0,9.0,9.0,9,0.17 +74168,97.0,10.0,9.0,10.0,10.0,9.0,10.0,15,0.34 +63707,97.0,10.0,10.0,10.0,10.0,10.0,10.0,23,0.46 +8087,100.0,10.0,9.0,10.0,10.0,10.0,9.0,3,0.06 +56196,91.0,9.0,9.0,10.0,10.0,9.0,9.0,22,0.53 +414,95.0,10.0,9.0,10.0,10.0,9.0,10.0,4,0.08 +67502,93.0,9.0,10.0,10.0,10.0,10.0,9.0,6,0.11 +65521,99.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.32 +67712,89.0,9.0,9.0,9.0,10.0,10.0,9.0,20,0.42 +48599,,,,,,,,0, +34889,,,,,,,,0, +5640,93.0,10.0,9.0,10.0,10.0,9.0,9.0,66,1.63 +13292,83.0,9.0,8.0,9.0,9.0,9.0,9.0,68,1.29 +48883,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +8898,97.0,9.0,10.0,10.0,10.0,10.0,10.0,7,0.26 +42431,95.0,10.0,9.0,10.0,10.0,10.0,10.0,81,1.55 +6022,,,,,,,,0, +23639,,,,,,,,0, +7075,95.0,10.0,9.0,10.0,10.0,10.0,10.0,110,2.08 +44919,,,,,,,,0, +36896,90.0,9.0,10.0,10.0,10.0,9.0,9.0,21,0.4 +2009,80.0,10.0,10.0,10.0,10.0,10.0,8.0,2,0.39 +37088,96.0,9.0,9.0,10.0,10.0,8.0,9.0,5,0.12 +8728,87.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.1 +70386,85.0,9.0,8.0,10.0,10.0,9.0,10.0,8,0.19 +68565,90.0,9.0,6.0,10.0,10.0,9.0,9.0,8,0.15 +2441,86.0,9.0,9.0,9.0,9.0,10.0,8.0,18,0.34 +52904,98.0,10.0,9.0,10.0,10.0,9.0,10.0,10,0.23 +55158,,,,,,,,0, +29319,97.0,10.0,10.0,10.0,10.0,9.0,10.0,173,3.35 +5075,95.0,10.0,9.0,10.0,10.0,9.0,9.0,16,0.91 +16361,100.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.31 +38489,99.0,10.0,10.0,10.0,10.0,10.0,10.0,22,0.43 +54055,,,,,,,,0, +36288,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.06 +51289,93.0,9.0,9.0,10.0,10.0,9.0,9.0,70,1.33 +1407,90.0,9.0,9.0,10.0,9.0,10.0,9.0,31,0.64 +56717,,,,,,,,0, +72042,97.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.53 +67504,,,,,,,,0, +13422,98.0,10.0,10.0,10.0,10.0,9.0,10.0,141,2.65 +64792,93.0,10.0,9.0,10.0,10.0,9.0,9.0,28,0.53 +32770,93.0,9.0,9.0,10.0,10.0,9.0,10.0,9,0.23 +37668,97.0,10.0,10.0,10.0,10.0,10.0,10.0,23,0.46 +4201,95.0,10.0,10.0,10.0,9.0,10.0,9.0,57,1.08 +31462,,,,,,,,0, +54613,88.0,9.0,9.0,9.0,9.0,9.0,9.0,50,0.95 +48045,91.0,10.0,8.0,10.0,9.0,10.0,9.0,53,1.03 +57632,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +24784,98.0,10.0,10.0,10.0,10.0,10.0,10.0,112,2.15 +55033,91.0,9.0,8.0,9.0,9.0,8.0,9.0,7,0.13 +1620,99.0,10.0,10.0,10.0,10.0,10.0,10.0,217,12.59 +12579,93.0,10.0,10.0,10.0,10.0,10.0,9.0,13,0.25 +30785,98.0,10.0,9.0,10.0,10.0,9.0,10.0,8,0.15 +8816,94.0,10.0,10.0,10.0,10.0,10.0,10.0,73,1.4 +32207,,,,,,,,0, +1038,90.0,9.0,8.0,10.0,10.0,10.0,9.0,6,0.13 +44890,92.0,10.0,9.0,10.0,10.0,10.0,9.0,202,3.83 +51728,,,,,,,,0, +20339,94.0,10.0,9.0,10.0,10.0,9.0,9.0,153,2.95 +38185,87.0,9.0,9.0,10.0,10.0,10.0,9.0,22,0.42 +65849,,,,,,,,1,0.02 +60775,88.0,9.0,8.0,9.0,10.0,9.0,9.0,44,1.05 +28068,85.0,9.0,8.0,9.0,9.0,9.0,8.0,52,0.98 +27587,85.0,8.0,9.0,10.0,10.0,9.0,9.0,4,0.1 +55255,99.0,10.0,10.0,10.0,10.0,9.0,10.0,99,1.89 +2123,92.0,10.0,9.0,9.0,9.0,10.0,9.0,15,0.28 +4899,91.0,10.0,9.0,10.0,10.0,9.0,9.0,47,0.88 +61279,99.0,10.0,10.0,10.0,10.0,9.0,10.0,42,1.39 +71879,90.0,9.0,8.0,10.0,10.0,10.0,9.0,3,0.19 +46456,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.04 +55570,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.1 +67584,,,,,,,,0, +14237,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,1.67 +25486,,,,,,,,0, +57509,93.0,9.0,9.0,10.0,10.0,9.0,9.0,39,1.1 +58305,95.0,10.0,10.0,10.0,10.0,10.0,9.0,176,3.4 +68435,96.0,10.0,9.0,10.0,10.0,10.0,9.0,33,0.63 +25650,98.0,10.0,10.0,10.0,10.0,10.0,9.0,42,0.79 +47875,97.0,10.0,10.0,10.0,10.0,10.0,10.0,53,1.03 +10669,96.0,10.0,10.0,10.0,10.0,9.0,10.0,37,0.71 +65064,88.0,9.0,9.0,9.0,9.0,10.0,9.0,57,1.21 +27545,60.0,8.0,2.0,10.0,10.0,8.0,4.0,1,0.02 +5279,96.0,10.0,10.0,10.0,10.0,9.0,9.0,6,0.11 +10175,98.0,10.0,10.0,10.0,10.0,9.0,10.0,17,0.32 +30157,80.0,8.0,9.0,8.0,8.0,8.0,9.0,5,0.1 +25207,96.0,9.0,10.0,10.0,10.0,10.0,10.0,16,0.31 +47188,89.0,9.0,9.0,10.0,10.0,10.0,10.0,9,0.18 +76652,92.0,9.0,9.0,10.0,10.0,9.0,9.0,51,0.97 +55827,96.0,10.0,9.0,10.0,10.0,9.0,9.0,61,1.17 +30653,98.0,10.0,10.0,10.0,10.0,9.0,10.0,84,1.6 +34218,94.0,9.0,10.0,10.0,10.0,10.0,9.0,171,3.25 +6021,96.0,10.0,9.0,10.0,9.0,9.0,9.0,6,0.11 +41670,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.04 +42367,90.0,9.0,9.0,10.0,10.0,10.0,9.0,47,0.97 +14082,93.0,10.0,9.0,10.0,10.0,10.0,10.0,9,0.17 +68897,93.0,10.0,9.0,10.0,10.0,9.0,10.0,27,0.53 +39130,87.0,8.0,7.0,9.0,9.0,7.0,8.0,3,0.47 +20034,83.0,8.0,9.0,9.0,8.0,8.0,9.0,83,1.7 +40094,93.0,10.0,9.0,10.0,10.0,10.0,9.0,208,4.04 +67875,97.0,10.0,10.0,10.0,10.0,9.0,10.0,43,0.85 +70731,92.0,10.0,9.0,10.0,10.0,9.0,9.0,44,0.86 +478,93.0,10.0,10.0,10.0,10.0,9.0,9.0,79,1.53 +5289,,,,,,,,0, +38263,96.0,10.0,9.0,10.0,10.0,9.0,10.0,18,1.06 +11389,,,,,,,,0, +58962,94.0,10.0,9.0,10.0,10.0,10.0,10.0,156,2.95 +26519,94.0,9.0,10.0,9.0,9.0,9.0,10.0,10,0.32 +19102,,,,,,,,0, +30040,81.0,9.0,8.0,9.0,10.0,10.0,8.0,21,0.41 +17377,,,,,,,,2,0.05 +45083,80.0,,,,,,,1,0.03 +63397,,,,,,,,1,0.03 +14761,96.0,10.0,10.0,10.0,10.0,10.0,10.0,54,1.18 +7480,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.64 +35521,97.0,10.0,10.0,10.0,10.0,10.0,9.0,28,0.64 +39268,90.0,10.0,8.0,10.0,10.0,9.0,10.0,3,0.06 +761,100.0,10.0,10.0,9.0,10.0,9.0,10.0,5,0.09 +13851,96.0,10.0,10.0,10.0,10.0,9.0,10.0,16,0.31 +6584,99.0,10.0,10.0,10.0,10.0,10.0,10.0,30,1.01 +15746,98.0,10.0,10.0,10.0,10.0,10.0,10.0,21,0.7 +27000,,,,,,,,0, +75526,97.0,10.0,10.0,10.0,10.0,9.0,9.0,46,0.88 +54802,98.0,10.0,9.0,10.0,10.0,10.0,10.0,38,1.0 +61392,80.0,8.0,10.0,10.0,10.0,8.0,8.0,1,0.03 +25408,96.0,10.0,10.0,10.0,10.0,9.0,9.0,103,1.95 +60180,98.0,10.0,9.0,10.0,10.0,10.0,10.0,25,0.47 +42685,,,,,,,,0, +26046,85.0,9.0,8.0,9.0,9.0,9.0,8.0,21,0.42 +56063,88.0,9.0,9.0,10.0,9.0,10.0,9.0,27,3.14 +29530,100.0,10.0,10.0,10.0,10.0,8.0,10.0,6,0.11 +33234,85.0,10.0,9.0,9.0,10.0,10.0,10.0,5,0.12 +50599,90.0,10.0,9.0,9.0,9.0,8.0,9.0,2,0.04 +33663,90.0,9.0,8.0,9.0,10.0,8.0,9.0,3,0.14 +34332,89.0,9.0,9.0,9.0,9.0,9.0,9.0,40,0.78 +53881,90.0,9.0,9.0,10.0,10.0,10.0,9.0,25,0.47 +36845,96.0,10.0,10.0,10.0,10.0,10.0,9.0,112,2.11 +26588,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.04 +12480,,,,,,,,0, +42779,,,,,,,,0, +23196,89.0,10.0,9.0,9.0,10.0,8.0,9.0,39,0.74 +66602,95.0,10.0,10.0,10.0,10.0,9.0,9.0,45,0.97 +488,89.0,9.0,9.0,10.0,10.0,9.0,9.0,42,0.86 +38386,80.0,8.0,8.0,8.0,8.0,8.0,8.0,6,0.14 +36392,93.0,9.0,10.0,10.0,10.0,9.0,9.0,58,1.1 +4570,83.0,8.0,9.0,10.0,8.0,10.0,9.0,13,0.27 +1657,97.0,10.0,10.0,10.0,10.0,10.0,10.0,34,1.19 +54546,85.0,9.0,9.0,9.0,9.0,9.0,9.0,19,0.37 +13255,91.0,10.0,10.0,10.0,10.0,9.0,9.0,29,0.61 +61674,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.19 +29240,90.0,9.0,9.0,10.0,10.0,10.0,9.0,4,0.08 +43606,97.0,10.0,10.0,10.0,10.0,10.0,9.0,109,2.15 +62565,96.0,10.0,10.0,10.0,10.0,10.0,10.0,81,1.54 +70229,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.08 +75697,93.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.06 +34643,,,,,,,,0, +58951,91.0,9.0,9.0,10.0,10.0,10.0,9.0,306,5.93 +62961,98.0,10.0,10.0,10.0,10.0,9.0,10.0,81,1.57 +8054,,,,,,,,0, +561,96.0,10.0,10.0,10.0,10.0,9.0,10.0,19,0.62 +11672,95.0,9.0,9.0,10.0,10.0,10.0,9.0,34,0.65 +18299,88.0,9.0,9.0,9.0,9.0,10.0,9.0,27,0.51 +20957,88.0,9.0,9.0,10.0,10.0,9.0,9.0,12,0.23 +2504,89.0,9.0,9.0,10.0,10.0,10.0,9.0,21,0.4 +34062,89.0,9.0,9.0,10.0,10.0,10.0,9.0,17,0.43 +4916,87.0,9.0,9.0,9.0,9.0,9.0,9.0,11,0.21 +64083,92.0,9.0,9.0,10.0,9.0,10.0,9.0,19,0.43 +21580,90.0,9.0,9.0,9.0,10.0,10.0,9.0,45,0.85 +22729,93.0,10.0,9.0,10.0,10.0,9.0,9.0,9,0.17 +67149,,,,,,,,0, +216,93.0,10.0,10.0,9.0,10.0,9.0,9.0,3,0.08 +739,92.0,9.0,9.0,10.0,10.0,10.0,9.0,33,0.9 +26602,98.0,10.0,10.0,10.0,10.0,10.0,10.0,101,1.95 +15249,,,,,,,,0, +7540,97.0,10.0,10.0,10.0,10.0,9.0,9.0,24,0.47 +12014,100.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.3 +55191,100.0,10.0,8.0,10.0,10.0,9.0,9.0,2,0.05 +6077,81.0,9.0,7.0,9.0,9.0,9.0,9.0,32,0.61 +76460,,,,,,,,0, +75805,92.0,9.0,9.0,9.0,9.0,9.0,9.0,20,0.38 +70101,90.0,10.0,10.0,10.0,10.0,9.0,9.0,12,0.4 +32938,94.0,10.0,9.0,10.0,10.0,10.0,9.0,234,4.63 +68105,74.0,8.0,7.0,9.0,9.0,9.0,8.0,56,1.06 +40534,85.0,9.0,8.0,9.0,9.0,9.0,9.0,117,2.21 +31572,,,,,,,,0, +44966,71.0,7.0,5.0,10.0,10.0,10.0,7.0,8,0.19 +70674,95.0,10.0,9.0,9.0,10.0,10.0,10.0,105,2.07 +14651,85.0,9.0,9.0,9.0,9.0,9.0,9.0,34,0.7 +75656,99.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.96 +44496,87.0,8.0,8.0,9.0,9.0,9.0,9.0,39,0.74 +57971,,,,,,,,0, +47538,97.0,10.0,10.0,10.0,10.0,9.0,9.0,18,0.34 +75316,,,,,,,,0, +36202,100.0,10.0,9.0,10.0,10.0,10.0,10.0,9,0.23 +47207,80.0,8.0,8.0,10.0,8.0,10.0,8.0,1,0.03 +73026,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.1 +1062,100.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +27284,88.0,9.0,9.0,9.0,10.0,10.0,9.0,53,1.25 +51975,97.0,10.0,10.0,10.0,10.0,9.0,9.0,83,1.57 +44854,84.0,8.0,9.0,10.0,10.0,8.0,9.0,5,0.16 +12233,97.0,10.0,9.0,10.0,10.0,10.0,9.0,15,0.29 +35408,96.0,10.0,10.0,10.0,10.0,9.0,10.0,223,4.33 +39888,97.0,10.0,10.0,10.0,10.0,10.0,10.0,63,1.25 +10992,91.0,9.0,9.0,10.0,10.0,9.0,9.0,193,3.78 +25773,100.0,10.0,10.0,10.0,10.0,9.0,9.0,7,0.5 +46091,93.0,10.0,10.0,9.0,10.0,9.0,9.0,87,1.65 +7038,98.0,10.0,10.0,10.0,10.0,10.0,10.0,78,1.53 +62285,99.0,10.0,10.0,10.0,10.0,9.0,10.0,24,0.5 +4380,92.0,10.0,9.0,9.0,9.0,9.0,9.0,11,0.21 +54795,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.25 +58696,,,,,,,,0, +43722,,,,,,,,0, +73127,80.0,9.0,7.0,10.0,9.0,9.0,9.0,3,0.06 +31103,98.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.31 +64250,98.0,10.0,10.0,10.0,9.0,10.0,10.0,43,1.35 +18316,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.15 +67139,93.0,10.0,9.0,10.0,10.0,9.0,10.0,20,0.57 +23723,100.0,10.0,10.0,10.0,10.0,8.0,9.0,5,0.1 +68327,95.0,10.0,9.0,10.0,10.0,10.0,9.0,140,2.76 +69372,96.0,10.0,10.0,10.0,10.0,10.0,9.0,24,0.46 +13655,85.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.09 +10770,93.0,9.0,9.0,10.0,10.0,10.0,9.0,8,0.15 +29809,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.16 +71907,99.0,10.0,10.0,10.0,10.0,10.0,9.0,27,0.52 +55696,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.04 +56793,96.0,10.0,9.0,10.0,9.0,10.0,10.0,5,0.1 +2068,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.06 +12649,,,,,,,,0, +29026,93.0,10.0,10.0,10.0,10.0,9.0,9.0,250,4.88 +68288,90.0,10.0,10.0,10.0,10.0,9.0,9.0,2,0.04 +15477,76.0,8.0,7.0,9.0,9.0,8.0,8.0,5,0.1 +18635,99.0,10.0,10.0,10.0,10.0,9.0,10.0,94,1.8 +1133,,,,,,,,0, +56718,92.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.13 +36249,93.0,9.0,9.0,10.0,10.0,9.0,9.0,56,1.07 +72171,93.0,9.0,9.0,10.0,10.0,9.0,9.0,65,1.28 +56285,96.0,10.0,10.0,10.0,10.0,9.0,10.0,188,3.61 +15055,88.0,9.0,8.0,10.0,10.0,10.0,9.0,31,0.92 +50552,,,,,,,,0, +65331,100.0,10.0,10.0,10.0,10.0,9.0,9.0,2,0.04 +26365,93.0,9.0,10.0,10.0,10.0,9.0,9.0,38,0.74 +63222,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.08 +6926,98.0,10.0,10.0,10.0,10.0,9.0,10.0,46,0.89 +52870,95.0,9.0,9.0,10.0,10.0,9.0,9.0,26,0.5 +65422,88.0,10.0,8.0,10.0,10.0,9.0,9.0,28,1.03 +16822,88.0,9.0,9.0,10.0,10.0,9.0,9.0,24,0.46 +6532,91.0,9.0,9.0,9.0,9.0,9.0,9.0,176,3.41 +42738,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.21 +36074,96.0,10.0,9.0,10.0,10.0,10.0,10.0,10,1.35 +14338,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.18 +65812,92.0,10.0,8.0,9.0,10.0,10.0,9.0,5,0.12 +27078,,,,,,,,0, +69516,98.0,10.0,10.0,10.0,10.0,10.0,10.0,83,1.62 +35136,96.0,10.0,9.0,10.0,10.0,10.0,10.0,19,0.47 +58833,100.0,10.0,10.0,10.0,10.0,10.0,8.0,4,0.29 +32213,87.0,9.0,9.0,9.0,9.0,10.0,9.0,12,0.23 +56910,97.0,10.0,10.0,10.0,10.0,9.0,10.0,65,1.25 +27651,78.0,8.0,8.0,9.0,9.0,10.0,8.0,12,0.25 +22569,95.0,10.0,9.0,9.0,9.0,10.0,9.0,30,0.6 +4228,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +61105,,,,,,,,0, +31843,,,,,,,,0, +57565,98.0,10.0,9.0,10.0,10.0,10.0,9.0,11,0.31 +33675,85.0,9.0,8.0,9.0,9.0,10.0,8.0,26,0.51 +69596,90.0,10.0,9.0,9.0,10.0,10.0,10.0,5,0.1 +1640,90.0,9.0,10.0,9.0,8.0,8.0,10.0,2,0.04 +40887,,,,,,,,0, +27949,90.0,9.0,9.0,10.0,10.0,10.0,9.0,10,0.22 +70156,92.0,10.0,10.0,10.0,10.0,9.0,9.0,176,3.42 +24601,91.0,9.0,10.0,10.0,10.0,9.0,9.0,68,1.32 +39841,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.08 +33560,80.0,8.0,8.0,9.0,9.0,9.0,8.0,37,0.72 +30394,94.0,10.0,10.0,9.0,10.0,10.0,9.0,29,0.56 +51983,94.0,10.0,9.0,10.0,10.0,9.0,9.0,43,0.84 +17195,97.0,10.0,10.0,10.0,10.0,10.0,10.0,26,0.5 +69508,,,,,,,,0, +28099,99.0,10.0,10.0,10.0,10.0,10.0,10.0,143,2.7 +47596,90.0,9.0,9.0,10.0,8.0,8.0,8.0,2,0.04 +24500,84.0,10.0,9.0,8.0,9.0,9.0,8.0,5,0.1 +9845,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.15 +61223,93.0,10.0,10.0,9.0,10.0,8.0,9.0,257,4.99 +34224,87.0,9.0,8.0,9.0,10.0,9.0,9.0,156,3.82 +11984,98.0,10.0,10.0,10.0,10.0,9.0,10.0,9,0.17 +48536,97.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.38 +69538,,,,,,,,0, +72060,,,,,,,,0, +19264,91.0,10.0,9.0,10.0,10.0,9.0,10.0,16,0.35 +26013,,,,,,,,0, +8684,,,,,,,,0, +46289,93.0,10.0,9.0,9.0,9.0,9.0,10.0,9,0.17 +46971,100.0,10.0,10.0,9.0,10.0,10.0,10.0,3,0.06 +28204,94.0,10.0,9.0,10.0,10.0,9.0,9.0,53,1.03 +52427,96.0,10.0,10.0,10.0,10.0,10.0,10.0,77,1.56 +10658,87.0,9.0,8.0,10.0,10.0,9.0,9.0,34,0.65 +34201,,,,,,,,0, +64618,97.0,10.0,10.0,10.0,10.0,10.0,9.0,23,0.53 +56298,,,,,,,,0, +10941,96.0,10.0,10.0,10.0,10.0,10.0,9.0,66,1.3 +64418,,,,,,,,0, +45897,86.0,9.0,7.0,10.0,10.0,9.0,9.0,35,0.67 +54951,97.0,9.0,10.0,10.0,10.0,10.0,10.0,35,0.67 +50894,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.11 +8736,96.0,9.0,9.0,10.0,10.0,10.0,9.0,59,1.15 +59053,89.0,9.0,9.0,9.0,9.0,9.0,9.0,50,0.97 +63889,80.0,8.0,6.0,10.0,10.0,9.0,8.0,6,0.11 +47684,97.0,10.0,10.0,10.0,10.0,10.0,9.0,60,1.21 +5630,95.0,10.0,9.0,10.0,10.0,9.0,9.0,16,0.33 +28598,92.0,9.0,9.0,10.0,9.0,9.0,9.0,99,2.39 +405,87.0,9.0,8.0,9.0,10.0,9.0,9.0,4,0.08 +32137,97.0,10.0,10.0,10.0,10.0,10.0,10.0,87,1.66 +51441,40.0,8.0,4.0,9.0,10.0,10.0,5.0,2,0.04 +56086,91.0,9.0,10.0,10.0,10.0,10.0,9.0,165,3.15 +39582,80.0,6.0,8.0,10.0,10.0,6.0,8.0,3,0.07 +7142,,,,,,,,0, +23628,96.0,10.0,9.0,10.0,10.0,10.0,9.0,55,1.07 +48116,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.17 +66281,88.0,9.0,8.0,9.0,10.0,9.0,8.0,13,0.25 +46237,77.0,10.0,7.0,10.0,10.0,9.0,8.0,9,0.19 +7703,80.0,8.0,6.0,6.0,10.0,8.0,8.0,2,0.05 +72435,94.0,10.0,10.0,10.0,10.0,9.0,9.0,23,0.45 +43225,76.0,8.0,9.0,8.0,8.0,7.0,8.0,37,0.71 +13243,96.0,10.0,9.0,10.0,10.0,10.0,9.0,148,2.86 +4013,99.0,10.0,10.0,10.0,10.0,9.0,10.0,31,0.7 +30105,82.0,8.0,9.0,9.0,8.0,8.0,8.0,34,0.66 +40874,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.13 +22013,100.0,10.0,10.0,10.0,10.0,8.0,8.0,2,0.36 +18151,99.0,10.0,10.0,10.0,10.0,10.0,10.0,115,2.82 +61080,,,,,,,,0, +70437,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +3334,90.0,8.0,10.0,10.0,10.0,4.0,5.0,2,0.05 +62923,,,,,,,,0, +67409,95.0,10.0,10.0,10.0,10.0,9.0,10.0,225,5.04 +27214,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +66601,97.0,10.0,10.0,10.0,10.0,10.0,10.0,37,0.72 +69014,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.11 +53020,96.0,10.0,9.0,10.0,10.0,10.0,9.0,29,0.65 +14574,93.0,10.0,9.0,10.0,10.0,10.0,9.0,16,0.33 +71930,98.0,10.0,10.0,10.0,10.0,10.0,10.0,21,0.74 +33332,96.0,10.0,10.0,10.0,10.0,10.0,9.0,115,2.92 +31297,89.0,9.0,9.0,9.0,9.0,10.0,9.0,19,0.56 +6067,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +57006,93.0,10.0,9.0,10.0,10.0,9.0,9.0,10,0.25 +60720,96.0,10.0,9.0,10.0,10.0,9.0,10.0,22,0.59 +60161,94.0,10.0,9.0,9.0,9.0,10.0,9.0,20,0.39 +10656,,,,,,,,0, +66521,40.0,8.0,2.0,10.0,10.0,8.0,8.0,1,0.03 +25848,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.04 +22367,94.0,10.0,10.0,10.0,10.0,9.0,9.0,78,1.48 +67269,90.0,10.0,10.0,9.0,10.0,10.0,10.0,5,0.1 +75444,90.0,8.0,9.0,9.0,9.0,9.0,9.0,6,0.12 +6246,,,,,,,,0, +21551,,,,,,,,0, +54766,90.0,9.0,10.0,10.0,9.0,9.0,8.0,2,0.08 +42615,,,,,,,,0, +32636,,,,,,,,0, +58952,87.0,9.0,9.0,10.0,9.0,9.0,9.0,216,4.13 +58356,82.0,9.0,8.0,9.0,9.0,9.0,9.0,25,0.51 +54079,98.0,10.0,10.0,10.0,10.0,10.0,10.0,28,0.55 +67530,90.0,9.0,9.0,10.0,10.0,9.0,9.0,8,0.16 +30204,95.0,9.0,9.0,10.0,10.0,10.0,9.0,4,0.08 +65454,96.0,9.0,9.0,9.0,10.0,9.0,9.0,23,0.47 +38529,93.0,9.0,8.0,10.0,10.0,9.0,9.0,17,0.33 +64055,,,,,,,,0, +70266,,,,,,,,0, +49906,93.0,10.0,10.0,10.0,10.0,9.0,9.0,111,2.21 +60405,88.0,9.0,8.0,8.0,8.0,9.0,9.0,17,0.33 +30781,,,,,,,,0, +74137,,,,,,,,0, +17578,99.0,10.0,10.0,10.0,10.0,10.0,10.0,21,1.19 +66383,90.0,10.0,9.0,10.0,10.0,9.0,9.0,3,0.07 +18344,88.0,9.0,8.0,9.0,9.0,9.0,9.0,13,0.25 +3458,82.0,9.0,8.0,9.0,9.0,9.0,9.0,97,1.91 +38064,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.19 +65805,97.0,10.0,10.0,10.0,10.0,9.0,9.0,14,0.33 +1411,93.0,9.0,9.0,9.0,9.0,9.0,9.0,79,1.59 +69093,94.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.14 +64414,92.0,9.0,8.0,10.0,10.0,10.0,10.0,13,0.25 +73263,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.22 +12105,,,,,,,,0, +51323,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.04 +9989,94.0,10.0,10.0,10.0,10.0,10.0,9.0,10,0.19 +36932,96.0,9.0,9.0,10.0,10.0,10.0,10.0,10,0.23 +71593,100.0,10.0,10.0,10.0,10.0,10.0,10.0,38,2.48 +28960,99.0,10.0,10.0,10.0,10.0,10.0,10.0,57,1.09 +55736,94.0,9.0,9.0,9.0,10.0,9.0,9.0,10,0.2 +15694,80.0,9.0,9.0,9.0,9.0,9.0,9.0,3,0.07 +71856,99.0,10.0,10.0,10.0,10.0,10.0,10.0,82,1.58 +27092,98.0,10.0,10.0,10.0,10.0,9.0,10.0,49,2.24 +3889,84.0,9.0,7.0,9.0,9.0,9.0,8.0,23,0.44 +23460,97.0,10.0,9.0,10.0,10.0,10.0,10.0,13,0.27 +47944,96.0,10.0,9.0,9.0,10.0,10.0,10.0,16,0.31 +5874,90.0,9.0,9.0,10.0,10.0,10.0,9.0,165,3.16 +32644,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.06 +41300,98.0,10.0,10.0,10.0,10.0,10.0,10.0,150,2.9 +34419,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.08 +39366,92.0,9.0,9.0,9.0,8.0,10.0,9.0,21,0.7 +4904,100.0,9.0,10.0,10.0,10.0,8.0,10.0,3,1.05 +71350,90.0,10.0,10.0,10.0,10.0,8.0,9.0,3,0.18 +3987,93.0,9.0,9.0,9.0,10.0,10.0,9.0,10,0.19 +41536,87.0,9.0,8.0,9.0,9.0,9.0,8.0,10,0.19 +73839,99.0,10.0,10.0,10.0,10.0,10.0,10.0,21,1.89 +35147,98.0,10.0,10.0,10.0,10.0,10.0,10.0,149,2.84 +9366,90.0,9.0,9.0,10.0,10.0,9.0,9.0,28,0.82 +48190,91.0,10.0,9.0,9.0,9.0,10.0,9.0,12,0.23 +7200,,,,,,,,0, +62445,92.0,10.0,9.0,10.0,10.0,9.0,9.0,10,0.25 +58171,96.0,10.0,10.0,10.0,9.0,9.0,10.0,7,0.16 +76285,,,,,,,,1,0.08 +37874,90.0,10.0,8.0,9.0,10.0,8.0,9.0,8,0.16 +56951,87.0,9.0,8.0,9.0,9.0,9.0,8.0,12,0.23 +14428,96.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.13 +19605,88.0,9.0,10.0,10.0,10.0,9.0,9.0,23,0.54 +66132,95.0,9.0,10.0,10.0,10.0,9.0,9.0,13,0.29 +25497,94.0,10.0,10.0,10.0,10.0,10.0,10.0,481,9.38 +62860,93.0,10.0,9.0,10.0,10.0,9.0,9.0,62,1.19 +33948,,,,,,,,0, +73353,95.0,10.0,10.0,10.0,9.0,10.0,9.0,22,0.43 +41714,,,,,,,,0, +59886,99.0,10.0,10.0,10.0,10.0,9.0,9.0,20,0.38 +12060,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.1 +73589,,,,,,,,0, +37400,98.0,10.0,10.0,10.0,10.0,10.0,10.0,165,3.29 +8685,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +50200,96.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.23 +22222,90.0,9.0,10.0,10.0,10.0,8.0,9.0,22,0.44 +25572,85.0,9.0,9.0,9.0,9.0,8.0,9.0,11,0.22 +68448,94.0,9.0,9.0,10.0,10.0,10.0,9.0,34,0.87 +20174,87.0,9.0,8.0,9.0,10.0,9.0,9.0,35,0.72 +376,76.0,9.0,7.0,9.0,8.0,9.0,8.0,118,2.26 +20717,94.0,10.0,10.0,10.0,10.0,9.0,10.0,35,0.68 +47727,89.0,9.0,9.0,10.0,10.0,9.0,9.0,136,2.74 +30242,99.0,10.0,10.0,10.0,10.0,9.0,10.0,90,1.72 +35065,96.0,10.0,10.0,10.0,10.0,9.0,9.0,60,1.18 +6277,,,,,,,,0, +36802,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.06 +10634,92.0,10.0,10.0,9.0,10.0,9.0,9.0,13,0.29 +57870,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.08 +32760,100.0,10.0,9.0,9.0,10.0,10.0,10.0,2,0.04 +313,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.1 +56562,93.0,10.0,9.0,9.0,9.0,10.0,10.0,4,0.16 +74781,96.0,10.0,10.0,10.0,10.0,10.0,9.0,67,1.32 +69773,80.0,10.0,8.0,10.0,10.0,6.0,8.0,2,0.04 +14000,87.0,9.0,9.0,10.0,9.0,9.0,9.0,31,0.72 +21751,94.0,10.0,10.0,10.0,10.0,9.0,9.0,16,0.37 +69972,93.0,10.0,9.0,10.0,10.0,9.0,9.0,16,0.31 +71630,92.0,10.0,9.0,10.0,10.0,10.0,10.0,222,4.29 +64875,88.0,9.0,9.0,10.0,10.0,9.0,9.0,12,0.24 +1111,92.0,9.0,9.0,10.0,10.0,9.0,9.0,61,1.2 +10951,,,,,,,,0, +42359,,,,,,,,0, +33887,91.0,9.0,9.0,9.0,10.0,8.0,9.0,18,0.36 +61770,94.0,9.0,9.0,10.0,10.0,10.0,9.0,7,0.14 +7173,83.0,9.0,9.0,9.0,9.0,9.0,9.0,84,1.64 +76219,50.0,4.0,5.0,9.0,7.0,7.0,5.0,2,0.06 +44545,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.14 +28197,95.0,10.0,10.0,10.0,10.0,10.0,9.0,152,2.91 +70051,97.0,10.0,10.0,10.0,10.0,9.0,9.0,52,1.17 +30824,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +39695,90.0,9.0,9.0,10.0,10.0,9.0,9.0,61,1.18 +3074,96.0,10.0,9.0,10.0,10.0,10.0,10.0,33,0.65 +8059,,,,,,,,1,0.02 +37441,99.0,10.0,10.0,10.0,10.0,10.0,10.0,72,2.0 +53167,94.0,9.0,8.0,10.0,10.0,10.0,9.0,7,0.16 +34144,100.0,10.0,10.0,10.0,9.0,9.0,10.0,4,0.28 +74491,,,,,,,,0, +20940,88.0,9.0,9.0,9.0,9.0,10.0,8.0,49,0.96 +22323,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +48867,97.0,10.0,10.0,10.0,10.0,10.0,9.0,19,0.37 +62265,97.0,10.0,9.0,10.0,10.0,10.0,9.0,35,0.82 +18763,85.0,8.0,9.0,10.0,9.0,9.0,8.0,8,0.45 +41535,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.02 +7846,92.0,9.0,9.0,10.0,10.0,9.0,9.0,37,0.73 +9512,76.0,9.0,7.0,10.0,9.0,9.0,8.0,9,0.24 +73842,94.0,10.0,9.0,10.0,10.0,10.0,9.0,46,0.9 +26150,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.1 +29077,,,,,,,,0, +18421,,,,,,,,0, +16172,96.0,9.0,9.0,10.0,10.0,9.0,10.0,20,0.4 +68217,,,,,,,,0, +67707,73.0,9.0,7.0,9.0,8.0,8.0,8.0,7,0.14 +4787,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.14 +44940,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.08 +68099,96.0,9.0,10.0,9.0,9.0,10.0,9.0,10,0.41 +7782,94.0,8.0,9.0,9.0,10.0,8.0,10.0,10,0.19 +28493,96.0,9.0,10.0,10.0,10.0,9.0,9.0,9,0.2 +58301,92.0,9.0,10.0,9.0,9.0,9.0,9.0,36,0.69 +47613,98.0,10.0,10.0,10.0,10.0,9.0,10.0,42,1.53 +34093,,,,,,,,0, +30632,89.0,9.0,9.0,9.0,9.0,9.0,9.0,10,0.25 +1394,96.0,10.0,10.0,9.0,10.0,10.0,10.0,27,0.94 +9825,94.0,10.0,9.0,10.0,10.0,10.0,9.0,45,1.16 +10017,89.0,9.0,9.0,10.0,9.0,9.0,9.0,207,4.04 +25451,94.0,9.0,9.0,10.0,10.0,10.0,9.0,10,0.21 +64564,93.0,10.0,9.0,10.0,9.0,10.0,9.0,12,0.23 +41816,,,,,,,,0, +35798,92.0,9.0,9.0,9.0,10.0,8.0,9.0,25,0.56 +23310,99.0,10.0,10.0,10.0,10.0,9.0,10.0,18,1.32 +36404,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +74945,94.0,10.0,10.0,10.0,10.0,10.0,10.0,87,1.71 +62449,,,,,,,,0, +32890,,,,,,,,0, +31257,98.0,10.0,10.0,10.0,10.0,9.0,10.0,51,1.58 +40082,,,,,,,,0, +32297,,,,,,,,0, +61232,60.0,5.0,6.0,10.0,10.0,6.0,5.0,2,0.05 +11833,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.29 +58260,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.06 +52927,94.0,9.0,9.0,10.0,10.0,10.0,10.0,7,0.14 +6315,93.0,9.0,8.0,9.0,9.0,10.0,9.0,3,0.06 +40213,,,,,,,,0, +62087,88.0,9.0,9.0,10.0,10.0,9.0,9.0,11,0.22 +54258,95.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.1 +46204,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +8499,,,,,,,,0, +1233,93.0,9.0,9.0,9.0,9.0,8.0,9.0,110,2.16 +75465,85.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.09 +30306,,,,,,,,0, +59866,89.0,9.0,9.0,9.0,9.0,10.0,9.0,43,0.85 +62353,89.0,9.0,10.0,10.0,10.0,10.0,9.0,24,0.5 +28824,97.0,10.0,10.0,10.0,9.0,9.0,9.0,7,0.17 +28592,100.0,10.0,10.0,10.0,10.0,9.0,10.0,16,0.46 +11616,87.0,9.0,9.0,9.0,10.0,9.0,9.0,136,2.64 +23377,100.0,9.0,10.0,9.0,9.0,9.0,9.0,3,0.06 +17825,100.0,9.0,9.0,9.0,9.0,10.0,10.0,3,0.07 +10433,91.0,9.0,9.0,10.0,10.0,9.0,9.0,36,0.7 +51630,,,,,,,,0, +27283,95.0,9.0,9.0,9.0,10.0,9.0,9.0,109,2.1 +47662,96.0,10.0,10.0,10.0,10.0,9.0,9.0,5,0.1 +48969,96.0,10.0,10.0,10.0,10.0,9.0,9.0,14,0.97 +12941,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,3.26 +63254,100.0,10.0,10.0,10.0,10.0,9.0,9.0,4,0.11 +1205,98.0,10.0,9.0,10.0,10.0,9.0,9.0,13,0.31 +10814,95.0,10.0,10.0,10.0,10.0,10.0,9.0,28,0.54 +14216,,,,,,,,0, +38103,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.02 +53363,92.0,9.0,9.0,10.0,10.0,9.0,9.0,22,0.44 +15896,91.0,10.0,9.0,9.0,9.0,10.0,9.0,170,3.28 +11101,,,,,,,,0, +4381,97.0,10.0,10.0,10.0,10.0,9.0,10.0,102,1.98 +14404,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.05 +35154,88.0,10.0,8.0,9.0,9.0,10.0,9.0,29,1.18 +76356,92.0,10.0,10.0,10.0,10.0,9.0,9.0,74,2.47 +74029,99.0,10.0,10.0,10.0,10.0,10.0,10.0,160,6.04 +31993,85.0,8.0,8.0,9.0,9.0,8.0,9.0,37,0.9 +21602,95.0,10.0,9.0,10.0,10.0,10.0,9.0,12,0.47 +28869,93.0,10.0,10.0,9.0,10.0,10.0,9.0,18,0.35 +24051,95.0,10.0,10.0,10.0,10.0,9.0,10.0,78,1.54 +49173,96.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.1 +31526,94.0,10.0,9.0,10.0,10.0,10.0,9.0,46,0.96 +7370,100.0,10.0,10.0,10.0,10.0,10.0,9.0,13,0.25 +31998,97.0,10.0,10.0,10.0,10.0,10.0,10.0,22,0.44 +29156,95.0,10.0,9.0,10.0,10.0,9.0,9.0,36,0.74 +18592,,,,,,,,0, +24944,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.03 +53801,94.0,9.0,8.0,9.0,9.0,10.0,10.0,41,2.34 +52315,100.0,10.0,10.0,10.0,10.0,9.0,10.0,9,0.17 +45683,99.0,10.0,10.0,10.0,10.0,10.0,10.0,31,0.83 +31447,94.0,9.0,10.0,10.0,10.0,10.0,10.0,30,1.49 +28645,90.0,9.0,9.0,9.0,10.0,9.0,9.0,4,0.08 +7323,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.04 +13689,96.0,10.0,9.0,10.0,10.0,10.0,10.0,46,0.91 +23414,96.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.35 +46632,,,,,,,,0, +60144,98.0,10.0,10.0,10.0,10.0,9.0,10.0,16,0.32 +11578,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.08 +58,94.0,10.0,10.0,10.0,10.0,10.0,9.0,17,0.37 +44953,92.0,9.0,10.0,10.0,10.0,9.0,9.0,70,1.36 +46374,95.0,10.0,9.0,10.0,10.0,9.0,10.0,50,1.0 +32712,90.0,9.0,8.0,9.0,9.0,9.0,9.0,8,0.16 +31267,97.0,10.0,9.0,10.0,10.0,10.0,10.0,15,0.3 +55730,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.29 +24383,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.02 +40143,96.0,10.0,10.0,10.0,10.0,10.0,10.0,31,0.62 +54933,96.0,10.0,9.0,10.0,10.0,9.0,9.0,14,0.48 +8033,97.0,10.0,9.0,9.0,10.0,10.0,9.0,7,0.75 +4881,97.0,10.0,10.0,10.0,10.0,10.0,10.0,202,4.17 +56635,94.0,10.0,9.0,10.0,10.0,10.0,10.0,87,2.77 +43919,89.0,9.0,9.0,10.0,10.0,10.0,9.0,100,1.95 +30251,95.0,10.0,9.0,9.0,10.0,10.0,9.0,11,0.23 +36104,,,,,,,,2,0.05 +42236,73.0,7.0,8.0,9.0,9.0,9.0,7.0,3,0.07 +68314,99.0,10.0,10.0,10.0,10.0,9.0,9.0,69,1.37 +15546,,,,,,,,0, +22332,70.0,8.0,9.0,8.0,8.0,7.0,7.0,9,0.18 +62430,87.0,10.0,9.0,9.0,9.0,10.0,10.0,9,0.2 +69527,80.0,8.0,9.0,9.0,7.0,7.0,7.0,2,0.04 +6301,84.0,9.0,8.0,10.0,9.0,9.0,9.0,10,0.19 +29304,96.0,10.0,10.0,10.0,10.0,10.0,9.0,71,1.39 +59533,80.0,8.0,8.0,8.0,4.0,8.0,8.0,1,0.02 +25779,82.0,8.0,8.0,9.0,9.0,9.0,8.0,23,0.51 +65092,94.0,10.0,9.0,10.0,10.0,9.0,9.0,8,0.16 +66622,,,,,,,,0, +76720,90.0,9.0,9.0,9.0,9.0,10.0,8.0,2,0.08 +21063,90.0,9.0,9.0,10.0,9.0,8.0,9.0,102,2.02 +29574,98.0,10.0,10.0,10.0,10.0,9.0,10.0,35,0.68 +31925,,,,,,,,0, +49986,97.0,10.0,9.0,10.0,10.0,10.0,9.0,29,0.56 +47750,,,,,,,,0, +29818,90.0,10.0,8.0,10.0,10.0,10.0,9.0,6,0.12 +31251,99.0,10.0,10.0,10.0,10.0,10.0,10.0,45,1.05 +66381,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.04 +75336,100.0,10.0,10.0,10.0,10.0,9.0,9.0,6,0.12 +2884,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.18 +54180,98.0,10.0,10.0,10.0,10.0,10.0,9.0,78,1.56 +10965,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.85 +10275,100.0,10.0,10.0,10.0,10.0,10.0,10.0,24,0.58 +28801,89.0,10.0,9.0,10.0,10.0,10.0,9.0,25,0.49 +55369,89.0,9.0,9.0,9.0,10.0,9.0,9.0,36,0.71 +7501,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.23 +47767,91.0,9.0,9.0,10.0,10.0,10.0,9.0,14,0.33 +3850,82.0,8.0,8.0,8.0,9.0,10.0,8.0,18,0.35 +47950,92.0,10.0,9.0,10.0,10.0,9.0,9.0,13,0.26 +30336,98.0,10.0,10.0,10.0,10.0,9.0,9.0,19,0.45 +11990,97.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.27 +65817,90.0,9.0,9.0,10.0,10.0,9.0,9.0,174,3.38 +28277,92.0,9.0,9.0,9.0,9.0,9.0,9.0,19,0.39 +6715,88.0,9.0,8.0,10.0,10.0,10.0,9.0,59,1.2 +62545,93.0,9.0,9.0,10.0,10.0,10.0,9.0,35,0.73 +22831,91.0,10.0,9.0,10.0,10.0,9.0,9.0,8,0.18 +76464,100.0,10.0,10.0,10.0,9.0,9.0,9.0,3,0.07 +74750,95.0,10.0,9.0,10.0,10.0,10.0,9.0,22,0.43 +60472,97.0,10.0,10.0,10.0,10.0,10.0,10.0,55,1.29 +25315,82.0,9.0,8.0,9.0,9.0,9.0,8.0,42,0.88 +14145,95.0,10.0,8.0,10.0,10.0,9.0,9.0,13,0.26 +72666,97.0,10.0,9.0,10.0,10.0,10.0,9.0,21,0.42 +24852,84.0,9.0,8.0,9.0,9.0,8.0,9.0,212,4.12 +11709,97.0,10.0,10.0,10.0,10.0,9.0,9.0,6,0.12 +49160,100.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.62 +43149,94.0,9.0,9.0,10.0,10.0,10.0,9.0,23,0.59 +2301,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.1 +3388,80.0,10.0,6.0,10.0,10.0,6.0,8.0,2,0.18 +11768,94.0,9.0,9.0,10.0,10.0,9.0,10.0,91,1.79 +54450,,,,,,,,0, +70861,96.0,10.0,10.0,10.0,10.0,10.0,9.0,11,0.22 +35636,88.0,9.0,9.0,9.0,9.0,9.0,9.0,68,1.32 +26284,,,,,,,,1,0.02 +28177,93.0,9.0,9.0,10.0,10.0,9.0,9.0,16,0.8 +60477,96.0,10.0,9.0,10.0,10.0,10.0,9.0,44,0.9 +63428,80.0,6.0,6.0,10.0,10.0,10.0,8.0,1,0.02 +61152,95.0,10.0,9.0,10.0,10.0,10.0,9.0,11,0.24 +49088,98.0,10.0,10.0,10.0,10.0,10.0,10.0,38,1.17 +9413,99.0,10.0,10.0,10.0,10.0,10.0,10.0,174,3.39 +5327,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +46636,89.0,9.0,8.0,10.0,10.0,9.0,8.0,17,0.34 +34540,,,,,,,,0, +16018,100.0,8.0,6.0,10.0,10.0,10.0,10.0,1,0.02 +41416,96.0,10.0,9.0,10.0,10.0,9.0,9.0,11,0.23 +44512,93.0,10.0,10.0,9.0,10.0,9.0,9.0,205,4.31 +15459,90.0,8.0,8.0,8.0,8.0,10.0,8.0,2,0.04 +9980,93.0,9.0,9.0,9.0,9.0,9.0,9.0,3,0.06 +23229,93.0,9.0,9.0,9.0,10.0,9.0,10.0,22,0.44 +73301,91.0,9.0,8.0,10.0,10.0,9.0,9.0,34,0.66 +2656,98.0,10.0,10.0,10.0,10.0,9.0,9.0,18,0.35 +59481,60.0,6.0,2.0,10.0,10.0,10.0,8.0,1,0.02 +67390,89.0,9.0,10.0,9.0,9.0,10.0,9.0,11,0.22 +49667,,,,,,,,0, +29993,89.0,9.0,9.0,9.0,9.0,10.0,9.0,37,0.73 +5506,,,,,,,,0, +805,100.0,10.0,10.0,10.0,10.0,8.0,8.0,2,0.04 +63632,100.0,10.0,10.0,10.0,10.0,9.0,9.0,2,0.07 +26582,87.0,9.0,8.0,10.0,9.0,9.0,8.0,20,0.41 +47544,95.0,9.0,9.0,10.0,10.0,10.0,9.0,4,0.08 +11418,90.0,10.0,9.0,10.0,10.0,9.0,9.0,53,1.04 +40053,,,,,,,,0, +9793,93.0,9.0,9.0,10.0,10.0,10.0,9.0,182,3.68 +3147,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.19 +40864,94.0,10.0,9.0,10.0,10.0,9.0,9.0,92,1.83 +5836,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +36436,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +36628,100.0,10.0,10.0,10.0,10.0,10.0,10.0,50,1.28 +2488,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.08 +49021,97.0,10.0,9.0,9.0,10.0,9.0,9.0,16,1.1 +40913,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.08 +41782,93.0,10.0,10.0,10.0,10.0,9.0,9.0,108,2.1 +51882,,,,,,,,0, +60669,90.0,9.0,9.0,8.0,9.0,9.0,10.0,2,0.04 +68719,,,,,,,,0, +40351,95.0,10.0,9.0,10.0,10.0,10.0,9.0,30,0.63 +50177,91.0,9.0,10.0,9.0,9.0,9.0,9.0,79,1.54 +13576,,,,,,,,0, +6716,,,,,,,,0, +39884,80.0,8.0,5.0,7.0,8.0,7.0,7.0,2,0.06 +10957,96.0,10.0,10.0,10.0,10.0,10.0,10.0,30,0.59 +65296,,,,,,,,0, +62686,98.0,10.0,10.0,10.0,10.0,10.0,10.0,22,0.49 +72862,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.02 +75263,95.0,10.0,9.0,10.0,10.0,9.0,10.0,33,0.64 +74382,90.0,8.0,8.0,10.0,10.0,8.0,9.0,2,0.04 +7515,95.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.16 +35787,91.0,9.0,9.0,9.0,9.0,10.0,9.0,18,0.49 +13945,100.0,10.0,10.0,10.0,10.0,9.0,10.0,9,0.17 +63409,98.0,10.0,10.0,10.0,10.0,9.0,10.0,12,0.23 +23931,93.0,9.0,9.0,10.0,10.0,8.0,9.0,12,0.24 +17952,93.0,9.0,9.0,10.0,10.0,9.0,9.0,136,2.85 +53762,92.0,10.0,10.0,10.0,10.0,9.0,10.0,24,0.62 +55435,,,,,,,,0, +74206,97.0,10.0,10.0,10.0,10.0,9.0,10.0,14,0.28 +17466,82.0,9.0,9.0,9.0,9.0,9.0,8.0,37,1.04 +13764,97.0,10.0,10.0,10.0,10.0,10.0,10.0,127,2.52 +15262,,,,,,,,0, +3963,80.0,9.0,9.0,9.0,10.0,9.0,7.0,3,0.06 +24159,88.0,9.0,9.0,9.0,9.0,10.0,9.0,88,1.81 +42569,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.07 +64292,,,,,,,,0, +30754,98.0,10.0,10.0,10.0,10.0,10.0,10.0,42,0.85 +50814,,,,,,,,0, +29360,98.0,10.0,10.0,10.0,10.0,10.0,10.0,37,0.95 +25666,95.0,10.0,10.0,9.0,10.0,10.0,9.0,32,0.64 +36484,100.0,10.0,10.0,10.0,10.0,10.0,10.0,20,1.41 +19978,92.0,9.0,9.0,10.0,10.0,10.0,9.0,181,3.54 +5562,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.04 +59125,98.0,10.0,10.0,10.0,10.0,10.0,10.0,38,0.75 +41607,,,,,,,,0, +52740,95.0,10.0,9.0,10.0,10.0,10.0,10.0,64,1.32 +63282,96.0,10.0,10.0,10.0,10.0,10.0,9.0,213,4.21 +69804,90.0,9.0,8.0,10.0,10.0,9.0,9.0,17,0.34 +4441,91.0,9.0,8.0,9.0,10.0,8.0,9.0,7,0.14 +14758,97.0,10.0,10.0,10.0,10.0,10.0,9.0,160,3.15 +43045,90.0,9.0,9.0,10.0,10.0,9.0,9.0,67,1.31 +8815,60.0,9.0,9.0,8.0,5.0,10.0,7.0,3,0.21 +45700,,,,,,,,0, +25664,87.0,9.0,7.0,9.0,10.0,10.0,9.0,3,0.06 +15135,96.0,10.0,10.0,10.0,10.0,9.0,10.0,181,3.55 +23783,97.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.29 +52539,95.0,10.0,10.0,10.0,10.0,10.0,10.0,41,0.81 +43670,90.0,10.0,10.0,10.0,10.0,9.0,9.0,10,0.19 +27704,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.12 +40394,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +36604,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.31 +8541,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.47 +9214,99.0,10.0,10.0,10.0,10.0,10.0,10.0,40,0.96 +25914,85.0,9.0,8.0,9.0,9.0,9.0,9.0,44,0.9 +41060,100.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.42 +62229,,,,,,,,0, +55194,60.0,6.0,6.0,6.0,6.0,5.0,5.0,2,2.0 +51066,96.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.42 +25272,,,,,,,,0, +35792,98.0,10.0,10.0,10.0,10.0,10.0,10.0,120,2.35 +38151,87.0,9.0,8.0,9.0,10.0,10.0,9.0,62,1.23 +12774,95.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.09 +16956,,,,,,,,0, +27357,97.0,9.0,10.0,10.0,10.0,10.0,9.0,26,0.51 +74511,96.0,10.0,10.0,10.0,10.0,9.0,10.0,101,1.98 +10572,96.0,10.0,10.0,10.0,10.0,9.0,10.0,32,0.64 +51297,,,,,,,,0, +42765,98.0,10.0,10.0,10.0,10.0,10.0,9.0,12,0.23 +58227,,,,,,,,0, +48283,,,,,,,,0, +18399,97.0,8.0,10.0,10.0,10.0,10.0,9.0,6,0.12 +45091,,,,,,,,0, +55236,98.0,10.0,10.0,10.0,10.0,10.0,10.0,139,2.75 +69477,,,,,,,,0, +60712,80.0,2.0,8.0,10.0,10.0,10.0,10.0,1,0.03 +46242,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.04 +29079,60.0,7.0,7.0,9.0,8.0,7.0,7.0,6,0.14 +39704,95.0,10.0,10.0,10.0,10.0,10.0,9.0,129,2.63 +66668,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.16 +42532,89.0,10.0,8.0,10.0,10.0,8.0,9.0,14,0.29 +44419,92.0,10.0,9.0,10.0,10.0,9.0,9.0,29,0.65 +50601,86.0,9.0,8.0,10.0,9.0,9.0,9.0,126,2.52 +29884,,,,,,,,0, +31372,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.09 +33208,91.0,10.0,9.0,9.0,9.0,10.0,9.0,103,2.02 +28614,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.04 +62273,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.1 +71118,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.07 +59697,,,,,,,,0, +19610,96.0,10.0,10.0,10.0,10.0,10.0,10.0,132,2.62 +8818,100.0,10.0,10.0,10.0,10.0,10.0,9.0,8,4.8 +3604,91.0,9.0,9.0,9.0,10.0,10.0,9.0,18,0.35 +76849,91.0,9.0,9.0,10.0,10.0,9.0,9.0,232,4.55 +2996,97.0,10.0,10.0,10.0,10.0,10.0,9.0,117,2.3 +31435,88.0,9.0,8.0,10.0,10.0,8.0,9.0,13,0.27 +35835,91.0,9.0,9.0,9.0,9.0,10.0,9.0,111,2.23 +58854,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.06 +42901,92.0,10.0,9.0,10.0,10.0,9.0,9.0,110,2.18 +65212,97.0,10.0,10.0,10.0,10.0,10.0,10.0,26,0.52 +8821,97.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.58 +35101,95.0,10.0,10.0,10.0,10.0,10.0,9.0,84,1.66 +69692,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.16 +37033,93.0,8.0,9.0,9.0,10.0,10.0,9.0,3,0.06 +15022,89.0,9.0,8.0,10.0,9.0,9.0,9.0,131,2.63 +35370,94.0,10.0,10.0,10.0,10.0,9.0,9.0,134,4.77 +46193,93.0,10.0,10.0,10.0,10.0,9.0,10.0,278,5.68 +28294,89.0,9.0,9.0,10.0,9.0,9.0,9.0,221,4.35 +36073,93.0,9.0,9.0,10.0,10.0,8.0,9.0,5,0.1 +62930,98.0,10.0,10.0,10.0,10.0,10.0,10.0,96,2.04 +10442,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.04 +63253,90.0,9.0,9.0,10.0,9.0,10.0,9.0,39,2.55 +3248,83.0,9.0,8.0,9.0,9.0,8.0,9.0,7,0.17 +63582,,,,,,,,0, +7077,98.0,10.0,10.0,10.0,10.0,10.0,10.0,69,1.36 +26691,75.0,8.0,8.0,9.0,8.0,8.0,7.0,48,0.94 +55588,95.0,10.0,9.0,10.0,9.0,9.0,10.0,24,0.47 +59147,85.0,9.0,9.0,9.0,9.0,9.0,8.0,39,0.76 +45729,,,,,,,,0, +46669,92.0,9.0,9.0,10.0,10.0,8.0,9.0,108,2.13 +71209,94.0,10.0,10.0,10.0,9.0,9.0,9.0,21,0.41 +60425,100.0,9.0,9.0,10.0,10.0,9.0,9.0,3,0.06 +6535,,,,,,,,0, +45496,97.0,10.0,10.0,10.0,10.0,9.0,9.0,70,1.39 +44344,,,,,,,,0, +70960,,,,,,,,0, +71665,78.0,8.0,8.0,9.0,8.0,7.0,8.0,15,0.3 +29102,83.0,9.0,8.0,9.0,10.0,8.0,9.0,29,0.59 +34443,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,1.4 +51959,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.19 +1426,,,,,,,,0, +52397,94.0,10.0,9.0,10.0,10.0,8.0,9.0,25,0.49 +6231,99.0,10.0,10.0,10.0,10.0,10.0,10.0,35,0.79 +3646,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.43 +42751,90.0,9.0,9.0,9.0,10.0,10.0,9.0,127,2.64 +25517,,,,,,,,0, +62906,,,,,,,,0, +75389,97.0,10.0,10.0,10.0,10.0,10.0,10.0,39,0.8 +69054,,,,,,,,0, +17394,94.0,10.0,9.0,9.0,10.0,9.0,9.0,96,1.88 +7409,80.0,8.0,8.0,9.0,9.0,9.0,7.0,18,0.36 +52551,85.0,9.0,9.0,8.0,10.0,10.0,9.0,4,0.08 +32452,93.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.09 +27951,94.0,10.0,9.0,10.0,10.0,10.0,9.0,29,0.57 +30056,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.22 +29337,98.0,10.0,10.0,10.0,10.0,9.0,10.0,27,0.53 +57203,,,,,,,,0, +72184,100.0,10.0,10.0,6.0,8.0,10.0,8.0,2,0.04 +38233,92.0,10.0,10.0,10.0,9.0,10.0,10.0,12,0.34 +75797,89.0,9.0,8.0,9.0,10.0,9.0,9.0,26,0.52 +72433,,,,,,,,0, +18575,,,,,,,,0, +17685,91.0,10.0,8.0,10.0,10.0,9.0,9.0,15,0.31 +20315,98.0,10.0,10.0,10.0,10.0,10.0,10.0,34,0.68 +70269,97.0,10.0,10.0,10.0,10.0,9.0,10.0,194,3.81 +15324,96.0,10.0,9.0,10.0,10.0,9.0,10.0,11,0.29 +56328,96.0,10.0,9.0,10.0,10.0,10.0,9.0,14,0.28 +30389,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.19 +41260,92.0,10.0,10.0,10.0,10.0,9.0,9.0,413,8.17 +43892,97.0,10.0,10.0,10.0,10.0,9.0,10.0,34,0.67 +25406,93.0,9.0,10.0,10.0,10.0,8.0,9.0,116,2.3 +67131,96.0,9.0,10.0,10.0,10.0,9.0,9.0,78,1.55 +26082,98.0,10.0,10.0,10.0,10.0,10.0,10.0,37,1.89 +66802,73.0,9.0,9.0,9.0,9.0,8.0,7.0,3,0.06 +66836,89.0,9.0,10.0,10.0,9.0,9.0,9.0,14,0.32 +11055,80.0,9.0,9.0,10.0,8.0,9.0,9.0,3,0.06 +57512,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.17 +2160,89.0,10.0,9.0,10.0,10.0,10.0,9.0,9,0.59 +15599,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.08 +33079,97.0,10.0,10.0,10.0,10.0,10.0,10.0,175,3.44 +50742,80.0,9.0,8.0,8.0,10.0,9.0,9.0,4,0.1 +36783,97.0,10.0,10.0,10.0,10.0,10.0,10.0,31,0.68 +65288,,,,,,,,0, +62687,100.0,10.0,8.0,10.0,10.0,10.0,10.0,4,0.71 +30093,96.0,10.0,10.0,10.0,10.0,10.0,9.0,37,0.79 +42879,97.0,10.0,10.0,10.0,10.0,9.0,10.0,23,0.47 +51958,98.0,9.0,9.0,9.0,10.0,9.0,9.0,9,0.19 +16860,98.0,10.0,10.0,10.0,10.0,9.0,10.0,44,0.99 +64119,,,,,,,,0, +321,96.0,10.0,10.0,10.0,10.0,9.0,9.0,18,0.36 +6256,,,,,,,,0, +11702,95.0,10.0,10.0,10.0,10.0,10.0,9.0,56,1.2 +27940,,,,,,,,0, +20516,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.18 +4415,85.0,9.0,8.0,9.0,9.0,9.0,9.0,22,0.74 +69949,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +12441,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.07 +50487,93.0,10.0,9.0,10.0,10.0,10.0,9.0,44,0.92 +59668,93.0,9.0,9.0,10.0,10.0,9.0,10.0,14,0.29 +17819,93.0,10.0,10.0,10.0,10.0,9.0,9.0,138,2.75 +8571,93.0,10.0,9.0,10.0,10.0,9.0,9.0,14,0.28 +16910,86.0,9.0,8.0,10.0,9.0,9.0,9.0,22,0.45 +25291,94.0,9.0,10.0,10.0,10.0,9.0,9.0,199,3.94 +23034,98.0,10.0,9.0,10.0,10.0,9.0,9.0,73,1.46 +10825,97.0,10.0,9.0,10.0,10.0,10.0,10.0,13,0.27 +74771,95.0,10.0,9.0,10.0,10.0,10.0,9.0,136,2.73 +21244,,,,,,,,0, +29377,99.0,10.0,10.0,10.0,10.0,10.0,10.0,22,0.57 +29509,90.0,10.0,10.0,10.0,10.0,9.0,9.0,4,0.08 +59861,98.0,10.0,10.0,10.0,10.0,10.0,10.0,126,2.48 +32533,95.0,10.0,10.0,10.0,10.0,9.0,9.0,33,0.66 +61693,89.0,10.0,8.0,9.0,9.0,9.0,9.0,33,0.83 +10541,96.0,10.0,10.0,10.0,10.0,9.0,10.0,10,0.2 +41652,84.0,9.0,9.0,9.0,8.0,9.0,9.0,46,0.91 +21296,100.0,10.0,10.0,10.0,10.0,,10.0,1,0.03 +70224,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.43 +73124,92.0,9.0,9.0,9.0,10.0,9.0,9.0,111,2.33 +40846,98.0,10.0,10.0,10.0,10.0,10.0,10.0,123,2.42 +49080,95.0,10.0,10.0,10.0,10.0,9.0,9.0,90,1.82 +11748,100.0,10.0,10.0,10.0,10.0,10.0,9.0,14,0.8 +61791,100.0,8.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +40015,,,,,,,,0, +10434,,,,,,,,0, +4213,90.0,9.0,9.0,10.0,10.0,10.0,10.0,2,0.04 +57193,96.0,10.0,9.0,10.0,10.0,10.0,10.0,24,1.51 +8976,,,,,,,,0, +67686,,,,,,,,0, +58165,,,,,,,,0, +55455,,,,,,,,0, +44454,97.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.3 +2157,94.0,10.0,9.0,10.0,10.0,9.0,10.0,50,1.27 +14572,,,,,,,,0, +39160,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.3 +59557,94.0,10.0,10.0,10.0,10.0,9.0,9.0,60,1.19 +72457,80.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +73386,98.0,10.0,10.0,10.0,10.0,10.0,10.0,23,0.98 +69560,95.0,9.0,10.0,10.0,10.0,10.0,9.0,53,1.04 +15090,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +1740,93.0,10.0,10.0,10.0,10.0,10.0,9.0,22,0.5 +64896,96.0,10.0,10.0,10.0,10.0,10.0,10.0,39,1.04 +72128,91.0,10.0,10.0,10.0,9.0,8.0,9.0,9,0.19 +27944,,,,,,,,0, +20644,94.0,10.0,10.0,10.0,10.0,9.0,9.0,25,0.52 +41893,93.0,10.0,9.0,10.0,10.0,9.0,10.0,73,1.44 +59117,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.08 +46364,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.11 +37229,90.0,10.0,8.0,9.0,10.0,8.0,9.0,2,0.04 +14361,86.0,9.0,9.0,9.0,10.0,10.0,9.0,40,0.83 +4554,76.0,8.0,8.0,8.0,8.0,8.0,8.0,14,0.31 +24575,99.0,10.0,9.0,10.0,10.0,10.0,10.0,17,0.37 +1844,98.0,10.0,10.0,10.0,10.0,10.0,10.0,48,0.96 +593,87.0,9.0,9.0,9.0,9.0,9.0,9.0,100,2.02 +49493,,,,,,,,0, +28053,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +6597,97.0,10.0,10.0,10.0,10.0,10.0,9.0,61,1.21 +59291,97.0,10.0,9.0,10.0,10.0,9.0,10.0,30,0.63 +71809,95.0,10.0,10.0,10.0,10.0,10.0,9.0,65,1.35 +41615,93.0,8.0,7.0,9.0,10.0,10.0,8.0,5,0.26 +17373,97.0,10.0,9.0,10.0,10.0,10.0,10.0,40,0.79 +9345,88.0,10.0,8.0,9.0,9.0,10.0,9.0,63,1.71 +42700,,,,,,,,0, +30220,91.0,10.0,10.0,10.0,10.0,9.0,9.0,19,0.43 +14945,90.0,9.0,9.0,9.0,9.0,9.0,9.0,6,0.12 +63262,95.0,10.0,10.0,10.0,10.0,10.0,10.0,138,4.12 +55367,84.0,8.0,10.0,10.0,9.0,10.0,8.0,9,0.28 +32900,98.0,10.0,10.0,10.0,10.0,10.0,10.0,38,1.49 +11299,67.0,5.0,9.0,7.0,9.0,9.0,7.0,3,0.1 +23993,96.0,10.0,10.0,10.0,10.0,9.0,9.0,30,0.64 +21916,93.0,10.0,9.0,10.0,10.0,9.0,9.0,3,0.1 +53420,90.0,9.0,9.0,9.0,9.0,9.0,9.0,23,0.58 +39521,97.0,10.0,10.0,10.0,10.0,10.0,10.0,51,1.03 +63218,93.0,9.0,9.0,10.0,10.0,10.0,9.0,35,0.73 +30890,99.0,10.0,10.0,10.0,10.0,10.0,10.0,48,0.96 +18649,94.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.18 +74231,85.0,9.0,8.0,9.0,9.0,8.0,9.0,100,2.0 +31660,,,,,,,,0, +54371,91.0,9.0,9.0,9.0,10.0,10.0,9.0,17,0.34 +11198,91.0,10.0,9.0,9.0,9.0,10.0,9.0,47,1.2 +3324,,,,,,,,0, +72242,98.0,10.0,10.0,10.0,10.0,10.0,10.0,294,5.83 +46847,99.0,10.0,10.0,10.0,10.0,9.0,10.0,25,0.5 +13970,83.0,9.0,8.0,10.0,10.0,8.0,9.0,8,0.52 +56071,94.0,9.0,10.0,10.0,10.0,10.0,9.0,23,0.46 +56005,,,,,,,,0, +27879,100.0,10.0,10.0,8.0,10.0,10.0,10.0,6,0.35 +50965,93.0,9.0,9.0,9.0,9.0,10.0,9.0,30,0.6 +53480,73.0,9.0,7.0,9.0,9.0,9.0,8.0,8,0.16 +76129,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.32 +41098,80.0,10.0,10.0,10.0,10.0,6.0,8.0,1,0.02 +75422,90.0,9.0,9.0,9.0,9.0,9.0,8.0,3,0.08 +66780,92.0,9.0,9.0,9.0,10.0,9.0,9.0,26,0.53 +22853,97.0,10.0,10.0,10.0,10.0,10.0,10.0,62,1.22 +40449,97.0,10.0,9.0,10.0,10.0,9.0,10.0,6,0.22 +69174,96.0,10.0,10.0,10.0,10.0,9.0,10.0,27,0.62 +29253,93.0,9.0,9.0,10.0,10.0,10.0,9.0,92,1.82 +27268,96.0,10.0,10.0,10.0,10.0,9.0,10.0,10,0.24 +59429,100.0,10.0,10.0,10.0,10.0,9.0,10.0,88,1.75 +60087,98.0,10.0,10.0,10.0,10.0,10.0,9.0,16,0.54 +57572,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.37 +27555,90.0,9.0,9.0,8.0,9.0,9.0,9.0,2,0.04 +44622,93.0,9.0,9.0,9.0,9.0,9.0,9.0,12,0.44 +63290,73.0,8.0,8.0,10.0,10.0,9.0,8.0,5,0.13 +64081,98.0,10.0,10.0,10.0,10.0,9.0,10.0,76,1.57 +47301,87.0,10.0,8.0,9.0,10.0,9.0,8.0,9,0.18 +10584,100.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.1 +56646,,,,,,,,0, +8576,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.04 +20620,99.0,10.0,10.0,10.0,10.0,9.0,10.0,51,1.01 +31617,97.0,10.0,10.0,10.0,10.0,10.0,10.0,81,1.63 +18537,100.0,10.0,10.0,10.0,10.0,9.0,10.0,67,1.37 +65258,98.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.4 +4885,95.0,10.0,10.0,10.0,10.0,9.0,10.0,31,0.68 +13134,,,,,,,,0, +1465,94.0,10.0,10.0,10.0,10.0,10.0,10.0,209,4.17 +54316,,,,,,,,0, +18313,95.0,9.0,10.0,10.0,10.0,10.0,9.0,22,0.44 +3832,98.0,10.0,10.0,10.0,10.0,9.0,10.0,147,2.94 +27799,97.0,10.0,10.0,10.0,10.0,9.0,9.0,26,0.62 +22802,92.0,10.0,9.0,10.0,10.0,9.0,9.0,56,1.14 +38679,60.0,7.0,7.0,9.0,7.0,9.0,7.0,4,0.09 +20605,99.0,10.0,10.0,10.0,10.0,10.0,10.0,207,4.13 +72692,93.0,9.0,9.0,10.0,10.0,10.0,9.0,33,1.2 +17914,98.0,10.0,10.0,10.0,10.0,9.0,10.0,209,4.16 +67893,88.0,9.0,9.0,9.0,10.0,10.0,9.0,84,1.67 +64411,97.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.16 +39192,94.0,10.0,9.0,10.0,10.0,10.0,9.0,24,0.48 +47434,93.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.17 +61596,88.0,9.0,9.0,9.0,9.0,9.0,9.0,189,3.77 +16928,94.0,10.0,9.0,10.0,10.0,10.0,9.0,54,1.09 +43419,95.0,10.0,10.0,10.0,10.0,10.0,9.0,72,1.44 +75666,90.0,9.0,9.0,9.0,9.0,10.0,9.0,36,0.72 +1312,,,,,,,,0, +15246,94.0,10.0,10.0,10.0,10.0,10.0,10.0,98,2.8 +47392,96.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.36 +56337,,,,,,,,0, +45361,97.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.14 +22062,100.0,9.0,10.0,10.0,10.0,9.0,9.0,4,0.09 +65432,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.06 +27813,,,,,,,,0, +30953,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.02 +40708,97.0,10.0,9.0,10.0,10.0,10.0,10.0,13,0.31 +6516,92.0,9.0,9.0,8.0,9.0,9.0,9.0,5,0.11 +44610,89.0,9.0,8.0,9.0,10.0,8.0,9.0,108,2.34 +3251,100.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.12 +23336,96.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.18 +73506,,,,,,,,0, +65695,98.0,10.0,10.0,10.0,10.0,10.0,10.0,46,1.24 +56913,81.0,9.0,8.0,8.0,8.0,9.0,9.0,16,0.32 +63372,,,,,,,,0, +48255,89.0,9.0,9.0,10.0,10.0,8.0,9.0,25,0.52 +53393,90.0,10.0,9.0,10.0,10.0,9.0,9.0,8,0.16 +18304,93.0,9.0,10.0,10.0,10.0,10.0,9.0,12,0.24 +64710,91.0,9.0,10.0,9.0,9.0,10.0,9.0,28,0.56 +13501,100.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.12 +64837,100.0,10.0,10.0,8.0,8.0,10.0,10.0,1,0.06 +34096,84.0,9.0,8.0,10.0,9.0,9.0,9.0,33,0.66 +1005,99.0,10.0,10.0,10.0,10.0,10.0,10.0,99,1.99 +29297,99.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.43 +73197,98.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.34 +38447,93.0,10.0,10.0,10.0,10.0,10.0,9.0,112,2.23 +21909,91.0,9.0,9.0,10.0,9.0,10.0,9.0,9,0.21 +8118,,,,,,,,0, +40043,95.0,10.0,10.0,10.0,10.0,10.0,9.0,8,0.18 +31535,96.0,10.0,10.0,10.0,10.0,9.0,9.0,28,0.58 +71854,85.0,10.0,9.0,10.0,10.0,10.0,9.0,4,0.11 +33482,90.0,10.0,9.0,9.0,9.0,9.0,9.0,90,1.79 +53846,97.0,10.0,10.0,10.0,10.0,9.0,10.0,12,0.24 +38417,99.0,10.0,10.0,10.0,10.0,10.0,10.0,29,0.65 +1812,95.0,10.0,10.0,10.0,10.0,10.0,10.0,67,1.4 +42135,99.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.68 +11561,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +30815,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.06 +14847,,,,,,,,0, +65121,93.0,9.0,10.0,10.0,10.0,9.0,9.0,15,0.3 +24883,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +59044,90.0,10.0,10.0,10.0,9.0,10.0,10.0,2,0.04 +22073,80.0,8.0,8.0,9.0,9.0,8.0,8.0,45,0.9 +28296,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +3628,,,,,,,,0, +72208,80.0,10.0,8.0,6.0,10.0,6.0,8.0,2,0.09 +71259,95.0,10.0,10.0,10.0,10.0,9.0,9.0,9,0.18 +17435,93.0,10.0,10.0,10.0,9.0,8.0,9.0,302,6.01 +70621,93.0,10.0,9.0,10.0,9.0,10.0,10.0,7,0.14 +75464,98.0,10.0,10.0,10.0,10.0,10.0,10.0,37,0.85 +61832,99.0,10.0,10.0,10.0,10.0,9.0,10.0,15,0.3 +13013,100.0,10.0,10.0,10.0,10.0,10.0,10.0,22,0.45 +32672,92.0,10.0,10.0,10.0,10.0,8.0,9.0,338,6.74 +56790,,,,,,,,0, +27047,100.0,10.0,10.0,10.0,10.0,6.0,10.0,1,0.02 +63150,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.05 +68035,60.0,6.0,7.0,9.0,9.0,6.0,6.0,2,0.06 +74240,60.0,6.0,6.0,6.0,8.0,8.0,8.0,1,0.02 +3633,97.0,10.0,10.0,10.0,10.0,9.0,10.0,216,4.33 +37456,91.0,10.0,9.0,10.0,10.0,9.0,9.0,274,5.6 +29035,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +70591,98.0,10.0,10.0,10.0,10.0,10.0,10.0,38,0.78 +33402,96.0,10.0,10.0,10.0,10.0,10.0,9.0,83,1.68 +51123,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.43 +68989,,,,,,,,1,0.03 +5493,,,,,,,,0, +10315,99.0,10.0,10.0,10.0,10.0,10.0,10.0,23,0.55 +57112,89.0,9.0,9.0,10.0,10.0,10.0,9.0,262,5.25 +452,,,,,,,,0, +58671,94.0,10.0,9.0,10.0,10.0,10.0,9.0,28,0.58 +72683,,,,,,,,0, +16198,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +52030,100.0,10.0,10.0,10.0,10.0,10.0,10.0,50,1.07 +32538,92.0,10.0,10.0,10.0,10.0,9.0,9.0,5,0.53 +70824,,,,,,,,0, +6352,,,,,,,,0, +48057,96.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.1 +66738,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +27510,,,,,,,,0, +32517,93.0,9.0,10.0,10.0,9.0,10.0,10.0,8,0.21 +63255,91.0,9.0,8.0,10.0,10.0,9.0,9.0,11,0.22 +54698,91.0,9.0,8.0,10.0,9.0,10.0,9.0,38,0.76 +29529,,,,,,,,0, +12359,92.0,9.0,8.0,10.0,10.0,9.0,9.0,9,0.18 +68214,70.0,7.0,7.0,8.0,8.0,8.0,7.0,12,0.24 +66156,98.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.7 +18122,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.09 +47744,94.0,9.0,9.0,10.0,10.0,9.0,9.0,54,1.08 +62203,98.0,10.0,10.0,10.0,10.0,10.0,10.0,50,1.12 +60486,97.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.26 +8337,73.0,6.0,7.0,8.0,8.0,6.0,7.0,16,0.32 +69264,91.0,9.0,8.0,10.0,10.0,10.0,9.0,20,0.4 +37642,70.0,6.0,7.0,10.0,6.0,9.0,5.0,2,0.05 +24553,,,,,,,,0, +65408,,,,,,,,0, +25615,99.0,10.0,10.0,10.0,10.0,10.0,10.0,33,0.67 +50290,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.13 +72458,,,,,,,,0, +62080,,,,,,,,0, +50496,,,,,,,,0, +47212,98.0,10.0,9.0,10.0,10.0,9.0,10.0,24,0.55 +1627,99.0,10.0,10.0,10.0,10.0,9.0,10.0,19,0.41 +7592,60.0,7.0,5.0,7.0,9.0,8.0,6.0,3,0.1 +35637,99.0,10.0,10.0,10.0,10.0,9.0,9.0,34,0.7 +41624,89.0,9.0,9.0,10.0,10.0,10.0,9.0,64,1.31 +46769,,,,,,,,0, +62348,96.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.28 +69720,99.0,10.0,10.0,10.0,10.0,9.0,10.0,49,1.07 +17238,97.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.16 +65381,90.0,9.0,9.0,10.0,10.0,10.0,10.0,3,0.16 +39958,96.0,10.0,10.0,10.0,10.0,10.0,10.0,88,1.76 +55718,,,,,,,,0, +19081,89.0,9.0,9.0,10.0,9.0,10.0,9.0,7,0.15 +25128,,,,,,,,0, +71940,,,,,,,,1,0.05 +58851,93.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.14 +14268,87.0,9.0,8.0,10.0,10.0,9.0,9.0,28,0.58 +18978,96.0,10.0,10.0,10.0,10.0,9.0,10.0,10,0.23 +18705,,,,,,,,3,0.08 +1698,84.0,9.0,8.0,9.0,9.0,9.0,9.0,9,0.18 +887,94.0,10.0,10.0,10.0,10.0,9.0,10.0,26,0.58 +61639,93.0,10.0,8.0,10.0,10.0,10.0,10.0,8,0.2 +71400,,,,,,,,0, +16503,,,,,,,,0, +1224,,,,,,,,0, +30902,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +34358,93.0,9.0,10.0,10.0,10.0,9.0,9.0,44,1.02 +72547,95.0,10.0,9.0,10.0,10.0,9.0,10.0,17,0.35 +15420,95.0,10.0,9.0,10.0,10.0,10.0,10.0,13,0.33 +7157,90.0,9.0,9.0,9.0,9.0,10.0,9.0,115,2.92 +41349,,,,,,,,0, +22731,92.0,10.0,9.0,9.0,10.0,9.0,9.0,50,1.0 +33016,93.0,10.0,10.0,10.0,10.0,9.0,9.0,26,0.52 +39352,85.0,9.0,9.0,9.0,9.0,9.0,8.0,62,1.59 +52400,97.0,10.0,9.0,10.0,10.0,10.0,9.0,75,1.51 +35035,,,,,,,,0, +5725,90.0,9.0,8.0,9.0,10.0,9.0,8.0,8,0.16 +62173,86.0,9.0,8.0,10.0,9.0,10.0,9.0,146,3.72 +13915,,,,,,,,0, +19667,91.0,10.0,9.0,10.0,10.0,9.0,9.0,16,0.62 +66117,91.0,9.0,10.0,9.0,10.0,9.0,9.0,415,8.32 +15253,88.0,9.0,9.0,9.0,9.0,10.0,9.0,45,0.9 +36473,87.0,9.0,9.0,9.0,9.0,10.0,9.0,27,0.62 +3701,97.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.29 +53506,89.0,9.0,9.0,9.0,9.0,10.0,9.0,40,0.82 +27,88.0,10.0,9.0,9.0,10.0,9.0,9.0,17,0.34 +13527,96.0,9.0,9.0,10.0,9.0,10.0,9.0,11,0.23 +60983,,,,,,,,0, +5057,86.0,9.0,9.0,10.0,10.0,10.0,9.0,44,0.92 +23101,90.0,9.0,9.0,10.0,10.0,9.0,7.0,4,0.08 +12471,99.0,10.0,10.0,10.0,10.0,10.0,10.0,78,1.57 +12192,98.0,10.0,10.0,10.0,10.0,9.0,10.0,137,3.05 +60143,96.0,10.0,9.0,10.0,9.0,9.0,9.0,11,0.27 +27810,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.13 +6495,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.16 +28776,80.0,10.0,8.0,10.0,10.0,8.0,8.0,1,0.02 +25331,96.0,10.0,9.0,10.0,10.0,10.0,9.0,24,0.55 +15399,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,1.96 +69855,,,,,,,,0, +56236,90.0,10.0,9.0,10.0,9.0,10.0,9.0,8,0.16 +29364,91.0,9.0,9.0,10.0,9.0,10.0,9.0,144,3.0 +7751,97.0,10.0,10.0,10.0,10.0,10.0,10.0,51,1.05 +8302,99.0,10.0,10.0,10.0,10.0,10.0,10.0,113,2.31 +3488,95.0,10.0,9.0,10.0,10.0,9.0,9.0,31,0.63 +62548,93.0,9.0,9.0,10.0,10.0,9.0,9.0,64,1.54 +48046,98.0,10.0,10.0,10.0,10.0,10.0,10.0,148,3.02 +6921,87.0,10.0,9.0,9.0,9.0,9.0,9.0,18,0.38 +67285,97.0,10.0,10.0,10.0,10.0,10.0,10.0,159,3.18 +40165,,,,,,,,0, +33113,88.0,8.0,8.0,9.0,9.0,9.0,8.0,13,0.27 +66403,88.0,9.0,8.0,10.0,10.0,10.0,9.0,130,3.41 +56698,96.0,10.0,10.0,10.0,10.0,9.0,10.0,21,0.42 +23002,93.0,10.0,10.0,10.0,10.0,10.0,9.0,15,0.35 +1840,95.0,10.0,9.0,9.0,9.0,10.0,9.0,12,0.32 +2412,98.0,10.0,9.0,10.0,10.0,10.0,10.0,11,0.22 +52370,94.0,9.0,10.0,9.0,9.0,9.0,9.0,7,0.14 +31949,80.0,6.0,8.0,10.0,10.0,10.0,8.0,1,0.02 +39964,99.0,10.0,10.0,10.0,10.0,10.0,10.0,84,1.9 +70787,100.0,8.0,10.0,10.0,10.0,8.0,6.0,2,0.04 +23856,90.0,10.0,10.0,10.0,10.0,9.0,9.0,2,0.11 +72566,98.0,10.0,10.0,10.0,10.0,10.0,10.0,159,3.21 +47487,93.0,10.0,9.0,10.0,10.0,9.0,9.0,53,1.09 +17746,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.37 +46799,93.0,10.0,9.0,10.0,10.0,10.0,9.0,12,0.29 +16835,87.0,9.0,9.0,9.0,10.0,9.0,9.0,294,5.98 +54995,100.0,10.0,8.0,10.0,10.0,8.0,10.0,1,0.02 +12718,90.0,9.0,9.0,9.0,10.0,8.0,9.0,2,0.07 +34939,90.0,10.0,8.0,10.0,10.0,9.0,9.0,6,0.13 +55999,,,,,,,,1,0.14 +20768,97.0,10.0,10.0,10.0,10.0,9.0,10.0,15,0.52 +5248,94.0,10.0,10.0,10.0,10.0,9.0,10.0,27,0.85 +40764,98.0,10.0,10.0,10.0,10.0,10.0,10.0,71,1.46 +54915,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.23 +57314,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.04 +62263,,,,,,,,0, +66093,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.09 +46722,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.02 +53394,92.0,9.0,8.0,10.0,10.0,10.0,9.0,13,0.32 +75994,,,,,,,,0, +42310,60.0,6.0,6.0,6.0,6.0,10.0,6.0,1,0.02 +32573,93.0,10.0,9.0,10.0,10.0,9.0,9.0,96,1.94 +76701,99.0,10.0,10.0,10.0,10.0,9.0,9.0,16,0.33 +41504,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +20392,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.42 +54097,,,,,,,,0, +5192,89.0,10.0,8.0,9.0,10.0,9.0,9.0,16,0.33 +48842,95.0,10.0,10.0,10.0,10.0,9.0,9.0,30,0.61 +65524,93.0,9.0,8.0,10.0,10.0,10.0,9.0,13,0.28 +30829,92.0,9.0,9.0,10.0,10.0,9.0,9.0,68,1.42 +1848,97.0,10.0,10.0,10.0,10.0,9.0,10.0,61,1.24 +73997,93.0,10.0,9.0,10.0,10.0,9.0,9.0,23,0.46 +75156,88.0,9.0,9.0,9.0,9.0,9.0,9.0,59,1.23 +22851,,,,,,,,0, +39136,,,,,,,,0, +7278,94.0,10.0,9.0,10.0,10.0,9.0,9.0,40,0.81 +29655,,,,,,,,0, +38117,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.04 +30024,96.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.1 +15991,,,,,,,,0, +13354,100.0,10.0,10.0,10.0,10.0,9.0,8.0,2,0.04 +48493,94.0,9.0,10.0,9.0,10.0,9.0,9.0,15,0.31 +4832,,,,,,,,0, +49736,100.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +357,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.65 +38590,92.0,9.0,9.0,10.0,10.0,9.0,9.0,55,1.17 +56816,100.0,8.0,10.0,10.0,10.0,10.0,8.0,1,0.23 +49498,,,,,,,,0, +60663,98.0,10.0,10.0,10.0,10.0,9.0,10.0,18,0.38 +58126,96.0,10.0,10.0,10.0,10.0,10.0,10.0,105,2.1 +19632,88.0,9.0,10.0,9.0,10.0,10.0,10.0,8,0.17 +5583,98.0,10.0,10.0,10.0,10.0,10.0,9.0,26,0.53 +5818,97.0,10.0,10.0,10.0,10.0,10.0,10.0,96,1.95 +270,,,,,,,,0, +8974,91.0,10.0,9.0,10.0,10.0,9.0,9.0,11,0.26 +10872,95.0,10.0,9.0,10.0,10.0,10.0,9.0,51,1.07 +68671,98.0,10.0,10.0,10.0,10.0,10.0,10.0,29,0.67 +12836,,,,,,,,0, +64708,85.0,8.0,10.0,10.0,9.0,8.0,8.0,4,0.1 +62657,80.0,9.0,8.0,10.0,9.0,7.0,8.0,3,0.06 +49951,99.0,10.0,10.0,10.0,10.0,10.0,10.0,28,0.82 +69868,100.0,10.0,10.0,10.0,10.0,9.0,10.0,10,0.33 +8817,90.0,10.0,9.0,10.0,10.0,9.0,9.0,14,0.31 +12351,99.0,10.0,10.0,10.0,10.0,10.0,10.0,43,1.05 +27080,95.0,10.0,9.0,10.0,10.0,10.0,10.0,121,2.53 +52644,93.0,10.0,10.0,10.0,10.0,9.0,9.0,7,0.14 +72102,97.0,10.0,10.0,10.0,10.0,10.0,10.0,25,0.54 +72021,89.0,9.0,9.0,9.0,9.0,10.0,9.0,330,6.73 +44181,87.0,9.0,9.0,10.0,9.0,9.0,9.0,6,0.13 +72790,93.0,10.0,9.0,10.0,10.0,10.0,9.0,6,0.12 +63280,93.0,10.0,9.0,10.0,10.0,9.0,9.0,11,0.23 +33219,94.0,9.0,9.0,10.0,10.0,9.0,9.0,42,0.99 +32497,97.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.21 +58808,95.0,10.0,10.0,10.0,10.0,9.0,10.0,30,0.62 +59587,100.0,10.0,10.0,10.0,10.0,10.0,10.0,19,0.41 +68526,97.0,10.0,9.0,10.0,9.0,10.0,10.0,18,0.4 +11090,93.0,10.0,9.0,10.0,10.0,9.0,9.0,56,1.17 +47649,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.23 +39496,87.0,9.0,10.0,9.0,9.0,9.0,9.0,3,0.07 +3930,92.0,9.0,9.0,10.0,10.0,9.0,9.0,26,0.61 +64163,88.0,9.0,9.0,9.0,9.0,9.0,9.0,27,0.6 +22656,,,,,,,,0, +63354,88.0,9.0,10.0,10.0,10.0,10.0,8.0,5,0.12 +20999,82.0,8.0,8.0,9.0,9.0,10.0,8.0,97,1.96 +30849,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.09 +69513,93.0,10.0,9.0,10.0,10.0,9.0,10.0,99,2.54 +18949,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.26 +59857,92.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.2 +69573,96.0,10.0,10.0,10.0,10.0,10.0,9.0,61,1.39 +45982,96.0,10.0,9.0,10.0,10.0,9.0,10.0,69,1.4 +1719,,,,,,,,0, +18380,96.0,10.0,10.0,10.0,10.0,9.0,10.0,43,0.87 +33781,85.0,9.0,7.0,9.0,9.0,9.0,9.0,120,2.49 +75934,97.0,10.0,10.0,10.0,10.0,10.0,10.0,118,2.38 +49617,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.64 +9301,100.0,9.0,10.0,10.0,10.0,10.0,8.0,2,0.13 +25016,88.0,9.0,9.0,10.0,10.0,9.0,9.0,19,0.38 +72237,97.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.15 +26152,95.0,10.0,10.0,10.0,10.0,9.0,10.0,47,0.95 +41375,100.0,10.0,10.0,10.0,10.0,10.0,9.0,12,2.83 +38418,95.0,10.0,9.0,10.0,10.0,9.0,9.0,104,2.13 +67564,97.0,9.0,8.0,10.0,10.0,9.0,9.0,7,0.19 +22491,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.04 +65369,100.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.33 +68716,87.0,9.0,8.0,9.0,9.0,7.0,9.0,3,0.1 +15764,90.0,9.0,8.0,10.0,10.0,10.0,10.0,2,0.04 +68305,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +76271,,,,,,,,0, +29500,96.0,10.0,9.0,10.0,9.0,10.0,9.0,24,0.49 +9410,86.0,9.0,9.0,10.0,10.0,10.0,9.0,8,0.16 +65976,80.0,8.0,8.0,9.0,8.0,8.0,8.0,5,0.17 +5256,,,,,,,,0, +66516,97.0,10.0,10.0,10.0,10.0,10.0,10.0,103,2.3 +878,97.0,10.0,10.0,10.0,10.0,9.0,10.0,32,0.75 +58926,,,,,,,,0, +55372,93.0,9.0,9.0,9.0,9.0,9.0,9.0,15,0.31 +30965,94.0,10.0,10.0,10.0,10.0,9.0,9.0,10,0.2 +13786,93.0,9.0,10.0,9.0,10.0,10.0,9.0,18,0.37 +47723,,,,,,,,0, +10900,73.0,8.0,7.0,6.0,7.0,9.0,8.0,3,0.09 +43952,80.0,9.0,8.0,8.0,8.0,9.0,7.0,2,0.04 +7034,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.27 +74130,,,,,,,,0, +42659,,,,,,,,0, +16695,100.0,10.0,9.0,10.0,10.0,10.0,10.0,9,0.21 +16663,,,,,,,,0, +47561,98.0,10.0,9.0,10.0,10.0,9.0,10.0,21,0.5 +34598,98.0,10.0,10.0,10.0,10.0,10.0,10.0,22,0.53 +35241,92.0,10.0,9.0,9.0,10.0,10.0,9.0,34,0.69 +40432,98.0,10.0,10.0,10.0,10.0,10.0,10.0,95,1.92 +76468,84.0,9.0,9.0,9.0,9.0,9.0,8.0,80,1.63 +18853,98.0,10.0,10.0,10.0,10.0,10.0,10.0,89,1.8 +69871,96.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.31 +35218,94.0,10.0,10.0,10.0,10.0,10.0,10.0,22,0.47 +3853,93.0,10.0,9.0,10.0,10.0,10.0,9.0,8,0.17 +55243,97.0,10.0,9.0,10.0,10.0,10.0,10.0,7,0.14 +55166,86.0,9.0,8.0,8.0,9.0,9.0,9.0,23,0.47 +36481,80.0,8.0,8.0,6.0,8.0,8.0,6.0,2,0.04 +36978,95.0,9.0,10.0,10.0,10.0,10.0,9.0,35,0.73 +11352,92.0,9.0,9.0,9.0,10.0,10.0,9.0,160,3.25 +52162,99.0,10.0,10.0,10.0,10.0,10.0,10.0,19,1.1 +48892,98.0,10.0,10.0,10.0,10.0,10.0,10.0,57,1.19 +46260,96.0,9.0,10.0,10.0,10.0,9.0,10.0,20,1.67 +28333,92.0,10.0,9.0,10.0,10.0,9.0,9.0,42,0.85 +44161,95.0,10.0,9.0,10.0,10.0,10.0,9.0,120,2.45 +13193,84.0,9.0,8.0,10.0,9.0,9.0,9.0,28,0.57 +12654,,,,,,,,0, +42832,95.0,10.0,10.0,10.0,10.0,9.0,10.0,38,0.84 +37987,,,,,,,,0, +52297,,,,,,,,0, +27717,89.0,9.0,8.0,10.0,10.0,10.0,9.0,102,2.09 +6747,,,,,,,,0, +54998,88.0,8.0,8.0,8.0,10.0,10.0,8.0,7,0.32 +72093,92.0,9.0,9.0,10.0,10.0,9.0,9.0,100,2.05 +15298,100.0,10.0,10.0,9.0,10.0,10.0,10.0,2,0.06 +39652,94.0,10.0,10.0,10.0,10.0,9.0,10.0,94,2.18 +38166,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.48 +12338,88.0,8.0,9.0,9.0,9.0,10.0,9.0,15,0.34 +54109,99.0,10.0,10.0,10.0,10.0,10.0,10.0,37,0.81 +15649,92.0,10.0,8.0,10.0,10.0,8.0,8.0,5,0.13 +18525,82.0,9.0,8.0,9.0,9.0,9.0,8.0,41,0.86 +74164,93.0,9.0,10.0,10.0,10.0,9.0,9.0,24,0.5 +55757,94.0,10.0,10.0,10.0,10.0,9.0,9.0,134,3.12 +9620,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.17 +76724,94.0,9.0,9.0,10.0,10.0,10.0,9.0,252,5.09 +41420,98.0,10.0,9.0,10.0,10.0,9.0,9.0,9,0.19 +3029,100.0,6.0,10.0,8.0,10.0,10.0,10.0,1,0.03 +59971,88.0,9.0,8.0,10.0,10.0,9.0,9.0,16,0.33 +6508,87.0,9.0,8.0,9.0,10.0,9.0,9.0,46,1.07 +45239,,,,,,,,0, +5547,,,,,,,,0, +53354,92.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.29 +17417,,,,,,,,0, +76423,94.0,10.0,9.0,9.0,10.0,8.0,9.0,35,0.71 +54323,88.0,9.0,9.0,9.0,9.0,9.0,9.0,16,0.36 +50440,,,,,,,,0, +11127,,,,,,,,0, +73372,91.0,9.0,9.0,10.0,10.0,10.0,9.0,124,2.54 +41405,95.0,10.0,10.0,10.0,10.0,9.0,10.0,104,2.46 +31732,89.0,9.0,8.0,10.0,10.0,9.0,9.0,61,1.24 +29269,95.0,10.0,9.0,10.0,10.0,9.0,10.0,76,1.62 +68841,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +58578,,,,,,,,0, +30006,94.0,10.0,10.0,10.0,10.0,10.0,9.0,7,0.16 +66604,97.0,10.0,9.0,10.0,10.0,9.0,10.0,12,0.25 +6344,86.0,9.0,8.0,10.0,9.0,9.0,9.0,14,0.9 +69791,,,,,,,,0, +65303,80.0,8.0,10.0,10.0,10.0,10.0,8.0,1,0.02 +13396,98.0,10.0,9.0,10.0,10.0,10.0,9.0,8,0.18 +8652,,,,,,,,0, +10544,95.0,10.0,9.0,9.0,10.0,9.0,9.0,37,0.76 +29827,80.0,8.0,7.0,8.0,10.0,8.0,8.0,4,0.08 +5185,,,,,,,,0, +65844,91.0,10.0,9.0,10.0,10.0,9.0,9.0,7,0.14 +25747,,,,,,,,0, +37620,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.09 +12285,,,,,,,,0, +20498,95.0,10.0,9.0,10.0,10.0,10.0,9.0,17,0.41 +38707,20.0,2.0,10.0,6.0,6.0,10.0,2.0,1,0.02 +50854,93.0,9.0,9.0,9.0,9.0,9.0,9.0,11,0.22 +48975,,,,,,,,0, +38109,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +42658,94.0,10.0,9.0,10.0,10.0,10.0,9.0,44,0.92 +17317,94.0,9.0,9.0,10.0,10.0,10.0,9.0,24,0.5 +65992,92.0,9.0,9.0,9.0,10.0,9.0,9.0,67,1.36 +69718,,,,,,,,0, +810,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.14 +8512,,,,,,,,0, +29074,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.04 +19916,86.0,9.0,9.0,9.0,10.0,9.0,9.0,18,0.39 +30758,,,,,,,,0, +63452,92.0,9.0,9.0,9.0,10.0,10.0,9.0,218,4.43 +21399,99.0,10.0,10.0,10.0,10.0,10.0,10.0,46,0.94 +55042,,,,,,,,0, +72,,,,,,,,0, +74870,92.0,9.0,9.0,10.0,10.0,9.0,9.0,6,0.13 +30364,93.0,9.0,8.0,9.0,9.0,10.0,9.0,15,0.3 +60558,97.0,10.0,9.0,10.0,10.0,9.0,9.0,6,0.13 +67206,100.0,10.0,10.0,10.0,10.0,10.0,10.0,21,1.43 +14178,,,,,,,,0, +52529,97.0,10.0,9.0,10.0,9.0,10.0,10.0,29,0.65 +41406,,,,,,,,0, +683,,,,,,,,0, +47288,90.0,9.0,8.0,10.0,9.0,10.0,9.0,77,1.57 +17977,97.0,10.0,10.0,10.0,10.0,9.0,10.0,66,1.76 +59944,86.0,9.0,9.0,9.0,9.0,10.0,9.0,87,1.84 +72967,,,,,,,,0, +35226,80.0,8.0,8.0,8.0,10.0,10.0,8.0,2,0.04 +57475,99.0,10.0,10.0,10.0,10.0,10.0,10.0,26,1.02 +8586,99.0,10.0,10.0,10.0,10.0,10.0,10.0,33,0.69 +55859,95.0,10.0,10.0,10.0,10.0,9.0,10.0,95,1.94 +12024,85.0,9.0,8.0,9.0,10.0,9.0,9.0,42,0.86 +7102,86.0,9.0,9.0,9.0,9.0,10.0,9.0,75,1.55 +24798,81.0,8.0,9.0,9.0,9.0,10.0,9.0,49,1.01 +41826,96.0,10.0,9.0,10.0,10.0,10.0,9.0,112,2.3 +42613,,,,,,,,0, +15577,97.0,10.0,9.0,10.0,10.0,10.0,10.0,18,1.12 +23126,88.0,8.0,9.0,9.0,9.0,9.0,9.0,159,3.23 +67693,99.0,10.0,10.0,10.0,10.0,9.0,10.0,18,0.41 +65552,99.0,10.0,10.0,10.0,10.0,10.0,10.0,31,0.63 +17786,97.0,10.0,10.0,10.0,10.0,10.0,9.0,21,0.43 +68907,100.0,10.0,10.0,10.0,10.0,10.0,10.0,22,0.57 +31487,97.0,10.0,10.0,10.0,10.0,10.0,10.0,26,0.54 +2648,85.0,9.0,8.0,9.0,9.0,9.0,9.0,61,1.25 +28822,,,,,,,,0, +37504,91.0,10.0,10.0,10.0,10.0,10.0,9.0,9,0.23 +15575,91.0,9.0,9.0,10.0,10.0,9.0,8.0,16,0.37 +73743,93.0,10.0,9.0,9.0,9.0,9.0,9.0,15,0.31 +67342,96.0,10.0,10.0,10.0,10.0,10.0,9.0,54,1.13 +75194,,,,,,,,0, +21926,80.0,10.0,6.0,7.0,10.0,9.0,9.0,2,0.04 +69659,94.0,10.0,9.0,10.0,10.0,10.0,10.0,29,0.59 +76948,98.0,10.0,10.0,10.0,10.0,9.0,10.0,11,0.23 +11536,100.0,9.0,8.0,9.0,10.0,9.0,9.0,3,0.08 +29489,94.0,10.0,10.0,10.0,10.0,9.0,9.0,19,0.44 +48828,,,,,,,,0, +67624,90.0,10.0,9.0,9.0,9.0,9.0,9.0,16,0.93 +51527,,,,,,,,0, +5943,92.0,9.0,9.0,10.0,10.0,9.0,9.0,19,0.63 +11328,,,,,,,,1,1.0 +6594,,,,,,,,0, +11921,85.0,9.0,9.0,9.0,9.0,8.0,9.0,191,3.9 +49447,93.0,9.0,10.0,10.0,10.0,9.0,9.0,25,0.51 +17040,,,,,,,,0, +56033,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +3982,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +8770,100.0,10.0,9.0,10.0,10.0,10.0,9.0,2,0.04 +53790,91.0,9.0,8.0,9.0,10.0,9.0,9.0,21,0.56 +53124,99.0,10.0,10.0,10.0,10.0,10.0,10.0,80,1.79 +42035,,,,,,,,0, +76899,92.0,10.0,9.0,9.0,10.0,9.0,9.0,35,0.78 +33585,94.0,10.0,9.0,9.0,10.0,9.0,9.0,89,1.86 +8018,95.0,10.0,10.0,10.0,10.0,10.0,9.0,12,0.26 +70033,91.0,9.0,9.0,10.0,9.0,9.0,9.0,27,0.6 +54118,95.0,10.0,9.0,10.0,10.0,9.0,9.0,11,0.23 +69258,97.0,10.0,9.0,10.0,10.0,9.0,10.0,7,0.16 +30435,,,,,,,,0, +33217,98.0,10.0,10.0,10.0,10.0,10.0,10.0,137,2.98 +22039,95.0,10.0,10.0,10.0,10.0,9.0,10.0,41,0.94 +17422,,,,,,,,0, +67021,,,,,,,,0, +38280,89.0,9.0,8.0,9.0,9.0,9.0,9.0,23,0.47 +23422,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.06 +27089,,,,,,,,0, +58590,93.0,10.0,10.0,10.0,9.0,9.0,10.0,3,0.07 +31198,91.0,10.0,9.0,9.0,10.0,10.0,10.0,16,0.37 +69696,,,,,,,,0, +13200,87.0,9.0,9.0,10.0,9.0,9.0,8.0,62,1.58 +28668,90.0,9.0,9.0,9.0,9.0,10.0,9.0,161,3.27 +19175,97.0,10.0,9.0,9.0,10.0,10.0,9.0,17,0.39 +21217,74.0,8.0,7.0,9.0,9.0,10.0,8.0,29,0.6 +15975,,,,,,,,0, +22229,80.0,8.0,8.0,9.0,9.0,10.0,8.0,40,0.83 +17508,97.0,10.0,10.0,10.0,10.0,10.0,9.0,20,0.45 +5087,,,,,,,,0, +16281,90.0,8.0,9.0,8.0,9.0,8.0,8.0,2,0.05 +6404,96.0,10.0,10.0,10.0,10.0,10.0,9.0,90,1.85 +10553,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +6856,98.0,10.0,10.0,10.0,10.0,10.0,10.0,71,1.87 +30995,,,,,,,,0, +64155,90.0,9.0,9.0,10.0,9.0,9.0,9.0,9,0.31 +31412,,,,,,,,0, +55487,99.0,10.0,10.0,10.0,10.0,9.0,10.0,28,0.58 +11704,,,,,,,,0, +36209,95.0,10.0,10.0,10.0,10.0,10.0,10.0,129,2.65 +47951,100.0,10.0,9.0,10.0,10.0,9.0,9.0,3,0.78 +63885,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.14 +16495,99.0,10.0,10.0,10.0,10.0,9.0,10.0,37,1.58 +10844,,,,,,,,0, +72288,94.0,10.0,9.0,9.0,9.0,9.0,9.0,20,0.52 +2742,80.0,8.0,8.0,8.0,9.0,9.0,8.0,5,0.16 +66077,99.0,10.0,10.0,10.0,10.0,10.0,10.0,57,1.24 +11308,96.0,10.0,10.0,9.0,10.0,9.0,10.0,24,1.03 +32302,94.0,9.0,10.0,9.0,10.0,10.0,9.0,25,0.52 +69116,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.17 +65592,100.0,10.0,10.0,10.0,10.0,8.0,10.0,4,0.56 +43112,94.0,10.0,9.0,10.0,10.0,10.0,9.0,10,0.23 +31263,93.0,9.0,9.0,10.0,10.0,9.0,8.0,4,0.13 +1356,88.0,9.0,9.0,10.0,10.0,8.0,8.0,17,0.36 +45404,73.0,7.0,7.0,8.0,7.0,9.0,7.0,3,0.2 +54749,,,,,,,,0, +52604,93.0,9.0,9.0,10.0,10.0,9.0,9.0,14,0.29 +58383,99.0,10.0,10.0,10.0,10.0,10.0,10.0,39,0.87 +36529,90.0,9.0,9.0,9.0,9.0,10.0,9.0,38,0.85 +55532,87.0,9.0,8.0,9.0,9.0,8.0,9.0,87,1.9 +8574,97.0,10.0,9.0,10.0,10.0,10.0,9.0,11,0.29 +72026,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +47939,94.0,10.0,9.0,10.0,10.0,10.0,9.0,68,1.55 +73425,83.0,9.0,8.0,9.0,9.0,9.0,8.0,127,2.61 +42620,87.0,9.0,9.0,10.0,8.0,9.0,8.0,14,0.31 +46534,,,,,,,,0, +24875,,,,,,,,0, +24751,,,,,,,,0, +60723,89.0,10.0,9.0,10.0,10.0,10.0,9.0,13,0.27 +7471,93.0,9.0,9.0,10.0,9.0,9.0,8.0,4,0.08 +31227,71.0,8.0,8.0,9.0,9.0,10.0,7.0,9,0.57 +43524,97.0,10.0,10.0,10.0,10.0,9.0,10.0,120,2.45 +73851,96.0,10.0,10.0,10.0,10.0,10.0,9.0,28,0.59 +39960,40.0,4.0,5.0,5.0,5.0,8.0,3.0,3,0.06 +46450,96.0,10.0,10.0,10.0,10.0,10.0,9.0,128,2.66 +30468,94.0,10.0,9.0,10.0,10.0,9.0,9.0,45,2.06 +47483,96.0,10.0,9.0,10.0,10.0,9.0,10.0,11,0.23 +37814,100.0,10.0,9.0,9.0,9.0,9.0,9.0,3,0.06 +18231,90.0,9.0,10.0,9.0,8.0,10.0,9.0,4,0.08 +66987,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.06 +54825,95.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.11 +54320,,,,,,,,0, +34045,100.0,10.0,9.0,10.0,9.0,10.0,10.0,10,0.21 +38273,80.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.06 +6933,94.0,10.0,9.0,10.0,9.0,9.0,9.0,9,0.2 +70712,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.14 +45747,86.0,9.0,8.0,10.0,10.0,9.0,9.0,82,1.71 +42178,47.0,5.0,5.0,7.0,5.0,9.0,5.0,3,0.06 +46718,96.0,10.0,10.0,10.0,10.0,9.0,10.0,113,2.51 +18210,97.0,10.0,10.0,10.0,10.0,9.0,9.0,7,0.15 +11542,90.0,9.0,10.0,10.0,10.0,10.0,10.0,3,0.07 +25475,,,,,,,,0, +55543,98.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.18 +73983,95.0,10.0,10.0,10.0,10.0,9.0,9.0,16,0.33 +4775,,,,,,,,0, +54408,89.0,10.0,9.0,10.0,10.0,9.0,9.0,9,0.23 +73126,89.0,9.0,9.0,9.0,10.0,9.0,9.0,98,2.0 +49546,98.0,10.0,10.0,10.0,10.0,10.0,10.0,94,2.07 +56944,92.0,10.0,9.0,10.0,10.0,9.0,9.0,5,0.1 +42172,93.0,10.0,9.0,9.0,9.0,9.0,9.0,70,1.43 +17695,97.0,10.0,10.0,9.0,9.0,10.0,9.0,7,0.14 +65679,,,,,,,,0, +64101,94.0,9.0,9.0,9.0,9.0,10.0,9.0,7,0.17 +22629,92.0,9.0,9.0,10.0,10.0,10.0,9.0,13,0.3 +8693,92.0,10.0,10.0,9.0,9.0,10.0,9.0,121,2.76 +45388,99.0,10.0,10.0,10.0,10.0,10.0,10.0,44,0.9 +37884,85.0,9.0,8.0,10.0,10.0,10.0,9.0,22,0.53 +19512,96.0,9.0,10.0,9.0,9.0,10.0,9.0,20,0.59 +18230,90.0,9.0,8.0,9.0,9.0,10.0,9.0,11,0.26 +4197,,,,,,,,0, +32655,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +72446,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.08 +70696,89.0,9.0,9.0,10.0,9.0,9.0,9.0,137,2.8 +45350,,,,,,,,0, +23568,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.23 +67939,84.0,9.0,8.0,9.0,9.0,9.0,9.0,5,0.1 +13522,97.0,9.0,10.0,10.0,10.0,9.0,9.0,18,0.4 +68151,93.0,10.0,9.0,9.0,10.0,9.0,9.0,13,0.27 +45809,,,,,,,,0, +3118,,,,,,,,0, +32375,100.0,10.0,10.0,10.0,10.0,6.0,10.0,1,0.02 +4732,97.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.32 +34131,,,,,,,,0, +72253,98.0,10.0,10.0,10.0,10.0,9.0,10.0,12,0.27 +64207,,,,,,,,0, +35921,97.0,10.0,9.0,10.0,10.0,8.0,9.0,20,0.42 +507,90.0,9.0,9.0,9.0,9.0,9.0,8.0,3,0.07 +6930,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +75255,,,,,,,,0, +70892,98.0,10.0,10.0,10.0,10.0,10.0,10.0,52,1.06 +19138,80.0,2.0,,,,,8.0,1,0.02 +48319,92.0,10.0,10.0,10.0,10.0,9.0,9.0,10,0.21 +3360,,,,,,,,0, +49722,84.0,9.0,9.0,9.0,10.0,9.0,8.0,25,0.58 +17769,98.0,10.0,10.0,10.0,10.0,10.0,10.0,203,4.36 +10996,80.0,9.0,7.0,8.0,8.0,8.0,8.0,3,0.07 +49601,80.0,8.0,7.0,9.0,9.0,7.0,8.0,4,0.08 +48502,,,,,,,,0, +48713,,,,,,,,0, +44399,90.0,9.0,9.0,10.0,10.0,9.0,9.0,55,1.14 +18595,93.0,9.0,9.0,10.0,10.0,9.0,10.0,40,0.88 +28863,96.0,9.0,9.0,10.0,9.0,9.0,10.0,11,0.37 +43047,80.0,9.0,5.0,8.0,9.0,8.0,8.0,3,0.06 +5020,94.0,9.0,10.0,10.0,10.0,10.0,10.0,59,1.22 +55498,97.0,10.0,10.0,10.0,10.0,10.0,10.0,200,4.97 +57257,98.0,10.0,10.0,10.0,10.0,10.0,10.0,64,1.32 +46892,,,,,,,,0, +76260,,,,,,,,0, +20206,,,,,,,,0, +2681,,,,,,,,0, +39097,100.0,9.0,10.0,10.0,10.0,10.0,9.0,11,0.23 +14271,80.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.04 +6861,98.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.17 +65709,96.0,10.0,10.0,10.0,10.0,10.0,9.0,230,4.81 +65161,89.0,9.0,9.0,9.0,10.0,9.0,9.0,70,1.52 +72751,100.0,10.0,10.0,10.0,10.0,10.0,10.0,289,6.42 +49169,87.0,10.0,9.0,10.0,10.0,7.0,10.0,5,0.13 +43302,80.0,10.0,10.0,10.0,8.0,8.0,8.0,1,0.03 +69266,96.0,10.0,10.0,10.0,10.0,10.0,9.0,33,0.68 +24075,,,,,,,,0, +51413,89.0,9.0,9.0,10.0,9.0,9.0,9.0,43,0.92 +29745,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.04 +76982,,,,,,,,2,0.27 +48388,98.0,10.0,10.0,10.0,10.0,10.0,10.0,105,2.32 +63646,96.0,9.0,10.0,10.0,10.0,10.0,10.0,67,1.39 +47706,92.0,9.0,9.0,10.0,10.0,10.0,9.0,19,0.47 +32319,,,,,,,,0, +47719,,,,,,,,0, +58203,98.0,10.0,10.0,10.0,10.0,10.0,10.0,22,2.42 +66820,96.0,10.0,10.0,10.0,10.0,10.0,9.0,50,1.03 +908,85.0,9.0,9.0,9.0,9.0,10.0,9.0,43,0.89 +51452,,,,,,,,0, +26285,89.0,9.0,9.0,10.0,10.0,9.0,9.0,17,0.37 +3923,87.0,9.0,9.0,9.0,9.0,9.0,9.0,89,1.92 +15619,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.18 +8594,,,,,,,,0, +6664,97.0,10.0,10.0,10.0,10.0,9.0,10.0,70,1.67 +8470,96.0,10.0,10.0,10.0,10.0,9.0,10.0,37,0.78 +37410,,,,,,,,0, +34591,91.0,9.0,10.0,10.0,10.0,10.0,10.0,7,0.2 +62116,80.0,10.0,8.0,8.0,10.0,10.0,10.0,2,0.06 +35522,,,,,,,,0, +38091,92.0,9.0,9.0,10.0,10.0,9.0,9.0,113,2.48 +39515,,,,,,,,0, +57048,98.0,10.0,10.0,10.0,10.0,10.0,9.0,10,0.21 +33846,93.0,9.0,9.0,10.0,10.0,10.0,9.0,39,0.82 +68908,93.0,10.0,9.0,10.0,10.0,9.0,9.0,6,0.13 +2841,88.0,9.0,9.0,9.0,9.0,10.0,9.0,20,0.42 +9386,98.0,10.0,10.0,10.0,10.0,10.0,10.0,41,0.86 +59450,,,,,,,,0, +54721,100.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.94 +70239,91.0,9.0,8.0,10.0,10.0,9.0,10.0,19,0.4 +67509,,,,,,,,0, +8915,95.0,10.0,9.0,10.0,10.0,9.0,9.0,11,0.23 +19690,95.0,10.0,10.0,10.0,10.0,10.0,10.0,19,0.4 +37974,88.0,10.0,9.0,10.0,10.0,8.0,9.0,6,0.13 +49246,80.0,7.0,6.0,9.0,9.0,8.0,8.0,2,0.15 +61530,88.0,9.0,9.0,10.0,10.0,10.0,9.0,50,1.04 +47161,,,,,,,,0, +44840,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.48 +64860,98.0,10.0,10.0,10.0,10.0,10.0,10.0,73,1.53 +25347,99.0,10.0,10.0,10.0,10.0,9.0,10.0,15,0.59 +65200,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.03 +41318,,,,,,,,0, +25791,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +44065,,,,,,,,0, +66858,92.0,9.0,9.0,10.0,10.0,10.0,9.0,41,0.89 +39885,95.0,10.0,10.0,10.0,10.0,9.0,9.0,107,2.47 +70376,99.0,10.0,10.0,10.0,10.0,10.0,10.0,25,0.54 +1441,97.0,10.0,10.0,10.0,10.0,9.0,10.0,60,1.4 +49530,96.0,10.0,9.0,10.0,10.0,10.0,10.0,9,0.19 +54513,96.0,10.0,9.0,10.0,10.0,9.0,10.0,28,0.63 +11749,,,,,,,,0, +47432,,,,,,,,0, +75376,98.0,10.0,10.0,10.0,10.0,10.0,10.0,25,0.52 +10290,95.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.12 +33831,100.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +16478,,,,,,,,0, +3913,,,,,,,,0, +67604,,,,,,,,0, +47466,88.0,10.0,8.0,10.0,10.0,9.0,9.0,5,0.11 +18729,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +61146,97.0,10.0,10.0,10.0,10.0,9.0,10.0,118,2.42 +57762,,,,,,,,0, +34467,,,,,,,,0, +68126,93.0,10.0,9.0,10.0,10.0,10.0,10.0,28,0.63 +38567,97.0,10.0,9.0,10.0,10.0,10.0,9.0,48,1.23 +14940,88.0,9.0,9.0,9.0,9.0,9.0,9.0,204,4.28 +73120,92.0,10.0,9.0,10.0,10.0,10.0,9.0,33,0.77 +7410,60.0,8.0,6.0,8.0,8.0,8.0,10.0,1,0.02 +55354,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.02 +15004,,,,,,,,3,0.09 +3890,65.0,6.0,5.0,9.0,9.0,8.0,7.0,4,0.09 +20923,80.0,6.0,10.0,6.0,8.0,10.0,8.0,1,0.02 +52264,90.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.11 +51902,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.53 +76557,91.0,9.0,10.0,10.0,10.0,9.0,9.0,45,0.96 +64095,,,,,,,,0, +15614,97.0,10.0,10.0,10.0,10.0,10.0,10.0,25,0.7 +30043,,,,,,,,0, +31497,85.0,9.0,7.0,10.0,10.0,10.0,9.0,23,0.57 +59943,,,,,,,,0, +52503,91.0,9.0,9.0,10.0,10.0,9.0,9.0,210,4.3 +32278,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.56 +64775,96.0,9.0,9.0,10.0,10.0,9.0,9.0,6,0.13 +21261,92.0,10.0,9.0,10.0,10.0,9.0,9.0,143,3.02 +20326,96.0,10.0,10.0,10.0,10.0,9.0,9.0,151,3.14 +56891,93.0,10.0,10.0,10.0,10.0,9.0,10.0,12,0.25 +49119,97.0,10.0,9.0,10.0,10.0,9.0,10.0,14,0.34 +14333,97.0,10.0,10.0,10.0,10.0,10.0,9.0,125,2.69 +73248,,,,,,,,0, +43286,60.0,6.0,2.0,10.0,10.0,6.0,6.0,1,0.02 +47650,100.0,10.0,9.0,9.0,10.0,9.0,10.0,3,0.06 +33339,92.0,9.0,9.0,10.0,10.0,9.0,9.0,42,0.91 +58381,89.0,9.0,9.0,10.0,10.0,10.0,9.0,69,1.43 +35801,91.0,10.0,9.0,10.0,10.0,9.0,9.0,180,3.76 +19597,93.0,10.0,9.0,10.0,10.0,9.0,9.0,35,1.12 +59894,88.0,9.0,8.0,9.0,9.0,8.0,9.0,20,0.42 +47027,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.1 +3349,97.0,10.0,10.0,10.0,10.0,10.0,10.0,84,1.83 +61039,100.0,10.0,10.0,9.0,10.0,10.0,9.0,5,0.1 +15558,96.0,10.0,10.0,9.0,9.0,10.0,10.0,5,0.1 +49557,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.15 +46721,92.0,9.0,9.0,9.0,10.0,10.0,9.0,76,1.59 +19563,100.0,10.0,10.0,10.0,10.0,9.0,10.0,12,0.25 +32948,,,,,,,,0, +53908,,,,,,,,0, +25327,98.0,10.0,10.0,10.0,10.0,10.0,10.0,79,1.7 +33598,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.15 +22958,98.0,10.0,10.0,10.0,10.0,10.0,10.0,35,0.73 +23042,,,,,,,,0, +26427,92.0,9.0,8.0,10.0,8.0,10.0,9.0,6,0.13 +37936,95.0,9.0,10.0,10.0,10.0,10.0,9.0,68,1.53 +7600,95.0,9.0,9.0,10.0,10.0,9.0,9.0,37,0.77 +61965,96.0,10.0,9.0,10.0,10.0,9.0,10.0,6,0.2 +27737,95.0,10.0,9.0,10.0,10.0,10.0,9.0,79,1.65 +37730,97.0,10.0,10.0,10.0,10.0,9.0,9.0,30,0.68 +56682,99.0,10.0,10.0,10.0,10.0,10.0,10.0,21,0.47 +66688,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +30034,,,,,,,,1,0.03 +48755,99.0,10.0,10.0,10.0,10.0,10.0,10.0,35,0.75 +5511,80.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.02 +76726,,,,,,,,0, +1772,89.0,10.0,9.0,10.0,10.0,9.0,9.0,33,0.69 +45366,,,,,,,,0, +31451,94.0,10.0,10.0,10.0,10.0,8.0,10.0,360,8.03 +2459,,,,,,,,0, +32532,80.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.31 +45859,90.0,8.0,8.0,10.0,10.0,9.0,9.0,12,0.25 +46845,89.0,10.0,10.0,10.0,9.0,9.0,9.0,58,1.3 +72833,97.0,10.0,10.0,10.0,10.0,8.0,10.0,6,0.12 +55407,80.0,8.0,8.0,10.0,10.0,6.0,8.0,1,0.02 +14155,100.0,10.0,10.0,10.0,10.0,9.0,9.0,2,0.04 +9391,93.0,9.0,9.0,9.0,10.0,10.0,9.0,12,0.28 +21691,97.0,10.0,10.0,10.0,10.0,10.0,10.0,122,2.55 +66719,,,,,,,,0, +27397,97.0,10.0,10.0,10.0,10.0,10.0,10.0,238,4.99 +53065,,,,,,,,0, +55285,93.0,9.0,10.0,10.0,10.0,9.0,9.0,28,0.59 +76108,95.0,10.0,10.0,10.0,10.0,10.0,9.0,23,0.55 +33591,83.0,9.0,8.0,10.0,10.0,9.0,9.0,19,0.46 +12055,,,,,,,,0, +9948,97.0,10.0,10.0,9.0,10.0,9.0,9.0,64,1.33 +16465,80.0,9.0,6.0,9.0,9.0,9.0,8.0,4,0.19 +14240,,,,,,,,0, +71777,,,,,,,,0, +34900,,,,,,,,0, +73736,,,,,,,,0, +74391,96.0,10.0,10.0,10.0,10.0,10.0,9.0,80,1.67 +3175,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.14 +69448,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +4499,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.02 +67133,93.0,10.0,9.0,10.0,10.0,10.0,9.0,103,2.3 +73503,93.0,10.0,9.0,10.0,10.0,10.0,9.0,300,6.19 +73225,81.0,9.0,8.0,9.0,9.0,10.0,8.0,19,0.59 +40542,97.0,10.0,10.0,10.0,10.0,9.0,9.0,6,0.16 +36818,97.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.14 +71835,98.0,10.0,10.0,10.0,10.0,9.0,10.0,11,0.27 +55881,,,,,,,,0, +48726,,,,,,,,0, +17208,95.0,10.0,10.0,10.0,10.0,10.0,9.0,360,7.4 +47017,96.0,10.0,9.0,10.0,10.0,9.0,9.0,5,0.1 +41324,93.0,9.0,9.0,10.0,10.0,7.0,9.0,3,0.08 +6383,91.0,9.0,8.0,10.0,10.0,9.0,9.0,56,1.17 +13212,93.0,10.0,10.0,9.0,9.0,9.0,9.0,6,0.13 +34081,,,,,,,,0, +73004,,,,,,,,0, +67788,93.0,9.0,10.0,10.0,10.0,10.0,9.0,9,0.19 +42366,,,,,,,,0, +38741,96.0,10.0,10.0,10.0,10.0,9.0,10.0,82,3.25 +62622,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.09 +66392,93.0,9.0,9.0,10.0,10.0,10.0,9.0,37,0.77 +71714,,,,,,,,0, +19627,,,,,,,,0, +24172,93.0,9.0,10.0,10.0,10.0,9.0,10.0,12,0.28 +17,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.23 +63956,87.0,9.0,8.0,9.0,9.0,9.0,9.0,87,1.92 +256,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +3602,91.0,9.0,9.0,10.0,10.0,10.0,9.0,140,2.93 +50922,60.0,9.0,6.0,7.0,9.0,9.0,8.0,2,0.04 +63554,,,,,,,,0, +13572,,,,,,,,0, +370,80.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.02 +22920,97.0,10.0,10.0,10.0,10.0,10.0,9.0,66,1.46 +61148,100.0,10.0,8.0,10.0,10.0,10.0,9.0,2,0.07 +48598,,,,,,,,0, +48486,,,,,,,,0, +72013,,,,,,,,0, +6350,,,,,,,,0, +32896,,,,,,,,0, +64515,97.0,10.0,9.0,10.0,10.0,9.0,9.0,33,0.73 +8213,,,,,,,,0, +46370,96.0,10.0,9.0,10.0,10.0,9.0,9.0,21,0.68 +56508,82.0,8.0,8.0,9.0,9.0,9.0,8.0,130,2.68 +12760,96.0,10.0,10.0,10.0,10.0,10.0,9.0,51,2.0 +46897,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.09 +64027,95.0,9.0,8.0,10.0,10.0,10.0,9.0,72,1.65 +7914,86.0,10.0,8.0,9.0,10.0,9.0,8.0,10,0.23 +7568,97.0,10.0,10.0,10.0,10.0,10.0,9.0,146,3.21 +3996,96.0,10.0,10.0,10.0,10.0,10.0,9.0,74,1.56 +63251,,,,,,,,0, +25066,94.0,9.0,9.0,10.0,10.0,10.0,9.0,24,0.5 +47553,86.0,9.0,8.0,9.0,9.0,9.0,8.0,69,1.46 +59842,,,,,,,,0, +37174,80.0,8.0,8.0,7.0,8.0,7.0,8.0,8,2.0 +13382,95.0,10.0,10.0,10.0,10.0,9.0,9.0,17,0.38 +75777,,,,,,,,0, +66008,,,,,,,,0, +42294,80.0,10.0,10.0,8.0,10.0,10.0,9.0,2,0.04 +72964,94.0,10.0,10.0,10.0,10.0,9.0,9.0,35,1.12 +49502,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.13 +33253,,,,,,,,0, +46761,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.32 +11539,86.0,9.0,9.0,9.0,9.0,9.0,9.0,285,6.24 +34248,94.0,10.0,10.0,10.0,10.0,10.0,9.0,49,1.14 +2014,95.0,10.0,9.0,10.0,10.0,9.0,10.0,8,0.19 +53951,88.0,9.0,9.0,9.0,9.0,10.0,9.0,93,1.99 +14074,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.04 +26850,,,,,,,,0, +25349,90.0,10.0,9.0,10.0,9.0,10.0,9.0,11,0.47 +8017,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.03 +51722,91.0,9.0,9.0,10.0,10.0,9.0,9.0,26,0.54 +53949,86.0,9.0,9.0,9.0,9.0,10.0,9.0,176,3.65 +63634,89.0,9.0,9.0,9.0,9.0,9.0,9.0,149,3.15 +19016,85.0,9.0,9.0,9.0,9.0,9.0,9.0,270,5.63 +29031,84.0,9.0,9.0,9.0,9.0,10.0,9.0,300,6.25 +70641,,,,,,,,0, +72480,99.0,10.0,10.0,10.0,10.0,10.0,10.0,167,3.6 +70058,95.0,10.0,9.0,10.0,10.0,10.0,9.0,18,0.38 +28372,,,,,,,,0, +40124,,,,,,,,0, +9217,87.0,9.0,9.0,9.0,9.0,9.0,9.0,306,6.34 +14423,88.0,9.0,9.0,9.0,10.0,9.0,9.0,73,1.54 +55503,,,,,,,,1,0.02 +70761,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.26 +60393,,,,,,,,0, +73071,86.0,8.0,9.0,9.0,9.0,9.0,8.0,7,0.15 +3491,,,,,,,,0, +24745,97.0,10.0,10.0,10.0,10.0,10.0,10.0,31,0.71 +40341,,,,,,,,0, +64257,83.0,8.0,8.0,9.0,10.0,9.0,8.0,23,0.56 +15817,100.0,8.0,10.0,10.0,10.0,10.0,8.0,1,0.02 +11031,,,,,,,,0, +32628,,,,,,,,0, +60151,96.0,10.0,8.0,10.0,10.0,10.0,9.0,27,0.57 +16040,92.0,9.0,9.0,10.0,10.0,9.0,9.0,77,1.63 +19127,77.0,9.0,8.0,10.0,9.0,7.0,9.0,7,0.15 +14695,93.0,10.0,9.0,10.0,9.0,10.0,10.0,4,0.08 +72584,80.0,8.0,8.0,10.0,9.0,10.0,8.0,66,1.49 +66919,,,,,,,,0, +64871,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.31 +31943,93.0,9.0,9.0,10.0,10.0,9.0,9.0,3,0.06 +20972,,,,,,,,0, +20338,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.17 +23497,98.0,10.0,10.0,10.0,10.0,10.0,10.0,22,0.45 +13754,94.0,10.0,10.0,10.0,10.0,10.0,10.0,29,0.61 +76445,88.0,10.0,9.0,10.0,10.0,8.0,9.0,10,0.22 +7025,,,,,,,,0, +42642,90.0,9.0,9.0,10.0,9.0,9.0,9.0,154,4.06 +35840,88.0,9.0,8.0,9.0,9.0,9.0,9.0,230,4.81 +46359,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.16 +38067,,,,,,,,0, +60336,91.0,9.0,8.0,9.0,10.0,9.0,9.0,33,0.73 +4053,,,,,,,,0, +14904,100.0,9.0,10.0,10.0,10.0,9.0,10.0,3,0.07 +52493,,,,,,,,0, +20231,94.0,10.0,9.0,10.0,10.0,9.0,9.0,31,0.66 +25939,90.0,8.0,6.0,10.0,10.0,10.0,10.0,2,0.04 +2632,100.0,10.0,10.0,9.0,9.0,9.0,9.0,2,0.05 +60920,,,,,,,,0, +21608,88.0,10.0,8.0,10.0,10.0,10.0,9.0,8,0.2 +56098,,,,,,,,0, +39472,94.0,10.0,10.0,10.0,10.0,9.0,9.0,39,0.83 +65778,96.0,10.0,10.0,10.0,10.0,10.0,9.0,141,3.61 +65801,97.0,10.0,10.0,10.0,10.0,9.0,9.0,19,0.42 +9861,,,,,,,,0, +50147,60.0,10.0,2.0,8.0,10.0,10.0,6.0,1,0.02 +70450,95.0,9.0,8.0,9.0,9.0,10.0,10.0,12,0.29 +30647,91.0,10.0,10.0,10.0,10.0,10.0,9.0,35,0.73 +38930,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.09 +67762,89.0,9.0,9.0,9.0,9.0,9.0,9.0,26,0.54 +51244,,,,,,,,0, +49738,96.0,9.0,9.0,10.0,10.0,10.0,10.0,17,0.4 +55507,96.0,10.0,9.0,10.0,10.0,10.0,10.0,13,1.31 +7619,,,,,,,,0, +37856,90.0,9.0,9.0,10.0,10.0,10.0,9.0,13,0.27 +18591,90.0,9.0,9.0,9.0,9.0,8.0,9.0,6,0.14 +16108,89.0,9.0,9.0,10.0,9.0,9.0,8.0,16,0.33 +22548,,,,,,,,0, +28600,95.0,10.0,10.0,10.0,10.0,10.0,9.0,20,0.44 +53371,,,,,,,,0, +53702,93.0,10.0,9.0,10.0,10.0,9.0,9.0,100,2.27 +20719,,,,,,,,0, +28126,,,,,,,,0, +27681,100.0,,8.0,,10.0,,,1,0.03 +72554,94.0,10.0,9.0,10.0,10.0,10.0,10.0,239,5.31 +74074,90.0,10.0,8.0,10.0,10.0,10.0,9.0,25,0.52 +32171,84.0,10.0,9.0,8.0,8.0,9.0,8.0,7,0.15 +58070,98.0,10.0,10.0,10.0,10.0,9.0,10.0,36,0.77 +67467,,,,,,,,0, +42894,,,,,,,,0, +63869,,,,,,,,0, +1479,96.0,10.0,10.0,10.0,10.0,9.0,10.0,57,1.24 +55845,97.0,10.0,10.0,10.0,10.0,10.0,10.0,19,0.4 +39526,100.0,10.0,9.0,10.0,9.0,10.0,9.0,3,0.06 +69709,96.0,10.0,9.0,10.0,9.0,10.0,10.0,15,0.31 +1541,,,,,,,,0, +61555,92.0,9.0,9.0,10.0,10.0,9.0,9.0,61,1.28 +66069,,,,,,,,0, +43217,60.0,6.0,4.0,6.0,6.0,8.0,6.0,3,0.07 +70878,80.0,8.0,8.0,8.0,8.0,10.0,8.0,1,0.02 +59510,100.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +29824,92.0,10.0,10.0,10.0,10.0,10.0,9.0,10,0.26 +20647,80.0,10.0,10.0,8.0,10.0,8.0,10.0,2,0.17 +21238,90.0,9.0,9.0,9.0,9.0,9.0,9.0,2,0.05 +14171,80.0,9.0,7.0,8.0,10.0,10.0,9.0,4,0.1 +9493,93.0,9.0,9.0,10.0,10.0,10.0,9.0,41,0.9 +62355,96.0,10.0,9.0,10.0,10.0,10.0,9.0,31,0.65 +33690,96.0,10.0,10.0,10.0,10.0,10.0,10.0,35,0.73 +2600,97.0,10.0,10.0,10.0,10.0,10.0,10.0,28,0.59 +445,90.0,10.0,8.0,10.0,10.0,9.0,9.0,2,0.11 +59480,100.0,8.0,6.0,8.0,8.0,8.0,10.0,1,0.02 +8617,,,,,,,,0, +52764,97.0,10.0,9.0,10.0,10.0,10.0,10.0,22,0.46 +32075,,,,,,,,0, +13738,98.0,10.0,10.0,10.0,10.0,10.0,10.0,40,0.84 +66579,,,,,,,,0, +24129,97.0,10.0,10.0,10.0,10.0,10.0,10.0,348,7.32 +37293,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +39854,99.0,10.0,10.0,10.0,10.0,10.0,10.0,31,0.67 +8282,97.0,10.0,10.0,10.0,10.0,9.0,9.0,14,0.81 +66118,90.0,9.0,9.0,10.0,10.0,10.0,9.0,118,2.46 +62049,87.0,9.0,9.0,10.0,10.0,10.0,10.0,6,0.13 +37514,96.0,10.0,10.0,10.0,10.0,10.0,10.0,134,2.85 +64799,85.0,10.0,7.0,10.0,10.0,9.0,9.0,5,0.19 +22864,,,,,,,,0, +67025,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +23261,,,,,,,,0, +59888,,,,,,,,0, +59367,100.0,10.0,10.0,10.0,10.0,10.0,10.0,59,1.25 +73952,,,,,,,,0, +36448,93.0,10.0,9.0,10.0,10.0,9.0,9.0,20,0.42 +4056,100.0,10.0,9.0,10.0,10.0,10.0,9.0,8,0.2 +55451,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.14 +19989,90.0,9.0,10.0,10.0,8.0,8.0,10.0,2,0.04 +39293,,,,,,,,0, +46714,83.0,9.0,8.0,9.0,9.0,10.0,8.0,123,2.57 +56563,96.0,10.0,10.0,10.0,10.0,10.0,10.0,44,0.94 +75123,50.0,4.0,3.0,6.0,5.0,9.0,5.0,2,0.05 +39125,97.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.3 +49816,91.0,10.0,9.0,10.0,10.0,9.0,9.0,9,0.99 +20023,,,,,,,,0, +21397,93.0,10.0,10.0,10.0,10.0,10.0,9.0,112,2.5 +24599,96.0,10.0,10.0,10.0,10.0,9.0,10.0,5,1.34 +55389,,,,,,,,0, +17792,,,,,,,,0, +69705,85.0,10.0,8.0,10.0,10.0,9.0,9.0,25,0.52 +68616,89.0,9.0,9.0,10.0,10.0,9.0,9.0,15,0.33 +76694,98.0,10.0,10.0,10.0,10.0,10.0,10.0,80,1.88 +1178,93.0,7.0,9.0,10.0,10.0,10.0,9.0,3,0.07 +16273,,,,,,,,0, +32976,90.0,9.0,9.0,10.0,10.0,10.0,9.0,12,0.28 +11116,89.0,9.0,8.0,9.0,9.0,9.0,9.0,7,0.15 +76095,98.0,10.0,10.0,10.0,10.0,10.0,10.0,66,3.33 +48811,86.0,9.0,8.0,9.0,9.0,9.0,9.0,96,2.24 +55876,70.0,8.0,8.0,8.0,8.0,7.0,7.0,2,0.05 +62350,,,,,,,,0, +67412,96.0,10.0,10.0,10.0,10.0,10.0,10.0,36,0.89 +68077,86.0,9.0,9.0,9.0,10.0,10.0,9.0,48,1.26 +55801,98.0,10.0,10.0,10.0,10.0,10.0,10.0,52,1.1 +12931,73.0,8.0,7.0,8.0,9.0,9.0,8.0,50,1.18 +41988,96.0,10.0,10.0,10.0,10.0,9.0,10.0,17,0.42 +61503,80.0,6.0,8.0,8.0,10.0,8.0,8.0,1,0.02 +15005,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +1523,94.0,10.0,9.0,10.0,10.0,9.0,10.0,11,0.26 +51789,,,,,,,,0, +54663,100.0,10.0,9.0,10.0,10.0,9.0,9.0,3,0.13 +45504,90.0,10.0,8.0,9.0,9.0,10.0,9.0,6,0.13 +39341,,,,,,,,0, +9387,,,,,,,,0, +71616,97.0,10.0,10.0,10.0,10.0,10.0,10.0,208,4.35 +27354,96.0,10.0,9.0,10.0,10.0,9.0,9.0,40,0.89 +3590,97.0,10.0,9.0,10.0,10.0,10.0,10.0,37,0.84 +70870,92.0,9.0,10.0,10.0,10.0,9.0,9.0,293,6.22 +61587,93.0,9.0,9.0,9.0,10.0,10.0,9.0,24,0.5 +49999,,,,,,,,0, +46635,,,,,,,,0, +47317,83.0,9.0,9.0,9.0,10.0,10.0,8.0,20,0.46 +42855,,,,,,,,1,0.04 +20658,86.0,10.0,9.0,9.0,10.0,10.0,8.0,30,0.66 +32378,,,,,,,,0, +73951,96.0,10.0,9.0,10.0,10.0,10.0,10.0,144,3.01 +68263,100.0,10.0,9.0,10.0,10.0,10.0,10.0,7,0.16 +56414,,,,,,,,0, +14208,77.0,8.0,7.0,9.0,9.0,9.0,8.0,60,1.43 +45271,79.0,8.0,7.0,9.0,9.0,9.0,8.0,47,1.01 +47904,94.0,9.0,9.0,10.0,10.0,10.0,9.0,15,0.41 +14602,96.0,10.0,10.0,10.0,10.0,10.0,9.0,94,2.04 +48223,93.0,9.0,9.0,9.0,9.0,9.0,9.0,48,1.12 +11885,91.0,10.0,9.0,10.0,10.0,9.0,9.0,9,0.27 +55526,98.0,10.0,10.0,10.0,10.0,10.0,10.0,60,1.34 +58139,92.0,9.0,9.0,9.0,9.0,10.0,9.0,12,0.27 +33348,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +40878,99.0,10.0,10.0,10.0,10.0,10.0,9.0,30,1.8 +2530,93.0,9.0,9.0,10.0,10.0,10.0,9.0,19,0.41 +3693,89.0,9.0,9.0,9.0,10.0,9.0,9.0,174,3.75 +31428,95.0,10.0,10.0,10.0,10.0,9.0,9.0,16,0.34 +59154,94.0,10.0,10.0,10.0,10.0,9.0,9.0,79,1.68 +60215,93.0,10.0,10.0,10.0,10.0,10.0,9.0,97,2.09 +3047,80.0,6.0,4.0,10.0,10.0,8.0,8.0,1,0.02 +27530,92.0,10.0,9.0,10.0,10.0,9.0,9.0,196,4.3 +5300,,,,,,,,0, +61807,93.0,10.0,10.0,10.0,10.0,10.0,9.0,53,1.27 +73729,98.0,10.0,10.0,10.0,10.0,10.0,10.0,255,5.45 +73081,89.0,9.0,8.0,9.0,9.0,9.0,9.0,50,1.06 +35333,,,,,,,,0, +2437,95.0,10.0,10.0,10.0,10.0,10.0,9.0,59,1.28 +8405,90.0,9.0,9.0,10.0,10.0,9.0,9.0,164,3.48 +56145,100.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.27 +28670,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.38 +21131,95.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.09 +41409,94.0,10.0,10.0,10.0,10.0,9.0,10.0,62,1.31 +43969,75.0,8.0,9.0,9.0,9.0,10.0,8.0,8,0.18 +36838,93.0,9.0,9.0,10.0,10.0,9.0,9.0,27,0.8 +46874,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.06 +70369,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.35 +69820,,,,,,,,0, +29799,96.0,10.0,10.0,10.0,10.0,10.0,10.0,51,1.09 +13456,94.0,9.0,10.0,10.0,10.0,8.0,10.0,11,0.24 +30054,99.0,10.0,10.0,10.0,10.0,10.0,10.0,69,1.49 +2610,88.0,9.0,9.0,9.0,9.0,10.0,9.0,104,2.2 +59032,90.0,9.0,9.0,9.0,10.0,10.0,10.0,2,0.06 +7775,,,,,,,,0, +32737,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.07 +32036,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.02 +22811,80.0,10.0,10.0,10.0,10.0,10.0,8.0,1,1.0 +36365,97.0,10.0,10.0,10.0,10.0,9.0,9.0,100,2.17 +30192,90.0,10.0,8.0,10.0,10.0,8.0,9.0,2,0.08 +54902,97.0,10.0,10.0,10.0,10.0,9.0,10.0,158,3.39 +28104,88.0,9.0,8.0,9.0,9.0,9.0,9.0,35,0.77 +35043,98.0,10.0,10.0,10.0,10.0,9.0,9.0,20,0.43 +52565,,,,,,,,0, +25701,,,,,,,,0, +67968,96.0,10.0,10.0,10.0,10.0,10.0,10.0,168,3.64 +56776,92.0,10.0,9.0,10.0,9.0,8.0,9.0,18,0.41 +49220,96.0,10.0,9.0,9.0,10.0,9.0,9.0,18,0.4 +43957,100.0,8.0,8.0,9.0,10.0,10.0,10.0,2,0.06 +5241,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.61 +49029,97.0,9.0,10.0,10.0,10.0,10.0,10.0,13,0.29 +71994,95.0,10.0,9.0,10.0,10.0,9.0,9.0,43,0.93 +57171,93.0,9.0,9.0,10.0,10.0,10.0,9.0,48,1.06 +37495,99.0,10.0,9.0,10.0,10.0,10.0,9.0,21,0.47 +66636,,,,,,,,0, +51042,94.0,9.0,10.0,10.0,10.0,9.0,9.0,8,0.18 +26820,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.2 +60923,94.0,10.0,10.0,10.0,10.0,9.0,10.0,39,0.89 +74047,,,,,,,,0, +56338,100.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.32 +18891,100.0,9.0,9.0,10.0,10.0,10.0,9.0,3,0.09 +21475,,,,,,,,0, +1488,,,,,,,,0, +27057,,,,,,,,0, +68014,99.0,10.0,10.0,10.0,10.0,10.0,10.0,34,0.74 +15591,88.0,9.0,9.0,10.0,10.0,10.0,8.0,32,1.07 +51411,93.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.15 +11874,95.0,10.0,10.0,10.0,10.0,9.0,10.0,16,0.79 +50725,100.0,9.0,10.0,10.0,10.0,10.0,10.0,3,0.45 +40947,,,,,,,,0, +33750,87.0,9.0,9.0,9.0,9.0,9.0,9.0,27,0.61 +44713,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.09 +51926,85.0,9.0,9.0,9.0,9.0,10.0,9.0,129,2.75 +43684,91.0,10.0,9.0,10.0,10.0,9.0,9.0,15,0.33 +33401,92.0,10.0,9.0,10.0,10.0,9.0,9.0,15,0.33 +73928,,,,,,,,0, +76060,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +58790,98.0,10.0,10.0,10.0,10.0,10.0,10.0,32,0.83 +28978,94.0,10.0,9.0,10.0,10.0,9.0,9.0,98,2.26 +16065,92.0,9.0,9.0,10.0,10.0,9.0,9.0,19,0.4 +65880,78.0,8.0,10.0,9.0,9.0,9.0,8.0,10,1.48 +55973,,,,,,,,0, +17734,96.0,10.0,10.0,10.0,10.0,10.0,9.0,10,0.23 +6582,87.0,9.0,9.0,9.0,10.0,10.0,9.0,22,0.48 +21642,80.0,8.0,5.0,9.0,9.0,7.0,8.0,2,0.11 +35354,94.0,10.0,9.0,9.0,10.0,10.0,9.0,21,0.46 +1738,98.0,10.0,9.0,10.0,10.0,10.0,10.0,12,0.26 +50526,96.0,10.0,9.0,10.0,10.0,10.0,9.0,9,0.22 +65233,99.0,10.0,10.0,10.0,10.0,9.0,9.0,27,0.9 +66160,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.13 +54765,60.0,6.0,6.0,8.0,8.0,4.0,5.0,2,0.04 +14490,86.0,9.0,9.0,9.0,9.0,9.0,9.0,23,0.49 +58859,95.0,10.0,9.0,10.0,10.0,9.0,10.0,31,0.66 +13510,84.0,9.0,8.0,9.0,9.0,8.0,8.0,23,0.49 +13468,99.0,10.0,10.0,10.0,10.0,9.0,10.0,48,1.03 +51489,98.0,10.0,9.0,10.0,10.0,10.0,10.0,36,0.87 +49476,96.0,10.0,10.0,10.0,10.0,10.0,10.0,256,5.45 +19471,90.0,10.0,9.0,10.0,9.0,9.0,9.0,14,0.32 +4206,100.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.15 +5485,80.0,8.0,6.0,8.0,10.0,10.0,,1,0.02 +60265,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +46294,,,,,,,,0, +65810,92.0,10.0,9.0,10.0,10.0,9.0,9.0,35,0.76 +41852,,,,,,,,0, +72010,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.21 +59581,90.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.1 +50247,95.0,10.0,9.0,10.0,10.0,9.0,9.0,28,0.64 +28344,97.0,10.0,10.0,10.0,10.0,10.0,10.0,150,3.19 +16518,97.0,10.0,9.0,10.0,10.0,10.0,9.0,7,0.16 +63001,98.0,10.0,10.0,10.0,10.0,10.0,10.0,67,1.42 +24619,,,,,,,,1,0.03 +15953,95.0,10.0,10.0,10.0,10.0,8.0,10.0,93,1.99 +70840,92.0,10.0,10.0,10.0,10.0,9.0,9.0,13,0.3 +73654,92.0,9.0,7.0,9.0,10.0,10.0,9.0,13,0.28 +49198,94.0,10.0,10.0,10.0,10.0,9.0,10.0,236,5.07 +74181,93.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.3 +75843,92.0,9.0,9.0,9.0,10.0,9.0,9.0,6,0.13 +40481,98.0,10.0,10.0,10.0,10.0,10.0,10.0,90,3.17 +3842,96.0,10.0,10.0,10.0,10.0,9.0,9.0,125,2.71 +63309,93.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.22 +74371,89.0,9.0,9.0,10.0,9.0,8.0,9.0,70,1.51 +51727,100.0,10.0,10.0,10.0,10.0,10.0,10.0,22,0.48 +18113,98.0,10.0,10.0,10.0,10.0,9.0,10.0,27,0.57 +11019,97.0,10.0,9.0,10.0,10.0,10.0,10.0,32,1.2 +9528,81.0,8.0,8.0,9.0,9.0,10.0,8.0,33,0.75 +73829,77.0,8.0,7.0,9.0,8.0,10.0,8.0,12,0.26 +16915,73.0,8.0,7.0,9.0,9.0,9.0,8.0,20,0.45 +50337,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +50759,,,,,,,,0, +8230,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.15 +50423,,,,,,,,0, +20601,92.0,10.0,9.0,10.0,10.0,9.0,9.0,85,1.81 +40620,78.0,9.0,7.0,9.0,10.0,10.0,9.0,10,0.22 +30822,99.0,10.0,10.0,10.0,10.0,10.0,10.0,37,0.79 +32136,93.0,9.0,10.0,10.0,10.0,9.0,9.0,15,0.38 +59419,92.0,9.0,10.0,9.0,10.0,10.0,9.0,19,0.43 +72828,97.0,10.0,9.0,10.0,10.0,9.0,9.0,86,2.01 +39073,100.0,10.0,10.0,10.0,10.0,10.0,10.0,72,1.54 +62278,97.0,10.0,10.0,10.0,10.0,10.0,10.0,61,2.3 +20696,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +25453,89.0,9.0,9.0,9.0,10.0,10.0,9.0,7,0.22 +23558,94.0,10.0,10.0,10.0,10.0,9.0,10.0,20,0.56 +33599,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +13387,97.0,10.0,7.0,10.0,10.0,10.0,10.0,9,0.19 +28546,100.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.66 +42754,,,,,,,,0, +61759,95.0,10.0,10.0,10.0,10.0,10.0,10.0,22,0.46 +5228,93.0,9.0,9.0,9.0,10.0,9.0,9.0,21,0.45 +53475,88.0,9.0,8.0,10.0,10.0,9.0,9.0,165,3.5 +1340,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.07 +58166,98.0,10.0,10.0,10.0,10.0,10.0,10.0,40,0.9 +20811,88.0,9.0,9.0,8.0,8.0,10.0,8.0,6,0.13 +73779,80.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.21 +26851,98.0,10.0,10.0,10.0,10.0,9.0,10.0,13,0.28 +44398,,,,,,,,0, +30782,99.0,10.0,10.0,10.0,10.0,10.0,10.0,35,0.75 +12766,96.0,10.0,10.0,10.0,10.0,9.0,10.0,330,7.12 +70756,95.0,10.0,10.0,10.0,10.0,9.0,9.0,344,7.3 +57838,80.0,9.0,7.0,9.0,10.0,10.0,8.0,4,0.17 +39092,96.0,10.0,9.0,10.0,10.0,9.0,10.0,19,0.44 +61041,99.0,10.0,9.0,10.0,10.0,9.0,10.0,28,0.65 +65317,99.0,10.0,10.0,10.0,10.0,10.0,10.0,34,0.76 +72842,91.0,9.0,10.0,10.0,10.0,8.0,9.0,14,0.36 +14154,,,,,,,,0, +26836,,,,,,,,0, +48329,100.0,9.0,9.0,10.0,10.0,8.0,9.0,3,0.06 +8139,95.0,10.0,10.0,9.0,10.0,9.0,9.0,57,2.09 +29301,,,,,,,,0, +14670,100.0,10.0,9.0,10.0,10.0,10.0,9.0,12,0.26 +34151,99.0,10.0,10.0,10.0,10.0,10.0,10.0,137,2.94 +12808,93.0,10.0,9.0,10.0,9.0,7.0,8.0,3,0.07 +17113,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.07 +24306,98.0,10.0,10.0,10.0,10.0,10.0,10.0,25,0.65 +35398,,,,,,,,0, +42812,93.0,10.0,9.0,10.0,10.0,10.0,9.0,11,0.24 +24254,95.0,10.0,10.0,10.0,10.0,9.0,10.0,55,1.32 +41764,87.0,8.0,8.0,9.0,9.0,9.0,8.0,23,0.5 +24134,86.0,9.0,8.0,10.0,9.0,9.0,9.0,200,4.29 +36478,,,,,,,,0, +11574,95.0,10.0,9.0,10.0,10.0,10.0,10.0,13,0.29 +19991,,,,,,,,0, +75010,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +37315,92.0,10.0,9.0,10.0,10.0,10.0,9.0,34,0.74 +20653,94.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.18 +57644,93.0,10.0,10.0,10.0,10.0,9.0,9.0,8,0.18 +43777,,,,,,,,0, +50122,83.0,9.0,8.0,9.0,8.0,8.0,9.0,50,1.16 +60684,80.0,8.0,6.0,8.0,9.0,10.0,8.0,2,0.05 +66809,100.0,10.0,10.0,10.0,10.0,10.0,8.0,4,0.11 +47824,,,,,,,,0, +76119,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.15 +12419,,,,,,,,1,1.0 +44259,63.0,7.0,8.0,8.0,8.0,9.0,8.0,13,0.3 +8916,100.0,10.0,10.0,7.0,10.0,10.0,8.0,2,0.05 +48051,92.0,10.0,8.0,10.0,10.0,9.0,9.0,8,0.19 +68060,,,,,,,,0, +67646,96.0,10.0,10.0,10.0,10.0,10.0,9.0,153,3.33 +67371,79.0,8.0,9.0,9.0,9.0,9.0,8.0,30,0.69 +30722,80.0,7.0,7.0,9.0,9.0,8.0,7.0,3,0.06 +45384,95.0,10.0,9.0,10.0,10.0,10.0,9.0,59,1.28 +3627,,,,,,,,0, +32885,93.0,10.0,9.0,10.0,10.0,10.0,10.0,9,0.2 +15278,97.0,10.0,10.0,10.0,10.0,10.0,10.0,103,2.21 +53462,97.0,10.0,10.0,10.0,10.0,9.0,9.0,46,1.64 +61805,83.0,9.0,9.0,9.0,9.0,10.0,9.0,20,0.46 +74675,93.0,10.0,10.0,10.0,9.0,10.0,10.0,3,0.69 +29494,79.0,9.0,9.0,9.0,9.0,10.0,8.0,21,0.5 +16937,92.0,10.0,9.0,9.0,10.0,10.0,9.0,100,2.14 +10997,91.0,10.0,9.0,10.0,10.0,9.0,9.0,51,1.15 +55289,90.0,10.0,9.0,9.0,10.0,9.0,10.0,24,0.59 +13414,83.0,8.0,9.0,9.0,9.0,10.0,8.0,48,1.06 +48068,,,,,,,,0, +14511,97.0,10.0,10.0,10.0,10.0,10.0,10.0,31,1.67 +44053,89.0,9.0,9.0,9.0,9.0,9.0,9.0,81,1.71 +68115,96.0,10.0,10.0,10.0,10.0,9.0,10.0,36,0.79 +22649,,,,,,,,0, +25515,99.0,10.0,10.0,10.0,10.0,10.0,10.0,50,1.08 +62761,,,,,,,,0, +13306,97.0,10.0,10.0,10.0,10.0,9.0,10.0,71,2.13 +70218,96.0,10.0,10.0,10.0,10.0,10.0,10.0,33,0.76 +30101,96.0,9.0,9.0,10.0,10.0,10.0,9.0,36,0.78 +63433,,,,,,,,0, +26953,99.0,10.0,10.0,10.0,10.0,10.0,10.0,34,2.42 +24681,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.16 +23778,86.0,9.0,9.0,9.0,9.0,9.0,9.0,25,0.58 +38580,88.0,9.0,8.0,9.0,9.0,9.0,9.0,141,3.05 +46934,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.04 +53235,98.0,9.0,10.0,10.0,10.0,9.0,9.0,12,0.25 +30783,96.0,9.0,10.0,10.0,10.0,10.0,9.0,73,1.67 +72058,96.0,10.0,10.0,10.0,10.0,9.0,9.0,7,0.17 +54062,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.23 +20234,,,,,,,,0, +49846,,,,,,,,0, +48471,98.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.38 +31104,,,,,,,,0, +65387,96.0,10.0,10.0,10.0,10.0,10.0,10.0,39,0.94 +51387,77.0,8.0,8.0,8.0,8.0,7.0,7.0,6,0.14 +4784,100.0,9.0,10.0,10.0,10.0,10.0,10.0,6,0.17 +537,93.0,9.0,9.0,10.0,10.0,10.0,9.0,29,0.72 +66684,89.0,8.0,9.0,9.0,9.0,9.0,9.0,30,0.66 +14011,,,,,,,,0, +51598,,,,,,,,0, +65837,,,,,,,,0, +13917,100.0,10.0,10.0,10.0,10.0,9.0,10.0,12,0.32 +55891,94.0,10.0,9.0,10.0,10.0,8.0,9.0,106,2.3 +72474,86.0,9.0,8.0,10.0,10.0,8.0,9.0,14,0.3 +39656,90.0,9.0,7.0,10.0,10.0,10.0,9.0,24,0.52 +42272,93.0,9.0,10.0,10.0,10.0,10.0,9.0,53,1.24 +47371,93.0,9.0,10.0,9.0,10.0,10.0,9.0,39,1.0 +57190,91.0,9.0,9.0,10.0,10.0,10.0,9.0,184,3.97 +66265,97.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.32 +57025,,,,,,,,0, +29895,96.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.34 +35985,99.0,10.0,10.0,10.0,10.0,10.0,10.0,58,1.28 +23425,99.0,10.0,10.0,10.0,10.0,9.0,10.0,187,4.02 +32332,97.0,10.0,9.0,10.0,10.0,9.0,9.0,19,0.42 +34794,94.0,10.0,10.0,10.0,10.0,9.0,10.0,70,1.5 +54037,96.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.47 +52100,99.0,10.0,10.0,10.0,10.0,10.0,10.0,68,1.5 +57202,100.0,10.0,10.0,10.0,10.0,9.0,10.0,13,0.35 +74786,93.0,10.0,9.0,10.0,10.0,9.0,9.0,26,0.6 +14202,100.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +6954,94.0,10.0,9.0,9.0,10.0,9.0,9.0,45,0.97 +68594,95.0,10.0,10.0,10.0,10.0,9.0,10.0,102,2.18 +74757,99.0,10.0,10.0,10.0,10.0,10.0,10.0,61,2.04 +30874,,,,,,,,0, +24750,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +73433,100.0,10.0,9.0,10.0,10.0,10.0,9.0,7,0.16 +14736,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.18 +11526,95.0,10.0,10.0,10.0,10.0,10.0,10.0,45,1.0 +61533,,,,,,,,0, +54506,99.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.41 +8934,73.0,9.0,9.0,10.0,9.0,6.0,8.0,3,0.1 +14220,94.0,10.0,10.0,10.0,10.0,10.0,9.0,82,1.96 +11123,,,,,,,,0, +20041,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.16 +57423,87.0,10.0,10.0,9.0,9.0,10.0,9.0,4,0.09 +44788,84.0,9.0,9.0,9.0,8.0,9.0,9.0,21,0.49 +49798,95.0,10.0,10.0,10.0,10.0,10.0,9.0,22,0.5 +17249,,,,,,,,0, +19101,,,,,,,,0, +42717,98.0,10.0,10.0,10.0,10.0,10.0,10.0,185,4.02 +48963,98.0,10.0,10.0,10.0,10.0,10.0,10.0,38,0.98 +2401,97.0,10.0,10.0,10.0,10.0,9.0,10.0,23,0.52 +9496,,,,,,,,0, +52617,99.0,10.0,10.0,10.0,10.0,10.0,10.0,156,3.42 +16714,89.0,9.0,9.0,9.0,9.0,10.0,9.0,71,1.59 +71605,93.0,10.0,8.0,10.0,10.0,9.0,9.0,6,0.14 +70567,96.0,9.0,8.0,10.0,10.0,10.0,10.0,5,0.25 +76803,,,,,,,,0, +60865,,,,,,,,0, +67982,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.11 +26703,91.0,10.0,9.0,10.0,10.0,10.0,9.0,30,0.69 +15693,,,,,,,,0, +26138,97.0,10.0,9.0,10.0,10.0,10.0,10.0,13,0.32 +31553,91.0,9.0,9.0,10.0,10.0,9.0,9.0,268,5.85 +37826,90.0,10.0,10.0,10.0,10.0,8.0,9.0,2,0.07 +72941,100.0,10.0,10.0,10.0,10.0,9.0,9.0,4,1.76 +58722,97.0,9.0,10.0,10.0,10.0,10.0,10.0,51,1.11 +45619,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +25892,94.0,10.0,9.0,10.0,10.0,10.0,9.0,79,1.7 +14899,91.0,9.0,10.0,10.0,10.0,10.0,9.0,22,1.5 +41215,,,,,,,,0, +392,95.0,10.0,9.0,10.0,10.0,9.0,9.0,31,0.67 +49531,98.0,10.0,10.0,10.0,10.0,10.0,10.0,22,0.49 +38861,97.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.43 +56725,99.0,10.0,10.0,10.0,10.0,9.0,10.0,17,0.43 +4480,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.54 +21855,,,,,,,,0, +14784,,,,,,,,0, +65781,100.0,10.0,9.0,10.0,10.0,10.0,10.0,7,0.16 +75269,99.0,10.0,10.0,10.0,10.0,10.0,10.0,67,1.45 +28751,98.0,10.0,10.0,10.0,10.0,10.0,9.0,12,0.29 +60491,99.0,10.0,10.0,10.0,10.0,10.0,10.0,40,1.2 +2336,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.14 +2193,,,,,,,,0, +38452,90.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.28 +6657,98.0,10.0,10.0,10.0,10.0,9.0,9.0,9,0.2 +57157,,,,,,,,0, +76972,,,,,,,,0, +51122,86.0,9.0,9.0,10.0,10.0,9.0,9.0,70,1.49 +54440,96.0,10.0,10.0,10.0,10.0,10.0,9.0,127,4.65 +46896,86.0,9.0,9.0,9.0,9.0,9.0,9.0,139,2.96 +42170,99.0,10.0,10.0,10.0,10.0,10.0,10.0,35,0.76 +38760,,,,,,,,0, +40658,98.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.4 +19308,100.0,10.0,10.0,10.0,10.0,9.0,10.0,103,2.47 +47567,87.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.07 +2516,88.0,9.0,9.0,10.0,10.0,10.0,9.0,184,3.99 +2408,20.0,,,,,,,1,0.06 +42899,98.0,10.0,10.0,10.0,10.0,10.0,10.0,84,1.93 +32220,,,,,,,,0, +64523,96.0,10.0,9.0,10.0,10.0,9.0,10.0,10,0.3 +58816,100.0,10.0,10.0,10.0,9.0,8.0,10.0,2,0.04 +5275,100.0,10.0,10.0,10.0,10.0,10.0,9.0,27,1.66 +28778,97.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.19 +13971,100.0,10.0,9.0,10.0,10.0,10.0,9.0,7,0.29 +10931,98.0,10.0,10.0,10.0,10.0,10.0,10.0,57,1.22 +71000,100.0,10.0,9.0,10.0,10.0,9.0,9.0,2,1.46 +49806,99.0,10.0,10.0,10.0,10.0,10.0,10.0,64,1.39 +26398,91.0,10.0,9.0,10.0,10.0,9.0,9.0,73,1.74 +23003,93.0,9.0,9.0,10.0,10.0,9.0,9.0,14,0.32 +52296,97.0,10.0,10.0,10.0,10.0,10.0,9.0,21,0.46 +15241,94.0,10.0,9.0,10.0,10.0,10.0,9.0,32,0.69 +19516,96.0,10.0,10.0,10.0,10.0,10.0,10.0,87,1.87 +35039,97.0,10.0,10.0,10.0,10.0,9.0,10.0,22,1.14 +8481,97.0,10.0,10.0,10.0,10.0,9.0,10.0,32,0.75 +17963,93.0,10.0,9.0,10.0,10.0,9.0,9.0,6,0.16 +72810,98.0,10.0,10.0,10.0,10.0,9.0,10.0,49,1.14 +43452,,,,,,,,0, +39474,100.0,10.0,9.0,10.0,10.0,10.0,9.0,3,0.07 +5356,97.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.6 +64510,94.0,10.0,9.0,10.0,10.0,8.0,9.0,7,0.15 +8380,93.0,10.0,9.0,10.0,10.0,9.0,9.0,32,0.72 +60179,98.0,10.0,10.0,10.0,10.0,10.0,10.0,34,1.06 +7218,80.0,10.0,10.0,10.0,10.0,10.0,6.0,1,0.02 +56209,96.0,10.0,9.0,10.0,10.0,9.0,10.0,121,2.7 +23870,91.0,10.0,9.0,10.0,10.0,10.0,9.0,162,3.5 +26007,95.0,10.0,10.0,10.0,10.0,9.0,9.0,26,0.56 +30476,95.0,10.0,10.0,10.0,10.0,9.0,9.0,16,0.35 +42428,98.0,10.0,10.0,10.0,10.0,10.0,10.0,73,1.56 +13273,93.0,9.0,10.0,10.0,10.0,9.0,9.0,130,2.85 +17402,96.0,10.0,10.0,10.0,10.0,9.0,10.0,31,0.68 +35387,,,,,,,,0, +44333,94.0,10.0,10.0,10.0,10.0,9.0,10.0,69,1.51 +26592,99.0,10.0,10.0,10.0,10.0,9.0,10.0,15,0.35 +57853,99.0,10.0,10.0,10.0,10.0,10.0,10.0,36,0.77 +6120,93.0,9.0,9.0,9.0,9.0,9.0,9.0,54,1.28 +18629,91.0,9.0,10.0,10.0,10.0,9.0,9.0,63,1.36 +15316,,,,,,,,0, +18586,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.24 +74064,94.0,10.0,9.0,10.0,10.0,10.0,10.0,31,1.74 +62237,,,,,,,,0, +63972,99.0,10.0,10.0,10.0,10.0,10.0,10.0,85,1.87 +75378,90.0,9.0,8.0,10.0,10.0,9.0,9.0,107,2.39 +56133,88.0,9.0,9.0,10.0,10.0,9.0,9.0,24,0.56 +38961,96.0,10.0,9.0,10.0,10.0,10.0,10.0,49,1.1 +45490,91.0,9.0,9.0,9.0,9.0,9.0,9.0,57,1.27 +7236,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.03 +9857,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.18 +2005,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.24 +39638,100.0,10.0,10.0,10.0,9.0,10.0,10.0,3,0.07 +46909,95.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.09 +26163,80.0,9.0,6.0,9.0,9.0,10.0,8.0,3,0.07 +39715,92.0,9.0,9.0,10.0,10.0,10.0,9.0,40,0.88 +47537,,,,,,,,0, +4894,98.0,10.0,9.0,10.0,10.0,10.0,10.0,81,1.75 +44060,88.0,8.0,9.0,10.0,10.0,10.0,9.0,10,0.22 +12637,99.0,10.0,10.0,10.0,10.0,9.0,10.0,18,0.46 +17585,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.28 +22081,96.0,10.0,10.0,10.0,10.0,9.0,10.0,124,2.8 +35860,,,,,,,,0, +49903,100.0,10.0,9.0,10.0,10.0,10.0,9.0,3,0.16 +42857,99.0,10.0,10.0,10.0,10.0,10.0,10.0,40,1.05 +70092,99.0,10.0,10.0,10.0,10.0,9.0,10.0,65,1.56 +24901,90.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.07 +38088,96.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.2 +23832,92.0,10.0,9.0,10.0,9.0,10.0,9.0,59,1.32 +32582,,,,,,,,0, +57339,81.0,9.0,9.0,9.0,10.0,10.0,9.0,14,0.39 +10349,97.0,10.0,10.0,10.0,10.0,9.0,10.0,46,1.2 +26358,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.35 +43521,96.0,10.0,10.0,10.0,10.0,10.0,9.0,86,2.38 +16301,,,,,,,,0, +65046,96.0,10.0,9.0,10.0,10.0,10.0,9.0,37,0.89 +59921,91.0,9.0,9.0,9.0,9.0,9.0,9.0,34,0.8 +32490,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.13 +32362,92.0,10.0,10.0,9.0,10.0,10.0,9.0,37,0.79 +63048,95.0,10.0,10.0,10.0,10.0,9.0,9.0,56,1.24 +68142,98.0,10.0,10.0,10.0,10.0,10.0,10.0,62,1.4 +69417,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +68834,93.0,9.0,9.0,10.0,10.0,9.0,9.0,64,1.42 +9801,,,,,,,,0, +2293,,,,,,,,0, +61670,90.0,9.0,9.0,10.0,10.0,10.0,9.0,366,7.9 +39901,84.0,9.0,8.0,9.0,9.0,9.0,9.0,218,4.67 +55920,92.0,9.0,9.0,10.0,10.0,10.0,9.0,113,2.44 +53850,,,,,,,,0, +34932,100.0,10.0,10.0,10.0,10.0,10.0,10.0,81,1.77 +47377,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.29 +76429,,,,,,,,0, +26066,99.0,10.0,10.0,10.0,10.0,10.0,10.0,19,0.5 +44468,93.0,10.0,9.0,10.0,10.0,9.0,9.0,71,1.64 +4281,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.13 +61252,94.0,10.0,10.0,10.0,10.0,10.0,10.0,22,0.5 +65597,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +39925,100.0,10.0,8.0,10.0,10.0,10.0,6.0,1,1.0 +64016,96.0,10.0,10.0,10.0,10.0,9.0,10.0,17,0.39 +52625,,,,,,,,0, +41258,98.0,10.0,10.0,10.0,10.0,10.0,10.0,109,2.38 +59113,97.0,10.0,10.0,10.0,10.0,9.0,10.0,18,0.39 +54418,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +64415,88.0,9.0,9.0,10.0,10.0,10.0,9.0,421,9.1 +8056,,,,,,,,0, +69589,88.0,9.0,9.0,10.0,10.0,9.0,9.0,226,4.86 +73944,,,,,,,,0, +28028,96.0,10.0,10.0,10.0,10.0,10.0,9.0,124,2.67 +33345,98.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.37 +57310,88.0,9.0,9.0,9.0,9.0,9.0,9.0,45,0.98 +52996,99.0,10.0,10.0,10.0,10.0,9.0,10.0,96,3.36 +74588,70.0,8.0,6.0,10.0,10.0,9.0,7.0,3,0.08 +70057,92.0,10.0,9.0,10.0,10.0,9.0,9.0,91,1.96 +76375,,,,,,,,0, +40261,93.0,10.0,9.0,9.0,10.0,10.0,9.0,25,0.54 +36025,,,,,,,,0, +52211,98.0,10.0,10.0,10.0,10.0,9.0,10.0,80,2.48 +54651,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +44350,97.0,10.0,9.0,10.0,10.0,10.0,9.0,15,0.63 +42400,94.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.52 +70244,97.0,10.0,10.0,10.0,10.0,9.0,10.0,295,6.42 +6321,85.0,9.0,7.0,10.0,10.0,10.0,9.0,24,0.55 +23440,93.0,10.0,10.0,10.0,10.0,10.0,9.0,120,2.64 +8958,93.0,10.0,10.0,10.0,9.0,10.0,9.0,4,0.09 +44569,89.0,9.0,9.0,9.0,10.0,9.0,9.0,60,1.29 +38106,96.0,9.0,10.0,10.0,10.0,9.0,9.0,10,0.22 +70568,,,,,,,,0, +74415,94.0,9.0,9.0,10.0,10.0,9.0,9.0,16,0.68 +43512,95.0,10.0,10.0,10.0,10.0,9.0,9.0,90,1.97 +15533,95.0,10.0,10.0,10.0,10.0,9.0,9.0,13,0.3 +31826,80.0,9.0,9.0,8.0,9.0,10.0,8.0,7,0.16 +53987,,,,,,,,0, +42286,98.0,10.0,10.0,10.0,10.0,10.0,10.0,107,2.32 +70392,100.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.13 +42237,,,,,,,,0, +73644,89.0,9.0,9.0,10.0,10.0,9.0,9.0,16,0.38 +24975,93.0,9.0,10.0,10.0,10.0,10.0,9.0,28,0.72 +75016,89.0,9.0,7.0,9.0,10.0,10.0,8.0,10,0.25 +68066,80.0,7.0,4.0,9.0,7.0,9.0,9.0,4,0.1 +42584,96.0,10.0,10.0,10.0,10.0,9.0,10.0,10,0.33 +62239,94.0,10.0,9.0,10.0,10.0,9.0,9.0,89,1.94 +66559,95.0,10.0,10.0,10.0,10.0,9.0,9.0,19,0.42 +61573,80.0,8.0,6.0,10.0,9.0,7.0,8.0,2,0.04 +20134,90.0,9.0,8.0,8.0,10.0,9.0,9.0,2,0.04 +40521,97.0,10.0,10.0,10.0,10.0,10.0,9.0,103,2.36 +54597,90.0,10.0,9.0,10.0,10.0,10.0,9.0,20,0.44 +23026,87.0,9.0,8.0,10.0,10.0,10.0,9.0,40,0.88 +21405,,,,,,,,0, +46739,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.28 +7989,93.0,9.0,9.0,10.0,10.0,10.0,9.0,81,1.75 +63029,96.0,9.0,10.0,9.0,10.0,10.0,9.0,14,0.47 +49955,,,,,,,,0, +28137,93.0,9.0,10.0,10.0,10.0,9.0,9.0,3,0.08 +35986,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.18 +68423,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.25 +18097,99.0,10.0,10.0,10.0,10.0,9.0,9.0,14,0.64 +72902,100.0,10.0,10.0,10.0,10.0,8.0,10.0,10,0.22 +50381,,,,,,,,0, +14888,98.0,10.0,10.0,10.0,10.0,10.0,9.0,25,0.66 +58911,94.0,10.0,10.0,10.0,10.0,9.0,10.0,388,8.37 +12915,86.0,9.0,9.0,9.0,9.0,9.0,9.0,46,1.0 +50564,70.0,8.0,7.0,6.0,7.0,7.0,7.0,2,0.05 +74062,100.0,10.0,9.0,9.0,9.0,10.0,10.0,3,0.07 +29262,,,,,,,,0, +35467,99.0,10.0,10.0,10.0,10.0,10.0,10.0,28,1.11 +28235,100.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.09 +75059,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +51638,,,,,,,,0, +64553,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.22 +1472,80.0,9.0,9.0,9.0,8.0,10.0,8.0,14,0.33 +51130,82.0,9.0,8.0,9.0,10.0,10.0,9.0,10,0.22 +9579,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.23 +9720,,,,,,,,0, +4941,82.0,9.0,9.0,9.0,9.0,8.0,9.0,191,4.16 +6719,83.0,8.0,7.0,9.0,9.0,10.0,9.0,8,0.25 +63799,99.0,10.0,10.0,10.0,10.0,10.0,10.0,95,2.22 +17481,98.0,10.0,10.0,10.0,10.0,10.0,10.0,87,1.95 +5421,89.0,9.0,9.0,9.0,9.0,8.0,9.0,79,1.74 +28487,,,,,,,,0, +5752,99.0,10.0,9.0,10.0,10.0,10.0,10.0,18,0.4 +66413,,,,,,,,0, +64484,97.0,10.0,10.0,10.0,10.0,10.0,9.0,37,0.8 +6423,95.0,9.0,10.0,10.0,10.0,9.0,9.0,145,3.3 +34764,97.0,10.0,10.0,10.0,10.0,10.0,10.0,24,0.95 +69035,60.0,8.0,6.0,10.0,10.0,6.0,6.0,1,0.03 +75879,96.0,10.0,10.0,10.0,10.0,10.0,9.0,119,2.56 +35664,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +35932,99.0,10.0,10.0,10.0,10.0,10.0,10.0,24,0.56 +39725,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.11 +64039,,,,,,,,0, +4674,96.0,10.0,10.0,10.0,10.0,10.0,10.0,112,2.47 +8031,88.0,9.0,9.0,9.0,9.0,10.0,9.0,86,1.87 +73581,100.0,10.0,9.0,10.0,10.0,9.0,9.0,3,0.18 +37463,97.0,10.0,10.0,10.0,10.0,10.0,10.0,24,0.53 +56318,,,,,,,,0, +43971,98.0,10.0,9.0,10.0,10.0,10.0,10.0,8,0.21 +56774,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.09 +15508,99.0,10.0,10.0,10.0,10.0,10.0,10.0,39,0.89 +52592,95.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.16 +49486,,,,,,,,0, +10000,,,,,,,,0, +42471,97.0,10.0,10.0,10.0,10.0,9.0,10.0,31,0.69 +75467,92.0,10.0,9.0,10.0,10.0,10.0,9.0,60,1.31 +62186,99.0,10.0,10.0,10.0,10.0,10.0,9.0,23,0.5 +25051,92.0,9.0,9.0,9.0,9.0,9.0,9.0,15,0.32 +44591,98.0,10.0,9.0,10.0,10.0,9.0,10.0,28,0.61 +29394,88.0,9.0,8.0,9.0,10.0,9.0,8.0,5,0.12 +62318,,,,,,,,0, +46478,97.0,10.0,9.0,10.0,10.0,10.0,10.0,130,2.84 +72255,,,,,,,,0, +21907,99.0,10.0,9.0,10.0,10.0,10.0,9.0,17,0.37 +35266,93.0,9.0,9.0,10.0,10.0,9.0,9.0,52,1.14 +34287,100.0,9.0,10.0,10.0,10.0,10.0,10.0,3,0.13 +53019,98.0,10.0,10.0,10.0,10.0,9.0,10.0,13,0.31 +73686,100.0,10.0,10.0,10.0,10.0,10.0,10.0,38,0.84 +870,96.0,10.0,10.0,10.0,10.0,10.0,9.0,74,1.61 +18630,87.0,9.0,9.0,10.0,10.0,10.0,9.0,362,7.81 +47856,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.66 +29694,94.0,9.0,10.0,10.0,10.0,9.0,10.0,14,0.31 +38627,100.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.1 +43327,95.0,10.0,9.0,10.0,10.0,9.0,9.0,315,6.81 +2567,86.0,9.0,8.0,10.0,9.0,9.0,8.0,8,0.18 +1728,90.0,9.0,10.0,10.0,10.0,8.0,9.0,8,0.18 +21175,93.0,10.0,10.0,10.0,10.0,9.0,9.0,32,1.04 +29849,,,,,,,,0, +53190,95.0,10.0,9.0,10.0,10.0,10.0,9.0,22,0.51 +4369,,,,,,,,0, +13018,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.12 +57163,,,,,,,,0, +49068,,,,,,,,0, +67204,100.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.02 +4285,84.0,9.0,8.0,9.0,9.0,10.0,9.0,77,1.68 +64141,90.0,9.0,10.0,10.0,10.0,9.0,9.0,66,1.47 +12563,65.0,8.0,5.0,9.0,9.0,9.0,7.0,4,0.09 +40697,90.0,9.0,9.0,10.0,10.0,9.0,10.0,8,0.17 +59007,95.0,9.0,9.0,9.0,10.0,8.0,9.0,8,0.17 +20371,91.0,10.0,9.0,10.0,10.0,9.0,9.0,29,0.66 +4362,96.0,10.0,10.0,10.0,10.0,9.0,10.0,123,3.23 +54229,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.18 +37761,100.0,9.0,9.0,10.0,10.0,10.0,9.0,2,0.05 +44680,100.0,9.0,9.0,10.0,10.0,10.0,9.0,4,0.1 +40106,,,,,,,,0, +21014,73.0,8.0,8.0,7.0,9.0,9.0,8.0,3,0.59 +76456,85.0,9.0,9.0,9.0,9.0,9.0,9.0,18,0.42 +48868,,,,,,,,0, +42633,95.0,10.0,10.0,10.0,10.0,10.0,9.0,27,0.64 +47189,100.0,10.0,8.0,8.0,10.0,10.0,,1,0.03 +43444,100.0,10.0,9.0,10.0,10.0,10.0,9.0,9,0.21 +66079,95.0,10.0,9.0,10.0,10.0,10.0,10.0,124,2.7 +53313,99.0,10.0,10.0,10.0,10.0,10.0,10.0,84,2.12 +5001,81.0,9.0,8.0,9.0,9.0,9.0,8.0,146,3.21 +49553,79.0,8.0,8.0,9.0,9.0,9.0,8.0,142,3.09 +69037,96.0,10.0,9.0,10.0,10.0,9.0,9.0,72,1.6 +68330,79.0,8.0,8.0,9.0,9.0,9.0,8.0,165,3.66 +53990,,,,,,,,0, +9538,81.0,9.0,8.0,9.0,9.0,9.0,8.0,158,3.49 +48964,90.0,9.0,9.0,10.0,10.0,10.0,9.0,24,0.57 +48340,84.0,9.0,9.0,9.0,9.0,9.0,8.0,55,1.47 +71865,83.0,9.0,8.0,9.0,9.0,9.0,8.0,109,2.85 +55228,77.0,8.0,8.0,9.0,9.0,9.0,8.0,124,2.69 +71727,,,,,,,,0, +21453,,,,,,,,0, +55231,96.0,10.0,8.0,10.0,10.0,10.0,10.0,6,0.29 +75829,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.07 +66490,90.0,10.0,10.0,9.0,10.0,8.0,8.0,2,0.04 +65983,,,,,,,,0, +27950,93.0,9.0,9.0,10.0,10.0,10.0,9.0,91,2.01 +71362,98.0,10.0,10.0,10.0,10.0,10.0,10.0,45,1.39 +27298,96.0,10.0,10.0,10.0,10.0,9.0,9.0,45,1.04 +38074,,,,,,,,0, +31218,90.0,9.0,10.0,10.0,10.0,8.0,10.0,2,0.05 +2710,90.0,10.0,8.0,9.0,9.0,6.0,6.0,2,0.04 +3180,97.0,10.0,10.0,10.0,10.0,10.0,10.0,63,1.38 +46028,98.0,10.0,9.0,10.0,10.0,9.0,10.0,8,0.17 +19859,87.0,9.0,8.0,10.0,9.0,10.0,9.0,8,0.21 +41961,,,,,,,,0, +49267,,,,,,,,0, +38047,99.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.41 +18621,,,,,,,,0, +47461,98.0,10.0,10.0,10.0,10.0,9.0,10.0,51,1.14 +12370,,,,,,,,0, +16755,,,,,,,,0, +22160,90.0,9.0,9.0,9.0,10.0,9.0,9.0,52,1.14 +73888,100.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.13 +13412,,,,,,,,0, +27181,96.0,10.0,9.0,10.0,10.0,9.0,10.0,18,0.41 +67836,93.0,10.0,9.0,10.0,10.0,10.0,9.0,107,2.34 +3800,93.0,10.0,9.0,10.0,10.0,10.0,9.0,30,1.49 +12981,98.0,10.0,10.0,10.0,10.0,9.0,10.0,184,3.99 +52462,,,,,,,,0, +63432,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.39 +64136,,,,,,,,0, +20253,,,,,,,,0, +25333,,,,,,,,0, +20590,,,,,,,,0, +48080,,,,,,,,0, +59464,,,,,,,,0, +10133,89.0,9.0,9.0,9.0,9.0,9.0,9.0,15,0.34 +4176,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.3 +41968,96.0,10.0,10.0,10.0,10.0,10.0,10.0,30,0.66 +36082,95.0,10.0,10.0,10.0,10.0,9.0,10.0,50,1.14 +26921,85.0,9.0,9.0,9.0,9.0,9.0,9.0,12,0.31 +57888,,,,,,,,0, +64940,93.0,10.0,10.0,10.0,9.0,10.0,9.0,18,0.55 +44518,,,,,,,,0, +29441,93.0,9.0,9.0,9.0,9.0,10.0,10.0,3,0.07 +28672,,,,,,,,0, +5423,95.0,10.0,10.0,10.0,10.0,9.0,9.0,41,0.92 +35205,94.0,10.0,9.0,10.0,10.0,10.0,9.0,52,1.17 +41310,93.0,9.0,9.0,10.0,10.0,10.0,10.0,12,0.27 +56458,,,,,,,,0, +48088,97.0,10.0,10.0,10.0,10.0,10.0,10.0,122,2.69 +32396,65.0,7.0,9.0,8.0,5.0,9.0,8.0,5,0.12 +18833,,,,,,,,0, +59686,,,,,,,,0, +69953,95.0,10.0,9.0,10.0,10.0,9.0,9.0,4,0.15 +32782,93.0,10.0,9.0,10.0,10.0,10.0,9.0,23,0.52 +74943,90.0,9.0,8.0,10.0,10.0,10.0,8.0,8,0.18 +14682,,,,,,,,0, +61713,89.0,10.0,10.0,10.0,10.0,10.0,9.0,10,0.22 +24419,,,,,,,,0, +68588,100.0,9.0,10.0,10.0,10.0,10.0,10.0,2,0.04 +3435,,,,,,,,0, +73905,98.0,10.0,10.0,10.0,10.0,9.0,10.0,30,0.67 +1994,95.0,10.0,10.0,10.0,10.0,10.0,9.0,8,0.17 +72426,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.37 +64713,,,,,,,,0, +37194,,,,,,,,0, +55126,95.0,9.0,9.0,10.0,10.0,10.0,9.0,11,0.3 +73545,77.0,9.0,7.0,9.0,9.0,9.0,8.0,6,0.14 +22699,,,,,,,,0, +68677,96.0,9.0,9.0,10.0,10.0,9.0,8.0,5,0.12 +63176,,,,,,,,0, +46649,96.0,10.0,10.0,10.0,10.0,9.0,10.0,39,0.94 +32658,100.0,10.0,10.0,10.0,10.0,9.0,10.0,12,0.28 +45459,,,,,,,,0, +13888,98.0,10.0,10.0,10.0,10.0,10.0,10.0,21,0.53 +48107,99.0,10.0,10.0,10.0,10.0,9.0,10.0,29,0.94 +5008,,,,,,,,0, +64153,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.04 +30083,98.0,10.0,10.0,10.0,9.0,10.0,10.0,24,0.54 +57080,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.24 +74428,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.12 +20116,,,,,,,,0, +56605,87.0,10.0,10.0,10.0,9.0,9.0,10.0,3,0.07 +36788,93.0,10.0,9.0,10.0,10.0,9.0,9.0,24,0.99 +70689,100.0,10.0,8.0,10.0,10.0,10.0,10.0,3,0.08 +41745,100.0,10.0,10.0,10.0,10.0,9.0,9.0,10,0.23 +31504,99.0,10.0,10.0,10.0,10.0,10.0,10.0,21,0.77 +27790,99.0,10.0,10.0,10.0,10.0,10.0,10.0,70,1.61 +27529,73.0,9.0,6.0,7.0,9.0,7.0,7.0,3,0.07 +16074,92.0,10.0,9.0,9.0,10.0,8.0,9.0,6,0.14 +53082,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.07 +16316,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.22 +51934,90.0,10.0,10.0,9.0,9.0,10.0,9.0,4,0.1 +2340,100.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.12 +48600,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +21753,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.1 +49022,,,,,,,,0, +61444,94.0,10.0,10.0,10.0,10.0,9.0,10.0,49,1.48 +23612,97.0,10.0,10.0,10.0,10.0,10.0,10.0,19,0.42 +40636,90.0,9.0,9.0,9.0,10.0,9.0,9.0,104,2.29 +51815,,,,,,,,0, +41492,90.0,10.0,9.0,10.0,10.0,10.0,9.0,54,1.19 +26499,,,,,,,,0, +45625,,,,,,,,0, +70736,,,,,,,,0, +53010,100.0,10.0,9.0,10.0,10.0,9.0,10.0,4,0.11 +46421,,,,,,,,0, +57657,92.0,9.0,9.0,9.0,10.0,10.0,9.0,121,2.77 +37193,,,,,,,,0, +65809,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.31 +2305,,,,,,,,0, +34969,91.0,9.0,9.0,9.0,9.0,9.0,9.0,33,0.73 +4189,80.0,10.0,10.0,10.0,10.0,10.0,8.0,2,0.05 +53769,95.0,10.0,9.0,10.0,10.0,10.0,9.0,9,0.22 +17788,,,,,,,,0, +46964,92.0,10.0,10.0,9.0,10.0,9.0,9.0,19,0.58 +10272,98.0,10.0,10.0,10.0,10.0,10.0,9.0,11,0.29 +41559,88.0,10.0,10.0,10.0,10.0,9.0,9.0,8,0.18 +47058,,,,,,,,0, +73938,97.0,10.0,10.0,10.0,10.0,10.0,10.0,62,1.44 +29795,,,,,,,,0, +15230,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +5361,98.0,10.0,10.0,10.0,10.0,10.0,10.0,186,4.2 +71404,98.0,10.0,9.0,10.0,10.0,9.0,9.0,15,0.4 +14458,87.0,9.0,9.0,10.0,10.0,9.0,9.0,318,7.03 +14642,92.0,9.0,9.0,10.0,10.0,9.0,9.0,15,1.15 +53895,80.0,8.0,8.0,9.0,9.0,9.0,7.0,2,0.05 +54879,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,4.35 +16437,,,,,,,,0, +46826,,,,,,,,0, +67077,100.0,10.0,10.0,10.0,10.0,10.0,10.0,39,0.87 +17366,,,,,,,,0, +60064,,,,,,,,0, +46469,96.0,10.0,9.0,10.0,10.0,10.0,10.0,10,0.23 +4944,,,,,,,,0, +22886,96.0,10.0,8.0,10.0,10.0,10.0,10.0,5,0.18 +52673,,,,,,,,0, +55882,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.02 +47601,91.0,10.0,10.0,9.0,10.0,9.0,9.0,9,0.3 +57507,67.0,6.0,7.0,7.0,7.0,7.0,7.0,7,0.16 +23366,99.0,10.0,10.0,10.0,10.0,10.0,10.0,39,1.11 +65966,97.0,10.0,10.0,10.0,10.0,9.0,10.0,40,0.9 +48161,87.0,9.0,9.0,10.0,10.0,8.0,9.0,32,0.76 +1929,96.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.14 +45483,97.0,10.0,10.0,10.0,10.0,10.0,10.0,83,1.81 +17265,100.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.04 +28178,96.0,10.0,10.0,10.0,10.0,10.0,10.0,39,0.86 +17449,99.0,10.0,10.0,10.0,10.0,10.0,10.0,60,1.35 +55027,,,,,,,,0, +34531,97.0,10.0,10.0,10.0,10.0,9.0,10.0,81,1.95 +14603,95.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.09 +72899,91.0,9.0,9.0,10.0,10.0,9.0,10.0,15,0.46 +59444,,,,,,,,0, +26573,97.0,10.0,10.0,10.0,10.0,10.0,10.0,360,7.83 +49869,99.0,10.0,10.0,10.0,10.0,10.0,10.0,21,0.46 +72577,97.0,10.0,10.0,10.0,10.0,9.0,10.0,13,1.12 +26111,,,,,,,,0, +52531,,,,,,,,0, +76635,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.17 +41280,95.0,10.0,10.0,9.0,10.0,9.0,9.0,4,0.12 +69036,92.0,9.0,10.0,9.0,10.0,9.0,9.0,5,0.11 +33745,,,,,,,,0, +19233,94.0,9.0,9.0,10.0,10.0,10.0,9.0,29,0.66 +69187,90.0,10.0,8.0,10.0,9.0,10.0,9.0,2,0.05 +55385,95.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.29 +50884,100.0,10.0,9.0,9.0,10.0,9.0,10.0,3,0.07 +76748,100.0,8.0,10.0,10.0,10.0,10.0,8.0,1,0.03 +13185,95.0,10.0,10.0,10.0,10.0,10.0,10.0,24,1.16 +53953,,,,,,,,0, +13602,93.0,7.0,8.0,9.0,8.0,9.0,10.0,3,0.07 +10039,,,,,,,,0, +64547,100.0,10.0,6.0,10.0,10.0,10.0,10.0,1,0.04 +39139,92.0,10.0,9.0,10.0,10.0,9.0,9.0,16,0.39 +38965,93.0,10.0,9.0,9.0,10.0,10.0,9.0,39,1.22 +42090,80.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.2 +48358,89.0,10.0,9.0,10.0,10.0,9.0,9.0,9,0.2 +43246,87.0,8.0,9.0,9.0,10.0,9.0,8.0,40,0.88 +3906,89.0,9.0,9.0,10.0,10.0,10.0,8.0,47,1.06 +28593,97.0,9.0,10.0,10.0,10.0,10.0,9.0,21,0.49 +66189,97.0,10.0,10.0,10.0,10.0,10.0,10.0,26,0.68 +58476,96.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.25 +66009,92.0,9.0,9.0,9.0,9.0,10.0,9.0,19,0.64 +32479,80.0,8.0,10.0,10.0,4.0,10.0,6.0,1,0.02 +25643,96.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.27 +11979,80.0,8.0,9.0,9.0,9.0,8.0,8.0,7,0.17 +50006,88.0,9.0,9.0,10.0,10.0,10.0,9.0,199,4.38 +51041,87.0,9.0,8.0,8.0,8.0,9.0,8.0,7,0.16 +44935,80.0,,10.0,,,,,1,0.07 +52417,,,,,,,,0, +60053,97.0,10.0,10.0,10.0,10.0,9.0,10.0,84,1.97 +72285,,,,,,,,0, +39199,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +20097,95.0,9.0,10.0,10.0,10.0,9.0,10.0,4,0.09 +68128,,,,,,,,0, +29424,,,,,,,,0, +21411,,,,,,,,0, +66966,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.58 +10021,,,,,,,,0, +51605,,,,,,,,0, +61967,97.0,10.0,9.0,10.0,10.0,9.0,9.0,47,1.18 +59712,89.0,9.0,9.0,9.0,10.0,9.0,9.0,7,0.17 +67887,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.32 +54200,97.0,10.0,10.0,10.0,10.0,9.0,10.0,54,1.21 +29577,97.0,10.0,10.0,10.0,10.0,9.0,9.0,144,3.16 +51362,99.0,10.0,10.0,10.0,10.0,9.0,10.0,19,0.45 +20269,,,,,,,,0, +51898,97.0,10.0,10.0,10.0,10.0,9.0,10.0,71,1.57 +13097,100.0,8.0,6.0,8.0,10.0,8.0,8.0,1,0.02 +67572,75.0,9.0,8.0,9.0,10.0,10.0,9.0,7,0.44 +64826,,,,,,,,0, +5638,96.0,10.0,10.0,10.0,10.0,10.0,9.0,73,1.65 +65624,86.0,9.0,8.0,9.0,10.0,9.0,9.0,78,1.74 +344,,,,,,,,0, +58582,99.0,10.0,10.0,10.0,10.0,10.0,10.0,24,0.54 +11631,93.0,10.0,10.0,10.0,10.0,9.0,9.0,47,1.31 +67272,93.0,10.0,10.0,10.0,10.0,9.0,9.0,42,1.15 +55642,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.58 +13061,96.0,10.0,9.0,10.0,10.0,10.0,10.0,50,1.11 +30284,91.0,10.0,10.0,10.0,10.0,10.0,10.0,113,2.51 +62085,96.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.12 +38027,,,,,,,,0, +52680,100.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.12 +23661,99.0,10.0,10.0,10.0,10.0,10.0,10.0,143,3.2 +10225,80.0,8.0,2.0,2.0,6.0,6.0,6.0,1,0.05 +72323,96.0,10.0,10.0,10.0,10.0,9.0,10.0,96,2.75 +696,93.0,10.0,10.0,10.0,10.0,10.0,9.0,36,0.81 +57239,89.0,9.0,9.0,10.0,10.0,10.0,9.0,30,0.69 +74592,100.0,10.0,10.0,10.0,10.0,10.0,10.0,36,0.8 +53781,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +38066,95.0,10.0,10.0,10.0,10.0,10.0,9.0,23,0.78 +378,99.0,10.0,10.0,10.0,10.0,10.0,10.0,31,0.71 +42271,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.14 +74759,100.0,10.0,10.0,10.0,10.0,10.0,10.0,23,0.83 +11061,95.0,10.0,10.0,10.0,10.0,9.0,10.0,92,2.18 +57602,97.0,10.0,10.0,10.0,10.0,9.0,10.0,116,2.66 +5790,,,,,,,,0, +36456,100.0,9.0,10.0,9.0,10.0,9.0,10.0,3,3.0 +42014,,,,,,,,0, +44659,93.0,10.0,9.0,10.0,10.0,9.0,9.0,64,1.46 +42419,95.0,10.0,10.0,10.0,10.0,9.0,9.0,107,2.36 +67786,98.0,10.0,10.0,10.0,10.0,10.0,10.0,32,0.72 +28833,,,,,,,,0, +15258,,,,,,,,0, +26790,80.0,10.0,4.0,10.0,10.0,8.0,10.0,2,0.04 +30720,,,,,,,,0, +72229,92.0,10.0,9.0,9.0,9.0,9.0,9.0,27,0.6 +41102,97.0,10.0,10.0,10.0,10.0,10.0,9.0,158,3.45 +37269,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.22 +40991,98.0,10.0,10.0,10.0,10.0,10.0,10.0,52,1.16 +48416,100.0,10.0,10.0,10.0,10.0,9.0,10.0,108,2.81 +1076,,,,,,,,0, +46097,,,,,,,,0, +71611,100.0,9.0,10.0,10.0,10.0,10.0,10.0,5,0.11 +19778,,,,,,,,0, +58546,99.0,10.0,10.0,10.0,10.0,10.0,10.0,103,2.46 +18542,87.0,9.0,9.0,9.0,9.0,8.0,9.0,95,2.1 +28710,,,,,,,,0, +73111,82.0,9.0,8.0,9.0,9.0,9.0,8.0,26,0.6 +64084,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.2 +57244,100.0,10.0,10.0,10.0,10.0,2.0,10.0,1,0.03 +66039,95.0,9.0,8.0,9.0,9.0,8.0,9.0,4,0.09 +27601,98.0,10.0,10.0,10.0,10.0,10.0,10.0,37,0.85 +52641,97.0,10.0,9.0,10.0,10.0,10.0,10.0,7,0.47 +27215,60.0,8.0,4.0,10.0,10.0,10.0,8.0,1,0.02 +10077,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.11 +11312,97.0,9.0,10.0,10.0,10.0,10.0,10.0,6,0.98 +9805,,,,,,,,0, +13336,,,,,,,,0, +34856,94.0,10.0,10.0,10.0,10.0,9.0,9.0,181,3.97 +61371,87.0,10.0,7.0,9.0,10.0,10.0,9.0,3,0.07 +73766,96.0,10.0,10.0,10.0,10.0,10.0,9.0,42,0.93 +57062,,,,,,,,0, +58396,,,,,,,,1,0.06 +14802,93.0,10.0,9.0,10.0,10.0,10.0,9.0,15,0.33 +23318,95.0,10.0,9.0,10.0,10.0,9.0,10.0,82,1.81 +25617,93.0,9.0,10.0,10.0,10.0,9.0,9.0,83,1.86 +41359,89.0,10.0,10.0,9.0,10.0,8.0,9.0,13,0.29 +9913,97.0,10.0,10.0,10.0,10.0,8.0,10.0,13,0.29 +44656,92.0,10.0,9.0,9.0,9.0,9.0,9.0,64,1.41 +34,89.0,9.0,8.0,10.0,10.0,10.0,9.0,22,0.5 +56505,98.0,10.0,10.0,10.0,10.0,9.0,10.0,84,1.87 +3154,97.0,10.0,10.0,10.0,10.0,10.0,10.0,95,2.14 +8384,100.0,10.0,9.0,9.0,10.0,10.0,10.0,3,0.11 +40465,,,,,,,,0, +7570,,,,,,,,0, +8563,,,,,,,,0, +59804,99.0,10.0,10.0,10.0,10.0,9.0,10.0,22,0.55 +14759,99.0,10.0,10.0,10.0,10.0,10.0,9.0,30,0.66 +74884,99.0,10.0,10.0,10.0,10.0,9.0,9.0,50,1.15 +59501,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.06 +72122,88.0,9.0,9.0,10.0,9.0,9.0,8.0,13,0.33 +59693,92.0,10.0,9.0,9.0,10.0,9.0,9.0,10,0.22 +70573,,,,,,,,0, +3350,90.0,10.0,9.0,10.0,10.0,7.0,10.0,5,0.12 +29536,83.0,9.0,9.0,9.0,9.0,8.0,9.0,113,2.48 +50717,84.0,9.0,9.0,9.0,9.0,8.0,9.0,115,2.59 +27797,89.0,9.0,9.0,9.0,9.0,10.0,9.0,166,3.71 +53878,99.0,10.0,10.0,10.0,10.0,10.0,10.0,93,2.09 +68250,100.0,8.0,10.0,6.0,8.0,8.0,10.0,1,0.03 +30126,98.0,10.0,10.0,10.0,10.0,10.0,10.0,27,0.73 +72551,86.0,9.0,9.0,9.0,9.0,10.0,9.0,34,0.84 +37163,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.07 +13229,88.0,9.0,8.0,9.0,9.0,10.0,9.0,58,1.34 +12041,,,,,,,,0, +2849,98.0,10.0,10.0,10.0,10.0,9.0,9.0,40,1.41 +5265,97.0,10.0,10.0,10.0,10.0,9.0,10.0,23,0.51 +32154,,,,,,,,0, +54043,92.0,9.0,9.0,10.0,9.0,10.0,9.0,79,1.82 +30493,96.0,10.0,10.0,10.0,10.0,9.0,9.0,74,1.64 +29882,95.0,10.0,9.0,10.0,10.0,10.0,9.0,70,1.61 +22684,97.0,10.0,10.0,10.0,10.0,10.0,10.0,64,1.99 +28118,,,,,,,,0, +7881,89.0,9.0,9.0,9.0,9.0,10.0,9.0,42,1.01 +49909,89.0,9.0,9.0,8.0,9.0,10.0,9.0,9,0.21 +22650,100.0,10.0,10.0,10.0,10.0,10.0,9.0,9,0.21 +68494,73.0,7.0,7.0,8.0,8.0,10.0,7.0,7,0.16 +66370,87.0,10.0,9.0,10.0,10.0,9.0,9.0,132,2.98 +65972,94.0,10.0,9.0,10.0,10.0,9.0,9.0,60,1.41 +3199,84.0,8.0,8.0,9.0,8.0,10.0,8.0,32,0.73 +35325,,,,,,,,0, +46389,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.1 +68780,95.0,10.0,10.0,10.0,10.0,9.0,9.0,37,0.87 +35382,,,,,,,,0, +10980,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.18 +33604,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +15056,96.0,10.0,9.0,10.0,10.0,9.0,9.0,11,0.25 +46865,92.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.15 +30598,88.0,9.0,9.0,10.0,9.0,10.0,9.0,75,1.72 +24890,97.0,10.0,9.0,10.0,10.0,10.0,9.0,38,0.85 +43880,60.0,8.0,2.0,2.0,10.0,10.0,4.0,1,0.02 +69022,92.0,10.0,9.0,9.0,9.0,9.0,9.0,40,1.35 +14768,86.0,9.0,8.0,9.0,9.0,9.0,9.0,159,3.54 +29957,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.3 +12145,96.0,10.0,9.0,10.0,10.0,10.0,10.0,44,0.98 +66327,,,,,,,,0, +44436,76.0,8.0,9.0,9.0,8.0,9.0,8.0,17,0.39 +25608,81.0,8.0,9.0,9.0,9.0,10.0,8.0,26,0.59 +60306,96.0,10.0,10.0,10.0,10.0,9.0,10.0,10,0.34 +68915,82.0,9.0,8.0,9.0,9.0,9.0,9.0,66,1.45 +1629,100.0,10.0,10.0,10.0,10.0,9.0,9.0,2,0.14 +47450,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.3 +45063,,,,,,,,0, +69837,,,,,,,,0, +17857,83.0,9.0,9.0,10.0,10.0,8.0,7.0,8,0.2 +29046,91.0,9.0,9.0,10.0,10.0,9.0,9.0,32,0.7 +67203,91.0,10.0,10.0,10.0,10.0,8.0,9.0,22,0.5 +31530,,,,,,,,1,0.02 +10246,95.0,10.0,10.0,10.0,10.0,10.0,9.0,81,1.84 +9589,100.0,10.0,8.0,10.0,10.0,8.0,8.0,1,0.02 +44332,88.0,9.0,8.0,10.0,10.0,8.0,9.0,22,0.49 +38806,98.0,10.0,10.0,10.0,10.0,10.0,10.0,29,0.65 +29554,89.0,9.0,9.0,9.0,10.0,10.0,9.0,244,5.36 +38211,95.0,10.0,10.0,10.0,10.0,10.0,9.0,22,0.51 +76220,99.0,10.0,10.0,10.0,10.0,10.0,10.0,32,0.71 +29976,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +10798,,,,,,,,0, +68490,81.0,8.0,9.0,9.0,9.0,9.0,9.0,26,0.61 +8810,95.0,10.0,9.0,10.0,10.0,9.0,10.0,30,0.72 +11767,99.0,10.0,10.0,10.0,10.0,10.0,10.0,67,1.8 +32897,89.0,9.0,10.0,9.0,10.0,9.0,9.0,13,0.3 +44885,94.0,10.0,9.0,10.0,10.0,10.0,9.0,97,2.17 +69386,98.0,10.0,10.0,10.0,10.0,9.0,10.0,12,0.28 +39060,,,,,,,,0, +69146,92.0,9.0,9.0,9.0,10.0,9.0,9.0,26,0.61 +24920,98.0,10.0,10.0,10.0,10.0,10.0,10.0,55,1.22 +73490,90.0,9.0,9.0,9.0,10.0,9.0,9.0,124,2.79 +8999,100.0,10.0,10.0,10.0,10.0,9.0,9.0,7,0.22 +17246,83.0,8.0,8.0,9.0,8.0,9.0,8.0,13,0.3 +51471,92.0,9.0,9.0,10.0,10.0,9.0,9.0,104,2.3 +37419,,,,,,,,0, +23868,99.0,10.0,10.0,10.0,10.0,10.0,10.0,43,0.96 +22981,92.0,10.0,10.0,10.0,10.0,10.0,9.0,15,0.35 +38734,96.0,10.0,10.0,10.0,9.0,9.0,9.0,11,0.27 +16698,99.0,10.0,10.0,10.0,10.0,10.0,10.0,35,0.79 +50292,99.0,10.0,10.0,10.0,10.0,10.0,10.0,91,2.03 +54242,78.0,9.0,8.0,9.0,9.0,10.0,8.0,59,1.3 +19819,95.0,9.0,9.0,10.0,10.0,9.0,9.0,19,0.42 +53361,93.0,9.0,9.0,10.0,9.0,10.0,9.0,3,0.07 +20651,86.0,9.0,8.0,9.0,9.0,10.0,8.0,7,0.35 +22328,86.0,9.0,9.0,10.0,10.0,9.0,8.0,15,0.47 +7061,85.0,7.0,7.0,8.0,9.0,8.0,8.0,4,3.24 +21378,,,,,,,,0, +50819,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +31015,85.0,8.0,9.0,9.0,9.0,9.0,8.0,56,1.24 +55079,,,,,,,,0, +55102,97.0,10.0,10.0,10.0,10.0,9.0,10.0,69,1.8 +73562,96.0,10.0,10.0,10.0,10.0,9.0,10.0,30,0.72 +76802,90.0,9.0,8.0,10.0,9.0,9.0,9.0,35,0.83 +13768,96.0,10.0,10.0,10.0,10.0,10.0,9.0,35,0.8 +69567,90.0,9.0,9.0,9.0,10.0,9.0,9.0,37,1.04 +43205,,,,,,,,0, +34077,,,,,,,,1,0.02 +15554,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.1 +58216,,,,,,,,0, +40752,98.0,10.0,10.0,10.0,10.0,10.0,10.0,49,1.08 +8930,91.0,9.0,9.0,10.0,10.0,8.0,9.0,40,1.49 +28278,93.0,10.0,8.0,10.0,10.0,10.0,10.0,6,0.14 +9889,,,,,,,,0, +45927,,,,,,,,0, +9447,99.0,10.0,10.0,10.0,10.0,10.0,10.0,51,1.16 +69009,,,,,,,,0, +59927,94.0,10.0,9.0,10.0,10.0,9.0,9.0,17,0.43 +50053,94.0,10.0,9.0,9.0,10.0,9.0,9.0,18,0.4 +42121,97.0,10.0,10.0,10.0,10.0,10.0,9.0,30,0.69 +23546,94.0,9.0,9.0,10.0,10.0,10.0,9.0,24,0.7 +64679,89.0,8.0,8.0,9.0,9.0,9.0,8.0,7,0.17 +32038,96.0,9.0,9.0,10.0,10.0,10.0,10.0,29,0.7 +37891,,,,,,,,2,0.04 +43655,92.0,9.0,9.0,9.0,10.0,10.0,9.0,40,0.9 +759,76.0,9.0,10.0,9.0,8.0,8.0,7.0,9,0.21 +56268,,,,,,,,0, +39632,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.62 +12834,96.0,9.0,8.0,9.0,10.0,10.0,9.0,11,0.24 +42545,,,,,,,,0, +61804,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.1 +68252,100.0,10.0,9.0,10.0,10.0,10.0,9.0,6,0.13 +60830,86.0,9.0,9.0,9.0,9.0,9.0,8.0,22,0.5 +34924,80.0,7.0,7.0,9.0,9.0,10.0,6.0,3,0.07 +10771,97.0,10.0,10.0,10.0,10.0,9.0,10.0,174,4.11 +42458,93.0,10.0,10.0,9.0,9.0,9.0,9.0,7,0.16 +6159,94.0,10.0,8.0,10.0,10.0,10.0,10.0,7,0.17 +3343,75.0,9.0,8.0,8.0,10.0,9.0,9.0,4,0.09 +76994,97.0,10.0,10.0,10.0,10.0,10.0,10.0,86,1.93 +54926,94.0,10.0,10.0,9.0,10.0,9.0,9.0,27,1.01 +58791,92.0,10.0,8.0,10.0,10.0,10.0,9.0,5,0.11 +32755,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +55443,,,,,,,,0, +33592,97.0,10.0,10.0,10.0,10.0,10.0,10.0,21,1.34 +72165,91.0,9.0,9.0,10.0,9.0,9.0,9.0,19,0.43 +6085,98.0,10.0,10.0,10.0,10.0,10.0,10.0,62,1.39 +3054,95.0,10.0,9.0,10.0,10.0,10.0,9.0,53,1.23 +20135,96.0,10.0,10.0,10.0,10.0,9.0,10.0,19,0.44 +69043,96.0,10.0,9.0,10.0,10.0,9.0,9.0,45,1.02 +21082,90.0,9.0,10.0,10.0,10.0,8.0,8.0,2,0.05 +73893,,,,,,,,0, +41956,,,,,,,,0, +53417,93.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.46 +63516,,,,,,,,0, +75892,93.0,10.0,9.0,10.0,10.0,10.0,9.0,120,2.7 +3413,87.0,9.0,8.0,9.0,9.0,9.0,9.0,144,3.17 +76514,97.0,10.0,9.0,9.0,9.0,9.0,10.0,8,0.34 +37975,,,,,,,,0, +27042,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.59 +55340,,,,,,,,0, +15356,94.0,10.0,9.0,10.0,10.0,9.0,10.0,102,2.3 +19447,94.0,10.0,10.0,10.0,10.0,10.0,10.0,22,0.52 +36954,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.14 +8718,95.0,10.0,10.0,10.0,10.0,10.0,10.0,376,8.67 +30322,94.0,10.0,9.0,10.0,10.0,9.0,9.0,27,0.6 +36186,98.0,10.0,10.0,10.0,10.0,10.0,9.0,36,0.83 +14211,,,,,,,,0, +6506,97.0,10.0,9.0,10.0,10.0,10.0,10.0,6,0.21 +15100,94.0,10.0,9.0,10.0,10.0,9.0,9.0,61,1.36 +8809,80.0,8.0,10.0,10.0,10.0,10.0,8.0,1,0.04 +67560,81.0,9.0,8.0,9.0,9.0,8.0,9.0,118,2.69 +43909,94.0,10.0,9.0,10.0,10.0,10.0,9.0,18,0.44 +48307,95.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.13 +39233,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +48763,97.0,10.0,10.0,10.0,10.0,9.0,9.0,7,0.16 +8989,100.0,10.0,8.0,8.0,8.0,10.0,8.0,1,0.02 +11639,94.0,10.0,9.0,10.0,10.0,9.0,10.0,30,0.72 +16977,99.0,10.0,10.0,10.0,10.0,10.0,9.0,27,0.61 +10592,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.57 +23873,80.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.09 +63080,,,,,,,,1,0.02 +65965,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.37 +57420,94.0,10.0,9.0,9.0,10.0,9.0,10.0,201,6.25 +45909,,,,,,,,0, +5096,89.0,9.0,9.0,9.0,10.0,9.0,10.0,19,0.44 +48084,97.0,10.0,10.0,10.0,10.0,9.0,10.0,24,0.56 +40996,97.0,10.0,9.0,10.0,10.0,10.0,9.0,63,1.39 +15385,96.0,10.0,10.0,10.0,10.0,9.0,10.0,17,0.4 +20296,91.0,10.0,9.0,10.0,10.0,9.0,9.0,21,0.47 +19033,90.0,10.0,9.0,10.0,10.0,9.0,9.0,31,0.74 +29672,94.0,10.0,10.0,10.0,10.0,9.0,10.0,28,0.63 +24895,88.0,10.0,9.0,10.0,10.0,9.0,9.0,13,0.32 +23351,96.0,10.0,10.0,10.0,10.0,9.0,10.0,31,0.72 +758,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.04 +54719,,,,,,,,0, +58314,,,,,,,,0, +52516,79.0,8.0,8.0,9.0,9.0,9.0,8.0,140,3.22 +63577,,,,,,,,0, +7708,95.0,10.0,10.0,10.0,10.0,9.0,9.0,20,0.54 +29403,94.0,9.0,9.0,10.0,10.0,10.0,9.0,64,1.48 +67821,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.11 +24819,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.2 +30850,20.0,,,,2.0,,,1,0.04 +33273,76.0,8.0,7.0,9.0,8.0,7.0,8.0,5,0.11 +61481,93.0,9.0,9.0,10.0,10.0,9.0,9.0,19,0.53 +35857,100.0,9.0,9.0,10.0,10.0,9.0,8.0,3,0.07 +17494,98.0,10.0,10.0,10.0,10.0,10.0,10.0,83,1.93 +13498,92.0,9.0,9.0,10.0,10.0,10.0,9.0,15,0.34 +4824,90.0,10.0,10.0,9.0,10.0,10.0,10.0,7,0.18 +10338,96.0,10.0,10.0,10.0,10.0,10.0,9.0,14,0.31 +74007,90.0,10.0,8.0,10.0,10.0,10.0,10.0,5,0.11 +54581,80.0,10.0,8.0,10.0,10.0,8.0,8.0,1,0.02 +3001,96.0,10.0,9.0,10.0,10.0,10.0,10.0,10,0.24 +69543,,,,,,,,0, +25829,83.0,9.0,8.0,10.0,9.0,8.0,8.0,31,0.72 +37021,92.0,9.0,9.0,10.0,10.0,9.0,9.0,43,0.97 +58639,96.0,10.0,10.0,10.0,10.0,9.0,9.0,100,2.28 +61352,76.0,7.0,8.0,8.0,7.0,9.0,8.0,5,0.11 +57777,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +32579,98.0,10.0,10.0,10.0,10.0,10.0,9.0,34,0.77 +47923,95.0,10.0,10.0,10.0,10.0,10.0,9.0,62,1.41 +32179,97.0,10.0,10.0,10.0,10.0,9.0,10.0,9,0.22 +49930,98.0,10.0,10.0,10.0,10.0,10.0,10.0,78,1.73 +45510,100.0,10.0,9.0,9.0,10.0,10.0,10.0,6,0.15 +14930,95.0,10.0,10.0,10.0,10.0,10.0,9.0,247,5.95 +36173,98.0,10.0,10.0,10.0,10.0,10.0,9.0,86,1.93 +10874,91.0,9.0,9.0,10.0,9.0,9.0,9.0,59,1.57 +7340,98.0,10.0,10.0,10.0,10.0,10.0,10.0,32,1.2 +18799,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.51 +20323,,,,,,,,0, +33015,95.0,10.0,10.0,10.0,9.0,10.0,9.0,8,0.19 +63361,96.0,10.0,10.0,10.0,10.0,10.0,10.0,51,1.18 +36897,80.0,10.0,6.0,8.0,10.0,6.0,8.0,1,0.02 +64338,80.0,8.0,8.0,9.0,9.0,8.0,8.0,7,0.16 +52202,75.0,7.0,8.0,8.0,8.0,9.0,6.0,4,0.12 +35872,98.0,10.0,10.0,10.0,10.0,10.0,9.0,43,1.02 +575,96.0,10.0,10.0,9.0,10.0,10.0,9.0,5,0.12 +41047,100.0,10.0,10.0,10.0,10.0,6.0,8.0,1,0.02 +56340,90.0,9.0,8.0,9.0,10.0,10.0,9.0,19,0.46 +45443,99.0,10.0,10.0,10.0,10.0,9.0,9.0,31,0.78 +14725,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.13 +22620,88.0,9.0,9.0,9.0,10.0,10.0,9.0,5,0.14 +24934,92.0,9.0,9.0,10.0,10.0,10.0,9.0,81,1.87 +33953,93.0,10.0,9.0,10.0,10.0,10.0,9.0,6,0.14 +55698,96.0,10.0,10.0,10.0,10.0,10.0,10.0,34,1.0 +52763,97.0,10.0,10.0,10.0,10.0,9.0,10.0,81,1.8 +62042,97.0,10.0,10.0,10.0,10.0,10.0,10.0,100,2.4 +16354,98.0,10.0,10.0,10.0,10.0,10.0,10.0,70,1.6 +37327,93.0,10.0,9.0,10.0,10.0,10.0,9.0,26,0.67 +61679,87.0,9.0,9.0,9.0,9.0,9.0,8.0,34,0.77 +22971,,,,,,,,0, +1395,97.0,10.0,10.0,10.0,10.0,10.0,9.0,22,0.49 +19194,,,,,,,,0, +39705,90.0,9.0,9.0,10.0,10.0,10.0,9.0,350,7.83 +20461,100.0,10.0,10.0,10.0,10.0,10.0,10.0,23,0.52 +31810,95.0,10.0,10.0,10.0,10.0,10.0,10.0,81,1.83 +66847,,,,,,,,0, +41511,80.0,8.0,8.0,8.0,8.0,8.0,8.0,1,0.02 +14726,100.0,10.0,8.0,10.0,10.0,10.0,9.0,3,0.07 +29142,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.02 +18503,,,,,,,,0, +46764,95.0,10.0,10.0,10.0,9.0,10.0,9.0,11,0.25 +26524,100.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.05 +24245,,,,,,,,0, +64361,80.0,9.0,10.0,10.0,10.0,8.0,7.0,2,0.05 +36233,,,,,,,,0, +30723,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.11 +27065,82.0,8.0,8.0,9.0,9.0,9.0,8.0,53,1.18 +60574,97.0,10.0,10.0,10.0,10.0,9.0,10.0,94,2.1 +23795,,,,,,,,0, +39744,96.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.14 +15626,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.58 +22001,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +1539,97.0,10.0,10.0,10.0,10.0,9.0,10.0,30,0.76 +42224,85.0,9.0,9.0,9.0,9.0,9.0,9.0,68,1.56 +50080,,,,,,,,0, +72700,95.0,9.0,9.0,10.0,10.0,10.0,10.0,23,0.58 +4048,,,,,,,,0, +14684,,,,,,,,0, +28090,86.0,9.0,9.0,10.0,9.0,9.0,9.0,25,0.6 +4188,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.27 +16497,99.0,10.0,10.0,10.0,10.0,10.0,9.0,17,0.44 +65130,,,,,,,,0, +75485,91.0,9.0,10.0,10.0,10.0,9.0,9.0,11,1.49 +51055,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.09 +36132,92.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.12 +24452,,,,,,,,0, +72680,97.0,10.0,10.0,10.0,10.0,10.0,9.0,23,0.55 +54315,98.0,10.0,10.0,10.0,10.0,9.0,10.0,70,1.61 +16550,83.0,9.0,9.0,9.0,8.0,9.0,8.0,15,0.57 +62433,92.0,9.0,9.0,10.0,10.0,9.0,9.0,27,0.7 +41508,80.0,8.0,7.0,10.0,10.0,10.0,10.0,2,0.05 +74348,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +68790,77.0,8.0,7.0,8.0,10.0,8.0,9.0,6,0.13 +72215,,,,,,,,0, +47669,89.0,9.0,8.0,10.0,10.0,9.0,9.0,201,4.53 +45087,,,,,,,,0, +25992,96.0,10.0,9.0,10.0,10.0,10.0,10.0,17,1.18 +42739,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.07 +62883,98.0,10.0,10.0,10.0,10.0,9.0,10.0,26,0.59 +18809,94.0,10.0,10.0,10.0,10.0,10.0,10.0,87,1.95 +74881,74.0,9.0,8.0,9.0,9.0,10.0,9.0,11,0.27 +37885,80.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.02 +28998,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.13 +40262,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +58844,100.0,10.0,8.0,10.0,10.0,8.0,10.0,1,0.02 +10288,95.0,10.0,9.0,10.0,10.0,10.0,9.0,150,3.34 +40750,80.0,8.0,9.0,7.0,8.0,8.0,7.0,4,0.1 +8398,96.0,10.0,10.0,9.0,10.0,10.0,9.0,43,1.03 +13871,92.0,10.0,9.0,9.0,10.0,9.0,9.0,60,2.22 +28762,91.0,9.0,9.0,10.0,10.0,9.0,9.0,134,3.05 +21858,80.0,9.0,6.0,10.0,10.0,9.0,9.0,3,0.07 +25093,90.0,9.0,10.0,10.0,9.0,10.0,10.0,13,1.22 +9134,90.0,9.0,9.0,10.0,10.0,9.0,10.0,2,0.05 +65770,82.0,9.0,9.0,9.0,10.0,8.0,8.0,12,0.29 +28006,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +15863,,,,,,,,0, +46355,98.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.25 +72447,96.0,10.0,10.0,10.0,10.0,9.0,9.0,15,0.34 +64289,100.0,10.0,10.0,10.0,10.0,9.0,10.0,30,0.72 +50935,,,,,,,,0, +37276,80.0,10.0,9.0,7.0,10.0,9.0,9.0,2,0.05 +61929,98.0,10.0,10.0,10.0,10.0,10.0,10.0,43,0.96 +20486,86.0,9.0,8.0,10.0,10.0,9.0,9.0,28,0.65 +60378,89.0,9.0,10.0,9.0,10.0,10.0,9.0,13,0.42 +2111,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.31 +32364,96.0,10.0,10.0,10.0,10.0,9.0,10.0,52,1.17 +4972,95.0,10.0,10.0,10.0,10.0,10.0,10.0,36,0.86 +7805,70.0,9.0,9.0,8.0,9.0,10.0,8.0,2,0.05 +66277,84.0,9.0,8.0,9.0,9.0,10.0,9.0,24,0.55 +283,,,,,,,,0, +45452,94.0,10.0,9.0,10.0,10.0,10.0,9.0,31,0.69 +31681,99.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.39 +66085,,,,,,,,0, +6981,99.0,10.0,10.0,10.0,10.0,10.0,10.0,20,0.51 +64863,96.0,9.0,9.0,10.0,10.0,10.0,9.0,5,0.12 +61631,98.0,10.0,10.0,9.0,10.0,9.0,10.0,9,0.2 +32955,80.0,8.0,8.0,10.0,8.0,8.0,8.0,2,0.16 +2233,,,,,,,,0, +74316,96.0,10.0,10.0,10.0,10.0,10.0,9.0,42,0.95 +24851,97.0,10.0,10.0,10.0,10.0,10.0,10.0,23,0.69 +63968,99.0,10.0,10.0,10.0,10.0,10.0,10.0,20,0.45 +20221,,,,,,,,0, +65262,,,,,,,,0, +42122,,,,,,,,0, +396,76.0,8.0,8.0,9.0,9.0,10.0,8.0,57,1.32 +55823,64.0,7.0,7.0,9.0,8.0,9.0,7.0,22,0.55 +19168,84.0,8.0,8.0,9.0,9.0,10.0,8.0,17,0.46 +71168,94.0,10.0,9.0,10.0,10.0,10.0,9.0,10,0.24 +74951,93.0,10.0,9.0,10.0,10.0,10.0,10.0,6,0.21 +47738,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.05 +42881,,,,,,,,0, +43703,90.0,9.0,9.0,10.0,10.0,9.0,9.0,29,0.68 +72015,,,,,,,,0, +11645,,,,,,,,0, +42661,93.0,9.0,7.0,10.0,10.0,8.0,9.0,3,0.07 +20993,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.31 +60205,94.0,10.0,9.0,10.0,10.0,10.0,10.0,8,0.34 +42629,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.07 +41399,95.0,10.0,9.0,10.0,10.0,9.0,9.0,30,0.67 +69410,93.0,10.0,10.0,9.0,10.0,9.0,9.0,6,0.14 +34630,99.0,10.0,10.0,10.0,10.0,10.0,10.0,50,1.17 +69916,98.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.25 +9844,94.0,10.0,10.0,10.0,10.0,8.0,9.0,19,0.43 +25545,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.2 +31229,,,,,,,,0, +67341,97.0,10.0,10.0,10.0,10.0,10.0,10.0,57,1.28 +57939,96.0,10.0,10.0,10.0,10.0,10.0,10.0,97,2.16 +19937,96.0,10.0,10.0,10.0,10.0,10.0,9.0,50,1.12 +71282,95.0,10.0,10.0,10.0,10.0,9.0,9.0,117,2.63 +55138,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.05 +2482,93.0,10.0,10.0,10.0,10.0,9.0,9.0,113,2.53 +66311,97.0,10.0,9.0,10.0,10.0,10.0,10.0,47,1.16 +60318,97.0,10.0,9.0,10.0,10.0,10.0,10.0,45,1.63 +23152,87.0,9.0,8.0,9.0,9.0,8.0,9.0,3,0.07 +55342,96.0,10.0,9.0,10.0,10.0,10.0,9.0,9,3.14 +60985,100.0,10.0,10.0,8.0,10.0,8.0,8.0,1,0.03 +56597,93.0,10.0,9.0,10.0,10.0,9.0,9.0,24,0.59 +40117,93.0,9.0,9.0,9.0,10.0,9.0,9.0,31,0.7 +16430,96.0,10.0,9.0,10.0,10.0,9.0,10.0,66,1.53 +74324,,,,,,,,0, +28659,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.03 +52562,85.0,10.0,9.0,10.0,10.0,9.0,9.0,4,0.1 +10959,,,,,,,,0, +63232,,,,,,,,0, +14640,91.0,9.0,9.0,10.0,10.0,9.0,9.0,17,0.38 +38462,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.12 +43275,90.0,8.0,9.0,9.0,10.0,10.0,10.0,2,0.05 +48444,,,,,,,,0, +64288,88.0,9.0,9.0,9.0,9.0,9.0,9.0,27,0.65 +827,,,,,,,,0, +62525,86.0,9.0,9.0,10.0,10.0,9.0,9.0,140,3.14 +10221,93.0,9.0,10.0,10.0,10.0,10.0,9.0,9,0.2 +8440,98.0,9.0,10.0,10.0,10.0,10.0,9.0,8,0.2 +8115,97.0,10.0,9.0,10.0,9.0,9.0,9.0,6,0.14 +54074,98.0,10.0,10.0,10.0,10.0,10.0,9.0,32,0.77 +57427,95.0,10.0,10.0,10.0,10.0,9.0,10.0,99,2.26 +64715,98.0,10.0,10.0,10.0,10.0,10.0,9.0,10,0.28 +44182,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +22,,,,,,,,0, +7283,98.0,10.0,9.0,10.0,10.0,10.0,10.0,9,0.36 +68282,95.0,10.0,10.0,10.0,10.0,9.0,10.0,15,0.36 +21002,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.07 +67738,97.0,10.0,9.0,10.0,10.0,10.0,9.0,48,1.09 +51914,97.0,10.0,10.0,10.0,10.0,10.0,10.0,73,1.73 +44062,92.0,9.0,9.0,10.0,9.0,9.0,9.0,21,0.51 +65518,87.0,9.0,9.0,9.0,9.0,10.0,8.0,14,0.43 +8643,,,,,,,,1,0.02 +20118,,,,,,,,0, +25098,95.0,10.0,10.0,10.0,10.0,9.0,10.0,126,2.86 +29832,95.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.1 +20146,,,,,,,,0, +33434,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +74115,88.0,9.0,9.0,10.0,10.0,10.0,9.0,196,4.43 +24897,,,,,,,,0, +21005,96.0,10.0,10.0,10.0,10.0,10.0,9.0,100,2.32 +61102,93.0,10.0,9.0,10.0,10.0,9.0,10.0,9,0.22 +71331,,,,,,,,0, +1325,98.0,10.0,10.0,10.0,10.0,10.0,10.0,125,2.81 +70180,98.0,10.0,10.0,9.0,10.0,10.0,10.0,11,0.64 +22890,94.0,9.0,9.0,10.0,10.0,10.0,9.0,17,0.39 +49576,89.0,9.0,9.0,9.0,9.0,9.0,9.0,7,0.16 +26193,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.08 +8456,,,,,,,,0, +39727,,,,,,,,0, +21700,94.0,10.0,9.0,10.0,10.0,9.0,9.0,33,0.84 +19751,,,,,,,,0, +59682,84.0,8.0,9.0,8.0,9.0,10.0,9.0,16,0.49 +63788,65.0,7.0,8.0,7.0,6.0,8.0,7.0,11,0.3 +18369,84.0,8.0,9.0,9.0,9.0,9.0,9.0,11,0.29 +31546,,,,,,,,0, +20045,95.0,10.0,10.0,10.0,10.0,9.0,10.0,62,1.41 +53638,99.0,10.0,10.0,10.0,10.0,9.0,10.0,14,0.54 +34722,95.0,10.0,10.0,10.0,10.0,9.0,9.0,73,1.89 +70814,99.0,10.0,10.0,10.0,10.0,10.0,10.0,32,0.73 +7713,92.0,10.0,9.0,10.0,10.0,9.0,9.0,11,2.06 +70942,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.23 +48086,96.0,10.0,10.0,10.0,10.0,9.0,10.0,53,1.21 +66427,90.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +16180,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.21 +55922,89.0,9.0,9.0,9.0,10.0,10.0,8.0,36,0.83 +8911,,,,,,,,0, +5373,73.0,7.0,7.0,7.0,7.0,7.0,7.0,3,0.26 +25907,,,,,,,,0, +48792,88.0,9.0,9.0,9.0,9.0,9.0,9.0,92,2.09 +31929,91.0,9.0,9.0,9.0,9.0,9.0,9.0,56,1.28 +59218,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.25 +38816,94.0,10.0,9.0,10.0,10.0,9.0,9.0,42,0.95 +51626,96.0,10.0,9.0,9.0,10.0,9.0,9.0,23,0.52 +70220,100.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.39 +65961,98.0,10.0,10.0,10.0,10.0,10.0,10.0,50,1.66 +40958,93.0,10.0,10.0,10.0,9.0,9.0,9.0,36,0.81 +23275,100.0,9.0,9.0,10.0,9.0,9.0,9.0,2,0.05 +50117,94.0,10.0,10.0,10.0,10.0,9.0,10.0,16,0.83 +55118,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.08 +10471,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +71589,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.05 +77017,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.25 +14118,97.0,10.0,9.0,10.0,10.0,9.0,10.0,6,0.15 +16314,97.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.33 +58690,98.0,10.0,9.0,10.0,10.0,9.0,10.0,26,0.59 +33632,96.0,10.0,10.0,10.0,10.0,9.0,10.0,337,7.8 +20162,90.0,9.0,9.0,10.0,10.0,8.0,9.0,4,0.1 +12679,91.0,10.0,9.0,9.0,10.0,10.0,9.0,7,0.17 +3403,88.0,9.0,9.0,10.0,10.0,8.0,9.0,96,2.16 +71004,98.0,10.0,10.0,10.0,10.0,10.0,9.0,85,1.97 +6951,90.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.71 +41271,97.0,10.0,10.0,10.0,10.0,9.0,10.0,282,6.4 +59795,,,,,,,,0, +51576,,,,,,,,0, +60927,97.0,10.0,10.0,10.0,10.0,10.0,9.0,32,0.74 +65031,,,,,,,,0, +56201,,,,,,,,0, +65608,87.0,9.0,7.0,8.0,9.0,9.0,9.0,19,0.43 +29639,97.0,10.0,10.0,10.0,10.0,10.0,10.0,70,1.65 +57299,80.0,8.0,4.0,8.0,6.0,10.0,8.0,1,0.03 +59158,90.0,10.0,9.0,10.0,10.0,8.0,10.0,4,0.09 +60402,97.0,10.0,10.0,10.0,10.0,9.0,10.0,229,5.16 +3431,88.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.14 +24702,80.0,8.0,8.0,10.0,10.0,8.0,8.0,2,0.05 +69936,95.0,10.0,10.0,9.0,10.0,8.0,10.0,46,1.12 +29104,,,,,,,,0, +23751,95.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.1 +5834,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +8544,98.0,10.0,10.0,10.0,10.0,9.0,10.0,21,0.51 +8473,92.0,9.0,9.0,10.0,10.0,10.0,9.0,75,1.77 +9750,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +19801,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +62146,97.0,10.0,10.0,10.0,10.0,10.0,10.0,76,1.74 +6941,,,,,,,,0, +4644,100.0,,,,,,,1,0.03 +58028,100.0,10.0,10.0,10.0,10.0,10.0,10.0,53,1.19 +39214,93.0,10.0,10.0,10.0,9.0,9.0,9.0,4,0.1 +76054,,,,,,,,0, +67396,,,,,,,,0, +40423,95.0,10.0,9.0,10.0,9.0,9.0,10.0,22,0.49 +41518,96.0,10.0,9.0,10.0,10.0,10.0,10.0,344,7.72 +29105,99.0,10.0,10.0,10.0,10.0,10.0,10.0,124,2.87 +24546,,,,,,,,0, +59671,,,,,,,,0, +15767,96.0,10.0,10.0,10.0,10.0,9.0,9.0,15,0.37 +66042,97.0,10.0,10.0,10.0,10.0,10.0,9.0,21,0.51 +41412,92.0,10.0,9.0,10.0,10.0,10.0,9.0,53,1.21 +45821,,,,,,,,0, +31061,94.0,10.0,9.0,10.0,10.0,9.0,10.0,7,2.41 +27805,90.0,8.0,9.0,10.0,10.0,10.0,9.0,6,0.14 +28107,80.0,8.0,6.0,10.0,10.0,8.0,6.0,1,0.03 +44082,97.0,10.0,10.0,10.0,10.0,10.0,10.0,432,10.16 +37049,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.3 +57329,70.0,5.0,6.0,8.0,7.0,7.0,6.0,5,0.13 +22978,87.0,9.0,9.0,9.0,10.0,10.0,9.0,3,0.07 +69395,94.0,10.0,10.0,10.0,10.0,10.0,9.0,158,3.61 +72146,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.44 +12968,95.0,10.0,9.0,10.0,10.0,10.0,9.0,40,0.95 +268,87.0,9.0,9.0,9.0,9.0,9.0,9.0,5,0.12 +36793,86.0,9.0,8.0,9.0,9.0,9.0,9.0,7,0.16 +72029,,,,,,,,0, +20152,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.1 +1175,94.0,10.0,9.0,10.0,10.0,9.0,9.0,7,0.16 +67361,100.0,10.0,10.0,10.0,10.0,10.0,10.0,27,0.69 +23961,96.0,10.0,10.0,10.0,10.0,10.0,10.0,49,3.43 +56618,99.0,10.0,10.0,10.0,10.0,10.0,10.0,27,0.62 +1097,96.0,10.0,9.0,10.0,10.0,10.0,10.0,62,1.4 +41019,97.0,10.0,10.0,10.0,10.0,9.0,10.0,58,1.33 +67544,89.0,9.0,8.0,10.0,10.0,9.0,9.0,42,0.96 +44136,93.0,9.0,9.0,9.0,9.0,9.0,9.0,109,2.53 +617,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.78 +39639,93.0,9.0,9.0,10.0,9.0,9.0,9.0,17,0.42 +51629,100.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.1 +43674,97.0,10.0,10.0,10.0,10.0,10.0,9.0,85,1.96 +49669,,,,,,,,0, +66007,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.2 +11814,94.0,10.0,9.0,10.0,10.0,10.0,9.0,7,0.17 +15543,,,,,,,,0, +19982,100.0,10.0,10.0,9.0,9.0,10.0,9.0,2,0.05 +33214,,,,,,,,0, +16391,,,,,,,,0, +68413,97.0,10.0,10.0,10.0,10.0,10.0,10.0,225,5.07 +68712,92.0,9.0,10.0,10.0,10.0,10.0,9.0,5,0.11 +32795,95.0,9.0,9.0,10.0,10.0,10.0,10.0,19,0.43 +73637,86.0,9.0,8.0,10.0,9.0,10.0,9.0,40,1.01 +70594,99.0,10.0,10.0,10.0,10.0,9.0,10.0,23,0.53 +23060,89.0,9.0,9.0,9.0,9.0,9.0,9.0,9,0.26 +43316,97.0,10.0,9.0,10.0,10.0,10.0,10.0,95,2.17 +58322,97.0,10.0,9.0,10.0,10.0,9.0,10.0,14,0.32 +33053,89.0,9.0,8.0,10.0,10.0,8.0,9.0,9,0.2 +43977,95.0,10.0,10.0,10.0,10.0,10.0,10.0,58,1.32 +47098,100.0,10.0,10.0,10.0,10.0,10.0,8.0,2,0.27 +49265,,,,,,,,0, +65547,97.0,10.0,10.0,10.0,10.0,10.0,10.0,60,2.0 +45681,90.0,8.0,10.0,9.0,10.0,10.0,8.0,2,0.05 +907,93.0,10.0,10.0,10.0,10.0,10.0,9.0,20,0.46 +25317,67.0,7.0,8.0,9.0,9.0,9.0,9.0,4,0.1 +66957,98.0,10.0,10.0,10.0,10.0,10.0,10.0,42,1.01 +59356,94.0,10.0,10.0,9.0,10.0,10.0,9.0,68,1.55 +70697,100.0,10.0,9.0,10.0,9.0,10.0,9.0,2,0.05 +37725,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.46 +60545,100.0,10.0,10.0,10.0,10.0,8.0,10.0,4,0.09 +19040,94.0,10.0,10.0,10.0,10.0,9.0,9.0,78,1.78 +64266,,,,,,,,0, +67491,94.0,10.0,10.0,10.0,10.0,10.0,10.0,57,1.31 +49033,93.0,9.0,9.0,10.0,10.0,9.0,9.0,22,0.5 +12323,96.0,10.0,9.0,10.0,10.0,10.0,10.0,35,0.8 +76801,,,,,,,,0, +34222,89.0,8.0,10.0,10.0,10.0,9.0,9.0,7,0.16 +64302,94.0,10.0,9.0,10.0,10.0,9.0,9.0,65,1.51 +76073,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.22 +55377,97.0,10.0,10.0,10.0,10.0,9.0,10.0,13,0.32 +43908,,,,,,,,0, +14111,94.0,10.0,10.0,10.0,10.0,9.0,9.0,14,0.32 +67102,,,,,,,,0, +6604,100.0,9.0,10.0,10.0,10.0,10.0,9.0,2,0.05 +44592,91.0,9.0,9.0,10.0,9.0,9.0,9.0,12,0.27 +36004,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +57426,94.0,10.0,10.0,10.0,10.0,10.0,9.0,35,0.79 +5490,97.0,10.0,9.0,10.0,10.0,10.0,10.0,6,0.14 +74854,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.07 +35094,97.0,10.0,10.0,10.0,10.0,10.0,10.0,49,1.16 +17655,,,,,,,,0, +3957,84.0,10.0,8.0,10.0,9.0,9.0,9.0,11,0.25 +20693,,,,,,,,1,0.21 +24389,100.0,10.0,10.0,10.0,10.0,10.0,10.0,81,1.86 +57969,94.0,10.0,8.0,10.0,10.0,10.0,9.0,20,0.45 +59301,96.0,10.0,10.0,10.0,10.0,9.0,10.0,111,2.64 +15536,99.0,10.0,10.0,10.0,10.0,10.0,9.0,48,1.15 +68361,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.02 +73217,,,,,,,,1,0.02 +14256,,,,,,,,0, +24968,,,,,,,,0, +23345,98.0,10.0,10.0,10.0,10.0,10.0,10.0,107,2.43 +37984,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.12 +2089,,,,,,,,0, +24386,,,,,,,,0, +19666,,,,,,,,0, +2784,80.0,8.0,4.0,8.0,10.0,8.0,6.0,1,0.02 +39981,100.0,10.0,9.0,10.0,10.0,10.0,9.0,8,0.42 +48432,,,,,,,,0, +5619,94.0,10.0,10.0,10.0,10.0,10.0,9.0,38,0.93 +43081,97.0,10.0,10.0,10.0,10.0,10.0,9.0,51,1.16 +9144,97.0,10.0,10.0,10.0,10.0,10.0,10.0,21,0.51 +59418,,,,,,,,0, +23732,96.0,10.0,9.0,10.0,10.0,10.0,9.0,21,0.49 +15227,88.0,9.0,9.0,9.0,9.0,10.0,9.0,127,2.89 +43253,97.0,10.0,9.0,10.0,10.0,9.0,10.0,39,1.02 +68098,90.0,9.0,9.0,10.0,10.0,10.0,10.0,8,0.2 +56117,,,,,,,,0, +21056,,,,,,,,0, +27781,84.0,8.0,9.0,9.0,9.0,10.0,8.0,38,0.92 +12432,98.0,10.0,10.0,10.0,10.0,9.0,9.0,30,0.69 +29455,97.0,10.0,10.0,10.0,10.0,10.0,10.0,111,2.7 +30346,96.0,10.0,10.0,10.0,10.0,9.0,10.0,47,1.07 +73187,98.0,10.0,10.0,10.0,10.0,10.0,10.0,33,0.82 +46352,98.0,10.0,10.0,10.0,10.0,10.0,10.0,199,4.89 +51895,98.0,10.0,10.0,10.0,10.0,10.0,10.0,51,1.21 +55936,100.0,10.0,9.0,10.0,10.0,9.0,10.0,3,0.07 +75842,,,,,,,,0, +50794,95.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.1 +37425,89.0,9.0,9.0,10.0,10.0,9.0,9.0,43,0.98 +56069,96.0,10.0,10.0,10.0,10.0,9.0,10.0,42,0.96 +35938,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.14 +5645,98.0,10.0,10.0,10.0,10.0,10.0,10.0,45,1.19 +27210,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +27400,97.0,10.0,10.0,10.0,10.0,9.0,9.0,15,0.35 +11369,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.2 +13809,96.0,10.0,10.0,10.0,10.0,9.0,9.0,45,1.03 +66755,97.0,10.0,10.0,10.0,9.0,10.0,10.0,6,0.9 +42040,20.0,,,,2.0,,,1,0.02 +22325,95.0,10.0,9.0,10.0,10.0,9.0,9.0,31,0.72 +10023,,,,,,,,0, +42384,93.0,9.0,10.0,9.0,10.0,10.0,10.0,12,0.28 +73393,100.0,10.0,10.0,9.0,10.0,10.0,10.0,9,0.24 +64440,,,,,,,,0, +38077,95.0,10.0,10.0,10.0,10.0,9.0,10.0,46,1.05 +14448,87.0,9.0,9.0,10.0,10.0,8.0,9.0,110,2.5 +54764,97.0,10.0,10.0,10.0,10.0,9.0,9.0,14,0.37 +52473,93.0,9.0,10.0,10.0,10.0,10.0,9.0,18,0.79 +77001,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +35831,90.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.65 +66687,87.0,9.0,8.0,9.0,9.0,9.0,9.0,12,0.27 +27004,94.0,10.0,9.0,10.0,10.0,10.0,9.0,51,1.21 +3354,97.0,10.0,10.0,10.0,10.0,9.0,10.0,236,5.36 +32090,,,,,,,,0, +35922,,,,,,,,0, +15642,95.0,10.0,9.0,10.0,10.0,10.0,9.0,24,0.56 +39147,97.0,10.0,10.0,10.0,10.0,9.0,10.0,25,0.92 +25044,,,,,,,,0, +25774,95.0,10.0,10.0,10.0,10.0,10.0,9.0,48,1.15 +4920,96.0,10.0,10.0,10.0,10.0,9.0,10.0,93,2.22 +43895,80.0,9.0,9.0,8.0,8.0,8.0,8.0,25,0.64 +10984,98.0,10.0,10.0,10.0,10.0,10.0,10.0,21,0.58 +23023,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +61399,99.0,10.0,10.0,10.0,10.0,10.0,10.0,63,1.49 +22320,100.0,10.0,10.0,10.0,9.0,10.0,9.0,2,0.05 +28457,86.0,9.0,9.0,9.0,9.0,9.0,9.0,49,1.11 +44322,87.0,8.0,9.0,7.0,7.0,8.0,9.0,3,0.1 +56525,,,,,,,,0, +16206,93.0,9.0,9.0,9.0,10.0,8.0,9.0,13,0.3 +42911,96.0,10.0,9.0,10.0,10.0,10.0,9.0,26,0.73 +978,,,,,,,,0, +39994,87.0,9.0,9.0,9.0,9.0,10.0,9.0,15,0.34 +44002,100.0,10.0,10.0,10.0,10.0,6.0,10.0,1,0.02 +40440,90.0,9.0,9.0,10.0,10.0,10.0,9.0,2,0.05 +75058,100.0,10.0,10.0,10.0,10.0,9.0,9.0,4,0.11 +71561,97.0,10.0,10.0,10.0,10.0,9.0,10.0,38,0.88 +12394,94.0,10.0,9.0,10.0,10.0,9.0,10.0,10,0.24 +2034,99.0,10.0,10.0,10.0,10.0,10.0,10.0,34,0.8 +26681,93.0,10.0,9.0,10.0,10.0,9.0,9.0,23,0.53 +26809,,,,,,,,0, +7665,83.0,9.0,7.0,10.0,9.0,10.0,9.0,35,0.8 +53135,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.07 +53497,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.08 +29421,99.0,10.0,10.0,10.0,10.0,10.0,10.0,20,0.46 +36138,,,,,,,,0, +11111,85.0,9.0,9.0,9.0,9.0,10.0,8.0,4,0.1 +33692,99.0,10.0,10.0,10.0,10.0,9.0,10.0,102,2.49 +14655,94.0,9.0,10.0,10.0,10.0,10.0,9.0,95,2.18 +64277,85.0,10.0,10.0,9.0,10.0,9.0,9.0,4,0.09 +71050,90.0,9.0,9.0,10.0,10.0,10.0,9.0,37,1.0 +11623,,,,,,,,0, +57401,,,,,,,,0, +57411,95.0,10.0,10.0,10.0,10.0,9.0,10.0,52,1.3 +57511,98.0,10.0,10.0,10.0,10.0,10.0,10.0,44,1.0 +26287,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.78 +17233,80.0,8.0,8.0,8.0,8.0,8.0,8.0,1,0.02 +64076,95.0,10.0,10.0,10.0,10.0,10.0,10.0,31,0.71 +70488,92.0,9.0,9.0,10.0,9.0,10.0,9.0,69,1.68 +34190,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.31 +75727,,,,,,,,0, +68666,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.09 +75863,,,,,,,,2,0.05 +71790,93.0,10.0,10.0,10.0,10.0,9.0,9.0,65,1.48 +72334,93.0,10.0,10.0,10.0,10.0,9.0,9.0,59,1.35 +72910,100.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.19 +46998,93.0,10.0,10.0,10.0,10.0,9.0,9.0,51,1.18 +57224,94.0,10.0,10.0,10.0,10.0,9.0,10.0,58,1.34 +56294,99.0,10.0,10.0,10.0,10.0,10.0,10.0,41,2.35 +56639,97.0,10.0,10.0,10.0,10.0,10.0,10.0,37,0.85 +73533,90.0,9.0,9.0,9.0,10.0,10.0,9.0,29,0.67 +19480,93.0,9.0,9.0,10.0,10.0,9.0,9.0,24,0.55 +5875,82.0,9.0,9.0,9.0,10.0,8.0,9.0,11,0.25 +57298,98.0,10.0,10.0,10.0,10.0,10.0,9.0,39,0.91 +31047,,,,,,,,0, +921,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.31 +25001,97.0,10.0,10.0,10.0,10.0,10.0,10.0,74,1.87 +20261,98.0,10.0,10.0,10.0,10.0,10.0,10.0,50,1.14 +6419,100.0,10.0,10.0,10.0,10.0,10.0,10.0,19,0.46 +3391,100.0,10.0,7.0,10.0,10.0,9.0,10.0,2,0.05 +1402,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.09 +19942,99.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.81 +62509,,,,,,,,0, +35918,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.02 +27016,90.0,9.0,9.0,9.0,9.0,9.0,9.0,73,1.66 +74157,87.0,8.0,9.0,10.0,9.0,9.0,9.0,10,0.23 +28944,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.15 +30280,95.0,10.0,10.0,10.0,10.0,9.0,10.0,96,2.18 +42849,98.0,10.0,10.0,10.0,10.0,9.0,10.0,10,0.23 +10463,98.0,10.0,9.0,10.0,10.0,10.0,10.0,74,1.69 +50756,90.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.05 +26123,99.0,10.0,10.0,10.0,10.0,9.0,10.0,46,1.1 +21728,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.34 +15079,96.0,10.0,9.0,10.0,10.0,9.0,10.0,34,0.83 +69675,98.0,10.0,10.0,10.0,10.0,10.0,10.0,33,0.75 +32684,98.0,10.0,10.0,10.0,10.0,10.0,9.0,11,0.26 +18578,96.0,10.0,10.0,10.0,10.0,10.0,10.0,52,1.23 +37483,96.0,10.0,10.0,10.0,10.0,10.0,10.0,51,1.23 +3795,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.88 +21856,89.0,9.0,9.0,10.0,9.0,9.0,9.0,7,0.23 +45633,98.0,10.0,10.0,10.0,10.0,9.0,10.0,40,0.95 +19549,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.99 +20481,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.09 +21035,100.0,9.0,10.0,10.0,10.0,9.0,8.0,3,0.07 +59875,100.0,10.0,8.0,10.0,10.0,6.0,8.0,1,0.02 +67301,96.0,10.0,10.0,10.0,10.0,9.0,9.0,34,0.89 +41451,80.0,8.0,8.0,10.0,10.0,9.0,8.0,10,0.61 +39053,98.0,10.0,10.0,10.0,10.0,10.0,9.0,17,0.39 +42133,88.0,9.0,8.0,9.0,10.0,9.0,9.0,10,0.23 +49840,96.0,10.0,9.0,10.0,10.0,9.0,9.0,11,0.25 +642,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.07 +3170,81.0,9.0,8.0,9.0,9.0,9.0,9.0,52,1.26 +24561,95.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.1 +65589,,,,,,,,0, +61104,86.0,9.0,8.0,9.0,10.0,9.0,9.0,87,1.99 +64607,93.0,10.0,10.0,10.0,10.0,9.0,9.0,69,1.6 +39111,97.0,9.0,9.0,9.0,9.0,10.0,9.0,8,0.18 +47223,100.0,10.0,10.0,10.0,10.0,10.0,10.0,39,0.99 +43358,90.0,9.0,9.0,9.0,9.0,9.0,9.0,57,1.29 +45935,97.0,10.0,10.0,10.0,10.0,10.0,10.0,120,2.84 +64298,98.0,10.0,10.0,10.0,10.0,10.0,10.0,152,3.52 +60045,99.0,10.0,10.0,10.0,10.0,10.0,10.0,135,3.24 +5711,80.0,10.0,8.0,10.0,10.0,10.0,9.0,4,0.1 +36928,,,,,,,,0, +74784,96.0,10.0,9.0,9.0,10.0,9.0,9.0,11,0.27 +75724,80.0,10.0,8.0,10.0,8.0,10.0,10.0,1,0.03 +30166,95.0,10.0,8.0,10.0,9.0,10.0,9.0,12,0.33 +24020,96.0,10.0,10.0,10.0,10.0,9.0,9.0,44,1.11 +38648,94.0,10.0,9.0,10.0,10.0,9.0,9.0,13,0.43 +4815,,,,,,,,0, +18461,93.0,9.0,10.0,10.0,9.0,9.0,9.0,3,0.07 +2080,99.0,10.0,10.0,10.0,10.0,10.0,10.0,111,2.57 +74354,86.0,9.0,9.0,9.0,9.0,8.0,9.0,112,2.56 +46265,91.0,10.0,8.0,10.0,10.0,9.0,9.0,14,0.36 +51083,,,,,,,,0, +65951,94.0,10.0,9.0,10.0,10.0,10.0,10.0,31,0.79 +48311,87.0,8.0,9.0,10.0,9.0,9.0,8.0,7,0.25 +31145,100.0,10.0,8.0,10.0,10.0,8.0,8.0,3,0.09 +9457,100.0,10.0,10.0,10.0,10.0,9.0,9.0,6,0.16 +41957,93.0,9.0,7.0,9.0,9.0,9.0,9.0,3,0.11 +16806,83.0,9.0,8.0,10.0,10.0,9.0,9.0,6,0.14 +40875,100.0,9.0,9.0,9.0,8.0,10.0,9.0,2,0.06 +1857,93.0,10.0,10.0,9.0,9.0,9.0,9.0,13,1.14 +18841,99.0,10.0,10.0,10.0,10.0,10.0,10.0,30,0.7 +15937,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.12 +5527,97.0,10.0,10.0,9.0,10.0,10.0,10.0,36,0.86 +72412,,,,,,,,0, +58744,99.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.35 +25597,94.0,10.0,9.0,10.0,10.0,10.0,9.0,18,0.62 +66654,,,,,,,,0, +24079,,,,,,,,0, +38225,96.0,10.0,10.0,10.0,10.0,9.0,10.0,144,3.28 +29336,98.0,10.0,9.0,10.0,10.0,10.0,10.0,142,3.24 +51072,,,,,,,,0, +55990,30.0,6.0,4.0,8.0,6.0,6.0,8.0,2,0.05 +35287,94.0,10.0,9.0,10.0,10.0,10.0,9.0,14,0.32 +29725,82.0,9.0,8.0,9.0,10.0,8.0,9.0,12,0.27 +44331,93.0,10.0,10.0,9.0,10.0,9.0,10.0,47,1.08 +51063,86.0,9.0,9.0,8.0,9.0,10.0,9.0,36,1.14 +19099,78.0,9.0,8.0,9.0,9.0,8.0,9.0,11,0.27 +30788,95.0,10.0,10.0,9.0,9.0,10.0,10.0,22,0.86 +39278,96.0,10.0,10.0,10.0,10.0,10.0,10.0,67,1.56 +49717,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.07 +23894,80.0,8.0,6.0,10.0,10.0,8.0,6.0,1,0.09 +2604,86.0,9.0,9.0,10.0,9.0,10.0,9.0,18,0.63 +66907,97.0,10.0,10.0,10.0,10.0,10.0,10.0,28,0.65 +10398,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +57687,97.0,10.0,10.0,10.0,10.0,10.0,10.0,54,1.24 +53814,98.0,9.0,9.0,10.0,10.0,9.0,9.0,13,1.13 +46192,98.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.38 +45199,80.0,8.0,7.0,9.0,9.0,8.0,8.0,15,0.37 +8262,,,,,,,,0, +26559,99.0,10.0,10.0,10.0,10.0,10.0,9.0,72,1.76 +9215,98.0,10.0,9.0,10.0,10.0,10.0,10.0,12,0.34 +1544,94.0,10.0,9.0,10.0,10.0,10.0,9.0,28,0.65 +15187,98.0,10.0,10.0,10.0,9.0,10.0,9.0,9,0.22 +30325,93.0,10.0,10.0,10.0,9.0,10.0,9.0,6,0.23 +5031,99.0,10.0,10.0,10.0,10.0,10.0,10.0,32,0.78 +74522,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.11 +34016,97.0,10.0,10.0,10.0,10.0,9.0,10.0,34,0.8 +70137,99.0,10.0,10.0,10.0,10.0,9.0,10.0,77,1.76 +45023,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.5 +41295,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +1514,89.0,9.0,8.0,10.0,10.0,9.0,9.0,32,0.77 +31464,75.0,8.0,7.0,9.0,8.0,9.0,9.0,4,0.48 +1482,88.0,9.0,9.0,10.0,10.0,9.0,9.0,29,0.78 +28508,89.0,9.0,9.0,10.0,9.0,10.0,9.0,55,1.27 +15604,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +23100,88.0,10.0,9.0,10.0,10.0,9.0,9.0,8,0.2 +25856,,,,,,,,0, +63469,96.0,9.0,10.0,10.0,10.0,10.0,9.0,15,0.37 +12247,98.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.26 +67349,100.0,10.0,10.0,10.0,10.0,10.0,10.0,34,0.8 +31845,87.0,9.0,8.0,9.0,9.0,10.0,8.0,52,1.27 +26241,,,,,,,,0, +59732,,,,,,,,0, +35681,97.0,10.0,9.0,10.0,10.0,10.0,9.0,31,0.71 +60096,84.0,9.0,8.0,10.0,10.0,9.0,9.0,18,0.45 +23964,100.0,10.0,10.0,10.0,10.0,9.0,10.0,109,4.95 +53580,,,,,,,,0, +65333,97.0,10.0,10.0,10.0,10.0,10.0,9.0,22,0.57 +61074,88.0,9.0,9.0,9.0,10.0,8.0,9.0,5,0.11 +70463,,,,,,,,0, +75310,100.0,10.0,7.0,10.0,10.0,10.0,9.0,2,0.18 +5407,,,,,,,,0, +57397,99.0,10.0,10.0,10.0,10.0,10.0,10.0,144,3.32 +21161,,,,,,,,0, +70030,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +47853,100.0,10.0,10.0,10.0,10.0,10.0,8.0,2,0.06 +30502,,,,,,,,0, +71051,,,,,,,,0, +72354,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +53683,97.0,10.0,9.0,10.0,10.0,8.0,10.0,6,0.15 +75160,90.0,10.0,8.0,10.0,10.0,10.0,9.0,7,0.17 +29980,90.0,9.0,8.0,10.0,10.0,10.0,9.0,48,1.22 +70595,99.0,10.0,10.0,10.0,10.0,10.0,10.0,129,2.97 +62899,83.0,8.0,9.0,9.0,8.0,9.0,8.0,30,0.71 +41454,92.0,10.0,9.0,9.0,10.0,10.0,10.0,6,0.14 +7587,98.0,10.0,10.0,10.0,10.0,10.0,9.0,23,0.55 +42576,90.0,9.0,10.0,10.0,10.0,8.0,9.0,5,0.12 +76022,,,,,,,,0, +22651,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.07 +67600,90.0,10.0,9.0,10.0,10.0,10.0,9.0,6,0.14 +76785,,,,,,,,0, +42052,90.0,10.0,9.0,10.0,10.0,9.0,9.0,10,0.47 +3332,99.0,10.0,10.0,10.0,10.0,10.0,10.0,188,4.31 +9800,87.0,9.0,8.0,9.0,9.0,9.0,9.0,24,0.57 +64120,,,,,,,,0, +71679,,,,,,,,0, +36755,99.0,10.0,10.0,10.0,10.0,10.0,10.0,38,0.88 +12272,,,,,,,,0, +63569,87.0,8.0,8.0,9.0,10.0,9.0,9.0,3,0.07 +30668,,,,,,,,0, +4092,,,,,,,,0, +18770,92.0,10.0,9.0,10.0,10.0,8.0,9.0,5,0.12 +40474,,,,,,,,0, +28152,,,,,,,,0, +46098,100.0,9.0,9.0,10.0,10.0,10.0,9.0,3,0.07 +29100,,,,,,,,0, +23956,95.0,10.0,10.0,10.0,10.0,9.0,9.0,16,0.39 +18087,100.0,10.0,9.0,10.0,10.0,9.0,10.0,4,0.1 +25126,100.0,10.0,9.0,10.0,10.0,8.0,10.0,2,0.05 +42817,100.0,9.0,10.0,8.0,10.0,10.0,9.0,3,0.07 +7341,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.35 +47629,93.0,9.0,10.0,10.0,10.0,9.0,9.0,3,0.12 +58237,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.1 +62927,90.0,10.0,9.0,10.0,10.0,8.0,10.0,2,0.05 +36371,90.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.05 +35359,90.0,8.0,10.0,10.0,10.0,8.0,7.0,6,0.2 +59375,100.0,10.0,10.0,10.0,10.0,10.0,10.0,72,1.73 +68129,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +46781,,,,,,,,0, +44162,55.0,6.0,5.0,8.0,8.0,7.0,6.0,4,0.09 +20763,94.0,10.0,10.0,10.0,10.0,8.0,9.0,82,1.93 +73289,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.02 +866,99.0,10.0,10.0,10.0,10.0,10.0,10.0,31,0.71 +67956,,,,,,,,0, +41802,100.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.38 +49630,96.0,10.0,10.0,10.0,10.0,9.0,9.0,36,0.84 +45737,,,,,,,,0, +62851,,,,,,,,1,0.14 +62123,89.0,10.0,9.0,10.0,10.0,9.0,9.0,14,0.34 +58989,,,,,,,,0, +10073,,,,,,,,0, +71117,84.0,9.0,8.0,9.0,9.0,9.0,9.0,10,0.23 +59387,50.0,6.0,5.0,6.0,4.0,6.0,6.0,3,0.07 +63065,98.0,10.0,10.0,10.0,10.0,9.0,10.0,59,1.35 +67434,95.0,10.0,10.0,10.0,10.0,10.0,9.0,34,0.78 +2337,94.0,10.0,10.0,10.0,10.0,9.0,10.0,129,2.94 +32316,93.0,9.0,9.0,10.0,10.0,9.0,10.0,8,0.19 +35391,100.0,10.0,9.0,10.0,9.0,10.0,10.0,2,0.07 +15097,93.0,9.0,10.0,10.0,10.0,10.0,9.0,29,0.69 +74017,99.0,10.0,10.0,10.0,10.0,10.0,10.0,29,0.77 +12341,97.0,10.0,10.0,10.0,10.0,10.0,9.0,7,0.16 +34276,97.0,10.0,9.0,10.0,10.0,10.0,10.0,47,1.11 +56868,95.0,9.0,10.0,9.0,9.0,10.0,9.0,35,0.83 +60870,100.0,9.0,10.0,10.0,10.0,10.0,10.0,5,0.15 +40962,93.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.07 +28462,84.0,9.0,8.0,9.0,9.0,8.0,8.0,5,0.13 +58032,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +25657,80.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +1476,97.0,10.0,10.0,10.0,10.0,10.0,9.0,29,0.67 +67568,89.0,9.0,9.0,10.0,10.0,9.0,9.0,15,0.35 +17706,100.0,10.0,9.0,10.0,10.0,10.0,10.0,9,0.5 +15682,92.0,10.0,9.0,9.0,9.0,9.0,9.0,51,1.19 +66482,96.0,10.0,9.0,10.0,10.0,9.0,9.0,49,1.14 +21647,90.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.7 +2924,99.0,10.0,9.0,10.0,10.0,9.0,10.0,15,0.36 +25875,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.22 +36941,98.0,10.0,10.0,10.0,10.0,10.0,10.0,46,1.06 +11284,,,,,,,,0, +59145,98.0,10.0,10.0,9.0,9.0,10.0,10.0,8,1.79 +16041,96.0,10.0,10.0,9.0,9.0,10.0,9.0,24,0.57 +71255,92.0,9.0,10.0,10.0,10.0,9.0,9.0,78,1.78 +41887,80.0,10.0,10.0,8.0,8.0,8.0,10.0,1,0.02 +7961,89.0,9.0,9.0,9.0,10.0,10.0,9.0,20,0.49 +10365,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +40646,93.0,10.0,9.0,10.0,10.0,9.0,9.0,42,0.98 +70302,100.0,10.0,10.0,10.0,9.0,10.0,10.0,3,0.07 +21630,71.0,8.0,7.0,8.0,9.0,10.0,8.0,7,0.17 +54495,60.0,5.0,5.0,10.0,6.0,4.0,6.0,2,0.05 +14549,81.0,9.0,8.0,8.0,9.0,9.0,8.0,40,2.06 +4516,98.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.27 +65209,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +30245,,,,,,,,0, +27055,85.0,9.0,8.0,9.0,10.0,10.0,9.0,16,0.38 +30187,90.0,9.0,10.0,9.0,10.0,9.0,9.0,12,0.55 +17951,95.0,10.0,10.0,10.0,10.0,9.0,10.0,39,0.95 +24707,99.0,10.0,10.0,10.0,10.0,10.0,10.0,144,4.9 +54004,40.0,4.0,4.0,10.0,10.0,10.0,6.0,1,0.03 +1029,93.0,9.0,9.0,9.0,9.0,9.0,9.0,3,0.07 +41342,89.0,9.0,9.0,10.0,9.0,9.0,9.0,38,0.92 +15285,87.0,8.0,8.0,10.0,9.0,9.0,9.0,7,0.16 +75481,67.0,9.0,7.0,7.0,8.0,9.0,8.0,3,0.08 +32443,,,,,,,,0, +75315,100.0,10.0,10.0,10.0,10.0,10.0,10.0,73,2.41 +47630,90.0,9.0,9.0,9.0,9.0,10.0,9.0,71,1.86 +32674,,,,,,,,0, +67161,,,,,,,,0, +50885,95.0,10.0,9.0,10.0,10.0,9.0,9.0,31,0.75 +45275,96.0,10.0,10.0,10.0,10.0,9.0,10.0,101,2.33 +69935,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.23 +1759,96.0,10.0,10.0,9.0,10.0,9.0,10.0,39,0.96 +52258,96.0,10.0,9.0,10.0,10.0,9.0,9.0,15,0.35 +54640,,,,,,,,0, +71582,77.0,8.0,7.0,9.0,9.0,8.0,7.0,6,0.14 +11290,98.0,10.0,10.0,10.0,10.0,10.0,10.0,170,3.91 +23517,100.0,10.0,10.0,9.0,9.0,10.0,9.0,5,0.12 +7279,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.0 +12000,96.0,10.0,10.0,10.0,10.0,10.0,10.0,64,1.54 +67490,,,,,,,,1,0.02 +9145,90.0,9.0,8.0,9.0,10.0,10.0,10.0,4,0.1 +1235,94.0,9.0,9.0,10.0,10.0,10.0,9.0,40,0.94 +71527,93.0,10.0,9.0,9.0,10.0,10.0,10.0,3,0.07 +62765,88.0,9.0,9.0,9.0,9.0,9.0,9.0,6,0.2 +52679,92.0,8.0,9.0,9.0,9.0,9.0,9.0,5,0.16 +60168,,,,,,,,0, +8806,97.0,10.0,9.0,9.0,10.0,10.0,10.0,27,0.65 +16947,94.0,10.0,10.0,10.0,10.0,9.0,9.0,169,3.97 +36413,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +62768,,,,,,,,0, +70798,,,,,,,,0, +33425,97.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.15 +54056,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +6570,90.0,7.0,9.0,10.0,10.0,10.0,10.0,4,0.1 +25088,90.0,9.0,8.0,10.0,10.0,7.0,9.0,2,0.05 +33882,,,,,,,,0, +63706,96.0,10.0,10.0,10.0,10.0,10.0,9.0,45,1.06 +65070,100.0,8.0,9.0,10.0,9.0,10.0,9.0,3,0.07 +25107,97.0,10.0,10.0,10.0,10.0,10.0,10.0,37,0.86 +17169,95.0,10.0,10.0,9.0,10.0,10.0,10.0,64,1.48 +56072,90.0,10.0,9.0,10.0,10.0,9.0,9.0,11,0.27 +15155,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.27 +358,,,,,,,,0, +1748,90.0,9.0,9.0,9.0,10.0,8.0,9.0,24,0.58 +70050,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.34 +69853,97.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.14 +56579,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.25 +42694,98.0,10.0,9.0,10.0,10.0,10.0,10.0,10,0.25 +13119,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.05 +42788,93.0,9.0,10.0,10.0,9.0,10.0,9.0,19,0.44 +52888,80.0,8.0,8.0,8.0,10.0,10.0,10.0,1,0.03 +75515,98.0,9.0,10.0,9.0,10.0,9.0,10.0,13,0.31 +26112,,,,,,,,0, +60562,93.0,9.0,10.0,10.0,10.0,9.0,10.0,3,0.07 +45608,97.0,9.0,8.0,9.0,10.0,10.0,9.0,6,0.14 +50766,89.0,10.0,9.0,10.0,9.0,10.0,9.0,58,1.37 +18383,90.0,10.0,9.0,10.0,9.0,9.0,9.0,2,0.05 +11917,94.0,10.0,10.0,10.0,10.0,9.0,9.0,117,2.77 +22000,97.0,10.0,10.0,10.0,10.0,10.0,9.0,78,1.8 +20758,96.0,10.0,10.0,10.0,10.0,9.0,9.0,44,1.01 +55923,83.0,8.0,9.0,8.0,8.0,9.0,9.0,17,0.4 +51587,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +67763,,,,,,,,0, +65820,93.0,10.0,9.0,9.0,10.0,10.0,9.0,19,0.44 +54677,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.07 +19704,99.0,10.0,10.0,10.0,10.0,9.0,10.0,52,1.2 +72718,87.0,10.0,8.0,10.0,10.0,9.0,9.0,14,0.35 +73495,93.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.26 +5307,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.77 +18043,91.0,9.0,9.0,9.0,9.0,9.0,9.0,160,3.71 +27413,100.0,10.0,10.0,9.0,9.0,10.0,9.0,7,0.88 +44200,80.0,9.0,9.0,8.0,8.0,10.0,8.0,5,0.12 +30342,,,,,,,,0, +42537,,,,,,,,0, +24091,94.0,10.0,10.0,10.0,10.0,9.0,9.0,137,3.16 +11594,,,,,,,,0, +69981,98.0,10.0,10.0,10.0,10.0,9.0,10.0,88,2.06 +33915,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +24655,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +32398,,,,,,,,0, +3983,,,,,,,,0, +72492,100.0,10.0,9.0,10.0,10.0,9.0,9.0,3,0.11 +35774,,,,,,,,0, +10316,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.09 +29934,,,,,,,,0, +2331,,,,,,,,0, +61432,100.0,9.0,10.0,10.0,10.0,10.0,10.0,5,0.12 +30984,80.0,7.0,7.0,10.0,10.0,10.0,8.0,3,0.08 +28460,,,,,,,,0, +41663,90.0,9.0,9.0,10.0,10.0,10.0,9.0,85,1.99 +76350,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +10189,100.0,10.0,10.0,10.0,10.0,9.0,10.0,12,0.86 +16125,94.0,10.0,9.0,10.0,10.0,9.0,9.0,10,0.23 +47023,100.0,8.0,8.0,10.0,10.0,8.0,8.0,1,0.02 +34822,99.0,10.0,10.0,10.0,10.0,10.0,10.0,64,1.5 +36010,95.0,10.0,9.0,10.0,10.0,9.0,9.0,41,1.13 +1741,,,,,,,,0, +42034,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.19 +25442,,,,,,,,1,0.02 +29796,83.0,9.0,7.0,9.0,9.0,9.0,8.0,6,0.2 +34383,,,,,,,,0, +53014,93.0,10.0,10.0,10.0,10.0,9.0,9.0,46,1.07 +76522,,,,,,,,0, +6111,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +68756,99.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.38 +35650,80.0,10.0,8.0,7.0,8.0,9.0,10.0,2,0.05 +64371,86.0,9.0,8.0,10.0,10.0,9.0,9.0,49,1.14 +72712,99.0,10.0,10.0,10.0,10.0,10.0,10.0,41,0.98 +7290,,,,,,,,1,0.02 +3669,97.0,10.0,10.0,10.0,10.0,10.0,9.0,43,1.01 +19920,100.0,10.0,10.0,9.0,10.0,9.0,9.0,3,0.17 +11815,80.0,8.0,8.0,10.0,10.0,9.0,9.0,12,0.28 +38909,98.0,10.0,10.0,10.0,10.0,10.0,10.0,24,0.6 +75668,,,,,,,,0, +53952,,,,,,,,0, +12845,80.0,9.0,8.0,9.0,9.0,8.0,9.0,3,0.07 +69860,95.0,10.0,10.0,10.0,10.0,9.0,10.0,110,2.58 +57808,94.0,10.0,9.0,10.0,10.0,10.0,10.0,9,1.11 +15247,,,,,,,,0, +54157,94.0,9.0,9.0,9.0,9.0,10.0,9.0,31,0.72 +4055,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.1 +43052,100.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.48 +52032,,,,,,,,0, +6089,,,,,,,,0, +60767,,,,,,,,0, +36930,91.0,9.0,9.0,9.0,9.0,10.0,9.0,192,4.49 +63329,69.0,6.0,6.0,8.0,7.0,10.0,7.0,9,0.21 +25278,,,,,,,,0, +7983,99.0,10.0,10.0,10.0,10.0,10.0,10.0,21,0.67 +49842,89.0,9.0,9.0,9.0,9.0,9.0,9.0,9,0.23 +74444,92.0,9.0,9.0,10.0,9.0,9.0,9.0,6,0.14 +72713,94.0,9.0,8.0,10.0,10.0,10.0,9.0,9,0.21 +24465,95.0,9.0,9.0,10.0,10.0,9.0,9.0,9,0.22 +10849,,,,,,,,0, +10298,100.0,10.0,9.0,10.0,10.0,10.0,10.0,11,0.26 +19484,96.0,10.0,9.0,10.0,10.0,10.0,9.0,16,0.38 +59782,91.0,9.0,9.0,9.0,10.0,9.0,9.0,14,0.32 +72182,91.0,9.0,8.0,10.0,10.0,9.0,9.0,8,0.19 +75482,88.0,9.0,10.0,9.0,9.0,8.0,9.0,15,0.37 +8787,99.0,10.0,10.0,10.0,10.0,10.0,10.0,33,0.77 +60640,87.0,9.0,7.0,10.0,9.0,10.0,8.0,3,0.07 +65237,98.0,10.0,10.0,10.0,10.0,10.0,10.0,85,1.96 +12702,100.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.38 +73331,80.0,8.0,7.0,9.0,9.0,9.0,8.0,97,2.24 +25168,,,,,,,,0, +72579,80.0,10.0,10.0,6.0,8.0,10.0,10.0,1,0.02 +74808,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.1 +7854,93.0,9.0,9.0,10.0,10.0,9.0,9.0,11,0.26 +11270,95.0,10.0,9.0,10.0,10.0,9.0,10.0,8,0.19 +39230,90.0,9.0,9.0,9.0,9.0,9.0,9.0,113,2.6 +44733,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +52971,91.0,9.0,9.0,9.0,10.0,8.0,9.0,18,0.47 +14150,100.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.18 +38641,96.0,10.0,9.0,10.0,10.0,9.0,10.0,161,3.69 +56683,,,,,,,,0, +64068,97.0,10.0,10.0,10.0,10.0,10.0,10.0,21,0.49 +75900,95.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.29 +72532,93.0,10.0,9.0,10.0,10.0,10.0,9.0,28,0.65 +31624,94.0,10.0,10.0,10.0,10.0,9.0,9.0,26,1.07 +22502,,,,,,,,1,0.02 +60492,,,,,,,,0, +12407,95.0,10.0,10.0,10.0,10.0,10.0,9.0,27,0.63 +74285,94.0,9.0,9.0,9.0,10.0,9.0,9.0,11,0.27 +19869,99.0,10.0,10.0,10.0,10.0,10.0,10.0,32,0.74 +11918,,,,,,,,0, +33847,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +32871,100.0,8.0,9.0,10.0,9.0,10.0,10.0,2,0.05 +48987,99.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.45 +49104,100.0,10.0,10.0,10.0,10.0,10.0,9.0,11,0.27 +65919,96.0,10.0,10.0,10.0,10.0,10.0,9.0,33,0.79 +5910,100.0,10.0,10.0,8.0,10.0,10.0,10.0,1,0.02 +14182,,,,,,,,0, +48070,,,,,,,,0, +71374,91.0,10.0,8.0,10.0,10.0,10.0,9.0,16,0.37 +4783,,,,,,,,0, +74073,97.0,10.0,10.0,10.0,10.0,10.0,9.0,42,1.0 +9012,85.0,10.0,8.0,10.0,10.0,9.0,10.0,6,0.14 +18557,93.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.3 +42982,,,,,,,,0, +73760,98.0,10.0,10.0,10.0,10.0,9.0,10.0,108,2.49 +76438,86.0,9.0,9.0,9.0,9.0,9.0,9.0,69,1.61 +51678,97.0,10.0,10.0,10.0,10.0,9.0,10.0,39,0.93 +31283,,,,,,,,0, +69951,97.0,10.0,10.0,10.0,10.0,9.0,10.0,31,0.71 +51875,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +68002,78.0,9.0,8.0,9.0,9.0,9.0,8.0,35,0.82 +55409,97.0,10.0,10.0,10.0,10.0,10.0,10.0,50,1.18 +18,94.0,10.0,9.0,10.0,10.0,10.0,9.0,39,0.9 +2289,,,,,,,,0, +3556,94.0,10.0,9.0,10.0,10.0,9.0,9.0,41,1.01 +43751,,,,,,,,0, +5219,,,,,,,,0, +51536,98.0,10.0,10.0,10.0,10.0,9.0,10.0,58,1.34 +33148,94.0,9.0,9.0,10.0,10.0,10.0,9.0,25,0.58 +45871,100.0,8.0,10.0,10.0,10.0,10.0,8.0,1,0.03 +51908,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +74472,40.0,4.0,2.0,6.0,4.0,6.0,2.0,1,0.02 +8519,100.0,10.0,6.0,10.0,10.0,10.0,10.0,3,0.07 +67066,96.0,10.0,10.0,10.0,10.0,9.0,9.0,10,0.23 +32638,90.0,9.0,9.0,9.0,10.0,9.0,9.0,52,1.2 +13459,82.0,9.0,9.0,10.0,9.0,9.0,9.0,62,2.23 +48189,,,,,,,,0, +38661,95.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.09 +67554,81.0,9.0,9.0,9.0,9.0,7.0,8.0,160,3.8 +61250,,,,,,,,0, +76353,98.0,10.0,10.0,10.0,10.0,10.0,10.0,28,0.68 +22991,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.09 +56424,98.0,10.0,10.0,10.0,10.0,10.0,9.0,9,0.34 +41949,100.0,10.0,9.0,10.0,10.0,10.0,9.0,7,0.17 +24739,93.0,10.0,10.0,9.0,10.0,9.0,9.0,6,0.36 +28557,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.18 +27714,89.0,9.0,9.0,10.0,10.0,10.0,9.0,13,0.3 +8030,97.0,10.0,9.0,10.0,10.0,9.0,10.0,53,1.22 +39637,100.0,10.0,10.0,10.0,10.0,9.0,9.0,11,0.27 +692,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.08 +72582,94.0,10.0,9.0,10.0,10.0,10.0,9.0,74,1.74 +18458,95.0,10.0,9.0,10.0,10.0,10.0,9.0,12,0.28 +35331,,,,,,,,0, +58698,96.0,10.0,9.0,10.0,10.0,9.0,10.0,26,6.14 +7088,,,,,,,,0, +47154,87.0,8.0,7.0,9.0,10.0,9.0,9.0,3,0.07 +49525,,,,,,,,0, +63487,93.0,9.0,8.0,10.0,10.0,10.0,9.0,23,0.57 +65149,97.0,10.0,10.0,10.0,10.0,10.0,10.0,76,1.76 +17074,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.26 +8929,93.0,9.0,9.0,9.0,10.0,9.0,9.0,3,0.07 +50364,93.0,10.0,9.0,10.0,9.0,10.0,9.0,12,0.28 +13780,40.0,6.0,4.0,10.0,8.0,8.0,6.0,1,0.03 +58566,,,,,,,,0, +49749,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.07 +29724,95.0,10.0,9.0,10.0,10.0,9.0,9.0,6,0.14 +10832,89.0,9.0,9.0,10.0,10.0,10.0,9.0,30,0.75 +1165,90.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +58130,90.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.17 +40688,90.0,9.0,10.0,9.0,10.0,9.0,10.0,2,0.87 +24551,,,,,,,,0, +68534,97.0,9.0,10.0,10.0,10.0,9.0,10.0,24,0.56 +38651,97.0,10.0,9.0,10.0,10.0,10.0,10.0,29,0.67 +10633,98.0,10.0,9.0,10.0,10.0,9.0,10.0,26,0.97 +47022,93.0,9.0,9.0,9.0,9.0,9.0,9.0,3,0.08 +44571,84.0,9.0,9.0,9.0,9.0,9.0,8.0,54,1.25 +62937,92.0,10.0,9.0,9.0,9.0,10.0,9.0,19,0.44 +4788,80.0,6.0,2.0,8.0,8.0,8.0,6.0,1,0.02 +32928,89.0,9.0,10.0,9.0,10.0,9.0,10.0,21,0.49 +296,,,,,,,,0, +20718,80.0,9.0,8.0,9.0,9.0,10.0,8.0,4,0.09 +16983,93.0,9.0,9.0,9.0,9.0,10.0,9.0,53,1.29 +26751,,,,,,,,0, +41674,99.0,10.0,10.0,10.0,10.0,10.0,10.0,48,1.18 +41890,100.0,10.0,10.0,10.0,10.0,9.0,9.0,2,0.05 +40873,,,,,,,,0, +66673,97.0,10.0,10.0,10.0,10.0,10.0,10.0,23,0.55 +26643,94.0,10.0,9.0,10.0,9.0,9.0,9.0,31,0.73 +63093,92.0,10.0,9.0,10.0,10.0,10.0,9.0,53,1.28 +70370,76.0,9.0,7.0,9.0,10.0,8.0,8.0,11,0.26 +74803,96.0,10.0,10.0,10.0,10.0,10.0,9.0,66,1.56 +38063,50.0,6.0,4.0,6.0,8.0,9.0,6.0,2,0.05 +75969,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.32 +23217,93.0,10.0,9.0,10.0,10.0,7.0,9.0,3,0.07 +76242,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +17114,,,,,,,,0, +53451,94.0,10.0,9.0,10.0,10.0,9.0,9.0,35,0.86 +20596,100.0,10.0,10.0,10.0,10.0,10.0,10.0,30,0.74 +30698,98.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.26 +36725,98.0,10.0,10.0,10.0,10.0,10.0,10.0,104,2.42 +70203,100.0,10.0,9.0,10.0,10.0,9.0,10.0,3,0.07 +75555,86.0,9.0,9.0,9.0,10.0,10.0,9.0,98,2.26 +31804,100.0,9.0,9.0,10.0,10.0,9.0,10.0,3,0.08 +69046,77.0,9.0,6.0,8.0,9.0,9.0,8.0,6,0.14 +19090,100.0,10.0,10.0,8.0,10.0,8.0,10.0,1,0.02 +9809,93.0,10.0,9.0,10.0,10.0,9.0,9.0,71,1.66 +4859,,,,,,,,0, +69159,98.0,10.0,10.0,10.0,10.0,10.0,10.0,303,7.11 +30317,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.09 +58247,80.0,8.0,6.0,9.0,9.0,9.0,8.0,2,0.05 +10249,,,,,,,,0, +67622,84.0,9.0,7.0,9.0,9.0,9.0,8.0,72,1.68 +45338,80.0,8.0,8.0,10.0,10.0,8.0,8.0,1,0.02 +39498,93.0,9.0,9.0,9.0,9.0,9.0,9.0,3,0.07 +10735,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.02 +24509,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.1 +22927,91.0,9.0,10.0,10.0,10.0,9.0,9.0,66,1.56 +1814,,,,,,,,0, +54834,70.0,10.0,9.0,9.0,10.0,10.0,8.0,2,0.05 +33034,91.0,9.0,9.0,9.0,9.0,9.0,9.0,41,0.98 +6577,91.0,10.0,9.0,10.0,10.0,9.0,9.0,14,0.32 +58597,90.0,10.0,6.0,9.0,9.0,9.0,8.0,3,0.24 +69085,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.13 +15141,100.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.03 +24163,97.0,10.0,10.0,10.0,10.0,10.0,9.0,93,2.19 +12452,92.0,9.0,9.0,9.0,10.0,10.0,9.0,12,0.45 +55014,95.0,10.0,9.0,10.0,10.0,9.0,9.0,22,0.53 +32303,60.0,8.0,6.0,2.0,2.0,8.0,8.0,1,0.03 +75561,95.0,10.0,10.0,10.0,10.0,9.0,9.0,27,0.63 +70662,94.0,10.0,10.0,10.0,10.0,10.0,10.0,23,0.54 +60667,,,,,,,,0, +13269,90.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.07 +42469,89.0,9.0,9.0,9.0,9.0,10.0,9.0,13,0.75 +3370,,,,,,,,0, +32355,85.0,9.0,9.0,9.0,9.0,9.0,8.0,38,0.89 +9142,98.0,10.0,10.0,10.0,10.0,10.0,10.0,26,0.61 +58541,98.0,10.0,10.0,10.0,10.0,9.0,10.0,67,1.82 +5072,,,,,,,,1,0.02 +37648,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.14 +5505,75.0,9.0,8.0,10.0,10.0,8.0,8.0,4,0.09 +59281,93.0,10.0,9.0,10.0,10.0,10.0,9.0,46,1.09 +44945,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.19 +23262,97.0,10.0,10.0,10.0,10.0,9.0,10.0,66,1.59 +34635,,,,,,,,0, +10598,,,,,,,,0, +38832,98.0,10.0,10.0,10.0,10.0,9.0,10.0,24,0.57 +8595,99.0,10.0,10.0,10.0,10.0,10.0,10.0,27,0.63 +20543,89.0,8.0,8.0,9.0,9.0,10.0,9.0,15,0.37 +49939,97.0,10.0,9.0,10.0,10.0,10.0,10.0,7,0.21 +19695,96.0,10.0,10.0,10.0,10.0,9.0,9.0,41,0.96 +32288,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +63122,,,,,,,,0, +40217,80.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.02 +28040,97.0,10.0,10.0,10.0,10.0,10.0,10.0,121,2.81 +36008,50.0,6.0,5.0,6.0,7.0,7.0,4.0,2,0.05 +67796,93.0,9.0,10.0,10.0,10.0,10.0,9.0,12,0.28 +63346,86.0,9.0,9.0,9.0,10.0,10.0,9.0,14,0.35 +3605,96.0,10.0,10.0,10.0,10.0,9.0,10.0,166,4.15 +18664,85.0,9.0,9.0,9.0,9.0,10.0,9.0,12,0.28 +1288,89.0,9.0,9.0,9.0,9.0,9.0,9.0,28,0.65 +56171,95.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.31 +62465,,,,,,,,0, +48371,,,,,,,,0, +26777,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.03 +20973,100.0,9.0,10.0,10.0,10.0,10.0,9.0,3,0.08 +12456,88.0,9.0,9.0,9.0,9.0,10.0,9.0,5,0.12 +57164,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +66615,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.61 +69816,,,,,,,,0, +35211,,,,,,,,0, +20750,80.0,8.0,10.0,8.0,10.0,10.0,8.0,1,0.02 +815,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.21 +25909,96.0,10.0,10.0,9.0,10.0,10.0,10.0,11,0.28 +60948,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +38625,87.0,9.0,8.0,8.0,8.0,8.0,8.0,12,0.3 +32570,,,,,,,,0, +38830,98.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.39 +18143,85.0,9.0,9.0,9.0,9.0,7.0,8.0,4,0.1 +39310,91.0,9.0,9.0,9.0,10.0,10.0,9.0,29,0.67 +32805,90.0,8.0,7.0,8.0,9.0,8.0,9.0,2,0.05 +3331,93.0,9.0,9.0,9.0,10.0,9.0,9.0,9,0.21 +11310,94.0,10.0,9.0,10.0,10.0,9.0,9.0,68,1.58 +46357,98.0,10.0,9.0,10.0,10.0,8.0,9.0,11,0.25 +49335,89.0,9.0,8.0,10.0,9.0,9.0,9.0,9,0.21 +35607,88.0,9.0,9.0,10.0,10.0,9.0,9.0,39,0.94 +51485,,,,,,,,0, +73009,99.0,10.0,10.0,10.0,10.0,10.0,10.0,20,0.47 +75931,82.0,9.0,8.0,9.0,9.0,9.0,9.0,121,2.93 +50975,85.0,9.0,8.0,10.0,10.0,9.0,9.0,132,3.23 +41619,88.0,9.0,8.0,10.0,10.0,9.0,9.0,22,0.53 +40088,96.0,10.0,10.0,10.0,10.0,9.0,10.0,11,0.26 +60060,87.0,9.0,8.0,8.0,9.0,9.0,8.0,3,0.07 +15202,,,,,,,,0, +52015,98.0,10.0,10.0,10.0,10.0,9.0,9.0,8,0.2 +66225,,,,,,,,0, +72148,80.0,4.0,10.0,8.0,10.0,10.0,10.0,2,0.05 +28371,,,,,,,,0, +31754,93.0,10.0,8.0,10.0,10.0,10.0,9.0,14,0.36 +70715,98.0,10.0,10.0,10.0,10.0,10.0,10.0,42,0.98 +62014,100.0,10.0,10.0,10.0,10.0,9.0,10.0,102,2.38 +59316,,,,,,,,1,0.02 +44627,97.0,10.0,10.0,10.0,10.0,10.0,10.0,55,1.29 +33293,80.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.02 +59827,,,,,,,,0, +41316,,,,,,,,0, +59885,98.0,10.0,10.0,10.0,10.0,9.0,9.0,11,0.57 +56407,92.0,10.0,10.0,10.0,10.0,9.0,9.0,6,0.14 +52957,89.0,10.0,9.0,9.0,10.0,10.0,10.0,9,0.22 +29216,85.0,10.0,8.0,10.0,10.0,10.0,10.0,5,0.13 +41234,,,,,,,,0, +69217,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +3936,96.0,10.0,10.0,10.0,10.0,10.0,10.0,21,0.5 +54983,100.0,9.0,8.0,10.0,10.0,9.0,8.0,2,0.05 +8841,96.0,10.0,9.0,10.0,10.0,9.0,10.0,33,0.76 +34735,100.0,10.0,10.0,10.0,10.0,10.0,10.0,34,1.33 +22529,99.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.42 +36573,97.0,10.0,10.0,10.0,10.0,10.0,10.0,63,1.51 +21289,98.0,10.0,10.0,10.0,10.0,9.0,10.0,22,0.52 +22097,97.0,10.0,10.0,10.0,10.0,10.0,10.0,48,2.15 +906,92.0,10.0,9.0,10.0,10.0,10.0,9.0,81,1.92 +34215,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.06 +3227,89.0,10.0,10.0,10.0,10.0,9.0,9.0,11,0.26 +7818,98.0,10.0,9.0,10.0,10.0,10.0,10.0,17,0.66 +53671,91.0,9.0,9.0,10.0,10.0,10.0,9.0,55,1.31 +4741,60.0,7.0,6.0,6.0,9.0,10.0,6.0,2,0.05 +22464,93.0,7.0,8.0,9.0,10.0,9.0,8.0,4,0.09 +54917,100.0,8.0,10.0,8.0,10.0,10.0,10.0,3,0.1 +31802,91.0,10.0,9.0,10.0,10.0,9.0,9.0,18,0.43 +1017,,,,,,,,0, +5440,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +10066,96.0,10.0,10.0,10.0,10.0,9.0,10.0,159,3.71 +42483,98.0,10.0,10.0,10.0,10.0,10.0,10.0,55,3.33 +3661,84.0,9.0,9.0,10.0,9.0,8.0,8.0,6,0.22 +40845,,,,,,,,0, +55712,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.22 +57603,,,,,,,,0, +50334,99.0,10.0,9.0,10.0,10.0,10.0,10.0,19,0.44 +71726,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.05 +37498,97.0,10.0,10.0,10.0,10.0,9.0,9.0,36,0.83 +74776,88.0,9.0,9.0,10.0,10.0,9.0,9.0,310,7.21 +17007,89.0,9.0,9.0,10.0,10.0,9.0,9.0,330,7.67 +72273,88.0,9.0,9.0,9.0,10.0,9.0,9.0,345,8.04 +34909,82.0,8.0,9.0,8.0,9.0,10.0,8.0,23,0.74 +64262,94.0,10.0,10.0,10.0,10.0,9.0,9.0,73,1.72 +22035,85.0,8.0,9.0,9.0,9.0,9.0,8.0,4,0.09 +65537,95.0,9.0,9.0,10.0,10.0,9.0,9.0,55,1.31 +6392,87.0,9.0,8.0,9.0,9.0,9.0,9.0,42,0.99 +67740,,,,,,,,0, +64724,98.0,10.0,10.0,10.0,10.0,9.0,10.0,17,0.4 +136,,,,,,,,0, +59322,86.0,9.0,9.0,10.0,9.0,8.0,9.0,15,0.36 +1383,77.0,9.0,6.0,8.0,9.0,8.0,7.0,6,0.14 +25798,,,,,,,,0, +17398,86.0,9.0,8.0,9.0,9.0,9.0,9.0,18,0.52 +68200,80.0,9.0,7.0,9.0,9.0,9.0,9.0,11,0.26 +46510,80.0,9.0,8.0,8.0,8.0,8.0,7.0,2,0.05 +40857,98.0,9.0,10.0,10.0,10.0,9.0,9.0,13,0.31 +76581,60.0,6.0,10.0,8.0,8.0,4.0,8.0,1,0.02 +43066,80.0,8.0,9.0,9.0,9.0,8.0,7.0,2,0.05 +11972,95.0,10.0,10.0,10.0,10.0,9.0,9.0,12,0.3 +19292,96.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.36 +26122,100.0,10.0,9.0,10.0,10.0,9.0,10.0,3,0.1 +2129,,,,,,,,1,0.02 +70673,92.0,9.0,10.0,10.0,10.0,10.0,10.0,19,0.45 +15086,,,,,,,,0, +36551,95.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.28 +14983,92.0,10.0,9.0,10.0,10.0,9.0,9.0,67,1.58 +30123,92.0,10.0,9.0,10.0,10.0,10.0,9.0,92,2.16 +44590,,,,,,,,0, +20801,100.0,10.0,10.0,10.0,9.0,9.0,10.0,3,0.07 +60761,92.0,10.0,9.0,10.0,10.0,9.0,9.0,127,3.06 +45742,,,,,,,,0, +21562,100.0,10.0,10.0,10.0,10.0,10.0,10.0,31,1.01 +45870,91.0,10.0,9.0,9.0,10.0,10.0,9.0,34,0.82 +12265,,,,,,,,0, +64686,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +34672,96.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.12 +70200,85.0,9.0,9.0,9.0,9.0,9.0,9.0,42,1.0 +58681,99.0,10.0,10.0,10.0,10.0,10.0,10.0,46,1.1 +46597,90.0,9.0,9.0,9.0,9.0,10.0,9.0,58,1.41 +66373,90.0,9.0,9.0,9.0,10.0,9.0,9.0,38,0.89 +70775,90.0,10.0,10.0,10.0,10.0,8.0,9.0,2,0.05 +53996,89.0,9.0,9.0,9.0,9.0,9.0,9.0,71,1.69 +4361,86.0,9.0,9.0,9.0,9.0,9.0,9.0,42,1.01 +62533,,,,,,,,0, +59272,78.0,8.0,8.0,9.0,9.0,9.0,8.0,24,0.58 +1483,90.0,10.0,7.0,9.0,8.0,9.0,8.0,3,0.07 +59784,83.0,8.0,9.0,9.0,9.0,9.0,9.0,109,2.64 +49424,74.0,8.0,8.0,9.0,9.0,9.0,8.0,80,1.94 +16765,79.0,8.0,8.0,9.0,9.0,9.0,8.0,78,1.87 +75327,98.0,10.0,10.0,10.0,10.0,9.0,10.0,38,0.89 +2791,80.0,8.0,9.0,9.0,9.0,9.0,8.0,95,2.3 +18218,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +36664,,,,,,,,0, +31300,96.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.12 +58938,96.0,10.0,10.0,10.0,10.0,9.0,10.0,19,0.45 +7768,,,,,,,,0, +44028,99.0,10.0,9.0,10.0,10.0,10.0,10.0,31,0.74 +47703,95.0,10.0,10.0,9.0,9.0,9.0,9.0,45,1.17 +58668,80.0,9.0,8.0,9.0,9.0,9.0,9.0,12,0.29 +21271,,,,,,,,0, +9167,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.25 +25998,98.0,10.0,10.0,10.0,10.0,10.0,10.0,109,2.58 +76799,88.0,10.0,9.0,9.0,10.0,10.0,10.0,5,1.74 +69333,99.0,10.0,9.0,10.0,10.0,10.0,10.0,26,0.99 +33864,91.0,9.0,9.0,9.0,9.0,9.0,8.0,7,0.17 +59650,96.0,9.0,10.0,10.0,10.0,9.0,10.0,15,0.35 +48259,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.12 +25222,90.0,9.0,9.0,9.0,9.0,10.0,9.0,28,0.69 +12182,92.0,9.0,9.0,10.0,10.0,10.0,9.0,83,2.0 +37562,90.0,9.0,9.0,10.0,9.0,9.0,9.0,2,0.15 +4596,99.0,10.0,10.0,10.0,10.0,10.0,9.0,53,1.24 +38982,99.0,10.0,10.0,10.0,10.0,10.0,10.0,21,0.51 +46489,100.0,8.0,10.0,10.0,10.0,8.0,10.0,1,0.02 +72248,73.0,8.0,8.0,8.0,8.0,8.0,8.0,11,0.26 +40970,95.0,10.0,9.0,10.0,10.0,10.0,10.0,11,0.26 +37160,89.0,10.0,8.0,9.0,10.0,9.0,9.0,33,0.79 +53742,98.0,10.0,10.0,10.0,10.0,9.0,10.0,29,0.7 +2955,96.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.22 +12225,98.0,10.0,10.0,10.0,10.0,10.0,10.0,22,0.53 +67060,96.0,10.0,10.0,10.0,10.0,10.0,9.0,128,2.99 +35908,79.0,9.0,8.0,9.0,9.0,9.0,9.0,114,2.67 +66500,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.16 +55506,,,,,,,,0, +16548,80.0,9.0,9.0,10.0,9.0,7.0,5.0,4,0.09 +44078,94.0,10.0,9.0,10.0,10.0,10.0,9.0,115,2.68 +44415,96.0,10.0,10.0,10.0,10.0,10.0,10.0,48,1.15 +64232,,,,,,,,1,0.05 +76693,99.0,10.0,10.0,10.0,10.0,10.0,10.0,29,0.69 +18764,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.13 +73538,67.0,9.0,6.0,7.0,9.0,9.0,6.0,3,0.07 +76164,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.34 +71146,,,,,,,,0, +19590,93.0,9.0,9.0,9.0,9.0,9.0,9.0,3,0.07 +11070,96.0,10.0,10.0,10.0,10.0,10.0,10.0,20,0.51 +20834,97.0,10.0,10.0,10.0,10.0,9.0,10.0,162,3.79 +67640,81.0,8.0,8.0,9.0,8.0,10.0,8.0,14,0.36 +74779,99.0,10.0,10.0,10.0,10.0,10.0,9.0,46,1.08 +54730,94.0,10.0,9.0,10.0,10.0,9.0,9.0,21,0.51 +51027,80.0,10.0,10.0,10.0,10.0,8.0,8.0,2,0.05 +73365,91.0,10.0,9.0,10.0,10.0,10.0,9.0,28,0.66 +12406,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.16 +66629,80.0,6.0,6.0,10.0,10.0,10.0,10.0,5,0.12 +11520,89.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.27 +16229,99.0,10.0,10.0,10.0,10.0,10.0,10.0,28,0.67 +40027,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.05 +3975,80.0,10.0,6.0,10.0,10.0,6.0,8.0,1,0.02 +25789,98.0,10.0,10.0,10.0,10.0,10.0,10.0,27,0.67 +24448,93.0,9.0,9.0,10.0,10.0,10.0,9.0,19,0.63 +75089,92.0,10.0,9.0,10.0,10.0,9.0,9.0,5,0.13 +36741,93.0,10.0,9.0,10.0,10.0,10.0,9.0,25,0.62 +13741,,,,,,,,0, +9664,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.08 +1871,88.0,9.0,9.0,10.0,10.0,10.0,9.0,16,0.39 +10776,99.0,10.0,10.0,10.0,10.0,10.0,10.0,46,1.08 +67851,98.0,10.0,10.0,10.0,10.0,10.0,10.0,49,1.15 +4495,100.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +37748,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.12 +1023,93.0,9.0,8.0,8.0,9.0,8.0,9.0,11,0.26 +28931,98.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.19 +48037,100.0,10.0,8.0,10.0,10.0,8.0,10.0,1,0.02 +31593,93.0,10.0,9.0,9.0,10.0,10.0,9.0,29,0.94 +40353,93.0,9.0,10.0,10.0,10.0,9.0,9.0,97,2.33 +5003,,,,,,,,0, +71831,,,,,,,,0, +3338,93.0,9.0,9.0,9.0,9.0,9.0,9.0,30,0.71 +50830,90.0,9.0,9.0,10.0,10.0,9.0,9.0,81,1.9 +7678,96.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.32 +75741,,,,,,,,0, +44581,98.0,10.0,10.0,10.0,10.0,10.0,10.0,180,4.62 +72996,93.0,9.0,9.0,10.0,10.0,9.0,9.0,83,1.95 +66101,,,,,,,,0, +33518,93.0,10.0,8.0,10.0,10.0,9.0,10.0,3,0.07 +19954,83.0,9.0,8.0,9.0,9.0,8.0,8.0,98,2.3 +59213,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +58683,97.0,10.0,10.0,10.0,10.0,9.0,10.0,35,0.96 +18656,,,,,,,,0, +10006,,,,,,,,0, +46070,,,,,,,,0, +64513,,,,,,,,0, +48228,98.0,10.0,9.0,10.0,10.0,10.0,10.0,38,0.96 +47910,95.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.09 +41634,,,,,,,,0, +63624,,,,,,,,0, +67005,100.0,9.0,10.0,9.0,10.0,9.0,10.0,3,0.07 +41013,94.0,9.0,9.0,10.0,10.0,10.0,9.0,14,0.35 +71262,100.0,10.0,9.0,10.0,10.0,10.0,10.0,10,0.24 +15403,97.0,10.0,9.0,10.0,10.0,10.0,10.0,6,0.15 +50416,97.0,10.0,10.0,10.0,10.0,10.0,10.0,180,4.29 +58977,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +18349,,,,,,,,0, +60980,83.0,9.0,8.0,9.0,8.0,9.0,8.0,15,0.36 +28463,,,,,,,,0, +56011,80.0,6.0,6.0,8.0,8.0,8.0,10.0,1,0.02 +16526,95.0,10.0,9.0,10.0,10.0,10.0,10.0,59,1.44 +5851,91.0,9.0,8.0,10.0,10.0,10.0,8.0,9,0.32 +25280,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +55428,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.02 +74447,95.0,10.0,10.0,10.0,10.0,9.0,9.0,53,1.27 +36924,,,,,,,,0, +35507,,,,,,,,0, +1013,96.0,9.0,9.0,10.0,10.0,9.0,9.0,10,0.24 +28612,91.0,9.0,9.0,9.0,9.0,10.0,9.0,11,0.27 +66227,93.0,9.0,10.0,10.0,10.0,10.0,9.0,17,0.4 +55375,80.0,8.0,10.0,10.0,10.0,8.0,8.0,1,0.03 +28643,99.0,10.0,9.0,10.0,10.0,9.0,10.0,43,1.01 +55496,100.0,10.0,9.0,10.0,10.0,10.0,9.0,4,0.2 +22456,100.0,10.0,9.0,9.0,9.0,10.0,9.0,3,0.07 +59476,,,,,,,,0, +38031,90.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.08 +21747,,,,,,,,0, +35298,70.0,10.0,10.0,8.0,10.0,10.0,10.0,2,0.05 +25172,92.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.12 +58209,97.0,10.0,10.0,10.0,10.0,10.0,9.0,12,0.28 +64849,,,,,,,,0, +32607,100.0,10.0,10.0,9.0,10.0,10.0,10.0,5,0.15 +31330,,,,,,,,0, +72722,,,,,,,,0, +37681,87.0,9.0,10.0,10.0,10.0,9.0,10.0,9,0.23 +32648,93.0,9.0,8.0,9.0,9.0,9.0,9.0,3,0.08 +48684,80.0,8.0,8.0,8.0,10.0,8.0,8.0,1,0.03 +71243,92.0,10.0,10.0,10.0,10.0,10.0,10.0,19,0.46 +70421,97.0,10.0,10.0,10.0,10.0,10.0,10.0,76,1.82 +4306,96.0,10.0,9.0,10.0,10.0,9.0,9.0,56,1.81 +10337,,,,,,,,0, +9303,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +11821,92.0,10.0,9.0,10.0,10.0,10.0,9.0,20,0.47 +26874,98.0,10.0,10.0,10.0,10.0,9.0,10.0,43,1.02 +244,87.0,10.0,8.0,10.0,9.0,8.0,9.0,3,0.07 +42155,91.0,9.0,9.0,10.0,10.0,9.0,9.0,16,0.38 +2365,,,,,,,,2,0.07 +70164,97.0,10.0,10.0,10.0,10.0,9.0,10.0,95,2.34 +47495,100.0,10.0,10.0,10.0,10.0,10.0,10.0,29,0.72 +4261,96.0,10.0,10.0,10.0,10.0,10.0,10.0,78,1.84 +24162,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +34424,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,7.0 +5593,91.0,9.0,9.0,10.0,10.0,9.0,9.0,22,0.53 +76027,80.0,10.0,4.0,10.0,10.0,8.0,6.0,1,0.02 +67496,99.0,10.0,10.0,10.0,10.0,10.0,10.0,55,1.3 +69870,,,,,,,,0, +46305,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.1 +40853,95.0,10.0,10.0,10.0,10.0,10.0,9.0,26,0.64 +32598,100.0,10.0,10.0,10.0,10.0,9.0,10.0,24,0.73 +44102,,,,,,,,0, +49121,97.0,10.0,9.0,10.0,10.0,9.0,10.0,23,0.54 +47816,97.0,10.0,10.0,10.0,10.0,9.0,10.0,70,1.74 +68786,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.1 +70251,99.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.47 +69338,,,,,,,,0, +60399,,,,,,,,0, +5463,100.0,10.0,8.0,8.0,8.0,8.0,10.0,1,0.02 +12343,70.0,5.0,8.0,10.0,10.0,8.0,8.0,2,0.36 +68046,96.0,10.0,9.0,10.0,10.0,9.0,9.0,10,0.28 +75640,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.2 +6776,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.27 +35895,100.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.37 +62172,86.0,9.0,10.0,9.0,9.0,10.0,9.0,35,0.82 +26533,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +27179,,,,,,,,0, +21811,96.0,10.0,10.0,10.0,10.0,9.0,10.0,39,0.92 +33495,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.09 +42667,99.0,10.0,10.0,10.0,10.0,9.0,10.0,48,1.26 +16712,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +15550,97.0,10.0,10.0,10.0,10.0,9.0,10.0,93,2.35 +62755,87.0,9.0,9.0,10.0,10.0,10.0,9.0,10,0.24 +3687,93.0,9.0,10.0,9.0,10.0,9.0,9.0,3,0.07 +34460,94.0,9.0,9.0,10.0,10.0,10.0,9.0,144,3.37 +44405,98.0,10.0,10.0,10.0,10.0,10.0,10.0,158,3.69 +46119,,,,,,,,0, +686,100.0,10.0,9.0,10.0,10.0,9.0,10.0,5,0.12 +66426,91.0,10.0,9.0,10.0,10.0,10.0,9.0,9,0.21 +36188,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.09 +37246,95.0,10.0,10.0,10.0,10.0,9.0,10.0,44,1.14 +74243,,,,,,,,0, +55188,100.0,10.0,10.0,10.0,9.0,9.0,10.0,2,0.05 +43820,96.0,10.0,10.0,10.0,10.0,9.0,10.0,82,1.92 +10654,,,,,,,,0, +17365,94.0,10.0,10.0,10.0,10.0,10.0,9.0,10,0.24 +34614,92.0,9.0,9.0,10.0,10.0,9.0,9.0,64,1.49 +69961,93.0,10.0,9.0,10.0,10.0,8.0,9.0,6,0.14 +57810,,,,,,,,0, +61627,,,,,,,,0, +33821,,,,,,,,0, +32340,91.0,10.0,10.0,10.0,10.0,10.0,9.0,28,0.67 +9815,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.26 +14482,,,,,,,,0, +67027,97.0,10.0,10.0,10.0,10.0,9.0,9.0,23,0.54 +63305,94.0,10.0,10.0,10.0,10.0,9.0,9.0,21,0.51 +39968,100.0,8.0,10.0,10.0,10.0,8.0,10.0,1,0.03 +23339,94.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.4 +59616,89.0,9.0,9.0,9.0,10.0,9.0,9.0,9,0.21 +24127,,,,,,,,0, +69120,98.0,10.0,10.0,10.0,10.0,10.0,10.0,122,2.9 +54355,96.0,10.0,10.0,10.0,10.0,10.0,10.0,58,1.43 +12172,94.0,10.0,9.0,10.0,10.0,9.0,10.0,24,0.57 +17756,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.07 +5806,,,,,,,,0, +53437,,,,,,,,0, +25793,74.0,7.0,8.0,9.0,9.0,9.0,7.0,74,1.86 +67790,,,,,,,,0, +3235,80.0,8.0,6.0,10.0,10.0,8.0,10.0,1,0.02 +58182,80.0,8.0,7.0,8.0,8.0,8.0,7.0,5,0.12 +62564,87.0,9.0,7.0,9.0,9.0,9.0,9.0,4,0.09 +33509,97.0,10.0,10.0,10.0,10.0,9.0,9.0,27,0.69 +11588,100.0,10.0,10.0,9.0,10.0,10.0,10.0,3,1.2 +55743,,,,,,,,0, +60032,,,,,,,,0, +74537,88.0,9.0,9.0,9.0,9.0,9.0,9.0,12,0.3 +38699,100.0,10.0,9.0,10.0,10.0,9.0,9.0,10,0.26 +28044,87.0,8.0,9.0,9.0,9.0,9.0,8.0,3,0.07 +9682,,,,,,,,0, +13046,85.0,9.0,9.0,8.0,9.0,8.0,9.0,5,0.12 +25281,100.0,9.0,10.0,10.0,10.0,10.0,10.0,3,0.07 +166,84.0,9.0,8.0,9.0,9.0,9.0,9.0,223,5.43 +16421,97.0,9.0,9.0,10.0,10.0,10.0,9.0,6,0.2 +9539,,,,,,,,0, +41365,,,,,,,,0, +18995,40.0,6.0,4.0,10.0,8.0,2.0,6.0,1,0.02 +52726,100.0,9.0,10.0,10.0,10.0,10.0,9.0,3,0.08 +66725,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.12 +33979,99.0,10.0,10.0,10.0,10.0,10.0,10.0,135,3.21 +54938,,,,,,,,0, +59634,,,,,,,,2,0.16 +15194,,,,,,,,0, +62404,80.0,9.0,8.0,8.0,7.0,9.0,7.0,5,0.12 +4024,99.0,10.0,10.0,10.0,10.0,9.0,10.0,20,0.69 +32116,89.0,9.0,9.0,9.0,8.0,8.0,9.0,14,0.33 +73042,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.12 +50135,97.0,10.0,9.0,10.0,10.0,9.0,10.0,67,1.71 +38030,,,,,,,,0, +38245,100.0,10.0,10.0,,,,,1,0.06 +41786,93.0,10.0,9.0,10.0,10.0,9.0,9.0,68,1.61 +24676,95.0,10.0,9.0,10.0,9.0,9.0,9.0,41,0.98 +54162,,,,,,,,0, +60293,100.0,10.0,10.0,10.0,10.0,9.0,10.0,22,0.64 +39866,98.0,10.0,10.0,10.0,10.0,9.0,10.0,130,3.07 +41722,97.0,10.0,9.0,10.0,9.0,10.0,10.0,7,0.17 +69236,91.0,9.0,9.0,10.0,10.0,9.0,9.0,22,0.53 +66051,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.02 +32958,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +54177,99.0,10.0,10.0,10.0,10.0,10.0,10.0,41,0.98 +26158,,,,,,,,0, +51856,82.0,9.0,8.0,9.0,9.0,9.0,8.0,77,1.85 +61134,95.0,10.0,10.0,10.0,10.0,8.0,9.0,93,2.18 +22151,,,,,,,,0, +73139,80.0,10.0,8.0,10.0,10.0,9.0,8.0,2,0.05 +56526,97.0,10.0,9.0,10.0,10.0,10.0,10.0,8,0.19 +66200,99.0,10.0,10.0,10.0,10.0,9.0,10.0,48,1.13 +25004,,,,,,,,0, +2017,86.0,9.0,8.0,9.0,9.0,8.0,8.0,19,0.45 +6121,97.0,10.0,9.0,10.0,10.0,8.0,9.0,13,0.32 +31582,,,,,,,,0, +51097,,,,,,,,0, +44867,98.0,10.0,10.0,10.0,10.0,9.0,10.0,10,0.24 +70526,91.0,9.0,8.0,9.0,9.0,9.0,9.0,7,0.17 +59098,95.0,10.0,9.0,10.0,10.0,9.0,9.0,12,0.29 +55370,92.0,10.0,9.0,10.0,10.0,9.0,9.0,185,6.98 +71650,99.0,10.0,10.0,10.0,10.0,10.0,10.0,42,1.0 +31066,100.0,10.0,9.0,10.0,10.0,9.0,10.0,2,0.07 +29106,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +4693,94.0,10.0,9.0,10.0,10.0,9.0,9.0,19,0.45 +71500,100.0,10.0,10.0,9.0,10.0,10.0,10.0,2,0.05 +58493,83.0,9.0,9.0,9.0,9.0,9.0,8.0,21,0.54 +12879,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +75764,60.0,8.0,6.0,8.0,8.0,6.0,6.0,1,0.02 +38966,,,,,,,,0, +75027,85.0,9.0,7.0,10.0,10.0,10.0,9.0,4,0.09 +70503,,,,,,,,1,0.02 +25971,99.0,10.0,10.0,10.0,10.0,10.0,10.0,73,2.82 +23930,96.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.86 +53586,92.0,10.0,10.0,10.0,10.0,10.0,9.0,29,0.7 +59298,,,,,,,,0, +22618,,,,,,,,0, +66561,,,,,,,,0, +34850,95.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.2 +58431,93.0,10.0,9.0,9.0,10.0,9.0,9.0,13,0.31 +398,100.0,10.0,10.0,10.0,10.0,9.0,10.0,11,0.26 +42732,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +13397,60.0,8.0,6.0,10.0,6.0,6.0,6.0,1,0.02 +60070,92.0,9.0,9.0,10.0,10.0,9.0,9.0,21,0.52 +62791,90.0,9.0,10.0,10.0,9.0,8.0,9.0,35,1.47 +75872,95.0,10.0,8.0,10.0,9.0,9.0,9.0,8,0.26 +52380,97.0,10.0,10.0,10.0,10.0,10.0,10.0,24,0.59 +66122,99.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.34 +1917,,,,,,,,0, +51540,,,,,,,,0, +59790,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.02 +31803,80.0,9.0,9.0,10.0,10.0,8.0,8.0,2,0.05 +74901,100.0,9.0,10.0,10.0,10.0,9.0,10.0,3,0.07 +40935,,,,,,,,0, +53583,97.0,10.0,10.0,10.0,10.0,9.0,10.0,12,0.29 +26491,100.0,9.0,10.0,10.0,10.0,10.0,10.0,4,0.3 +34586,97.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.36 +47235,,,,,,,,0, +68860,96.0,10.0,9.0,10.0,10.0,10.0,9.0,29,0.69 +16479,,,,,,,,1,0.02 +23137,97.0,10.0,10.0,10.0,10.0,9.0,9.0,7,0.17 +60051,97.0,10.0,10.0,10.0,10.0,10.0,9.0,9,0.29 +9962,100.0,10.0,10.0,10.0,10.0,10.0,10.0,19,0.45 +1025,98.0,10.0,10.0,10.0,10.0,9.0,10.0,19,0.46 +14585,97.0,10.0,10.0,10.0,10.0,10.0,10.0,20,0.48 +46908,94.0,9.0,10.0,9.0,10.0,9.0,10.0,14,0.38 +57454,96.0,10.0,9.0,10.0,10.0,10.0,10.0,116,7.89 +27239,,,,,,,,0, +70726,97.0,10.0,9.0,10.0,10.0,9.0,10.0,165,3.92 +44192,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.17 +57351,,,,,,,,0, +33287,,,,,,,,0, +10666,95.0,10.0,10.0,10.0,10.0,9.0,9.0,19,0.46 +18398,92.0,10.0,9.0,9.0,10.0,10.0,9.0,19,0.49 +41155,,,,,,,,0, +11928,96.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.15 +48158,,,,,,,,0, +23208,97.0,9.0,10.0,10.0,10.0,9.0,9.0,12,0.28 +6412,95.0,10.0,9.0,10.0,10.0,9.0,10.0,24,0.59 +76825,90.0,10.0,10.0,9.0,9.0,8.0,9.0,22,0.51 +62516,,,,,,,,0, +33112,96.0,9.0,9.0,10.0,10.0,9.0,9.0,27,0.65 +15407,98.0,10.0,10.0,10.0,10.0,10.0,9.0,13,0.31 +24747,,,,,,,,0, +24472,88.0,9.0,9.0,9.0,10.0,9.0,9.0,48,1.14 +73174,,,,,,,,0, +29248,88.0,10.0,10.0,9.0,10.0,9.0,10.0,12,0.42 +42303,,,,,,,,0, +15113,97.0,9.0,10.0,10.0,10.0,9.0,9.0,19,0.45 +75885,96.0,10.0,9.0,10.0,10.0,9.0,9.0,22,0.54 +6282,93.0,10.0,10.0,10.0,9.0,10.0,9.0,127,3.06 +34709,100.0,9.0,10.0,10.0,10.0,10.0,9.0,3,0.33 +46396,94.0,9.0,10.0,10.0,10.0,8.0,9.0,10,0.24 +77094,90.0,9.0,9.0,9.0,8.0,9.0,8.0,9,0.22 +51730,100.0,10.0,9.0,7.0,10.0,10.0,10.0,2,0.05 +27300,93.0,10.0,9.0,10.0,10.0,9.0,9.0,43,1.03 +55717,95.0,10.0,9.0,10.0,10.0,10.0,10.0,84,2.0 +27077,81.0,9.0,8.0,9.0,9.0,8.0,8.0,39,0.95 +44088,100.0,10.0,10.0,10.0,10.0,8.0,10.0,2,0.05 +8264,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +72781,97.0,10.0,10.0,10.0,10.0,9.0,10.0,43,1.15 +44830,,,,,,,,0, +25703,95.0,10.0,9.0,9.0,9.0,10.0,9.0,15,0.37 +9018,96.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.14 +4402,87.0,9.0,9.0,9.0,8.0,7.0,9.0,3,0.07 +29789,,,,,,,,0, +14181,,,,,,,,0, +58525,100.0,8.0,8.0,8.0,8.0,8.0,8.0,2,0.05 +23977,,,,,,,,1,0.02 +17605,70.0,7.0,7.0,6.0,8.0,10.0,6.0,2,0.05 +2952,93.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.07 +37198,95.0,9.0,9.0,10.0,10.0,10.0,9.0,13,0.31 +28161,82.0,9.0,8.0,8.0,8.0,9.0,8.0,9,0.31 +22789,93.0,10.0,10.0,10.0,10.0,9.0,10.0,46,1.37 +10005,98.0,9.0,10.0,10.0,10.0,10.0,10.0,14,0.33 +12023,99.0,10.0,10.0,10.0,10.0,10.0,10.0,34,0.81 +8600,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.02 +47289,,,,,,,,0, +49845,90.0,10.0,10.0,10.0,10.0,9.0,9.0,2,0.05 +20805,,,,,,,,0, +35538,,,,,,,,0, +17535,94.0,10.0,10.0,10.0,10.0,9.0,10.0,107,2.58 +64845,83.0,9.0,8.0,9.0,9.0,9.0,9.0,19,0.45 +16025,,,,,,,,1,0.02 +29170,90.0,9.0,10.0,10.0,9.0,10.0,8.0,2,0.05 +6258,95.0,10.0,10.0,10.0,10.0,9.0,10.0,22,0.52 +64051,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.07 +18405,98.0,10.0,10.0,10.0,10.0,9.0,9.0,53,1.29 +62888,,,,,,,,0, +71926,,,,,,,,0, +23458,91.0,10.0,9.0,10.0,10.0,9.0,10.0,9,0.22 +12750,86.0,9.0,9.0,9.0,10.0,8.0,9.0,7,0.17 +64099,85.0,9.0,9.0,9.0,9.0,8.0,8.0,69,1.65 +17011,,,,,,,,0, +75880,100.0,9.0,10.0,10.0,10.0,9.0,10.0,6,1.73 +5051,97.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.17 +15354,,,,,,,,0, +61623,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +12858,90.0,9.0,10.0,10.0,10.0,9.0,9.0,11,0.26 +57548,93.0,9.0,9.0,10.0,10.0,8.0,9.0,3,0.07 +69592,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +39184,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +12375,,,,,,,,0, +1520,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.09 +33759,100.0,10.0,9.0,10.0,10.0,10.0,10.0,7,0.17 +53573,92.0,9.0,9.0,10.0,9.0,10.0,9.0,43,1.01 +7825,97.0,10.0,10.0,10.0,10.0,10.0,10.0,39,0.95 +43089,,,,,,,,0, +43166,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +65955,93.0,10.0,10.0,9.0,9.0,8.0,10.0,229,5.38 +19986,92.0,10.0,9.0,10.0,10.0,10.0,9.0,34,0.8 +54578,,,,,,,,0, +74193,91.0,9.0,9.0,10.0,10.0,10.0,9.0,32,0.76 +31056,93.0,10.0,10.0,9.0,10.0,10.0,10.0,12,0.29 +29408,96.0,10.0,10.0,10.0,10.0,10.0,9.0,79,1.88 +67626,100.0,10.0,10.0,9.0,10.0,9.0,9.0,9,0.23 +63683,,,,,,,,0, +5184,90.0,9.0,10.0,9.0,10.0,7.0,9.0,3,0.08 +69251,84.0,9.0,9.0,9.0,9.0,9.0,9.0,11,0.27 +63787,94.0,10.0,9.0,10.0,10.0,10.0,9.0,17,0.55 +54770,,,,,,,,0, +63757,97.0,10.0,10.0,10.0,10.0,9.0,9.0,30,0.78 +33981,99.0,10.0,9.0,10.0,10.0,10.0,10.0,19,1.51 +8321,94.0,10.0,10.0,10.0,10.0,10.0,9.0,14,0.34 +64762,,,,,,,,0, +44117,93.0,10.0,8.0,10.0,10.0,10.0,9.0,3,0.08 +19555,,,,,,,,0, +20782,,,,,,,,0, +57954,94.0,10.0,9.0,10.0,10.0,10.0,9.0,78,1.85 +30473,,,,,,,,0, +6523,97.0,10.0,10.0,10.0,10.0,9.0,10.0,55,1.54 +6376,,,,,,,,0, +41996,99.0,10.0,10.0,10.0,10.0,10.0,10.0,125,6.31 +59494,93.0,9.0,9.0,9.0,9.0,9.0,9.0,11,0.76 +44926,90.0,9.0,8.0,8.0,8.0,7.0,8.0,2,0.07 +45347,93.0,10.0,8.0,10.0,10.0,9.0,9.0,3,0.08 +18267,100.0,10.0,9.0,10.0,10.0,9.0,9.0,3,0.07 +42795,,,,,,,,0, +8444,95.0,10.0,10.0,10.0,10.0,10.0,10.0,39,0.96 +69077,94.0,10.0,9.0,9.0,10.0,9.0,9.0,200,4.84 +45282,100.0,10.0,9.0,10.0,10.0,8.0,9.0,2,0.05 +17284,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.17 +60115,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +36682,92.0,9.0,9.0,10.0,10.0,9.0,9.0,36,0.85 +3740,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.28 +62436,98.0,10.0,9.0,10.0,10.0,10.0,10.0,9,0.31 +39380,95.0,10.0,9.0,10.0,10.0,9.0,9.0,27,0.65 +71314,95.0,10.0,10.0,10.0,10.0,8.0,10.0,77,1.82 +40167,97.0,10.0,10.0,10.0,10.0,10.0,9.0,40,0.96 +45309,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.03 +12510,,,,,,,,0, +13692,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.03 +20275,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +52356,99.0,10.0,10.0,10.0,10.0,10.0,10.0,54,1.3 +54991,96.0,10.0,10.0,10.0,10.0,9.0,10.0,52,2.32 +58394,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +28287,97.0,10.0,9.0,10.0,10.0,10.0,10.0,12,0.31 +60406,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.33 +38571,,,,,,,,0, +19026,100.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +49848,67.0,7.0,5.0,10.0,10.0,8.0,6.0,4,0.85 +20830,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +8211,94.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.68 +67008,,,,,,,,0, +67288,94.0,10.0,9.0,9.0,9.0,9.0,9.0,7,0.18 +39605,92.0,10.0,9.0,10.0,10.0,10.0,9.0,32,1.07 +60380,99.0,10.0,10.0,10.0,10.0,9.0,10.0,19,0.45 +15929,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.12 +11585,,,,,,,,0, +8144,97.0,10.0,9.0,10.0,10.0,9.0,10.0,55,1.38 +18068,96.0,10.0,9.0,10.0,10.0,9.0,10.0,10,0.31 +62212,90.0,10.0,9.0,9.0,10.0,9.0,8.0,5,0.12 +3624,98.0,10.0,10.0,10.0,10.0,10.0,10.0,31,0.78 +35707,87.0,9.0,9.0,9.0,9.0,9.0,9.0,13,0.41 +58427,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +38271,92.0,9.0,10.0,9.0,10.0,10.0,9.0,74,1.82 +63830,,,,,,,,0, +57756,97.0,10.0,9.0,10.0,10.0,9.0,9.0,39,0.93 +26737,98.0,10.0,10.0,10.0,10.0,10.0,10.0,22,0.55 +72952,98.0,10.0,10.0,10.0,10.0,9.0,10.0,53,1.28 +50625,98.0,10.0,10.0,10.0,10.0,9.0,10.0,170,4.09 +1112,98.0,10.0,10.0,10.0,10.0,9.0,9.0,10,0.28 +11992,100.0,10.0,10.0,9.0,10.0,9.0,10.0,2,0.06 +63740,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +29960,98.0,10.0,10.0,10.0,10.0,10.0,10.0,61,1.45 +34492,96.0,10.0,10.0,10.0,10.0,10.0,10.0,98,2.96 +37507,98.0,10.0,10.0,10.0,10.0,10.0,10.0,22,0.53 +41001,90.0,10.0,10.0,10.0,10.0,9.0,8.0,2,0.05 +1696,96.0,10.0,9.0,10.0,10.0,10.0,10.0,35,0.85 +36901,,,,,,,,0, +34872,,,,,,,,0, +33329,,,,,,,,0, +9469,98.0,10.0,10.0,10.0,10.0,10.0,10.0,32,0.77 +38847,85.0,9.0,9.0,9.0,9.0,8.0,9.0,80,1.89 +21085,94.0,9.0,10.0,10.0,10.0,10.0,9.0,97,2.31 +44786,99.0,10.0,10.0,10.0,10.0,9.0,10.0,27,0.76 +8116,90.0,9.0,9.0,9.0,9.0,9.0,9.0,96,2.29 +77038,,,,,,,,0, +36145,99.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.48 +52954,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.14 +75325,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.26 +63591,93.0,10.0,10.0,10.0,10.0,9.0,10.0,11,0.26 +4120,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.34 +4004,80.0,8.0,6.0,10.0,10.0,8.0,8.0,1,0.04 +66778,98.0,10.0,10.0,10.0,10.0,9.0,9.0,19,0.47 +54870,93.0,10.0,9.0,10.0,10.0,10.0,9.0,12,0.28 +67097,77.0,8.0,9.0,10.0,9.0,8.0,7.0,7,0.19 +12034,96.0,10.0,10.0,10.0,10.0,9.0,10.0,118,2.8 +25806,94.0,10.0,9.0,10.0,9.0,10.0,9.0,8,0.19 +1833,98.0,10.0,10.0,10.0,10.0,9.0,10.0,16,0.38 +34469,97.0,9.0,10.0,10.0,10.0,9.0,10.0,15,0.36 +42691,73.0,8.0,7.0,7.0,8.0,9.0,7.0,3,0.07 +14993,60.0,8.0,4.0,4.0,10.0,8.0,6.0,1,0.04 +53214,,,,,,,,0, +61825,98.0,10.0,10.0,10.0,10.0,9.0,9.0,12,0.29 +36999,95.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.1 +15900,90.0,9.0,9.0,9.0,9.0,10.0,9.0,51,1.22 +20797,82.0,8.0,9.0,9.0,10.0,9.0,8.0,12,0.29 +64606,,,,,,,,0, +46711,95.0,10.0,9.0,10.0,10.0,9.0,9.0,35,0.87 +4217,70.0,8.0,3.0,10.0,8.0,9.0,6.0,2,0.05 +23878,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +66,98.0,10.0,10.0,10.0,10.0,9.0,10.0,48,1.39 +20091,98.0,10.0,10.0,10.0,10.0,10.0,10.0,41,0.99 +48923,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.05 +34017,94.0,10.0,9.0,10.0,10.0,10.0,9.0,15,0.37 +69485,94.0,9.0,9.0,10.0,10.0,9.0,10.0,7,0.17 +67238,92.0,9.0,9.0,9.0,9.0,8.0,9.0,17,0.41 +16183,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +30412,90.0,9.0,9.0,9.0,10.0,8.0,9.0,150,3.62 +64645,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.07 +34538,93.0,9.0,9.0,10.0,10.0,10.0,9.0,244,6.73 +51524,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.07 +56771,98.0,10.0,10.0,10.0,10.0,9.0,10.0,9,0.22 +14382,90.0,10.0,7.0,8.0,8.0,9.0,9.0,2,0.07 +54364,99.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.33 +35388,,,,,,,,0, +52776,99.0,10.0,10.0,10.0,10.0,10.0,10.0,20,0.48 +12755,95.0,10.0,9.0,10.0,10.0,9.0,10.0,27,0.64 +12299,,,,,,,,0, +68615,96.0,10.0,9.0,10.0,10.0,10.0,9.0,40,0.95 +12495,92.0,10.0,9.0,10.0,10.0,10.0,9.0,114,2.76 +34712,89.0,9.0,8.0,9.0,10.0,9.0,9.0,7,0.17 +26537,90.0,10.0,8.0,9.0,10.0,9.0,9.0,2,0.05 +63834,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +62811,95.0,10.0,9.0,9.0,10.0,10.0,10.0,4,0.1 +71397,96.0,10.0,10.0,10.0,10.0,9.0,10.0,77,1.94 +76831,,,,,,,,0, +17337,100.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.19 +39245,,,,,,,,0, +10889,100.0,10.0,10.0,8.0,10.0,10.0,10.0,1,0.04 +11669,,,,,,,,0, +35019,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.03 +69375,87.0,10.0,10.0,8.0,9.0,9.0,9.0,3,0.07 +59877,100.0,10.0,10.0,10.0,10.0,10.0,10.0,84,2.13 +20179,,,,,,,,0, +45448,,,,,,,,1,0.04 +8458,100.0,10.0,10.0,8.0,10.0,10.0,10.0,1,0.02 +47366,100.0,8.0,8.0,8.0,10.0,10.0,8.0,1,0.02 +1693,100.0,8.0,10.0,10.0,10.0,10.0,8.0,1,0.02 +59466,,,,,,,,0, +12623,80.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.02 +14127,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.22 +33382,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +35237,87.0,9.0,9.0,9.0,9.0,9.0,9.0,44,1.06 +57277,94.0,10.0,10.0,10.0,10.0,10.0,9.0,7,0.17 +15766,100.0,10.0,8.0,10.0,10.0,8.0,8.0,1,0.02 +34208,,,,,,,,0, +2885,91.0,9.0,9.0,10.0,9.0,9.0,9.0,51,1.21 +35688,,,,,,,,0, +40148,97.0,10.0,10.0,10.0,10.0,10.0,9.0,115,2.72 +13475,,,,,,,,0, +74456,86.0,9.0,9.0,9.0,9.0,8.0,9.0,20,0.47 +21611,84.0,8.0,9.0,9.0,8.0,8.0,8.0,49,1.16 +65169,,,,,,,,0, +70411,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +4233,,,,,,,,0, +26826,,,,,,,,0, +24812,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.1 +1497,98.0,10.0,10.0,10.0,10.0,9.0,10.0,18,0.43 +67734,,,,,,,,0, +43986,,,,,,,,0, +5397,90.0,9.0,9.0,9.0,9.0,9.0,10.0,2,0.05 +10561,93.0,10.0,9.0,10.0,10.0,10.0,9.0,33,0.82 +7572,,,,,,,,1,0.02 +47851,79.0,9.0,10.0,9.0,9.0,8.0,8.0,23,0.55 +63534,,,,,,,,0, +62975,88.0,9.0,8.0,9.0,9.0,9.0,9.0,18,0.44 +72268,90.0,9.0,8.0,10.0,10.0,9.0,9.0,41,0.99 +255,,,,,,,,0, +49170,91.0,9.0,9.0,10.0,10.0,10.0,9.0,21,0.5 +9886,,,,,,,,0, +60350,92.0,9.0,9.0,10.0,10.0,9.0,9.0,15,0.36 +40748,91.0,9.0,9.0,10.0,10.0,10.0,8.0,26,0.62 +34040,,,,,,,,0, +62347,90.0,10.0,8.0,9.0,9.0,8.0,7.0,2,0.05 +2901,68.0,8.0,6.0,9.0,9.0,10.0,6.0,5,0.14 +18886,94.0,9.0,8.0,10.0,10.0,9.0,9.0,7,0.17 +63621,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.12 +63005,96.0,10.0,10.0,10.0,10.0,10.0,10.0,113,2.71 +53017,100.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +46065,,,,,,,,0, +1108,98.0,10.0,10.0,10.0,10.0,10.0,9.0,30,2.39 +69815,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.12 +7622,87.0,9.0,7.0,10.0,10.0,10.0,9.0,4,0.1 +5794,85.0,9.0,8.0,10.0,10.0,9.0,9.0,4,0.09 +55977,93.0,10.0,9.0,10.0,10.0,10.0,8.0,3,0.07 +37664,,,,,,,,0, +67394,97.0,10.0,9.0,10.0,10.0,10.0,9.0,69,1.66 +15041,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,1.09 +65574,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.1 +59276,,,,,,,,0, +38432,93.0,9.0,10.0,10.0,10.0,9.0,9.0,3,0.07 +67071,,,,,,,,0, +6431,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.31 +20163,,,,,,,,0, +19202,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.1 +42281,,,,,,,,0, +13783,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +18241,80.0,,,,8.0,8.0,8.0,2,0.05 +18815,95.0,10.0,9.0,10.0,10.0,10.0,9.0,49,1.16 +50812,50.0,9.0,3.0,8.0,9.0,8.0,7.0,2,0.05 +69268,90.0,9.0,9.0,9.0,9.0,9.0,9.0,73,1.73 +42713,,,,,,,,0, +27784,,,,,,,,0, +64501,94.0,10.0,10.0,10.0,10.0,9.0,9.0,20,0.48 +70107,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.05 +65278,,,,,,,,0, +21022,94.0,10.0,9.0,10.0,10.0,9.0,9.0,40,1.36 +33443,,,,,,,,0, +29034,98.0,10.0,10.0,10.0,10.0,10.0,10.0,36,1.24 +18713,95.0,9.0,8.0,9.0,9.0,9.0,9.0,4,0.1 +36622,100.0,9.0,10.0,9.0,9.0,9.0,10.0,4,0.1 +23559,,,,,,,,0, +43785,,,,,,,,0, +2313,100.0,10.0,10.0,10.0,10.0,10.0,10.0,29,0.7 +76121,,,,,,,,0, +35936,80.0,6.0,10.0,10.0,8.0,8.0,10.0,1,0.03 +69147,93.0,10.0,9.0,10.0,10.0,10.0,10.0,9,1.21 +10853,80.0,10.0,8.0,10.0,10.0,8.0,8.0,1,0.02 +10354,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.07 +56644,97.0,10.0,10.0,10.0,10.0,10.0,10.0,38,0.91 +74764,98.0,10.0,10.0,9.0,10.0,10.0,10.0,19,0.47 +37158,99.0,10.0,10.0,10.0,10.0,10.0,10.0,66,2.41 +52143,95.0,10.0,9.0,10.0,10.0,9.0,9.0,62,1.49 +16980,97.0,10.0,10.0,10.0,10.0,10.0,10.0,135,3.47 +37752,95.0,9.0,9.0,10.0,9.0,10.0,9.0,15,0.44 +45149,,,,,,,,0, +15806,95.0,10.0,9.0,10.0,10.0,9.0,9.0,16,0.39 +56008,,,,,,,,0, +55430,98.0,10.0,10.0,10.0,10.0,10.0,9.0,11,0.34 +54652,,,,,,,,0, +65457,88.0,10.0,9.0,10.0,10.0,9.0,9.0,18,0.43 +43277,89.0,9.0,9.0,10.0,10.0,9.0,9.0,27,0.65 +27556,100.0,10.0,10.0,10.0,10.0,9.0,10.0,12,0.3 +46681,,,,,,,,0, +53280,96.0,9.0,9.0,10.0,10.0,10.0,9.0,18,0.45 +55649,97.0,10.0,10.0,10.0,10.0,10.0,9.0,39,0.93 +3259,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +62615,,,,,,,,0, +15154,80.0,10.0,9.0,10.0,10.0,9.0,9.0,5,0.12 +51312,91.0,9.0,7.0,10.0,10.0,9.0,9.0,8,0.19 +18364,99.0,10.0,10.0,10.0,10.0,9.0,10.0,51,1.31 +29906,,,,,,,,0, +74988,,,,,,,,0, +67963,96.0,10.0,9.0,10.0,10.0,9.0,9.0,21,0.5 +29084,100.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.15 +41965,95.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.12 +56119,95.0,9.0,10.0,10.0,10.0,10.0,9.0,8,0.21 +6853,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +15857,,,,,,,,0, +22403,87.0,9.0,9.0,9.0,9.0,9.0,9.0,3,0.07 +48565,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.08 +59500,,,,,,,,0, +52833,,,,,,,,0, +14907,97.0,10.0,10.0,10.0,10.0,9.0,9.0,14,0.34 +19365,98.0,10.0,10.0,10.0,10.0,9.0,10.0,117,2.78 +44018,,,,,,,,0, +23899,85.0,9.0,7.0,10.0,10.0,9.0,8.0,33,0.8 +7810,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +71832,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.13 +60638,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +67748,83.0,9.0,8.0,9.0,9.0,10.0,9.0,32,0.77 +32389,,,,,,,,1,0.03 +47272,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.12 +56078,81.0,8.0,7.0,9.0,10.0,10.0,9.0,14,0.35 +68755,99.0,10.0,10.0,10.0,10.0,10.0,10.0,23,0.68 +28459,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +4933,100.0,10.0,10.0,10.0,10.0,10.0,10.0,42,1.0 +50083,80.0,8.0,8.0,10.0,10.0,8.0,8.0,1,0.02 +47325,,,,,,,,0, +22040,98.0,10.0,10.0,10.0,10.0,9.0,10.0,14,0.41 +61715,90.0,8.0,8.0,10.0,10.0,8.0,9.0,4,0.1 +19465,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.1 +72652,94.0,9.0,10.0,10.0,10.0,9.0,9.0,17,0.42 +51148,89.0,9.0,9.0,8.0,9.0,9.0,9.0,8,0.2 +40988,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.09 +33695,100.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.22 +75369,,,,,,,,0, +20468,100.0,8.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +9125,,,,,,,,0, +47895,94.0,10.0,9.0,10.0,10.0,9.0,9.0,76,1.82 +25985,80.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.03 +71188,96.0,10.0,10.0,10.0,10.0,10.0,10.0,27,0.64 +27645,100.0,10.0,10.0,10.0,10.0,6.0,10.0,1,0.02 +57210,,,,,,,,0, +25586,95.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.21 +30357,87.0,9.0,8.0,9.0,9.0,10.0,9.0,54,1.28 +2618,90.0,9.0,9.0,10.0,10.0,10.0,9.0,98,2.36 +22930,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.26 +43255,96.0,10.0,10.0,10.0,10.0,9.0,9.0,30,0.71 +62284,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +65736,95.0,10.0,9.0,10.0,10.0,10.0,10.0,13,0.31 +14757,88.0,9.0,9.0,10.0,10.0,9.0,9.0,5,0.12 +55019,93.0,10.0,9.0,9.0,10.0,10.0,8.0,8,0.2 +6220,91.0,9.0,8.0,9.0,9.0,8.0,8.0,7,0.17 +60883,,,,,,,,0, +48797,,,,,,,,0, +8293,,,,,,,,0, +33204,93.0,7.0,7.0,10.0,10.0,10.0,9.0,3,0.08 +54389,81.0,8.0,8.0,9.0,9.0,9.0,8.0,61,1.49 +26182,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +69486,93.0,10.0,9.0,9.0,10.0,9.0,10.0,17,0.45 +41460,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +22251,,,,,,,,0, +75854,,,,,,,,0, +76732,,,,,,,,0, +46864,97.0,10.0,10.0,10.0,10.0,9.0,9.0,6,0.35 +45581,90.0,9.0,8.0,10.0,9.0,9.0,9.0,101,2.46 +11044,98.0,10.0,10.0,9.0,10.0,9.0,9.0,19,0.46 +44432,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.1 +57755,95.0,10.0,10.0,10.0,10.0,9.0,9.0,17,0.41 +1237,89.0,9.0,9.0,10.0,10.0,9.0,9.0,86,2.09 +70676,,,,,,,,0, +67019,93.0,10.0,9.0,9.0,10.0,10.0,9.0,47,1.13 +67316,97.0,10.0,10.0,10.0,10.0,10.0,10.0,201,4.85 +10595,,,,,,,,1,0.02 +65191,,,,,,,,0, +36982,100.0,10.0,6.0,10.0,10.0,10.0,10.0,2,2.0 +33250,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.02 +9243,86.0,8.0,8.0,10.0,10.0,9.0,9.0,24,0.64 +48345,,,,,,,,0, +27050,88.0,10.0,9.0,10.0,10.0,10.0,9.0,41,0.98 +7036,,,,,,,,0, +69729,95.0,10.0,10.0,10.0,10.0,10.0,10.0,21,0.51 +67041,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.12 +39686,93.0,10.0,9.0,10.0,10.0,9.0,10.0,30,0.71 +54776,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.1 +40393,60.0,10.0,6.0,10.0,8.0,6.0,8.0,1,0.03 +36226,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.07 +57111,,,,,,,,0, +14214,,,,,,,,0, +67588,,,,,,,,0, +72090,94.0,10.0,10.0,10.0,10.0,8.0,9.0,21,0.67 +15955,90.0,9.0,9.0,9.0,9.0,9.0,9.0,2,0.05 +56571,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.12 +8952,,,,,,,,0, +5427,93.0,9.0,8.0,10.0,10.0,9.0,9.0,6,0.14 +2854,95.0,10.0,10.0,10.0,10.0,9.0,9.0,75,1.85 +27968,98.0,10.0,8.0,10.0,10.0,10.0,10.0,14,0.49 +61716,97.0,10.0,9.0,10.0,10.0,10.0,9.0,14,0.35 +41418,,,,,,,,0, +6368,100.0,10.0,10.0,10.0,10.0,9.0,10.0,10,0.52 +60165,98.0,10.0,10.0,10.0,10.0,9.0,10.0,11,0.27 +43284,83.0,9.0,9.0,9.0,9.0,8.0,9.0,99,2.35 +48637,,,,,,,,0, +39914,94.0,10.0,9.0,10.0,10.0,10.0,10.0,17,0.51 +42970,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +52204,98.0,10.0,10.0,10.0,10.0,10.0,10.0,66,1.66 +17543,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.24 +368,,,,,,,,0, +1624,95.0,10.0,10.0,10.0,10.0,10.0,10.0,104,2.61 +33870,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.28 +58275,93.0,9.0,7.0,9.0,8.0,10.0,10.0,3,0.07 +26216,99.0,10.0,10.0,10.0,10.0,10.0,10.0,73,1.78 +36503,90.0,10.0,9.0,10.0,10.0,8.0,8.0,2,0.05 +62893,,,,,,,,0, +21587,92.0,9.0,9.0,10.0,10.0,10.0,9.0,12,0.29 +6699,,,,,,,,0, +42427,,,,,,,,0, +38744,94.0,10.0,10.0,10.0,10.0,10.0,9.0,7,0.17 +14426,98.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.39 +57481,,,,,,,,0, +50841,47.0,6.0,4.0,5.0,5.0,9.0,5.0,3,0.07 +32339,98.0,10.0,10.0,10.0,10.0,10.0,10.0,30,0.71 +49593,83.0,8.0,9.0,9.0,9.0,9.0,8.0,30,0.73 +12268,98.0,10.0,10.0,10.0,10.0,10.0,10.0,65,1.59 +24873,83.0,8.0,9.0,9.0,8.0,8.0,8.0,8,0.19 +54919,99.0,10.0,10.0,10.0,10.0,9.0,10.0,39,0.96 +20827,88.0,9.0,8.0,9.0,9.0,10.0,9.0,19,0.47 +13253,98.0,10.0,10.0,10.0,10.0,9.0,10.0,24,0.57 +22501,97.0,9.0,10.0,10.0,10.0,9.0,10.0,126,3.07 +48541,91.0,9.0,9.0,10.0,9.0,10.0,9.0,41,1.01 +28319,97.0,10.0,9.0,10.0,10.0,9.0,9.0,7,0.17 +42607,97.0,10.0,10.0,10.0,10.0,10.0,10.0,48,1.15 +40524,70.0,8.0,7.0,10.0,10.0,9.0,9.0,6,0.33 +3921,80.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +59378,86.0,9.0,9.0,9.0,9.0,9.0,9.0,69,1.65 +70082,99.0,10.0,10.0,10.0,10.0,10.0,10.0,16,1.06 +35392,98.0,10.0,10.0,10.0,10.0,10.0,9.0,21,0.51 +31094,100.0,10.0,10.0,10.0,10.0,10.0,10.0,28,0.67 +66300,,,,,,,,0, +28856,96.0,10.0,9.0,10.0,10.0,10.0,10.0,15,0.36 +42193,,,,,,,,0, +29912,90.0,9.0,8.0,10.0,10.0,10.0,9.0,16,0.38 +14170,91.0,9.0,9.0,9.0,10.0,9.0,9.0,47,1.12 +1723,,,,,,,,0, +67644,100.0,10.0,10.0,10.0,10.0,9.0,10.0,13,0.48 +34399,89.0,10.0,9.0,9.0,9.0,10.0,9.0,54,1.29 +2326,94.0,10.0,10.0,9.0,9.0,9.0,9.0,124,2.98 +59745,90.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.11 +4756,95.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.24 +23442,93.0,10.0,10.0,10.0,10.0,9.0,10.0,15,0.37 +12073,90.0,10.0,10.0,10.0,9.0,10.0,10.0,4,0.1 +55054,47.0,5.0,4.0,9.0,8.0,7.0,5.0,3,0.07 +70774,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.61 +71346,97.0,10.0,8.0,10.0,10.0,10.0,10.0,8,0.19 +65231,,,,,,,,0, +48321,92.0,10.0,9.0,9.0,9.0,9.0,9.0,11,0.26 +74332,73.0,7.0,8.0,7.0,7.0,9.0,7.0,3,0.07 +30403,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.17 +73937,92.0,10.0,10.0,10.0,10.0,9.0,9.0,34,0.83 +64299,98.0,10.0,10.0,10.0,10.0,10.0,9.0,50,1.23 +65712,100.0,10.0,9.0,10.0,10.0,9.0,9.0,2,0.05 +33370,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.07 +40357,97.0,10.0,10.0,10.0,10.0,10.0,10.0,83,1.99 +74025,100.0,10.0,9.0,10.0,10.0,8.0,10.0,2,2.0 +32654,97.0,10.0,10.0,10.0,10.0,8.0,10.0,6,0.15 +22077,93.0,10.0,10.0,9.0,10.0,10.0,9.0,92,2.27 +49496,80.0,8.0,8.0,8.0,8.0,8.0,8.0,1,0.02 +43631,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +13607,99.0,10.0,10.0,10.0,10.0,10.0,10.0,29,0.7 +14223,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +68036,92.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.12 +18731,99.0,10.0,10.0,10.0,10.0,10.0,10.0,21,0.52 +49387,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.2 +53740,40.0,6.0,2.0,10.0,10.0,10.0,10.0,3,0.07 +55594,95.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.14 +9802,90.0,10.0,9.0,10.0,10.0,10.0,9.0,48,1.15 +66893,94.0,9.0,9.0,10.0,9.0,7.0,9.0,7,0.17 +73803,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +1440,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +16070,,,,,,,,0, +65921,99.0,10.0,10.0,10.0,10.0,10.0,10.0,55,1.36 +58012,94.0,10.0,10.0,10.0,10.0,10.0,9.0,21,0.54 +20861,88.0,9.0,8.0,10.0,9.0,9.0,9.0,8,0.19 +49730,95.0,10.0,9.0,10.0,10.0,8.0,10.0,25,0.61 +23968,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.14 +6300,85.0,9.0,8.0,10.0,10.0,9.0,9.0,4,0.1 +60481,93.0,10.0,10.0,9.0,9.0,9.0,9.0,3,0.08 +56144,95.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.1 +17876,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +22842,87.0,9.0,9.0,9.0,9.0,8.0,10.0,3,0.07 +16864,93.0,10.0,9.0,10.0,10.0,9.0,10.0,26,0.62 +8323,79.0,8.0,8.0,8.0,8.0,10.0,8.0,32,0.77 +53353,100.0,10.0,10.0,10.0,10.0,10.0,10.0,44,1.12 +56215,99.0,10.0,10.0,10.0,10.0,10.0,10.0,36,0.9 +7938,90.0,9.0,9.0,10.0,9.0,10.0,9.0,2,0.05 +2041,94.0,9.0,9.0,10.0,10.0,10.0,9.0,10,0.47 +69411,87.0,10.0,10.0,9.0,10.0,10.0,9.0,3,0.07 +70119,93.0,10.0,10.0,9.0,9.0,10.0,9.0,3,0.07 +40977,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.29 +73319,96.0,10.0,10.0,10.0,10.0,10.0,9.0,69,1.64 +48829,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.1 +52655,83.0,9.0,9.0,8.0,7.0,9.0,9.0,6,0.14 +50950,100.0,10.0,10.0,10.0,10.0,9.0,10.0,10,0.24 +21284,93.0,10.0,9.0,9.0,10.0,10.0,9.0,3,0.07 +47475,97.0,10.0,10.0,9.0,10.0,10.0,10.0,118,2.85 +18996,80.0,8.0,8.0,8.0,8.0,8.0,10.0,1,0.02 +10610,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +42007,95.0,10.0,9.0,10.0,10.0,9.0,9.0,27,0.65 +55972,87.0,9.0,8.0,9.0,9.0,9.0,9.0,25,0.71 +29150,75.0,9.0,7.0,9.0,9.0,8.0,8.0,13,0.34 +36385,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +44886,91.0,9.0,9.0,10.0,10.0,10.0,9.0,7,0.17 +41855,84.0,9.0,9.0,9.0,9.0,9.0,9.0,146,3.47 +67446,,,,,,,,0, +70000,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.1 +31625,97.0,10.0,10.0,10.0,10.0,8.0,9.0,97,2.3 +72908,,,,,,,,0, +72757,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.29 +37951,,,,,,,,0, +3675,86.0,9.0,10.0,10.0,10.0,8.0,9.0,8,0.25 +28124,60.0,8.0,4.0,4.0,8.0,10.0,6.0,1,0.02 +40462,97.0,10.0,10.0,10.0,10.0,10.0,10.0,40,0.96 +58513,98.0,10.0,10.0,10.0,10.0,10.0,10.0,55,1.31 +7656,100.0,10.0,10.0,10.0,10.0,9.0,9.0,6,0.14 +69094,97.0,10.0,9.0,10.0,10.0,10.0,10.0,21,0.52 +76319,97.0,10.0,9.0,10.0,10.0,10.0,10.0,15,0.36 +46019,,,,,,,,0, +58846,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.22 +24994,99.0,10.0,10.0,10.0,10.0,10.0,10.0,30,0.73 +75211,,,,,,,,0, +71432,96.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.38 +46544,92.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.12 +27342,90.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.05 +19956,90.0,10.0,7.0,10.0,10.0,10.0,10.0,2,0.05 +56712,96.0,9.0,10.0,10.0,10.0,9.0,10.0,10,0.24 +74109,98.0,10.0,9.0,10.0,10.0,8.0,10.0,26,0.66 +49295,96.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.27 +19095,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.03 +50585,94.0,10.0,10.0,10.0,10.0,10.0,9.0,37,0.91 +18355,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +72990,93.0,9.0,9.0,10.0,10.0,9.0,9.0,3,0.07 +24137,87.0,10.0,10.0,9.0,9.0,10.0,9.0,19,0.47 +35409,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +8006,96.0,10.0,10.0,10.0,10.0,10.0,10.0,32,0.8 +59880,93.0,10.0,9.0,10.0,10.0,10.0,9.0,82,1.96 +18556,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,2.37 +24926,96.0,10.0,10.0,10.0,10.0,10.0,9.0,64,1.56 +18188,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +46673,94.0,10.0,10.0,10.0,10.0,9.0,9.0,18,0.46 +56659,,,,,,,,0, +25148,85.0,9.0,9.0,9.0,9.0,10.0,9.0,44,1.14 +32401,,,,,,,,0, +24468,92.0,9.0,9.0,10.0,10.0,9.0,10.0,5,0.12 +46093,93.0,9.0,9.0,10.0,10.0,9.0,9.0,26,0.63 +24713,99.0,10.0,10.0,10.0,10.0,10.0,10.0,40,0.96 +26132,,,,,,,,0, +40787,,,,,,,,0, +14149,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +74791,,,,,,,,0, +40184,91.0,9.0,10.0,10.0,10.0,10.0,9.0,41,0.98 +72343,,,,,,,,0, +621,100.0,9.0,8.0,9.0,9.0,10.0,9.0,2,0.12 +67883,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +53404,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.22 +22589,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +16456,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +30388,99.0,10.0,10.0,10.0,10.0,10.0,10.0,29,0.75 +49460,100.0,10.0,6.0,4.0,6.0,6.0,10.0,1,0.02 +76115,60.0,4.0,4.0,4.0,4.0,8.0,6.0,1,0.06 +47546,93.0,10.0,9.0,10.0,10.0,9.0,9.0,11,0.27 +63351,80.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.03 +40639,90.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.12 +26229,,,,,,,,0, +46056,100.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.06 +66445,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.38 +59469,98.0,10.0,10.0,10.0,10.0,10.0,10.0,51,1.22 +34802,99.0,10.0,10.0,10.0,10.0,9.0,10.0,16,0.38 +70031,80.0,8.0,8.0,10.0,10.0,8.0,10.0,1,0.04 +73626,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.02 +21546,95.0,10.0,10.0,9.0,10.0,10.0,10.0,4,2.07 +42904,73.0,8.0,6.0,8.0,10.0,8.0,8.0,9,0.22 +40507,96.0,10.0,10.0,10.0,10.0,10.0,9.0,83,1.98 +50154,93.0,9.0,10.0,10.0,10.0,9.0,9.0,4,0.1 +19505,97.0,10.0,10.0,10.0,10.0,10.0,10.0,22,1.72 +55152,92.0,9.0,10.0,9.0,10.0,10.0,9.0,5,0.12 +12181,,,,,,,,0, +69504,95.0,9.0,9.0,10.0,10.0,9.0,9.0,9,0.24 +24494,88.0,9.0,9.0,10.0,10.0,10.0,9.0,9,0.22 +38134,93.0,10.0,10.0,10.0,9.0,9.0,9.0,63,1.55 +22632,91.0,10.0,9.0,9.0,9.0,10.0,9.0,12,0.69 +64138,,,,,,,,0, +33394,97.0,10.0,10.0,10.0,10.0,10.0,9.0,49,1.24 +58346,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.1 +41029,80.0,9.0,8.0,9.0,9.0,10.0,9.0,4,0.1 +52354,98.0,10.0,10.0,10.0,10.0,10.0,10.0,64,1.54 +58523,92.0,10.0,9.0,10.0,10.0,10.0,10.0,13,0.33 +14978,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.1 +51490,,,,,,,,2,0.05 +6923,100.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.4 +37235,100.0,10.0,10.0,10.0,10.0,10.0,10.0,20,0.48 +53352,90.0,10.0,10.0,10.0,10.0,9.0,9.0,2,0.05 +10625,96.0,10.0,10.0,10.0,10.0,9.0,9.0,5,0.12 +28332,100.0,9.0,8.0,10.0,10.0,10.0,10.0,7,0.22 +72695,,,,,,,,0, +48597,100.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +54627,97.0,10.0,9.0,10.0,10.0,9.0,10.0,28,0.68 +9831,96.0,10.0,10.0,9.0,10.0,9.0,10.0,18,0.67 +40285,,,,,,,,0, +27295,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.15 +63501,95.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.1 +47935,98.0,10.0,10.0,10.0,10.0,10.0,10.0,21,0.57 +49715,,,,,,,,0, +75512,92.0,9.0,9.0,9.0,9.0,7.0,9.0,5,0.12 +64416,90.0,10.0,9.0,9.0,10.0,9.0,9.0,65,1.67 +212,94.0,9.0,9.0,10.0,10.0,10.0,10.0,25,0.66 +44873,,,,,,,,0, +7132,89.0,9.0,9.0,10.0,10.0,9.0,9.0,88,2.21 +17697,,,,,,,,0, +50373,95.0,9.0,10.0,10.0,10.0,9.0,10.0,37,0.89 +8773,100.0,10.0,10.0,10.0,9.0,10.0,10.0,3,0.13 +29999,85.0,9.0,8.0,9.0,8.0,9.0,9.0,40,0.96 +51572,98.0,10.0,10.0,10.0,10.0,10.0,9.0,17,0.41 +47753,96.0,10.0,10.0,10.0,10.0,10.0,10.0,103,2.59 +41020,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +22834,60.0,8.0,6.0,10.0,10.0,10.0,6.0,1,0.03 +1338,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +46945,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.16 +30816,70.0,9.0,5.0,9.0,10.0,9.0,9.0,2,0.05 +62692,,,,,,,,0, +47844,88.0,9.0,9.0,10.0,9.0,9.0,9.0,5,0.12 +36815,,,,,,,,0, +454,95.0,10.0,10.0,10.0,10.0,9.0,9.0,99,2.37 +27162,,,,,,,,0, +63002,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +48413,93.0,10.0,9.0,10.0,10.0,9.0,9.0,175,4.17 +27346,99.0,10.0,10.0,10.0,10.0,10.0,10.0,232,5.53 +42287,96.0,9.0,10.0,10.0,10.0,10.0,10.0,6,0.14 +39935,,,,,,,,0, +45325,97.0,10.0,10.0,10.0,10.0,9.0,9.0,22,0.57 +41211,,,,,,,,0, +71830,100.0,9.0,9.0,9.0,9.0,9.0,9.0,2,0.05 +15424,99.0,10.0,10.0,10.0,10.0,10.0,10.0,16,1.06 +36902,80.0,8.0,9.0,9.0,10.0,7.0,8.0,6,0.15 +23077,94.0,10.0,9.0,10.0,10.0,10.0,9.0,7,0.17 +51450,95.0,9.0,10.0,10.0,10.0,9.0,10.0,4,0.25 +18988,94.0,9.0,10.0,10.0,10.0,9.0,9.0,8,0.25 +57169,95.0,10.0,10.0,10.0,10.0,10.0,10.0,30,0.72 +41351,80.0,8.0,6.0,10.0,10.0,10.0,8.0,2,0.05 +53140,89.0,9.0,8.0,9.0,10.0,9.0,9.0,30,0.73 +69203,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.1 +2458,96.0,10.0,9.0,10.0,10.0,10.0,10.0,10,0.24 +60508,,,,,,,,0, +52014,80.0,8.0,6.0,10.0,10.0,10.0,8.0,1,0.02 +15943,97.0,10.0,10.0,10.0,10.0,9.0,9.0,71,1.8 +33136,,,,,,,,0, +44855,88.0,10.0,9.0,10.0,10.0,8.0,9.0,5,0.12 +51423,90.0,9.0,9.0,10.0,10.0,9.0,9.0,4,0.1 +31751,87.0,9.0,9.0,9.0,9.0,9.0,9.0,7,0.17 +44924,90.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +30679,92.0,9.0,10.0,8.0,9.0,8.0,10.0,5,0.15 +22118,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.1 +26906,,,,,,,,0, +25337,90.0,9.0,9.0,9.0,10.0,9.0,9.0,44,1.06 +43251,93.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.16 +68689,100.0,10.0,10.0,10.0,10.0,9.0,9.0,4,0.1 +17200,55.0,6.0,7.0,7.0,9.0,10.0,7.0,4,0.1 +34763,91.0,9.0,9.0,9.0,10.0,9.0,9.0,68,1.94 +19242,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +18223,72.0,7.0,8.0,8.0,8.0,9.0,6.0,14,0.33 +11420,91.0,10.0,9.0,10.0,10.0,9.0,9.0,29,0.8 +23269,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +19086,99.0,10.0,10.0,10.0,10.0,10.0,10.0,61,1.47 +11932,,,,,,,,0, +24777,,,,,,,,0, +54549,80.0,8.0,10.0,8.0,8.0,8.0,8.0,1,0.02 +42534,97.0,10.0,10.0,10.0,10.0,9.0,10.0,146,3.67 +15666,97.0,10.0,9.0,9.0,10.0,9.0,9.0,18,0.43 +33199,,,,,,,,0, +13999,100.0,8.0,10.0,10.0,10.0,9.0,10.0,2,0.05 +17594,95.0,10.0,9.0,9.0,10.0,8.0,9.0,8,0.2 +326,,,,,,,,0, +31463,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.14 +38302,97.0,10.0,10.0,10.0,10.0,9.0,10.0,78,2.0 +21526,93.0,10.0,10.0,10.0,10.0,9.0,9.0,34,0.82 +26817,,,,,,,,0, +18839,,,,,,,,0, +21285,85.0,9.0,8.0,9.0,9.0,9.0,8.0,110,2.94 +26159,97.0,10.0,10.0,10.0,10.0,10.0,10.0,28,0.88 +10286,,,,,,,,1,0.02 +16636,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.1 +16488,95.0,10.0,10.0,9.0,9.0,10.0,9.0,11,0.33 +29727,94.0,10.0,9.0,10.0,10.0,9.0,9.0,26,0.63 +45019,,,,,,,,0, +65719,,,,,,,,0, +69405,100.0,10.0,8.0,10.0,10.0,10.0,8.0,3,0.07 +35206,,,,,,,,0, +53622,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +6871,90.0,9.0,9.0,9.0,10.0,9.0,9.0,56,1.35 +16252,,,,,,,,0, +47717,97.0,10.0,10.0,10.0,10.0,10.0,10.0,84,2.01 +76274,83.0,9.0,9.0,10.0,9.0,8.0,8.0,6,0.14 +3896,83.0,9.0,7.0,8.0,10.0,8.0,9.0,15,0.36 +73080,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +8646,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.2 +62481,,,,,,,,0, +31966,80.0,6.0,4.0,10.0,10.0,4.0,4.0,1,0.03 +22843,95.0,10.0,8.0,10.0,10.0,10.0,9.0,12,0.29 +46081,,,,,,,,0, +60422,96.0,10.0,9.0,10.0,10.0,9.0,10.0,20,0.49 +47318,,,,,,,,0, +28402,97.0,10.0,10.0,10.0,10.0,9.0,10.0,72,1.73 +5970,98.0,10.0,10.0,10.0,10.0,9.0,10.0,42,1.04 +38186,,,,,,,,0, +13283,,,,,,,,0, +28705,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.11 +1904,88.0,10.0,8.0,9.0,9.0,10.0,9.0,22,0.55 +19749,73.0,9.0,3.0,9.0,10.0,10.0,9.0,3,0.07 +75812,95.0,10.0,9.0,8.0,10.0,9.0,9.0,9,0.22 +34737,83.0,9.0,9.0,8.0,9.0,10.0,9.0,10,0.29 +68640,84.0,9.0,9.0,8.0,9.0,10.0,10.0,6,0.15 +25445,,,,,,,,0, +29774,80.0,10.0,6.0,10.0,10.0,6.0,8.0,2,0.05 +37954,85.0,9.0,8.0,10.0,10.0,9.0,9.0,46,1.18 +65224,93.0,10.0,10.0,10.0,10.0,9.0,10.0,15,0.38 +17779,94.0,10.0,10.0,10.0,10.0,9.0,9.0,41,1.01 +19526,80.0,2.0,6.0,10.0,10.0,10.0,10.0,3,0.11 +58516,96.0,10.0,9.0,10.0,10.0,9.0,9.0,10,0.24 +58410,97.0,10.0,10.0,10.0,10.0,9.0,10.0,15,0.36 +11858,,,,,,,,0, +7985,97.0,10.0,10.0,10.0,10.0,9.0,10.0,18,0.76 +4227,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.32 +68708,99.0,10.0,10.0,10.0,10.0,10.0,10.0,25,0.6 +53103,95.0,10.0,9.0,10.0,10.0,10.0,9.0,38,1.79 +61613,80.0,8.0,8.0,8.0,10.0,10.0,8.0,2,0.05 +63722,88.0,10.0,8.0,10.0,10.0,9.0,9.0,32,0.78 +75078,,,,,,,,0, +894,,,,,,,,0, +58847,100.0,9.0,10.0,10.0,10.0,10.0,9.0,3,0.07 +6984,95.0,10.0,9.0,10.0,10.0,9.0,10.0,9,0.22 +68819,,,,,,,,0, +56177,100.0,,,,10.0,10.0,10.0,1,0.03 +57543,90.0,10.0,9.0,9.0,10.0,9.0,10.0,4,0.1 +15965,,,,,,,,0, +27707,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +60208,20.0,4.0,2.0,4.0,4.0,8.0,2.0,1,0.03 +4808,90.0,8.0,10.0,10.0,10.0,9.0,10.0,2,0.05 +6097,97.0,10.0,10.0,10.0,10.0,10.0,10.0,79,1.91 +45090,90.0,10.0,8.0,10.0,10.0,8.0,9.0,4,0.1 +22006,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +54420,100.0,8.0,8.0,8.0,8.0,8.0,8.0,4,0.33 +46639,,,,,,,,0, +70963,97.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.29 +15442,97.0,10.0,10.0,9.0,10.0,10.0,9.0,7,0.25 +56253,,,,,,,,0, +1671,91.0,9.0,9.0,10.0,10.0,10.0,9.0,40,0.96 +26671,,,,,,,,0, +43012,,,,,,,,0, +6119,93.0,10.0,8.0,10.0,10.0,10.0,10.0,8,0.19 +66390,91.0,9.0,9.0,10.0,10.0,10.0,9.0,19,0.45 +43811,92.0,9.0,9.0,10.0,10.0,9.0,9.0,312,7.48 +66721,,,,,,,,0, +72291,97.0,10.0,9.0,10.0,10.0,10.0,10.0,8,1.24 +75616,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +71108,96.0,10.0,10.0,10.0,10.0,10.0,10.0,50,1.2 +25371,,,,,,,,0, +67087,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +69234,,,,,,,,0, +49838,93.0,9.0,9.0,10.0,10.0,9.0,9.0,3,0.08 +30369,,,,,,,,0, +27972,100.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.15 +65497,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +70939,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.1 +6550,90.0,9.0,10.0,10.0,10.0,7.0,9.0,6,0.15 +25695,,,,,,,,0, +48576,,,,,,,,0, +58601,100.0,8.0,8.0,10.0,10.0,8.0,8.0,1,0.02 +63181,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.12 +60048,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.3 +6742,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +23311,,,,,,,,0, +54531,82.0,9.0,8.0,10.0,10.0,9.0,9.0,20,0.48 +42383,95.0,9.0,10.0,10.0,10.0,10.0,9.0,52,1.26 +23917,94.0,9.0,9.0,10.0,10.0,9.0,9.0,93,2.24 +54647,,,,,,,,0, +28692,,,,,,,,0, +45712,94.0,10.0,10.0,10.0,10.0,9.0,9.0,127,3.13 +5534,,,,,,,,0, +47159,98.0,10.0,10.0,10.0,10.0,9.0,10.0,16,0.6 +76072,,,,,,,,0, +65925,93.0,9.0,10.0,10.0,10.0,10.0,9.0,118,3.14 +20790,95.0,10.0,10.0,10.0,10.0,9.0,10.0,85,2.18 +11608,89.0,9.0,8.0,10.0,10.0,9.0,9.0,30,0.73 +60506,92.0,9.0,10.0,10.0,10.0,9.0,9.0,17,0.41 +17955,100.0,10.0,10.0,10.0,10.0,10.0,10.0,102,2.52 +33310,98.0,10.0,10.0,10.0,10.0,10.0,10.0,21,0.57 +32015,87.0,9.0,8.0,9.0,10.0,10.0,9.0,35,0.84 +8639,96.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.34 +13626,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +21779,97.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.17 +38130,97.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.41 +5398,99.0,10.0,9.0,10.0,10.0,10.0,10.0,17,0.46 +54426,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.12 +49849,40.0,6.0,2.0,10.0,8.0,8.0,4.0,1,0.02 +62834,,,,,,,,0, +36229,98.0,10.0,10.0,10.0,10.0,10.0,10.0,137,3.3 +38254,100.0,9.0,9.0,10.0,9.0,9.0,9.0,4,0.1 +18358,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.07 +7718,87.0,9.0,9.0,9.0,9.0,9.0,9.0,11,0.27 +23640,96.0,10.0,10.0,10.0,10.0,10.0,9.0,11,0.32 +21109,85.0,10.0,10.0,9.0,10.0,8.0,9.0,4,0.1 +14180,97.0,10.0,10.0,10.0,10.0,9.0,10.0,31,0.76 +66970,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.03 +13043,,,,,,,,0, +44824,85.0,9.0,9.0,9.0,10.0,9.0,9.0,8,0.46 +8002,98.0,10.0,10.0,10.0,10.0,9.0,9.0,10,0.48 +27815,,,,,,,,0, +70690,99.0,10.0,10.0,10.0,10.0,10.0,10.0,97,2.35 +5650,80.0,8.0,6.0,10.0,10.0,6.0,10.0,1,0.02 +69295,100.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +73571,,,,,,,,0, +25930,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.14 +4737,,,,,,,,0, +2094,93.0,9.0,9.0,8.0,9.0,9.0,10.0,3,0.08 +62217,100.0,10.0,10.0,9.0,10.0,10.0,10.0,2,0.12 +36690,95.0,10.0,9.0,10.0,10.0,8.0,10.0,6,0.15 +51190,93.0,10.0,9.0,9.0,10.0,10.0,9.0,9,0.22 +44049,92.0,10.0,10.0,10.0,10.0,9.0,9.0,19,0.46 +64957,95.0,10.0,10.0,10.0,10.0,9.0,9.0,62,1.51 +1223,92.0,10.0,9.0,10.0,9.0,9.0,9.0,117,2.82 +61131,95.0,10.0,9.0,10.0,10.0,10.0,10.0,140,3.36 +32471,96.0,10.0,10.0,10.0,10.0,9.0,10.0,10,0.25 +76106,98.0,10.0,10.0,10.0,10.0,10.0,10.0,44,1.08 +40445,,,,,,,,0, +48168,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.14 +33905,,,,,,,,0, +69329,95.0,10.0,10.0,10.0,10.0,10.0,10.0,28,0.67 +24661,,,,,,,,0, +17212,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.15 +66718,97.0,10.0,9.0,10.0,10.0,10.0,9.0,37,0.9 +39186,60.0,2.0,6.0,10.0,2.0,10.0,4.0,1,0.02 +35405,80.0,8.0,8.0,9.0,10.0,10.0,9.0,9,0.22 +68206,99.0,10.0,10.0,10.0,10.0,10.0,10.0,71,1.86 +74105,80.0,6.0,6.0,10.0,10.0,8.0,8.0,1,0.03 +28042,,,,,,,,0, +2274,,,,,,,,0, +31460,99.0,10.0,10.0,10.0,10.0,10.0,10.0,44,1.17 +68695,99.0,10.0,10.0,10.0,10.0,10.0,10.0,22,0.53 +69050,84.0,9.0,8.0,9.0,9.0,8.0,9.0,73,1.75 +66203,,,,,,,,0, +76412,,,,,,,,0, +7285,90.0,9.0,10.0,10.0,10.0,10.0,9.0,49,1.23 +51612,99.0,10.0,10.0,10.0,10.0,9.0,10.0,25,0.61 +63903,83.0,9.0,8.0,9.0,9.0,9.0,7.0,8,0.2 +27630,97.0,10.0,10.0,10.0,10.0,10.0,10.0,165,4.32 +20157,83.0,9.0,9.0,9.0,9.0,10.0,9.0,6,0.16 +49877,,,,,,,,0, +330,95.0,10.0,9.0,10.0,10.0,10.0,10.0,44,1.08 +47809,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.07 +55676,97.0,10.0,10.0,10.0,10.0,9.0,10.0,138,3.31 +55410,97.0,10.0,10.0,10.0,10.0,10.0,9.0,7,0.35 +50278,91.0,10.0,9.0,9.0,9.0,7.0,9.0,7,0.17 +23970,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.08 +70675,98.0,10.0,10.0,10.0,10.0,10.0,9.0,16,0.39 +20609,,,,,,,,0, +55332,,,,,,,,0, +56388,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.05 +28575,,,,,,,,0, +59582,87.0,8.0,7.0,10.0,9.0,10.0,9.0,3,0.08 +2624,97.0,10.0,10.0,10.0,10.0,9.0,10.0,38,0.91 +71892,100.0,9.0,9.0,10.0,10.0,10.0,10.0,3,0.18 +2024,,,,,,,,0, +14879,94.0,10.0,9.0,10.0,10.0,9.0,10.0,7,0.17 +27720,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.14 +31159,92.0,10.0,9.0,10.0,10.0,9.0,9.0,19,0.47 +44547,96.0,10.0,10.0,10.0,10.0,10.0,10.0,52,1.33 +56339,,,,,,,,0, +35669,93.0,10.0,9.0,10.0,10.0,9.0,10.0,25,0.6 +18797,96.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.26 +51930,,,,,,,,0, +12984,100.0,,,,10.0,10.0,10.0,1,0.02 +24283,95.0,10.0,9.0,9.0,10.0,9.0,9.0,110,2.64 +66850,72.0,8.0,6.0,9.0,9.0,9.0,7.0,5,0.13 +7267,,,,,,,,2,0.05 +44208,,,,,,,,0, +32383,89.0,9.0,9.0,10.0,10.0,9.0,9.0,24,0.58 +53832,,,,,,,,1,0.04 +39552,95.0,10.0,10.0,10.0,10.0,10.0,9.0,55,1.32 +20236,60.0,6.0,6.0,10.0,10.0,8.0,8.0,1,0.02 +30382,87.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.13 +72442,92.0,10.0,9.0,10.0,10.0,9.0,9.0,295,8.15 +67146,97.0,10.0,10.0,10.0,10.0,10.0,10.0,29,0.71 +33949,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.05 +19373,96.0,10.0,10.0,10.0,10.0,10.0,9.0,136,3.27 +55292,,,,,,,,0, +51106,,,,,,,,0, +36418,,,,,,,,0, +35399,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.07 +10304,93.0,9.0,9.0,9.0,9.0,9.0,8.0,3,0.08 +34142,95.0,10.0,8.0,9.0,10.0,10.0,9.0,4,0.1 +26290,96.0,9.0,10.0,10.0,10.0,10.0,10.0,34,0.83 +41744,83.0,8.0,8.0,9.0,9.0,9.0,8.0,31,0.75 +20884,,,,,,,,0, +2836,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.19 +74694,93.0,10.0,9.0,10.0,10.0,10.0,9.0,12,0.29 +26867,96.0,10.0,10.0,10.0,10.0,10.0,9.0,58,1.71 +70973,53.0,6.0,3.0,9.0,9.0,8.0,5.0,3,0.07 +57442,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.13 +36827,88.0,9.0,9.0,9.0,10.0,10.0,9.0,26,0.62 +48870,96.0,10.0,9.0,10.0,10.0,10.0,10.0,71,1.74 +60389,100.0,10.0,10.0,10.0,10.0,10.0,8.0,2,0.06 +32153,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +43020,,,,,,,,0, +19192,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +51716,100.0,10.0,10.0,10.0,10.0,10.0,10.0,43,1.07 +59586,93.0,10.0,9.0,9.0,9.0,9.0,9.0,49,1.19 +51993,91.0,9.0,10.0,9.0,10.0,10.0,9.0,30,0.93 +22120,100.0,10.0,9.0,10.0,8.0,8.0,10.0,3,0.07 +54775,93.0,10.0,10.0,10.0,10.0,8.0,9.0,95,2.28 +52768,97.0,10.0,10.0,10.0,10.0,10.0,10.0,40,0.99 +7448,94.0,10.0,10.0,10.0,10.0,9.0,10.0,13,0.32 +17552,,,,,,,,0, +67473,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +10892,20.0,4.0,,,,,2.0,1,0.03 +38281,92.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.18 +25424,,,,,,,,0, +21988,,,,,,,,0, +22679,,,,,,,,0, +35022,95.0,10.0,9.0,10.0,10.0,9.0,10.0,39,0.95 +11850,87.0,9.0,8.0,10.0,9.0,9.0,9.0,29,0.77 +14408,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.03 +46835,73.0,9.0,9.0,9.0,9.0,7.0,9.0,3,0.07 +37192,,,,,,,,0, +19240,,,,,,,,0, +4214,,,,,,,,0, +57050,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +48212,91.0,9.0,9.0,10.0,9.0,9.0,9.0,154,3.72 +67620,,,,,,,,0, +69280,89.0,9.0,9.0,10.0,10.0,8.0,9.0,126,3.03 +58996,,,,,,,,0, +52690,92.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.33 +23601,,,,,,,,0, +12965,,,,,,,,0, +21332,88.0,10.0,10.0,9.0,9.0,7.0,9.0,8,0.26 +18756,,,,,,,,0, +73835,,,,,,,,0, +43093,95.0,10.0,9.0,10.0,10.0,9.0,9.0,16,0.4 +25215,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.07 +15282,,,,,,,,0, +62448,90.0,9.0,9.0,10.0,10.0,9.0,9.0,38,1.11 +6382,87.0,9.0,9.0,10.0,10.0,9.0,9.0,40,1.09 +47587,60.0,4.0,7.0,8.0,6.0,7.0,6.0,3,0.08 +8932,92.0,9.0,10.0,10.0,10.0,10.0,9.0,31,0.75 +16711,,,,,,,,0, +27190,91.0,9.0,9.0,9.0,10.0,10.0,9.0,20,0.48 +4722,90.0,9.0,9.0,10.0,10.0,9.0,9.0,29,0.7 +11183,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,5.82 +28826,,,,,,,,0, +43763,86.0,8.0,7.0,9.0,8.0,8.0,8.0,8,0.21 +25751,,,,,,,,0, +9513,80.0,10.0,8.0,8.0,10.0,8.0,8.0,2,0.05 +1432,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.17 +26464,,,,,,,,0, +57300,97.0,10.0,10.0,10.0,10.0,10.0,9.0,14,0.34 +11115,93.0,10.0,9.0,10.0,9.0,9.0,9.0,16,0.39 +8427,80.0,8.0,7.0,9.0,9.0,9.0,8.0,3,0.11 +20744,93.0,10.0,10.0,10.0,10.0,9.0,9.0,9,0.22 +12555,,,,,,,,0, +4681,96.0,10.0,9.0,10.0,10.0,10.0,10.0,10,0.25 +22555,98.0,10.0,10.0,10.0,10.0,10.0,10.0,19,0.46 +3316,99.0,10.0,10.0,10.0,10.0,10.0,10.0,38,1.33 +2092,,,,,,,,0, +29576,94.0,9.0,9.0,10.0,9.0,10.0,9.0,70,1.7 +52824,94.0,10.0,10.0,10.0,10.0,10.0,9.0,10,0.35 +59042,93.0,10.0,9.0,9.0,9.0,10.0,9.0,3,0.07 +70473,93.0,9.0,10.0,9.0,10.0,9.0,10.0,12,0.29 +51149,98.0,10.0,10.0,10.0,10.0,9.0,10.0,39,1.01 +73837,,,,,,,,0, +4257,80.0,9.0,9.0,7.0,9.0,10.0,9.0,7,1.26 +868,98.0,10.0,10.0,10.0,10.0,9.0,10.0,90,2.41 +29658,99.0,10.0,10.0,10.0,10.0,10.0,10.0,34,0.82 +59874,95.0,9.0,9.0,10.0,10.0,10.0,9.0,13,0.32 +55933,94.0,9.0,9.0,10.0,10.0,9.0,9.0,7,0.17 +61285,,,,,,,,0, +67199,,,,,,,,0, +72966,80.0,9.0,6.0,10.0,10.0,9.0,8.0,3,0.08 +28433,100.0,10.0,9.0,10.0,10.0,10.0,9.0,2,0.05 +28100,89.0,9.0,9.0,10.0,10.0,9.0,9.0,11,0.27 +22816,,,,,,,,0, +4724,87.0,9.0,10.0,9.0,9.0,9.0,9.0,11,0.28 +73387,88.0,9.0,8.0,9.0,10.0,10.0,10.0,12,0.29 +3044,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +20980,,,,,,,,0, +61427,95.0,9.0,10.0,10.0,10.0,10.0,9.0,56,1.46 +24029,90.0,9.0,8.0,9.0,10.0,9.0,9.0,37,0.95 +60940,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +64504,,,,,,,,0, +46483,89.0,9.0,9.0,9.0,10.0,9.0,9.0,20,0.5 +63004,98.0,10.0,10.0,10.0,10.0,9.0,10.0,18,0.44 +7796,99.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.44 +3967,,,,,,,,0, +16242,,,,,,,,0, +44893,,,,,,,,1,0.02 +37675,,,,,,,,0, +72454,96.0,10.0,10.0,9.0,9.0,9.0,9.0,5,0.12 +75972,95.0,10.0,9.0,10.0,10.0,10.0,9.0,23,0.56 +50610,,,,,,,,1,0.02 +69969,96.0,10.0,10.0,9.0,10.0,9.0,10.0,6,0.15 +15747,86.0,9.0,7.0,9.0,10.0,9.0,8.0,46,1.12 +35207,97.0,10.0,10.0,10.0,10.0,10.0,10.0,34,0.86 +29009,100.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +3989,,,,,,,,0, +37017,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.03 +73611,,,,,,,,0, +26655,88.0,9.0,9.0,10.0,9.0,9.0,9.0,29,0.73 +23543,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.25 +51462,99.0,10.0,10.0,10.0,10.0,10.0,10.0,184,4.64 +14422,93.0,9.0,9.0,10.0,10.0,9.0,9.0,60,1.46 +6726,84.0,9.0,9.0,10.0,10.0,9.0,9.0,47,1.54 +48673,77.0,8.0,6.0,10.0,10.0,9.0,8.0,6,0.18 +15755,97.0,10.0,9.0,10.0,10.0,10.0,9.0,13,0.32 +65238,91.0,9.0,9.0,9.0,9.0,9.0,9.0,11,0.27 +46003,,,,,,,,0, +76066,86.0,9.0,9.0,9.0,9.0,9.0,9.0,40,0.97 +41212,100.0,10.0,9.0,10.0,10.0,9.0,9.0,4,0.27 +62161,100.0,10.0,10.0,9.0,10.0,9.0,10.0,5,0.12 +61489,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.34 +55177,93.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.08 +64213,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.14 +15856,,,,,,,,0, +13052,,,,,,,,0, +21852,94.0,10.0,8.0,10.0,10.0,10.0,10.0,16,0.39 +41770,,,,,,,,0, +70584,84.0,7.0,8.0,9.0,9.0,9.0,8.0,11,0.27 +768,91.0,9.0,9.0,10.0,10.0,9.0,9.0,35,0.85 +60680,72.0,9.0,6.0,10.0,10.0,9.0,8.0,6,0.15 +18360,73.0,8.0,7.0,8.0,9.0,9.0,9.0,7,0.17 +19282,94.0,9.0,9.0,10.0,10.0,9.0,9.0,25,0.65 +34851,97.0,10.0,10.0,10.0,10.0,10.0,10.0,33,0.82 +2714,98.0,10.0,10.0,10.0,10.0,10.0,10.0,71,1.77 +9731,92.0,9.0,10.0,10.0,10.0,8.0,9.0,5,0.13 +5629,96.0,10.0,9.0,10.0,10.0,10.0,10.0,27,0.65 +29109,98.0,10.0,10.0,10.0,10.0,10.0,10.0,77,1.88 +61634,94.0,10.0,9.0,10.0,10.0,10.0,9.0,16,0.77 +54159,95.0,10.0,10.0,10.0,10.0,10.0,9.0,34,0.83 +57328,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +16462,97.0,10.0,9.0,10.0,10.0,10.0,10.0,6,0.2 +13730,97.0,10.0,8.0,10.0,10.0,10.0,10.0,7,0.17 +2013,97.0,10.0,9.0,10.0,10.0,10.0,10.0,116,2.82 +48183,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.25 +65774,,,,,,,,0, +66047,,,,,,,,0, +17104,,,,,,,,0, +67593,80.0,10.0,8.0,8.0,10.0,10.0,8.0,1,0.03 +22139,80.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.02 +45822,91.0,10.0,10.0,10.0,10.0,10.0,9.0,20,0.49 +39055,100.0,10.0,8.0,10.0,10.0,8.0,8.0,1,0.02 +41176,,,,,,,,0, +53411,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +46837,,,,,,,,0, +37274,100.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.42 +32195,80.0,8.0,8.0,7.0,9.0,8.0,8.0,3,0.07 +55438,82.0,9.0,9.0,9.0,8.0,9.0,9.0,17,0.44 +28160,,,,,,,,0, +3929,78.0,9.0,8.0,9.0,9.0,10.0,8.0,8,0.21 +36032,85.0,9.0,8.0,9.0,9.0,10.0,9.0,19,0.47 +162,97.0,10.0,9.0,10.0,10.0,10.0,9.0,65,1.73 +18447,,,,,,,,0, +23256,99.0,10.0,10.0,10.0,10.0,10.0,9.0,21,0.71 +51400,98.0,10.0,10.0,10.0,10.0,10.0,9.0,17,0.85 +54686,,,,,,,,0, +9335,98.0,10.0,9.0,10.0,10.0,10.0,10.0,70,1.72 +36118,93.0,9.0,9.0,10.0,10.0,10.0,10.0,9,0.22 +7684,96.0,10.0,10.0,9.0,8.0,10.0,10.0,7,0.17 +38171,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.11 +36594,,,,,,,,1,0.03 +1296,91.0,9.0,9.0,10.0,10.0,10.0,9.0,9,0.25 +49640,,,,,,,,0, +13228,88.0,10.0,8.0,9.0,10.0,7.0,7.0,5,0.18 +44580,99.0,10.0,10.0,10.0,10.0,10.0,10.0,191,4.7 +11496,91.0,9.0,9.0,9.0,10.0,10.0,9.0,31,0.8 +17631,,,,,,,,0, +59705,,,,,,,,0, +40909,95.0,10.0,9.0,10.0,10.0,10.0,9.0,25,0.65 +73400,90.0,8.0,8.0,8.0,9.0,7.0,8.0,2,0.05 +43416,97.0,10.0,10.0,10.0,10.0,10.0,10.0,42,1.01 +57345,96.0,10.0,10.0,10.0,10.0,10.0,10.0,104,2.54 +76687,,,,,,,,0, +9429,100.0,10.0,10.0,10.0,10.0,10.0,6.0,1,0.03 +45962,95.0,10.0,10.0,10.0,10.0,9.0,10.0,136,3.31 +42498,88.0,9.0,8.0,10.0,10.0,9.0,9.0,61,1.5 +72414,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +20117,88.0,9.0,8.0,10.0,10.0,10.0,9.0,106,2.56 +16746,,,,,,,,0, +12064,91.0,10.0,9.0,9.0,10.0,10.0,9.0,73,1.81 +34788,95.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.12 +74967,94.0,10.0,9.0,10.0,10.0,10.0,10.0,177,4.52 +75329,91.0,10.0,9.0,10.0,10.0,9.0,9.0,34,0.97 +29491,96.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.15 +71134,,,,,,,,0, +50191,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.1 +15820,87.0,9.0,8.0,10.0,9.0,9.0,10.0,6,0.15 +15706,,,,,,,,0, +2599,,,,,,,,0, +34938,87.0,9.0,9.0,10.0,9.0,10.0,8.0,41,1.02 +35683,89.0,9.0,9.0,9.0,9.0,10.0,9.0,36,0.93 +12237,89.0,9.0,10.0,9.0,9.0,10.0,9.0,40,0.99 +58907,88.0,9.0,9.0,9.0,10.0,10.0,9.0,40,1.12 +70490,98.0,10.0,9.0,10.0,10.0,10.0,9.0,51,1.56 +53006,100.0,10.0,8.0,10.0,10.0,10.0,8.0,2,0.05 +58815,100.0,9.0,10.0,10.0,10.0,9.0,10.0,3,0.07 +48195,94.0,10.0,10.0,10.0,10.0,9.0,10.0,41,0.99 +70547,,,,,,,,0, +32102,,,,,,,,0, +65111,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.03 +74404,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +40934,94.0,10.0,10.0,10.0,10.0,10.0,9.0,17,0.41 +22011,99.0,10.0,10.0,10.0,10.0,10.0,10.0,37,0.96 +48682,91.0,9.0,9.0,9.0,9.0,9.0,9.0,33,0.8 +7080,,,,,,,,0, +35888,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.05 +5563,80.0,8.0,7.0,9.0,9.0,7.0,8.0,2,0.05 +1607,98.0,10.0,10.0,10.0,10.0,10.0,10.0,48,1.46 +20463,93.0,10.0,9.0,10.0,10.0,9.0,10.0,48,1.17 +56893,98.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.41 +4258,97.0,10.0,10.0,10.0,10.0,10.0,10.0,57,1.39 +64219,80.0,8.0,6.0,10.0,10.0,8.0,8.0,2,0.05 +16616,98.0,10.0,10.0,9.0,9.0,9.0,10.0,9,0.32 +41836,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +5452,,,,,,,,0, +45733,,,,,,,,0, +65504,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.3 +26423,,,,,,,,0, +54384,,,,,,,,0, +14750,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.08 +9212,87.0,10.0,8.0,10.0,10.0,10.0,9.0,9,0.22 +18623,98.0,10.0,9.0,10.0,10.0,10.0,10.0,26,0.63 +58745,,,,,,,,0, +30581,96.0,10.0,10.0,10.0,10.0,9.0,10.0,9,0.23 +70143,76.0,10.0,8.0,8.0,8.0,8.0,8.0,5,0.12 +38822,,,,,,,,0, +17569,98.0,10.0,10.0,10.0,10.0,10.0,10.0,98,2.5 +65650,80.0,8.0,8.0,7.0,7.0,9.0,8.0,3,0.07 +29176,67.0,8.0,7.0,9.0,7.0,7.0,6.0,3,0.07 +44759,99.0,10.0,10.0,10.0,10.0,9.0,10.0,14,0.37 +20012,90.0,10.0,10.0,10.0,10.0,9.0,10.0,9,0.23 +23802,,,,,,,,0, +10548,,,,,,,,0, +55865,93.0,10.0,9.0,10.0,10.0,9.0,9.0,39,0.97 +53967,95.0,10.0,10.0,10.0,10.0,9.0,9.0,4,0.1 +74498,,,,,,,,0, +13776,97.0,10.0,10.0,10.0,10.0,9.0,10.0,52,1.27 +9299,96.0,10.0,10.0,10.0,10.0,10.0,10.0,24,0.59 +35294,,,,,,,,0, +31763,96.0,10.0,9.0,10.0,10.0,10.0,9.0,37,1.73 +56113,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.06 +64135,,,,,,,,1,0.02 +63039,99.0,10.0,10.0,10.0,10.0,9.0,10.0,30,0.78 +49105,83.0,10.0,8.0,9.0,9.0,9.0,9.0,7,0.22 +74359,97.0,10.0,10.0,10.0,10.0,9.0,10.0,27,1.27 +21077,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.43 +76538,,,,,,,,0, +14004,88.0,9.0,8.0,9.0,9.0,10.0,9.0,27,0.67 +279,93.0,9.0,10.0,10.0,9.0,9.0,9.0,3,0.2 +62454,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +12270,84.0,8.0,7.0,9.0,9.0,10.0,8.0,5,0.12 +72230,95.0,10.0,10.0,10.0,10.0,9.0,9.0,52,1.27 +68469,75.0,9.0,9.0,7.0,9.0,9.0,9.0,4,0.1 +27848,97.0,10.0,10.0,10.0,10.0,10.0,9.0,6,1.75 +17647,86.0,9.0,9.0,10.0,10.0,9.0,9.0,27,0.92 +34685,83.0,9.0,8.0,9.0,9.0,8.0,9.0,89,2.15 +70077,86.0,9.0,8.0,10.0,10.0,9.0,9.0,44,1.06 +21676,90.0,10.0,10.0,8.0,9.0,8.0,9.0,19,0.6 +29811,89.0,9.0,8.0,10.0,9.0,9.0,9.0,13,0.33 +4582,98.0,10.0,10.0,10.0,10.0,10.0,10.0,49,1.43 +42417,,,,,,,,0, +72890,94.0,10.0,10.0,10.0,10.0,9.0,9.0,177,4.38 +41681,92.0,9.0,10.0,10.0,10.0,9.0,9.0,199,4.83 +27643,92.0,9.0,9.0,9.0,9.0,10.0,9.0,26,0.63 +45238,98.0,10.0,10.0,10.0,10.0,10.0,10.0,39,0.97 +69291,,,,,,,,1,0.03 +6274,97.0,9.0,9.0,10.0,10.0,9.0,10.0,8,0.28 +41218,,,,,,,,1,0.03 +69931,100.0,10.0,8.0,10.0,10.0,10.0,10.0,3,0.07 +49234,94.0,10.0,9.0,9.0,10.0,9.0,9.0,18,0.44 +14163,95.0,10.0,9.0,10.0,10.0,9.0,9.0,20,0.5 +4510,90.0,9.0,10.0,10.0,10.0,8.0,8.0,31,0.75 +50672,99.0,10.0,10.0,10.0,10.0,10.0,10.0,117,3.15 +15601,73.0,9.0,7.0,9.0,9.0,9.0,7.0,3,0.07 +30705,93.0,10.0,9.0,10.0,10.0,9.0,9.0,16,0.59 +73072,,,,,,,,0, +411,97.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.34 +31852,100.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.15 +22397,98.0,10.0,10.0,10.0,10.0,9.0,9.0,58,1.42 +2661,100.0,9.0,9.0,10.0,10.0,10.0,9.0,2,0.05 +485,,,,,,,,0, +32683,,,,,,,,0, +29167,89.0,10.0,7.0,10.0,10.0,9.0,9.0,7,0.17 +18768,90.0,9.0,9.0,10.0,10.0,9.0,9.0,32,0.77 +18932,98.0,10.0,10.0,10.0,10.0,10.0,9.0,35,0.9 +54886,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.15 +38356,97.0,10.0,10.0,10.0,10.0,9.0,10.0,24,0.58 +26212,,,,,,,,0, +38308,100.0,10.0,10.0,10.0,10.0,9.0,10.0,11,2.17 +5924,,,,,,,,0, +35689,,,,,,,,1,0.02 +59800,60.0,9.0,5.0,10.0,10.0,9.0,7.0,2,0.05 +57581,99.0,10.0,10.0,10.0,10.0,10.0,10.0,20,0.5 +53261,98.0,10.0,10.0,10.0,10.0,10.0,10.0,79,1.93 +31070,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +11796,95.0,10.0,10.0,10.0,10.0,10.0,9.0,37,0.95 +22979,92.0,9.0,9.0,10.0,10.0,9.0,9.0,42,1.03 +16230,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +950,87.0,8.0,7.0,9.0,8.0,9.0,9.0,3,0.08 +8725,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +55235,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.13 +10194,,,,,,,,0, +35891,81.0,9.0,9.0,9.0,9.0,10.0,8.0,41,1.0 +73945,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +1960,93.0,9.0,9.0,10.0,10.0,10.0,9.0,63,1.56 +2953,92.0,10.0,10.0,10.0,10.0,9.0,9.0,92,2.35 +48965,95.0,9.0,9.0,10.0,10.0,10.0,10.0,40,0.98 +36488,93.0,10.0,9.0,10.0,10.0,10.0,9.0,45,1.15 +22197,,,,,,,,0, +62159,97.0,10.0,10.0,10.0,10.0,10.0,10.0,114,2.86 +32926,,,,,,,,0, +3757,94.0,10.0,10.0,9.0,9.0,10.0,9.0,61,1.5 +51944,96.0,10.0,10.0,10.0,10.0,10.0,10.0,47,1.19 +30962,96.0,10.0,10.0,10.0,10.0,10.0,10.0,160,3.94 +66019,94.0,10.0,9.0,10.0,10.0,10.0,9.0,13,0.75 +20071,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.23 +32723,100.0,10.0,10.0,10.0,10.0,10.0,10.0,25,1.11 +49812,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.21 +26029,91.0,9.0,8.0,10.0,10.0,9.0,9.0,240,5.79 +2282,94.0,9.0,9.0,10.0,10.0,10.0,9.0,17,0.41 +48601,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.33 +64697,,,,,,,,0, +37736,98.0,10.0,10.0,10.0,10.0,10.0,9.0,17,0.43 +6966,,,,,,,,0, +60447,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +49357,96.0,10.0,10.0,10.0,10.0,10.0,9.0,38,0.92 +11652,90.0,9.0,9.0,10.0,10.0,9.0,9.0,41,1.16 +28111,90.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.1 +7723,100.0,9.0,9.0,10.0,10.0,10.0,9.0,2,0.05 +35107,90.0,10.0,10.0,9.0,10.0,10.0,10.0,3,0.11 +18962,100.0,10.0,9.0,10.0,10.0,9.0,10.0,3,0.2 +53752,100.0,8.0,8.0,10.0,10.0,10.0,10.0,1,0.03 +69682,95.0,10.0,9.0,10.0,10.0,10.0,10.0,78,1.89 +6746,96.0,10.0,10.0,10.0,10.0,9.0,10.0,149,3.68 +50767,80.0,8.0,8.0,8.0,8.0,8.0,8.0,1,0.02 +24057,,,,,,,,0, +45878,97.0,10.0,10.0,10.0,10.0,10.0,10.0,129,3.21 +39878,80.0,8.0,6.0,10.0,10.0,10.0,8.0,1,0.03 +26320,93.0,10.0,10.0,10.0,10.0,8.0,10.0,4,0.1 +996,,,,,,,,0, +19697,,,,,,,,1,0.02 +44312,96.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.13 +58613,98.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.59 +8789,,,,,,,,0, +26020,,,,,,,,0, +76727,97.0,10.0,10.0,10.0,10.0,10.0,10.0,64,1.62 +37865,20.0,2.0,2.0,6.0,6.0,8.0,4.0,1,0.02 +18691,,,,,,,,0, +36883,80.0,7.0,9.0,7.0,9.0,9.0,9.0,3,1.43 +21277,,,,,,,,0, +8417,96.0,10.0,9.0,10.0,10.0,10.0,10.0,10,0.25 +74763,91.0,9.0,9.0,9.0,10.0,9.0,9.0,7,0.17 +39306,,,,,,,,0, +56756,,,,,,,,1,0.02 +71791,97.0,10.0,10.0,10.0,10.0,10.0,9.0,55,1.83 +15503,90.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.05 +56895,96.0,10.0,9.0,10.0,10.0,10.0,10.0,6,0.15 +19429,94.0,10.0,9.0,10.0,10.0,8.0,9.0,26,0.64 +6417,,,,,,,,0, +8766,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.15 +74311,87.0,9.0,9.0,9.0,9.0,9.0,9.0,43,1.04 +31545,100.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.37 +17570,83.0,8.0,9.0,9.0,9.0,9.0,9.0,95,2.32 +24014,96.0,9.0,9.0,10.0,10.0,10.0,9.0,11,0.27 +1252,87.0,9.0,9.0,9.0,10.0,7.0,8.0,4,0.1 +20549,94.0,10.0,9.0,10.0,10.0,10.0,9.0,40,0.97 +61278,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +22604,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.13 +20978,84.0,10.0,9.0,10.0,10.0,9.0,9.0,5,0.12 +22543,,,,,,,,0, +68455,93.0,10.0,8.0,10.0,10.0,10.0,10.0,19,0.47 +23996,90.0,10.0,10.0,10.0,10.0,9.0,9.0,2,0.05 +45074,80.0,10.0,8.0,10.0,10.0,8.0,8.0,1,0.02 +66777,,,,,,,,0, +5298,,,,,,,,0, +21391,93.0,10.0,10.0,9.0,10.0,9.0,9.0,6,0.15 +41759,97.0,10.0,10.0,10.0,10.0,9.0,10.0,32,1.61 +787,,,,,,,,0, +74919,95.0,10.0,9.0,10.0,10.0,10.0,10.0,20,0.5 +35628,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +15139,,,,,,,,0, +22404,97.0,10.0,9.0,10.0,10.0,10.0,10.0,13,0.41 +52185,,,,,,,,0, +15347,,,,,,,,0, +54102,96.0,10.0,10.0,10.0,10.0,9.0,9.0,24,0.61 +21436,99.0,10.0,10.0,10.0,10.0,9.0,10.0,19,0.49 +22962,91.0,9.0,10.0,10.0,10.0,10.0,9.0,17,0.41 +69287,96.0,10.0,10.0,10.0,10.0,10.0,10.0,17,2.54 +61358,95.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.17 +41946,98.0,10.0,10.0,10.0,10.0,10.0,10.0,40,0.97 +29,96.0,10.0,9.0,10.0,10.0,9.0,10.0,11,0.27 +32369,99.0,10.0,10.0,10.0,10.0,10.0,10.0,78,1.9 +54564,,,,,,,,1,0.04 +54296,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.02 +76235,,,,,,,,1,0.02 +51298,80.0,10.0,8.0,8.0,10.0,10.0,10.0,2,0.07 +61149,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +17660,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.21 +15724,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +54671,,,,,,,,0, +21570,,,,,,,,1,0.02 +63201,,,,,,,,0, +64261,78.0,8.0,6.0,9.0,9.0,9.0,8.0,11,0.27 +24414,96.0,10.0,10.0,10.0,10.0,10.0,10.0,162,4.11 +52077,96.0,10.0,10.0,10.0,10.0,10.0,9.0,9,0.29 +48925,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +68524,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.5 +56721,80.0,10.0,9.0,9.0,8.0,10.0,9.0,2,0.05 +72407,99.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.37 +58200,92.0,9.0,10.0,10.0,10.0,10.0,9.0,13,0.35 +47359,97.0,10.0,9.0,10.0,10.0,9.0,10.0,47,1.14 +4630,,,,,,,,0, +64267,97.0,9.0,10.0,10.0,10.0,10.0,9.0,7,0.18 +44084,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.19 +50404,,,,,,,,0, +13448,90.0,8.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +53756,,,,,,,,0, +57032,90.0,9.0,9.0,9.0,9.0,8.0,9.0,47,1.15 +32839,90.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.2 +61241,,,,,,,,0, +60736,90.0,10.0,10.0,10.0,10.0,10.0,9.0,27,0.66 +26608,80.0,8.0,8.0,8.0,8.0,6.0,6.0,1,0.03 +16752,97.0,10.0,10.0,10.0,10.0,10.0,10.0,102,2.52 +38301,90.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.05 +10303,,,,,,,,0, +35097,96.0,10.0,10.0,10.0,10.0,10.0,9.0,15,0.37 +793,90.0,9.0,9.0,10.0,10.0,10.0,9.0,15,0.36 +67166,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.38 +39667,,,,,,,,0, +71924,,,,,,,,0, +57800,95.0,9.0,10.0,9.0,9.0,9.0,9.0,4,0.22 +44073,,,,,,,,0, +3301,99.0,10.0,10.0,10.0,10.0,10.0,10.0,77,2.02 +73728,93.0,10.0,9.0,9.0,10.0,9.0,9.0,9,0.22 +41383,,,,,,,,0, +10089,98.0,10.0,10.0,10.0,10.0,10.0,9.0,32,0.78 +345,,,,,,,,0, +44202,93.0,10.0,9.0,10.0,10.0,10.0,9.0,121,2.93 +26925,93.0,9.0,9.0,10.0,10.0,9.0,9.0,6,0.15 +25473,100.0,10.0,10.0,8.0,10.0,10.0,10.0,5,0.12 +37092,87.0,9.0,8.0,10.0,10.0,9.0,9.0,184,4.45 +73587,80.0,8.0,10.0,10.0,8.0,8.0,8.0,2,0.05 +23812,,,,,,,,0, +41345,,,,,,,,0, +37834,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.15 +49590,97.0,9.0,10.0,10.0,10.0,9.0,9.0,7,0.18 +1694,87.0,9.0,9.0,10.0,9.0,10.0,9.0,26,0.64 +3618,98.0,10.0,10.0,10.0,10.0,10.0,10.0,104,2.72 +71389,94.0,10.0,10.0,10.0,10.0,10.0,9.0,7,0.42 +47481,90.0,9.0,9.0,10.0,9.0,9.0,9.0,6,0.15 +719,98.0,10.0,10.0,10.0,10.0,10.0,10.0,24,0.59 +47855,80.0,9.0,7.0,9.0,9.0,9.0,8.0,9,0.22 +37948,96.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.27 +13402,97.0,10.0,10.0,10.0,10.0,10.0,10.0,88,2.18 +18935,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.13 +48498,97.0,10.0,10.0,10.0,10.0,10.0,10.0,30,0.74 +30541,98.0,10.0,9.0,10.0,10.0,10.0,10.0,32,0.78 +60528,80.0,9.0,8.0,9.0,9.0,8.0,8.0,8,0.19 +17217,93.0,10.0,9.0,9.0,10.0,9.0,9.0,3,0.13 +57061,60.0,4.0,2.0,10.0,10.0,10.0,6.0,1,0.02 +9627,89.0,9.0,9.0,10.0,10.0,10.0,9.0,90,2.47 +9580,,,,,,,,0, +45121,95.0,10.0,9.0,10.0,10.0,10.0,9.0,48,1.18 +57149,,,,,,,,0, +11330,91.0,9.0,9.0,10.0,10.0,10.0,9.0,51,1.26 +2564,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.03 +18080,90.0,9.0,8.0,9.0,9.0,9.0,9.0,10,0.26 +19641,80.0,8.0,8.0,10.0,10.0,8.0,8.0,1,0.02 +28754,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +63557,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +10785,100.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.11 +66115,100.0,8.0,10.0,10.0,9.0,10.0,10.0,2,0.05 +39305,96.0,10.0,10.0,10.0,10.0,10.0,9.0,7,0.18 +26960,,,,,,,,0, +71686,90.0,9.0,8.0,10.0,9.0,10.0,9.0,2,0.05 +67191,,,,,,,,0, +44808,93.0,10.0,10.0,10.0,10.0,9.0,9.0,12,0.31 +61810,,,,,,,,0, +60668,90.0,10.0,10.0,10.0,10.0,9.0,8.0,2,0.05 +55792,,,,,,,,0, +73535,87.0,10.0,9.0,10.0,10.0,9.0,9.0,4,0.1 +21872,,,,,,,,0, +55244,93.0,10.0,10.0,10.0,10.0,9.0,9.0,110,2.74 +44747,,,,,,,,0, +17719,89.0,9.0,10.0,10.0,10.0,9.0,9.0,7,0.17 +35763,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.06 +54851,90.0,8.0,9.0,8.0,10.0,9.0,9.0,2,0.05 +10220,,,,,,,,0, +43855,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.05 +9591,95.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.48 +24674,93.0,10.0,10.0,10.0,10.0,9.0,9.0,75,2.26 +15408,94.0,9.0,9.0,10.0,10.0,9.0,9.0,41,1.0 +12315,98.0,10.0,10.0,10.0,10.0,10.0,10.0,33,0.81 +39535,87.0,9.0,7.0,10.0,10.0,7.0,8.0,3,0.08 +33627,95.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.1 +4957,94.0,10.0,10.0,10.0,10.0,9.0,9.0,13,0.32 +57773,95.0,10.0,10.0,10.0,10.0,9.0,9.0,36,0.9 +5374,,,,,,,,0, +31096,,,,,,,,0, +48642,84.0,9.0,8.0,9.0,10.0,10.0,8.0,5,0.13 +54562,,,,,,,,3,0.1 +60984,100.0,10.0,9.0,10.0,9.0,10.0,10.0,3,0.07 +4839,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.07 +7602,,,,,,,,0, +6271,,,,,,,,0, +48000,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +66006,96.0,10.0,10.0,10.0,10.0,9.0,9.0,5,0.12 +9093,87.0,9.0,8.0,10.0,10.0,9.0,9.0,3,0.08 +43128,,,,,,,,0, +49031,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.05 +24268,,,,,,,,0, +4617,90.0,10.0,9.0,10.0,10.0,9.0,9.0,21,0.54 +17010,96.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.45 +38321,93.0,9.0,9.0,10.0,10.0,10.0,9.0,60,1.45 +47673,92.0,9.0,10.0,10.0,10.0,10.0,9.0,27,0.74 +7273,,,,,,,,0, +72109,73.0,8.0,6.0,10.0,10.0,9.0,7.0,3,0.07 +40955,98.0,10.0,10.0,10.0,10.0,9.0,10.0,11,0.28 +3954,93.0,10.0,9.0,10.0,10.0,9.0,9.0,116,2.99 +31458,94.0,9.0,9.0,10.0,10.0,10.0,9.0,10,0.25 +42850,96.0,10.0,9.0,10.0,10.0,10.0,10.0,34,0.85 +10768,100.0,10.0,10.0,8.0,10.0,8.0,8.0,1,0.03 +57590,95.0,10.0,9.0,10.0,10.0,9.0,9.0,41,1.03 +49910,94.0,10.0,10.0,10.0,10.0,9.0,10.0,13,0.34 +63094,95.0,9.0,9.0,10.0,10.0,10.0,10.0,75,1.86 +26676,,,,,,,,0, +17805,98.0,10.0,10.0,10.0,10.0,10.0,10.0,31,0.87 +50262,,,,,,,,0, +19716,,,,,,,,0, +36847,,,,,,,,0, +49247,98.0,10.0,10.0,10.0,10.0,10.0,9.0,51,1.24 +50455,89.0,9.0,9.0,10.0,10.0,8.0,10.0,13,0.33 +58569,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,1.13 +28629,98.0,10.0,10.0,10.0,10.0,9.0,9.0,18,0.44 +40151,,,,,,,,0, +50824,,,,,,,,0, +39982,,,,,,,,0, +61066,98.0,10.0,10.0,10.0,10.0,10.0,10.0,57,1.78 +60860,89.0,10.0,9.0,9.0,9.0,9.0,9.0,14,0.34 +30002,83.0,9.0,9.0,9.0,9.0,9.0,8.0,233,5.68 +31054,70.0,9.0,6.0,9.0,9.0,6.0,6.0,2,0.05 +32058,100.0,10.0,9.0,10.0,10.0,9.0,10.0,2,0.05 +33593,97.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.2 +48261,92.0,9.0,9.0,10.0,10.0,9.0,9.0,5,0.12 +56350,88.0,9.0,9.0,9.0,10.0,10.0,9.0,13,0.32 +5391,94.0,9.0,9.0,10.0,9.0,9.0,9.0,7,0.18 +43107,97.0,10.0,10.0,10.0,10.0,9.0,9.0,7,0.18 +50426,93.0,9.0,10.0,10.0,10.0,9.0,10.0,3,0.07 +3617,91.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.27 +11033,93.0,9.0,8.0,10.0,10.0,9.0,9.0,28,0.71 +11859,,,,,,,,0, +44270,96.0,10.0,10.0,10.0,10.0,9.0,9.0,101,2.5 +36040,,,,,,,,0, +7922,91.0,9.0,9.0,9.0,10.0,9.0,9.0,144,3.61 +21979,96.0,10.0,10.0,10.0,10.0,10.0,10.0,120,3.05 +8724,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.02 +21029,,,,,,,,0, +38991,97.0,10.0,9.0,10.0,10.0,10.0,10.0,7,0.17 +3910,100.0,9.0,9.0,10.0,10.0,10.0,9.0,2,0.05 +38240,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.12 +36224,94.0,10.0,9.0,9.0,10.0,10.0,9.0,7,0.18 +55871,98.0,10.0,9.0,10.0,10.0,10.0,10.0,11,0.27 +5181,,,,,,,,0, +14391,99.0,10.0,10.0,10.0,10.0,10.0,10.0,32,0.78 +6837,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.03 +43352,93.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.15 +45196,90.0,10.0,10.0,10.0,10.0,10.0,8.0,3,0.09 +24884,,,,,,,,0, +8764,95.0,10.0,10.0,10.0,10.0,9.0,9.0,22,0.54 +52773,90.0,9.0,9.0,10.0,10.0,9.0,9.0,2,0.05 +73385,83.0,9.0,8.0,10.0,10.0,9.0,10.0,7,0.17 +36110,,,,,,,,0, +2679,,,,,,,,0, +18511,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.08 +55709,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.12 +72221,99.0,10.0,10.0,10.0,10.0,10.0,10.0,34,0.83 +45765,100.0,10.0,10.0,9.0,10.0,10.0,10.0,2,0.05 +263,94.0,9.0,9.0,10.0,10.0,10.0,10.0,37,0.92 +63298,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.23 +49083,96.0,10.0,10.0,10.0,10.0,10.0,10.0,39,1.33 +44782,,,,,,,,0, +17762,94.0,10.0,9.0,9.0,10.0,9.0,9.0,58,1.42 +33147,80.0,9.0,6.0,7.0,7.0,9.0,7.0,3,0.07 +36782,,,,,,,,0, +239,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.02 +40631,,,,,,,,0, +42167,,,,,,,,0, +40531,97.0,10.0,10.0,10.0,10.0,9.0,10.0,14,0.35 +60197,,,,,,,,0, +22635,,,,,,,,0, +4758,88.0,9.0,8.0,10.0,10.0,10.0,9.0,57,1.67 +38671,93.0,10.0,9.0,10.0,10.0,9.0,9.0,83,2.12 +22245,96.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.13 +54994,,,,,,,,0, +2086,,,,,,,,0, +17895,90.0,10.0,10.0,9.0,10.0,8.0,8.0,2,0.05 +24821,90.0,8.0,8.0,8.0,9.0,9.0,9.0,3,0.07 +61954,99.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.44 +19019,80.0,8.0,8.0,8.0,10.0,8.0,8.0,1,0.02 +57070,98.0,10.0,9.0,10.0,10.0,10.0,10.0,10,0.25 +14827,100.0,10.0,10.0,8.0,9.0,10.0,9.0,3,0.08 +49309,86.0,9.0,8.0,9.0,9.0,9.0,9.0,22,0.54 +26288,,,,,,,,0, +54,90.0,9.0,8.0,10.0,10.0,10.0,9.0,33,0.81 +61574,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +6413,,,,,,,,0, +23285,99.0,10.0,10.0,10.0,10.0,10.0,10.0,55,1.34 +46775,98.0,10.0,10.0,10.0,10.0,10.0,10.0,51,1.29 +64441,97.0,10.0,10.0,10.0,10.0,10.0,10.0,109,2.8 +58472,97.0,10.0,10.0,10.0,10.0,10.0,9.0,7,0.26 +62322,92.0,10.0,9.0,9.0,9.0,9.0,9.0,5,0.12 +28970,97.0,10.0,10.0,10.0,10.0,9.0,10.0,22,0.54 +54893,80.0,9.0,9.0,9.0,9.0,9.0,8.0,209,5.13 +60142,94.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.17 +48079,96.0,10.0,10.0,10.0,10.0,9.0,10.0,54,1.33 +54179,85.0,9.0,9.0,10.0,10.0,10.0,9.0,8,0.21 +65301,94.0,10.0,9.0,10.0,10.0,10.0,9.0,29,0.77 +50898,97.0,10.0,9.0,10.0,10.0,10.0,10.0,31,0.76 +612,99.0,10.0,10.0,10.0,10.0,10.0,10.0,29,0.75 +56368,,,,,,,,0, +55113,80.0,6.0,8.0,10.0,8.0,10.0,6.0,1,0.03 +44004,,,,,,,,0, +20053,96.0,9.0,10.0,10.0,10.0,9.0,10.0,15,0.37 +54808,,,,,,,,0, +74078,94.0,9.0,9.0,10.0,10.0,9.0,10.0,37,0.91 +70747,87.0,9.0,9.0,9.0,10.0,10.0,9.0,44,1.09 +56812,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.15 +994,,,,,,,,0, +15878,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.08 +1502,98.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.41 +46950,100.0,10.0,8.0,10.0,8.0,10.0,8.0,2,0.07 +12561,,,,,,,,0, +12640,100.0,9.0,8.0,8.0,10.0,9.0,7.0,2,2.0 +25354,96.0,10.0,10.0,10.0,10.0,10.0,9.0,17,0.43 +30876,,,,,,,,0, +60246,,,,,,,,0, +67882,,,,,,,,1,0.02 +33761,,,,,,,,0, +16463,98.0,10.0,10.0,10.0,10.0,10.0,10.0,67,1.63 +70109,,,,,,,,0, +41293,90.0,10.0,9.0,10.0,10.0,9.0,9.0,16,0.4 +51681,,,,,,,,0, +52552,98.0,10.0,10.0,10.0,10.0,10.0,10.0,29,0.71 +59427,98.0,10.0,10.0,10.0,10.0,9.0,10.0,35,1.14 +13090,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +67920,90.0,9.0,8.0,10.0,10.0,10.0,9.0,4,0.23 +18707,96.0,10.0,10.0,10.0,10.0,9.0,9.0,31,0.94 +40333,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +25199,90.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +51800,99.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.35 +60637,100.0,10.0,8.0,10.0,8.0,10.0,10.0,1,0.03 +43946,100.0,10.0,10.0,10.0,10.0,9.0,9.0,2,0.12 +8536,84.0,9.0,9.0,8.0,9.0,9.0,9.0,5,0.12 +40253,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +14464,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.32 +36591,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +35005,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.1 +9035,,,,,,,,0, +55440,,,,,,,,0, +62438,94.0,9.0,9.0,10.0,10.0,10.0,10.0,7,0.17 +12990,92.0,9.0,9.0,10.0,10.0,10.0,9.0,49,1.23 +49082,,,,,,,,0, +76033,,,,,,,,0, +17393,80.0,10.0,10.0,8.0,10.0,10.0,10.0,1,0.02 +54030,60.0,6.0,6.0,10.0,10.0,10.0,10.0,1,0.02 +522,,,,,,,,0, +37082,95.0,10.0,9.0,10.0,10.0,10.0,9.0,58,1.42 +40808,,,,,,,,0, +39694,,,,,,,,0, +50787,99.0,10.0,10.0,10.0,10.0,10.0,9.0,16,0.51 +53797,95.0,10.0,10.0,10.0,10.0,10.0,9.0,26,0.64 +74885,92.0,9.0,9.0,9.0,10.0,9.0,9.0,23,0.59 +7327,89.0,10.0,8.0,9.0,9.0,9.0,9.0,12,0.38 +53538,97.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.4 +19287,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.08 +29231,91.0,10.0,9.0,10.0,10.0,9.0,10.0,32,0.78 +67306,86.0,9.0,9.0,9.0,9.0,9.0,9.0,93,2.39 +37820,99.0,10.0,10.0,10.0,10.0,10.0,10.0,55,1.38 +38831,85.0,9.0,9.0,9.0,9.0,9.0,9.0,107,2.63 +1266,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.49 +63085,100.0,10.0,10.0,8.0,10.0,10.0,10.0,1,0.02 +49779,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.06 +15903,95.0,10.0,9.0,10.0,10.0,9.0,10.0,31,0.77 +60178,,,,,,,,0, +2345,,,,,,,,0, +48885,,,,,,,,0, +21449,98.0,10.0,10.0,10.0,10.0,10.0,10.0,25,0.62 +19868,,,,,,,,0, +12741,,,,,,,,0, +65154,87.0,10.0,7.0,10.0,9.0,10.0,8.0,3,0.07 +27086,96.0,10.0,10.0,10.0,10.0,9.0,10.0,88,2.14 +21389,,,,,,,,0, +69271,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.13 +1675,99.0,10.0,10.0,10.0,10.0,10.0,10.0,157,3.87 +27778,,,,,,,,0, +60998,93.0,9.0,9.0,10.0,10.0,9.0,9.0,14,0.35 +6195,80.0,10.0,8.0,10.0,10.0,8.0,10.0,1,0.02 +49129,100.0,8.0,8.0,10.0,10.0,10.0,10.0,1,0.03 +40329,,,,,,,,0, +73578,90.0,9.0,8.0,10.0,10.0,8.0,9.0,32,0.78 +53223,99.0,10.0,10.0,10.0,10.0,10.0,10.0,32,0.84 +52120,76.0,8.0,8.0,9.0,9.0,7.0,8.0,71,1.78 +34456,,,,,,,,0, +11325,,,,,,,,0, +16834,,,,,,,,0, +25403,,,,,,,,0, +22763,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.25 +5143,87.0,9.0,8.0,10.0,10.0,10.0,9.0,3,0.08 +32611,95.0,10.0,9.0,10.0,10.0,9.0,9.0,98,2.69 +19301,90.0,9.0,9.0,10.0,10.0,9.0,9.0,33,0.82 +34187,97.0,10.0,10.0,10.0,9.0,9.0,9.0,7,0.18 +57925,93.0,9.0,9.0,10.0,10.0,9.0,9.0,64,1.59 +764,95.0,10.0,10.0,9.0,9.0,10.0,9.0,4,0.1 +45801,,,,,,,,0, +22796,94.0,10.0,9.0,9.0,10.0,9.0,10.0,33,0.81 +74329,80.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.03 +71042,,,,,,,,1,0.03 +7979,,,,,,,,0, +49266,93.0,10.0,10.0,9.0,9.0,9.0,9.0,3,0.07 +76942,80.0,10.0,8.0,10.0,10.0,8.0,8.0,1,0.04 +55924,100.0,10.0,8.0,10.0,8.0,6.0,10.0,1,0.02 +7046,95.0,10.0,10.0,10.0,10.0,9.0,9.0,131,3.23 +6445,97.0,10.0,10.0,10.0,10.0,10.0,10.0,29,1.02 +70444,90.0,10.0,8.0,9.0,10.0,9.0,9.0,8,0.2 +35454,100.0,10.0,9.0,10.0,10.0,10.0,10.0,9,0.37 +99,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.15 +19881,,,,,,,,0, +59775,98.0,10.0,10.0,10.0,10.0,9.0,10.0,10,0.25 +37295,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +35188,83.0,9.0,8.0,8.0,9.0,8.0,9.0,26,0.68 +22284,,,,,,,,0, +15157,,,,,,,,0, +67874,98.0,10.0,10.0,10.0,10.0,10.0,9.0,17,0.43 +57979,100.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.13 +25433,,,,,,,,0, +49484,,,,,,,,0, +23962,,,,,,,,0, +53225,100.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.42 +49096,95.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.21 +62788,100.0,9.0,9.0,10.0,10.0,9.0,10.0,4,0.1 +56364,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.12 +13554,100.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.06 +41422,98.0,10.0,10.0,10.0,10.0,10.0,10.0,52,1.33 +54225,,,,,,,,0, +17563,98.0,10.0,10.0,10.0,10.0,9.0,10.0,101,2.47 +5082,97.0,10.0,10.0,10.0,10.0,10.0,9.0,12,0.3 +36396,93.0,9.0,8.0,9.0,10.0,9.0,9.0,10,0.34 +1953,98.0,10.0,10.0,10.0,10.0,9.0,10.0,65,1.62 +30644,94.0,9.0,9.0,9.0,10.0,9.0,9.0,40,1.01 +59425,,,,,,,,0, +31188,,,,,,,,0, +68980,94.0,9.0,10.0,9.0,9.0,9.0,8.0,11,0.27 +2823,,,,,,,,1,0.02 +45130,96.0,10.0,10.0,10.0,10.0,10.0,10.0,35,0.89 +52021,,,,,,,,0, +69836,92.0,9.0,9.0,10.0,10.0,9.0,10.0,10,0.25 +58875,,,,,,,,0, +16321,,,,,,,,0, +62035,70.0,7.0,8.0,9.0,9.0,7.0,7.0,2,0.05 +74711,70.0,9.0,6.0,9.0,10.0,10.0,8.0,4,0.11 +48738,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.1 +5670,60.0,8.0,8.0,10.0,10.0,8.0,8.0,1,0.02 +43001,90.0,9.0,7.0,10.0,9.0,9.0,9.0,2,0.05 +22609,99.0,9.0,10.0,10.0,10.0,10.0,9.0,32,0.82 +8310,,,,,,,,0, +71703,92.0,9.0,10.0,9.0,9.0,10.0,9.0,27,0.66 +20085,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.09 +34486,100.0,8.0,10.0,10.0,8.0,10.0,9.0,2,0.06 +2916,95.0,9.0,9.0,10.0,9.0,9.0,9.0,12,0.31 +13994,96.0,10.0,10.0,10.0,10.0,10.0,9.0,14,0.36 +75147,96.0,10.0,10.0,10.0,10.0,10.0,10.0,42,1.03 +25043,90.0,9.0,9.0,10.0,10.0,9.0,9.0,35,0.87 +59261,,,,,,,,0, +19681,99.0,10.0,10.0,10.0,10.0,10.0,10.0,20,0.49 +220,,,,,,,,0, +57594,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.15 +30893,84.0,9.0,8.0,10.0,10.0,10.0,9.0,21,0.51 +46018,,,,,,,,0, +49097,,,,,,,,0, +74202,84.0,10.0,8.0,10.0,10.0,10.0,8.0,5,0.13 +15016,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.03 +56358,98.0,10.0,10.0,10.0,10.0,10.0,10.0,141,3.44 +60536,90.0,8.0,8.0,8.0,10.0,10.0,8.0,2,0.05 +24113,,,,,,,,0, +3464,96.0,10.0,10.0,10.0,10.0,9.0,10.0,54,1.33 +19250,97.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.17 +49615,100.0,10.0,10.0,10.0,9.0,10.0,10.0,4,0.1 +14438,,,,,,,,0, +66459,,,,,,,,0, +71568,98.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.4 +13548,,,,,,,,0, +59361,98.0,10.0,10.0,10.0,10.0,10.0,9.0,124,3.18 +40616,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.2 +59788,100.0,10.0,10.0,10.0,10.0,9.0,10.0,14,0.35 +8746,,,,,,,,0, +74199,,,,,,,,0, +7298,78.0,9.0,8.0,8.0,8.0,10.0,9.0,8,0.71 +2496,99.0,10.0,10.0,10.0,10.0,10.0,10.0,43,1.05 +29374,100.0,,,,10.0,10.0,10.0,1,0.03 +68164,94.0,9.0,9.0,10.0,10.0,9.0,9.0,47,1.29 +44791,73.0,8.0,7.0,9.0,9.0,8.0,8.0,9,0.22 +10229,85.0,8.0,9.0,9.0,10.0,9.0,9.0,4,0.1 +26759,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.96 +49668,,,,,,,,0, +17540,,,,,,,,0, +65213,,,,,,,,0, +67205,95.0,9.0,9.0,10.0,10.0,9.0,10.0,16,0.4 +26148,93.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.15 +15728,,,,,,,,1,0.03 +17906,95.0,10.0,9.0,10.0,10.0,10.0,9.0,102,2.5 +10933,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.32 +28266,95.0,10.0,9.0,10.0,10.0,10.0,10.0,22,1.27 +56897,80.0,8.0,6.0,10.0,10.0,4.0,6.0,1,0.02 +53138,,,,,,,,0, +61890,80.0,8.0,7.0,8.0,8.0,9.0,9.0,2,0.06 +3825,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +63199,97.0,10.0,9.0,10.0,10.0,10.0,10.0,21,1.43 +10530,93.0,9.0,10.0,9.0,10.0,9.0,9.0,3,0.08 +61021,94.0,10.0,10.0,10.0,10.0,9.0,9.0,47,1.17 +31041,,,,,,,,0, +21024,,,,,,,,0, +54603,,,,,,,,0, +60958,96.0,10.0,9.0,10.0,10.0,10.0,9.0,32,0.82 +13154,,,,,,,,0, +60403,,,,,,,,0, +66221,98.0,10.0,10.0,10.0,10.0,10.0,10.0,94,2.31 +58837,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +4129,,,,,,,,0, +58798,100.0,10.0,10.0,10.0,10.0,8.0,10.0,2,0.18 +6125,,,,,,,,0, +6655,,,,,,,,0, +9521,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.09 +30197,94.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.27 +2072,,,,,,,,0, +76585,93.0,10.0,10.0,10.0,9.0,9.0,9.0,79,1.98 +36726,,,,,,,,0, +50883,100.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.42 +58034,96.0,10.0,9.0,10.0,10.0,10.0,10.0,11,0.28 +13107,70.0,7.0,6.0,7.0,7.0,8.0,6.0,2,0.08 +51479,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.87 +48941,,,,,,,,0, +48718,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.36 +29349,,,,,,,,1,0.02 +34744,93.0,10.0,10.0,9.0,10.0,9.0,9.0,3,0.19 +10761,50.0,9.0,5.0,9.0,8.0,10.0,7.0,3,0.07 +71861,91.0,10.0,9.0,10.0,9.0,9.0,9.0,125,3.17 +25906,,,,,,,,0, +33056,100.0,10.0,10.0,8.0,8.0,9.0,10.0,2,0.05 +57559,93.0,10.0,9.0,9.0,10.0,10.0,9.0,40,0.99 +51197,100.0,10.0,9.0,10.0,10.0,9.0,10.0,2,0.05 +466,94.0,10.0,10.0,9.0,10.0,10.0,9.0,124,3.04 +14698,,,,,,,,0, +4975,90.0,9.0,9.0,10.0,9.0,10.0,9.0,168,4.11 +22590,,,,,,,,0, +45672,,,,,,,,0, +62901,,,,,,,,0, +16160,88.0,9.0,8.0,10.0,10.0,9.0,9.0,13,1.71 +56512,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +39683,95.0,10.0,10.0,10.0,10.0,9.0,10.0,48,1.18 +60596,93.0,10.0,9.0,10.0,10.0,9.0,8.0,3,0.07 +12353,,,,,,,,0, +671,95.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.27 +33400,97.0,10.0,10.0,10.0,10.0,10.0,10.0,44,1.1 +72918,100.0,10.0,10.0,10.0,10.0,9.0,10.0,9,0.22 +63064,88.0,9.0,9.0,10.0,10.0,8.0,9.0,9,0.25 +61188,,,,,,,,0, +58015,,,,,,,,0, +52402,,,,,,,,0, +24221,99.0,10.0,10.0,10.0,10.0,10.0,10.0,33,1.81 +22127,95.0,9.0,9.0,9.0,10.0,8.0,9.0,8,0.26 +15571,100.0,10.0,9.0,10.0,10.0,10.0,10.0,7,0.17 +62632,96.0,10.0,10.0,10.0,10.0,10.0,9.0,17,0.44 +47245,98.0,10.0,10.0,10.0,10.0,10.0,10.0,88,2.27 +45677,95.0,9.0,9.0,10.0,10.0,9.0,9.0,45,1.39 +69023,95.0,10.0,10.0,10.0,10.0,10.0,10.0,66,1.64 +39766,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.1 +68935,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.14 +34056,97.0,10.0,10.0,10.0,10.0,10.0,10.0,85,2.1 +4562,60.0,6.0,6.0,10.0,8.0,8.0,6.0,1,0.04 +44288,,,,,,,,0, +12281,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.03 +73021,,,,,,,,0, +18944,,,,,,,,0, +26805,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.11 +51064,99.0,10.0,10.0,10.0,10.0,10.0,10.0,34,0.83 +23898,,,,,,,,1,0.02 +40025,97.0,10.0,10.0,10.0,10.0,10.0,10.0,152,3.72 +5641,93.0,10.0,9.0,10.0,10.0,10.0,9.0,3,0.08 +61441,97.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.24 +67355,97.0,10.0,10.0,10.0,10.0,10.0,10.0,68,1.7 +19398,96.0,10.0,10.0,10.0,10.0,10.0,9.0,33,0.85 +6839,98.0,10.0,10.0,10.0,10.0,10.0,10.0,119,2.96 +67503,,,,,,,,0, +2633,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +76873,97.0,10.0,10.0,10.0,10.0,10.0,9.0,14,0.35 +45261,,,,,,,,0, +64005,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +8579,91.0,9.0,9.0,9.0,10.0,9.0,9.0,170,4.17 +64757,87.0,9.0,7.0,10.0,10.0,8.0,9.0,3,0.07 +31972,100.0,9.0,10.0,10.0,10.0,10.0,10.0,3,0.1 +35869,93.0,9.0,9.0,10.0,10.0,10.0,9.0,54,1.33 +30891,100.0,9.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +64974,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +61931,80.0,6.0,10.0,10.0,10.0,10.0,6.0,1,0.03 +51113,100.0,8.0,10.0,10.0,8.0,8.0,8.0,2,0.05 +32467,100.0,10.0,10.0,10.0,10.0,2.0,4.0,1,0.02 +45118,,,,,,,,0, +1451,100.0,10.0,10.0,10.0,8.0,10.0,10.0,1,0.03 +304,97.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.33 +8369,90.0,8.0,9.0,10.0,10.0,9.0,9.0,2,0.05 +54292,99.0,10.0,10.0,10.0,10.0,10.0,10.0,154,3.8 +39557,100.0,9.0,9.0,10.0,10.0,10.0,10.0,4,0.1 +62680,,,,,,,,1,0.02 +24502,96.0,10.0,10.0,10.0,10.0,10.0,10.0,26,0.65 +31932,91.0,9.0,9.0,10.0,10.0,9.0,9.0,29,0.73 +65731,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.3 +58928,97.0,10.0,9.0,10.0,10.0,9.0,10.0,25,0.62 +58965,90.0,10.0,9.0,10.0,10.0,8.0,9.0,10,0.25 +68543,,,,,,,,0, +48957,,,,,,,,0, +52717,93.0,9.0,9.0,9.0,9.0,9.0,10.0,4,0.1 +2438,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.1 +141,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.1 +6242,94.0,9.0,9.0,10.0,10.0,10.0,9.0,13,0.33 +11871,,,,,,,,0, +36471,85.0,9.0,9.0,9.0,9.0,9.0,9.0,40,0.99 +19665,100.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.11 +57465,97.0,10.0,10.0,10.0,10.0,9.0,10.0,25,0.61 +56976,98.0,10.0,10.0,10.0,10.0,10.0,10.0,84,2.06 +50128,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +55675,99.0,10.0,10.0,10.0,10.0,10.0,10.0,107,2.65 +55967,94.0,10.0,9.0,10.0,10.0,10.0,10.0,14,0.35 +25705,,,,,,,,0, +55915,100.0,8.0,6.0,10.0,10.0,8.0,8.0,1,0.03 +76795,,,,,,,,0, +10622,,,,,,,,0, +74321,96.0,10.0,9.0,10.0,10.0,10.0,9.0,5,0.12 +8648,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.03 +29970,99.0,10.0,10.0,10.0,10.0,10.0,10.0,80,4.1 +46169,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.14 +26359,90.0,8.0,9.0,7.0,9.0,10.0,8.0,2,0.35 +57764,100.0,10.0,10.0,10.0,10.0,10.0,9.0,12,0.43 +37789,,,,,,,,0, +48408,94.0,10.0,10.0,10.0,10.0,9.0,10.0,39,0.99 +53401,95.0,10.0,9.0,10.0,10.0,10.0,10.0,12,0.3 +44792,100.0,9.0,9.0,10.0,10.0,10.0,9.0,3,0.08 +16253,,,,,,,,0, +63425,86.0,9.0,8.0,9.0,9.0,10.0,9.0,40,1.05 +8760,100.0,10.0,10.0,9.0,9.0,10.0,10.0,4,0.11 +38160,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.08 +47540,90.0,9.0,9.0,10.0,10.0,10.0,9.0,71,2.54 +38113,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.21 +46312,94.0,10.0,9.0,9.0,9.0,9.0,9.0,8,0.21 +9049,87.0,10.0,10.0,9.0,9.0,10.0,8.0,13,0.36 +58495,91.0,9.0,9.0,10.0,10.0,9.0,9.0,103,2.61 +66034,95.0,10.0,10.0,10.0,10.0,10.0,9.0,8,0.21 +18975,99.0,10.0,10.0,10.0,10.0,10.0,10.0,44,1.11 +59324,,,,,,,,0, +12283,,,,,,,,0, +13040,,,,,,,,0, +45313,96.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.28 +56716,92.0,9.0,9.0,10.0,10.0,10.0,9.0,39,0.96 +62606,,,,,,,,0, +27481,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.48 +20,,,,,,,,0, +71039,93.0,9.0,9.0,10.0,10.0,10.0,9.0,133,3.4 +16630,100.0,8.0,10.0,10.0,10.0,8.0,8.0,1,0.02 +18095,86.0,9.0,7.0,9.0,9.0,9.0,9.0,21,0.54 +30760,,,,,,,,1,0.02 +36508,99.0,10.0,10.0,10.0,10.0,9.0,10.0,119,3.96 +67062,97.0,10.0,9.0,10.0,10.0,10.0,10.0,40,1.13 +56333,96.0,10.0,10.0,10.0,10.0,9.0,9.0,30,0.99 +15451,,,,,,,,0, +23874,77.0,8.0,8.0,9.0,9.0,10.0,8.0,33,0.81 +58303,93.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.42 +28929,98.0,10.0,9.0,10.0,10.0,10.0,10.0,29,0.87 +54930,60.0,8.0,6.0,9.0,10.0,7.0,6.0,2,0.05 +75130,100.0,8.0,6.0,10.0,10.0,10.0,8.0,1,0.03 +15960,90.0,10.0,10.0,10.0,10.0,9.0,9.0,6,0.15 +42609,98.0,10.0,9.0,10.0,10.0,9.0,10.0,31,0.78 +67178,,,,,,,,0, +54972,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.11 +19702,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.33 +2692,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +71846,,,,,,,,0, +51030,84.0,9.0,8.0,9.0,8.0,9.0,9.0,10,0.27 +57592,93.0,10.0,10.0,9.0,10.0,10.0,10.0,17,0.47 +16917,,,,,,,,0, +65284,,,,,,,,0, +21316,94.0,10.0,9.0,10.0,9.0,9.0,9.0,9,0.24 +16602,,,,,,,,0, +43,96.0,10.0,10.0,10.0,10.0,10.0,9.0,90,2.55 +50709,84.0,8.0,8.0,8.0,9.0,10.0,9.0,5,1.2 +49232,90.0,10.0,10.0,10.0,9.0,10.0,10.0,2,0.05 +12163,,,,,,,,0, +60338,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +27197,100.0,10.0,8.0,10.0,10.0,8.0,8.0,1,0.02 +13186,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.25 +11175,93.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.08 +60299,,,,,,,,0, +9832,80.0,8.0,7.0,8.0,10.0,7.0,10.0,2,0.05 +46556,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.08 +24110,95.0,9.0,10.0,10.0,10.0,9.0,9.0,12,0.29 +41998,91.0,10.0,9.0,10.0,10.0,10.0,9.0,92,2.26 +69130,92.0,9.0,9.0,10.0,10.0,10.0,9.0,40,0.99 +12423,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.1 +46082,,,,,,,,0, +8135,86.0,9.0,9.0,9.0,9.0,9.0,9.0,65,1.6 +20749,95.0,10.0,9.0,10.0,10.0,10.0,10.0,32,0.81 +62795,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.49 +33769,,,,,,,,0, +59309,96.0,10.0,9.0,10.0,10.0,10.0,10.0,32,0.85 +39523,96.0,9.0,10.0,10.0,10.0,10.0,10.0,11,0.28 +7673,,,,,,,,0, +8389,,,,,,,,0, +53240,98.0,10.0,10.0,10.0,10.0,10.0,10.0,33,0.87 +19976,97.0,10.0,9.0,10.0,10.0,9.0,9.0,6,0.16 +3201,89.0,9.0,9.0,9.0,9.0,10.0,8.0,22,0.56 +52988,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.14 +15853,,,,,,,,0, +71751,92.0,10.0,9.0,9.0,10.0,10.0,9.0,84,2.13 +45004,,,,,,,,0, +73800,94.0,10.0,10.0,10.0,10.0,10.0,10.0,31,0.91 +70332,90.0,7.0,8.0,10.0,9.0,9.0,8.0,2,0.05 +53264,93.0,10.0,9.0,10.0,10.0,10.0,9.0,68,2.71 +11394,85.0,10.0,8.0,9.0,10.0,10.0,8.0,4,1.33 +61905,,,,,,,,0, +55700,100.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +66896,20.0,6.0,2.0,2.0,4.0,4.0,2.0,1,0.03 +15686,97.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.15 +21987,93.0,10.0,10.0,10.0,10.0,9.0,9.0,18,0.46 +6366,,,,,,,,0, +48031,79.0,8.0,8.0,9.0,9.0,10.0,7.0,24,0.71 +65917,,,,,,,,2,0.05 +74298,97.0,10.0,10.0,10.0,10.0,9.0,10.0,37,0.91 +8676,97.0,10.0,10.0,10.0,10.0,9.0,10.0,66,1.63 +18244,96.0,10.0,9.0,10.0,10.0,9.0,10.0,36,0.88 +45653,94.0,9.0,10.0,10.0,10.0,9.0,10.0,68,2.0 +22178,93.0,10.0,9.0,10.0,10.0,9.0,10.0,61,1.84 +49458,96.0,10.0,9.0,10.0,10.0,10.0,10.0,70,1.78 +66068,95.0,10.0,10.0,10.0,10.0,9.0,9.0,35,0.89 +4817,92.0,10.0,9.0,9.0,10.0,10.0,9.0,30,0.84 +24231,80.0,9.0,7.0,9.0,10.0,8.0,9.0,6,0.15 +6686,80.0,10.0,10.0,7.0,7.0,8.0,8.0,3,0.07 +72838,87.0,9.0,8.0,9.0,9.0,8.0,9.0,133,3.32 +24730,100.0,10.0,9.0,10.0,10.0,9.0,9.0,3,0.15 +56667,60.0,6.0,10.0,4.0,8.0,6.0,6.0,1,0.02 +13942,97.0,10.0,10.0,10.0,10.0,10.0,9.0,31,0.8 +31108,98.0,10.0,10.0,10.0,10.0,10.0,10.0,26,0.67 +74272,98.0,10.0,10.0,10.0,10.0,10.0,10.0,20,0.66 +65085,85.0,9.0,9.0,9.0,10.0,9.0,9.0,4,0.1 +57963,,,,,,,,0, +56111,90.0,9.0,10.0,10.0,10.0,7.0,9.0,2,0.07 +2186,94.0,10.0,9.0,10.0,10.0,9.0,9.0,28,0.9 +69292,94.0,10.0,9.0,10.0,10.0,10.0,9.0,119,2.97 +19546,,,,,,,,0, +66394,40.0,6.0,4.0,6.0,6.0,10.0,2.0,1,0.06 +4856,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.08 +42119,95.0,10.0,9.0,10.0,10.0,10.0,9.0,4,0.11 +37112,98.0,10.0,10.0,10.0,10.0,9.0,10.0,32,0.79 +65039,98.0,10.0,10.0,10.0,10.0,10.0,10.0,39,1.0 +44814,80.0,9.0,7.0,7.0,9.0,9.0,8.0,10,0.25 +41586,,,,,,,,0, +23045,,,,,,,,0, +37115,,,,,,,,0, +42291,,,,,,,,0, +51606,50.0,6.0,3.0,9.0,9.0,9.0,8.0,2,0.05 +67389,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.06 +75044,80.0,6.0,6.0,10.0,8.0,8.0,8.0,1,0.02 +2334,,,,,,,,0, +64722,94.0,10.0,10.0,10.0,10.0,10.0,9.0,14,0.38 +11243,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.4 +10882,97.0,10.0,10.0,10.0,10.0,9.0,10.0,41,1.01 +61387,88.0,9.0,10.0,10.0,10.0,10.0,10.0,5,0.12 +46497,100.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.83 +3843,93.0,10.0,10.0,9.0,9.0,10.0,10.0,6,0.3 +25122,85.0,8.0,8.0,9.0,9.0,10.0,9.0,16,0.41 +34919,,,,,,,,0, +43156,97.0,10.0,10.0,10.0,10.0,10.0,10.0,39,1.46 +53314,97.0,10.0,10.0,10.0,10.0,10.0,10.0,79,3.2 +21741,96.0,10.0,10.0,10.0,10.0,9.0,10.0,41,1.02 +30236,97.0,10.0,10.0,10.0,10.0,9.0,10.0,15,0.38 +71805,,,,,,,,0, +6252,93.0,10.0,9.0,10.0,10.0,10.0,9.0,27,0.66 +23347,80.0,8.0,6.0,8.0,8.0,10.0,8.0,1,0.04 +3548,98.0,10.0,10.0,10.0,10.0,10.0,10.0,73,1.87 +34958,,,,,,,,0, +3578,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.13 +16394,67.0,9.0,5.0,9.0,9.0,7.0,7.0,3,0.07 +18846,85.0,9.0,7.0,10.0,10.0,10.0,9.0,4,0.1 +67219,80.0,6.0,7.0,7.0,8.0,7.0,7.0,2,0.05 +70983,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.05 +70738,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.13 +65286,91.0,9.0,9.0,10.0,10.0,8.0,9.0,20,0.5 +18480,95.0,9.0,9.0,9.0,9.0,9.0,10.0,19,0.51 +40723,93.0,9.0,9.0,10.0,10.0,9.0,9.0,86,2.15 +68159,98.0,10.0,10.0,10.0,10.0,10.0,10.0,76,1.87 +28033,98.0,10.0,10.0,10.0,10.0,9.0,10.0,63,3.46 +72008,,,,,,,,0, +40898,93.0,9.0,9.0,9.0,9.0,9.0,9.0,13,0.33 +74275,,,,,,,,1,0.02 +12022,,,,,,,,0, +34071,,,,,,,,0, +55320,,,,,,,,0, +5508,93.0,10.0,9.0,10.0,10.0,9.0,10.0,8,0.2 +51541,96.0,10.0,10.0,10.0,10.0,8.0,9.0,10,0.25 +16472,,,,,,,,0, +62790,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +45049,94.0,10.0,9.0,10.0,10.0,9.0,10.0,20,1.64 +12431,,,,,,,,0, +9081,90.0,10.0,10.0,9.0,9.0,9.0,9.0,10,0.26 +58309,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.11 +76576,93.0,9.0,10.0,10.0,10.0,9.0,9.0,10,0.26 +49915,,,,,,,,0, +20520,,,,,,,,0, +43660,95.0,10.0,10.0,10.0,10.0,9.0,10.0,194,4.79 +12738,85.0,8.0,8.0,9.0,9.0,9.0,9.0,49,1.22 +16976,,,,,,,,0, +50304,,,,,,,,0, +9906,60.0,9.0,5.0,10.0,10.0,10.0,2.0,2,0.06 +41322,95.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.1 +45387,98.0,10.0,10.0,10.0,10.0,10.0,10.0,115,2.85 +10719,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +55979,92.0,9.0,9.0,9.0,10.0,10.0,9.0,31,0.79 +21432,,,,,,,,0, +9991,90.0,8.0,10.0,10.0,10.0,9.0,10.0,2,0.05 +57467,80.0,10.0,6.0,8.0,8.0,8.0,8.0,1,0.02 +66808,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.2 +39485,94.0,10.0,9.0,9.0,10.0,10.0,9.0,37,0.92 +8514,56.0,6.0,5.0,10.0,10.0,9.0,6.0,5,0.13 +47350,96.0,10.0,9.0,10.0,10.0,10.0,10.0,19,0.48 +16258,,,,,,,,0, +8570,87.0,9.0,9.0,9.0,9.0,8.0,9.0,45,1.11 +61576,93.0,9.0,9.0,10.0,10.0,10.0,9.0,38,0.94 +43031,99.0,10.0,10.0,10.0,10.0,10.0,10.0,23,0.59 +22708,,,,,,,,0, +65211,100.0,10.0,10.0,9.0,10.0,10.0,10.0,2,0.11 +7817,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.22 +27528,,,,,,,,0, +31101,97.0,9.0,10.0,10.0,10.0,10.0,9.0,22,0.54 +24936,,,,,,,,0, +63652,80.0,10.0,10.0,8.0,,8.0,6.0,1,0.03 +2327,96.0,10.0,10.0,10.0,10.0,10.0,9.0,55,1.39 +56753,,,,,,,,0, +17522,80.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.02 +74108,99.0,10.0,10.0,10.0,10.0,10.0,10.0,192,5.19 +66240,96.0,10.0,10.0,10.0,10.0,10.0,10.0,50,1.25 +71882,100.0,10.0,10.0,10.0,10.0,10.0,8.0,2,0.39 +25277,93.0,10.0,10.0,10.0,9.0,10.0,9.0,3,0.08 +30099,87.0,10.0,10.0,9.0,9.0,10.0,8.0,6,0.16 +65645,95.0,9.0,10.0,9.0,9.0,10.0,9.0,16,0.41 +13502,98.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.35 +51769,98.0,10.0,10.0,10.0,10.0,10.0,10.0,32,0.8 +36972,,,,,,,,0, +73967,93.0,10.0,9.0,10.0,10.0,10.0,10.0,18,0.46 +56280,80.0,8.0,7.0,9.0,7.0,10.0,8.0,6,0.15 +38365,95.0,9.0,10.0,9.0,10.0,10.0,10.0,15,0.38 +49856,,,,,,,,0, +42049,,,,,,,,0, +17293,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.05 +13139,,,,,,,,0, +50379,97.0,10.0,10.0,10.0,10.0,10.0,10.0,57,1.5 +22646,97.0,10.0,10.0,10.0,10.0,10.0,10.0,78,1.96 +13153,93.0,9.0,8.0,9.0,9.0,10.0,10.0,3,0.07 +1859,,,,,,,,0, +5956,100.0,9.0,10.0,9.0,10.0,9.0,10.0,3,0.08 +22534,,,,,,,,0, +69465,,,,,,,,0, +48639,80.0,9.0,7.0,9.0,9.0,8.0,8.0,14,0.35 +8136,,,,,,,,0, +10713,100.0,10.0,10.0,10.0,10.0,9.0,10.0,13,0.44 +70707,,,,,,,,0, +74261,100.0,10.0,10.0,10.0,10.0,10.0,10.0,19,0.49 +74701,100.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.49 +46996,100.0,10.0,9.0,10.0,10.0,9.0,10.0,2,0.05 +35606,95.0,10.0,10.0,10.0,10.0,9.0,10.0,44,1.11 +31695,,,,,,,,0, +63831,93.0,10.0,10.0,10.0,9.0,7.0,9.0,3,0.08 +47886,53.0,6.0,5.0,6.0,7.0,5.0,5.0,3,0.08 +61955,,,,,,,,0, +6521,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.12 +7414,95.0,9.0,10.0,10.0,10.0,10.0,9.0,13,0.32 +74099,80.0,8.0,8.0,8.0,10.0,8.0,8.0,1,0.02 +57186,95.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.12 +23032,86.0,9.0,9.0,9.0,9.0,10.0,9.0,91,2.31 +33209,100.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.16 +70805,,,,,,,,0, +62405,,,,,,,,0, +32348,70.0,9.0,9.0,10.0,10.0,8.0,9.0,2,0.05 +36467,89.0,10.0,9.0,10.0,10.0,9.0,9.0,21,0.54 +28403,98.0,10.0,10.0,10.0,10.0,10.0,9.0,21,0.53 +48157,,,,,,,,0, +65764,95.0,9.0,9.0,9.0,10.0,10.0,10.0,4,0.1 +52930,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.21 +19349,100.0,10.0,10.0,10.0,10.0,10.0,10.0,27,0.77 +9381,,,,,,,,0, +46675,87.0,9.0,9.0,10.0,10.0,10.0,9.0,26,0.65 +10936,100.0,10.0,6.0,10.0,10.0,8.0,10.0,1,0.02 +68527,90.0,10.0,10.0,10.0,10.0,8.0,9.0,2,0.06 +55056,,,,,,,,0, +56866,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +73465,,,,,,,,0, +31130,,,,,,,,0, +66144,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.46 +40593,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.09 +25660,94.0,10.0,9.0,10.0,10.0,9.0,10.0,19,0.47 +62292,,,,,,,,0, +59548,,,,,,,,0, +47411,100.0,9.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +32098,100.0,9.0,8.0,10.0,10.0,9.0,10.0,2,0.05 +24582,,,,,,,,0, +44537,90.0,10.0,9.0,10.0,10.0,8.0,9.0,2,0.05 +70155,98.0,10.0,10.0,10.0,10.0,10.0,10.0,143,3.58 +76943,,,,,,,,0, +64995,97.0,10.0,10.0,10.0,10.0,10.0,10.0,50,1.28 +75604,,,,,,,,0, +37795,60.0,6.0,6.0,8.0,8.0,8.0,8.0,1,0.03 +18645,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.08 +34024,,,,,,,,0, +54305,97.0,10.0,10.0,10.0,10.0,9.0,9.0,35,0.88 +4219,,,,,,,,0, +16797,96.0,10.0,10.0,10.0,10.0,9.0,9.0,11,0.27 +75678,90.0,9.0,8.0,9.0,9.0,9.0,9.0,11,0.27 +4888,,,,,,,,0, +8353,,,,,,,,0, +74187,94.0,10.0,10.0,9.0,9.0,10.0,9.0,28,0.7 +72461,97.0,10.0,10.0,10.0,10.0,9.0,9.0,14,0.35 +38959,,,,,,,,0, +2403,88.0,9.0,9.0,9.0,9.0,9.0,9.0,14,0.5 +53700,60.0,7.0,10.0,8.0,6.0,9.0,9.0,2,0.07 +41301,89.0,9.0,9.0,10.0,9.0,9.0,9.0,17,0.59 +68676,93.0,9.0,9.0,9.0,9.0,9.0,10.0,3,0.08 +26952,,,,,,,,0, +54829,98.0,10.0,9.0,10.0,10.0,10.0,10.0,9,0.6 +37150,,,,,,,,0, +34892,,,,,,,,0, +31467,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +47848,87.0,9.0,9.0,9.0,10.0,10.0,9.0,9,1.9 +35714,,,,,,,,0, +25716,95.0,10.0,10.0,10.0,10.0,10.0,10.0,48,1.2 +13334,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.36 +69452,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +35411,,,,,,,,0, +33642,90.0,8.0,7.0,9.0,9.0,10.0,8.0,4,0.1 +1337,,,,,,,,0, +67465,,,,,,,,0, +40590,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.02 +29099,,,,,,,,0, +33379,,,,,,,,0, +60162,100.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.47 +31603,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.19 +28210,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.1 +43725,,,,,,,,0, +17072,,,,,,,,0, +32822,96.0,10.0,9.0,10.0,10.0,10.0,10.0,17,0.43 +3407,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.18 +72999,60.0,10.0,10.0,6.0,10.0,4.0,8.0,2,0.06 +30319,91.0,10.0,10.0,10.0,9.0,10.0,9.0,15,0.39 +25033,93.0,10.0,9.0,10.0,10.0,10.0,9.0,8,0.21 +16678,,,,,,,,0, +9462,80.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.12 +28927,90.0,10.0,9.0,10.0,10.0,10.0,9.0,3,0.07 +43902,100.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.15 +21507,98.0,10.0,10.0,10.0,10.0,10.0,9.0,34,0.85 +54999,89.0,9.0,9.0,10.0,10.0,9.0,9.0,20,0.5 +50111,20.0,2.0,2.0,2.0,2.0,2.0,2.0,2,0.05 +77,79.0,8.0,8.0,8.0,9.0,7.0,8.0,43,1.07 +29075,,,,,,,,0, +14901,,,,,,,,0, +77067,,,,,,,,0, +2908,90.0,9.0,9.0,10.0,10.0,10.0,9.0,46,1.16 +3636,91.0,9.0,10.0,9.0,9.0,10.0,9.0,74,1.83 +72243,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.1 +58272,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +71915,100.0,10.0,10.0,10.0,10.0,9.0,10.0,10,0.25 +25187,85.0,9.0,10.0,8.0,9.0,10.0,9.0,18,2.44 +29813,,,,,,,,0, +59442,,,,,,,,0, +51259,,,,,,,,0, +32457,,,,,,,,0, +5041,,,,,,,,0, +30729,,,,,,,,0, +547,,,,,,,,0, +76774,98.0,10.0,10.0,10.0,10.0,10.0,10.0,32,0.8 +42686,99.0,10.0,10.0,10.0,10.0,9.0,9.0,18,0.47 +44752,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.16 +26824,,,,,,,,0, +3839,94.0,10.0,10.0,10.0,10.0,10.0,9.0,76,1.89 +68251,99.0,10.0,10.0,10.0,10.0,9.0,10.0,61,1.52 +23386,95.0,10.0,9.0,10.0,10.0,10.0,9.0,32,0.84 +61033,73.0,9.0,7.0,9.0,9.0,9.0,9.0,3,0.08 +66669,60.0,6.0,4.0,10.0,10.0,8.0,6.0,1,0.02 +69282,,,,,,,,0, +3575,87.0,9.0,9.0,10.0,10.0,9.0,9.0,135,3.41 +22932,96.0,10.0,10.0,9.0,10.0,9.0,10.0,27,0.67 +39753,95.0,10.0,9.0,10.0,10.0,9.0,9.0,117,2.93 +44959,91.0,9.0,9.0,10.0,10.0,9.0,9.0,26,0.64 +51449,99.0,10.0,10.0,10.0,10.0,10.0,10.0,42,1.06 +61222,99.0,10.0,10.0,10.0,10.0,10.0,10.0,41,1.05 +22871,98.0,10.0,10.0,10.0,10.0,9.0,10.0,9,0.23 +45194,73.0,7.0,8.0,8.0,8.0,8.0,8.0,37,0.92 +22074,,,,,,,,0, +68855,96.0,10.0,10.0,10.0,10.0,10.0,9.0,20,0.5 +526,,,,,,,,0, +42173,,,,,,,,0, +9010,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.23 +38021,,,,,,,,0, +48071,,,,,,,,0, +48781,96.0,9.0,10.0,10.0,10.0,10.0,10.0,6,0.15 +57280,91.0,9.0,9.0,9.0,10.0,9.0,9.0,16,0.4 +1047,92.0,9.0,9.0,10.0,10.0,9.0,9.0,58,1.49 +41686,,,,,,,,0, +26064,98.0,10.0,10.0,10.0,10.0,9.0,10.0,271,6.7 +52358,98.0,10.0,10.0,10.0,10.0,9.0,10.0,24,0.6 +44490,95.0,10.0,9.0,10.0,10.0,10.0,10.0,8,0.21 +5195,,,,,,,,0, +3773,94.0,10.0,9.0,10.0,10.0,9.0,9.0,16,0.41 +60424,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.03 +48247,100.0,8.0,10.0,10.0,10.0,10.0,10.0,2,0.06 +21367,100.0,10.0,9.0,10.0,10.0,10.0,8.0,2,0.05 +16407,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.14 +15250,93.0,9.0,9.0,10.0,10.0,10.0,9.0,20,0.5 +32894,,,,,,,,0, +6078,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +74586,60.0,10.0,2.0,10.0,10.0,10.0,6.0,1,0.03 +28940,,,,,,,,0, +17456,,,,,,,,0, +21555,,,,,,,,0, +37031,80.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.05 +67211,80.0,10.0,8.0,10.0,10.0,8.0,10.0,1,0.03 +7659,,,,,,,,0, +32084,97.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.37 +71629,91.0,10.0,9.0,10.0,9.0,10.0,9.0,22,0.57 +70496,,,,,,,,0, +59968,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +76075,96.0,10.0,10.0,10.0,10.0,10.0,10.0,25,0.64 +31891,,,,,,,,0, +24121,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.07 +71996,93.0,10.0,10.0,9.0,9.0,9.0,8.0,9,0.22 +13542,79.0,8.0,8.0,9.0,9.0,8.0,8.0,79,1.96 +38101,,,,,,,,0, +69818,,,,,,,,0, +54472,98.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.29 +42089,90.0,10.0,9.0,10.0,10.0,9.0,9.0,10,0.33 +4478,,,,,,,,0, +1577,91.0,9.0,9.0,10.0,10.0,10.0,9.0,13,0.34 +40093,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.34 +69874,89.0,9.0,9.0,10.0,10.0,9.0,8.0,11,0.27 +66959,93.0,9.0,9.0,10.0,10.0,10.0,9.0,3,0.08 +70131,,,,,,,,0, +54349,100.0,10.0,10.0,9.0,10.0,9.0,9.0,3,0.08 +11422,100.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.13 +2026,91.0,9.0,9.0,10.0,10.0,9.0,9.0,35,1.01 +75319,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.15 +38705,,,,,,,,0, +62825,97.0,10.0,10.0,10.0,10.0,10.0,10.0,43,1.1 +28368,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.15 +24244,,,,,,,,0, +49562,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.07 +57993,,,,,,,,0, +39236,98.0,10.0,10.0,10.0,10.0,9.0,10.0,41,1.03 +66775,,,,,,,,0, +42752,,,,,,,,0, +75414,,,,,,,,0, +20185,87.0,9.0,9.0,9.0,9.0,9.0,8.0,12,0.33 +4738,92.0,10.0,10.0,10.0,10.0,9.0,10.0,13,0.33 +49432,93.0,10.0,10.0,10.0,10.0,9.0,9.0,6,0.16 +15970,97.0,10.0,10.0,10.0,10.0,9.0,10.0,48,1.22 +42179,96.0,10.0,10.0,9.0,10.0,10.0,10.0,9,0.22 +35506,100.0,10.0,8.0,10.0,10.0,10.0,10.0,3,0.53 +15556,96.0,10.0,9.0,10.0,10.0,8.0,10.0,10,0.25 +53197,94.0,9.0,10.0,10.0,9.0,10.0,9.0,14,0.36 +51235,100.0,10.0,10.0,10.0,10.0,9.0,9.0,4,0.14 +40872,97.0,10.0,10.0,10.0,10.0,10.0,10.0,132,3.33 +37185,,,,,,,,0, +73513,,,,,,,,0, +26929,,,,,,,,3,0.07 +76739,,,,,,,,0, +23487,100.0,10.0,10.0,9.0,9.0,9.0,10.0,7,0.18 +32531,93.0,10.0,9.0,10.0,10.0,9.0,9.0,3,0.08 +54160,80.0,7.0,8.0,8.0,10.0,9.0,9.0,3,0.08 +69753,97.0,10.0,9.0,10.0,10.0,9.0,9.0,6,0.18 +4330,,,,,,,,0, +34623,99.0,10.0,10.0,10.0,10.0,10.0,10.0,49,1.26 +40470,96.0,10.0,10.0,10.0,10.0,9.0,10.0,57,1.43 +39793,91.0,10.0,8.0,10.0,10.0,9.0,9.0,41,1.03 +4628,95.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.14 +34708,94.0,10.0,10.0,10.0,10.0,9.0,9.0,20,0.5 +24572,,,,,,,,0, +31629,88.0,9.0,8.0,9.0,9.0,10.0,9.0,30,0.74 +50811,100.0,,,,10.0,10.0,10.0,1,0.03 +7714,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.07 +38782,100.0,10.0,6.0,10.0,10.0,10.0,10.0,1,0.03 +7004,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +3844,86.0,9.0,9.0,10.0,10.0,10.0,9.0,30,0.82 +553,86.0,9.0,8.0,10.0,9.0,9.0,9.0,14,0.35 +2922,80.0,9.0,7.0,10.0,10.0,9.0,9.0,3,0.07 +49822,89.0,10.0,9.0,10.0,10.0,10.0,9.0,15,0.42 +7505,,,,,,,,0, +41235,80.0,10.0,10.0,10.0,9.0,9.0,9.0,3,0.1 +23397,97.0,9.0,9.0,10.0,10.0,10.0,10.0,6,0.15 +63567,95.0,10.0,10.0,10.0,10.0,10.0,10.0,12,1.61 +75673,,,,,,,,0, +10295,80.0,9.0,8.0,10.0,10.0,9.0,8.0,57,3.59 +16061,83.0,9.0,8.0,9.0,10.0,10.0,9.0,38,2.51 +62078,83.0,9.0,9.0,9.0,9.0,9.0,9.0,66,4.09 +58112,92.0,9.0,9.0,10.0,10.0,9.0,9.0,32,0.84 +5293,98.0,10.0,10.0,10.0,10.0,10.0,10.0,51,1.26 +41097,,,,,,,,1,0.03 +55115,100.0,10.0,6.0,10.0,10.0,10.0,10.0,1,0.03 +21775,91.0,9.0,9.0,10.0,10.0,10.0,9.0,19,0.49 +28308,96.0,10.0,10.0,10.0,10.0,10.0,9.0,120,2.97 +57213,97.0,10.0,10.0,10.0,10.0,9.0,10.0,34,0.86 +26215,96.0,10.0,10.0,10.0,10.0,10.0,10.0,36,0.93 +55760,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +43360,,,,,,,,1,0.07 +12381,,,,,,,,0, +67682,,,,,,,,0, +51980,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.11 +43078,96.0,10.0,10.0,10.0,10.0,9.0,10.0,11,0.28 +44128,,,,,,,,0, +743,97.0,10.0,10.0,10.0,10.0,9.0,10.0,121,3.11 +59127,92.0,9.0,9.0,9.0,10.0,10.0,10.0,6,0.15 +55534,,,,,,,,0, +75559,,,,,,,,0, +70737,97.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.37 +49056,90.0,9.0,9.0,10.0,10.0,9.0,9.0,11,0.37 +49887,,,,,,,,0, +19389,,,,,,,,0, +21774,98.0,10.0,10.0,10.0,10.0,9.0,10.0,25,0.83 +43514,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.12 +16453,92.0,10.0,10.0,10.0,9.0,9.0,9.0,5,0.14 +48810,92.0,9.0,10.0,9.0,9.0,10.0,9.0,19,0.48 +43933,,,,,,,,0, +65666,91.0,9.0,9.0,9.0,9.0,10.0,9.0,59,1.47 +23242,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.06 +74554,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.03 +38277,,,,,,,,0, +65419,96.0,10.0,10.0,10.0,10.0,9.0,9.0,14,0.36 +21718,,,,,,,,0, +14880,,,,,,,,0, +31003,80.0,9.0,6.0,10.0,9.0,9.0,8.0,8,0.26 +35250,98.0,10.0,10.0,10.0,10.0,10.0,10.0,141,3.57 +63500,87.0,8.0,9.0,10.0,10.0,10.0,8.0,75,1.87 +18744,,,,,,,,0, +7873,100.0,10.0,10.0,10.0,10.0,9.0,9.0,7,0.2 +73934,90.0,9.0,9.0,10.0,9.0,9.0,8.0,2,0.05 +1644,,,,,,,,0, +53372,,,,,,,,0, +3246,,,,,,,,0, +68510,97.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.36 +67989,98.0,10.0,10.0,10.0,10.0,10.0,10.0,32,0.8 +68324,,,,,,,,0, +51218,97.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.37 +11798,90.0,10.0,8.0,10.0,10.0,9.0,9.0,7,0.22 +73011,,,,,,,,0, +55853,98.0,10.0,10.0,10.0,10.0,9.0,9.0,8,0.21 +13797,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.03 +11861,99.0,10.0,10.0,10.0,10.0,10.0,9.0,16,0.45 +53203,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +71764,,,,,,,,0, +14618,89.0,9.0,9.0,9.0,10.0,10.0,9.0,35,1.11 +33955,,,,,,,,0, +55348,90.0,9.0,8.0,9.0,9.0,9.0,8.0,4,0.1 +75442,97.0,10.0,9.0,10.0,10.0,10.0,9.0,18,0.45 +3656,99.0,10.0,10.0,10.0,10.0,10.0,10.0,20,0.5 +35130,,,,,,,,0, +14995,93.0,9.0,8.0,10.0,10.0,8.0,9.0,6,0.35 +58941,95.0,10.0,9.0,10.0,10.0,10.0,9.0,25,0.64 +68835,83.0,9.0,8.0,9.0,10.0,8.0,9.0,180,4.47 +45237,79.0,8.0,9.0,8.0,8.0,9.0,8.0,16,0.43 +31541,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.08 +19651,98.0,10.0,10.0,10.0,10.0,10.0,10.0,59,1.51 +21048,95.0,10.0,10.0,10.0,10.0,10.0,9.0,41,1.05 +69008,,,,,,,,0, +21151,,,,,,,,0, +62177,98.0,10.0,10.0,10.0,10.0,10.0,10.0,38,1.0 +52299,80.0,8.0,10.0,10.0,10.0,8.0,8.0,3,0.08 +74857,,,,,,,,0, +12612,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +14680,99.0,10.0,10.0,10.0,10.0,9.0,10.0,16,0.4 +61315,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.14 +29805,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.16 +2826,100.0,10.0,10.0,9.0,9.0,10.0,10.0,2,0.08 +75337,95.0,10.0,10.0,10.0,10.0,10.0,9.0,93,2.32 +76480,,,,,,,,0, +22343,96.0,9.0,9.0,10.0,9.0,10.0,9.0,17,0.51 +40756,97.0,10.0,10.0,10.0,10.0,9.0,10.0,260,6.5 +1439,,,,,,,,0, +34352,99.0,10.0,10.0,10.0,10.0,10.0,10.0,69,1.71 +47170,95.0,10.0,9.0,10.0,10.0,10.0,10.0,28,0.85 +19489,99.0,10.0,10.0,10.0,10.0,10.0,10.0,110,2.78 +24220,100.0,8.0,6.0,10.0,10.0,10.0,8.0,1,0.03 +32641,93.0,10.0,9.0,10.0,10.0,10.0,9.0,72,2.02 +4658,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +76688,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +5598,,,,,,,,0, +20880,80.0,9.0,7.0,9.0,9.0,8.0,10.0,2,0.05 +41696,,,,,,,,1,0.03 +14486,87.0,9.0,9.0,10.0,9.0,9.0,8.0,3,0.08 +67063,96.0,10.0,10.0,10.0,10.0,10.0,9.0,28,1.51 +37545,95.0,10.0,10.0,10.0,10.0,10.0,9.0,78,2.13 +50675,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.04 +32508,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +26417,,,,,,,,0, +63770,97.0,10.0,10.0,10.0,10.0,9.0,10.0,15,0.38 +27177,92.0,10.0,9.0,9.0,10.0,8.0,9.0,70,1.75 +50488,100.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.1 +53541,96.0,10.0,10.0,10.0,10.0,9.0,9.0,10,0.25 +3373,80.0,10.0,8.0,10.0,10.0,8.0,8.0,1,0.04 +36713,100.0,8.0,10.0,10.0,10.0,8.0,10.0,1,0.03 +18968,96.0,10.0,10.0,10.0,10.0,9.0,10.0,128,3.18 +39493,40.0,4.0,2.0,10.0,10.0,4.0,2.0,1,0.03 +54311,,,,,,,,0, +10731,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +44725,,,,,,,,0, +58099,94.0,10.0,9.0,10.0,10.0,9.0,9.0,67,1.78 +16377,98.0,10.0,10.0,10.0,10.0,10.0,10.0,26,5.13 +50927,,,,,,,,0, +11384,96.0,10.0,10.0,10.0,10.0,9.0,10.0,23,0.61 +54347,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +3672,95.0,10.0,9.0,10.0,10.0,9.0,9.0,102,2.6 +75377,,,,,,,,0, +23622,,,,,,,,0, +64897,100.0,10.0,10.0,10.0,10.0,10.0,9.0,9,0.33 +48047,100.0,10.0,8.0,8.0,10.0,10.0,10.0,2,0.05 +4715,96.0,10.0,10.0,10.0,10.0,10.0,10.0,51,1.29 +62730,91.0,10.0,10.0,10.0,10.0,10.0,9.0,13,0.34 +43570,,,,,,,,0, +74767,80.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.05 +66333,98.0,10.0,10.0,10.0,10.0,10.0,9.0,50,1.25 +52419,90.0,9.0,9.0,10.0,10.0,10.0,9.0,32,0.79 +56404,40.0,6.0,2.0,10.0,8.0,8.0,4.0,1,0.03 +68558,50.0,5.0,5.0,6.0,7.0,9.0,4.0,2,0.05 +57587,100.0,9.0,10.0,10.0,10.0,10.0,9.0,3,0.08 +43594,,,,,,,,0, +14922,93.0,10.0,9.0,10.0,10.0,9.0,9.0,63,1.59 +37310,,,,,,,,0, +42339,100.0,10.0,10.0,9.0,10.0,9.0,9.0,6,0.21 +1821,,,,,,,,0, +28841,86.0,9.0,8.0,10.0,10.0,8.0,8.0,10,0.32 +18766,,,,,,,,0, +35780,95.0,9.0,10.0,10.0,10.0,10.0,10.0,22,0.56 +11249,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +28170,90.0,10.0,10.0,9.0,10.0,10.0,10.0,2,0.05 +41682,,,,,,,,0, +44459,80.0,8.0,6.0,8.0,8.0,8.0,8.0,1,0.03 +23477,92.0,9.0,9.0,10.0,10.0,9.0,9.0,63,1.56 +73043,,,,,,,,0, +65455,,,,,,,,0, +62985,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.17 +18198,,,,,,,,0, +64561,97.0,9.0,10.0,9.0,10.0,9.0,10.0,6,0.16 +21335,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.07 +38773,80.0,10.0,10.0,10.0,10.0,10.0,8.0,2,0.05 +60140,100.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.56 +11955,90.0,10.0,9.0,10.0,10.0,10.0,10.0,8,0.27 +60279,100.0,10.0,10.0,10.0,10.0,9.0,10.0,27,0.94 +9066,,,,,,,,0, +69113,,,,,,,,0, +22170,88.0,10.0,7.0,9.0,10.0,9.0,9.0,6,0.16 +17181,,,,,,,,0, +65492,,,,,,,,1,0.03 +43455,100.0,10.0,9.0,10.0,10.0,10.0,9.0,3,0.07 +30996,92.0,10.0,10.0,10.0,10.0,10.0,9.0,89,2.31 +11278,,,,,,,,0, +46332,85.0,9.0,9.0,8.0,9.0,10.0,9.0,4,0.1 +30655,,,,,,,,0, +73814,55.0,7.0,7.0,7.0,7.0,9.0,6.0,4,0.18 +6194,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +67182,,,,,,,,0, +32494,,,,,,,,0, +11575,97.0,10.0,10.0,9.0,10.0,10.0,10.0,7,0.17 +17635,,,,,,,,0, +65888,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.22 +53206,100.0,10.0,8.0,10.0,10.0,8.0,10.0,1,0.03 +26098,100.0,10.0,10.0,10.0,10.0,10.0,10.0,41,1.35 +52513,97.0,10.0,10.0,10.0,10.0,10.0,10.0,35,0.89 +9359,97.0,10.0,10.0,10.0,10.0,10.0,9.0,52,1.4 +24904,100.0,10.0,10.0,10.0,10.0,9.0,10.0,11,0.94 +15794,,,,,,,,0, +49171,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +63775,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.26 +45113,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.43 +28377,90.0,9.0,9.0,10.0,10.0,10.0,9.0,69,1.72 +29642,75.0,8.0,7.0,9.0,9.0,8.0,7.0,15,0.37 +64384,95.0,9.0,9.0,10.0,10.0,9.0,10.0,22,0.57 +24135,96.0,10.0,10.0,10.0,10.0,10.0,9.0,114,2.85 +66616,100.0,,,,10.0,10.0,10.0,1,0.03 +8044,,,,,,,,1,0.03 +24749,,,,,,,,0, +65591,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.11 +35776,98.0,10.0,10.0,10.0,10.0,9.0,10.0,26,0.7 +14493,90.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.1 +19990,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.02 +37166,83.0,9.0,8.0,8.0,9.0,9.0,8.0,13,2.32 +54960,97.0,10.0,10.0,10.0,10.0,10.0,10.0,39,1.03 +74284,,,,,,,,0, +67477,99.0,10.0,10.0,10.0,10.0,10.0,10.0,32,1.22 +5740,88.0,9.0,8.0,10.0,10.0,9.0,8.0,10,0.29 +10577,93.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.78 +29425,88.0,9.0,8.0,10.0,10.0,10.0,9.0,78,1.97 +66247,80.0,10.0,8.0,10.0,8.0,10.0,8.0,1,0.03 +21984,90.0,9.0,9.0,10.0,10.0,9.0,8.0,12,0.3 +4080,80.0,8.0,6.0,10.0,6.0,10.0,8.0,1,0.03 +4946,,,,,,,,0, +48815,97.0,10.0,10.0,10.0,10.0,10.0,9.0,7,0.19 +35076,,,,,,,,1,0.03 +61822,96.0,10.0,10.0,10.0,10.0,9.0,9.0,11,0.28 +69590,100.0,9.0,9.0,9.0,10.0,10.0,9.0,3,3.0 +46273,93.0,9.0,8.0,10.0,10.0,10.0,9.0,14,0.35 +5798,,,,,,,,0, +4066,,,,,,,,0, +35281,90.0,9.0,8.0,10.0,10.0,10.0,9.0,7,0.18 +35458,99.0,10.0,10.0,10.0,10.0,10.0,10.0,106,2.7 +41027,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +1416,75.0,8.0,7.0,10.0,10.0,10.0,7.0,4,0.1 +43131,,,,,,,,0, +69232,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.08 +29389,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +45393,,,,,,,,0, +53861,100.0,10.0,10.0,9.0,10.0,10.0,10.0,2,0.19 +39636,94.0,10.0,10.0,10.0,10.0,10.0,9.0,45,1.14 +39291,95.0,10.0,10.0,10.0,10.0,9.0,9.0,44,1.12 +58170,93.0,10.0,9.0,10.0,10.0,9.0,10.0,9,0.23 +7980,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.15 +71868,,,,,,,,0, +31533,100.0,10.0,10.0,10.0,10.0,10.0,10.0,26,0.65 +75488,91.0,9.0,9.0,10.0,9.0,9.0,9.0,25,0.63 +22568,,,,,,,,0, +24006,96.0,9.0,10.0,10.0,10.0,9.0,10.0,20,0.59 +24796,95.0,10.0,10.0,10.0,10.0,10.0,10.0,50,1.25 +37070,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.12 +69211,93.0,10.0,10.0,10.0,10.0,9.0,9.0,119,2.97 +3411,92.0,9.0,10.0,10.0,10.0,10.0,9.0,116,3.04 +30072,100.0,9.0,9.0,10.0,10.0,10.0,10.0,2,0.06 +44527,,,,,,,,0, +11194,100.0,10.0,10.0,,10.0,,,1,0.06 +11161,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.25 +13242,88.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.14 +35627,,,,,,,,0, +23107,96.0,9.0,9.0,10.0,10.0,10.0,9.0,5,0.13 +59128,70.0,6.0,6.0,10.0,10.0,9.0,6.0,2,0.05 +8553,,,,,,,,0, +5581,98.0,10.0,10.0,10.0,9.0,10.0,9.0,9,0.24 +69743,,,,,,,,0, +10813,100.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.43 +21030,87.0,9.0,9.0,10.0,10.0,8.0,9.0,99,2.54 +55637,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.43 +14692,,,,,,,,0, +72785,80.0,9.0,8.0,9.0,9.0,9.0,8.0,15,0.38 +60325,96.0,10.0,10.0,10.0,10.0,10.0,10.0,162,4.02 +7048,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,4.0 +2503,93.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.13 +22942,97.0,10.0,10.0,10.0,10.0,10.0,10.0,106,2.66 +38631,80.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +45922,98.0,10.0,10.0,10.0,10.0,10.0,9.0,24,0.62 +38218,92.0,10.0,9.0,10.0,10.0,9.0,9.0,5,0.28 +39385,,,,,,,,1,0.03 +12198,,,,,,,,0, +52361,91.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.21 +64313,91.0,9.0,8.0,10.0,10.0,9.0,9.0,104,2.67 +44554,92.0,9.0,9.0,9.0,9.0,10.0,9.0,154,3.89 +51717,86.0,9.0,9.0,9.0,9.0,10.0,9.0,130,3.33 +33965,97.0,10.0,9.0,10.0,10.0,10.0,10.0,6,0.15 +72976,100.0,9.0,9.0,10.0,10.0,10.0,10.0,3,0.07 +76936,87.0,9.0,9.0,10.0,10.0,8.0,9.0,17,0.43 +76238,95.0,9.0,10.0,10.0,10.0,10.0,10.0,11,0.28 +63327,98.0,10.0,9.0,10.0,10.0,9.0,9.0,13,0.37 +35692,90.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.07 +74577,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +71284,,,,,,,,0, +64222,,,,,,,,0, +72578,74.0,7.0,7.0,10.0,10.0,10.0,9.0,7,0.18 +64576,97.0,10.0,10.0,10.0,10.0,9.0,9.0,28,0.72 +8745,80.0,8.0,8.0,10.0,10.0,10.0,10.0,1,0.02 +76728,89.0,9.0,8.0,10.0,9.0,8.0,9.0,37,0.93 +1553,,,,,,,,0, +44486,90.0,10.0,10.0,8.0,10.0,9.0,10.0,2,0.07 +53153,93.0,10.0,10.0,10.0,10.0,9.0,8.0,3,0.08 +52008,95.0,10.0,10.0,10.0,10.0,10.0,10.0,138,3.47 +36375,90.0,9.0,10.0,10.0,10.0,9.0,9.0,4,0.13 +49452,94.0,9.0,10.0,10.0,10.0,10.0,9.0,160,3.98 +28793,,,,,,,,0, +32990,89.0,9.0,9.0,9.0,10.0,9.0,9.0,86,2.16 +68141,96.0,10.0,9.0,10.0,10.0,10.0,9.0,14,0.36 +26416,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +50677,90.0,8.0,8.0,10.0,10.0,9.0,8.0,2,0.05 +1545,,,,,,,,0, +6688,,,,,,,,0, +66184,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.11 +32695,92.0,9.0,9.0,10.0,10.0,10.0,9.0,68,1.72 +5415,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.03 +31114,,,,,,,,1,0.03 +25364,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.4 +50915,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +30250,90.0,10.0,9.0,8.0,8.0,9.0,9.0,2,0.05 +12027,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.12 +60172,,,,,,,,0, +76316,98.0,10.0,10.0,10.0,10.0,10.0,10.0,25,0.63 +12292,,,,,,,,0, +1430,89.0,9.0,9.0,9.0,9.0,10.0,9.0,85,2.14 +21287,,,,,,,,0, +32246,100.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.03 +30811,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.1 +7166,95.0,10.0,10.0,10.0,10.0,9.0,9.0,9,0.23 +36492,95.0,10.0,9.0,10.0,10.0,10.0,9.0,42,1.15 +1212,,,,,,,,0, +8235,90.0,10.0,9.0,10.0,10.0,10.0,9.0,5,0.17 +28553,89.0,9.0,10.0,10.0,10.0,9.0,9.0,11,0.28 +14375,97.0,10.0,10.0,10.0,10.0,10.0,10.0,41,1.03 +33311,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +24779,90.0,9.0,9.0,9.0,9.0,8.0,8.0,2,0.05 +40488,96.0,9.0,9.0,10.0,10.0,10.0,9.0,20,0.51 +6816,92.0,9.0,9.0,10.0,10.0,9.0,10.0,18,0.45 +56174,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.1 +33952,,,,,,,,0, +59137,100.0,10.0,9.0,10.0,10.0,10.0,9.0,8,0.32 +52487,94.0,10.0,10.0,10.0,10.0,10.0,10.0,42,1.07 +41883,98.0,10.0,10.0,10.0,10.0,10.0,10.0,22,0.56 +41172,82.0,9.0,8.0,9.0,10.0,9.0,9.0,108,2.72 +68331,89.0,9.0,9.0,9.0,10.0,8.0,9.0,71,1.81 +57648,95.0,10.0,10.0,10.0,10.0,10.0,9.0,31,0.79 +77020,92.0,9.0,9.0,9.0,10.0,9.0,9.0,5,0.19 +66268,,,,,,,,1,0.03 +71705,92.0,10.0,9.0,10.0,10.0,10.0,9.0,42,1.12 +5974,,,,,,,,0, +17767,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.1 +28301,98.0,10.0,10.0,10.0,10.0,9.0,10.0,73,2.78 +17572,,,,,,,,1, +26941,100.0,10.0,8.0,8.0,10.0,10.0,8.0,1,0.03 +23135,90.0,10.0,10.0,10.0,10.0,9.0,9.0,2,0.05 +37665,98.0,10.0,9.0,10.0,10.0,10.0,10.0,9,3.25 +32159,,,,,,,,0, +75508,99.0,10.0,10.0,10.0,10.0,10.0,10.0,61,1.66 +46705,96.0,10.0,9.0,10.0,10.0,9.0,9.0,19,0.48 +75112,,,,,,,,0, +34496,,,,,,,,0, +27840,,,,,,,,0, +76201,,,,,,,,0, +42771,,,,,,,,0, +35118,,,,,,,,0, +23670,96.0,10.0,10.0,10.0,10.0,10.0,10.0,37,0.93 +73308,93.0,10.0,10.0,10.0,10.0,10.0,10.0,42,1.09 +76331,96.0,10.0,9.0,10.0,10.0,10.0,10.0,10,0.38 +38570,98.0,10.0,10.0,10.0,10.0,9.0,10.0,49,1.24 +1044,98.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.36 +51802,98.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.43 +7832,,,,,,,,0, +50395,100.0,10.0,6.0,10.0,10.0,10.0,10.0,1,0.03 +12577,97.0,10.0,9.0,10.0,10.0,10.0,9.0,7,0.18 +995,96.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.48 +13374,95.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.1 +56417,93.0,9.0,9.0,10.0,10.0,10.0,9.0,47,1.18 +70476,,,,,,,,1,0.03 +47067,,,,,,,,0, +1632,90.0,10.0,9.0,9.0,10.0,9.0,9.0,29,0.81 +18293,85.0,9.0,8.0,10.0,10.0,10.0,9.0,4,0.1 +18982,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.43 +50917,95.0,10.0,10.0,10.0,10.0,9.0,10.0,13,6.19 +65997,91.0,9.0,9.0,9.0,9.0,10.0,9.0,32,0.82 +13355,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +47510,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +2577,70.0,10.0,10.0,9.0,7.0,10.0,9.0,2,0.08 +76875,,,,,,,,0, +19600,98.0,10.0,10.0,10.0,10.0,9.0,10.0,11,0.29 +60011,,,,,,,,0, +45408,95.0,10.0,9.0,10.0,10.0,10.0,9.0,39,1.02 +38313,92.0,9.0,9.0,10.0,10.0,10.0,9.0,10,0.26 +39743,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.1 +32109,91.0,10.0,9.0,10.0,10.0,9.0,9.0,50,1.28 +41575,80.0,6.0,10.0,10.0,10.0,8.0,10.0,1,0.03 +44738,,,,,,,,0, +75428,99.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.43 +61790,,,,,,,,0, +56497,97.0,10.0,9.0,10.0,10.0,9.0,10.0,23,0.61 +37726,,,,,,,,0, +43920,,,,,,,,0, +64571,95.0,10.0,10.0,10.0,10.0,10.0,8.0,4,0.75 +20838,88.0,9.0,8.0,9.0,9.0,9.0,9.0,35,1.78 +37933,,,,,,,,0, +38522,96.0,10.0,9.0,10.0,10.0,10.0,10.0,10,0.25 +52939,98.0,10.0,10.0,10.0,10.0,9.0,9.0,11,0.3 +33051,90.0,9.0,9.0,10.0,10.0,9.0,9.0,6,0.16 +61345,,,,,,,,0, +6384,,,,,,,,0, +71918,91.0,9.0,10.0,9.0,10.0,10.0,9.0,117,2.94 +31769,90.0,9.0,7.0,9.0,9.0,10.0,9.0,2,0.05 +59019,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.34 +21882,100.0,10.0,6.0,10.0,10.0,10.0,9.0,2,0.07 +73326,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +62376,95.0,10.0,9.0,10.0,10.0,10.0,9.0,43,1.11 +33877,,,,,,,,0, +22681,,,,,,,,0, +3794,,,,,,,,0, +32342,96.0,10.0,10.0,10.0,10.0,10.0,9.0,10,0.33 +31122,,,,,,,,0, +26385,93.0,10.0,9.0,10.0,10.0,9.0,9.0,3,0.08 +29472,97.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.37 +37091,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.08 +21999,95.0,10.0,10.0,10.0,10.0,10.0,9.0,54,1.38 +44904,,,,,,,,0, +5175,85.0,9.0,8.0,9.0,9.0,8.0,9.0,76,1.91 +5983,94.0,10.0,10.0,9.0,9.0,9.0,9.0,7,0.37 +65557,94.0,10.0,10.0,10.0,10.0,8.0,10.0,19,0.5 +27324,90.0,9.0,9.0,10.0,8.0,8.0,9.0,2,0.05 +69708,,,,,,,,2,0.05 +60790,85.0,9.0,8.0,9.0,9.0,10.0,8.0,45,1.15 +65128,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.39 +19676,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.1 +10981,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.97 +72260,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.15 +48900,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,2.35 +62416,95.0,10.0,10.0,10.0,10.0,10.0,10.0,32,0.81 +55851,,,,,,,,0, +48865,96.0,10.0,10.0,10.0,10.0,10.0,10.0,114,2.86 +50681,,,,,,,,0, +71410,93.0,9.0,9.0,9.0,10.0,10.0,9.0,3,0.68 +21710,80.0,8.0,9.0,9.0,8.0,7.0,8.0,5,0.13 +19573,,,,,,,,0, +2592,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.6 +12157,96.0,10.0,9.0,10.0,10.0,9.0,10.0,58,1.46 +43121,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.13 +75083,,,,,,,,0, +8504,93.0,9.0,9.0,9.0,9.0,9.0,9.0,14,0.36 +72965,96.0,9.0,10.0,10.0,10.0,9.0,9.0,17,0.55 +22653,94.0,10.0,10.0,10.0,10.0,10.0,9.0,97,2.48 +32748,99.0,10.0,10.0,10.0,10.0,10.0,10.0,57,1.46 +56244,,,,,,,,0, +24704,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.11 +19948,,,,,,,,0, +65697,,,,,,,,0, +30288,100.0,10.0,10.0,10.0,10.0,9.0,10.0,22,0.57 +20346,98.0,10.0,10.0,10.0,10.0,9.0,10.0,17,0.43 +24916,99.0,10.0,10.0,10.0,10.0,10.0,10.0,39,1.94 +59819,83.0,9.0,9.0,8.0,8.0,6.0,8.0,7,0.17 +62346,60.0,6.0,5.0,9.0,7.0,10.0,6.0,3,0.08 +58857,97.0,10.0,10.0,10.0,10.0,9.0,10.0,43,1.15 +69325,,,,,,,,0, +33428,,,,,,,,0, +31677,,,,,,,,0, +74649,100.0,10.0,8.0,10.0,10.0,6.0,10.0,3,0.08 +14947,97.0,10.0,10.0,10.0,10.0,10.0,10.0,57,1.91 +2449,85.0,10.0,9.0,10.0,10.0,9.0,9.0,4,0.1 +50772,90.0,9.0,10.0,10.0,10.0,10.0,9.0,215,5.44 +51897,98.0,10.0,10.0,10.0,10.0,10.0,10.0,83,2.07 +20808,,,,,,,,0, +25484,97.0,9.0,10.0,10.0,10.0,9.0,9.0,6,0.15 +71653,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +7126,,,,,,,,0, +75409,98.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.46 +9551,,,,,,,,0, +58718,92.0,10.0,9.0,10.0,10.0,9.0,9.0,20,0.52 +61253,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.13 +73462,100.0,10.0,10.0,10.0,10.0,9.0,9.0,2,0.39 +58870,,,,,,,,0, +35077,92.0,9.0,9.0,10.0,10.0,10.0,9.0,46,1.2 +41357,97.0,9.0,10.0,9.0,10.0,9.0,10.0,6,0.15 +11564,,,,,,,,0, +73170,,,,,,,,0, +53542,,,,,,,,0, +11251,93.0,10.0,9.0,10.0,10.0,9.0,9.0,83,2.11 +19742,,,,,,,,0, +42234,88.0,10.0,9.0,10.0,10.0,9.0,9.0,8,0.41 +59416,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.21 +37266,98.0,10.0,10.0,10.0,10.0,10.0,10.0,19,1.33 +26525,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.21 +22788,87.0,9.0,8.0,9.0,10.0,8.0,8.0,4,0.1 +44565,91.0,9.0,9.0,10.0,9.0,9.0,9.0,42,1.08 +38893,,,,,,,,0, +63197,95.0,10.0,9.0,10.0,10.0,9.0,10.0,141,3.56 +49000,95.0,10.0,10.0,10.0,10.0,9.0,10.0,22,0.62 +6297,80.0,9.0,8.0,9.0,9.0,10.0,8.0,119,3.04 +25434,80.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.03 +10920,84.0,9.0,9.0,10.0,10.0,9.0,9.0,9,0.23 +34644,82.0,9.0,8.0,10.0,9.0,9.0,8.0,46,1.18 +38838,97.0,10.0,10.0,10.0,10.0,9.0,9.0,239,5.97 +43211,,,,,,,,0, +45179,96.0,10.0,9.0,10.0,10.0,9.0,9.0,12,0.3 +22828,,,,,,,,0, +18735,99.0,10.0,10.0,10.0,10.0,10.0,10.0,31,0.83 +67297,96.0,10.0,10.0,10.0,10.0,10.0,9.0,10,0.34 +21821,98.0,10.0,10.0,10.0,10.0,10.0,10.0,41,1.03 +70700,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.2 +12625,80.0,8.0,8.0,8.0,8.0,8.0,8.0,1,0.03 +77090,,,,,,,,0, +8195,,,,,,,,0, +76114,95.0,10.0,10.0,10.0,10.0,9.0,10.0,24,0.63 +36451,,,,,,,,0, +41845,,,,,,,,0, +59696,,,,,,,,0, +19061,96.0,10.0,10.0,10.0,10.0,10.0,10.0,198,5.09 +16574,90.0,9.0,10.0,8.0,9.0,10.0,8.0,2,0.12 +38682,90.0,9.0,9.0,10.0,9.0,10.0,9.0,108,2.76 +75973,97.0,10.0,10.0,10.0,10.0,10.0,10.0,102,2.59 +14825,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.21 +58831,,,,,,,,0, +71028,80.0,6.0,6.0,10.0,10.0,10.0,8.0,1,0.03 +69814,,,,,,,,1,0.03 +35634,93.0,10.0,9.0,10.0,10.0,9.0,10.0,25,0.64 +8711,86.0,9.0,9.0,9.0,8.0,8.0,9.0,17,0.43 +17295,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.13 +64255,,,,,,,,0, +73086,93.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.15 +6750,,,,,,,,0, +21830,80.0,8.0,6.0,8.0,8.0,8.0,8.0,1,0.03 +32414,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.08 +15623,98.0,10.0,9.0,9.0,9.0,9.0,10.0,12,0.3 +32936,,,,,,,,0, +33513,98.0,10.0,10.0,10.0,10.0,10.0,10.0,63,2.57 +37202,91.0,9.0,9.0,10.0,10.0,10.0,9.0,15,0.38 +19018,93.0,10.0,10.0,10.0,10.0,10.0,9.0,48,1.7 +68587,97.0,10.0,10.0,10.0,10.0,10.0,10.0,32,0.83 +9197,90.0,9.0,9.0,9.0,10.0,10.0,9.0,14,0.36 +19654,,,,,,,,0, +30769,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.33 +36936,98.0,10.0,10.0,10.0,10.0,10.0,10.0,28,0.73 +44340,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +51157,98.0,10.0,10.0,10.0,10.0,10.0,10.0,43,1.08 +1816,87.0,9.0,9.0,9.0,9.0,10.0,8.0,31,0.79 +61664,98.0,10.0,10.0,10.0,10.0,10.0,9.0,11,0.28 +16225,,,,,,,,0, +56502,100.0,10.0,8.0,10.0,10.0,8.0,10.0,1,0.03 +51141,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.12 +7001,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.1 +40485,80.0,8.0,8.0,8.0,10.0,10.0,10.0,2,0.05 +63132,96.0,9.0,10.0,10.0,10.0,10.0,9.0,26,0.9 +65082,97.0,10.0,10.0,10.0,10.0,10.0,10.0,128,3.27 +70855,95.0,10.0,9.0,10.0,10.0,10.0,9.0,81,2.06 +74207,,,,,,,,0, +51745,93.0,10.0,10.0,10.0,10.0,9.0,9.0,7,0.18 +59760,,,,,,,,0, +27873,80.0,9.0,8.0,7.0,7.0,8.0,8.0,2,0.06 +72529,80.0,10.0,10.0,8.0,10.0,10.0,10.0,1,0.03 +51922,,,,,,,,0, +4918,92.0,10.0,8.0,10.0,10.0,10.0,10.0,40,1.18 +68981,93.0,10.0,9.0,10.0,10.0,10.0,10.0,19,0.5 +4121,96.0,9.0,9.0,10.0,10.0,10.0,9.0,10,0.28 +68824,100.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.41 +63774,95.0,9.0,9.0,10.0,10.0,10.0,10.0,6,0.17 +35235,95.0,10.0,10.0,9.0,10.0,10.0,9.0,114,2.93 +28720,96.0,10.0,9.0,10.0,10.0,10.0,9.0,15,0.65 +7594,,,,,,,,0, +69294,99.0,10.0,10.0,10.0,10.0,10.0,10.0,75,1.91 +58506,93.0,9.0,9.0,10.0,10.0,10.0,9.0,59,1.54 +2243,89.0,9.0,9.0,10.0,9.0,10.0,9.0,111,2.83 +28018,,,,,,,,0, +56987,,,,,,,,0, +72829,92.0,9.0,10.0,10.0,9.0,9.0,9.0,14,0.35 +74438,,,,,,,,0, +70254,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.14 +56255,94.0,10.0,10.0,10.0,10.0,10.0,9.0,18,0.47 +19183,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +37129,,,,,,,,0, +64712,98.0,10.0,10.0,10.0,10.0,10.0,10.0,146,3.72 +57845,95.0,9.0,10.0,10.0,10.0,10.0,9.0,61,1.54 +70932,,,,,,,,0, +6147,96.0,10.0,9.0,10.0,10.0,10.0,10.0,21,0.53 +26026,,,,,,,,0, +76420,96.0,10.0,10.0,10.0,10.0,10.0,9.0,12,0.31 +47391,91.0,10.0,9.0,10.0,10.0,10.0,9.0,18,0.46 +49249,100.0,9.0,9.0,9.0,10.0,9.0,10.0,7,0.18 +41033,87.0,9.0,9.0,9.0,10.0,9.0,10.0,9,0.23 +29002,98.0,10.0,9.0,9.0,10.0,10.0,10.0,8,0.22 +66666,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.32 +37629,100.0,8.0,8.0,10.0,10.0,8.0,10.0,1,0.03 +11199,94.0,10.0,10.0,10.0,10.0,9.0,10.0,411,10.56 +15870,93.0,10.0,9.0,10.0,10.0,10.0,9.0,6,0.15 +61740,95.0,10.0,10.0,10.0,10.0,9.0,10.0,146,3.74 +74810,92.0,10.0,9.0,10.0,10.0,9.0,9.0,44,1.11 +37895,,,,,,,,0, +73750,97.0,10.0,10.0,10.0,10.0,10.0,9.0,69,1.73 +14720,93.0,9.0,9.0,10.0,10.0,9.0,9.0,14,0.36 +67927,80.0,10.0,10.0,10.0,8.0,10.0,8.0,2,0.07 +18952,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.15 +53557,99.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.43 +27764,90.0,10.0,10.0,10.0,10.0,8.0,10.0,16,0.41 +58049,92.0,10.0,10.0,10.0,10.0,9.0,10.0,22,0.57 +39124,93.0,10.0,9.0,9.0,10.0,10.0,9.0,65,1.92 +51971,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.36 +15581,,,,,,,,0, +74330,91.0,9.0,9.0,10.0,10.0,10.0,9.0,92,2.31 +24556,,,,,,,,0, +56067,,,,,,,,1,0.03 +6354,60.0,2.0,10.0,10.0,10.0,10.0,6.0,3,0.11 +6717,96.0,10.0,10.0,10.0,9.0,9.0,9.0,11,0.29 +63275,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.03 +2493,,,,,,,,1,0.03 +12642,97.0,10.0,9.0,10.0,10.0,10.0,10.0,6,1.06 +35193,94.0,10.0,9.0,10.0,10.0,10.0,10.0,137,3.51 +25429,99.0,10.0,10.0,10.0,10.0,10.0,10.0,70,1.79 +72386,96.0,10.0,9.0,10.0,10.0,10.0,9.0,21,0.56 +69583,96.0,10.0,10.0,10.0,10.0,9.0,10.0,134,3.76 +51657,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +51662,,,,,,,,0, +30875,91.0,9.0,9.0,9.0,10.0,9.0,9.0,14,0.35 +46980,,,,,,,,0, +65164,80.0,8.0,8.0,9.0,10.0,8.0,9.0,7,0.18 +42466,,,,,,,,0, +66699,94.0,10.0,9.0,10.0,10.0,9.0,10.0,10,0.26 +62577,,,,,,,,0, +31260,,,,,,,,0, +41632,94.0,9.0,10.0,10.0,10.0,9.0,9.0,28,0.78 +60088,97.0,10.0,9.0,10.0,10.0,10.0,10.0,28,0.74 +26348,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.08 +61655,96.0,10.0,10.0,10.0,10.0,9.0,10.0,91,2.32 +26338,97.0,10.0,10.0,10.0,10.0,9.0,10.0,65,1.67 +25763,,,,,,,,0, +19366,97.0,10.0,10.0,10.0,10.0,10.0,10.0,62,2.3 +51317,99.0,10.0,10.0,10.0,10.0,10.0,10.0,39,1.03 +51107,97.0,10.0,10.0,10.0,10.0,10.0,10.0,42,1.06 +15307,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.31 +26463,,,,,,,,0, +36191,100.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.13 +62631,100.0,10.0,10.0,9.0,10.0,10.0,10.0,10,0.26 +67910,96.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.17 +21276,,,,,,,,0, +70192,93.0,10.0,9.0,9.0,10.0,10.0,9.0,33,0.93 +32026,99.0,10.0,10.0,10.0,10.0,9.0,10.0,19,0.65 +53819,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +33404,95.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.24 +74488,,,,,,,,0, +61009,,,,,,,,1,0.04 +41513,,,,,,,,0, +73343,100.0,10.0,10.0,10.0,10.0,8.0,9.0,2,0.05 +75190,99.0,10.0,10.0,10.0,10.0,10.0,10.0,32,0.82 +2211,80.0,8.0,7.0,9.0,9.0,9.0,8.0,6,0.2 +22410,80.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.03 +23599,93.0,10.0,9.0,10.0,10.0,9.0,9.0,15,0.38 +13102,98.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.41 +6920,80.0,7.0,9.0,9.0,9.0,8.0,9.0,3,0.1 +71562,98.0,10.0,10.0,10.0,10.0,10.0,10.0,37,0.95 +66670,,,,,,,,1,0.04 +47947,80.0,7.0,8.0,8.0,7.0,7.0,7.0,3,0.08 +38431,,,,,,,,0, +42761,96.0,10.0,9.0,10.0,10.0,9.0,10.0,73,1.86 +27461,,,,,,,,0, +37359,90.0,9.0,9.0,10.0,10.0,10.0,9.0,4,0.1 +59985,,,,,,,,0, +65600,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.15 +44320,,,,,,,,0, +19231,,,,,,,,0, +29107,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.03 +19369,80.0,9.0,7.0,9.0,9.0,10.0,8.0,3,0.08 +14007,97.0,10.0,9.0,10.0,10.0,10.0,10.0,7,0.18 +43582,100.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.15 +3351,91.0,9.0,9.0,10.0,10.0,10.0,9.0,63,1.6 +35585,80.0,8.0,8.0,9.0,9.0,9.0,8.0,9,0.23 +65043,98.0,10.0,10.0,10.0,10.0,10.0,10.0,281,7.08 +26060,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.13 +72437,,,,,,,,0, +11912,80.0,10.0,8.0,10.0,10.0,2.0,10.0,1,0.03 +75779,,,,,,,,0, +26289,,,,,,,,0, +28317,90.0,8.0,8.0,9.0,10.0,10.0,10.0,4,0.63 +33682,93.0,10.0,10.0,10.0,10.0,10.0,9.0,24,0.63 +75288,96.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.23 +54090,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +32623,76.0,8.0,7.0,9.0,9.0,10.0,8.0,15,0.38 +41292,97.0,10.0,9.0,10.0,10.0,10.0,10.0,7,0.18 +58138,94.0,9.0,10.0,10.0,10.0,9.0,10.0,40,1.02 +54754,,,,,,,,1,0.03 +52828,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.08 +40966,60.0,8.0,10.0,6.0,10.0,10.0,8.0,5,0.13 +28617,100.0,10.0,8.0,10.0,10.0,8.0,10.0,1,0.03 +15463,,,,,,,,0, +39000,,,,,,,,0, +73505,99.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.44 +14487,100.0,10.0,10.0,10.0,10.0,10.0,9.0,9,0.24 +47227,95.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.11 +27178,94.0,10.0,9.0,9.0,10.0,9.0,9.0,24,0.61 +47654,,,,,,,,0, +68943,97.0,10.0,10.0,10.0,10.0,10.0,10.0,69,1.76 +39067,,,,,,,,0, +67111,88.0,10.0,9.0,9.0,9.0,10.0,9.0,6,0.2 +69401,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.05 +25839,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,1.82 +67400,100.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +29140,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +6831,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +76868,97.0,10.0,9.0,10.0,10.0,9.0,10.0,14,0.44 +48470,95.0,10.0,9.0,10.0,10.0,9.0,10.0,106,2.68 +32616,96.0,10.0,10.0,10.0,10.0,10.0,10.0,299,7.58 +58199,100.0,10.0,10.0,10.0,10.0,10.0,10.0,29,1.18 +55491,20.0,2.0,2.0,2.0,2.0,2.0,2.0,2,0.21 +59747,,,,,,,,1,0.03 +53543,91.0,9.0,10.0,10.0,10.0,9.0,9.0,11,0.8 +75703,98.0,10.0,10.0,10.0,10.0,10.0,10.0,60,1.56 +55419,92.0,10.0,9.0,10.0,10.0,10.0,9.0,6,0.15 +24638,93.0,10.0,9.0,9.0,9.0,9.0,9.0,15,0.42 +55809,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.16 +22085,97.0,10.0,10.0,10.0,9.0,10.0,10.0,12,0.3 +30804,97.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.18 +53598,98.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.28 +51525,85.0,9.0,10.0,10.0,9.0,9.0,9.0,7,0.18 +76765,90.0,10.0,9.0,10.0,10.0,10.0,9.0,80,2.09 +12261,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.39 +51438,87.0,9.0,8.0,9.0,9.0,10.0,9.0,11,0.29 +21439,83.0,10.0,7.0,10.0,10.0,8.0,9.0,6,0.15 +69483,97.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.36 +48323,90.0,10.0,10.0,9.0,10.0,9.0,10.0,2,0.05 +49381,98.0,10.0,10.0,10.0,10.0,9.0,10.0,48,1.22 +16165,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.11 +47036,99.0,10.0,10.0,10.0,10.0,10.0,10.0,186,5.9 +25090,100.0,10.0,6.0,10.0,8.0,10.0,10.0,1,0.03 +46531,,,,,,,,0, +26033,96.0,10.0,9.0,10.0,10.0,10.0,10.0,57,1.44 +52365,100.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.42 +54406,99.0,10.0,10.0,10.0,10.0,9.0,10.0,82,2.45 +48090,,,,,,,,0, +18963,97.0,10.0,10.0,10.0,10.0,9.0,10.0,139,3.53 +48533,89.0,9.0,9.0,10.0,9.0,10.0,9.0,40,1.02 +17588,93.0,9.0,10.0,10.0,10.0,10.0,10.0,4,0.1 +42216,86.0,9.0,9.0,10.0,10.0,10.0,9.0,53,1.64 +55172,90.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.05 +35738,100.0,10.0,10.0,10.0,10.0,10.0,10.0,66,1.85 +61095,83.0,8.0,10.0,9.0,10.0,8.0,9.0,7,0.18 +1611,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +15795,99.0,10.0,10.0,10.0,10.0,9.0,10.0,40,1.31 +55061,99.0,10.0,10.0,10.0,10.0,9.0,10.0,32,0.83 +20003,99.0,10.0,10.0,10.0,10.0,10.0,9.0,15,0.39 +54732,94.0,10.0,10.0,10.0,10.0,9.0,9.0,18,0.47 +12651,91.0,9.0,9.0,10.0,10.0,9.0,9.0,160,4.04 +67447,99.0,10.0,10.0,10.0,10.0,10.0,10.0,29,0.83 +46042,,,,,,,,0, +68645,98.0,10.0,10.0,10.0,10.0,10.0,10.0,53,1.4 +2006,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +48308,93.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.1 +37264,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.41 +45746,,,,,,,,0, +25069,,,,,,,,0, +8753,,,,,,,,0, +67574,98.0,10.0,10.0,10.0,10.0,10.0,10.0,138,3.51 +69998,97.0,10.0,10.0,10.0,10.0,10.0,10.0,169,5.64 +21058,,,,,,,,0, +8206,,,,,,,,0, +25819,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.13 +70659,,,,,,,,3,0.08 +57473,,,,,,,,0, +64579,88.0,9.0,9.0,9.0,10.0,10.0,9.0,40,1.05 +76580,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.24 +16367,,,,,,,,0, +3208,98.0,10.0,10.0,10.0,10.0,10.0,10.0,26,0.68 +33544,,,,,,,,0, +10379,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.4 +41986,,,,,,,,0, +60590,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,1.0 +24700,100.0,10.0,10.0,10.0,10.0,10.0,10.0,19,0.71 +35626,100.0,10.0,10.0,9.0,10.0,9.0,10.0,17,0.48 +3270,100.0,10.0,10.0,10.0,10.0,9.0,10.0,12,0.4 +72287,94.0,10.0,10.0,10.0,10.0,9.0,9.0,39,1.04 +67280,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.31 +72733,91.0,10.0,9.0,10.0,10.0,9.0,9.0,28,0.72 +67909,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.26 +55585,92.0,9.0,10.0,9.0,10.0,9.0,9.0,57,1.46 +62972,,,,,,,,0, +19356,60.0,8.0,8.0,8.0,8.0,8.0,8.0,1,0.03 +49004,97.0,10.0,10.0,10.0,10.0,10.0,10.0,45,1.15 +60907,97.0,10.0,10.0,10.0,10.0,10.0,10.0,54,1.83 +76148,95.0,10.0,10.0,10.0,10.0,9.0,10.0,14,0.36 +28941,97.0,10.0,10.0,10.0,10.0,10.0,10.0,23,0.7 +35106,92.0,9.0,9.0,10.0,10.0,10.0,9.0,55,1.47 +12135,90.0,9.0,9.0,10.0,10.0,10.0,9.0,10,0.26 +17911,90.0,10.0,8.0,10.0,9.0,10.0,9.0,2,0.05 +49116,,,,,,,,0, +10628,,,,,,,,0, +63431,,,,,,,,1,0.03 +18197,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.31 +31513,85.0,9.0,9.0,10.0,10.0,10.0,9.0,141,3.62 +50993,,,,,,,,0, +13183,,,,,,,,0, +64577,,,,,,,,0, +73537,70.0,8.0,6.0,9.0,9.0,9.0,8.0,6,0.17 +5433,100.0,10.0,10.0,10.0,10.0,9.0,10.0,13,0.33 +16962,99.0,10.0,10.0,10.0,10.0,10.0,9.0,28,0.72 +46069,95.0,10.0,9.0,10.0,10.0,10.0,10.0,17,0.43 +18187,90.0,9.0,10.0,9.0,9.0,9.0,9.0,8,0.2 +68975,97.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.38 +46965,90.0,9.0,7.0,10.0,10.0,9.0,9.0,2,0.05 +76140,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.08 +17736,100.0,10.0,10.0,10.0,10.0,9.0,9.0,13,0.41 +18640,93.0,10.0,9.0,10.0,10.0,9.0,10.0,116,2.96 +4512,76.0,9.0,8.0,9.0,9.0,8.0,8.0,5,0.13 +3761,90.0,9.0,9.0,9.0,10.0,9.0,9.0,21,0.54 +5194,86.0,9.0,9.0,10.0,10.0,8.0,8.0,17,0.43 +50512,91.0,10.0,9.0,10.0,10.0,9.0,9.0,21,0.55 +5448,99.0,10.0,10.0,10.0,10.0,10.0,10.0,82,2.14 +29741,95.0,10.0,9.0,10.0,10.0,10.0,10.0,199,5.05 +218,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +3059,90.0,8.0,9.0,10.0,10.0,9.0,10.0,2,0.05 +75634,88.0,9.0,7.0,8.0,9.0,10.0,9.0,5,0.13 +12653,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.1 +1206,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.13 +2127,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.21 +32043,89.0,9.0,9.0,9.0,10.0,9.0,9.0,40,1.04 +29175,,,,,,,,0, +73177,,,,,,,,0, +27948,96.0,10.0,10.0,10.0,10.0,10.0,9.0,48,1.22 +11909,93.0,10.0,9.0,10.0,10.0,10.0,9.0,7,0.18 +29746,93.0,10.0,9.0,10.0,10.0,9.0,9.0,3,0.08 +69622,89.0,9.0,8.0,9.0,9.0,10.0,9.0,121,3.11 +11899,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.18 +35014,,,,,,,,0, +35153,,,,,,,,0, +28706,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.28 +44034,97.0,10.0,10.0,10.0,10.0,9.0,10.0,31,0.78 +20399,87.0,9.0,9.0,9.0,9.0,9.0,8.0,3,1.18 +8390,,,,,,,,0, +28389,93.0,10.0,9.0,10.0,10.0,9.0,9.0,73,1.84 +69587,98.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.35 +74005,97.0,10.0,10.0,10.0,10.0,10.0,10.0,42,1.18 +37093,,,,,,,,0, +43147,,,,,,,,0, +41208,100.0,10.0,9.0,10.0,9.0,10.0,10.0,2,0.05 +66924,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,5.0 +52392,80.0,8.0,10.0,6.0,10.0,10.0,8.0,1,0.03 +35981,89.0,9.0,9.0,9.0,10.0,10.0,9.0,35,0.9 +16348,94.0,10.0,10.0,10.0,10.0,8.0,10.0,76,2.0 +35040,,,,,,,,0, +27240,99.0,10.0,10.0,10.0,10.0,10.0,10.0,138,3.61 +53780,,,,,,,,1,0.03 +8590,,,,,,,,0, +56107,,,,,,,,0, +16308,80.0,8.0,10.0,10.0,9.0,10.0,9.0,4,0.1 +19428,91.0,9.0,9.0,9.0,9.0,10.0,8.0,11,0.28 +33573,94.0,9.0,9.0,10.0,10.0,9.0,10.0,29,0.74 +27148,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,2.35 +9654,80.0,7.0,6.0,10.0,10.0,9.0,9.0,3,0.08 +19823,,,,,,,,0, +6782,,,,,,,,0, +60939,90.0,9.0,8.0,9.0,10.0,9.0,9.0,2,0.05 +55025,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.19 +52016,96.0,10.0,9.0,10.0,10.0,10.0,10.0,144,3.66 +27250,,,,,,,,1,0.21 +6232,91.0,9.0,9.0,10.0,10.0,9.0,9.0,98,2.55 +31648,98.0,10.0,10.0,10.0,10.0,9.0,10.0,98,2.52 +51535,,,,,,,,0, +71242,85.0,9.0,9.0,10.0,10.0,9.0,9.0,138,3.49 +26745,98.0,10.0,10.0,10.0,10.0,10.0,10.0,45,1.14 +75220,84.0,9.0,8.0,10.0,10.0,10.0,9.0,80,2.05 +5772,94.0,10.0,9.0,10.0,10.0,10.0,9.0,39,1.25 +59698,94.0,10.0,9.0,10.0,10.0,10.0,10.0,10,0.25 +66321,,,,,,,,0, +34864,98.0,10.0,10.0,10.0,10.0,9.0,10.0,13,0.34 +67766,95.0,10.0,10.0,10.0,10.0,10.0,10.0,89,2.28 +29927,80.0,10.0,9.0,10.0,9.0,10.0,8.0,2,0.05 +19464,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +61603,87.0,9.0,9.0,9.0,10.0,9.0,9.0,3,0.08 +38524,80.0,8.0,6.0,10.0,10.0,10.0,8.0,1,0.03 +70429,96.0,9.0,10.0,10.0,10.0,8.0,10.0,6,0.36 +63464,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.15 +3801,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.11 +36700,,,,,,,,1,0.03 +2143,90.0,9.0,8.0,9.0,10.0,10.0,9.0,46,1.18 +42723,100.0,10.0,10.0,10.0,10.0,10.0,10.0,39,1.14 +32014,97.0,10.0,10.0,10.0,9.0,10.0,10.0,13,0.34 +39367,99.0,10.0,10.0,10.0,10.0,9.0,10.0,74,1.95 +28888,97.0,9.0,10.0,10.0,10.0,9.0,9.0,9,0.29 +10114,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.08 +71515,99.0,10.0,10.0,10.0,10.0,10.0,10.0,148,3.79 +70023,94.0,9.0,9.0,10.0,10.0,10.0,9.0,43,1.18 +24803,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.06 +34830,71.0,8.0,8.0,10.0,9.0,8.0,7.0,7,0.18 +54555,,,,,,,,0, +69616,93.0,10.0,10.0,10.0,10.0,10.0,10.0,62,1.57 +43653,,,,,,,,0, +13838,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.11 +32979,,,,,,,,0, +24467,79.0,9.0,8.0,8.0,9.0,9.0,8.0,63,1.63 +39171,93.0,10.0,9.0,10.0,10.0,10.0,9.0,22,0.57 +18033,98.0,10.0,10.0,10.0,10.0,9.0,10.0,271,6.99 +73551,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +49556,100.0,10.0,10.0,9.0,10.0,10.0,9.0,2,0.42 +12387,,,,,,,,0, +19513,90.0,9.0,10.0,10.0,10.0,9.0,9.0,4,0.14 +73930,99.0,10.0,10.0,10.0,10.0,9.0,10.0,45,1.26 +44555,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +5486,,,,,,,,1,0.03 +67457,,,,,,,,0, +17245,,,,,,,,0, +53412,94.0,9.0,10.0,10.0,10.0,10.0,10.0,17,0.43 +18504,91.0,9.0,9.0,9.0,10.0,9.0,9.0,32,1.14 +14044,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +46482,,,,,,,,0, +7230,95.0,10.0,9.0,10.0,10.0,10.0,9.0,75,1.92 +44781,95.0,10.0,9.0,10.0,10.0,10.0,9.0,23,0.59 +1103,80.0,10.0,8.0,10.0,8.0,8.0,10.0,1,0.03 +75930,88.0,10.0,10.0,9.0,10.0,9.0,10.0,5,0.16 +70793,,,,,,,,0, +45033,90.0,10.0,9.0,10.0,10.0,8.0,9.0,2,0.08 +62528,,,,,,,,0, +26489,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.03 +42408,90.0,9.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +23433,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +21257,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +5783,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.22 +22261,,,,,,,,0, +32196,,,,,,,,0, +31116,97.0,9.0,10.0,10.0,9.0,10.0,9.0,49,1.25 +21694,90.0,9.0,8.0,10.0,9.0,7.0,8.0,2,0.05 +13963,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.03 +45988,,,,,,,,0, +51265,,,,,,,,1,0.03 +51949,,,,,,,,0, +27225,92.0,9.0,9.0,9.0,10.0,9.0,9.0,72,1.86 +36130,40.0,2.0,2.0,4.0,6.0,6.0,2.0,2,0.05 +25622,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.19 +24705,99.0,10.0,10.0,10.0,10.0,9.0,10.0,74,2.01 +30480,73.0,8.0,8.0,9.0,9.0,9.0,8.0,50,1.28 +57237,97.0,10.0,9.0,10.0,10.0,9.0,10.0,22,0.58 +35155,,,,,,,,0, +27103,100.0,10.0,10.0,10.0,10.0,10.0,8.0,2,2.0 +44394,,,,,,,,0, +5093,,,,,,,,0, +74959,,,,,,,,0, +74227,93.0,10.0,9.0,9.0,10.0,9.0,9.0,3,0.08 +46503,,,,,,,,0, +13857,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.11 +46685,95.0,10.0,9.0,10.0,10.0,9.0,9.0,23,0.59 +23010,80.0,,8.0,,8.0,,,1,0.03 +10977,99.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.66 +48143,100.0,10.0,10.0,10.0,9.0,9.0,9.0,8,0.22 +72608,,,,,,,,0, +61620,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +26021,,,,,,,,0, +13546,98.0,10.0,10.0,10.0,10.0,10.0,10.0,50,1.28 +73240,100.0,10.0,6.0,10.0,10.0,10.0,10.0,1,0.04 +54842,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.1 +68930,97.0,10.0,10.0,10.0,10.0,9.0,9.0,38,0.99 +6881,,,,,,,,0, +14788,95.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.1 +42374,95.0,10.0,10.0,10.0,10.0,9.0,9.0,222,5.65 +69492,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +55458,92.0,10.0,10.0,10.0,10.0,9.0,9.0,194,4.94 +11041,100.0,10.0,10.0,9.0,10.0,10.0,10.0,2,0.06 +12063,60.0,8.0,6.0,10.0,10.0,8.0,6.0,1,0.03 +50424,98.0,10.0,10.0,10.0,10.0,10.0,10.0,55,1.4 +71747,96.0,10.0,8.0,10.0,10.0,10.0,9.0,10,1.84 +65474,100.0,6.0,8.0,10.0,8.0,6.0,8.0,1,0.03 +64075,,,,,,,,0, +67546,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +47460,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.21 +34145,,,,,,,,0, +8071,91.0,10.0,9.0,10.0,10.0,9.0,9.0,7,0.24 +25688,95.0,10.0,10.0,10.0,10.0,10.0,9.0,8,0.21 +18213,84.0,9.0,10.0,10.0,10.0,10.0,10.0,5,0.17 +61231,89.0,9.0,10.0,9.0,9.0,10.0,9.0,137,3.87 +30339,,,,,,,,0, +5717,,,,,,,,0, +3577,,,,,,,,0, +27108,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.05 +41340,,,,,,,,0, +69666,,,,,,,,0, +69320,95.0,10.0,9.0,10.0,10.0,9.0,9.0,52,1.33 +59430,98.0,10.0,10.0,10.0,10.0,10.0,10.0,52,1.64 +71986,,,,,,,,0, +56115,95.0,10.0,9.0,10.0,10.0,10.0,9.0,37,0.95 +29597,,,,,,,,0, +65509,90.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.11 +42955,80.0,10.0,6.0,10.0,10.0,10.0,8.0,1,0.04 +73575,93.0,10.0,8.0,9.0,9.0,9.0,9.0,6,0.15 +69668,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +11688,91.0,10.0,9.0,10.0,10.0,10.0,9.0,23,0.61 +10857,80.0,8.0,8.0,9.0,8.0,8.0,8.0,2,0.05 +31602,98.0,10.0,10.0,10.0,10.0,10.0,10.0,28,0.73 +49200,99.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.39 +48087,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +37897,,,,,,,,0, +62190,,,,,,,,0, +16267,60.0,10.0,4.0,4.0,6.0,6.0,6.0,1,0.03 +7387,,,,,,,,0, +46055,94.0,10.0,10.0,10.0,10.0,9.0,9.0,58,1.62 +70958,91.0,9.0,9.0,9.0,9.0,9.0,9.0,9,0.27 +18070,,,,,,,,0, +67384,96.0,10.0,10.0,9.0,10.0,10.0,9.0,25,0.65 +36596,87.0,9.0,8.0,10.0,9.0,9.0,9.0,4,0.14 +23722,93.0,9.0,9.0,10.0,10.0,10.0,10.0,59,2.39 +40755,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.18 +34504,90.0,9.0,9.0,9.0,9.0,9.0,9.0,2,0.05 +29675,98.0,10.0,10.0,10.0,10.0,10.0,9.0,9,0.28 +44644,99.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.44 +54978,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.25 +41154,90.0,9.0,8.0,7.0,10.0,6.0,9.0,2,0.05 +6161,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +74538,,,,,,,,0, +62249,99.0,10.0,10.0,10.0,10.0,9.0,10.0,15,0.55 +69605,96.0,10.0,9.0,10.0,10.0,10.0,10.0,9,0.24 +43118,98.0,10.0,10.0,10.0,10.0,10.0,9.0,94,2.39 +30227,100.0,10.0,10.0,10.0,10.0,10.0,10.0,22,0.61 +33508,95.0,10.0,9.0,10.0,10.0,9.0,9.0,45,1.38 +49051,88.0,9.0,9.0,10.0,10.0,10.0,9.0,67,1.73 +34675,83.0,9.0,8.0,9.0,10.0,8.0,8.0,45,1.14 +67656,,,,,,,,0, +49413,,,,,,,,0, +13000,93.0,10.0,9.0,10.0,10.0,10.0,9.0,115,3.14 +52543,95.0,10.0,9.0,10.0,10.0,10.0,9.0,17,0.6 +26110,97.0,10.0,10.0,10.0,10.0,9.0,10.0,31,0.79 +53487,100.0,8.0,10.0,10.0,10.0,9.0,8.0,2,0.05 +58531,88.0,9.0,9.0,9.0,9.0,8.0,9.0,51,1.36 +14653,94.0,10.0,10.0,10.0,10.0,10.0,9.0,40,1.02 +24982,,,,,,,,0, +3716,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.08 +15190,95.0,10.0,9.0,10.0,10.0,10.0,10.0,15,0.38 +75609,99.0,10.0,10.0,10.0,10.0,10.0,10.0,24,0.61 +9489,,,,,,,,0, +33324,94.0,10.0,10.0,10.0,10.0,9.0,9.0,110,2.81 +48956,,,,,,,,0, +15162,90.0,9.0,10.0,10.0,10.0,9.0,9.0,6,0.16 +25723,93.0,10.0,9.0,10.0,10.0,10.0,9.0,6,0.15 +36723,98.0,10.0,9.0,10.0,10.0,10.0,9.0,41,1.09 +37990,78.0,9.0,8.0,9.0,9.0,8.0,8.0,46,1.17 +11462,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +61724,96.0,10.0,9.0,9.0,9.0,10.0,9.0,35,0.98 +53409,80.0,8.0,8.0,9.0,9.0,9.0,8.0,244,6.3 +24144,,,,,,,,0, +29144,100.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.15 +33741,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +64094,100.0,10.0,10.0,10.0,10.0,8.0,9.0,6,0.15 +34778,100.0,10.0,10.0,10.0,10.0,7.0,9.0,3,0.08 +76199,,,,,,,,0, +53092,,,,,,,,0, +55722,,,,,,,,0, +6093,,,,,,,,0, +73325,,,,,,,,0, +38453,98.0,10.0,10.0,10.0,10.0,9.0,10.0,66,1.68 +12536,80.0,8.0,6.0,8.0,10.0,8.0,8.0,1,0.03 +6135,,,,,,,,0, +46473,,,,,,,,0, +3323,91.0,10.0,9.0,9.0,10.0,9.0,10.0,17,0.44 +41288,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +37823,86.0,9.0,9.0,9.0,10.0,8.0,9.0,8,0.21 +65667,99.0,10.0,10.0,10.0,10.0,10.0,9.0,23,1.51 +65722,89.0,9.0,7.0,10.0,9.0,9.0,9.0,22,0.57 +25314,93.0,8.0,9.0,10.0,10.0,10.0,9.0,9,0.23 +12366,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.12 +28587,98.0,10.0,10.0,10.0,10.0,10.0,10.0,145,3.72 +22760,97.0,10.0,10.0,10.0,10.0,9.0,10.0,20,0.51 +19075,,,,,,,,0, +5281,94.0,10.0,10.0,10.0,10.0,9.0,9.0,32,0.82 +37077,,,,,,,,0, +56363,97.0,10.0,10.0,10.0,10.0,9.0,9.0,13,0.33 +15734,91.0,9.0,9.0,10.0,9.0,9.0,9.0,93,2.41 +17612,91.0,9.0,9.0,10.0,9.0,9.0,9.0,96,2.48 +65660,86.0,9.0,8.0,10.0,9.0,8.0,9.0,17,0.44 +50112,97.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.28 +73335,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.03 +2361,100.0,10.0,9.0,10.0,10.0,9.0,9.0,4,0.16 +73721,99.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.37 +45413,,,,,,,,1,0.03 +61616,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.03 +59653,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +52822,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.06 +53621,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.08 +11729,97.0,10.0,10.0,10.0,10.0,9.0,10.0,221,5.65 +36757,,,,,,,,0, +60304,97.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.33 +63766,50.0,7.0,6.0,8.0,10.0,8.0,4.0,2,0.07 +27306,93.0,9.0,10.0,9.0,10.0,10.0,10.0,3,0.08 +63151,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +45842,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.03 +6180,96.0,10.0,10.0,9.0,9.0,10.0,9.0,14,0.36 +1473,98.0,10.0,10.0,10.0,10.0,10.0,10.0,149,3.82 +24560,95.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.21 +72605,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.27 +74276,94.0,10.0,10.0,10.0,10.0,10.0,9.0,23,0.59 +70474,91.0,10.0,10.0,10.0,9.0,10.0,9.0,18,0.46 +30923,100.0,10.0,10.0,10.0,10.0,9.0,10.0,10,0.26 +32743,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.32 +7406,95.0,10.0,9.0,10.0,10.0,9.0,9.0,48,1.26 +5703,89.0,9.0,9.0,10.0,10.0,9.0,9.0,18,0.55 +44758,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.21 +3759,99.0,10.0,10.0,10.0,10.0,10.0,10.0,73,1.89 +4811,99.0,10.0,10.0,10.0,10.0,10.0,10.0,97,2.93 +3846,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +68945,100.0,10.0,10.0,10.0,10.0,8.0,10.0,2,0.05 +30959,,,,,,,,0, +25552,96.0,9.0,9.0,10.0,10.0,10.0,10.0,8,0.22 +29784,,,,,,,,0, +56637,96.0,10.0,10.0,10.0,10.0,10.0,10.0,52,1.57 +66557,,,,,,,,0, +10438,100.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.39 +49622,94.0,9.0,9.0,9.0,9.0,8.0,9.0,7,0.18 +32662,,,,,,,,0, +4060,90.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.05 +26470,,,,,,,,0, +46879,80.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.03 +20126,97.0,10.0,9.0,10.0,10.0,9.0,10.0,8,0.2 +20254,91.0,10.0,9.0,10.0,10.0,10.0,9.0,13,0.34 +42655,,,,,,,,0, +50219,95.0,10.0,9.0,10.0,10.0,10.0,10.0,211,5.42 +28336,94.0,10.0,9.0,10.0,10.0,10.0,9.0,32,0.84 +58784,,,,,,,,0, +23590,100.0,10.0,10.0,8.0,10.0,8.0,10.0,2,0.05 +58812,,,,,,,,1,0.17 +28445,93.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.15 +47539,,,,,,,,0, +9914,96.0,10.0,10.0,10.0,10.0,10.0,10.0,28,2.0 +4458,98.0,10.0,10.0,10.0,10.0,9.0,10.0,114,2.98 +54898,97.0,10.0,9.0,10.0,10.0,9.0,10.0,116,3.0 +21650,98.0,10.0,10.0,10.0,10.0,9.0,9.0,9,0.23 +75910,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +38935,99.0,10.0,10.0,10.0,10.0,10.0,10.0,86,2.2 +3254,69.0,7.0,8.0,6.0,7.0,8.0,7.0,10,0.52 +68108,99.0,10.0,10.0,10.0,10.0,10.0,9.0,30,0.77 +52856,100.0,,,,10.0,10.0,10.0,1,0.03 +20223,80.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.03 +30016,98.0,10.0,10.0,10.0,10.0,10.0,10.0,22,0.58 +31234,87.0,9.0,9.0,10.0,10.0,10.0,9.0,35,0.96 +51510,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +40629,96.0,10.0,10.0,10.0,10.0,9.0,10.0,181,4.64 +72721,,,,,,,,0, +45349,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +10367,90.0,10.0,10.0,9.0,10.0,10.0,10.0,2,0.05 +10612,94.0,10.0,9.0,9.0,9.0,9.0,9.0,21,0.54 +12880,,,,,,,,0, +7736,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.05 +63136,,,,,,,,0, +14453,99.0,10.0,10.0,10.0,10.0,10.0,10.0,36,0.96 +58416,95.0,10.0,9.0,10.0,10.0,9.0,9.0,27,0.71 +7987,100.0,10.0,10.0,9.0,10.0,10.0,9.0,23,1.87 +32663,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.13 +19266,95.0,10.0,10.0,10.0,10.0,9.0,9.0,33,0.96 +63964,87.0,9.0,8.0,10.0,10.0,9.0,9.0,12,0.31 +46910,95.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.1 +10001,98.0,10.0,10.0,10.0,9.0,9.0,10.0,8,0.21 +1796,84.0,9.0,9.0,9.0,10.0,10.0,9.0,29,0.75 +57891,,,,,,,,1,0.03 +46080,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +55310,96.0,10.0,9.0,10.0,10.0,10.0,9.0,22,0.58 +46443,90.0,9.0,8.0,9.0,9.0,10.0,9.0,24,0.62 +37698,80.0,,,,,,,1,0.03 +53136,95.0,10.0,10.0,9.0,9.0,9.0,9.0,113,2.96 +26054,90.0,10.0,9.0,9.0,9.0,10.0,9.0,174,4.47 +36614,99.0,10.0,10.0,10.0,10.0,10.0,10.0,40,1.05 +19569,90.0,10.0,9.0,9.0,10.0,9.0,10.0,6,0.17 +23989,,,,,,,,0, +19376,93.0,10.0,9.0,10.0,10.0,9.0,9.0,56,1.69 +75245,83.0,9.0,8.0,9.0,9.0,9.0,9.0,33,1.13 +1116,93.0,10.0,9.0,10.0,9.0,10.0,9.0,17,0.43 +28882,95.0,9.0,10.0,10.0,10.0,10.0,9.0,4,0.11 +17822,,,,,,,,0, +12125,100.0,10.0,10.0,10.0,10.0,9.0,10.0,10,0.26 +16159,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.4 +51080,99.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.55 +27989,,,,,,,,0, +62539,80.0,8.0,6.0,8.0,10.0,6.0,8.0,2,0.05 +19272,,,,,,,,1,0.03 +11094,80.0,8.0,7.0,9.0,9.0,10.0,8.0,2,0.05 +72909,89.0,9.0,9.0,9.0,9.0,9.0,9.0,27,0.74 +69530,93.0,9.0,9.0,9.0,10.0,9.0,9.0,25,0.65 +40492,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.41 +57373,93.0,10.0,9.0,10.0,10.0,9.0,9.0,9,0.23 +27279,93.0,9.0,10.0,10.0,10.0,10.0,9.0,72,1.89 +40574,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +5193,90.0,10.0,9.0,10.0,10.0,9.0,10.0,5,0.14 +18045,92.0,9.0,9.0,10.0,10.0,10.0,9.0,72,1.99 +49905,94.0,10.0,10.0,10.0,10.0,9.0,9.0,89,2.28 +7830,97.0,10.0,10.0,10.0,10.0,10.0,10.0,85,2.49 +52276,98.0,10.0,10.0,10.0,10.0,10.0,10.0,86,2.2 +50181,99.0,10.0,10.0,10.0,10.0,10.0,10.0,83,4.41 +42069,93.0,9.0,9.0,10.0,10.0,9.0,9.0,8,0.22 +1290,100.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.56 +20472,97.0,10.0,10.0,10.0,10.0,10.0,9.0,23,0.59 +36799,,,,,,,,0, +67179,,,,,,,,0, +58901,82.0,9.0,8.0,9.0,9.0,8.0,9.0,43,1.11 +1646,88.0,9.0,8.0,10.0,10.0,8.0,9.0,9,0.23 +32803,88.0,9.0,9.0,9.0,9.0,9.0,9.0,50,1.29 +36534,93.0,10.0,9.0,10.0,10.0,10.0,9.0,3,0.13 +56834,99.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.39 +63457,,,,,,,,0, +17144,84.0,9.0,8.0,9.0,9.0,9.0,9.0,42,1.08 +639,60.0,10.0,6.0,10.0,10.0,10.0,8.0,1,0.03 +50525,97.0,9.0,9.0,10.0,10.0,9.0,10.0,7,0.18 +26810,96.0,10.0,10.0,10.0,10.0,9.0,10.0,48,1.25 +70413,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +20428,92.0,10.0,9.0,9.0,9.0,10.0,9.0,5,0.14 +21854,93.0,9.0,9.0,9.0,10.0,9.0,10.0,26,0.67 +4308,91.0,9.0,10.0,10.0,9.0,10.0,9.0,41,1.09 +46535,94.0,10.0,9.0,10.0,10.0,10.0,9.0,16,0.93 +71505,97.0,10.0,10.0,10.0,10.0,10.0,10.0,96,2.48 +53564,85.0,10.0,9.0,10.0,10.0,10.0,8.0,4,0.1 +32115,,,,,,,,0, +31901,91.0,10.0,9.0,9.0,9.0,9.0,9.0,110,2.8 +33918,,,,,,,,0, +39908,,,,,,,,0, +29415,91.0,9.0,8.0,9.0,9.0,8.0,9.0,127,3.67 +38576,94.0,10.0,9.0,10.0,10.0,10.0,9.0,19,0.54 +75333,100.0,8.0,8.0,10.0,10.0,9.0,9.0,2,0.05 +64434,86.0,8.0,8.0,8.0,8.0,6.0,8.0,15,0.5 +57588,83.0,8.0,8.0,8.0,9.0,10.0,8.0,31,0.8 +13195,88.0,10.0,9.0,10.0,10.0,10.0,9.0,41,1.07 +22805,100.0,10.0,10.0,10.0,10.0,10.0,10.0,27,0.72 +1650,100.0,8.0,8.0,8.0,10.0,8.0,8.0,1,0.03 +52439,,,,,,,,0, +38288,,,,,,,,1,0.14 +24538,,,,,,,,1,0.03 +54260,,,,,,,,0, +11618,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.08 +75432,95.0,10.0,10.0,10.0,10.0,9.0,10.0,37,0.96 +18850,,,,,,,,0, +39152,,,,,,,,0, +31892,,,,,,,,0, +43526,90.0,10.0,10.0,10.0,10.0,9.0,9.0,21,0.55 +47485,80.0,8.0,6.0,10.0,10.0,10.0,10.0,1,0.03 +40766,99.0,10.0,10.0,10.0,10.0,9.0,10.0,15,0.46 +75794,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +62769,92.0,9.0,9.0,10.0,10.0,9.0,9.0,21,0.55 +59307,,,,,,,,0, +46310,99.0,10.0,10.0,10.0,10.0,10.0,10.0,43,1.1 +51817,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.11 +70391,95.0,10.0,9.0,10.0,10.0,10.0,10.0,43,1.11 +45475,,,,,,,,0, +52633,80.0,8.0,8.0,10.0,10.0,8.0,8.0,1,0.03 +71224,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.46 +27621,92.0,9.0,10.0,10.0,10.0,10.0,9.0,13,0.34 +11650,80.0,9.0,6.0,10.0,9.0,10.0,8.0,2,0.05 +6606,96.0,10.0,10.0,10.0,10.0,9.0,10.0,131,3.35 +26447,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.38 +26048,86.0,9.0,8.0,10.0,10.0,8.0,8.0,10,0.26 +34797,99.0,10.0,9.0,10.0,10.0,10.0,9.0,23,0.59 +66005,,,,,,,,0, +34243,76.0,7.0,7.0,8.0,10.0,8.0,8.0,6,0.22 +45756,97.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.17 +44172,60.0,4.0,4.0,8.0,8.0,10.0,8.0,1,0.03 +66399,80.0,6.0,10.0,8.0,9.0,9.0,7.0,3,0.12 +30696,93.0,10.0,10.0,10.0,10.0,10.0,9.0,9,0.43 +44005,,,,,,,,0, +26202,95.0,10.0,9.0,10.0,10.0,9.0,10.0,13,0.35 +54119,93.0,10.0,9.0,10.0,10.0,10.0,10.0,6,0.38 +2434,,,,,,,,0, +39581,,,,,,,,0, +21308,96.0,10.0,10.0,10.0,10.0,10.0,9.0,81,2.08 +41363,,,,,,,,0, +3533,88.0,9.0,9.0,9.0,9.0,8.0,9.0,58,1.48 +52063,60.0,7.0,4.0,9.0,9.0,8.0,6.0,5,0.13 +42770,,,,,,,,0, +54787,92.0,10.0,8.0,9.0,10.0,10.0,10.0,6,0.15 +67363,91.0,10.0,9.0,10.0,10.0,8.0,10.0,12,0.32 +66315,100.0,10.0,10.0,10.0,10.0,9.0,10.0,59,1.54 +23618,96.0,10.0,10.0,10.0,10.0,10.0,10.0,26,0.68 +44999,100.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.03 +50546,90.0,10.0,9.0,10.0,10.0,10.0,9.0,8,0.21 +9284,87.0,9.0,8.0,9.0,10.0,10.0,9.0,11,0.61 +65855,100.0,8.0,10.0,10.0,10.0,8.0,10.0,1,0.03 +51777,,,,,,,,0, +54989,,,,,,,,0, +24987,96.0,10.0,9.0,10.0,10.0,10.0,9.0,25,0.68 +36453,98.0,10.0,10.0,10.0,10.0,10.0,10.0,87,2.24 +57892,91.0,10.0,9.0,10.0,10.0,9.0,9.0,87,2.27 +23787,,,,,,,,0, +62759,90.0,9.0,9.0,9.0,8.0,10.0,9.0,13,0.54 +39350,,,,,,,,0, +20891,97.0,10.0,9.0,10.0,10.0,10.0,10.0,53,1.36 +56785,80.0,9.0,9.0,9.0,9.0,9.0,8.0,2,0.05 +49973,90.0,9.0,9.0,10.0,10.0,8.0,9.0,20,0.54 +71027,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.13 +21304,98.0,10.0,10.0,10.0,10.0,10.0,10.0,19,0.49 +49092,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +35608,97.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.41 +19768,93.0,10.0,9.0,10.0,10.0,10.0,9.0,57,1.47 +35088,,,,,,,,0, +40810,94.0,10.0,10.0,9.0,9.0,8.0,9.0,21,0.55 +30823,,,,,,,,0, +36171,,,,,,,,0, +12672,97.0,10.0,10.0,10.0,10.0,8.0,10.0,23,0.59 +57854,100.0,10.0,10.0,10.0,10.0,10.0,10.0,19,0.52 +66226,90.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.14 +18034,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.21 +16362,,,,,,,,0, +31669,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +13178,83.0,8.0,9.0,8.0,8.0,10.0,9.0,15,0.4 +54226,92.0,10.0,10.0,10.0,10.0,10.0,9.0,13,0.53 +60548,,,,,,,,0, +67929,80.0,8.0,8.0,8.0,8.0,10.0,8.0,17,0.44 +33055,97.0,10.0,10.0,10.0,10.0,10.0,9.0,20,0.51 +7892,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.08 +55934,80.0,9.0,9.0,10.0,9.0,10.0,8.0,15,0.4 +49137,91.0,10.0,10.0,10.0,10.0,10.0,9.0,27,0.72 +37952,40.0,6.0,8.0,8.0,6.0,8.0,2.0,1,0.13 +45726,92.0,10.0,10.0,10.0,10.0,10.0,9.0,55,1.44 +42443,95.0,10.0,9.0,10.0,10.0,10.0,10.0,63,1.61 +58265,,,,,,,,0, +2242,94.0,10.0,9.0,10.0,10.0,9.0,10.0,7,0.19 +2896,98.0,10.0,10.0,10.0,10.0,10.0,10.0,101,2.65 +43931,90.0,10.0,10.0,10.0,10.0,9.0,9.0,10,0.27 +53038,91.0,9.0,9.0,9.0,10.0,9.0,9.0,124,3.21 +43517,73.0,10.0,7.0,9.0,7.0,9.0,7.0,3,0.08 +8759,97.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.34 +62614,94.0,10.0,10.0,10.0,10.0,10.0,10.0,29,0.75 +43282,,,,,,,,0, +6723,92.0,9.0,9.0,9.0,9.0,9.0,9.0,25,0.65 +57496,90.0,9.0,8.0,10.0,10.0,10.0,9.0,81,2.07 +50847,92.0,10.0,9.0,10.0,10.0,9.0,9.0,13,0.34 +64623,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.11 +6618,97.0,10.0,9.0,10.0,10.0,9.0,10.0,42,1.15 +12004,,,,,,,,0, +56506,,,,,,,,0, +11699,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +34029,,,,,,,,0, +61321,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +69630,85.0,9.0,8.0,9.0,10.0,9.0,9.0,66,1.77 +48377,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.31 +38924,98.0,10.0,10.0,10.0,10.0,9.0,10.0,26,0.67 +52261,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.08 +62370,95.0,10.0,9.0,10.0,10.0,10.0,10.0,22,0.57 +45269,95.0,10.0,10.0,10.0,10.0,9.0,10.0,17,0.44 +26959,90.0,10.0,10.0,10.0,10.0,9.0,8.0,3,0.08 +31105,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.13 +1598,97.0,10.0,9.0,10.0,10.0,10.0,10.0,64,1.79 +16973,,,,,,,,0, +36246,83.0,9.0,7.0,9.0,9.0,9.0,8.0,8,0.21 +13296,90.0,9.0,9.0,10.0,9.0,9.0,8.0,10,0.26 +73560,100.0,10.0,10.0,10.0,10.0,10.0,10.0,88,2.31 +36204,96.0,10.0,10.0,10.0,10.0,10.0,9.0,25,0.93 +35697,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.38 +69979,96.0,10.0,9.0,10.0,10.0,10.0,10.0,61,1.57 +35108,90.0,10.0,9.0,10.0,10.0,9.0,9.0,6,0.16 +27334,96.0,10.0,10.0,10.0,10.0,10.0,9.0,108,2.81 +7883,92.0,10.0,8.0,10.0,10.0,10.0,10.0,5,0.13 +59021,96.0,10.0,10.0,10.0,10.0,10.0,9.0,52,1.34 +50064,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.06 +56949,92.0,9.0,9.0,9.0,10.0,9.0,9.0,14,0.36 +32415,96.0,10.0,10.0,10.0,10.0,9.0,10.0,156,4.01 +33360,80.0,8.0,7.0,9.0,9.0,10.0,8.0,11,0.29 +15838,100.0,10.0,8.0,10.0,10.0,10.0,9.0,2,0.05 +53063,,,,,,,,0, +35584,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +54309,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.24 +20475,,,,,,,,0, +26885,80.0,9.0,8.0,9.0,9.0,9.0,9.0,42,1.08 +32637,,,,,,,,0, +13978,,,,,,,,0, +5695,94.0,10.0,10.0,10.0,10.0,10.0,9.0,57,1.72 +28679,81.0,9.0,8.0,9.0,9.0,10.0,8.0,218,5.63 +28942,96.0,10.0,9.0,10.0,10.0,10.0,10.0,18,0.47 +58675,89.0,9.0,9.0,10.0,10.0,10.0,9.0,54,1.51 +75915,,,,,,,,0, +72130,93.0,10.0,9.0,10.0,10.0,10.0,9.0,26,0.67 +11891,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.19 +6847,93.0,9.0,9.0,9.0,10.0,10.0,9.0,6,0.16 +65418,98.0,10.0,10.0,10.0,10.0,10.0,10.0,33,0.87 +38001,97.0,10.0,10.0,10.0,10.0,10.0,9.0,46,1.23 +59762,,,,,,,,1,0.03 +18518,78.0,9.0,9.0,9.0,9.0,8.0,8.0,17,0.47 +58652,96.0,9.0,9.0,10.0,10.0,9.0,9.0,25,0.65 +38265,99.0,10.0,10.0,10.0,10.0,9.0,10.0,68,1.75 +69778,,,,,,,,0, +72308,,,,,,,,0, +863,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.2 +71538,93.0,9.0,9.0,10.0,9.0,10.0,9.0,3,0.09 +70173,87.0,10.0,7.0,10.0,9.0,10.0,10.0,3,0.08 +28392,85.0,9.0,9.0,9.0,9.0,8.0,9.0,12,0.31 +32546,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.03 +66708,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +73059,89.0,9.0,8.0,10.0,10.0,9.0,9.0,11,0.28 +65979,98.0,10.0,10.0,10.0,10.0,9.0,9.0,18,0.47 +52254,98.0,10.0,10.0,10.0,10.0,10.0,10.0,52,1.54 +54238,93.0,9.0,9.0,9.0,10.0,10.0,9.0,6,0.16 +72497,90.0,9.0,10.0,10.0,10.0,8.0,10.0,2,0.05 +2043,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.03 +13429,92.0,9.0,9.0,9.0,10.0,10.0,9.0,28,0.73 +70871,94.0,9.0,10.0,10.0,10.0,9.0,10.0,44,1.15 +69800,97.0,10.0,10.0,10.0,10.0,9.0,10.0,160,4.21 +39814,100.0,10.0,10.0,10.0,10.0,10.0,10.0,70,2.05 +53067,93.0,10.0,10.0,9.0,9.0,10.0,10.0,16,0.42 +38433,,,,,,,,0, +11005,97.0,10.0,10.0,10.0,10.0,10.0,9.0,41,1.09 +10144,,,,,,,,0, +15317,,,,,,,,0, +13022,97.0,10.0,9.0,10.0,10.0,9.0,10.0,8,0.22 +49968,97.0,10.0,10.0,10.0,10.0,10.0,10.0,71,1.83 +5951,95.0,9.0,9.0,10.0,10.0,10.0,9.0,41,1.09 +73884,96.0,10.0,10.0,10.0,10.0,9.0,10.0,207,5.38 +2470,97.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.7 +28560,88.0,10.0,10.0,9.0,10.0,10.0,8.0,10,0.26 +69128,75.0,7.0,8.0,9.0,8.0,9.0,8.0,4,0.21 +65566,97.0,9.0,10.0,9.0,10.0,10.0,10.0,6,0.23 +25244,100.0,10.0,10.0,2.0,2.0,6.0,4.0,1,0.03 +65127,,,,,,,,0, +38976,94.0,10.0,10.0,10.0,10.0,9.0,10.0,17,0.54 +34550,80.0,8.0,8.0,10.0,10.0,10.0,8.0,1,0.08 +29382,73.0,7.0,7.0,9.0,9.0,8.0,7.0,4,0.1 +53508,100.0,10.0,10.0,10.0,10.0,10.0,10.0,24,0.64 +30168,94.0,10.0,9.0,10.0,10.0,9.0,9.0,163,4.2 +53540,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +25654,,,,,,,,0, +700,60.0,10.0,4.0,10.0,10.0,2.0,8.0,1,0.03 +17845,94.0,10.0,10.0,10.0,10.0,9.0,9.0,50,1.29 +40679,87.0,10.0,9.0,10.0,10.0,8.0,9.0,7,0.18 +67701,,,,,,,,0, +66494,97.0,10.0,10.0,10.0,10.0,10.0,10.0,66,3.54 +10616,99.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.46 +13568,,,,,,,,0, +43184,,,,,,,,0, +69246,92.0,9.0,9.0,10.0,10.0,9.0,9.0,329,8.65 +61035,,,,,,,,1,0.03 +10465,96.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.16 +54356,94.0,10.0,10.0,10.0,9.0,9.0,9.0,74,1.96 +22776,20.0,,,,2.0,,,2,0.05 +16546,97.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.18 +55600,99.0,10.0,10.0,10.0,10.0,10.0,10.0,56,1.94 +27166,,,,,,,,0, +23847,99.0,10.0,10.0,10.0,10.0,10.0,10.0,61,1.57 +17035,100.0,10.0,8.0,10.0,10.0,8.0,8.0,2,0.05 +37398,96.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.13 +687,,,,,,,,0, +16649,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.03 +26373,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.14 +7024,100.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.54 +53909,89.0,10.0,8.0,8.0,9.0,10.0,9.0,24,0.62 +4937,96.0,10.0,10.0,10.0,10.0,9.0,10.0,63,1.64 +15026,96.0,9.0,10.0,10.0,10.0,9.0,10.0,12,0.36 +3010,,,,,,,,0, +69780,92.0,10.0,9.0,10.0,9.0,9.0,9.0,64,1.67 +64154,93.0,10.0,10.0,10.0,10.0,9.0,10.0,10,0.34 +42071,91.0,9.0,9.0,9.0,9.0,10.0,9.0,7,0.2 +14456,88.0,9.0,8.0,9.0,9.0,9.0,9.0,26,0.69 +12697,87.0,9.0,8.0,9.0,9.0,8.0,9.0,42,1.15 +24727,,,,,,,,0, +52810,97.0,10.0,9.0,10.0,10.0,10.0,10.0,40,1.07 +56695,98.0,10.0,10.0,10.0,10.0,10.0,10.0,29,0.77 +11983,98.0,10.0,9.0,10.0,10.0,10.0,10.0,62,4.11 +64604,99.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.4 +70987,,,,,,,,0, +5651,83.0,9.0,9.0,9.0,9.0,9.0,8.0,9,0.23 +71717,,,,,,,,0, +75558,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.26 +59342,97.0,10.0,10.0,10.0,10.0,10.0,10.0,66,2.03 +27661,,,,,,,,0, +36355,98.0,10.0,9.0,9.0,10.0,10.0,10.0,20,0.53 +5412,80.0,10.0,10.0,10.0,8.0,10.0,10.0,2,0.32 +41598,99.0,10.0,10.0,10.0,10.0,10.0,10.0,22,1.43 +49254,,,,,,,,0, +71587,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,1.3 +44964,100.0,10.0,10.0,10.0,10.0,9.0,9.0,16,0.44 +3747,80.0,7.0,8.0,10.0,9.0,10.0,9.0,6,0.15 +69370,96.0,10.0,10.0,10.0,10.0,10.0,9.0,20,0.52 +66419,98.0,10.0,10.0,10.0,10.0,9.0,10.0,26,0.67 +27134,98.0,10.0,10.0,10.0,10.0,9.0,10.0,38,1.43 +16396,87.0,10.0,9.0,10.0,10.0,9.0,10.0,3,0.11 +40835,98.0,10.0,10.0,10.0,10.0,10.0,9.0,9,0.32 +68229,90.0,10.0,9.0,9.0,9.0,10.0,9.0,10,0.27 +1699,93.0,9.0,10.0,8.0,10.0,10.0,10.0,6,0.2 +33228,98.0,10.0,10.0,10.0,10.0,10.0,10.0,48,1.24 +19791,,,,,,,,0, +25495,,,,,,,,0, +1665,96.0,10.0,9.0,9.0,10.0,9.0,9.0,17,0.44 +56242,97.0,10.0,10.0,10.0,10.0,9.0,9.0,36,1.82 +31270,88.0,9.0,8.0,9.0,9.0,9.0,9.0,204,6.62 +29164,95.0,10.0,9.0,10.0,10.0,9.0,9.0,48,1.25 +32140,80.0,10.0,8.0,10.0,10.0,9.0,10.0,2,0.05 +54911,98.0,10.0,9.0,10.0,10.0,10.0,10.0,8,0.32 +37388,99.0,10.0,10.0,10.0,10.0,10.0,10.0,27,0.76 +26360,100.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.41 +32158,97.0,10.0,10.0,10.0,10.0,9.0,10.0,88,2.31 +24642,93.0,10.0,9.0,10.0,10.0,10.0,10.0,7,0.18 +22769,,,,,,,,0, +61675,73.0,8.0,5.0,10.0,7.0,10.0,7.0,3,0.08 +73269,97.0,10.0,10.0,10.0,10.0,9.0,10.0,45,1.2 +14253,94.0,9.0,9.0,10.0,10.0,10.0,9.0,81,2.13 +7605,,,,,,,,0, +48980,,,,,,,,0, +7467,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +31322,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.13 +24226,99.0,10.0,10.0,10.0,10.0,10.0,10.0,31,0.8 +21375,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.08 +26937,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.13 +24432,88.0,9.0,10.0,10.0,10.0,10.0,10.0,8,0.21 +58215,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.2 +10417,94.0,10.0,10.0,10.0,10.0,10.0,10.0,26,0.69 +70410,,,,,,,,0, +68350,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +73595,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.44 +433,100.0,8.0,10.0,10.0,8.0,10.0,6.0,1,0.04 +53230,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +70375,60.0,10.0,2.0,10.0,10.0,10.0,4.0,1,0.29 +60933,97.0,10.0,10.0,10.0,10.0,10.0,10.0,22,0.58 +75768,95.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.29 +3401,91.0,10.0,9.0,9.0,10.0,10.0,9.0,68,1.85 +36513,,,,,,,,0, +62954,96.0,10.0,9.0,10.0,10.0,8.0,9.0,10,0.26 +11447,,,,,,,,0, +45811,95.0,10.0,10.0,10.0,10.0,10.0,10.0,31,0.8 +15802,,,,,,,,0, +37026,93.0,10.0,9.0,10.0,10.0,9.0,9.0,6,0.16 +23770,98.0,10.0,10.0,10.0,10.0,9.0,10.0,76,2.01 +63949,83.0,9.0,8.0,9.0,9.0,9.0,9.0,22,0.57 +57541,99.0,10.0,10.0,10.0,10.0,10.0,10.0,61,1.63 +45358,93.0,10.0,9.0,10.0,10.0,9.0,9.0,18,0.48 +2771,90.0,10.0,10.0,10.0,10.0,9.0,8.0,6,0.16 +23061,80.0,8.0,8.0,10.0,10.0,8.0,8.0,1,0.04 +8288,98.0,10.0,9.0,10.0,10.0,9.0,10.0,36,0.94 +61289,94.0,10.0,10.0,9.0,10.0,9.0,10.0,9,0.24 +41247,89.0,10.0,9.0,10.0,9.0,10.0,9.0,11,0.33 +34428,95.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.17 +54365,90.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.05 +28162,93.0,9.0,9.0,10.0,10.0,9.0,9.0,15,0.39 +70585,,,,,,,,1,0.03 +3263,,,,,,,,0, +71642,99.0,10.0,10.0,10.0,10.0,10.0,10.0,55,1.44 +69244,,,,,,,,0, +40107,87.0,10.0,9.0,9.0,9.0,9.0,9.0,3,0.08 +46061,87.0,9.0,9.0,10.0,10.0,9.0,9.0,3,0.1 +22742,93.0,10.0,9.0,10.0,10.0,10.0,10.0,31,0.87 +18570,100.0,9.0,9.0,10.0,10.0,10.0,9.0,4,0.1 +3454,80.0,8.0,8.0,8.0,9.0,10.0,9.0,2,0.05 +72022,84.0,9.0,9.0,9.0,10.0,8.0,8.0,73,1.89 +26404,99.0,10.0,10.0,10.0,10.0,10.0,10.0,20,0.52 +73417,,,,,,,,0, +16959,,,,,,,,1,0.03 +19792,97.0,10.0,10.0,10.0,10.0,10.0,10.0,66,1.94 +45560,89.0,9.0,8.0,9.0,9.0,9.0,9.0,17,0.45 +49152,95.0,10.0,10.0,10.0,10.0,9.0,10.0,62,1.62 +14566,88.0,10.0,9.0,10.0,10.0,8.0,9.0,14,0.36 +5782,80.0,10.0,6.0,6.0,6.0,6.0,6.0,2,0.06 +33517,85.0,9.0,9.0,9.0,9.0,10.0,9.0,35,0.91 +76593,,,,,,,,0, +72167,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.03 +52864,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.28 +51251,,,,,,,,0, +38778,96.0,10.0,9.0,10.0,10.0,10.0,10.0,10,0.27 +55791,96.0,10.0,10.0,10.0,10.0,9.0,10.0,18,2.21 +21603,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.08 +32574,99.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.37 +75585,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.14 +43095,89.0,9.0,9.0,10.0,10.0,10.0,9.0,33,0.86 +19833,92.0,9.0,9.0,10.0,10.0,9.0,9.0,29,0.77 +74714,,,,,,,,0, +52223,95.0,10.0,10.0,10.0,10.0,9.0,9.0,159,4.11 +41741,,,,,,,,0, +51987,68.0,8.0,6.0,9.0,9.0,9.0,7.0,8,0.21 +35221,90.0,10.0,9.0,9.0,10.0,10.0,9.0,4,0.26 +9943,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.08 +8164,,,,,,,,0, +11679,,,,,,,,0, +49857,97.0,10.0,10.0,10.0,10.0,10.0,10.0,48,1.27 +2756,97.0,10.0,10.0,10.0,10.0,9.0,10.0,20,0.52 +22612,93.0,10.0,9.0,10.0,10.0,9.0,10.0,47,1.24 +51187,99.0,10.0,10.0,9.0,10.0,9.0,10.0,27,0.75 +2457,87.0,9.0,9.0,9.0,10.0,10.0,9.0,44,1.15 +17088,,,,,,,,0, +52884,80.0,9.0,7.0,10.0,10.0,8.0,8.0,2,0.05 +42002,98.0,10.0,9.0,10.0,10.0,10.0,10.0,11,0.9 +22468,89.0,9.0,10.0,10.0,10.0,9.0,9.0,15,0.53 +59153,96.0,10.0,9.0,10.0,10.0,9.0,9.0,5,0.2 +62995,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +4117,,,,,,,,0, +22999,90.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +48742,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +23216,80.0,8.0,10.0,8.0,8.0,6.0,8.0,1,0.04 +12230,97.0,10.0,10.0,10.0,10.0,10.0,9.0,8,0.21 +66823,93.0,10.0,10.0,10.0,10.0,10.0,9.0,22,0.59 +17479,,,,,,,,0, +27518,,,,,,,,0, +25555,73.0,7.0,9.0,9.0,8.0,9.0,6.0,6,0.16 +67073,96.0,10.0,9.0,9.0,10.0,10.0,9.0,5,0.13 +67148,,,,,,,,0, +14083,93.0,9.0,10.0,9.0,9.0,10.0,9.0,3,0.08 +36686,90.0,10.0,9.0,10.0,8.0,9.0,9.0,2,0.05 +17782,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +68550,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +50529,,,,,,,,0, +28196,99.0,10.0,10.0,10.0,10.0,10.0,10.0,28,0.75 +45472,,,,,,,,0, +27866,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.13 +61953,92.0,10.0,9.0,10.0,10.0,9.0,9.0,302,7.91 +74103,93.0,9.0,9.0,10.0,10.0,9.0,9.0,14,0.65 +12636,,,,,,,,0, +63228,96.0,10.0,9.0,10.0,10.0,10.0,10.0,62,1.61 +27391,92.0,10.0,9.0,9.0,10.0,10.0,9.0,119,3.07 +45220,,,,,,,,0, +67115,99.0,10.0,10.0,10.0,10.0,10.0,10.0,56,3.01 +31808,80.0,8.0,8.0,9.0,9.0,8.0,8.0,11,0.29 +19124,60.0,6.0,4.0,9.0,8.0,9.0,5.0,2,0.05 +44061,40.0,2.0,2.0,4.0,6.0,8.0,4.0,1,0.05 +34679,,,,,,,,0, +70904,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.48 +12566,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.06 +11945,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +52221,90.0,10.0,9.0,9.0,9.0,10.0,10.0,8,0.21 +14948,,,,,,,,0, +76324,90.0,10.0,9.0,10.0,10.0,10.0,8.0,2,0.06 +66380,93.0,10.0,9.0,10.0,10.0,10.0,9.0,12,0.39 +66206,90.0,9.0,10.0,9.0,9.0,9.0,9.0,227,5.91 +43125,,,,,,,,0, +38372,96.0,10.0,10.0,10.0,10.0,10.0,9.0,10,0.26 +2280,94.0,10.0,9.0,10.0,10.0,9.0,9.0,40,1.12 +6601,100.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.16 +49914,,,,,,,,0, +1117,,,,,,,,0, +52510,95.0,10.0,9.0,9.0,9.0,9.0,10.0,8,0.22 +67010,93.0,9.0,9.0,10.0,10.0,8.0,10.0,9,0.23 +16535,,,,,,,,0, +45162,90.0,10.0,10.0,9.0,10.0,10.0,10.0,2,0.05 +37084,,,,,,,,0, +44693,64.0,7.0,8.0,8.0,8.0,9.0,7.0,10,0.26 +46373,,,,,,,,0, +8591,73.0,7.0,7.0,7.0,10.0,7.0,7.0,3,0.1 +9209,,,,,,,,0, +27393,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.1 +31398,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +28007,98.0,10.0,10.0,10.0,10.0,9.0,10.0,159,5.06 +47376,90.0,9.0,8.0,10.0,10.0,10.0,10.0,4,0.14 +42742,,,,,,,,0, +62091,93.0,10.0,10.0,10.0,10.0,10.0,9.0,13,0.41 +56459,83.0,9.0,9.0,10.0,10.0,9.0,10.0,8,0.27 +5613,,,,,,,,0, +32296,,,,,,,,0, +2154,98.0,10.0,10.0,9.0,10.0,9.0,9.0,8,0.21 +2078,98.0,10.0,10.0,10.0,10.0,10.0,10.0,76,1.96 +46919,95.0,10.0,10.0,10.0,10.0,10.0,9.0,20,0.64 +43585,,,,,,,,0, +35948,97.0,10.0,10.0,10.0,10.0,9.0,9.0,19,0.53 +24912,95.0,9.0,9.0,10.0,10.0,10.0,10.0,12,0.33 +34039,,,,,,,,0, +40250,97.0,10.0,10.0,9.0,10.0,9.0,10.0,19,0.55 +58709,,,,,,,,0, +40150,90.0,9.0,9.0,10.0,10.0,9.0,9.0,25,0.65 +74188,,,,,,,,0, +900,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.03 +16982,92.0,9.0,9.0,10.0,10.0,9.0,9.0,61,1.79 +59571,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.11 +5769,,,,,,,,0, +18796,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +8629,94.0,10.0,9.0,10.0,10.0,9.0,9.0,7,0.18 +68504,60.0,8.0,4.0,8.0,10.0,8.0,10.0,1,0.03 +47071,90.0,9.0,7.0,10.0,10.0,10.0,8.0,4,0.1 +32024,88.0,9.0,9.0,9.0,9.0,9.0,9.0,61,1.59 +63951,89.0,9.0,9.0,9.0,10.0,10.0,9.0,65,1.73 +20396,91.0,10.0,10.0,10.0,10.0,9.0,10.0,157,4.08 +60342,100.0,10.0,10.0,10.0,8.0,10.0,10.0,1,0.03 +48334,100.0,10.0,10.0,10.0,10.0,10.0,10.0,49,5.36 +4008,64.0,7.0,6.0,6.0,7.0,8.0,7.0,6,0.17 +36092,99.0,10.0,10.0,10.0,10.0,10.0,10.0,63,1.67 +63654,,,,,,,,0, +58339,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.67 +37311,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.03 +57315,90.0,9.0,8.0,10.0,10.0,9.0,9.0,2,0.07 +65649,,,,,,,,0, +50167,80.0,9.0,7.0,10.0,10.0,8.0,9.0,14,0.37 +4431,100.0,10.0,10.0,10.0,10.0,10.0,10.0,95,2.5 +26041,95.0,10.0,10.0,10.0,10.0,9.0,9.0,8,0.21 +64755,,,,,,,,0, +67551,93.0,9.0,9.0,10.0,10.0,10.0,10.0,7,0.18 +30833,94.0,10.0,10.0,10.0,10.0,10.0,9.0,74,1.95 +50229,,,,,,,,0, +28051,,,,,,,,0, +35992,93.0,10.0,10.0,10.0,10.0,10.0,10.0,57,1.55 +48545,89.0,9.0,9.0,9.0,9.0,9.0,9.0,34,0.89 +51318,,,,,,,,0, +1315,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.03 +60305,85.0,9.0,8.0,9.0,9.0,10.0,9.0,122,3.22 +76232,60.0,8.0,6.0,6.0,10.0,10.0,6.0,1,0.03 +1214,,,,,,,,0, +45281,87.0,10.0,9.0,10.0,10.0,9.0,9.0,3,0.08 +15038,,,,,,,,0, +29276,,,,,,,,0, +40603,80.0,10.0,6.0,10.0,10.0,8.0,8.0,1,0.03 +15803,94.0,10.0,9.0,9.0,9.0,10.0,10.0,13,0.34 +69365,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.17 +56857,95.0,10.0,10.0,10.0,10.0,10.0,10.0,28,0.74 +76170,,,,,,,,0, +31068,92.0,9.0,9.0,10.0,10.0,10.0,9.0,72,2.01 +37797,80.0,9.0,8.0,8.0,8.0,9.0,8.0,7,0.18 +26646,,,,,,,,1,0.04 +32692,,,,,,,,0, +5985,84.0,8.0,8.0,9.0,9.0,9.0,8.0,38,1.07 +61085,96.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.13 +34173,93.0,10.0,9.0,10.0,10.0,10.0,10.0,17,0.52 +40530,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.08 +73606,98.0,10.0,10.0,9.0,9.0,10.0,9.0,24,0.64 +47725,,,,,,,,0, +50352,94.0,9.0,9.0,10.0,10.0,9.0,9.0,17,0.53 +60018,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.1 +18990,95.0,10.0,9.0,10.0,10.0,9.0,9.0,94,2.62 +44047,92.0,10.0,8.0,10.0,10.0,10.0,9.0,22,0.6 +68833,92.0,9.0,9.0,10.0,10.0,9.0,9.0,268,7.04 +50762,93.0,9.0,10.0,10.0,10.0,9.0,9.0,8,0.21 +68318,98.0,10.0,10.0,9.0,10.0,9.0,10.0,10,0.27 +29893,93.0,10.0,10.0,10.0,10.0,9.0,8.0,3,0.08 +14874,,,,,,,,0, +52071,96.0,10.0,10.0,10.0,10.0,9.0,10.0,42,1.09 +14667,97.0,10.0,9.0,10.0,10.0,10.0,10.0,36,0.96 +61401,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.39 +56727,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +26513,100.0,10.0,9.0,9.0,9.0,9.0,9.0,3,0.08 +21015,,,,,,,,0, +1197,87.0,9.0,8.0,8.0,9.0,9.0,8.0,9,0.4 +47603,94.0,9.0,9.0,10.0,10.0,9.0,10.0,29,5.96 +56577,,,,,,,,0, +67863,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.57 +44806,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +28964,80.0,,,,,,,1,0.03 +64517,98.0,10.0,10.0,10.0,10.0,10.0,10.0,126,3.3 +6633,95.0,10.0,9.0,10.0,10.0,10.0,10.0,63,1.66 +47994,,,,,,,,0, +6807,100.0,10.0,10.0,10.0,10.0,10.0,10.0,36,0.99 +14289,97.0,10.0,10.0,10.0,10.0,9.0,10.0,49,1.32 +57973,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.19 +26632,100.0,10.0,10.0,10.0,10.0,10.0,10.0,66,1.85 +53510,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +66811,96.0,10.0,10.0,10.0,10.0,9.0,10.0,79,2.09 +68909,96.0,9.0,10.0,10.0,10.0,10.0,9.0,8,0.21 +43466,,,,,,,,0, +71194,94.0,10.0,10.0,10.0,10.0,10.0,10.0,40,1.08 +40406,94.0,10.0,9.0,10.0,10.0,8.0,9.0,7,0.18 +1865,97.0,10.0,9.0,10.0,10.0,9.0,10.0,46,1.27 +39806,,,,,,,,0, +4215,97.0,10.0,9.0,10.0,10.0,9.0,10.0,18,0.47 +35214,91.0,10.0,9.0,10.0,10.0,9.0,9.0,10,0.28 +71773,98.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.29 +69565,98.0,10.0,10.0,10.0,10.0,10.0,10.0,32,0.87 +30070,50.0,10.0,7.0,9.0,10.0,9.0,6.0,3,0.08 +10684,95.0,10.0,10.0,10.0,10.0,9.0,10.0,15,0.39 +71158,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.11 +16029,90.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +71125,97.0,10.0,10.0,10.0,10.0,9.0,10.0,91,3.05 +37135,78.0,8.0,7.0,8.0,9.0,7.0,7.0,13,0.34 +23314,,,,,,,,0, +27776,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.06 +16563,93.0,10.0,9.0,10.0,10.0,10.0,9.0,12,0.31 +7445,,,,,,,,0, +67150,93.0,10.0,9.0,10.0,10.0,10.0,9.0,13,0.34 +66049,100.0,9.0,8.0,9.0,9.0,9.0,8.0,2,0.06 +65584,,,,,,,,0, +76689,94.0,9.0,10.0,10.0,10.0,9.0,9.0,42,1.58 +52770,91.0,9.0,9.0,10.0,9.0,9.0,9.0,29,0.75 +43867,85.0,9.0,8.0,9.0,9.0,9.0,9.0,170,4.59 +27464,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +43815,86.0,10.0,10.0,8.0,10.0,10.0,10.0,7,0.19 +37627,99.0,10.0,10.0,10.0,10.0,10.0,10.0,57,1.49 +23047,80.0,8.0,9.0,8.0,8.0,10.0,9.0,8,0.24 +75167,87.0,9.0,8.0,10.0,10.0,10.0,9.0,42,1.14 +40216,96.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.32 +72770,100.0,10.0,10.0,,10.0,,,1,0.04 +28269,92.0,9.0,9.0,10.0,10.0,9.0,9.0,45,1.17 +21706,,,,,,,,0, +34662,90.0,9.0,8.0,10.0,10.0,9.0,9.0,23,0.6 +60413,,,,,,,,2,0.05 +71895,96.0,10.0,10.0,10.0,10.0,10.0,9.0,9,0.23 +20249,93.0,9.0,10.0,10.0,10.0,9.0,10.0,36,0.95 +10963,93.0,9.0,9.0,9.0,9.0,9.0,9.0,3,0.09 +34669,,,,,,,,0, +57900,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,1.86 +56963,,,,,,,,0, +59131,97.0,10.0,10.0,10.0,10.0,10.0,10.0,81,2.18 +33646,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.22 +73394,80.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.03 +53693,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.28 +2511,,,,,,,,0, +22668,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +47705,80.0,7.0,8.0,10.0,9.0,10.0,8.0,6,0.89 +70466,,,,,,,,0, +29896,,,,,,,,0, +45064,97.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.34 +45273,,,,,,,,0, +49734,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.2 +13747,,,,,,,,0, +22141,87.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.08 +38642,80.0,9.0,8.0,10.0,9.0,9.0,9.0,13,0.35 +72397,,,,,,,,0, +74587,95.0,10.0,10.0,10.0,10.0,10.0,9.0,44,1.15 +74801,40.0,4.0,4.0,9.0,6.0,9.0,4.0,2,0.05 +61869,,,,,,,,0, +22717,60.0,4.0,4.0,10.0,8.0,10.0,6.0,1,0.03 +26664,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.03 +59584,100.0,10.0,10.0,10.0,10.0,9.0,9.0,4,0.11 +43925,60.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +53728,96.0,10.0,9.0,10.0,10.0,10.0,9.0,40,1.06 +38672,99.0,10.0,10.0,10.0,10.0,9.0,10.0,27,0.71 +63851,82.0,8.0,9.0,9.0,9.0,8.0,9.0,25,0.66 +46015,96.0,10.0,9.0,10.0,10.0,9.0,10.0,5,0.13 +19724,100.0,10.0,10.0,10.0,10.0,10.0,10.0,74,1.96 +44730,95.0,10.0,9.0,10.0,10.0,10.0,10.0,106,2.84 +23784,98.0,10.0,10.0,10.0,10.0,10.0,10.0,20,0.64 +71889,96.0,10.0,10.0,10.0,10.0,10.0,9.0,85,2.22 +33271,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.11 +23421,100.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.22 +20799,70.0,8.0,9.0,9.0,8.0,9.0,6.0,2,0.05 +65738,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.06 +60874,,,,,,,,0, +13454,,,,,,,,0, +46345,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.03 +15858,,,,,,,,0, +23360,95.0,10.0,9.0,10.0,10.0,10.0,9.0,21,0.55 +52759,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.13 +41630,98.0,10.0,10.0,10.0,10.0,10.0,10.0,44,1.66 +42821,93.0,10.0,10.0,10.0,9.0,10.0,9.0,4,0.11 +8956,,,,,,,,1,0.03 +35509,,,,,,,,1,0.03 +52743,91.0,9.0,9.0,9.0,9.0,9.0,9.0,46,1.21 +58595,91.0,9.0,8.0,10.0,10.0,9.0,9.0,279,7.33 +19529,89.0,9.0,9.0,9.0,9.0,8.0,9.0,8,0.21 +62192,,,,,,,,0, +42066,,,,,,,,0, +57517,91.0,9.0,10.0,10.0,9.0,9.0,9.0,203,5.31 +31461,90.0,9.0,10.0,10.0,10.0,9.0,9.0,223,5.82 +17534,,,,,,,,0, +27794,98.0,10.0,10.0,10.0,10.0,10.0,10.0,71,1.99 +49436,91.0,9.0,9.0,9.0,9.0,9.0,9.0,8,0.21 +6268,89.0,9.0,9.0,9.0,9.0,9.0,9.0,161,4.73 +21634,,,,,,,,0, +74848,83.0,9.0,8.0,10.0,10.0,9.0,8.0,152,3.97 +16907,97.0,10.0,9.0,10.0,10.0,10.0,9.0,7,0.19 +9270,78.0,8.0,8.0,9.0,9.0,9.0,8.0,134,3.53 +48878,40.0,8.0,4.0,10.0,10.0,6.0,4.0,1,0.03 +24614,97.0,10.0,10.0,10.0,10.0,10.0,10.0,55,3.79 +75037,80.0,10.0,6.0,10.0,10.0,8.0,8.0,2,0.06 +30194,99.0,10.0,10.0,10.0,10.0,10.0,10.0,31,0.86 +30916,,,,,,,,0, +52506,,,,,,,,0, +19779,80.0,9.0,8.0,10.0,10.0,10.0,9.0,2,0.06 +49349,99.0,10.0,10.0,10.0,10.0,9.0,10.0,14,0.45 +34117,97.0,10.0,10.0,10.0,10.0,9.0,10.0,51,1.43 +3371,,,,,,,,0, +50820,99.0,10.0,10.0,10.0,10.0,10.0,10.0,77,2.02 +17150,97.0,10.0,10.0,10.0,10.0,10.0,10.0,53,1.38 +76049,99.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.42 +68387,99.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.43 +67360,,,,,,,,0, +23942,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.03 +42998,78.0,9.0,9.0,10.0,9.0,9.0,8.0,17,0.63 +33388,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +42067,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +9569,80.0,7.0,8.0,7.0,8.0,10.0,6.0,5,0.14 +34792,93.0,9.0,10.0,10.0,9.0,10.0,9.0,16,0.45 +17171,73.0,8.0,8.0,7.0,7.0,9.0,8.0,16,0.58 +54469,95.0,10.0,10.0,10.0,10.0,9.0,9.0,117,3.04 +29194,99.0,10.0,10.0,10.0,10.0,9.0,10.0,22,0.67 +34500,87.0,10.0,7.0,10.0,9.0,10.0,9.0,17,0.63 +60835,98.0,10.0,10.0,10.0,10.0,10.0,10.0,88,2.3 +3061,,,,,,,,0, +16403,93.0,9.0,9.0,10.0,10.0,9.0,9.0,17,0.45 +13051,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.16 +3961,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +68590,90.0,9.0,10.0,10.0,10.0,9.0,10.0,4,0.11 +65439,97.0,10.0,10.0,10.0,10.0,9.0,10.0,25,0.8 +42279,,,,,,,,0, +19926,,,,,,,,0, +67553,,,,,,,,0, +14146,95.0,10.0,10.0,10.0,10.0,10.0,10.0,115,3.01 +27436,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.07 +25488,,,,,,,,0, +21666,100.0,10.0,10.0,10.0,10.0,8.0,9.0,4,0.17 +26663,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.15 +50860,94.0,10.0,9.0,9.0,10.0,9.0,9.0,92,2.46 +55820,,,,,,,,0, +32888,86.0,9.0,9.0,9.0,9.0,8.0,9.0,10,0.66 +32866,99.0,10.0,10.0,10.0,10.0,10.0,10.0,153,3.98 +16056,97.0,10.0,9.0,10.0,10.0,10.0,9.0,49,2.32 +61923,80.0,10.0,8.0,10.0,10.0,8.0,10.0,1,0.03 +18546,,,,,,,,0, +8200,40.0,10.0,2.0,10.0,8.0,10.0,4.0,1,0.03 +66388,80.0,2.0,4.0,6.0,10.0,4.0,6.0,1,0.03 +2967,99.0,10.0,10.0,10.0,10.0,9.0,10.0,17,0.45 +66422,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.05 +65067,80.0,6.0,10.0,10.0,10.0,4.0,8.0,1,0.03 +66950,99.0,10.0,10.0,10.0,10.0,10.0,10.0,24,0.66 +23210,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.24 +63330,,,,,,,,0, +19594,85.0,9.0,9.0,8.0,8.0,9.0,9.0,11,0.29 +31495,,,,,,,,0, +25017,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.17 +67230,80.0,9.0,7.0,10.0,9.0,9.0,8.0,56,1.47 +9929,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.43 +45574,95.0,10.0,10.0,10.0,10.0,10.0,10.0,36,1.3 +57604,80.0,10.0,8.0,10.0,10.0,8.0,8.0,1,0.03 +69593,,,,,,,,0, +47271,97.0,10.0,10.0,10.0,10.0,10.0,10.0,12,2.08 +32844,98.0,10.0,10.0,10.0,10.0,10.0,10.0,24,0.65 +23669,97.0,10.0,10.0,10.0,10.0,9.0,10.0,44,1.16 +26795,87.0,7.0,10.0,10.0,9.0,8.0,9.0,3,0.08 +41186,,,,,,,,0, +23227,89.0,9.0,9.0,10.0,10.0,10.0,9.0,22,0.68 +62300,97.0,10.0,10.0,10.0,10.0,10.0,10.0,23,0.61 +68853,96.0,10.0,10.0,10.0,10.0,10.0,9.0,58,1.55 +77065,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.24 +54744,100.0,10.0,10.0,10.0,10.0,9.0,10.0,11,0.32 +23255,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.05 +42915,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.58 +63465,,,,,,,,0, +70507,,,,,,,,0, +22908,98.0,10.0,10.0,10.0,10.0,10.0,10.0,97,2.55 +21605,99.0,10.0,10.0,10.0,10.0,10.0,10.0,55,1.44 +15952,98.0,10.0,10.0,10.0,10.0,9.0,10.0,29,0.76 +2591,100.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.54 +30422,60.0,8.0,4.0,8.0,8.0,8.0,6.0,1,0.03 +59256,90.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.1 +11335,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +54130,,,,,,,,0, +32765,98.0,10.0,10.0,10.0,10.0,9.0,9.0,40,1.06 +41169,,,,,,,,0, +54267,93.0,9.0,9.0,10.0,10.0,9.0,10.0,27,0.71 +34226,80.0,10.0,10.0,10.0,10.0,8.0,10.0,1,1.0 +3079,89.0,9.0,9.0,9.0,10.0,10.0,9.0,59,1.54 +66781,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.42 +53323,88.0,9.0,9.0,9.0,9.0,10.0,9.0,172,4.53 +25579,99.0,10.0,10.0,10.0,10.0,10.0,10.0,57,1.55 +64019,,,,,,,,0, +75341,,,,,,,,0, +15189,95.0,10.0,10.0,10.0,9.0,10.0,10.0,5,0.21 +6473,,,,,,,,0, +1575,,,,,,,,0, +13132,80.0,10.0,6.0,10.0,10.0,10.0,8.0,1,0.03 +35855,95.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.11 +6518,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.05 +69058,,,,,,,,0, +23587,87.0,10.0,9.0,9.0,9.0,9.0,9.0,3,0.08 +57175,92.0,9.0,9.0,9.0,9.0,10.0,9.0,31,0.82 +9473,99.0,10.0,10.0,10.0,10.0,10.0,10.0,64,2.35 +52404,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.11 +7139,93.0,9.0,8.0,9.0,10.0,10.0,9.0,8,0.21 +34845,96.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.14 +15216,95.0,10.0,10.0,10.0,10.0,10.0,10.0,19,0.51 +27326,98.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.42 +46772,90.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.19 +40609,,,,,,,,0, +74288,,,,,,,,0, +28504,,,,,,,,0, +20065,100.0,10.0,10.0,10.0,10.0,9.0,10.0,10,0.72 +57647,,,,,,,,0, +61180,95.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.1 +69484,96.0,10.0,9.0,10.0,10.0,10.0,9.0,18,0.49 +32801,95.0,10.0,10.0,10.0,10.0,10.0,9.0,16,0.44 +30380,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.57 +38332,85.0,9.0,9.0,9.0,9.0,10.0,9.0,19,0.5 +47968,90.0,10.0,10.0,10.0,10.0,7.0,9.0,2,0.05 +37376,,,,,,,,2,0.07 +44646,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +46084,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.38 +12866,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +12722,,,,,,,,0, +18604,91.0,9.0,9.0,10.0,10.0,9.0,9.0,38,1.04 +16483,60.0,8.0,4.0,6.0,10.0,6.0,6.0,1,0.03 +5552,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.17 +51791,,,,,,,,0, +16334,91.0,10.0,9.0,10.0,10.0,9.0,9.0,49,1.29 +54786,,,,,,,,0, +14196,88.0,9.0,8.0,9.0,9.0,9.0,9.0,67,1.76 +30265,98.0,10.0,10.0,10.0,10.0,10.0,10.0,29,0.76 +24109,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +13695,93.0,10.0,10.0,10.0,9.0,10.0,10.0,182,4.85 +57640,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.11 +2295,,,,,,,,0, +22737,92.0,10.0,9.0,10.0,10.0,9.0,9.0,30,0.8 +20863,90.0,9.0,8.0,10.0,10.0,10.0,10.0,2,0.06 +47774,100.0,10.0,9.0,10.0,10.0,10.0,9.0,2,0.36 +35390,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.05 +10462,100.0,10.0,10.0,10.0,10.0,9.0,9.0,2,0.05 +24206,87.0,9.0,8.0,10.0,9.0,7.0,9.0,5,0.13 +14191,98.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.5 +44237,,,,,,,,1,0.03 +56384,94.0,10.0,9.0,10.0,10.0,10.0,10.0,13,2.34 +66028,93.0,10.0,9.0,10.0,10.0,9.0,9.0,13,0.44 +39757,90.0,10.0,8.0,9.0,10.0,8.0,9.0,10,0.35 +72164,89.0,9.0,9.0,9.0,9.0,10.0,9.0,92,2.48 +26297,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.61 +34727,89.0,9.0,9.0,9.0,9.0,8.0,9.0,11,0.29 +17089,98.0,10.0,10.0,10.0,10.0,10.0,10.0,19,0.51 +40060,97.0,10.0,10.0,10.0,10.0,10.0,10.0,21,0.57 +31580,93.0,10.0,9.0,9.0,10.0,10.0,9.0,8,0.22 +50658,88.0,9.0,9.0,9.0,9.0,8.0,9.0,75,2.84 +8202,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.34 +59188,,,,,,,,0, +18354,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.14 +73588,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +36611,,,,,,,,2,0.05 +60731,97.0,10.0,9.0,10.0,10.0,9.0,9.0,11,0.33 +25530,73.0,9.0,7.0,10.0,10.0,9.0,9.0,4,0.11 +45851,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +32053,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.35 +66979,90.0,9.0,9.0,10.0,9.0,9.0,9.0,23,0.61 +26644,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +42210,,,,,,,,0, +43695,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.43 +17838,,,,,,,,0, +68598,99.0,10.0,10.0,10.0,10.0,10.0,10.0,34,0.89 +12203,,,,,,,,1,0.03 +40012,,,,,,,,1,0.03 +12964,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +69006,,,,,,,,0, +38058,99.0,10.0,10.0,10.0,10.0,10.0,10.0,29,0.79 +35713,100.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.12 +5381,,,,,,,,0, +2460,,,,,,,,0, +51867,93.0,10.0,9.0,10.0,10.0,10.0,9.0,207,5.45 +27013,,,,,,,,0, +64089,100.0,10.0,10.0,10.0,10.0,10.0,10.0,27,0.83 +19855,97.0,10.0,9.0,10.0,10.0,10.0,9.0,35,0.99 +54964,97.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.37 +45594,,,,,,,,0, +30992,97.0,10.0,10.0,10.0,10.0,9.0,9.0,12,0.33 +21415,100.0,10.0,10.0,10.0,10.0,10.0,9.0,11,0.29 +1258,95.0,10.0,9.0,10.0,10.0,9.0,9.0,28,0.75 +71878,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +10751,98.0,10.0,10.0,10.0,10.0,10.0,10.0,88,2.34 +68437,,,,,,,,0, +53228,97.0,10.0,10.0,10.0,10.0,10.0,9.0,12,0.37 +31078,,,,,,,,0, +37703,,,,,,,,0, +28254,90.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.09 +30028,87.0,9.0,9.0,10.0,9.0,9.0,9.0,14,0.39 +71959,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.45 +16523,80.0,9.0,7.0,10.0,9.0,9.0,8.0,5,0.14 +58484,97.0,10.0,10.0,10.0,10.0,10.0,8.0,6,1.21 +1377,96.0,10.0,10.0,10.0,10.0,10.0,10.0,33,0.93 +75916,,,,,,,,0, +5157,97.0,10.0,10.0,10.0,10.0,10.0,9.0,46,1.24 +2222,,,,,,,,0, +25378,,,,,,,,0, +21069,97.0,10.0,9.0,10.0,10.0,9.0,10.0,38,1.01 +23404,97.0,10.0,10.0,10.0,10.0,9.0,10.0,82,2.14 +37615,,,,,,,,0, +20548,96.0,10.0,9.0,10.0,10.0,9.0,9.0,12,0.33 +33285,96.0,10.0,10.0,10.0,10.0,10.0,10.0,67,1.79 +2254,,,,,,,,1,0.03 +46148,,,,,,,,0, +70038,100.0,10.0,9.0,10.0,10.0,9.0,10.0,7,0.18 +66026,90.0,9.0,7.0,10.0,9.0,10.0,9.0,2,0.05 +34397,100.0,9.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +12630,88.0,9.0,8.0,10.0,10.0,9.0,9.0,70,1.89 +77054,86.0,9.0,9.0,9.0,9.0,9.0,9.0,118,3.27 +58111,93.0,9.0,9.0,9.0,9.0,9.0,9.0,3,0.08 +68521,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.24 +60850,93.0,10.0,10.0,10.0,9.0,10.0,10.0,3,0.08 +14579,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +36021,,,,,,,,0, +37218,86.0,9.0,9.0,10.0,10.0,10.0,9.0,10,0.36 +18987,98.0,10.0,9.0,10.0,10.0,10.0,10.0,8,0.21 +67885,60.0,10.0,8.0,10.0,4.0,10.0,8.0,1,0.03 +20815,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.51 +64923,97.0,10.0,10.0,10.0,10.0,10.0,10.0,35,0.94 +47867,99.0,10.0,10.0,10.0,10.0,10.0,10.0,117,3.17 +50106,98.0,10.0,10.0,10.0,10.0,8.0,9.0,13,2.07 +13289,96.0,10.0,10.0,10.0,10.0,9.0,10.0,11,0.3 +34814,100.0,9.0,10.0,10.0,10.0,9.0,9.0,4,0.13 +22128,89.0,9.0,9.0,9.0,10.0,10.0,9.0,24,0.67 +2084,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.06 +12854,97.0,10.0,10.0,10.0,10.0,10.0,10.0,51,1.35 +63066,96.0,10.0,10.0,10.0,10.0,10.0,10.0,58,1.55 +73104,,,,,,,,0, +803,93.0,10.0,9.0,10.0,10.0,10.0,9.0,19,0.51 +37534,78.0,8.0,8.0,9.0,9.0,9.0,8.0,40,1.05 +21748,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.25 +11081,93.0,9.0,9.0,10.0,10.0,10.0,9.0,49,1.29 +14561,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.25 +5271,98.0,10.0,9.0,10.0,10.0,9.0,10.0,10,0.75 +58992,,,,,,,,0, +52252,97.0,10.0,10.0,10.0,10.0,10.0,9.0,58,1.87 +13669,96.0,10.0,9.0,10.0,10.0,10.0,10.0,33,2.41 +1841,90.0,9.0,9.0,9.0,10.0,10.0,9.0,53,1.41 +21239,90.0,10.0,8.0,9.0,10.0,9.0,9.0,8,0.22 +39947,,,,,,,,0, +16494,98.0,9.0,10.0,10.0,10.0,9.0,10.0,63,1.65 +54598,,,,,,,,1,0.03 +10404,97.0,10.0,10.0,10.0,10.0,10.0,9.0,37,2.19 +49184,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +44250,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +66996,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +23079,100.0,10.0,9.0,10.0,10.0,10.0,10.0,10,0.26 +23470,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.21 +70094,93.0,9.0,10.0,10.0,10.0,10.0,10.0,10,0.94 +23,,,,,,,,0, +52159,80.0,,8.0,,8.0,,,3,0.08 +71913,90.0,9.0,8.0,10.0,10.0,9.0,9.0,2,0.05 +36379,,,,,,,,0, +50479,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +41364,,,,,,,,0, +73060,98.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.49 +30146,100.0,10.0,10.0,10.0,10.0,9.0,10.0,12,0.32 +16582,87.0,10.0,8.0,10.0,10.0,8.0,8.0,3,0.08 +38550,97.0,10.0,10.0,10.0,10.0,10.0,10.0,23,0.6 +65138,95.0,10.0,9.0,10.0,10.0,10.0,10.0,22,0.58 +20313,,,,,,,,1,0.03 +22278,,,,,,,,0, +34940,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.03 +70132,99.0,10.0,10.0,10.0,10.0,10.0,10.0,80,2.19 +73356,99.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.49 +49942,83.0,9.0,9.0,9.0,9.0,9.0,9.0,7,0.2 +34344,,,,,,,,0, +59710,94.0,9.0,10.0,10.0,10.0,10.0,9.0,18,0.53 +51011,97.0,10.0,10.0,10.0,10.0,10.0,10.0,19,0.57 +23897,,,,,,,,0, +60033,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.13 +63639,,,,,,,,0, +75486,84.0,8.0,9.0,10.0,10.0,10.0,9.0,11,0.32 +59105,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.11 +73109,90.0,9.0,8.0,10.0,9.0,8.0,9.0,12,0.32 +5524,88.0,10.0,9.0,9.0,10.0,8.0,8.0,5,0.13 +57920,,,,,,,,0, +35095,96.0,10.0,9.0,10.0,10.0,9.0,10.0,20,0.55 +67573,,,,,,,,0, +17123,,,,,,,,0, +22878,,,,,,,,0, +6636,,,,,,,,0, +37459,89.0,10.0,9.0,9.0,10.0,9.0,9.0,45,1.26 +44972,,,,,,,,0, +68457,89.0,10.0,9.0,9.0,9.0,9.0,9.0,56,1.53 +51835,,,,,,,,0, +59235,,,,,,,,0, +3771,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +19807,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +33505,80.0,8.0,10.0,4.0,6.0,10.0,8.0,1,0.03 +38010,98.0,10.0,10.0,10.0,10.0,10.0,10.0,67,2.07 +16794,93.0,10.0,9.0,10.0,10.0,9.0,9.0,25,0.69 +3560,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.11 +27655,97.0,10.0,10.0,10.0,10.0,10.0,10.0,187,4.95 +66142,99.0,10.0,10.0,10.0,10.0,9.0,10.0,41,1.09 +77049,87.0,9.0,9.0,10.0,10.0,9.0,9.0,3,0.08 +45188,96.0,10.0,9.0,10.0,10.0,10.0,10.0,9,0.24 +36887,93.0,10.0,10.0,10.0,10.0,10.0,9.0,83,6.62 +14704,,,,,,,,0, +21452,,,,,,,,0, +68418,90.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.38 +53144,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.09 +64245,93.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.2 +53398,100.0,10.0,10.0,10.0,10.0,10.0,10.0,28,0.94 +10330,83.0,9.0,7.0,9.0,10.0,10.0,9.0,11,0.6 +44804,,,,,,,,1,0.03 +3641,95.0,9.0,10.0,10.0,10.0,10.0,10.0,5,0.13 +36134,,,,,,,,0, +61091,90.0,10.0,10.0,7.0,10.0,10.0,9.0,4,0.23 +47006,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +47826,,,,,,,,0, +35944,100.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.45 +50729,100.0,10.0,9.0,10.0,10.0,10.0,9.0,2,0.07 +20558,94.0,10.0,10.0,9.0,9.0,10.0,10.0,8,0.23 +46243,89.0,9.0,9.0,9.0,10.0,10.0,9.0,12,0.34 +26764,97.0,10.0,10.0,10.0,10.0,9.0,10.0,13,0.36 +45894,87.0,8.0,7.0,9.0,10.0,9.0,7.0,3,0.08 +12411,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.03 +38666,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.21 +58362,,,,,,,,0, +2442,100.0,9.0,10.0,10.0,10.0,10.0,9.0,7,0.24 +71514,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.25 +50904,92.0,10.0,10.0,8.0,9.0,10.0,9.0,21,0.58 +73608,97.0,10.0,9.0,10.0,10.0,10.0,10.0,19,0.52 +10727,,,,,,,,0, +43943,91.0,9.0,9.0,10.0,9.0,9.0,10.0,7,0.18 +16049,98.0,10.0,10.0,10.0,10.0,10.0,10.0,37,1.17 +72033,95.0,10.0,10.0,10.0,10.0,10.0,9.0,163,4.35 +52578,79.0,8.0,8.0,10.0,10.0,10.0,8.0,21,0.59 +34718,,,,,,,,0, +73718,,,,,,,,0, +19259,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.27 +19960,88.0,9.0,9.0,10.0,10.0,10.0,9.0,190,5.15 +56014,93.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.1 +7975,99.0,10.0,10.0,10.0,10.0,9.0,10.0,38,1.03 +17944,86.0,9.0,9.0,9.0,9.0,9.0,9.0,132,3.7 +5389,92.0,9.0,8.0,10.0,10.0,9.0,9.0,6,0.17 +47167,91.0,9.0,9.0,10.0,10.0,9.0,9.0,22,0.59 +59724,98.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.52 +34164,95.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.25 +24408,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +57477,80.0,6.0,8.0,10.0,10.0,10.0,6.0,1,0.03 +17649,80.0,10.0,8.0,10.0,10.0,8.0,6.0,2,0.06 +35328,96.0,10.0,10.0,10.0,10.0,10.0,10.0,81,2.16 +33704,93.0,10.0,10.0,10.0,10.0,10.0,9.0,19,0.53 +34322,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.49 +9079,80.0,10.0,6.0,6.0,8.0,10.0,8.0,1,0.03 +49716,93.0,10.0,9.0,10.0,10.0,9.0,9.0,48,1.27 +43659,,,,,,,,0, +44641,70.0,10.0,8.0,10.0,10.0,7.0,8.0,2,0.06 +57799,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.19 +32818,,,,,,,,0, +11483,100.0,10.0,10.0,10.0,10.0,6.0,10.0,1,0.42 +47384,,,,,,,,0, +20460,85.0,9.0,8.0,10.0,9.0,9.0,10.0,4,0.11 +48461,97.0,10.0,10.0,10.0,10.0,10.0,10.0,75,2.05 +33097,88.0,9.0,8.0,10.0,9.0,9.0,9.0,16,0.93 +34199,95.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.11 +60762,92.0,10.0,9.0,9.0,10.0,10.0,9.0,7,0.2 +10152,99.0,10.0,10.0,10.0,10.0,9.0,10.0,72,1.93 +10057,,,,,,,,0, +63884,94.0,9.0,10.0,9.0,10.0,10.0,9.0,14,0.37 +4807,98.0,10.0,10.0,10.0,10.0,10.0,10.0,28,0.74 +6137,96.0,10.0,10.0,10.0,10.0,9.0,10.0,92,2.43 +51839,95.0,10.0,9.0,10.0,10.0,9.0,10.0,14,0.44 +11964,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +45717,100.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.42 +41465,78.0,8.0,8.0,8.0,8.0,9.0,8.0,16,0.43 +56548,90.0,9.0,9.0,10.0,10.0,9.0,9.0,2,0.05 +18888,97.0,10.0,10.0,10.0,10.0,10.0,10.0,65,1.89 +56887,,,,,,,,0, +56225,,,,,,,,0, +70065,94.0,10.0,9.0,10.0,10.0,9.0,9.0,19,0.51 +45277,,,,,,,,0, +47095,95.0,10.0,10.0,10.0,10.0,9.0,9.0,23,0.61 +12847,,,,,,,,0, +51843,86.0,10.0,10.0,9.0,9.0,9.0,9.0,8,0.24 +54689,80.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.03 +64846,93.0,9.0,9.0,10.0,10.0,10.0,10.0,16,0.44 +41791,94.0,10.0,10.0,10.0,10.0,10.0,10.0,53,1.4 +52124,84.0,10.0,10.0,9.0,8.0,9.0,9.0,5,0.33 +57138,81.0,9.0,9.0,9.0,9.0,8.0,8.0,82,2.22 +58025,94.0,10.0,9.0,10.0,10.0,9.0,9.0,15,0.42 +65372,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.15 +34266,89.0,9.0,9.0,9.0,9.0,9.0,9.0,149,3.92 +61351,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.08 +73075,98.0,10.0,10.0,10.0,10.0,9.0,10.0,24,0.81 +9488,80.0,8.0,6.0,10.0,10.0,10.0,6.0,1,0.03 +40855,,,,,,,,0, +23322,93.0,9.0,9.0,10.0,10.0,9.0,10.0,48,1.26 +55164,96.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.46 +42145,90.0,9.0,9.0,10.0,9.0,9.0,9.0,170,4.48 +11913,90.0,9.0,9.0,10.0,10.0,9.0,9.0,104,2.91 +39627,,,,,,,,0, +7939,,,,,,,,0, +68961,,,,,,,,0, +68869,100.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.53 +2435,,,,,,,,0, +46674,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +39349,92.0,9.0,9.0,10.0,9.0,10.0,9.0,83,2.27 +28481,,,,,,,,0, +53345,,,,,,,,0, +55635,92.0,10.0,9.0,9.0,10.0,10.0,9.0,16,0.49 +41699,,,,,,,,0, +1496,,,,,,,,0, +44682,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +49448,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +22559,93.0,9.0,10.0,9.0,10.0,10.0,10.0,3,0.12 +71872,,,,,,,,0, +51341,95.0,10.0,9.0,9.0,10.0,9.0,9.0,20,0.84 +15215,93.0,9.0,9.0,9.0,9.0,10.0,9.0,8,0.24 +34473,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +27939,93.0,9.0,9.0,9.0,9.0,10.0,9.0,37,1.04 +58433,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.25 +38887,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.27 +14665,96.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.2 +4698,91.0,9.0,9.0,10.0,10.0,10.0,10.0,13,0.35 +62242,,,,,,,,0, +58509,90.0,10.0,10.0,9.0,10.0,9.0,10.0,2,0.05 +61354,93.0,10.0,10.0,10.0,10.0,9.0,9.0,14,0.4 +57079,89.0,9.0,9.0,9.0,9.0,10.0,9.0,87,2.3 +60932,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.06 +11164,99.0,10.0,10.0,10.0,10.0,10.0,9.0,61,2.47 +18624,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +35641,98.0,10.0,10.0,10.0,10.0,9.0,10.0,40,1.06 +16655,97.0,9.0,10.0,10.0,9.0,9.0,9.0,15,0.67 +42851,75.0,8.0,7.0,10.0,10.0,10.0,9.0,4,0.11 +76328,,,,,,,,0, +27347,86.0,9.0,7.0,9.0,10.0,9.0,9.0,32,0.94 +3916,97.0,10.0,10.0,10.0,10.0,9.0,10.0,508,13.5 +60839,,,,,,,,0, +75815,98.0,10.0,10.0,10.0,10.0,9.0,9.0,42,1.11 +10345,94.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.19 +64973,,,,,,,,0, +35694,88.0,10.0,8.0,10.0,10.0,10.0,8.0,8,0.22 +28681,,,,,,,,0, +26243,86.0,9.0,8.0,9.0,9.0,9.0,9.0,10,0.31 +14281,,,,,,,,0, +44862,,,,,,,,0, +47260,76.0,8.0,8.0,8.0,9.0,8.0,8.0,39,1.13 +73452,100.0,8.0,8.0,10.0,10.0,10.0,10.0,1,0.03 +45513,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +75314,100.0,10.0,10.0,10.0,10.0,9.0,10.0,15,0.4 +67853,86.0,9.0,8.0,10.0,10.0,8.0,9.0,10,0.28 +2474,98.0,10.0,9.0,10.0,10.0,10.0,10.0,174,4.6 +72803,98.0,10.0,10.0,10.0,10.0,10.0,10.0,59,1.57 +42778,83.0,9.0,9.0,9.0,9.0,9.0,8.0,74,2.12 +11130,,,,,,,,0, +27444,,,,,,,,0, +32002,90.0,10.0,9.0,9.0,9.0,9.0,9.0,157,4.23 +5400,,,,,,,,0, +40078,96.0,9.0,10.0,10.0,10.0,10.0,10.0,32,1.01 +61337,90.0,10.0,8.0,10.0,10.0,9.0,9.0,2,0.05 +4796,92.0,9.0,9.0,10.0,10.0,9.0,9.0,51,1.69 +18165,,,,,,,,0, +59691,91.0,9.0,9.0,10.0,10.0,9.0,9.0,39,1.03 +67449,80.0,9.0,7.0,10.0,10.0,10.0,8.0,3,0.08 +32763,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.11 +27945,96.0,10.0,9.0,10.0,10.0,10.0,9.0,20,0.54 +5468,,,,,,,,0, +28543,95.0,10.0,8.0,9.0,9.0,10.0,9.0,9,0.27 +69722,94.0,10.0,10.0,10.0,10.0,9.0,10.0,10,0.28 +69887,99.0,10.0,10.0,10.0,10.0,10.0,10.0,81,2.15 +684,94.0,10.0,9.0,10.0,10.0,9.0,10.0,131,3.54 +57446,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.34 +25143,96.0,10.0,9.0,10.0,10.0,9.0,9.0,19,0.52 +41558,96.0,10.0,10.0,9.0,10.0,10.0,9.0,9,0.24 +69126,93.0,10.0,9.0,10.0,10.0,10.0,10.0,9,0.24 +2578,80.0,8.0,8.0,9.0,10.0,9.0,8.0,33,1.3 +45420,,,,,,,,0, +38087,98.0,10.0,10.0,10.0,10.0,9.0,10.0,24,0.67 +68692,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.11 +50617,90.0,10.0,8.0,9.0,10.0,8.0,10.0,2,0.06 +64529,,,,,,,,1,0.03 +56638,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +33461,82.0,9.0,7.0,10.0,10.0,10.0,8.0,12,0.57 +41522,,,,,,,,0, +67619,87.0,9.0,7.0,10.0,10.0,10.0,9.0,3,0.09 +16967,100.0,10.0,10.0,10.0,10.0,10.0,10.0,86,2.51 +33993,,,,,,,,0, +70434,,,,,,,,1,0.03 +32545,,,,,,,,0, +13583,,,,,,,,0, +59067,97.0,10.0,10.0,10.0,10.0,10.0,9.0,14,0.39 +69283,96.0,10.0,10.0,10.0,10.0,10.0,10.0,29,0.83 +51774,100.0,9.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +60027,80.0,9.0,8.0,9.0,10.0,8.0,7.0,4,0.11 +40741,80.0,6.0,7.0,10.0,10.0,10.0,7.0,3,0.08 +22786,94.0,10.0,10.0,10.0,10.0,10.0,9.0,35,0.95 +16349,89.0,9.0,9.0,10.0,9.0,10.0,9.0,17,0.48 +49706,80.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.03 +61460,96.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.14 +54946,93.0,9.0,9.0,9.0,10.0,10.0,9.0,75,2.01 +54391,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.08 +48793,,,,,,,,0, +38653,,,,,,,,0, +29564,,,,,,,,0, +58820,,,,,,,,0, +46872,99.0,10.0,10.0,10.0,10.0,9.0,10.0,28,0.75 +16785,97.0,10.0,10.0,9.0,10.0,10.0,10.0,7,0.31 +55679,96.0,10.0,10.0,10.0,9.0,10.0,9.0,20,0.54 +49190,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.06 +27072,96.0,10.0,10.0,10.0,10.0,10.0,10.0,127,3.35 +38920,80.0,8.0,10.0,8.0,10.0,10.0,8.0,1,0.03 +42863,99.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.42 +72271,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +60190,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.21 +61888,,,,,,,,0, +67800,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +6623,100.0,9.0,9.0,10.0,10.0,10.0,10.0,7,0.2 +76418,90.0,10.0,9.0,10.0,10.0,10.0,9.0,2,0.06 +69267,,,,,,,,0, +6247,93.0,10.0,8.0,10.0,10.0,10.0,9.0,6,0.17 +47397,100.0,10.0,10.0,9.0,10.0,10.0,9.0,6,0.16 +15203,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.16 +35719,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.21 +37354,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +62425,98.0,10.0,10.0,10.0,10.0,9.0,9.0,10,0.27 +59470,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +5280,96.0,10.0,10.0,10.0,10.0,10.0,10.0,24,0.64 +26891,89.0,10.0,9.0,10.0,9.0,9.0,9.0,9,0.25 +65230,,,,,,,,0, +49124,92.0,9.0,9.0,10.0,9.0,9.0,9.0,30,0.98 +3676,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.06 +12112,97.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.16 +47542,,,,,,,,0, +71450,,,,,,,,0, +8945,100.0,4.0,10.0,10.0,10.0,6.0,6.0,1,0.09 +35753,,,,,,,,0, +76473,80.0,8.0,8.0,9.0,9.0,9.0,9.0,43,1.19 +56445,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.65 +70706,91.0,10.0,9.0,10.0,10.0,9.0,9.0,29,0.78 +64530,97.0,10.0,9.0,10.0,10.0,10.0,9.0,7,0.2 +21146,93.0,9.0,8.0,10.0,9.0,10.0,9.0,9,0.35 +1289,,,,,,,,0, +36381,96.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.36 +27119,88.0,9.0,8.0,9.0,10.0,9.0,9.0,16,0.42 +65825,,,,,,,,0, +7658,82.0,9.0,8.0,9.0,9.0,9.0,8.0,106,2.82 +71603,,,,,,,,0, +10022,86.0,9.0,9.0,9.0,9.0,10.0,9.0,119,3.14 +20821,99.0,10.0,10.0,10.0,10.0,10.0,10.0,38,1.02 +70995,96.0,10.0,10.0,9.0,10.0,10.0,9.0,11,0.29 +12215,95.0,10.0,10.0,10.0,10.0,10.0,9.0,37,1.01 +68221,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.16 +64536,96.0,10.0,10.0,10.0,10.0,10.0,10.0,86,2.34 +70985,86.0,9.0,9.0,9.0,9.0,9.0,9.0,115,3.07 +69775,,,,,,,,0, +43296,80.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.03 +1938,89.0,9.0,9.0,10.0,9.0,9.0,9.0,148,3.92 +64891,84.0,9.0,9.0,9.0,9.0,9.0,9.0,120,3.17 +21330,87.0,9.0,9.0,9.0,9.0,9.0,9.0,144,3.81 +7181,86.0,9.0,9.0,9.0,9.0,9.0,9.0,140,3.72 +75353,,,,,,,,0, +54746,94.0,10.0,10.0,10.0,10.0,9.0,10.0,22,0.58 +33182,98.0,10.0,9.0,10.0,10.0,10.0,10.0,10,0.32 +39431,,,,,,,,0, +67904,94.0,10.0,10.0,10.0,10.0,9.0,10.0,39,3.05 +62038,97.0,9.0,10.0,10.0,10.0,9.0,10.0,8,2.76 +54690,96.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.16 +56805,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.26 +49003,100.0,,10.0,,10.0,,,1,0.03 +8403,100.0,10.0,9.0,10.0,10.0,10.0,10.0,7,0.62 +18505,,,,,,,,0, +7163,93.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.11 +5387,,,,,,,,0, +34418,80.0,8.0,8.0,9.0,9.0,9.0,8.0,166,4.43 +8266,98.0,10.0,10.0,10.0,10.0,10.0,10.0,24,0.77 +14677,99.0,10.0,10.0,10.0,10.0,10.0,10.0,23,0.98 +45403,80.0,8.0,6.0,8.0,6.0,10.0,8.0,1,0.03 +24415,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.08 +1181,80.0,8.0,8.0,10.0,10.0,8.0,8.0,1,0.03 +3904,,,,,,,,0, +25560,85.0,9.0,8.0,10.0,9.0,9.0,9.0,8,0.25 +3568,,,,,,,,0, +53467,99.0,10.0,10.0,10.0,10.0,9.0,10.0,19,0.56 +9813,100.0,10.0,10.0,10.0,10.0,7.0,9.0,2,0.1 +54259,,,,,,,,1,0.03 +60004,,,,,,,,0, +69642,82.0,7.0,9.0,9.0,10.0,9.0,8.0,10,0.29 +35212,86.0,9.0,8.0,9.0,10.0,9.0,8.0,13,0.35 +57363,88.0,10.0,9.0,10.0,10.0,9.0,9.0,41,1.24 +72839,89.0,9.0,9.0,9.0,10.0,9.0,9.0,61,1.64 +18980,95.0,10.0,9.0,10.0,10.0,10.0,10.0,13,0.35 +68729,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.06 +52003,95.0,10.0,10.0,10.0,10.0,9.0,9.0,24,0.7 +48242,95.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.16 +56619,100.0,,10.0,,10.0,,,1,0.03 +25566,64.0,8.0,4.0,9.0,7.0,8.0,8.0,5,0.13 +75230,100.0,10.0,10.0,10.0,10.0,10.0,10.0,24,0.65 +33440,,,,,,,,0, +51236,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,1.05 +55839,,,,,,,,0, +24778,91.0,9.0,9.0,10.0,10.0,9.0,9.0,7,0.28 +71855,,,,,,,,0, +68648,88.0,9.0,9.0,10.0,10.0,9.0,9.0,5,0.15 +4193,,,,,,,,0, +16036,99.0,10.0,10.0,10.0,10.0,9.0,10.0,16,0.49 +28106,,,,,,,,0, +7822,94.0,9.0,10.0,10.0,10.0,10.0,9.0,52,1.46 +28353,91.0,10.0,9.0,10.0,10.0,10.0,9.0,30,0.91 +51697,95.0,9.0,10.0,9.0,9.0,9.0,10.0,13,0.35 +19566,91.0,9.0,9.0,9.0,9.0,9.0,9.0,47,1.46 +65343,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.22 +42914,,,,,,,,0, +28267,97.0,10.0,10.0,10.0,10.0,9.0,10.0,12,0.34 +50358,97.0,10.0,10.0,10.0,10.0,9.0,9.0,63,1.72 +50078,,,,,,,,3,0.08 +3200,,,,,,,,0, +32561,100.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.03 +65208,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +61960,,,,,,,,0, +4665,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.05 +2349,,,,,,,,0, +54443,,,,,,,,0, +66590,91.0,9.0,9.0,10.0,10.0,9.0,9.0,20,0.62 +21686,97.0,10.0,10.0,10.0,10.0,10.0,10.0,41,1.32 +6129,93.0,9.0,9.0,9.0,10.0,10.0,9.0,44,1.19 +22532,100.0,10.0,10.0,10.0,10.0,9.0,9.0,2,0.07 +63292,96.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.52 +32584,93.0,9.0,9.0,10.0,10.0,10.0,9.0,6,0.16 +75401,,,,,,,,0, +40185,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.06 +24765,82.0,9.0,8.0,9.0,10.0,9.0,8.0,58,1.53 +64592,,,,,,,,1,0.07 +17031,82.0,9.0,8.0,9.0,8.0,8.0,8.0,18,0.48 +43817,,,,,,,,0, +70234,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.3 +73954,,,,,,,,0, +4245,83.0,9.0,7.0,9.0,10.0,9.0,9.0,16,0.82 +2288,89.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.25 +56927,95.0,10.0,10.0,10.0,10.0,9.0,9.0,8,0.22 +30356,,,,,,,,0, +51112,,,,,,,,0, +43294,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.08 +44378,40.0,4.0,4.0,8.0,8.0,6.0,4.0,1,0.03 +70257,98.0,10.0,10.0,10.0,10.0,10.0,10.0,34,1.14 +12127,96.0,10.0,10.0,10.0,10.0,9.0,10.0,18,0.48 +58454,90.0,9.0,9.0,10.0,10.0,10.0,10.0,4,0.12 +61331,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.18 +41242,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.27 +32565,100.0,10.0,9.0,10.0,10.0,10.0,10.0,9,0.24 +34921,88.0,10.0,8.0,10.0,10.0,9.0,9.0,5,0.14 +26498,96.0,10.0,9.0,10.0,10.0,10.0,9.0,162,4.29 +47882,98.0,10.0,10.0,10.0,10.0,10.0,10.0,55,1.47 +27486,,,,,,,,0, +18271,83.0,9.0,7.0,9.0,9.0,9.0,8.0,37,0.99 +72929,97.0,10.0,10.0,10.0,10.0,9.0,10.0,12,0.33 +73671,85.0,9.0,8.0,9.0,9.0,10.0,9.0,145,3.85 +42344,100.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.18 +40801,95.0,10.0,10.0,10.0,10.0,9.0,10.0,4,2.55 +2638,96.0,10.0,9.0,10.0,10.0,10.0,9.0,10,0.33 +72425,98.0,10.0,10.0,10.0,10.0,9.0,10.0,78,2.09 +6536,60.0,5.0,6.0,5.0,7.0,9.0,6.0,4,0.12 +32810,,,,,,,,0, +38582,94.0,9.0,9.0,10.0,9.0,9.0,9.0,8,0.23 +13556,80.0,10.0,10.0,10.0,10.0,8.0,8.0,2,0.05 +46553,,,,,,,,0, +47153,96.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.29 +4158,100.0,10.0,6.0,10.0,10.0,8.0,8.0,1,0.03 +13189,95.0,10.0,10.0,10.0,10.0,10.0,9.0,156,4.15 +41600,,,,,,,,1,0.03 +70201,,,,,,,,0, +51632,,,,,,,,0, +26801,94.0,10.0,9.0,10.0,10.0,10.0,9.0,42,1.12 +46353,,,,,,,,0, +56781,,,,,,,,0, +57260,96.0,10.0,9.0,10.0,10.0,10.0,9.0,17,0.93 +40311,84.0,9.0,7.0,9.0,10.0,10.0,9.0,6,0.17 +17516,94.0,10.0,9.0,10.0,10.0,10.0,10.0,154,4.27 +37287,,,,,,,,0, +18832,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +50524,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.34 +15384,90.0,9.0,9.0,9.0,10.0,10.0,8.0,3,0.08 +6689,,,,,,,,0, +8172,,,,,,,,1,0.03 +2256,93.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.09 +31740,,,,,,,,0, +4147,97.0,10.0,10.0,10.0,10.0,9.0,10.0,55,1.47 +13210,,,,,,,,0, +16787,95.0,10.0,10.0,10.0,10.0,10.0,10.0,21,0.63 +55650,,,,,,,,0, +7770,,,,,,,,0, +17291,89.0,9.0,8.0,10.0,10.0,10.0,9.0,7,0.53 +9126,,,,,,,,0, +45789,84.0,8.0,9.0,9.0,9.0,10.0,8.0,11,0.3 +37210,96.0,10.0,10.0,10.0,10.0,10.0,9.0,15,0.42 +58978,,,,,,,,0, +29958,100.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.69 +28292,98.0,10.0,10.0,10.0,10.0,10.0,10.0,21,0.64 +52180,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.39 +8356,,,,,,,,0, +70500,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.13 +18201,94.0,10.0,9.0,10.0,10.0,9.0,10.0,82,2.2 +40495,98.0,10.0,10.0,10.0,10.0,9.0,10.0,19,0.52 +52490,96.0,10.0,10.0,10.0,10.0,10.0,9.0,21,0.59 +57122,85.0,9.0,9.0,9.0,10.0,10.0,10.0,4,0.11 +32978,99.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.7 +66434,89.0,9.0,9.0,10.0,10.0,9.0,9.0,76,2.06 +30209,97.0,10.0,10.0,10.0,10.0,10.0,10.0,86,2.3 +17285,90.0,10.0,9.0,10.0,10.0,9.0,9.0,6,0.16 +54100,73.0,7.0,8.0,10.0,9.0,9.0,8.0,3,0.14 +71448,88.0,9.0,9.0,10.0,9.0,10.0,9.0,101,2.68 +34450,100.0,,,,,,,1,0.03 +57904,90.0,10.0,9.0,10.0,10.0,10.0,10.0,6,0.16 +10847,97.0,10.0,10.0,10.0,10.0,10.0,10.0,59,1.72 +75636,93.0,10.0,9.0,10.0,10.0,10.0,9.0,3,0.08 +28451,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.11 +53115,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.09 +40366,100.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.5 +66211,100.0,10.0,10.0,10.0,10.0,9.0,10.0,24,0.98 +816,93.0,10.0,9.0,9.0,9.0,10.0,10.0,7,0.21 +28943,100.0,10.0,10.0,10.0,9.0,10.0,10.0,2,0.14 +19473,,,,,,,,0, +64759,93.0,9.0,9.0,10.0,10.0,9.0,10.0,21,0.79 +13274,90.0,9.0,10.0,9.0,10.0,10.0,9.0,2,0.05 +24954,,,,,,,,1,0.03 +22426,,,,,,,,0, +61600,100.0,,10.0,10.0,10.0,10.0,10.0,1,0.04 +43643,90.0,8.0,9.0,10.0,10.0,10.0,9.0,10,0.27 +2355,,,,,,,,0, +43068,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +1919,100.0,10.0,10.0,10.0,10.0,9.0,10.0,37,1.0 +38158,93.0,9.0,9.0,9.0,10.0,9.0,9.0,3,0.09 +58877,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.11 +7777,100.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.24 +65618,,,,,,,,0, +5005,,,,,,,,0, +9218,98.0,10.0,10.0,10.0,10.0,10.0,10.0,35,1.17 +39566,,,,,,,,0, +22725,,,,,,,,1,0.03 +53202,,,,,,,,0, +50368,,,,,,,,0, +72256,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.07 +32779,,,,,,,,0, +68420,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.08 +35655,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.22 +38692,,,,,,,,0, +65586,95.0,10.0,10.0,10.0,10.0,10.0,10.0,20,0.54 +16068,99.0,10.0,10.0,10.0,10.0,10.0,10.0,37,1.04 +36259,100.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.06 +3096,,,,,,,,0, +5889,80.0,9.0,8.0,9.0,10.0,9.0,8.0,9,0.25 +18323,100.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.2 +42979,94.0,9.0,10.0,10.0,10.0,10.0,10.0,32,0.92 +68097,99.0,10.0,10.0,10.0,10.0,10.0,10.0,156,4.4 +37811,80.0,10.0,8.0,9.0,9.0,9.0,8.0,2,0.06 +43157,,,,,,,,0, +33616,,,,,,,,0, +52128,,,,,,,,0, +10606,100.0,10.0,9.0,10.0,10.0,9.0,9.0,3,0.08 +23455,,,,,,,,0, +15944,89.0,10.0,9.0,9.0,10.0,9.0,9.0,19,0.51 +53440,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +51048,85.0,9.0,8.0,9.0,10.0,9.0,9.0,31,0.83 +39455,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.09 +15685,,,,,,,,0, +46140,,,,,,,,0, +8086,90.0,9.0,9.0,9.0,10.0,9.0,9.0,46,1.23 +71785,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.25 +62369,96.0,10.0,10.0,10.0,10.0,9.0,10.0,14,0.43 +35715,80.0,10.0,8.0,8.0,10.0,8.0,8.0,1,0.03 +57814,73.0,9.0,7.0,9.0,9.0,6.0,7.0,3,0.32 +74079,97.0,10.0,10.0,10.0,10.0,10.0,10.0,21,0.56 +32961,,,,,,,,0, +26852,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +71046,,,,,,,,0, +75760,,,,,,,,0, +34588,,,,,,,,0, +49885,81.0,9.0,8.0,9.0,9.0,10.0,8.0,93,2.54 +61167,98.0,10.0,10.0,10.0,10.0,10.0,10.0,40,1.22 +28291,98.0,10.0,9.0,10.0,10.0,9.0,10.0,58,1.59 +5560,98.0,10.0,10.0,10.0,10.0,10.0,10.0,64,2.15 +4759,,,,,,,,0, +67759,,,,,,,,0, +11719,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.06 +59088,99.0,10.0,10.0,10.0,10.0,10.0,10.0,35,0.95 +10732,100.0,10.0,9.0,10.0,10.0,9.0,10.0,3,0.08 +41173,,,,,,,,0, +60604,,,,,,,,0, +35120,73.0,8.0,9.0,9.0,9.0,10.0,7.0,4,0.12 +14716,99.0,10.0,10.0,10.0,10.0,10.0,10.0,28,0.81 +24133,,,,,,,,0, +55350,97.0,9.0,10.0,10.0,10.0,9.0,10.0,47,1.26 +9327,,,,,,,,0, +18298,,,,,,,,0, +52308,,,,,,,,0, +8428,,,,,,,,0, +58173,96.0,10.0,10.0,9.0,10.0,9.0,9.0,17,0.48 +50878,93.0,10.0,9.0,9.0,10.0,9.0,9.0,17,0.47 +44239,,,,,,,,0, +50144,91.0,10.0,9.0,10.0,10.0,9.0,9.0,13,0.37 +23293,92.0,10.0,9.0,10.0,10.0,10.0,9.0,56,1.49 +43536,91.0,10.0,10.0,10.0,10.0,9.0,9.0,12,0.32 +63665,97.0,10.0,9.0,10.0,10.0,10.0,10.0,30,0.83 +57147,,,,,,,,2,0.05 +31946,95.0,10.0,9.0,10.0,9.0,9.0,9.0,19,0.56 +20281,,,,,,,,1,0.03 +15223,99.0,10.0,10.0,10.0,10.0,9.0,10.0,14,0.87 +48750,91.0,9.0,10.0,10.0,10.0,9.0,9.0,214,6.09 +39653,,,,,,,,0, +19598,100.0,10.0,10.0,10.0,10.0,10.0,10.0,75,2.94 +21599,,,,,,,,0, +52089,,,,,,,,0, +611,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.04 +73142,,,,,,,,1,0.03 +67151,100.0,10.0,9.0,10.0,10.0,9.0,10.0,3,0.1 +24534,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +27469,,,,,,,,0, +36908,92.0,10.0,10.0,9.0,10.0,10.0,9.0,16,0.43 +15320,88.0,9.0,9.0,9.0,10.0,9.0,9.0,96,2.64 +60613,90.0,10.0,8.0,10.0,10.0,9.0,9.0,18,0.49 +31361,,,,,,,,0, +37780,95.0,10.0,10.0,10.0,10.0,9.0,10.0,63,1.72 +3112,99.0,10.0,10.0,10.0,10.0,10.0,10.0,102,2.72 +35350,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +11125,100.0,10.0,10.0,10.0,10.0,10.0,10.0,20,1.25 +31382,97.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.17 +31680,94.0,9.0,10.0,10.0,10.0,9.0,9.0,58,1.62 +54325,,,,,,,,0, +15095,92.0,9.0,9.0,10.0,9.0,8.0,9.0,17,0.47 +25262,99.0,10.0,10.0,10.0,10.0,10.0,10.0,87,2.34 +16677,,,,,,,,0, +50028,96.0,10.0,10.0,10.0,10.0,9.0,10.0,73,1.96 +23415,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +65814,,,,,,,,0, +37587,95.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.81 +13233,95.0,10.0,10.0,10.0,10.0,10.0,10.0,42,1.15 +64148,,,,,,,,0, +33522,,,,,,,,0, +75569,,,,,,,,0, +23542,95.0,10.0,9.0,10.0,10.0,9.0,10.0,68,1.97 +55232,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.18 +55908,93.0,10.0,9.0,10.0,10.0,10.0,9.0,14,0.62 +43610,95.0,10.0,9.0,10.0,9.0,10.0,9.0,17,0.58 +18558,80.0,10.0,10.0,8.0,10.0,8.0,10.0,1,0.04 +16431,99.0,10.0,10.0,10.0,10.0,10.0,10.0,47,1.26 +7919,100.0,,10.0,,10.0,,,1,0.03 +38509,90.0,9.0,9.0,9.0,9.0,10.0,9.0,14,0.48 +74452,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.05 +66550,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +57176,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.11 +50242,60.0,8.0,2.0,8.0,8.0,8.0,6.0,1,0.03 +71984,91.0,9.0,9.0,9.0,9.0,8.0,9.0,54,1.51 +16608,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.16 +75141,92.0,9.0,7.0,9.0,9.0,8.0,8.0,5,0.14 +25104,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.11 +68639,,,,,,,,2,0.05 +24606,,,,,,,,0, +11240,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.03 +38669,98.0,10.0,10.0,10.0,10.0,9.0,10.0,139,4.18 +34435,,,,,,,,0, +38003,,,,,,,,0, +32138,93.0,10.0,9.0,10.0,10.0,9.0,9.0,42,1.13 +56477,99.0,10.0,9.0,10.0,10.0,10.0,10.0,21,0.63 +31990,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.35 +72100,97.0,10.0,10.0,10.0,10.0,9.0,10.0,28,0.76 +49759,,,,,,,,0, +12801,,,,,,,,0, +8620,92.0,9.0,9.0,9.0,9.0,9.0,9.0,12,0.34 +64969,89.0,9.0,9.0,10.0,10.0,10.0,9.0,17,0.5 +55018,80.0,9.0,9.0,8.0,9.0,8.0,9.0,20,0.54 +5894,,,,,,,,0, +6065,92.0,10.0,9.0,9.0,10.0,10.0,10.0,12,0.34 +33657,,,,,,,,0, +46967,,,,,,,,0, +46309,,,,,,,,1,0.03 +36797,97.0,10.0,10.0,10.0,10.0,9.0,10.0,93,2.56 +20001,98.0,10.0,10.0,10.0,10.0,9.0,10.0,13,0.36 +53969,,,,,,,,0, +9533,96.0,10.0,10.0,9.0,10.0,9.0,10.0,19,0.53 +9105,,,,,,,,0, +65751,,,,,,,,0, +58326,60.0,8.0,4.0,10.0,10.0,4.0,6.0,1,0.03 +23116,100.0,8.0,10.0,8.0,10.0,10.0,10.0,1,0.03 +36157,78.0,9.0,8.0,9.0,9.0,8.0,8.0,19,0.51 +11724,,,,,,,,0, +205,80.0,8.0,8.0,9.0,9.0,9.0,8.0,28,0.77 +66024,96.0,10.0,10.0,10.0,10.0,10.0,10.0,113,3.35 +66157,100.0,10.0,9.0,10.0,10.0,10.0,10.0,10,0.43 +68812,,,,,,,,0, +32991,,,,,,,,0, +623,100.0,10.0,10.0,10.0,10.0,9.0,10.0,12,0.33 +27792,,,,,,,,0, +64805,99.0,10.0,10.0,10.0,10.0,10.0,10.0,54,1.6 +25692,,,,,,,,1,0.73 +31165,95.0,10.0,9.0,10.0,10.0,9.0,10.0,17,0.48 +13555,97.0,10.0,10.0,10.0,10.0,10.0,9.0,13,0.35 +32211,,,,,,,,0, +51188,90.0,9.0,8.0,10.0,10.0,9.0,9.0,4,0.11 +14806,96.0,10.0,10.0,10.0,10.0,10.0,10.0,85,2.57 +46580,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.14 +53375,96.0,10.0,10.0,10.0,10.0,10.0,9.0,15,0.41 +59575,100.0,10.0,10.0,10.0,10.0,10.0,10.0,76,2.41 +47736,,,,,,,,0, +50587,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.21 +42022,,,,,,,,0, +36496,100.0,10.0,10.0,10.0,10.0,10.0,10.0,25,0.68 +63103,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +57878,84.0,9.0,8.0,10.0,9.0,10.0,9.0,11,0.33 +577,,,,,,,,0, +71112,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.11 +33519,84.0,9.0,9.0,10.0,9.0,10.0,8.0,28,0.76 +6643,100.0,10.0,10.0,10.0,10.0,10.0,10.0,65,1.97 +60969,88.0,10.0,8.0,9.0,10.0,9.0,9.0,6,0.38 +42472,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.11 +74471,,,,,,,,0, +21727,,,,,,,,0, +68998,80.0,7.0,6.0,10.0,10.0,8.0,7.0,2,0.06 +53293,96.0,10.0,10.0,10.0,10.0,9.0,10.0,10,0.27 +55357,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +27958,96.0,10.0,10.0,9.0,10.0,10.0,10.0,280,7.51 +22004,86.0,9.0,9.0,9.0,9.0,10.0,9.0,35,1.12 +21668,75.0,9.0,6.0,10.0,10.0,8.0,8.0,8,0.63 +75040,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.14 +23511,100.0,10.0,10.0,10.0,10.0,10.0,8.0,2,0.09 +48503,82.0,9.0,8.0,9.0,8.0,8.0,9.0,21,0.6 +37262,92.0,10.0,9.0,9.0,10.0,10.0,9.0,82,2.2 +19560,,,,,,,,0, +66440,100.0,8.0,10.0,8.0,10.0,8.0,10.0,2,0.06 +47076,80.0,7.0,5.0,9.0,10.0,9.0,7.0,2,0.08 +12035,95.0,10.0,10.0,10.0,10.0,9.0,10.0,13,0.35 +71048,,,,,,,,0, +17359,,,,,,,,0, +40413,94.0,10.0,10.0,9.0,9.0,9.0,9.0,43,1.17 +11365,,,,,,,,0, +31152,,,,,,,,0, +27574,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +11362,40.0,8.0,2.0,8.0,10.0,10.0,4.0,2,0.06 +16144,,,,,,,,0, +44772,60.0,6.0,8.0,10.0,10.0,6.0,8.0,1,0.04 +2988,94.0,10.0,9.0,10.0,10.0,9.0,9.0,54,1.59 +1648,,,,,,,,0, +7363,,,,,,,,0, +52062,,,,,,,,0, +64711,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.36 +18808,96.0,10.0,9.0,10.0,10.0,10.0,9.0,64,1.79 +63953,97.0,10.0,10.0,10.0,10.0,9.0,10.0,115,3.22 +55961,98.0,10.0,10.0,10.0,10.0,9.0,10.0,121,3.51 +55508,,,,,,,,0, +1077,98.0,10.0,10.0,10.0,10.0,9.0,9.0,27,0.8 +9160,,,,,,,,1,0.03 +26886,96.0,10.0,10.0,10.0,10.0,9.0,10.0,20,1.86 +27223,,,,,,,,0, +56622,95.0,10.0,9.0,10.0,9.0,10.0,10.0,9,0.26 +17354,97.0,10.0,10.0,9.0,10.0,10.0,10.0,49,1.32 +9880,96.0,10.0,10.0,10.0,10.0,9.0,10.0,10,0.27 +46585,80.0,8.0,8.0,10.0,10.0,10.0,8.0,1,0.09 +36416,99.0,10.0,10.0,10.0,10.0,10.0,10.0,29,0.92 +1505,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +45345,93.0,9.0,10.0,10.0,10.0,8.0,9.0,8,0.22 +30678,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.14 +63990,98.0,10.0,10.0,10.0,10.0,10.0,10.0,85,2.39 +44951,,,,,,,,0, +6140,88.0,9.0,9.0,9.0,9.0,10.0,9.0,23,0.67 +30107,63.0,7.0,7.0,8.0,7.0,9.0,7.0,9,0.25 +67498,98.0,10.0,9.0,10.0,10.0,10.0,10.0,8,0.27 +318,100.0,10.0,8.0,10.0,10.0,6.0,10.0,1,0.06 +56126,,,,,,,,0, +65339,97.0,10.0,10.0,10.0,10.0,10.0,10.0,21,0.57 +56519,100.0,9.0,9.0,10.0,10.0,10.0,10.0,2,0.06 +20965,95.0,10.0,10.0,10.0,10.0,10.0,10.0,53,1.44 +57924,,,,,,,,0, +25846,100.0,10.0,10.0,10.0,10.0,9.0,10.0,17,0.46 +43968,99.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.59 +55363,99.0,10.0,10.0,10.0,10.0,10.0,10.0,23,5.23 +11318,100.0,9.0,9.0,10.0,10.0,9.0,10.0,4,0.29 +150,100.0,,10.0,,8.0,,,1,0.03 +18730,84.0,9.0,8.0,9.0,10.0,9.0,8.0,73,2.01 +61186,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +64193,,,,,,,,0, +49965,83.0,9.0,8.0,8.0,9.0,9.0,10.0,7,0.34 +44338,,,,,,,,0, +16852,,,,,,,,0, +30076,,,,,,,,0, +17915,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.08 +52883,95.0,10.0,10.0,10.0,10.0,10.0,9.0,16,0.46 +6481,96.0,10.0,9.0,10.0,10.0,10.0,9.0,23,0.8 +60242,,,,,,,,0, +21260,,,,,,,,0, +16305,20.0,4.0,2.0,6.0,2.0,2.0,4.0,1,0.03 +39758,,,,,,,,0, +40199,96.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.47 +25076,90.0,10.0,9.0,9.0,9.0,9.0,9.0,2,0.06 +72804,96.0,10.0,10.0,10.0,10.0,10.0,10.0,29,0.8 +35199,,,,,,,,0, +43716,99.0,10.0,10.0,10.0,10.0,10.0,10.0,38,1.09 +65147,97.0,10.0,9.0,10.0,10.0,8.0,9.0,7,0.19 +56589,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +47088,,,,,,,,0, +30462,93.0,9.0,9.0,9.0,9.0,9.0,9.0,34,1.14 +27370,100.0,10.0,10.0,9.0,10.0,10.0,10.0,4,0.22 +61487,,,,,,,,0, +66294,,,,,,,,0, +45843,,,,,,,,0, +17997,91.0,9.0,9.0,10.0,10.0,9.0,9.0,25,0.76 +58940,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.09 +32224,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.14 +34677,,,,,,,,0, +43545,91.0,9.0,9.0,10.0,10.0,9.0,9.0,38,1.03 +62597,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.06 +3197,81.0,8.0,8.0,9.0,9.0,9.0,8.0,113,3.03 +53941,78.0,8.0,8.0,9.0,9.0,9.0,8.0,136,3.66 +62751,,,,,,,,0, +20664,,,,,,,,0, +2602,90.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.06 +74785,92.0,9.0,9.0,9.0,10.0,10.0,10.0,22,0.59 +72377,,,,,,,,0, +62732,,,,,,,,0, +6738,,,,,,,,0, +11954,,,,,,,,0, +31259,98.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.49 +32730,80.0,9.0,7.0,10.0,9.0,9.0,8.0,3,0.08 +67578,90.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.06 +8731,,,,,,,,1,0.03 +45213,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +17080,,,,,,,,0, +41529,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +10940,98.0,10.0,10.0,10.0,10.0,10.0,10.0,71,2.62 +19024,95.0,10.0,9.0,10.0,10.0,9.0,10.0,4,0.11 +53309,90.0,10.0,6.0,10.0,10.0,10.0,9.0,2,0.06 +67189,97.0,10.0,10.0,10.0,10.0,10.0,10.0,24,0.75 +59502,,,,,,,,1,0.03 +2857,,,,,,,,0, +55040,91.0,9.0,10.0,9.0,9.0,10.0,9.0,40,1.15 +42196,94.0,10.0,10.0,10.0,10.0,9.0,9.0,37,1.01 +3372,96.0,10.0,9.0,10.0,10.0,9.0,9.0,12,2.07 +75347,99.0,10.0,10.0,10.0,10.0,10.0,10.0,19,0.53 +57796,,,,,,,,0, +6712,90.0,9.0,8.0,9.0,9.0,9.0,10.0,3,0.08 +16895,,,,,,,,0, +23834,94.0,10.0,9.0,10.0,10.0,9.0,9.0,47,1.26 +4196,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +50816,93.0,9.0,9.0,9.0,10.0,9.0,9.0,6,0.17 +74510,93.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.11 +24893,,,,,,,,0, +25528,100.0,10.0,8.0,8.0,10.0,10.0,8.0,1,0.03 +15484,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.38 +77079,91.0,10.0,9.0,10.0,10.0,9.0,10.0,9,0.33 +66565,80.0,9.0,8.0,10.0,10.0,9.0,7.0,3,0.08 +59461,93.0,10.0,9.0,10.0,10.0,10.0,9.0,3,0.08 +2541,,,,,,,,0, +63407,,,,,,,,0, +6809,,,,,,,,0, +57597,100.0,9.0,9.0,10.0,10.0,10.0,9.0,2,0.05 +60769,94.0,10.0,9.0,10.0,10.0,10.0,10.0,31,0.83 +45926,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +18479,,,,,,,,0, +54120,90.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.06 +5179,,,,,,,,0, +43113,,,,,,,,0, +68050,,,,,,,,0, +19796,98.0,10.0,10.0,10.0,10.0,10.0,10.0,24,0.67 +74986,99.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.48 +71396,87.0,9.0,9.0,9.0,9.0,9.0,9.0,46,1.29 +62760,,,,,,,,0, +14479,,,,,,,,1,0.03 +52163,,,,,,,,0, +2582,99.0,10.0,10.0,10.0,10.0,9.0,10.0,15,0.41 +38333,,,,,,,,0, +27173,87.0,8.0,9.0,10.0,9.0,10.0,9.0,3,0.08 +60462,98.0,10.0,10.0,10.0,10.0,10.0,10.0,69,1.98 +25639,96.0,10.0,10.0,9.0,10.0,10.0,10.0,40,1.18 +9678,90.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.12 +4031,90.0,9.0,8.0,9.0,10.0,10.0,9.0,29,0.79 +71745,,,,,,,,0, +27917,99.0,10.0,10.0,9.0,10.0,10.0,10.0,14,0.51 +73152,95.0,10.0,10.0,10.0,10.0,10.0,9.0,27,0.73 +57451,96.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.14 +70746,75.0,8.0,7.0,10.0,9.0,9.0,8.0,4,0.11 +61040,96.0,10.0,10.0,10.0,10.0,10.0,10.0,109,3.53 +53119,91.0,9.0,9.0,10.0,10.0,10.0,9.0,62,1.74 +31488,99.0,10.0,10.0,10.0,10.0,10.0,10.0,36,1.14 +27081,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +1987,100.0,10.0,9.0,10.0,9.0,10.0,10.0,2,0.06 +24083,96.0,10.0,10.0,10.0,10.0,9.0,10.0,17,0.47 +42995,,,,,,,,0, +56522,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +57564,,,,,,,,0, +11642,93.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.12 +51892,,,,,,,,0, +1971,78.0,10.0,7.0,9.0,9.0,8.0,8.0,12,0.33 +1470,95.0,10.0,9.0,10.0,10.0,10.0,10.0,116,3.19 +11423,100.0,9.0,10.0,10.0,10.0,10.0,9.0,2,0.06 +365,76.0,8.0,7.0,9.0,9.0,8.0,8.0,5,0.26 +55353,90.0,9.0,8.0,9.0,9.0,9.0,9.0,9,0.25 +1037,97.0,10.0,9.0,10.0,10.0,10.0,10.0,15,0.92 +38790,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +31939,60.0,6.0,6.0,8.0,8.0,8.0,6.0,1,0.03 +42209,92.0,9.0,9.0,10.0,10.0,9.0,9.0,16,0.66 +3000,70.0,8.0,6.0,9.0,10.0,9.0,7.0,2,0.07 +39242,91.0,10.0,10.0,10.0,10.0,10.0,9.0,9,0.24 +9510,,,,,,,,0, +7101,96.0,9.0,10.0,10.0,10.0,10.0,9.0,29,0.8 +72664,,,,,,,,0, +74928,97.0,10.0,10.0,10.0,9.0,10.0,10.0,64,1.72 +63246,100.0,10.0,10.0,10.0,10.0,10.0,10.0,51,1.42 +38743,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.15 +41184,87.0,10.0,8.0,10.0,9.0,9.0,9.0,3,0.19 +51096,81.0,9.0,8.0,9.0,9.0,9.0,9.0,43,9.42 +30437,100.0,10.0,10.0,10.0,10.0,10.0,8.0,6,0.29 +73368,97.0,10.0,9.0,10.0,10.0,10.0,10.0,20,0.55 +55470,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +49317,100.0,10.0,9.0,10.0,10.0,9.0,10.0,3,0.27 +31342,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +19901,,,,,,,,0, +51171,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.4 +38405,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.22 +55163,97.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.2 +17437,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.29 +63773,100.0,10.0,9.0,9.0,10.0,9.0,9.0,3,0.1 +47811,96.0,10.0,10.0,10.0,10.0,10.0,10.0,28,0.76 +57370,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.08 +54369,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.8 +52968,,,,,,,,0, +60062,97.0,10.0,10.0,10.0,10.0,10.0,9.0,7,0.19 +68805,89.0,9.0,9.0,9.0,10.0,9.0,9.0,92,2.89 +56692,,,,,,,,1,0.32 +44628,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.1 +21993,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.14 +48353,,,,,,,,0, +21494,,,,,,,,0, +30291,,,,,,,,0, +61446,88.0,9.0,9.0,9.0,9.0,8.0,9.0,121,3.28 +60727,100.0,10.0,10.0,9.0,9.0,10.0,10.0,3,0.08 +42794,88.0,10.0,7.0,10.0,10.0,10.0,10.0,5,0.25 +14615,96.0,10.0,10.0,10.0,10.0,9.0,10.0,108,2.99 +54446,,,,,,,,0, +24952,,,,,,,,0, +26821,,,,,,,,0, +57527,100.0,10.0,10.0,10.0,10.0,10.0,9.0,9,0.27 +17526,92.0,10.0,9.0,9.0,10.0,10.0,9.0,29,0.79 +18127,,,,,,,,0, +42896,92.0,9.0,9.0,10.0,10.0,9.0,10.0,10,0.28 +68399,97.0,10.0,10.0,10.0,10.0,10.0,9.0,7,0.22 +52585,93.0,9.0,7.0,10.0,10.0,10.0,10.0,5,0.21 +8874,,,,,,,,0, +51822,96.0,10.0,9.0,10.0,10.0,10.0,9.0,14,0.42 +26024,98.0,10.0,10.0,10.0,10.0,9.0,10.0,10,0.34 +27311,96.0,10.0,10.0,10.0,10.0,9.0,10.0,26,0.85 +61894,,,,,,,,0, +67405,70.0,9.0,9.0,6.0,9.0,6.0,7.0,2,0.06 +29289,,,,,,,,0, +9092,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.08 +63941,93.0,10.0,9.0,10.0,10.0,10.0,9.0,41,1.22 +16226,,,,,,,,0, +36770,75.0,8.0,9.0,9.0,9.0,9.0,9.0,4,0.23 +70393,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +65309,99.0,10.0,10.0,10.0,10.0,10.0,10.0,15,1.1 +10351,96.0,10.0,10.0,10.0,10.0,9.0,10.0,138,4.63 +24505,40.0,4.0,2.0,4.0,6.0,8.0,4.0,1,0.03 +74094,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.27 +76698,95.0,10.0,9.0,9.0,9.0,9.0,9.0,33,0.93 +8644,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.12 +25756,95.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.23 +23632,90.0,9.0,10.0,10.0,10.0,9.0,9.0,40,1.18 +4979,,,,,,,,0, +63581,,,,,,,,0, +48827,,,,,,,,0, +47424,98.0,10.0,10.0,10.0,10.0,10.0,10.0,55,1.48 +70419,,,,,,,,0, +25961,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.32 +55015,99.0,10.0,9.0,9.0,10.0,10.0,10.0,27,0.76 +21018,93.0,9.0,10.0,9.0,9.0,10.0,9.0,3,0.09 +55812,,,,,,,,0, +69083,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +35844,,,,,,,,0, +66266,80.0,8.0,6.0,10.0,10.0,,8.0,1,0.04 +39940,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.27 +199,98.0,10.0,10.0,10.0,10.0,10.0,10.0,61,1.68 +9924,91.0,9.0,9.0,10.0,9.0,9.0,8.0,7,0.46 +54206,98.0,10.0,10.0,10.0,10.0,10.0,9.0,11,0.58 +48746,,,,,,,,0, +13021,,,,,,,,0, +60818,,,,,,,,0, +71115,,,,,,,,0, +8072,,,,,,,,1,0.03 +71379,,,,,,,,0, +14928,100.0,10.0,10.0,10.0,10.0,10.0,10.0,24,0.67 +10679,99.0,10.0,9.0,10.0,10.0,10.0,10.0,31,0.85 +9923,,,,,,,,0, +26478,91.0,9.0,9.0,10.0,9.0,9.0,9.0,15,0.52 +10848,95.0,10.0,10.0,10.0,10.0,10.0,9.0,32,0.9 +18702,100.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.22 +30864,85.0,9.0,7.0,9.0,9.0,9.0,8.0,4,0.49 +45584,76.0,8.0,5.0,8.0,9.0,8.0,7.0,6,0.17 +60815,89.0,9.0,10.0,9.0,10.0,8.0,9.0,20,0.54 +30558,98.0,10.0,10.0,10.0,10.0,9.0,10.0,41,1.16 +36866,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.17 +11327,80.0,9.0,8.0,9.0,8.0,9.0,9.0,4,0.11 +74950,,,,,,,,0, +28242,,,,,,,,0, +43546,92.0,10.0,10.0,9.0,9.0,9.0,9.0,62,1.74 +23276,,,,,,,,0, +28494,,,,,,,,0, +6819,,,,,,,,0, +50226,,,,,,,,0, +35449,100.0,,10.0,,10.0,,,1,0.03 +39803,92.0,10.0,10.0,9.0,9.0,8.0,10.0,6,0.17 +58091,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.54 +37172,,,,,,,,0, +63303,96.0,10.0,9.0,10.0,10.0,10.0,9.0,19,0.55 +34354,95.0,10.0,9.0,10.0,10.0,10.0,9.0,30,1.08 +66282,97.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.38 +32830,,,,,,,,0, +67485,99.0,10.0,10.0,10.0,10.0,9.0,10.0,40,1.25 +164,60.0,6.0,8.0,8.0,8.0,8.0,8.0,1,0.04 +35665,91.0,10.0,8.0,10.0,10.0,9.0,9.0,9,0.25 +51992,98.0,10.0,10.0,10.0,10.0,10.0,10.0,26,0.76 +15621,95.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.36 +66954,93.0,10.0,9.0,10.0,10.0,9.0,9.0,54,1.5 +64187,,,,,,,,0, +66492,,,,,,,,1,0.03 +2904,,,,,,,,0, +16408,99.0,10.0,10.0,10.0,10.0,10.0,10.0,24,0.67 +55048,90.0,9.0,8.0,10.0,10.0,10.0,10.0,2,0.05 +5655,83.0,9.0,8.0,9.0,9.0,9.0,9.0,99,2.77 +14403,97.0,10.0,9.0,10.0,10.0,10.0,10.0,6,0.17 +22122,96.0,10.0,9.0,10.0,10.0,9.0,10.0,9,0.37 +26767,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.08 +62100,98.0,10.0,10.0,10.0,10.0,10.0,9.0,33,0.9 +3302,,,,,,,,0, +33142,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.06 +66112,,,,,,,,0, +21328,,,,,,,,0, +51847,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +24665,,,,,,,,0, +19609,93.0,10.0,9.0,10.0,10.0,10.0,10.0,6,0.16 +70277,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.22 +7982,96.0,10.0,10.0,10.0,10.0,9.0,10.0,15,0.42 +54151,97.0,10.0,9.0,10.0,10.0,9.0,9.0,18,0.51 +16788,90.0,9.0,9.0,10.0,10.0,8.0,9.0,63,1.7 +32150,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.11 +26604,94.0,10.0,9.0,10.0,10.0,10.0,9.0,14,0.39 +75355,,,,,,,,1,0.03 +7799,95.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.22 +72607,,,,,,,,0, +33662,99.0,10.0,10.0,10.0,10.0,10.0,10.0,75,2.22 +75478,,,,,,,,0, +73098,,,,,,,,0, +50280,98.0,10.0,10.0,10.0,10.0,10.0,9.0,43,1.18 +41059,,,,,,,,0, +29341,,,,,,,,0, +73482,,,,,,,,1,0.03 +9159,96.0,9.0,9.0,9.0,9.0,9.0,9.0,6,0.17 +50621,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +30841,,,,,,,,0, +10503,96.0,10.0,10.0,10.0,10.0,9.0,10.0,59,1.59 +8487,,,,,,,,0, +20781,90.0,10.0,9.0,9.0,9.0,9.0,9.0,22,0.69 +47691,,,,,,,,0, +25627,98.0,10.0,10.0,10.0,10.0,9.0,10.0,91,2.53 +17258,97.0,10.0,9.0,10.0,10.0,9.0,10.0,14,0.39 +25744,90.0,9.0,10.0,10.0,10.0,9.0,9.0,4,0.11 +59339,100.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +52119,100.0,10.0,10.0,10.0,10.0,8.0,6.0,1,0.18 +50892,,,,,,,,0, +31616,99.0,10.0,9.0,10.0,10.0,10.0,10.0,53,1.48 +13337,,,,,,,,0, +49223,,,,,,,,0, +28251,97.0,10.0,9.0,9.0,10.0,9.0,9.0,26,0.73 +39030,100.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +44965,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +70088,94.0,10.0,9.0,10.0,10.0,9.0,10.0,22,0.62 +18859,90.0,10.0,9.0,10.0,9.0,9.0,9.0,18,0.56 +68042,96.0,10.0,10.0,10.0,10.0,10.0,9.0,34,0.93 +61019,100.0,8.0,10.0,10.0,6.0,10.0,10.0,1,0.03 +11201,,,,,,,,1,0.03 +38736,93.0,9.0,9.0,10.0,10.0,10.0,8.0,6,0.2 +44180,,,,,,,,0, +35163,,,,,,,,0, +62857,,,,,,,,1,0.07 +57256,87.0,8.0,8.0,8.0,8.0,10.0,9.0,7,0.19 +27061,93.0,9.0,10.0,10.0,10.0,9.0,9.0,10,0.28 +41528,100.0,10.0,8.0,10.0,10.0,10.0,10.0,6,0.16 +45512,99.0,10.0,10.0,10.0,10.0,10.0,10.0,29,1.01 +59555,,,,,,,,0, +46009,85.0,8.0,8.0,10.0,9.0,10.0,9.0,5,0.14 +52591,99.0,10.0,10.0,10.0,10.0,9.0,10.0,22,0.65 +26399,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +51838,94.0,10.0,10.0,10.0,9.0,10.0,10.0,8,0.22 +9040,100.0,10.0,10.0,10.0,10.0,9.0,10.0,24,0.73 +69479,80.0,8.0,6.0,8.0,10.0,8.0,8.0,1,0.05 +9788,,,,,,,,0, +6096,,,,,,,,0, +25418,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.36 +31112,96.0,10.0,9.0,10.0,10.0,10.0,10.0,54,1.47 +63154,,,,,,,,0, +25876,,,,,,,,0, +14815,93.0,10.0,9.0,10.0,10.0,10.0,9.0,10,0.28 +39850,80.0,10.0,10.0,10.0,10.0,6.0,10.0,1,0.05 +10347,100.0,10.0,10.0,10.0,10.0,8.0,10.0,3,0.08 +28345,87.0,9.0,9.0,9.0,9.0,9.0,9.0,3,0.08 +24475,,,,,,,,0, +34805,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.2 +33069,100.0,10.0,10.0,10.0,10.0,4.0,10.0,1,0.06 +5306,,,,,,,,0, +72463,98.0,10.0,10.0,10.0,10.0,10.0,10.0,41,1.15 +23969,92.0,10.0,10.0,10.0,10.0,10.0,9.0,72,2.08 +46961,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.15 +59242,60.0,6.0,4.0,8.0,10.0,8.0,2.0,1,0.03 +57508,,,,,,,,0, +64375,80.0,8.0,8.0,10.0,8.0,8.0,8.0,1,0.03 +37207,97.0,10.0,9.0,10.0,10.0,9.0,10.0,150,4.37 +55059,93.0,10.0,10.0,8.0,10.0,10.0,9.0,6,0.16 +23432,80.0,9.0,7.0,9.0,8.0,9.0,9.0,2,0.06 +66892,,,,,,,,0, +33492,,,,,,,,0, +15342,81.0,8.0,8.0,8.0,9.0,8.0,9.0,31,0.88 +64167,,,,,,,,0, +61183,98.0,10.0,10.0,9.0,10.0,10.0,10.0,10,0.28 +5169,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +72788,97.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.2 +33207,100.0,10.0,10.0,10.0,10.0,10.0,10.0,21,0.58 +28061,89.0,9.0,9.0,9.0,9.0,9.0,9.0,62,1.75 +40522,82.0,9.0,8.0,10.0,9.0,9.0,9.0,79,2.28 +76028,90.0,9.0,9.0,9.0,8.0,8.0,9.0,2,0.05 +14179,96.0,10.0,10.0,10.0,10.0,10.0,10.0,12,1.1 +60366,81.0,9.0,8.0,9.0,9.0,8.0,8.0,119,3.2 +45302,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +29523,92.0,10.0,9.0,9.0,10.0,9.0,9.0,18,1.29 +235,96.0,10.0,10.0,10.0,10.0,10.0,9.0,33,1.09 +47386,,,,,,,,0, +5914,100.0,10.0,10.0,8.0,8.0,4.0,6.0,1,0.03 +55154,93.0,10.0,9.0,10.0,10.0,10.0,9.0,3,0.08 +36263,93.0,9.0,9.0,9.0,9.0,10.0,9.0,62,1.72 +56881,,,,,,,,0, +23619,100.0,10.0,10.0,10.0,10.0,8.0,10.0,5,0.14 +28017,,,,,,,,0, +8371,94.0,10.0,10.0,10.0,10.0,9.0,9.0,44,1.22 +9903,97.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.2 +60504,96.0,10.0,10.0,10.0,10.0,9.0,10.0,59,1.61 +3149,80.0,8.0,10.0,10.0,10.0,8.0,8.0,1,0.03 +23690,,,,,,,,0, +67908,90.0,10.0,10.0,10.0,10.0,9.0,9.0,2,0.06 +29398,,,,,,,,0, +40705,99.0,10.0,10.0,10.0,10.0,10.0,10.0,21,0.59 +264,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.06 +49695,91.0,9.0,9.0,10.0,10.0,9.0,9.0,71,2.2 +22535,96.0,10.0,10.0,10.0,10.0,9.0,10.0,22,0.71 +69913,80.0,9.0,8.0,10.0,10.0,9.0,9.0,2,0.07 +48630,90.0,10.0,9.0,10.0,10.0,9.0,9.0,4,0.12 +72658,,,,,,,,0, +69982,80.0,8.0,8.0,8.0,8.0,8.0,8.0,1,0.03 +51997,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,2.15 +10533,96.0,10.0,9.0,9.0,10.0,10.0,9.0,19,0.53 +24688,82.0,9.0,9.0,9.0,9.0,9.0,9.0,49,1.54 +45355,97.0,10.0,10.0,10.0,10.0,10.0,10.0,42,1.15 +14989,100.0,10.0,6.0,8.0,10.0,6.0,8.0,2,0.06 +69723,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.06 +14820,97.0,10.0,10.0,10.0,10.0,10.0,10.0,40,1.17 +65615,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.35 +17958,,,,,,,,0, +54498,,,,,,,,0, +55132,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.16 +11677,,,,,,,,0, +51624,,,,,,,,0, +19466,,,,,,,,0, +23653,92.0,10.0,9.0,10.0,10.0,9.0,9.0,122,3.42 +38628,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +39465,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.3 +39198,,,,,,,,0, +68362,,,,,,,,0, +631,,,,,,,,0, +49150,97.0,10.0,10.0,10.0,10.0,10.0,10.0,31,0.9 +18938,96.0,10.0,10.0,10.0,9.0,10.0,10.0,53,1.43 +14198,100.0,10.0,7.0,10.0,10.0,10.0,10.0,2,0.05 +55625,92.0,9.0,9.0,10.0,10.0,10.0,9.0,32,0.95 +34059,100.0,10.0,10.0,9.0,9.0,8.0,8.0,5,0.17 +50686,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.17 +47918,,,,,,,,0, +71451,100.0,10.0,9.0,10.0,10.0,9.0,10.0,7,0.26 +71647,95.0,10.0,9.0,10.0,10.0,10.0,10.0,167,4.81 +29902,,,,,,,,0, +14591,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.06 +46537,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.31 +51669,90.0,10.0,9.0,10.0,9.0,9.0,8.0,2,0.06 +46800,,,,,,,,0, +73205,,,,,,,,1,0.03 +75778,94.0,9.0,9.0,10.0,10.0,10.0,9.0,109,3.01 +64403,94.0,10.0,9.0,10.0,10.0,10.0,10.0,18,0.58 +28627,,,,,,,,0, +38473,100.0,10.0,10.0,10.0,10.0,9.0,9.0,5,0.21 +2749,,,,,,,,0, +37643,93.0,9.0,10.0,10.0,10.0,9.0,9.0,98,2.67 +15905,95.0,10.0,10.0,10.0,10.0,10.0,9.0,46,1.36 +47891,92.0,9.0,9.0,9.0,10.0,9.0,9.0,29,0.86 +65523,94.0,9.0,10.0,10.0,10.0,10.0,9.0,92,2.56 +45230,91.0,9.0,9.0,10.0,10.0,9.0,9.0,78,2.14 +73887,93.0,9.0,9.0,9.0,9.0,9.0,9.0,3,0.1 +68286,90.0,9.0,9.0,10.0,10.0,10.0,9.0,50,1.35 +47879,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.11 +37203,94.0,10.0,10.0,10.0,10.0,10.0,10.0,7,1.37 +4407,,,,,,,,0, +66111,96.0,10.0,10.0,10.0,10.0,10.0,9.0,34,1.05 +74126,89.0,9.0,8.0,9.0,10.0,9.0,9.0,25,0.68 +29623,,,,,,,,0, +43424,89.0,9.0,9.0,9.0,9.0,10.0,8.0,35,0.95 +55704,98.0,10.0,10.0,10.0,9.0,10.0,9.0,8,0.22 +30635,98.0,10.0,10.0,10.0,10.0,10.0,10.0,33,0.89 +60782,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +22877,100.0,10.0,9.0,10.0,10.0,9.0,10.0,11,0.3 +24055,91.0,9.0,9.0,10.0,9.0,9.0,9.0,14,0.39 +14645,96.0,10.0,9.0,10.0,10.0,10.0,9.0,27,1.0 +8263,,,,,,,,0, +19515,98.0,10.0,9.0,10.0,10.0,10.0,10.0,51,1.61 +2666,85.0,9.0,9.0,10.0,10.0,9.0,9.0,128,3.5 +55143,,,,,,,,0, +56596,94.0,10.0,9.0,10.0,10.0,10.0,9.0,28,0.79 +13872,95.0,10.0,10.0,10.0,10.0,9.0,9.0,4,0.14 +28533,,,,,,,,0, +63391,95.0,10.0,10.0,10.0,10.0,10.0,9.0,16,0.45 +30276,91.0,10.0,9.0,10.0,10.0,10.0,9.0,9,0.36 +44638,100.0,10.0,10.0,10.0,8.0,10.0,10.0,2,0.05 +22764,,,,,,,,0, +47287,96.0,10.0,10.0,10.0,10.0,10.0,10.0,35,1.02 +42991,,,,,,,,0, +52042,80.0,9.0,6.0,9.0,8.0,9.0,8.0,2,0.06 +49791,84.0,8.0,9.0,10.0,10.0,10.0,9.0,9,0.42 +9407,100.0,10.0,10.0,6.0,6.0,10.0,10.0,1,0.28 +38400,89.0,9.0,9.0,10.0,10.0,10.0,9.0,14,0.38 +19354,80.0,8.0,8.0,8.0,8.0,8.0,,1,0.04 +56468,,,,,,,,0, +14304,,,,,,,,0, +61518,90.0,10.0,8.0,7.0,10.0,10.0,9.0,2,0.08 +32310,,,,,,,,0, +9293,100.0,8.0,8.0,10.0,10.0,10.0,10.0,1,0.03 +65675,,,,,,,,0, +72510,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.19 +2597,100.0,10.0,10.0,10.0,10.0,9.0,10.0,14,0.38 +23920,94.0,9.0,9.0,10.0,10.0,10.0,9.0,30,0.84 +46780,88.0,9.0,8.0,9.0,9.0,10.0,9.0,5,0.14 +32733,,,,,,,,1,0.04 +50802,,,,,,,,0, +2405,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.46 +46267,,,,,,,,0, +8573,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.26 +40105,94.0,10.0,9.0,10.0,10.0,10.0,9.0,102,2.86 +27172,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +76373,91.0,9.0,9.0,10.0,10.0,10.0,9.0,16,0.54 +76472,93.0,10.0,10.0,10.0,10.0,10.0,9.0,29,1.23 +59914,,,,,,,,0, +19804,99.0,10.0,10.0,10.0,10.0,10.0,10.0,25,0.74 +31523,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.47 +37970,85.0,9.0,9.0,9.0,9.0,9.0,9.0,17,0.52 +25945,98.0,10.0,10.0,10.0,10.0,9.0,10.0,104,3.23 +73812,97.0,9.0,10.0,10.0,10.0,8.0,8.0,6,0.17 +36730,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +63842,,,,,,,,1,0.03 +26253,,,,,,,,0, +45076,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +4810,,,,,,,,0, +60981,80.0,6.0,6.0,6.0,8.0,6.0,6.0,1,0.03 +43506,100.0,10.0,10.0,9.0,10.0,10.0,10.0,2,0.06 +23539,88.0,9.0,8.0,9.0,10.0,9.0,9.0,23,0.75 +23181,,,,,,,,0, +67679,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +52483,90.0,10.0,10.0,9.0,9.0,8.0,9.0,2,0.06 +77073,99.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.59 +48054,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.24 +13581,100.0,,10.0,,10.0,,,1,0.03 +42699,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.06 +18538,93.0,10.0,9.0,10.0,10.0,9.0,10.0,3,0.08 +45272,85.0,9.0,8.0,8.0,9.0,10.0,9.0,10,0.28 +38239,98.0,10.0,10.0,10.0,10.0,9.0,10.0,10,0.3 +13105,80.0,8.0,10.0,6.0,10.0,10.0,8.0,1,0.03 +41070,,,,,,,,0, +14467,91.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.33 +74836,100.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.03 +19679,,,,,,,,0, +10063,,,,,,,,0, +66621,,,,,,,,0, +30671,80.0,8.0,6.0,8.0,8.0,8.0,10.0,1,0.12 +10245,90.0,9.0,8.0,10.0,10.0,9.0,9.0,11,0.42 +64217,100.0,10.0,10.0,10.0,9.0,10.0,9.0,2,0.06 +60295,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +15796,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.03 +57861,98.0,10.0,10.0,9.0,10.0,9.0,10.0,13,0.36 +75840,100.0,10.0,10.0,10.0,10.0,10.0,10.0,27,2.81 +57690,78.0,8.0,8.0,9.0,8.0,9.0,8.0,81,2.27 +55308,96.0,10.0,9.0,10.0,10.0,8.0,10.0,5,0.14 +65635,,,,,,,,0, +53162,100.0,9.0,10.0,10.0,10.0,10.0,8.0,2,0.06 +57319,93.0,10.0,9.0,10.0,10.0,9.0,9.0,108,2.97 +71961,93.0,10.0,9.0,10.0,10.0,9.0,9.0,92,2.52 +34058,,,,,,,,0, +48571,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.39 +25815,100.0,9.0,9.0,10.0,10.0,8.0,10.0,3,0.08 +17073,98.0,10.0,10.0,10.0,10.0,9.0,10.0,27,0.74 +38349,100.0,9.0,10.0,10.0,10.0,8.0,9.0,2,0.07 +52456,94.0,10.0,9.0,10.0,10.0,9.0,10.0,166,4.51 +40508,,,,,,,,0, +60459,,,,,,,,0, +42978,95.0,10.0,10.0,10.0,10.0,9.0,9.0,30,0.93 +33977,80.0,8.0,8.0,8.0,8.0,7.0,8.0,22,0.64 +21482,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +4632,92.0,10.0,9.0,10.0,10.0,10.0,9.0,17,0.48 +57385,92.0,9.0,9.0,9.0,9.0,9.0,9.0,33,0.93 +50233,96.0,10.0,10.0,10.0,10.0,9.0,10.0,24,0.81 +28215,,,,,,,,0, +48984,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +30977,94.0,10.0,10.0,9.0,10.0,9.0,10.0,49,1.35 +238,90.0,9.0,9.0,9.0,10.0,10.0,9.0,2,0.07 +29402,,,,,,,,0, +18726,98.0,10.0,9.0,10.0,10.0,9.0,9.0,11,0.38 +47471,,,,,,,,0, +28933,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.26 +43230,96.0,10.0,10.0,10.0,10.0,8.0,10.0,188,5.26 +49189,96.0,10.0,10.0,10.0,10.0,8.0,10.0,174,4.73 +62929,93.0,9.0,9.0,10.0,10.0,9.0,9.0,32,0.9 +18389,100.0,10.0,9.0,10.0,10.0,8.0,9.0,3,1.18 +51849,80.0,8.0,8.0,9.0,10.0,10.0,9.0,4,0.11 +847,98.0,10.0,10.0,10.0,10.0,9.0,10.0,81,2.77 +3071,97.0,9.0,10.0,9.0,9.0,10.0,9.0,12,0.39 +67666,94.0,10.0,10.0,10.0,9.0,10.0,9.0,60,5.01 +51366,,,,,,,,0, +74840,,,,,,,,1,0.03 +67335,,,,,,,,0, +19852,,,,,,,,0, +30274,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.06 +59840,95.0,9.0,9.0,10.0,10.0,10.0,9.0,12,0.34 +75450,88.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.21 +32505,,,,,,,,0, +76367,,,,,,,,0, +58662,98.0,10.0,10.0,10.0,10.0,10.0,10.0,60,1.74 +33694,89.0,10.0,10.0,9.0,10.0,10.0,9.0,8,0.34 +72279,96.0,10.0,10.0,10.0,10.0,9.0,10.0,10,0.29 +22330,93.0,10.0,9.0,10.0,9.0,10.0,9.0,38,3.62 +30529,,,,,,,,0, +23581,,,,,,,,0, +73896,,,,,,,,1,0.03 +1404,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.16 +71990,91.0,10.0,9.0,10.0,9.0,10.0,9.0,31,0.9 +1003,93.0,9.0,9.0,8.0,7.0,9.0,9.0,3,0.09 +26076,99.0,10.0,10.0,10.0,10.0,10.0,10.0,65,2.04 +20824,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +72073,88.0,10.0,10.0,10.0,9.0,10.0,9.0,24,0.7 +57223,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.66 +12286,95.0,10.0,10.0,9.0,10.0,10.0,10.0,21,0.76 +33389,94.0,9.0,9.0,10.0,10.0,9.0,10.0,19,0.53 +40965,86.0,9.0,8.0,9.0,9.0,9.0,9.0,22,0.61 +46432,,,,,,,,0, +20784,92.0,9.0,9.0,10.0,9.0,10.0,9.0,39,1.11 +13089,95.0,10.0,10.0,10.0,10.0,9.0,9.0,94,2.56 +21210,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.1 +75642,,,,,,,,0, +4874,96.0,9.0,10.0,10.0,10.0,9.0,10.0,6,0.17 +38568,84.0,8.0,8.0,9.0,10.0,9.0,8.0,10,0.28 +37104,97.0,10.0,9.0,10.0,10.0,10.0,10.0,30,1.04 +59403,80.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.03 +6578,97.0,10.0,9.0,10.0,10.0,10.0,9.0,19,0.54 +6026,97.0,10.0,10.0,9.0,10.0,10.0,10.0,14,0.39 +37196,,,,,,,,0, +49404,,,,,,,,0, +52713,,,,,,,,0, +10460,96.0,10.0,9.0,10.0,9.0,9.0,9.0,25,0.68 +48849,,,,,,,,0, +46117,85.0,10.0,9.0,9.0,10.0,9.0,9.0,4,0.11 +49099,,,,,,,,0, +43812,,,,,,,,0, +14080,,,,,,,,0, +15664,93.0,10.0,9.0,10.0,10.0,10.0,9.0,12,0.51 +41099,92.0,10.0,9.0,9.0,10.0,9.0,9.0,41,1.12 +27987,,,,,,,,0, +17475,86.0,9.0,9.0,10.0,10.0,9.0,9.0,19,0.77 +11640,87.0,9.0,7.0,10.0,10.0,9.0,9.0,4,0.11 +19306,100.0,10.0,10.0,10.0,10.0,9.0,10.0,9,0.25 +15893,,,,,,,,0, +11059,95.0,10.0,10.0,10.0,10.0,9.0,10.0,31,0.86 +21252,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +27677,98.0,10.0,9.0,10.0,10.0,9.0,10.0,36,0.99 +58637,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.06 +17607,100.0,9.0,9.0,10.0,10.0,9.0,9.0,3,0.08 +39358,93.0,9.0,10.0,10.0,10.0,9.0,9.0,3,0.08 +22364,90.0,8.0,10.0,9.0,9.0,10.0,10.0,13,0.42 +70695,70.0,8.0,10.0,10.0,8.0,9.0,10.0,2,0.06 +44934,80.0,8.0,8.0,9.0,9.0,10.0,8.0,3,0.08 +75754,76.0,10.0,8.0,10.0,10.0,9.0,9.0,5,0.15 +43561,,,,,,,,0, +70810,,,,,,,,0, +25893,85.0,9.0,7.0,9.0,10.0,9.0,8.0,11,0.31 +201,80.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.03 +24669,,,,,,,,0, +23013,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.23 +36446,,,,,,,,0, +63618,,,,,,,,0, +75534,98.0,10.0,9.0,10.0,10.0,10.0,10.0,9,0.26 +48912,,,,,,,,0, +53199,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.35 +22915,87.0,9.0,9.0,9.0,9.0,10.0,9.0,22,0.6 +35813,,,,,,,,1,0.03 +15030,95.0,10.0,10.0,9.0,9.0,10.0,9.0,16,0.45 +67913,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +55599,90.0,9.0,9.0,9.0,9.0,9.0,9.0,12,0.33 +51144,88.0,9.0,9.0,10.0,9.0,9.0,9.0,19,0.56 +26746,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.15 +70760,,,,,,,,0, +57536,99.0,10.0,10.0,10.0,10.0,10.0,10.0,30,0.89 +68919,85.0,9.0,9.0,9.0,10.0,9.0,9.0,8,0.22 +14075,80.0,9.0,7.0,10.0,8.0,9.0,8.0,5,0.14 +49844,,,,,,,,0, +534,,,,,,,,1,0.03 +8078,,,,,,,,0, +33170,,,,,,,,0, +24641,97.0,10.0,9.0,10.0,10.0,10.0,10.0,6,0.18 +42274,96.0,10.0,9.0,10.0,10.0,10.0,9.0,51,1.78 +20348,90.0,9.0,8.0,10.0,10.0,10.0,10.0,2,0.06 +75237,93.0,10.0,10.0,10.0,10.0,10.0,9.0,16,0.46 +54378,91.0,9.0,8.0,9.0,9.0,9.0,8.0,7,0.2 +41214,,,,,,,,0, +71763,93.0,9.0,9.0,9.0,9.0,9.0,9.0,6,0.17 +47710,98.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.26 +49559,99.0,10.0,10.0,10.0,10.0,10.0,10.0,19,1.01 +9045,80.0,10.0,6.0,10.0,10.0,8.0,10.0,1,0.03 +21730,89.0,9.0,9.0,9.0,9.0,9.0,9.0,45,1.24 +40671,86.0,9.0,9.0,9.0,9.0,10.0,9.0,62,1.69 +30029,98.0,10.0,10.0,10.0,10.0,10.0,10.0,42,1.3 +51105,91.0,9.0,9.0,10.0,10.0,9.0,9.0,11,0.37 +28449,85.0,9.0,9.0,9.0,9.0,10.0,9.0,82,2.24 +39821,60.0,4.0,4.0,10.0,10.0,6.0,4.0,1,0.03 +21337,98.0,9.0,10.0,10.0,10.0,10.0,9.0,11,0.31 +15200,90.0,9.0,8.0,9.0,10.0,8.0,10.0,7,0.2 +59833,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.06 +48419,98.0,10.0,10.0,10.0,10.0,10.0,10.0,77,2.22 +20102,97.0,10.0,10.0,10.0,10.0,10.0,10.0,28,1.02 +59531,90.0,10.0,10.0,9.0,10.0,10.0,10.0,4,0.11 +6336,,,,,,,,0, +21971,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.14 +5815,94.0,9.0,10.0,10.0,10.0,9.0,9.0,18,0.52 +8632,100.0,9.0,9.0,9.0,10.0,9.0,9.0,2,0.06 +75595,,,,,,,,0, +4156,,,,,,,,0, +7334,96.0,10.0,10.0,9.0,10.0,10.0,10.0,25,0.7 +35796,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +38789,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.11 +9419,83.0,8.0,8.0,9.0,9.0,9.0,9.0,6,0.22 +7395,,,,,,,,0, +26730,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.14 +27114,100.0,9.0,10.0,10.0,10.0,10.0,9.0,3,0.4 +19427,90.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.13 +62493,100.0,10.0,10.0,10.0,10.0,10.0,,2,0.07 +63923,93.0,9.0,9.0,9.0,9.0,9.0,9.0,3,0.09 +42509,90.0,9.0,8.0,10.0,10.0,9.0,9.0,26,0.91 +22437,95.0,10.0,10.0,10.0,10.0,10.0,9.0,104,2.87 +65166,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +76548,,,,,,,,0, +8260,80.0,10.0,6.0,10.0,10.0,6.0,10.0,1,0.03 +5004,,,,,,,,0, +74859,100.0,10.0,10.0,10.0,10.0,10.0,10.0,23,0.76 +70875,,,,,,,,0, +18220,95.0,10.0,9.0,10.0,10.0,9.0,10.0,17,0.46 +68319,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +41327,93.0,9.0,9.0,9.0,9.0,9.0,9.0,11,0.37 +5579,,,,,,,,0, +13254,90.0,9.0,9.0,10.0,10.0,9.0,9.0,110,2.99 +60009,70.0,7.0,8.0,8.0,7.0,9.0,9.0,4,0.7 +59989,90.0,10.0,10.0,10.0,10.0,9.0,9.0,2,0.06 +5070,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.03 +34920,,,,,,,,1,0.03 +53077,,,,,,,,0, +45411,93.0,9.0,8.0,10.0,10.0,10.0,9.0,3,0.08 +1285,,,,,,,,0, +15807,,,,,,,,0, +63006,94.0,9.0,9.0,10.0,10.0,10.0,10.0,35,1.22 +589,,,,,,,,0, +34881,97.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.27 +34584,80.0,10.0,6.0,10.0,10.0,10.0,8.0,1,0.04 +69355,99.0,10.0,10.0,10.0,10.0,9.0,10.0,28,0.78 +61359,,,,,,,,0, +4838,98.0,10.0,10.0,10.0,10.0,10.0,9.0,31,0.88 +60329,,,,,,,,0, +2907,98.0,10.0,10.0,10.0,10.0,10.0,10.0,298,8.33 +71457,96.0,10.0,10.0,10.0,10.0,10.0,9.0,18,0.66 +67116,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.89 +64872,,,,,,,,0, +5623,96.0,10.0,10.0,10.0,10.0,10.0,9.0,49,1.46 +72430,,,,,,,,0, +38451,87.0,10.0,10.0,10.0,9.0,10.0,10.0,6,0.17 +44704,,,,,,,,0, +64979,99.0,10.0,10.0,10.0,10.0,9.0,10.0,18,0.5 +17067,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.17 +27572,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.17 +23708,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +1059,,,,,,,,0, +31211,,,,,,,,0, +36870,89.0,9.0,9.0,10.0,10.0,10.0,9.0,13,0.54 +54403,88.0,9.0,10.0,9.0,9.0,10.0,9.0,8,0.23 +49977,97.0,10.0,10.0,10.0,10.0,9.0,10.0,27,0.76 +5554,20.0,2.0,2.0,2.0,6.0,4.0,2.0,1,0.03 +63315,,,,,,,,0, +67512,,,,,,,,0, +32039,80.0,10.0,10.0,10.0,8.0,6.0,4.0,1,0.03 +20546,80.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.07 +31014,,,,,,,,0, +18317,,,,,,,,0, +5729,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.14 +55411,100.0,10.0,9.0,10.0,10.0,9.0,10.0,6,0.17 +28907,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.13 +1273,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +53259,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +17749,80.0,9.0,8.0,10.0,10.0,9.0,8.0,2,0.07 +42602,97.0,10.0,9.0,10.0,10.0,10.0,10.0,46,1.34 +11316,92.0,10.0,9.0,10.0,9.0,9.0,9.0,89,2.49 +30233,97.0,10.0,9.0,10.0,10.0,9.0,10.0,6,0.17 +18710,80.0,8.0,10.0,10.0,10.0,10.0,8.0,1,0.03 +59666,,,,,,,,0, +8500,93.0,10.0,9.0,10.0,10.0,9.0,9.0,8,0.25 +68589,,,,,,,,0, +1033,,,,,,,,0, +57712,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.27 +36873,93.0,9.0,9.0,10.0,10.0,9.0,9.0,41,1.14 +73015,82.0,9.0,8.0,8.0,8.0,9.0,8.0,35,0.96 +8589,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +34620,93.0,9.0,10.0,10.0,10.0,9.0,9.0,22,0.67 +38181,90.0,9.0,10.0,10.0,10.0,9.0,8.0,2,0.09 +26694,,,,,,,,0, +42961,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +68649,100.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.47 +52569,,,,,,,,0, +66224,80.0,10.0,8.0,10.0,10.0,6.0,8.0,1,0.03 +69877,87.0,9.0,8.0,10.0,10.0,10.0,9.0,24,0.7 +33783,90.0,9.0,10.0,10.0,10.0,9.0,10.0,2,0.06 +56567,98.0,10.0,10.0,10.0,10.0,9.0,10.0,64,1.77 +76572,,,,,,,,0, +13149,93.0,10.0,8.0,10.0,10.0,9.0,9.0,23,0.64 +23665,,,,,,,,0, +14829,93.0,10.0,9.0,10.0,10.0,9.0,10.0,4,0.11 +14727,93.0,9.0,7.0,10.0,10.0,9.0,9.0,3,0.28 +30366,92.0,10.0,9.0,10.0,10.0,9.0,9.0,20,0.59 +46311,99.0,10.0,10.0,10.0,10.0,9.0,10.0,41,1.13 +71710,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.11 +68702,,,,,,,,0, +69198,100.0,8.0,10.0,10.0,10.0,8.0,10.0,1,0.03 +39772,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.47 +55205,95.0,10.0,10.0,10.0,10.0,9.0,10.0,42,1.21 +70552,93.0,10.0,9.0,9.0,10.0,9.0,10.0,57,1.57 +69764,,,,,,,,0, +19845,,,,,,,,0, +9764,98.0,10.0,10.0,10.0,10.0,8.0,10.0,22,0.61 +24180,92.0,10.0,10.0,10.0,10.0,9.0,9.0,61,1.69 +59230,60.0,6.0,2.0,6.0,6.0,8.0,2.0,1,0.18 +59928,96.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.14 +64437,98.0,10.0,9.0,10.0,10.0,10.0,10.0,29,0.8 +23902,97.0,10.0,10.0,10.0,10.0,10.0,10.0,40,1.15 +7247,97.0,10.0,10.0,10.0,10.0,10.0,10.0,31,0.9 +6243,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +4739,88.0,10.0,9.0,10.0,10.0,10.0,9.0,5,0.28 +7308,,,,,,,,0, +73166,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +68090,,,,,,,,0, +65689,,,,,,,,1,0.03 +26008,96.0,10.0,10.0,10.0,10.0,9.0,10.0,67,2.42 +64362,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +35460,91.0,8.0,9.0,10.0,10.0,10.0,9.0,22,0.62 +15126,,,,,,,,0, +325,80.0,10.0,6.0,10.0,10.0,10.0,8.0,1,0.03 +41596,100.0,10.0,10.0,9.0,10.0,9.0,10.0,3,0.08 +11546,,,,,,,,0, +65365,97.0,10.0,10.0,10.0,10.0,9.0,9.0,14,0.39 +63563,100.0,10.0,10.0,10.0,10.0,10.0,10.0,36,1.04 +48231,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.06 +40867,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +61012,100.0,9.0,10.0,9.0,10.0,10.0,10.0,6,0.17 +34242,88.0,9.0,9.0,10.0,10.0,10.0,9.0,12,0.34 +38125,92.0,10.0,10.0,10.0,10.0,8.0,9.0,6,0.17 +42096,91.0,9.0,9.0,9.0,9.0,10.0,9.0,75,2.06 +3870,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.31 +8446,95.0,10.0,9.0,10.0,10.0,10.0,9.0,46,1.39 +32930,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.78 +75381,,,,,,,,0, +36287,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +43573,,,,,,,,0, +26311,96.0,10.0,9.0,10.0,10.0,10.0,9.0,18,0.5 +43936,97.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.47 +51899,93.0,10.0,9.0,10.0,10.0,10.0,10.0,6,0.2 +6141,98.0,10.0,9.0,10.0,10.0,9.0,10.0,10,0.28 +210,93.0,10.0,9.0,10.0,10.0,10.0,10.0,19,0.59 +58078,40.0,8.0,4.0,6.0,4.0,2.0,4.0,1,0.03 +12814,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +76763,97.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.35 +71022,97.0,10.0,10.0,10.0,10.0,10.0,10.0,43,1.24 +59435,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.37 +16782,98.0,10.0,10.0,10.0,10.0,10.0,9.0,28,0.84 +23257,98.0,10.0,10.0,10.0,10.0,9.0,9.0,29,0.9 +75323,,,,,,,,0, +24939,97.0,10.0,10.0,10.0,10.0,10.0,10.0,31,0.92 +11277,,,,,,,,0, +74035,,,,,,,,0, +54233,90.0,9.0,10.0,9.0,9.0,9.0,9.0,2,0.06 +3016,100.0,10.0,10.0,10.0,9.0,10.0,10.0,2,0.05 +72735,97.0,10.0,10.0,10.0,10.0,9.0,9.0,14,0.44 +14194,100.0,10.0,10.0,10.0,10.0,9.0,9.0,7,0.28 +49488,,,,,,,,0, +15498,,,,,,,,0, +13841,,,,,,,,0, +38923,83.0,8.0,9.0,9.0,8.0,10.0,8.0,38,1.09 +66821,86.0,9.0,8.0,10.0,10.0,8.0,9.0,10,0.28 +19132,98.0,10.0,10.0,10.0,10.0,10.0,10.0,53,1.59 +55397,92.0,10.0,10.0,10.0,10.0,9.0,9.0,82,2.29 +979,95.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.12 +25166,96.0,10.0,9.0,10.0,10.0,9.0,10.0,17,0.48 +41393,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.03 +8081,100.0,10.0,10.0,10.0,10.0,10.0,10.0,30,1.11 +33628,93.0,9.0,9.0,10.0,9.0,9.0,10.0,8,0.27 +17153,100.0,9.0,10.0,10.0,10.0,10.0,10.0,3,0.08 +67839,96.0,10.0,9.0,10.0,10.0,10.0,10.0,18,0.61 +17136,,,,,,,,0, +62810,,,,,,,,0, +31538,85.0,10.0,9.0,9.0,10.0,9.0,9.0,12,0.34 +33791,,,,,,,,0, +56166,,,,,,,,0, +16298,60.0,10.0,8.0,10.0,8.0,6.0,8.0,1,0.03 +11349,,,,,,,,0, +68223,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.12 +6718,,,,,,,,0, +57682,,,,,,,,0, +60453,,,,,,,,0, +64580,40.0,4.0,4.0,5.0,5.0,9.0,4.0,3,0.08 +18063,95.0,10.0,9.0,10.0,10.0,10.0,10.0,10,0.28 +58136,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +41353,60.0,10.0,8.0,10.0,10.0,6.0,8.0,1,0.03 +39625,100.0,,10.0,,10.0,,,1,0.03 +63360,,,,,,,,0, +63284,,,,,,,,0, +50472,89.0,9.0,10.0,10.0,10.0,9.0,9.0,7,0.2 +67402,97.0,10.0,10.0,10.0,10.0,10.0,10.0,72,1.97 +17091,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.06 +70710,91.0,9.0,10.0,9.0,9.0,9.0,9.0,7,0.23 +59780,,,,,,,,0, +60123,,,,,,,,0, +8909,82.0,9.0,8.0,9.0,9.0,8.0,8.0,87,2.37 +69165,,,,,,,,0, +76588,89.0,9.0,9.0,10.0,10.0,9.0,9.0,67,2.24 +55737,87.0,9.0,8.0,9.0,9.0,9.0,9.0,24,0.67 +19918,99.0,10.0,9.0,10.0,10.0,10.0,10.0,17,0.47 +37718,,,,,,,,0, +480,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.35 +23973,97.0,10.0,9.0,10.0,10.0,10.0,10.0,6,0.17 +30736,96.0,10.0,10.0,10.0,10.0,9.0,9.0,42,1.17 +5113,,,,,,,,0, +6595,,,,,,,,0, +55447,,,,,,,,0, +5682,94.0,10.0,10.0,10.0,10.0,9.0,9.0,57,1.59 +24919,94.0,9.0,9.0,10.0,10.0,9.0,9.0,48,6.34 +16380,,,,,,,,0, +42041,95.0,10.0,10.0,10.0,10.0,10.0,9.0,40,1.15 +61350,95.0,10.0,10.0,9.0,9.0,10.0,9.0,52,1.46 +57989,90.0,9.0,9.0,10.0,9.0,8.0,10.0,2,0.14 +19137,,,,,,,,0, +16644,,,,,,,,0, +7398,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.03 +63748,90.0,10.0,8.0,9.0,9.0,10.0,8.0,2,0.06 +18782,90.0,9.0,9.0,9.0,10.0,8.0,9.0,25,0.76 +35690,,,,,,,,1,0.03 +23792,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.06 +59791,94.0,10.0,9.0,10.0,10.0,10.0,10.0,65,1.82 +71700,90.0,9.0,9.0,9.0,9.0,8.0,9.0,2,0.08 +66190,60.0,4.0,2.0,10.0,10.0,10.0,6.0,1,0.03 +76891,80.0,10.0,6.0,4.0,8.0,10.0,6.0,1,0.03 +36592,98.0,10.0,9.0,10.0,10.0,10.0,10.0,9,0.32 +10115,82.0,9.0,8.0,9.0,10.0,8.0,8.0,12,0.33 +12420,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.11 +61391,,,,,,,,0, +110,84.0,9.0,8.0,9.0,10.0,8.0,9.0,112,3.09 +73259,95.0,10.0,9.0,10.0,10.0,10.0,9.0,22,0.62 +24356,,,,,,,,0, +41584,100.0,10.0,10.0,10.0,10.0,10.0,9.0,7,0.24 +39827,97.0,10.0,9.0,10.0,10.0,10.0,10.0,172,4.86 +76245,95.0,10.0,10.0,10.0,10.0,9.0,10.0,182,5.17 +68496,,,,,,,,0, +54881,89.0,8.0,9.0,8.0,9.0,9.0,7.0,8,0.22 +27104,97.0,10.0,10.0,10.0,10.0,10.0,10.0,23,0.75 +6227,,,,,,,,0, +56974,93.0,10.0,10.0,10.0,10.0,10.0,9.0,4,1.09 +11076,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +15665,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.05 +53921,,,,,,,,0, +44476,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +27907,,,,,,,,0, +29116,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +31870,,,,,,,,0, +13723,,,,,,,,0, +56272,,,,,,,,1,0.04 +7667,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.25 +26324,,,,,,,,0, +62230,,,,,,,,0, +37708,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.03 +59244,90.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.07 +1299,93.0,9.0,9.0,10.0,10.0,10.0,9.0,25,0.79 +21808,80.0,8.0,4.0,4.0,10.0,10.0,6.0,1,0.23 +21822,93.0,9.0,10.0,10.0,10.0,8.0,9.0,6,0.17 +15423,84.0,9.0,8.0,10.0,10.0,10.0,9.0,11,0.31 +39080,92.0,10.0,9.0,10.0,10.0,9.0,10.0,46,1.56 +23540,,,,,,,,0, +25448,98.0,10.0,10.0,10.0,10.0,10.0,10.0,25,0.77 +402,,,,,,,,0, +61563,,,,,,,,1,0.03 +57218,,,,,,,,0, +23369,,,,,,,,0, +57630,,,,,,,,0, +23932,,,,,,,,0, +20949,92.0,10.0,9.0,10.0,10.0,10.0,9.0,5,0.14 +60615,97.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.2 +55888,87.0,9.0,9.0,8.0,9.0,9.0,9.0,12,0.34 +58898,95.0,10.0,10.0,8.0,9.0,9.0,9.0,11,0.35 +55909,99.0,10.0,10.0,10.0,10.0,10.0,10.0,19,0.53 +30706,94.0,10.0,9.0,10.0,10.0,9.0,9.0,61,1.86 +15907,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.11 +14610,60.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.03 +31962,60.0,6.0,8.0,8.0,6.0,10.0,6.0,1,0.03 +58552,100.0,10.0,9.0,10.0,10.0,10.0,10.0,6,0.17 +20610,90.0,9.0,6.0,10.0,10.0,10.0,9.0,3,0.08 +14652,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +64451,,,,,,,,0, +24474,,,,,,,,0, +22369,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.03 +18019,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.29 +30365,60.0,8.0,4.0,8.0,10.0,8.0,6.0,1,0.03 +66100,,,,,,,,0, +71421,,,,,,,,0, +75649,80.0,8.0,8.0,10.0,10.0,8.0,10.0,1,0.07 +73818,90.0,9.0,10.0,10.0,10.0,10.0,9.0,122,3.41 +59703,30.0,7.0,2.0,7.0,6.0,6.0,4.0,2,0.05 +57561,93.0,9.0,9.0,10.0,10.0,10.0,9.0,75,4.05 +18561,96.0,9.0,10.0,10.0,10.0,9.0,10.0,52,1.45 +50688,,,,,,,,1,0.03 +51126,,,,,,,,0, +71911,95.0,9.0,10.0,10.0,10.0,10.0,10.0,12,0.44 +7031,93.0,10.0,9.0,10.0,9.0,10.0,9.0,72,2.06 +7529,,,,,,,,0, +30507,,,,,,,,0, +21310,,,,,,,,0, +4194,100.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.03 +11726,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +70366,90.0,10.0,9.0,10.0,10.0,10.0,9.0,2,0.06 +1335,86.0,9.0,8.0,9.0,10.0,10.0,9.0,45,1.23 +21347,,,,,,,,0, +64627,,,,,,,,0, +24567,,,,,,,,1,0.06 +67192,96.0,10.0,10.0,10.0,10.0,10.0,10.0,60,1.74 +21892,76.0,8.0,9.0,9.0,9.0,10.0,8.0,10,0.28 +70521,90.0,9.0,9.0,10.0,10.0,9.0,9.0,89,2.5 +18634,80.0,10.0,4.0,10.0,10.0,10.0,10.0,2,0.07 +12700,,,,,,,,0, +43293,,,,,,,,0, +599,,,,,,,,0, +65318,89.0,9.0,9.0,9.0,9.0,9.0,9.0,39,1.08 +648,98.0,10.0,10.0,10.0,10.0,10.0,10.0,40,1.37 +47940,89.0,9.0,8.0,10.0,10.0,9.0,9.0,65,1.8 +30920,93.0,9.0,9.0,9.0,9.0,10.0,9.0,44,1.23 +30077,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.03 +56302,85.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.17 +33947,,,,,,,,0, +44795,,,,,,,,0, +59905,,,,,,,,0, +72677,98.0,10.0,10.0,10.0,10.0,10.0,10.0,41,1.16 +42847,96.0,10.0,9.0,10.0,10.0,10.0,10.0,67,1.9 +39462,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.15 +39059,,,,,,,,0, +65337,,,,,,,,0, +11234,100.0,10.0,8.0,8.0,10.0,10.0,10.0,3,0.08 +29186,95.0,10.0,10.0,10.0,10.0,9.0,9.0,163,4.49 +10269,91.0,9.0,9.0,10.0,10.0,9.0,10.0,31,0.86 +46254,98.0,10.0,9.0,10.0,10.0,10.0,10.0,32,0.88 +10834,,,,,,,,0, +19870,80.0,10.0,4.0,6.0,10.0,10.0,8.0,1,0.03 +3176,94.0,10.0,9.0,9.0,10.0,10.0,10.0,10,0.28 +10975,91.0,9.0,10.0,10.0,10.0,10.0,9.0,155,4.34 +11119,,,,,,,,0, +34974,93.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.08 +71467,100.0,10.0,9.0,10.0,10.0,9.0,10.0,3,0.13 +2307,95.0,10.0,10.0,9.0,10.0,10.0,9.0,11,0.38 +13425,96.0,10.0,10.0,10.0,10.0,10.0,10.0,42,3.52 +72227,,,,,,,,0, +45398,90.0,9.0,9.0,10.0,10.0,10.0,9.0,51,1.43 +42381,91.0,10.0,8.0,10.0,10.0,10.0,9.0,14,0.49 +66902,,,,,,,,0, +53502,80.0,8.0,8.0,8.0,7.0,8.0,6.0,2,0.11 +8014,,,,,,,,0, +21814,,,,,,,,0, +71087,,,,,,,,0, +73857,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.06 +1955,98.0,10.0,10.0,10.0,10.0,9.0,10.0,169,4.69 +48076,,,,,,,,0, +76300,95.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.26 +45744,,,,,,,,0, +24810,,,,,,,,0, +12644,,,,,,,,0, +74529,93.0,10.0,9.0,9.0,10.0,9.0,9.0,15,0.46 +71685,,,,,,,,0, +30340,,,,,,,,0, +63077,90.0,9.0,9.0,10.0,10.0,9.0,10.0,2,0.05 +15370,100.0,10.0,9.0,10.0,9.0,10.0,8.0,2,0.06 +70912,92.0,10.0,9.0,10.0,10.0,9.0,9.0,33,0.96 +63285,93.0,10.0,8.0,10.0,10.0,10.0,8.0,4,0.11 +43132,95.0,10.0,10.0,10.0,9.0,9.0,9.0,12,0.34 +28549,67.0,9.0,9.0,7.0,6.0,8.0,7.0,3,0.1 +4522,93.0,10.0,10.0,10.0,9.0,9.0,9.0,36,1.03 +61077,96.0,10.0,10.0,10.0,10.0,10.0,9.0,45,1.39 +49435,80.0,9.0,9.0,8.0,10.0,9.0,9.0,2,0.06 +22866,,,,,,,,0, +54169,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +3291,,,,,,,,0, +4826,,,,,,,,0, +13673,,,,,,,,1,0.03 +44674,,,,,,,,0, +17991,96.0,10.0,10.0,10.0,10.0,9.0,10.0,103,2.83 +63322,60.0,10.0,2.0,2.0,2.0,8.0,8.0,1,0.03 +5616,,,,,,,,0, +42557,96.0,9.0,9.0,10.0,10.0,10.0,10.0,5,0.14 +34512,98.0,10.0,10.0,10.0,10.0,10.0,10.0,23,0.84 +4745,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.08 +6935,,,,,,,,0, +50807,,,,,,,,0, +25300,40.0,6.0,5.0,4.0,5.0,8.0,5.0,3,0.1 +69384,,,,,,,,0, +27914,,,,,,,,0, +74814,96.0,10.0,10.0,9.0,9.0,10.0,9.0,93,2.62 +65759,,,,,,,,0, +47449,100.0,10.0,10.0,10.0,10.0,9.0,9.0,4,0.11 +6339,91.0,9.0,10.0,9.0,9.0,10.0,9.0,31,0.87 +67691,,,,,,,,0, +45624,,,,,,,,0, +24811,95.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.18 +73036,80.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.03 +46972,,,,,,,,0, +9609,,,,,,,,0, +30010,,,,,,,,0, +35439,,,,,,,,0, +28455,,,,,,,,0, +46520,,,,,,,,0, +68273,93.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.35 +69288,99.0,10.0,10.0,10.0,10.0,10.0,10.0,55,1.52 +56378,96.0,10.0,9.0,10.0,10.0,9.0,9.0,5,0.15 +12256,97.0,10.0,10.0,10.0,10.0,9.0,10.0,27,3.63 +62476,93.0,9.0,9.0,10.0,9.0,9.0,9.0,21,0.57 +40635,94.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.36 +48314,,,,,,,,0, +48020,80.0,9.0,8.0,9.0,9.0,8.0,8.0,117,3.23 +11303,,,,,,,,0, +2471,80.0,8.0,8.0,8.0,8.0,6.0,8.0,1,0.03 +32044,94.0,10.0,9.0,10.0,10.0,9.0,9.0,158,4.37 +45062,93.0,10.0,9.0,10.0,10.0,9.0,9.0,97,2.7 +19820,,,,,,,,0, +22142,,,,,,,,0, +74667,,,,,,,,0, +20416,,,,,,,,0, +32940,60.0,7.0,7.0,7.0,7.0,9.0,6.0,3,0.1 +7297,,,,,,,,0, +41417,99.0,10.0,10.0,10.0,10.0,10.0,10.0,26,0.8 +9668,100.0,10.0,10.0,10.0,10.0,10.0,10.0,20,2.37 +76266,,,,,,,,0, +75483,,,,,,,,0, +25167,100.0,8.0,8.0,4.0,10.0,10.0,10.0,1,0.03 +32510,,,,,,,,0, +24001,92.0,10.0,9.0,10.0,10.0,9.0,9.0,10,0.35 +44563,87.0,9.0,9.0,9.0,9.0,10.0,9.0,16,0.53 +19700,89.0,9.0,9.0,9.0,10.0,10.0,9.0,51,1.43 +16681,82.0,9.0,8.0,10.0,9.0,9.0,8.0,18,0.51 +22061,,,,,,,,0, +44794,,,,,,,,0, +37631,,,,,,,,0, +45432,,,,,,,,0, +27307,,,,,,,,0, +46220,,,,,,,,0, +63702,88.0,9.0,9.0,9.0,9.0,9.0,9.0,27,0.75 +45885,96.0,10.0,9.0,9.0,10.0,9.0,9.0,5,0.36 +26971,,,,,,,,0, +7701,93.0,8.0,10.0,10.0,9.0,9.0,10.0,6,0.17 +6899,,,,,,,,0, +18035,,,,,,,,0, +51614,,,,,,,,0, +59742,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.14 +36128,93.0,10.0,9.0,10.0,10.0,9.0,10.0,9,0.25 +69501,,,,,,,,0, +70667,97.0,10.0,9.0,9.0,10.0,9.0,9.0,23,0.63 +50075,,,,,,,,0, +27683,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.23 +68673,,,,,,,,0, +38725,60.0,8.0,2.0,8.0,10.0,6.0,6.0,1,0.03 +60421,89.0,9.0,9.0,9.0,9.0,10.0,9.0,57,1.6 +3299,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +36316,99.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.51 +27116,,,,,,,,0, +71901,100.0,10.0,10.0,10.0,10.0,9.0,10.0,24,1.2 +2445,94.0,9.0,10.0,10.0,10.0,10.0,9.0,7,1.08 +59485,,,,,,,,0, +27777,89.0,9.0,9.0,9.0,9.0,10.0,8.0,9,0.25 +33824,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.49 +25595,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.37 +46360,99.0,10.0,9.0,9.0,10.0,10.0,10.0,17,0.46 +57386,100.0,10.0,10.0,10.0,8.0,8.0,10.0,2,0.06 +10821,,,,,,,,0, +15638,98.0,10.0,10.0,10.0,10.0,10.0,10.0,29,0.85 +44559,,,,,,,,0, +61000,93.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.2 +29370,91.0,10.0,10.0,10.0,10.0,9.0,9.0,21,0.58 +47523,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.39 +47849,80.0,8.0,8.0,10.0,8.0,8.0,8.0,1,0.03 +59783,80.0,8.0,7.0,10.0,10.0,9.0,9.0,4,0.11 +41431,,,,,,,,0, +14991,80.0,9.0,8.0,10.0,9.0,9.0,9.0,4,0.11 +38148,95.0,10.0,9.0,10.0,10.0,9.0,9.0,60,1.68 +57459,,,,,,,,0, +65619,,,,,,,,0, +7435,,,,,,,,0, +39646,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +34825,80.0,8.0,10.0,10.0,10.0,6.0,6.0,1,0.03 +59850,,,,,,,,0, +471,,,,,,,,0, +61111,,,,,,,,0, +69604,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,3.16 +59517,,,,,,,,0, +73522,,,,,,,,0, +37116,94.0,10.0,9.0,10.0,9.0,10.0,9.0,24,0.73 +1261,99.0,10.0,10.0,10.0,10.0,10.0,10.0,20,0.6 +11464,,,,,,,,0, +11334,94.0,9.0,9.0,10.0,10.0,10.0,9.0,32,0.91 +13688,99.0,10.0,10.0,10.0,10.0,10.0,10.0,89,2.67 +61992,,,,,,,,0, +35276,99.0,10.0,10.0,10.0,10.0,10.0,10.0,34,0.96 +69102,85.0,9.0,8.0,9.0,9.0,9.0,9.0,16,0.46 +13106,93.0,10.0,9.0,10.0,10.0,9.0,9.0,69,1.92 +59523,96.0,10.0,10.0,10.0,10.0,10.0,10.0,50,1.37 +53892,95.0,10.0,10.0,10.0,10.0,9.0,9.0,111,3.06 +4154,,,,,,,,0, +8305,,,,,,,,0, +8723,97.0,9.0,9.0,9.0,10.0,9.0,9.0,27,0.79 +55345,91.0,9.0,9.0,10.0,10.0,9.0,9.0,7,0.25 +50311,,,,,,,,0, +11750,97.0,10.0,9.0,10.0,10.0,10.0,10.0,19,3.65 +55121,,,,,,,,0, +20139,80.0,8.0,10.0,10.0,10.0,8.0,8.0,1,0.03 +64394,95.0,10.0,10.0,9.0,10.0,10.0,9.0,116,3.22 +54832,,,,,,,,0, +58425,91.0,9.0,9.0,9.0,10.0,10.0,9.0,64,1.94 +14546,77.0,9.0,8.0,10.0,9.0,8.0,8.0,15,0.44 +55264,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.31 +59488,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.28 +29518,97.0,10.0,10.0,10.0,10.0,10.0,10.0,62,1.76 +18253,93.0,10.0,9.0,9.0,10.0,10.0,10.0,6,0.17 +33423,,,,,,,,0, +6868,,,,,,,,0, +34981,80.0,10.0,8.0,10.0,6.0,10.0,8.0,1,0.03 +64169,,,,,,,,0, +22655,,,,,,,,0, +8046,84.0,8.0,8.0,9.0,9.0,9.0,9.0,19,0.77 +59919,,,,,,,,0, +63771,100.0,10.0,8.0,10.0,10.0,8.0,10.0,1,0.03 +15290,94.0,10.0,9.0,10.0,10.0,9.0,10.0,14,2.63 +31481,,,,,,,,0, +42045,80.0,2.0,2.0,6.0,10.0,10.0,10.0,1,0.03 +11492,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.25 +22101,,,,,,,,0, +50389,,,,,,,,0, +56200,87.0,9.0,8.0,10.0,10.0,10.0,9.0,13,0.36 +61676,,,,,,,,0, +46086,,,,,,,,0, +19924,,,,,,,,0, +72585,,,,,,,,0, +57906,96.0,10.0,10.0,10.0,10.0,10.0,9.0,10,0.29 +45783,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.24 +14280,100.0,8.0,8.0,10.0,10.0,10.0,10.0,1,0.03 +9425,,,,,,,,0, +65445,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.13 +29288,100.0,10.0,10.0,10.0,10.0,10.0,10.0,30,0.84 +74754,93.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.08 +74813,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +64520,40.0,6.0,8.0,2.0,4.0,10.0,4.0,1,0.06 +38513,94.0,9.0,10.0,10.0,10.0,9.0,9.0,42,1.18 +56792,98.0,10.0,10.0,10.0,10.0,9.0,10.0,14,0.4 +13172,,,,,,,,0, +67169,80.0,8.0,6.0,8.0,10.0,10.0,,1,0.04 +50771,,,,,,,,0, +64236,80.0,10.0,10.0,8.0,6.0,10.0,8.0,1,0.04 +40836,,,,,,,,0, +64566,95.0,10.0,10.0,10.0,10.0,9.0,9.0,25,0.72 +25931,,,,,,,,0, +68157,,,,,,,,0, +40448,85.0,9.0,9.0,8.0,10.0,10.0,10.0,4,0.11 +1517,,,,,,,,0, +21393,80.0,10.0,9.0,7.0,8.0,8.0,8.0,2,0.06 +14912,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +48734,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +14772,80.0,9.0,10.0,10.0,10.0,10.0,10.0,2,0.06 +45099,98.0,10.0,10.0,10.0,10.0,10.0,10.0,42,1.2 +14883,,,,,,,,0, +25077,,,,,,,,0, +57652,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.11 +49896,,,,,,,,0, +34784,93.0,10.0,9.0,10.0,10.0,10.0,9.0,51,1.42 +29011,,,,,,,,0, +17385,100.0,10.0,10.0,10.0,10.0,10.0,10.0,30,0.89 +7576,95.0,9.0,10.0,10.0,10.0,10.0,9.0,66,1.85 +10877,,,,,,,,0, +60002,93.0,9.0,9.0,9.0,10.0,9.0,9.0,3,0.09 +25887,,,,,,,,0, +8407,80.0,9.0,7.0,10.0,9.0,9.0,9.0,3,0.09 +69432,,,,,,,,0, +61985,,,,,,,,0, +57730,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +20983,100.0,9.0,10.0,10.0,10.0,10.0,9.0,5,0.16 +37045,70.0,8.0,5.0,9.0,9.0,10.0,7.0,3,0.09 +65433,,,,,,,,0, +32858,99.0,10.0,10.0,10.0,10.0,10.0,10.0,150,4.25 +17005,100.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.52 +63410,100.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.67 +27404,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.21 +63107,100.0,10.0,10.0,10.0,10.0,10.0,10.0,20,0.56 +43421,,,,,,,,0, +74981,80.0,10.0,8.0,10.0,8.0,10.0,8.0,1,0.03 +6457,60.0,8.0,8.0,8.0,8.0,10.0,8.0,1,0.03 +57699,,,,,,,,0, +40292,91.0,10.0,9.0,9.0,10.0,10.0,9.0,39,1.17 +66204,,,,,,,,0, +5647,94.0,10.0,9.0,10.0,10.0,9.0,10.0,11,0.31 +46616,89.0,10.0,10.0,9.0,9.0,10.0,9.0,51,1.45 +4548,97.0,10.0,9.0,10.0,10.0,9.0,9.0,14,0.75 +27669,,,,,,,,0, +41544,60.0,8.0,4.0,10.0,8.0,10.0,8.0,3,0.09 +35156,,,,,,,,0, +3620,97.0,10.0,9.0,10.0,10.0,9.0,10.0,12,0.34 +72494,,,,,,,,0, +53699,91.0,10.0,9.0,10.0,10.0,9.0,9.0,66,1.93 +70291,80.0,8.0,2.0,10.0,10.0,10.0,8.0,1,0.03 +5847,85.0,10.0,8.0,9.0,10.0,8.0,8.0,4,0.11 +15759,,,,,,,,0, +21802,90.0,9.0,10.0,10.0,10.0,9.0,10.0,2,0.1 +15555,,,,,,,,0, +56432,,,,,,,,0, +69848,,,,,,,,0, +3606,98.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.46 +41476,96.0,10.0,10.0,10.0,10.0,10.0,10.0,38,1.43 +69842,92.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.17 +59076,80.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +26843,98.0,10.0,9.0,10.0,10.0,10.0,9.0,13,0.38 +61776,,,,,,,,0, +33658,97.0,10.0,10.0,10.0,10.0,10.0,10.0,39,1.08 +33198,84.0,9.0,9.0,10.0,10.0,10.0,9.0,24,0.67 +2780,,,,,,,,0, +54106,98.0,10.0,10.0,10.0,10.0,10.0,10.0,28,0.78 +71974,94.0,9.0,9.0,10.0,10.0,10.0,9.0,78,2.16 +59142,98.0,10.0,9.0,9.0,10.0,9.0,10.0,12,0.34 +67336,,,,,,,,0, +68493,,,,,,,,0, +27470,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.06 +101,88.0,9.0,9.0,9.0,10.0,9.0,9.0,116,3.25 +63668,80.0,8.0,6.0,8.0,8.0,10.0,8.0,1,0.03 +52901,80.0,8.0,8.0,9.0,9.0,9.0,8.0,6,0.21 +68551,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.31 +29909,,,,,,,,0, +13672,,,,,,,,0, +21772,,,,,,,,0, +19255,,,,,,,,2,0.07 +63601,,,,,,,,0, +52200,95.0,10.0,10.0,10.0,10.0,10.0,9.0,58,1.62 +7685,,,,,,,,0, +21918,,,,,,,,0, +16801,,,,,,,,0, +70294,,,,,,,,0, +71492,98.0,10.0,10.0,10.0,10.0,10.0,9.0,63,2.47 +48946,99.0,10.0,10.0,10.0,10.0,10.0,10.0,55,2.08 +10987,,,,,,,,0, +27242,,,,,,,,0, +11840,,,,,,,,0, +46326,,,,,,,,0, +28693,,,,,,,,0, +46689,,,,,,,,0, +4604,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.42 +27273,,,,,,,,0, +1303,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.6 +58919,,,,,,,,0, +20820,,,,,,,,0, +50484,,,,,,,,1,0.04 +16383,93.0,10.0,10.0,10.0,9.0,10.0,9.0,53,1.51 +10568,94.0,10.0,10.0,10.0,10.0,9.0,9.0,48,1.43 +2141,,,,,,,,1,0.03 +15159,,,,,,,,0, +40164,96.0,10.0,10.0,10.0,10.0,9.0,10.0,10,0.28 +26435,94.0,10.0,10.0,10.0,10.0,9.0,10.0,26,0.75 +31477,100.0,10.0,10.0,7.0,9.0,9.0,9.0,3,0.08 +30035,93.0,9.0,9.0,9.0,9.0,10.0,9.0,12,0.35 +39862,,,,,,,,2,0.06 +23749,,,,,,,,0, +68292,95.0,10.0,9.0,10.0,10.0,10.0,10.0,52,1.45 +23986,,,,,,,,0, +19300,,,,,,,,0, +60733,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.03 +16994,99.0,10.0,10.0,10.0,10.0,10.0,10.0,40,1.11 +3484,97.0,10.0,9.0,10.0,10.0,9.0,10.0,35,0.98 +17981,,,,,,,,0, +61394,95.0,9.0,9.0,10.0,10.0,10.0,10.0,4,0.11 +7890,89.0,9.0,8.0,10.0,10.0,10.0,10.0,9,0.25 +49393,88.0,10.0,10.0,10.0,10.0,9.0,10.0,34,1.06 +71530,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.05 +32360,,,,,,,,0, +58765,,,,,,,,0, +36142,,,,,,,,1,0.03 +23985,,,,,,,,0, +11987,,,,,,,,0, +36775,,,,,,,,0, +65095,100.0,9.0,10.0,10.0,10.0,9.0,9.0,3,3.0 +17057,91.0,10.0,9.0,10.0,10.0,9.0,9.0,14,0.45 +32707,70.0,8.0,7.0,9.0,9.0,9.0,8.0,2,0.06 +51201,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.14 +5625,87.0,9.0,10.0,9.0,9.0,8.0,9.0,148,4.1 +32973,80.0,8.0,6.0,10.0,10.0,10.0,8.0,1,0.21 +5333,60.0,8.0,6.0,10.0,10.0,8.0,6.0,1,0.03 +42382,86.0,10.0,9.0,10.0,9.0,9.0,9.0,32,0.9 +70623,,,,,,,,0, +47197,,,,,,,,0, +58389,,,,,,,,0, +72180,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.17 +48390,92.0,9.0,9.0,10.0,10.0,8.0,9.0,22,0.66 +48688,97.0,9.0,10.0,9.0,9.0,9.0,9.0,7,0.26 +48848,100.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.03 +46137,90.0,9.0,10.0,10.0,10.0,9.0,9.0,18,0.5 +70974,93.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.1 +22783,,,,,,,,0, +15996,77.0,9.0,8.0,9.0,8.0,8.0,8.0,12,0.35 +49931,93.0,10.0,9.0,10.0,10.0,10.0,9.0,169,4.68 +28590,,,,,,,,0, +76935,,,,,,,,0, +64833,91.0,9.0,9.0,10.0,10.0,10.0,9.0,76,2.13 +2451,,,,,,,,0, +5290,,,,,,,,0, +59810,100.0,10.0,10.0,10.0,10.0,10.0,10.0,15,1.07 +63245,,,,,,,,0, +56401,95.0,10.0,9.0,10.0,10.0,9.0,10.0,112,3.15 +34498,87.0,9.0,10.0,10.0,10.0,9.0,9.0,3,0.08 +56884,94.0,10.0,10.0,10.0,10.0,10.0,9.0,39,1.1 +69140,90.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.08 +44286,92.0,10.0,10.0,9.0,9.0,9.0,10.0,15,0.42 +30021,89.0,9.0,10.0,9.0,10.0,8.0,9.0,9,0.27 +23457,70.0,7.0,7.0,7.0,9.0,8.0,7.0,4,0.45 +42074,96.0,9.0,10.0,10.0,9.0,9.0,9.0,10,0.29 +35009,93.0,10.0,10.0,10.0,10.0,9.0,9.0,9,0.25 +71925,94.0,10.0,9.0,10.0,10.0,9.0,9.0,28,0.8 +25553,80.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.04 +62329,,,,,,,,0, +66582,100.0,10.0,9.0,10.0,10.0,10.0,9.0,2,0.06 +4634,,,,,,,,0, +15240,88.0,10.0,7.0,10.0,10.0,10.0,9.0,9,0.25 +5753,94.0,9.0,9.0,9.0,10.0,9.0,9.0,41,1.25 +7514,,,,,,,,0, +35303,,,,,,,,0, +11387,87.0,10.0,9.0,9.0,9.0,9.0,9.0,3,0.12 +41192,88.0,9.0,9.0,10.0,10.0,9.0,9.0,35,0.98 +40863,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +34971,100.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.45 +27189,88.0,9.0,9.0,10.0,10.0,9.0,9.0,36,1.02 +50760,,,,,,,,0, +30684,,,,,,,,0, +38990,,,,,,,,0, +53999,86.0,9.0,8.0,9.0,9.0,9.0,9.0,45,1.3 +52629,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.35 +59806,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +46993,,,,,,,,0, +14028,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +924,80.0,8.0,8.0,7.0,7.0,9.0,9.0,5,0.14 +51538,94.0,9.0,9.0,10.0,9.0,9.0,9.0,18,0.56 +76653,86.0,9.0,9.0,9.0,9.0,10.0,9.0,45,1.35 +13441,,,,,,,,0, +59904,80.0,8.0,8.0,10.0,10.0,6.0,8.0,1,0.03 +59017,,,,,,,,0, +26045,,,,,,,,0, +3939,,,,,,,,0, +24265,,,,,,,,0, +26535,,,,,,,,0, +15197,90.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.17 +51608,98.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.45 +24902,97.0,10.0,10.0,10.0,10.0,9.0,10.0,64,1.84 +29671,,,,,,,,0, +47469,,,,,,,,0, +47993,100.0,10.0,8.0,10.0,8.0,8.0,8.0,1,0.04 +55217,98.0,10.0,9.0,10.0,10.0,10.0,9.0,13,0.67 +66520,,,,,,,,0, +4450,,,,,,,,0, +17083,97.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.2 +47126,,,,,,,,0, +45460,,,,,,,,0, +24073,100.0,10.0,9.0,9.0,10.0,10.0,9.0,2,0.06 +5364,99.0,10.0,10.0,10.0,10.0,10.0,10.0,22,0.82 +15375,100.0,8.0,10.0,10.0,10.0,10.0,10.0,2,1.02 +9156,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.5 +36482,,,,,,,,0, +19995,91.0,10.0,9.0,10.0,9.0,9.0,9.0,20,0.59 +5525,,,,,,,,0, +68738,,,,,,,,0, +33714,95.0,10.0,9.0,10.0,10.0,10.0,9.0,15,0.47 +55337,,,,,,,,0, +73397,,,,,,,,0, +37846,,,,,,,,0, +59579,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +66846,93.0,9.0,10.0,10.0,10.0,9.0,9.0,27,0.84 +19007,97.0,10.0,10.0,10.0,10.0,10.0,10.0,64,1.77 +28947,,,,,,,,1,0.03 +22015,,,,,,,,0, +75469,98.0,10.0,10.0,10.0,10.0,9.0,9.0,28,0.79 +4437,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +23480,,,,,,,,0, +30222,100.0,4.0,10.0,10.0,10.0,6.0,10.0,1,0.43 +44343,90.0,9.0,9.0,9.0,10.0,9.0,9.0,6,0.18 +26081,,,,,,,,1,0.03 +32352,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.59 +14264,60.0,7.0,5.0,5.0,7.0,7.0,5.0,8,0.22 +53750,92.0,9.0,10.0,10.0,10.0,9.0,9.0,62,1.78 +23965,91.0,9.0,9.0,10.0,9.0,9.0,9.0,81,2.39 +26605,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +15325,,,,,,,,0, +7156,,,,,,,,0, +19461,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.06 +49972,79.0,8.0,8.0,8.0,9.0,9.0,9.0,22,1.44 +76560,82.0,9.0,9.0,9.0,8.0,9.0,9.0,12,0.34 +57566,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.08 +52853,80.0,10.0,8.0,8.0,10.0,8.0,8.0,1,0.03 +55010,96.0,10.0,10.0,10.0,10.0,10.0,10.0,68,1.99 +56909,,,,,,,,0, +66642,,,,,,,,0, +19176,94.0,9.0,9.0,10.0,10.0,10.0,9.0,10,0.31 +52012,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +47322,74.0,8.0,7.0,10.0,10.0,10.0,7.0,14,0.39 +70702,99.0,10.0,10.0,10.0,10.0,9.0,10.0,47,1.68 +1072,96.0,10.0,10.0,10.0,10.0,9.0,9.0,57,1.63 +1144,,,,,,,,0, +6902,,,,,,,,0, +41043,90.0,9.0,9.0,9.0,9.0,9.0,9.0,2,0.06 +20352,,,,,,,,0, +43749,92.0,9.0,9.0,9.0,9.0,10.0,9.0,78,2.32 +47143,,,,,,,,0, +22327,,,,,,,,0, +10800,,,,,,,,0, +646,98.0,10.0,10.0,10.0,10.0,10.0,10.0,32,0.94 +52060,80.0,10.0,8.0,10.0,10.0,8.0,10.0,1,0.03 +32963,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.14 +56060,87.0,9.0,9.0,9.0,9.0,9.0,9.0,4,0.12 +67522,,,,,,,,0, +32365,96.0,10.0,10.0,10.0,10.0,10.0,9.0,49,1.44 +43270,,,,,,,,0, +35833,96.0,10.0,9.0,10.0,10.0,9.0,10.0,5,0.14 +51991,100.0,10.0,9.0,10.0,9.0,10.0,9.0,3,0.08 +19335,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.25 +6433,88.0,8.0,9.0,10.0,10.0,10.0,8.0,5,0.14 +1094,,,,,,,,0, +39932,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.41 +30731,88.0,10.0,10.0,9.0,9.0,10.0,10.0,8,0.23 +58836,,,,,,,,0, +19520,91.0,10.0,9.0,10.0,10.0,9.0,9.0,8,0.26 +45539,100.0,10.0,10.0,10.0,10.0,9.0,10.0,10,0.78 +769,75.0,10.0,7.0,6.0,8.0,10.0,8.0,4,0.13 +60184,90.0,10.0,10.0,10.0,9.0,10.0,10.0,10,5.26 +47527,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.11 +12826,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.06 +76658,,,,,,,,0, +45105,99.0,10.0,10.0,10.0,10.0,10.0,10.0,55,1.54 +38390,92.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.43 +68513,,,,,,,,0, +44989,,,,,,,,0, +32183,100.0,10.0,8.0,8.0,10.0,10.0,10.0,1,0.03 +34530,,,,,,,,0, +16893,,,,,,,,0, +24237,,,,,,,,0, +48460,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.23 +49532,98.0,10.0,10.0,10.0,10.0,10.0,10.0,19,0.53 +34067,,,,,,,,0, +52388,91.0,9.0,10.0,10.0,10.0,9.0,9.0,7,0.2 +58910,97.0,10.0,10.0,10.0,10.0,9.0,9.0,8,0.26 +41705,,,,,,,,0, +1230,83.0,9.0,8.0,9.0,9.0,9.0,9.0,8,0.22 +37102,87.0,9.0,9.0,9.0,9.0,10.0,9.0,43,1.22 +32117,,,,,,,,0, +69373,20.0,2.0,2.0,2.0,2.0,,2.0,3,0.1 +18000,99.0,10.0,10.0,10.0,10.0,10.0,10.0,31,0.9 +59138,,,,,,,,0, +21512,100.0,10.0,8.0,8.0,8.0,8.0,10.0,1,0.03 +32397,89.0,9.0,9.0,9.0,10.0,10.0,9.0,21,0.63 +66964,,,,,,,,0, +57066,80.0,8.0,8.0,10.0,10.0,8.0,8.0,1,0.03 +23871,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.37 +10665,,,,,,,,0, +65001,60.0,6.0,6.0,6.0,6.0,4.0,6.0,1,0.04 +46728,,,,,,,,0, +68838,,,,,,,,0, +36647,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +13205,80.0,7.0,10.0,6.0,6.0,7.0,7.0,2,0.37 +70658,60.0,6.0,6.0,10.0,10.0,10.0,8.0,1,0.03 +53760,,,,,,,,0, +66094,77.0,8.0,8.0,9.0,9.0,9.0,8.0,104,2.88 +6638,,,,,,,,1,0.08 +71966,93.0,10.0,9.0,10.0,10.0,8.0,9.0,16,0.45 +19706,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.11 +25136,93.0,10.0,9.0,9.0,9.0,9.0,9.0,9,0.54 +16904,,,,,,,,0, +57295,,,,,,,,0, +754,,,,,,,,0, +27881,87.0,9.0,9.0,9.0,9.0,9.0,9.0,55,1.54 +35343,,,,,,,,0, +12914,,,,,,,,0, +11265,87.0,9.0,9.0,10.0,10.0,8.0,9.0,3,0.09 +8834,90.0,9.0,9.0,10.0,10.0,9.0,9.0,269,7.69 +61690,100.0,,,,,,,1,0.03 +43854,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.06 +39941,83.0,8.0,8.0,9.0,9.0,8.0,9.0,8,0.52 +35876,80.0,10.0,10.0,8.0,8.0,10.0,8.0,1,0.03 +45666,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.06 +43555,80.0,,4.0,,8.0,,,1,0.03 +7047,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +23388,100.0,10.0,9.0,10.0,9.0,10.0,10.0,3,0.08 +21529,98.0,10.0,9.0,10.0,10.0,9.0,10.0,10,0.28 +55057,,,,,,,,0, +45937,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.21 +63286,,,,,,,,0, +51226,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +27758,,,,,,,,0, +9343,100.0,8.0,10.0,10.0,8.0,8.0,6.0,1,0.03 +16346,93.0,10.0,9.0,10.0,10.0,9.0,9.0,138,3.95 +23080,69.0,8.0,6.0,8.0,8.0,9.0,8.0,10,0.38 +56449,100.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.11 +4232,,,,,,,,0, +6395,,,,,,,,0, +19501,95.0,10.0,9.0,10.0,10.0,9.0,10.0,16,0.45 +22313,,,,,,,,0, +19254,60.0,6.0,6.0,8.0,4.0,8.0,6.0,1,0.03 +5088,,,,,,,,0, +75952,80.0,9.0,8.0,10.0,10.0,9.0,10.0,4,0.13 +30391,,,,,,,,0, +39731,88.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.29 +4586,93.0,10.0,9.0,10.0,10.0,10.0,9.0,108,3.03 +10749,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.08 +26353,100.0,10.0,10.0,9.0,10.0,9.0,9.0,4,0.11 +11868,,,,,,,,0, +53741,93.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.08 +60774,88.0,10.0,10.0,10.0,9.0,10.0,9.0,5,0.16 +60881,,,,,,,,0, +25797,,,,,,,,0, +40400,90.0,9.0,9.0,10.0,10.0,9.0,9.0,98,2.79 +13751,96.0,10.0,10.0,10.0,10.0,10.0,10.0,50,1.41 +25313,,,,,,,,0, +33855,83.0,8.0,8.0,9.0,9.0,8.0,8.0,31,1.09 +12487,98.0,10.0,10.0,9.0,10.0,10.0,10.0,32,0.93 +22164,,,,,,,,0, +4070,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.13 +43155,,,,,,,,0, +15438,95.0,10.0,10.0,10.0,10.0,9.0,9.0,72,2.02 +1323,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.38 +61845,,,,,,,,0, +40201,,,,,,,,0, +73358,95.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.99 +63356,97.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.4 +21306,98.0,10.0,10.0,10.0,10.0,10.0,10.0,45,1.35 +7990,91.0,9.0,9.0,9.0,10.0,9.0,9.0,67,2.18 +32529,93.0,10.0,8.0,10.0,9.0,9.0,9.0,23,0.65 +75577,93.0,10.0,9.0,10.0,10.0,10.0,9.0,16,0.48 +26006,97.0,10.0,10.0,10.0,10.0,10.0,10.0,119,3.47 +1454,,,,,,,,0, +3165,,,,,,,,0, +4088,90.0,9.0,10.0,10.0,10.0,8.0,9.0,2,0.06 +4803,97.0,10.0,10.0,10.0,10.0,10.0,10.0,89,2.56 +25115,98.0,10.0,10.0,10.0,10.0,9.0,10.0,12,0.77 +33160,92.0,10.0,10.0,9.0,10.0,10.0,10.0,6,1.33 +27847,94.0,10.0,9.0,10.0,10.0,9.0,9.0,7,0.2 +25346,86.0,9.0,9.0,10.0,10.0,9.0,9.0,17,0.48 +62586,68.0,7.0,7.0,9.0,8.0,9.0,6.0,10,0.28 +68040,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.15 +49567,90.0,9.0,9.0,9.0,9.0,10.0,9.0,46,1.31 +7490,97.0,10.0,10.0,10.0,10.0,9.0,10.0,93,2.67 +24433,,,,,,,,0, +67523,70.0,9.0,7.0,9.0,9.0,6.0,8.0,2,0.06 +54303,97.0,9.0,9.0,10.0,10.0,9.0,10.0,6,0.17 +46329,,,,,,,,0, +63791,,,,,,,,0, +58867,,,,,,,,0, +47129,,,,,,,,0, +69356,87.0,9.0,9.0,9.0,9.0,9.0,9.0,24,0.73 +45401,60.0,6.0,10.0,8.0,10.0,10.0,8.0,1,0.03 +21752,97.0,10.0,10.0,10.0,10.0,10.0,9.0,28,0.79 +62302,90.0,9.0,9.0,9.0,9.0,9.0,9.0,15,0.64 +42800,87.0,9.0,9.0,10.0,9.0,8.0,9.0,12,0.35 +27551,89.0,10.0,9.0,10.0,10.0,8.0,9.0,180,5.11 +11604,92.0,10.0,10.0,10.0,10.0,10.0,9.0,18,0.51 +64128,95.0,10.0,10.0,10.0,10.0,10.0,9.0,57,1.6 +64641,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.19 +69002,94.0,9.0,9.0,9.0,10.0,10.0,9.0,23,0.64 +58712,94.0,10.0,10.0,10.0,10.0,10.0,9.0,16,0.47 +58075,,,,,,,,0, +59826,73.0,7.0,8.0,9.0,10.0,9.0,5.0,3,0.11 +46384,90.0,8.0,9.0,10.0,10.0,7.0,9.0,2,0.06 +53520,,,,,,,,0, +60742,80.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.27 +64446,91.0,9.0,9.0,10.0,10.0,10.0,9.0,121,3.59 +61189,,,,,,,,0, +5288,98.0,10.0,10.0,10.0,10.0,10.0,10.0,88,2.5 +14537,,,,,,,,0, +56678,89.0,9.0,10.0,9.0,9.0,8.0,9.0,187,5.23 +26143,90.0,9.0,9.0,10.0,10.0,9.0,10.0,28,0.79 +49059,89.0,9.0,9.0,9.0,9.0,8.0,9.0,169,4.74 +42244,90.0,10.0,9.0,9.0,10.0,8.0,9.0,32,0.92 +755,99.0,10.0,9.0,10.0,10.0,10.0,10.0,17,0.48 +17701,95.0,10.0,9.0,10.0,10.0,10.0,10.0,15,0.54 +9135,,,,,,,,0, +32245,90.0,9.0,9.0,9.0,9.0,9.0,8.0,2,0.06 +54135,,,,,,,,0, +25803,98.0,10.0,10.0,10.0,10.0,10.0,10.0,25,0.74 +12673,,,,,,,,0, +45052,70.0,10.0,10.0,10.0,10.0,10.0,6.0,2,0.06 +62131,,,,,,,,0, +24344,96.0,10.0,10.0,10.0,10.0,9.0,9.0,5,0.18 +61809,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.16 +25259,94.0,10.0,10.0,10.0,10.0,9.0,10.0,29,0.82 +58553,60.0,10.0,2.0,10.0,10.0,10.0,6.0,1,0.09 +37228,,,,,,,,0, +50003,96.0,10.0,10.0,10.0,10.0,10.0,10.0,76,2.13 +50554,,,,,,,,0, +36479,96.0,10.0,10.0,10.0,10.0,10.0,10.0,48,1.8 +7725,,,,,,,,0, +20582,93.0,9.0,9.0,10.0,9.0,10.0,9.0,3,0.09 +53483,93.0,10.0,9.0,10.0,10.0,9.0,9.0,13,0.66 +65642,,,,,,,,0, +62573,95.0,10.0,10.0,10.0,10.0,9.0,10.0,59,2.0 +53184,,,,,,,,0, +2779,,,,,,,,1,0.03 +58094,93.0,9.0,9.0,10.0,10.0,9.0,9.0,13,0.38 +3005,92.0,10.0,10.0,10.0,10.0,9.0,9.0,45,1.28 +37833,93.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.17 +9524,,,,,,,,0, +8451,95.0,10.0,10.0,9.0,10.0,9.0,9.0,60,1.87 +26382,97.0,10.0,9.0,9.0,10.0,10.0,9.0,40,1.48 +44604,100.0,10.0,10.0,10.0,8.0,8.0,8.0,1,0.03 +17360,,,,,,,,0, +50630,80.0,9.0,10.0,10.0,10.0,7.0,8.0,2,0.06 +1547,96.0,10.0,10.0,10.0,10.0,9.0,10.0,38,1.08 +3380,95.0,10.0,8.0,9.0,10.0,9.0,9.0,4,0.11 +51200,86.0,9.0,8.0,10.0,10.0,10.0,9.0,61,1.77 +53332,98.0,10.0,10.0,10.0,10.0,10.0,10.0,129,3.61 +55758,92.0,10.0,9.0,9.0,10.0,10.0,9.0,12,0.37 +39461,92.0,9.0,9.0,10.0,9.0,10.0,9.0,17,0.48 +75671,20.0,2.0,2.0,2.0,2.0,4.0,2.0,1,0.03 +3008,97.0,10.0,9.0,10.0,10.0,10.0,9.0,49,1.45 +12477,,,,,,,,0, +58244,94.0,10.0,10.0,10.0,10.0,10.0,9.0,25,2.52 +55151,,,,,,,,0, +42839,,,,,,,,0, +55316,98.0,10.0,10.0,10.0,10.0,10.0,10.0,79,2.25 +37073,91.0,9.0,10.0,10.0,10.0,10.0,9.0,7,0.26 +23299,80.0,8.0,8.0,8.0,8.0,8.0,8.0,1,0.03 +28188,88.0,9.0,8.0,9.0,9.0,9.0,9.0,6,0.18 +52878,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.24 +67329,,,,,,,,0, +16024,99.0,10.0,10.0,10.0,10.0,10.0,10.0,79,2.25 +46141,96.0,10.0,10.0,10.0,10.0,9.0,10.0,19,0.54 +73194,99.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.52 +61235,60.0,10.0,2.0,2.0,8.0,6.0,4.0,1,0.03 +36895,96.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.31 +38310,94.0,10.0,10.0,9.0,9.0,9.0,9.0,132,3.7 +56097,90.0,9.0,9.0,10.0,10.0,9.0,9.0,8,0.25 +20484,,,,,,,,0, +73819,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +51989,,,,,,,,0, +69443,72.0,7.0,7.0,8.0,8.0,9.0,7.0,5,0.14 +47061,,,,,,,,0, +10914,99.0,10.0,10.0,10.0,10.0,10.0,10.0,46,1.35 +2214,90.0,10.0,9.0,9.0,10.0,9.0,9.0,28,0.88 +487,,,,,,,,0, +65461,99.0,10.0,10.0,10.0,10.0,10.0,10.0,27,0.78 +26387,91.0,9.0,9.0,10.0,9.0,8.0,9.0,97,2.72 +20964,96.0,9.0,9.0,10.0,10.0,9.0,9.0,20,0.58 +42342,,,,,,,,0, +7182,,,,,,,,0, +34657,100.0,10.0,9.0,10.0,10.0,10.0,10.0,6,0.21 +76541,96.0,10.0,10.0,10.0,10.0,9.0,10.0,72,2.47 +23887,,,,,,,,0, +47560,100.0,10.0,10.0,10.0,10.0,10.0,9.0,11,0.31 +55513,60.0,10.0,8.0,10.0,10.0,6.0,6.0,2,0.06 +23182,95.0,10.0,10.0,10.0,10.0,9.0,10.0,155,4.35 +44488,85.0,9.0,7.0,10.0,10.0,9.0,9.0,4,0.12 +73444,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.1 +23518,99.0,10.0,10.0,10.0,10.0,10.0,10.0,29,1.09 +6972,96.0,10.0,10.0,10.0,10.0,9.0,9.0,149,4.72 +60788,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.08 +25431,92.0,10.0,9.0,9.0,10.0,10.0,9.0,58,1.7 +46732,,,,,,,,1,0.03 +53679,80.0,6.0,4.0,8.0,8.0,10.0,6.0,1,0.03 +28845,,,,,,,,0, +45889,60.0,6.0,6.0,7.0,8.0,9.0,6.0,2,0.06 +5751,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +35495,99.0,10.0,10.0,10.0,10.0,10.0,10.0,191,5.58 +30975,94.0,10.0,10.0,9.0,10.0,9.0,9.0,16,0.45 +72399,90.0,9.0,9.0,10.0,10.0,9.0,9.0,6,0.19 +3768,88.0,9.0,9.0,10.0,9.0,10.0,9.0,109,3.06 +17523,99.0,10.0,10.0,10.0,10.0,10.0,10.0,35,1.09 +64647,93.0,9.0,10.0,10.0,9.0,9.0,9.0,43,1.39 +72278,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.35 +52147,90.0,9.0,9.0,9.0,9.0,10.0,9.0,49,1.52 +22341,,,,,,,,0, +32909,95.0,10.0,9.0,10.0,10.0,10.0,9.0,15,0.51 +11678,100.0,10.0,10.0,10.0,10.0,10.0,8.0,2,0.06 +64140,87.0,9.0,9.0,8.0,8.0,9.0,9.0,3,0.08 +71577,,,,,,,,0, +4509,99.0,10.0,10.0,10.0,10.0,9.0,10.0,16,0.54 +32063,53.0,4.0,7.0,6.0,4.0,9.0,6.0,3,0.09 +64315,74.0,8.0,8.0,9.0,9.0,9.0,8.0,8,0.34 +67044,100.0,9.0,10.0,7.0,7.0,10.0,9.0,3,0.17 +29174,88.0,9.0,9.0,10.0,10.0,10.0,8.0,5,0.19 +801,60.0,6.0,7.0,8.0,8.0,8.0,6.0,3,0.08 +11851,86.0,9.0,9.0,9.0,9.0,9.0,9.0,17,0.51 +49118,90.0,10.0,9.0,10.0,10.0,10.0,8.0,7,0.22 +1058,93.0,9.0,9.0,10.0,8.0,10.0,9.0,3,0.1 +71114,,,,,,,,0, +21565,80.0,10.0,10.0,10.0,10.0,8.0,9.0,2,0.06 +31208,89.0,9.0,9.0,9.0,9.0,9.0,9.0,14,0.44 +74356,96.0,9.0,10.0,10.0,10.0,10.0,9.0,22,0.63 +39760,,,,,,,,0, +55249,,,,,,,,0, +27113,80.0,10.0,10.0,10.0,10.0,8.0,10.0,2,0.06 +34609,100.0,8.0,10.0,10.0,10.0,10.0,8.0,2,0.06 +18937,100.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.27 +18177,100.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.17 +6293,99.0,10.0,10.0,10.0,10.0,10.0,10.0,129,3.65 +41587,98.0,10.0,10.0,10.0,10.0,9.0,10.0,64,2.0 +74235,,,,,,,,0, +38179,95.0,9.0,9.0,10.0,10.0,9.0,10.0,24,0.69 +23231,67.0,7.0,5.0,9.0,7.0,10.0,7.0,4,0.11 +52818,100.0,,8.0,,10.0,,,1,0.03 +68583,98.0,10.0,10.0,10.0,10.0,10.0,10.0,27,2.89 +60987,97.0,10.0,10.0,10.0,10.0,10.0,9.0,152,4.3 +38655,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.06 +15348,,,,,,,,0, +51314,96.0,10.0,9.0,10.0,10.0,10.0,10.0,185,5.23 +20553,97.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.37 +24326,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.08 +60080,,,,,,,,0, +64346,80.0,9.0,9.0,9.0,6.0,6.0,7.0,2,0.07 +23994,,,,,,,,0, +20512,,,,,,,,0, +73028,88.0,9.0,9.0,9.0,10.0,10.0,9.0,38,1.07 +5118,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.04 +5160,20.0,4.0,8.0,6.0,8.0,8.0,2.0,1,0.03 +29739,80.0,6.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +5582,97.0,10.0,10.0,10.0,10.0,10.0,9.0,66,1.97 +52022,94.0,10.0,9.0,10.0,10.0,10.0,10.0,26,0.9 +55165,94.0,10.0,10.0,10.0,9.0,9.0,9.0,101,3.39 +28561,,,,,,,,0, +35879,,,,,,,,0, +76323,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.3 +66930,87.0,9.0,8.0,9.0,10.0,9.0,8.0,3,0.08 +31035,95.0,10.0,10.0,10.0,10.0,9.0,10.0,59,1.73 +4709,78.0,8.0,8.0,9.0,9.0,9.0,8.0,117,3.42 +26586,65.0,9.0,8.0,7.0,7.0,7.0,6.0,4,0.12 +31642,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.13 +35937,93.0,10.0,9.0,10.0,10.0,8.0,9.0,65,2.04 +48065,,,,,,,,0, +29917,91.0,10.0,9.0,10.0,10.0,9.0,10.0,7,0.35 +23296,,,,,,,,0, +18110,,,,,,,,0, +32905,99.0,10.0,10.0,10.0,10.0,10.0,10.0,32,1.56 +50349,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.15 +39114,85.0,8.0,8.0,9.0,9.0,9.0,9.0,43,1.21 +660,,,,,,,,0, +62594,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.03 +49242,,,,,,,,0, +18539,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.17 +28630,,,,,,,,0, +40288,,,,,,,,0, +36491,,,,,,,,0, +58868,97.0,10.0,10.0,10.0,10.0,10.0,10.0,22,0.69 +31536,98.0,10.0,9.0,10.0,10.0,10.0,10.0,25,0.76 +62204,87.0,9.0,9.0,9.0,9.0,10.0,9.0,82,2.3 +40560,89.0,10.0,7.0,10.0,10.0,9.0,9.0,11,0.32 +57907,96.0,9.0,9.0,9.0,10.0,9.0,10.0,9,0.26 +20579,97.0,10.0,9.0,9.0,10.0,10.0,10.0,8,0.26 +58174,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.21 +75841,,,,,,,,0, +31102,92.0,9.0,9.0,10.0,10.0,10.0,9.0,6,0.19 +59601,93.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.09 +61370,,,,,,,,0, +44048,94.0,9.0,9.0,10.0,10.0,9.0,9.0,46,1.37 +42044,,,,,,,,0, +13524,,,,,,,,0, +18870,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.86 +34497,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.06 +12059,,,,,,,,0, +47995,,,,,,,,0, +35816,99.0,10.0,10.0,10.0,10.0,9.0,10.0,54,1.58 +25561,,,,,,,,0, +20901,90.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.07 +30931,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.04 +71179,,,,,,,,0, +32142,,,,,,,,0, +20599,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +5099,99.0,10.0,10.0,10.0,10.0,10.0,10.0,41,1.44 +14513,98.0,10.0,10.0,10.0,10.0,9.0,10.0,42,1.32 +70271,97.0,10.0,9.0,10.0,10.0,9.0,9.0,7,0.21 +57936,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +15589,99.0,10.0,10.0,10.0,10.0,9.0,10.0,16,0.45 +1806,80.0,8.0,8.0,9.0,10.0,10.0,9.0,11,0.31 +73357,99.0,10.0,10.0,10.0,10.0,10.0,10.0,74,2.3 +48847,80.0,10.0,4.0,10.0,10.0,8.0,8.0,1,0.55 +59651,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.19 +60232,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.11 +22480,67.0,7.0,6.0,9.0,8.0,9.0,7.0,16,0.65 +46248,,,,,,,,1,0.04 +41373,74.0,8.0,8.0,9.0,10.0,9.0,7.0,11,0.37 +44077,80.0,10.0,10.0,10.0,10.0,6.0,10.0,1,0.03 +65257,98.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.36 +45287,98.0,10.0,10.0,10.0,10.0,9.0,10.0,25,1.72 +71875,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +30718,,,,,,,,0, +73429,,,,,,,,0, +64360,99.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.68 +28221,99.0,10.0,10.0,10.0,10.0,9.0,10.0,47,1.35 +53757,89.0,10.0,9.0,10.0,10.0,10.0,8.0,7,0.24 +44936,97.0,10.0,10.0,10.0,10.0,9.0,9.0,36,1.09 +58348,89.0,9.0,9.0,9.0,9.0,9.0,9.0,10,0.34 +9501,96.0,10.0,10.0,10.0,10.0,9.0,10.0,31,5.78 +63163,85.0,10.0,8.0,10.0,9.0,9.0,8.0,13,0.43 +51308,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.36 +31309,89.0,9.0,9.0,10.0,10.0,10.0,9.0,9,0.25 +64263,100.0,10.0,9.0,9.0,10.0,9.0,9.0,3,0.31 +34861,99.0,10.0,10.0,10.0,10.0,10.0,9.0,29,0.86 +50939,100.0,10.0,10.0,10.0,10.0,9.0,10.0,39,1.18 +28777,99.0,10.0,10.0,10.0,10.0,9.0,10.0,16,0.48 +37943,,,,,,,,2,0.06 +67806,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.12 +61166,89.0,9.0,9.0,10.0,9.0,9.0,9.0,39,1.11 +32719,95.0,10.0,10.0,10.0,10.0,10.0,10.0,22,0.65 +30830,92.0,9.0,9.0,10.0,10.0,9.0,9.0,5,0.15 +51352,89.0,9.0,9.0,10.0,10.0,9.0,9.0,9,0.26 +33020,60.0,6.0,2.0,8.0,8.0,10.0,8.0,1,0.03 +13648,89.0,8.0,9.0,9.0,9.0,10.0,10.0,21,0.63 +33432,50.0,6.0,6.0,8.0,5.0,7.0,5.0,5,0.32 +48882,94.0,10.0,9.0,10.0,10.0,9.0,9.0,28,0.88 +3461,96.0,10.0,10.0,10.0,10.0,9.0,10.0,31,0.9 +43308,,,,,,,,0, +63091,93.0,10.0,9.0,10.0,10.0,9.0,9.0,51,1.89 +54465,100.0,10.0,10.0,10.0,10.0,10.0,10.0,25,0.74 +11131,93.0,9.0,9.0,10.0,10.0,9.0,9.0,142,4.33 +2912,98.0,10.0,9.0,10.0,10.0,10.0,10.0,72,2.06 +75104,98.0,10.0,10.0,10.0,10.0,10.0,10.0,195,5.69 +55334,96.0,10.0,10.0,10.0,10.0,10.0,10.0,155,4.38 +52243,,,,,,,,0, +76125,96.0,10.0,10.0,10.0,10.0,10.0,9.0,101,3.04 +67528,87.0,9.0,8.0,9.0,9.0,10.0,9.0,15,0.61 +54801,92.0,10.0,9.0,10.0,10.0,10.0,10.0,35,0.99 +5668,87.0,9.0,8.0,10.0,9.0,10.0,9.0,3,0.13 +41768,96.0,10.0,10.0,10.0,10.0,10.0,9.0,67,1.94 +19211,,,,,,,,0, +62497,,,,,,,,0, +24769,,,,,,,,0, +15167,89.0,9.0,9.0,8.0,9.0,9.0,8.0,9,0.29 +23563,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,1.4 +42043,93.0,9.0,8.0,9.0,10.0,10.0,10.0,9,0.26 +70330,96.0,10.0,10.0,10.0,10.0,10.0,9.0,22,0.64 +69010,,,,,,,,0, +47116,,,,,,,,0, +38242,97.0,10.0,10.0,10.0,10.0,10.0,10.0,72,2.04 +26969,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +21373,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +45517,,,,,,,,0, +38716,,,,,,,,0, +27003,,,,,,,,0, +49406,,,,,,,,0, +73154,95.0,10.0,10.0,10.0,10.0,8.0,9.0,10,0.3 +38478,91.0,9.0,9.0,9.0,10.0,9.0,9.0,43,1.27 +37712,96.0,10.0,10.0,10.0,10.0,9.0,9.0,14,0.41 +20698,73.0,7.0,7.0,7.0,7.0,7.0,7.0,3,0.23 +581,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.4 +30049,,,,,,,,0, +21777,97.0,10.0,9.0,10.0,10.0,10.0,10.0,20,0.57 +14186,85.0,10.0,8.0,10.0,10.0,9.0,9.0,5,0.14 +16607,80.0,8.0,8.0,9.0,8.0,10.0,7.0,7,0.27 +26888,,,,,,,,0, +76405,92.0,10.0,9.0,10.0,10.0,9.0,9.0,11,0.32 +5905,98.0,10.0,10.0,10.0,10.0,9.0,10.0,50,1.44 +32903,,,,,,,,0, +26072,,,,,,,,0, +32381,40.0,8.0,2.0,6.0,10.0,10.0,4.0,1,0.03 +2893,96.0,10.0,10.0,10.0,10.0,10.0,10.0,72,2.07 +36589,,,,,,,,3,0.09 +46079,98.0,10.0,10.0,10.0,10.0,10.0,10.0,34,1.07 +66345,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.29 +23794,80.0,9.0,9.0,9.0,9.0,7.0,8.0,10,0.28 +47591,96.0,10.0,9.0,10.0,10.0,10.0,10.0,51,1.45 +53370,,,,,,,,0, +56291,96.0,10.0,10.0,10.0,10.0,9.0,9.0,10,0.29 +31379,84.0,8.0,7.0,10.0,9.0,9.0,9.0,5,0.16 +70992,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +44880,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.03 +60028,96.0,10.0,9.0,10.0,10.0,10.0,9.0,90,3.04 +1874,,,,,,,,0, +24775,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,1.25 +20575,94.0,9.0,9.0,10.0,9.0,9.0,9.0,32,0.92 +29390,,,,,,,,0, +25977,94.0,10.0,10.0,10.0,10.0,9.0,10.0,13,0.43 +46602,,,,,,,,0, +54716,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +3674,,,,,,,,1,0.03 +26677,93.0,9.0,9.0,9.0,9.0,10.0,9.0,15,0.44 +23236,95.0,10.0,10.0,10.0,10.0,10.0,10.0,103,2.98 +34736,98.0,10.0,10.0,10.0,10.0,9.0,10.0,22,0.63 +39642,,,,,,,,0, +9658,,,,,,,,0, +72819,80.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.03 +43883,,,,,,,,0, +26591,,,,,,,,0, +34350,98.0,10.0,10.0,10.0,10.0,9.0,10.0,31,0.9 +7707,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.24 +2489,91.0,10.0,9.0,10.0,9.0,10.0,9.0,37,1.13 +60803,92.0,9.0,9.0,10.0,10.0,10.0,9.0,42,1.25 +68957,87.0,9.0,9.0,9.0,10.0,10.0,9.0,51,1.62 +6284,96.0,10.0,10.0,10.0,10.0,10.0,10.0,126,3.61 +51811,97.0,10.0,10.0,10.0,10.0,10.0,10.0,53,1.96 +40589,,,,,,,,0, +38945,,,,,,,,0, +4229,100.0,10.0,10.0,9.0,10.0,10.0,10.0,2,0.71 +24887,100.0,10.0,9.0,10.0,10.0,10.0,9.0,3,0.19 +57575,,,,,,,,0, +70513,100.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.22 +50240,100.0,10.0,10.0,10.0,10.0,8.0,10.0,5,0.16 +51586,97.0,10.0,10.0,10.0,10.0,9.0,9.0,7,0.36 +5033,97.0,10.0,10.0,10.0,10.0,9.0,10.0,132,3.74 +63761,,,,,,,,0, +36593,,,,,,,,0, +35516,95.0,10.0,10.0,10.0,10.0,10.0,9.0,35,1.01 +20189,,,,,,,,0, +8457,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +42129,,,,,,,,0, +19949,100.0,10.0,10.0,6.0,10.0,10.0,10.0,1,0.18 +45278,,,,,,,,0, +40985,,,,,,,,0, +24568,80.0,6.0,6.0,10.0,10.0,8.0,6.0,1,0.03 +21623,94.0,10.0,9.0,10.0,10.0,9.0,10.0,10,0.29 +13469,,,,,,,,1,0.03 +76092,95.0,10.0,10.0,10.0,10.0,9.0,10.0,13,0.37 +50269,85.0,9.0,9.0,9.0,9.0,9.0,8.0,111,3.15 +75177,98.0,10.0,10.0,10.0,10.0,10.0,10.0,40,1.13 +33763,98.0,10.0,10.0,10.0,10.0,9.0,10.0,25,0.72 +75036,94.0,10.0,10.0,10.0,9.0,9.0,10.0,7,0.35 +12689,,,,,,,,0, +2613,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.25 +40472,,,,,,,,0, +20200,,,,,,,,0, +29866,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.06 +324,100.0,10.0,10.0,10.0,10.0,10.0,10.0,33,0.97 +7107,99.0,10.0,10.0,10.0,10.0,10.0,10.0,90,3.71 +52508,,,,,,,,0, +41382,,,,,,,,0, +9067,96.0,10.0,10.0,10.0,10.0,10.0,10.0,47,1.34 +37201,93.0,10.0,9.0,10.0,10.0,9.0,10.0,6,0.18 +53926,87.0,9.0,9.0,10.0,9.0,10.0,9.0,105,2.99 +34704,95.0,9.0,10.0,10.0,10.0,9.0,9.0,18,0.51 +72866,100.0,10.0,9.0,10.0,10.0,10.0,9.0,7,0.4 +59118,86.0,10.0,7.0,7.0,9.0,8.0,10.0,7,0.2 +40046,100.0,10.0,10.0,8.0,8.0,10.0,10.0,1,0.03 +46687,90.0,10.0,10.0,9.0,7.0,9.0,9.0,2,0.06 +69243,97.0,10.0,9.0,10.0,10.0,9.0,10.0,36,1.1 +39837,,,,,,,,0, +38496,83.0,9.0,9.0,10.0,9.0,9.0,9.0,7,0.3 +45265,,,,,,,,0, +12080,,,,,,,,0, +28436,98.0,10.0,10.0,10.0,10.0,10.0,10.0,102,3.07 +59152,,,,,,,,0, +12647,90.0,9.0,9.0,10.0,10.0,10.0,9.0,94,2.74 +6092,80.0,7.0,9.0,8.0,9.0,8.0,8.0,2,2.0 +55951,,,,,,,,0, +17228,,,,,,,,0, +54873,89.0,9.0,8.0,9.0,10.0,10.0,9.0,9,0.29 +71631,93.0,10.0,9.0,9.0,10.0,9.0,10.0,3,0.09 +72988,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.09 +41272,97.0,10.0,10.0,10.0,10.0,10.0,10.0,25,0.74 +49302,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.17 +53102,,,,,,,,0, +50477,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +50393,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.03 +30332,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.15 +69462,93.0,9.0,9.0,9.0,9.0,10.0,9.0,20,0.63 +58331,97.0,10.0,10.0,10.0,10.0,10.0,10.0,48,1.41 +55808,97.0,10.0,9.0,10.0,10.0,9.0,10.0,7,0.25 +41849,76.0,8.0,8.0,10.0,9.0,9.0,8.0,27,0.86 +20666,96.0,10.0,9.0,10.0,9.0,10.0,9.0,19,0.55 +6441,,,,,,,,0, +55481,94.0,10.0,10.0,10.0,10.0,10.0,9.0,48,1.37 +67631,,,,,,,,0, +23567,100.0,10.0,9.0,10.0,10.0,10.0,9.0,2,0.06 +9123,96.0,10.0,10.0,10.0,10.0,10.0,9.0,31,0.93 +52309,,,,,,,,0, +21564,94.0,10.0,10.0,10.0,10.0,9.0,10.0,50,1.88 +42253,89.0,9.0,8.0,10.0,10.0,9.0,9.0,16,0.54 +1183,86.0,9.0,8.0,10.0,10.0,9.0,9.0,47,1.41 +46740,94.0,10.0,10.0,10.0,10.0,10.0,9.0,69,1.97 +67609,87.0,9.0,9.0,9.0,9.0,8.0,8.0,3,0.13 +8750,100.0,10.0,10.0,8.0,10.0,10.0,10.0,1,0.03 +24422,,,,,,,,0, +48185,91.0,10.0,9.0,10.0,9.0,9.0,8.0,8,0.29 +63037,97.0,10.0,9.0,10.0,10.0,10.0,9.0,14,0.44 +68993,93.0,10.0,10.0,10.0,10.0,8.0,10.0,6,0.2 +3177,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.88 +15074,,,,,,,,0, +46956,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.14 +74960,96.0,10.0,10.0,10.0,10.0,9.0,10.0,40,1.15 +70226,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +46820,88.0,8.0,9.0,10.0,10.0,10.0,9.0,272,8.32 +24597,,,,,,,,0, +65293,,,,,,,,0, +12356,95.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.69 +54830,,,,,,,,0, +56831,100.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.11 +45854,80.0,9.0,7.0,9.0,10.0,10.0,9.0,7,0.2 +41976,,,,,,,,0, +40375,,,,,,,,0, +19723,94.0,10.0,10.0,10.0,10.0,10.0,10.0,146,4.26 +1485,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.56 +44175,67.0,5.0,7.0,6.0,7.0,9.0,7.0,3,1.18 +40038,96.0,10.0,10.0,10.0,10.0,9.0,10.0,41,1.19 +10581,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.15 +39331,94.0,10.0,10.0,10.0,9.0,10.0,9.0,84,2.45 +72244,96.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.47 +64490,80.0,10.0,8.0,10.0,10.0,6.0,10.0,1,0.04 +10409,96.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.45 +67641,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.11 +26541,60.0,6.0,6.0,7.0,9.0,8.0,6.0,2,0.08 +33059,96.0,9.0,10.0,9.0,10.0,10.0,10.0,5,0.14 +62424,,,,,,,,0, +65185,98.0,10.0,10.0,10.0,10.0,9.0,10.0,59,1.85 +34564,100.0,10.0,10.0,10.0,10.0,10.0,10.0,32,1.04 +12171,100.0,,,,10.0,10.0,10.0,2,0.07 +51412,98.0,10.0,10.0,10.0,10.0,10.0,10.0,32,0.92 +28169,97.0,10.0,10.0,10.0,10.0,9.0,10.0,81,2.45 +38821,94.0,10.0,9.0,10.0,9.0,9.0,9.0,63,1.84 +70207,98.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.51 +21944,84.0,9.0,9.0,10.0,10.0,9.0,9.0,126,3.68 +28401,93.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.27 +2960,,,,,,,,0, +72893,100.0,10.0,10.0,9.0,10.0,10.0,10.0,2,0.06 +24341,97.0,10.0,9.0,10.0,10.0,10.0,9.0,41,1.43 +14409,99.0,10.0,10.0,10.0,10.0,10.0,10.0,109,3.42 +44690,,,,,,,,0, +59955,99.0,10.0,10.0,10.0,10.0,10.0,10.0,29,0.82 +55603,100.0,10.0,9.0,10.0,10.0,10.0,9.0,10,0.31 +6585,60.0,6.0,6.0,10.0,10.0,8.0,6.0,1,0.09 +61841,100.0,10.0,6.0,10.0,10.0,10.0,8.0,1,0.05 +749,100.0,10.0,10.0,10.0,10.0,10.0,10.0,37,1.07 +41054,94.0,9.0,9.0,10.0,9.0,9.0,9.0,7,0.5 +7440,98.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.32 +39979,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +6196,80.0,8.0,8.0,9.0,9.0,9.0,8.0,10,0.29 +42843,,,,,,,,0, +38585,,,,,,,,0, +23591,94.0,10.0,10.0,10.0,10.0,9.0,9.0,38,1.1 +66164,98.0,10.0,10.0,10.0,10.0,9.0,10.0,51,1.62 +68074,,,,,,,,0, +26651,80.0,10.0,6.0,10.0,10.0,10.0,8.0,1,0.03 +18444,93.0,10.0,9.0,10.0,10.0,9.0,9.0,3,0.17 +56054,97.0,10.0,10.0,10.0,10.0,9.0,9.0,7,0.23 +12094,,,,,,,,0, +65048,97.0,10.0,10.0,10.0,10.0,10.0,10.0,47,1.72 +18967,,,,,,,,0, +30545,,,,,,,,0, +57106,95.0,10.0,10.0,9.0,10.0,9.0,10.0,26,0.94 +18058,,,,,,,,0, +58511,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.23 +59489,93.0,10.0,10.0,10.0,10.0,9.0,9.0,62,1.9 +39609,,,,,,,,0, +55473,99.0,10.0,10.0,10.0,10.0,10.0,10.0,55,3.4 +18027,,,,,,,,0, +66286,,,,,,,,0, +33215,95.0,9.0,10.0,10.0,10.0,10.0,9.0,37,1.16 +56650,,,,,,,,0, +20043,60.0,10.0,10.0,4.0,4.0,8.0,8.0,1,0.48 +37169,92.0,9.0,9.0,9.0,9.0,10.0,9.0,31,0.91 +3272,,,,,,,,0, +16722,,,,,,,,0, +22690,95.0,10.0,10.0,10.0,10.0,10.0,9.0,35,0.99 +58485,,,,,,,,0, +66453,96.0,9.0,10.0,10.0,10.0,9.0,9.0,10,0.29 +72973,83.0,9.0,9.0,9.0,9.0,10.0,8.0,15,0.44 +57722,,,,,,,,0, +39874,,,,,,,,0, +48606,92.0,10.0,10.0,8.0,10.0,10.0,9.0,5,0.16 +75601,100.0,9.0,10.0,10.0,10.0,9.0,10.0,3,0.09 +23782,,,,,,,,0, +75068,97.0,10.0,9.0,10.0,10.0,10.0,9.0,36,1.12 +21891,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +54860,93.0,10.0,9.0,10.0,10.0,9.0,10.0,3,0.11 +50397,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +70893,96.0,10.0,10.0,10.0,10.0,10.0,10.0,20,0.59 +38492,97.0,10.0,10.0,10.0,10.0,10.0,10.0,29,1.34 +41356,96.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.41 +28350,91.0,10.0,9.0,10.0,10.0,10.0,9.0,90,2.59 +56985,,,,,,,,0, +43159,99.0,10.0,10.0,10.0,10.0,10.0,10.0,34,1.29 +15297,80.0,6.0,8.0,8.0,8.0,8.0,10.0,1,0.18 +59631,97.0,10.0,10.0,10.0,10.0,9.0,10.0,26,0.78 +75751,99.0,10.0,10.0,10.0,10.0,10.0,10.0,33,0.98 +25801,,,,,,,,0, +1277,,,,,,,,0, +65042,96.0,10.0,9.0,10.0,10.0,9.0,10.0,9,0.26 +13324,40.0,2.0,4.0,10.0,10.0,6.0,2.0,1,0.03 +75265,74.0,8.0,7.0,9.0,9.0,10.0,7.0,23,0.67 +2022,60.0,5.0,7.0,6.0,5.0,8.0,6.0,5,0.16 +62442,,,,,,,,0, +63524,97.0,10.0,10.0,10.0,10.0,10.0,10.0,128,5.67 +37635,82.0,8.0,8.0,10.0,9.0,9.0,8.0,27,0.79 +52461,95.0,9.0,9.0,10.0,10.0,10.0,9.0,20,0.59 +69896,97.0,10.0,10.0,9.0,10.0,9.0,10.0,66,2.22 +56231,,,,,,,,0, +39185,92.0,10.0,10.0,10.0,10.0,9.0,10.0,100,2.9 +11159,,,,,,,,0, +23938,94.0,10.0,10.0,10.0,10.0,9.0,10.0,196,5.75 +45561,97.0,10.0,10.0,10.0,10.0,9.0,10.0,16,0.47 +21344,100.0,10.0,8.0,10.0,8.0,10.0,10.0,1,0.03 +12985,98.0,10.0,10.0,10.0,10.0,9.0,9.0,64,5.0 +69858,98.0,10.0,10.0,10.0,10.0,10.0,10.0,42,1.21 +1145,87.0,7.0,9.0,10.0,9.0,10.0,9.0,4,0.13 +15428,96.0,10.0,10.0,10.0,10.0,9.0,9.0,5,0.18 +9474,,,,,,,,0, +18009,100.0,10.0,10.0,10.0,10.0,10.0,10.0,92,2.67 +45308,97.0,10.0,10.0,10.0,10.0,10.0,9.0,58,1.72 +16659,,,,,,,,0, +52872,89.0,9.0,9.0,9.0,9.0,8.0,9.0,31,1.19 +16882,,,,,,,,0, +63128,94.0,10.0,9.0,9.0,10.0,10.0,10.0,10,0.29 +33367,92.0,9.0,9.0,10.0,10.0,9.0,9.0,36,1.06 +30994,100.0,10.0,10.0,10.0,10.0,6.0,10.0,2,0.07 +64301,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.23 +68796,96.0,10.0,9.0,10.0,10.0,10.0,9.0,66,1.93 +70956,,,,,,,,0, +49742,95.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.12 +6270,,,,,,,,0, +71295,,,,,,,,0, +69459,100.0,10.0,10.0,10.0,10.0,10.0,10.0,21,0.75 +13588,,,,,,,,0, +5233,95.0,10.0,9.0,10.0,10.0,10.0,10.0,16,0.46 +35064,,,,,,,,0, +22008,92.0,10.0,8.0,10.0,10.0,10.0,9.0,12,0.37 +33300,,,,,,,,0, +47353,89.0,10.0,9.0,10.0,10.0,10.0,9.0,24,0.7 +3655,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.29 +42539,,,,,,,,0, +8306,80.0,8.0,8.0,8.0,8.0,10.0,8.0,1,0.03 +12249,99.0,10.0,10.0,10.0,10.0,10.0,10.0,31,0.88 +38461,87.0,9.0,9.0,10.0,9.0,10.0,9.0,108,3.15 +76758,90.0,10.0,10.0,10.0,10.0,9.0,10.0,11,0.34 +20813,,,,,,,,0, +40754,,,,,,,,0, +17117,88.0,10.0,10.0,9.0,9.0,10.0,9.0,30,0.88 +58617,95.0,10.0,10.0,10.0,10.0,10.0,9.0,13,0.39 +47885,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.12 +26515,91.0,10.0,9.0,10.0,10.0,10.0,9.0,89,2.53 +35712,96.0,10.0,10.0,10.0,10.0,10.0,10.0,63,1.86 +67022,88.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.15 +26318,100.0,10.0,9.0,10.0,10.0,10.0,10.0,8,0.24 +36584,,,,,,,,0, +32528,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.26 +595,96.0,10.0,10.0,10.0,10.0,10.0,9.0,85,2.56 +74434,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.13 +36524,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.29 +6387,96.0,10.0,9.0,10.0,10.0,10.0,9.0,5,0.14 +21960,96.0,10.0,9.0,10.0,10.0,10.0,10.0,40,1.31 +57739,80.0,10.0,10.0,10.0,8.0,8.0,10.0,1,0.03 +62570,92.0,9.0,9.0,9.0,10.0,9.0,9.0,101,2.95 +51421,95.0,10.0,9.0,10.0,10.0,10.0,10.0,40,1.15 +31240,100.0,10.0,10.0,10.0,10.0,10.0,10.0,17,1.24 +63244,,,,,,,,0, +5967,95.0,10.0,10.0,9.0,10.0,10.0,9.0,71,2.24 +73242,93.0,9.0,10.0,9.0,9.0,9.0,9.0,32,1.0 +11218,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +38304,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +72772,93.0,9.0,10.0,10.0,10.0,10.0,9.0,33,1.76 +58542,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.61 +62878,,,,,,,,0, +24454,,,,,,,,0, +35430,95.0,10.0,10.0,10.0,10.0,10.0,9.0,28,0.83 +51628,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +29028,60.0,8.0,6.0,8.0,10.0,8.0,6.0,1,0.03 +28473,,,,,,,,1,0.03 +64054,,,,,,,,0, +15678,80.0,10.0,10.0,10.0,8.0,8.0,6.0,1,0.03 +40956,,,,,,,,0, +18193,92.0,10.0,10.0,10.0,10.0,9.0,9.0,5,0.4 +32418,,,,,,,,0, +28728,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.06 +67439,100.0,10.0,10.0,10.0,10.0,9.0,10.0,14,0.42 +69341,98.0,10.0,10.0,10.0,10.0,10.0,10.0,36,1.11 +9866,91.0,9.0,10.0,9.0,9.0,8.0,9.0,30,0.86 +6753,93.0,9.0,9.0,10.0,9.0,9.0,9.0,4,0.12 +56429,94.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.38 +28519,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.04 +71883,86.0,9.0,8.0,10.0,10.0,10.0,9.0,12,0.37 +54792,96.0,10.0,10.0,10.0,10.0,9.0,10.0,9,0.27 +55427,93.0,10.0,9.0,10.0,9.0,8.0,9.0,7,0.22 +73777,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +66548,93.0,10.0,9.0,10.0,10.0,10.0,9.0,69,1.97 +25823,88.0,10.0,9.0,9.0,10.0,8.0,9.0,5,0.14 +15337,91.0,9.0,9.0,10.0,10.0,10.0,9.0,21,0.62 +34025,,,,,,,,0, +32463,,,,,,,,0, +74216,96.0,10.0,9.0,10.0,10.0,10.0,10.0,28,0.85 +47493,99.0,10.0,10.0,10.0,10.0,10.0,10.0,78,2.24 +38738,,,,,,,,0, +44328,98.0,10.0,10.0,10.0,10.0,10.0,10.0,19,0.67 +44212,95.0,10.0,9.0,10.0,10.0,10.0,10.0,45,1.38 +1935,93.0,9.0,9.0,10.0,10.0,10.0,9.0,42,1.27 +14065,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.15 +22153,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.36 +68792,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.14 +6591,98.0,10.0,10.0,10.0,10.0,10.0,9.0,24,0.69 +28136,,,,,,,,0, +546,93.0,10.0,8.0,10.0,10.0,10.0,9.0,30,0.9 +12448,89.0,10.0,9.0,10.0,10.0,10.0,9.0,70,2.01 +8199,93.0,9.0,10.0,10.0,10.0,9.0,9.0,6,0.19 +32178,,,,,,,,0, +9904,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +6107,95.0,10.0,9.0,10.0,10.0,10.0,10.0,28,1.23 +34714,,,,,,,,0, +17296,100.0,10.0,8.0,10.0,10.0,10.0,6.0,1,0.37 +33369,50.0,6.0,3.0,7.0,7.0,7.0,6.0,2,0.38 +53798,,,,,,,,0, +73573,,,,,,,,0, +14835,,,,,,,,0, +58277,,,,,,,,0, +29380,97.0,10.0,9.0,10.0,10.0,10.0,9.0,7,0.2 +64443,,,,,,,,0, +11026,,,,,,,,1,0.03 +7250,98.0,10.0,10.0,10.0,10.0,9.0,9.0,16,0.46 +48619,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.36 +69042,95.0,10.0,9.0,10.0,10.0,9.0,9.0,26,0.82 +40100,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.11 +37848,,,,,,,,0, +70530,100.0,10.0,9.0,10.0,10.0,10.0,10.0,10,0.31 +52999,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.15 +18545,,,,,,,,0, +58298,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.51 +51361,99.0,10.0,10.0,10.0,10.0,9.0,10.0,42,1.22 +42799,98.0,10.0,10.0,10.0,10.0,10.0,10.0,29,0.84 +25176,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.52 +19309,95.0,10.0,10.0,10.0,10.0,10.0,10.0,110,3.27 +10214,80.0,8.0,8.0,10.0,10.0,8.0,8.0,1,0.03 +49923,99.0,10.0,9.0,10.0,10.0,10.0,9.0,18,0.54 +30912,97.0,10.0,10.0,10.0,10.0,10.0,10.0,42,1.25 +9279,100.0,10.0,8.0,10.0,10.0,8.0,10.0,1,0.14 +34122,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.16 +61420,100.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.63 +42369,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.14 +70574,83.0,8.0,8.0,8.0,9.0,9.0,8.0,16,0.46 +38746,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.33 +23019,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +63256,88.0,9.0,9.0,9.0,9.0,9.0,9.0,125,3.59 +12499,,,,,,,,0, +113,95.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.47 +2674,60.0,6.0,8.0,10.0,10.0,10.0,6.0,1,0.03 +20042,,,,,,,,0, +69445,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.14 +1989,,,,,,,,0, +54540,100.0,10.0,10.0,10.0,10.0,10.0,10.0,45,1.3 +26565,96.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.18 +59389,92.0,9.0,9.0,10.0,10.0,9.0,9.0,70,2.61 +65324,84.0,9.0,8.0,10.0,10.0,10.0,9.0,16,0.47 +72749,,,,,,,,0, +43935,96.0,10.0,10.0,10.0,10.0,10.0,10.0,39,1.12 +65956,100.0,10.0,9.0,10.0,10.0,9.0,10.0,2,0.06 +19186,95.0,10.0,10.0,10.0,10.0,10.0,9.0,33,0.99 +28309,97.0,10.0,10.0,10.0,10.0,10.0,9.0,22,0.63 +66109,93.0,10.0,9.0,10.0,10.0,10.0,9.0,9,0.28 +75589,97.0,10.0,9.0,10.0,10.0,10.0,10.0,7,0.34 +12347,97.0,10.0,10.0,10.0,10.0,9.0,10.0,100,2.89 +17875,94.0,10.0,9.0,10.0,10.0,10.0,9.0,14,0.43 +24011,100.0,10.0,10.0,10.0,10.0,9.0,10.0,11,0.37 +65496,99.0,10.0,10.0,10.0,10.0,10.0,10.0,28,0.91 +27385,89.0,9.0,9.0,10.0,10.0,10.0,9.0,41,1.18 +7148,100.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.93 +72385,80.0,10.0,8.0,10.0,10.0,8.0,10.0,1,0.04 +10589,80.0,10.0,10.0,8.0,10.0,8.0,8.0,1,0.03 +45037,93.0,10.0,10.0,10.0,9.0,10.0,9.0,41,1.24 +23955,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.39 +34886,98.0,10.0,10.0,10.0,10.0,10.0,10.0,111,3.22 +3905,100.0,10.0,10.0,9.0,10.0,10.0,10.0,18,0.54 +20897,95.0,10.0,10.0,10.0,10.0,10.0,10.0,22,0.64 +73823,96.0,9.0,9.0,10.0,10.0,10.0,10.0,5,0.14 +18430,,,,,,,,0, +17929,,,,,,,,0, +43881,88.0,9.0,9.0,9.0,9.0,9.0,9.0,8,1.4 +46991,,,,,,,,0, +15786,,,,,,,,0, +32518,,,,,,,,0, +19831,94.0,10.0,10.0,10.0,10.0,9.0,10.0,67,1.94 +50263,,,,,,,,0, +60891,90.0,9.0,9.0,10.0,10.0,8.0,9.0,54,1.86 +42530,95.0,10.0,10.0,10.0,10.0,10.0,10.0,143,5.11 +20431,90.0,9.0,8.0,10.0,10.0,10.0,10.0,8,0.28 +33022,98.0,10.0,9.0,10.0,10.0,9.0,10.0,45,1.29 +69958,99.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.41 +20912,90.0,9.0,9.0,10.0,10.0,8.0,8.0,2,0.11 +31508,,,,,,,,2,0.07 +6072,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.15 +7403,,,,,,,,0, +11491,80.0,8.0,8.0,8.0,8.0,10.0,8.0,4,0.15 +21787,98.0,10.0,10.0,10.0,10.0,10.0,10.0,100,3.05 +7933,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.22 +57499,,,,,,,,0, +34027,,,,,,,,0, +46334,98.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.4 +49329,81.0,9.0,8.0,10.0,10.0,9.0,9.0,15,0.43 +28366,,,,,,,,0, +16217,,,,,,,,1,0.08 +19620,97.0,10.0,9.0,10.0,10.0,10.0,10.0,12,0.39 +14924,94.0,10.0,10.0,10.0,10.0,9.0,10.0,14,4.52 +72725,89.0,9.0,9.0,9.0,10.0,9.0,9.0,28,0.81 +43179,,,,,,,,0, +73352,97.0,10.0,9.0,10.0,10.0,10.0,10.0,24,0.7 +20966,,,,,,,,0, +39805,94.0,10.0,10.0,10.0,10.0,9.0,10.0,87,2.5 +4980,94.0,10.0,9.0,9.0,10.0,9.0,10.0,71,2.14 +27721,93.0,9.0,10.0,10.0,10.0,10.0,9.0,3,0.1 +1824,95.0,10.0,6.0,9.0,10.0,10.0,9.0,4,0.2 +33899,85.0,8.0,6.0,7.0,9.0,10.0,10.0,5,0.15 +67700,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.18 +30960,96.0,10.0,10.0,10.0,10.0,10.0,9.0,90,2.57 +33738,87.0,10.0,9.0,9.0,9.0,10.0,9.0,5,0.16 +56081,,,,,,,,0, +71736,100.0,8.0,10.0,10.0,10.0,10.0,8.0,1,0.03 +10796,95.0,10.0,10.0,10.0,10.0,9.0,9.0,12,0.35 +72361,,,,,,,,0, +53169,95.0,10.0,10.0,10.0,10.0,10.0,9.0,53,1.58 +4284,88.0,10.0,8.0,10.0,9.0,9.0,9.0,21,0.61 +53839,,,,,,,,0, +32967,,,,,,,,0, +4902,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.37 +19841,90.0,9.0,8.0,10.0,10.0,10.0,9.0,16,0.49 +55365,93.0,10.0,9.0,10.0,9.0,8.0,10.0,12,0.35 +61458,100.0,10.0,9.0,10.0,10.0,9.0,10.0,2,0.54 +30976,97.0,10.0,9.0,10.0,10.0,10.0,10.0,21,2.73 +57836,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.16 +70324,68.0,8.0,7.0,6.0,7.0,8.0,6.0,11,0.35 +74091,90.0,9.0,8.0,10.0,10.0,10.0,9.0,8,2.12 +59764,96.0,9.0,9.0,10.0,10.0,9.0,10.0,16,0.5 +38312,92.0,10.0,10.0,10.0,10.0,9.0,9.0,67,3.9 +32677,97.0,10.0,10.0,10.0,10.0,10.0,9.0,40,1.23 +39877,100.0,9.0,10.0,10.0,10.0,9.0,10.0,2,0.07 +21165,99.0,10.0,10.0,10.0,10.0,10.0,10.0,185,5.39 +15919,100.0,10.0,10.0,10.0,10.0,10.0,10.0,27,0.83 +22191,90.0,9.0,9.0,10.0,10.0,10.0,9.0,26,0.78 +45148,,,,,,,,0, +35726,99.0,10.0,10.0,10.0,10.0,10.0,10.0,49,1.46 +51648,95.0,10.0,10.0,9.0,10.0,9.0,9.0,8,0.76 +46715,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.03 +67016,90.0,9.0,9.0,9.0,10.0,9.0,9.0,65,1.88 +70493,,,,,,,,0, +1700,,,,,,,,0, +29823,94.0,9.0,10.0,10.0,10.0,10.0,9.0,97,2.81 +19947,,,,,,,,0, +35523,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.09 +60479,96.0,10.0,10.0,9.0,10.0,10.0,10.0,5,0.15 +43644,87.0,9.0,9.0,10.0,10.0,8.0,10.0,11,0.34 +2946,95.0,10.0,8.0,10.0,10.0,10.0,10.0,5,0.15 +33169,,,,,,,,0, +12519,,,,,,,,0, +73556,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.15 +66993,100.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +64392,,,,,,,,0, +1882,,,,,,,,1,0.03 +61199,,,,,,,,0, +6237,95.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.6 +68647,,,,,,,,0, +24256,,,,,,,,0, +59126,90.0,9.0,9.0,9.0,9.0,9.0,10.0,23,0.71 +76992,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.06 +26165,98.0,10.0,10.0,10.0,10.0,9.0,9.0,17,0.62 +10341,96.0,10.0,9.0,10.0,10.0,9.0,9.0,19,0.67 +42710,60.0,6.0,8.0,9.0,6.0,9.0,6.0,2,0.15 +73415,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.06 +66728,,,,,,,,0, +6949,93.0,9.0,9.0,10.0,10.0,9.0,9.0,24,0.72 +11291,95.0,10.0,9.0,9.0,10.0,9.0,10.0,8,0.3 +69771,92.0,10.0,9.0,10.0,10.0,9.0,9.0,26,0.76 +31357,70.0,7.0,5.0,10.0,10.0,10.0,6.0,2,0.1 +20014,,,,,,,,0, +67295,98.0,10.0,10.0,10.0,10.0,10.0,10.0,37,1.09 +58211,98.0,10.0,9.0,10.0,10.0,10.0,10.0,26,0.89 +16121,93.0,10.0,10.0,9.0,9.0,10.0,10.0,4,0.13 +14206,95.0,10.0,10.0,10.0,10.0,9.0,10.0,22,0.66 +502,97.0,10.0,10.0,10.0,10.0,9.0,10.0,249,8.13 +68025,96.0,10.0,10.0,10.0,10.0,10.0,9.0,111,3.21 +3652,93.0,10.0,9.0,9.0,9.0,9.0,9.0,190,5.51 +40743,95.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.15 +65595,96.0,10.0,10.0,10.0,10.0,10.0,9.0,49,1.53 +47237,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.17 +5260,,,,,,,,0, +73,88.0,10.0,10.0,9.0,9.0,10.0,9.0,22,0.64 +10639,80.0,10.0,10.0,10.0,10.0,6.0,8.0,1,0.03 +64268,93.0,9.0,9.0,10.0,10.0,8.0,8.0,6,0.18 +64265,100.0,10.0,10.0,9.0,10.0,10.0,10.0,9,0.51 +66154,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.35 +65678,,,,,,,,0, +74878,86.0,9.0,8.0,9.0,10.0,8.0,9.0,113,3.31 +48534,96.0,10.0,9.0,10.0,10.0,9.0,9.0,61,1.86 +7898,,,,,,,,0, +40274,,,,,,,,0, +33895,98.0,10.0,10.0,10.0,10.0,10.0,10.0,19,0.65 +26329,100.0,8.0,10.0,,10.0,,,1,0.04 +46539,87.0,9.0,9.0,10.0,10.0,10.0,9.0,6,0.17 +55298,,,,,,,,0, +27425,94.0,10.0,9.0,10.0,10.0,10.0,9.0,19,0.57 +42521,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.06 +71942,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +19699,97.0,10.0,10.0,10.0,10.0,10.0,10.0,27,1.15 +1996,80.0,8.0,6.0,10.0,10.0,10.0,8.0,2,0.07 +74572,,,,,,,,0, +64613,93.0,10.0,9.0,10.0,10.0,9.0,10.0,6,0.18 +32758,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +34509,95.0,10.0,10.0,9.0,10.0,10.0,10.0,103,3.02 +52649,98.0,10.0,10.0,10.0,10.0,10.0,10.0,43,1.32 +6529,,,,,,,,0, +58235,,,,,,,,0, +72223,98.0,10.0,10.0,10.0,10.0,9.0,9.0,9,0.31 +3504,100.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.21 +35074,,,,,,,,0, +2914,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.21 +569,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.18 +53117,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.2 +12254,,,,,,,,0, +5960,95.0,10.0,9.0,10.0,10.0,9.0,9.0,117,3.44 +17628,93.0,10.0,9.0,10.0,10.0,10.0,10.0,8,0.27 +65994,,,,,,,,0, +54865,92.0,10.0,10.0,10.0,10.0,10.0,9.0,12,0.35 +46465,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.1 +53670,82.0,9.0,8.0,9.0,9.0,9.0,9.0,9,0.27 +47311,,,,,,,,0, +48992,,,,,,,,0, +39503,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.25 +65548,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.09 +35379,90.0,9.0,9.0,10.0,10.0,8.0,9.0,32,0.99 +67353,95.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.45 +76930,,,,,,,,0, +63344,100.0,10.0,9.0,10.0,9.0,10.0,10.0,2,0.07 +59122,93.0,9.0,10.0,10.0,10.0,10.0,9.0,3,0.09 +61413,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.36 +34514,99.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.68 +14339,100.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.97 +66305,88.0,9.0,8.0,8.0,10.0,10.0,9.0,5,0.15 +19694,,,,,,,,0, +69450,,,,,,,,0, +10226,93.0,9.0,10.0,9.0,10.0,10.0,9.0,59,1.71 +32590,100.0,10.0,10.0,10.0,10.0,10.0,10.0,77,2.38 +28558,,,,,,,,0, +9864,98.0,10.0,10.0,10.0,10.0,10.0,9.0,31,1.07 +57265,99.0,10.0,10.0,10.0,10.0,10.0,9.0,15,0.44 +544,100.0,10.0,10.0,9.0,10.0,10.0,10.0,5,0.19 +14923,95.0,10.0,10.0,10.0,10.0,10.0,10.0,57,1.75 +16140,,,,,,,,0, +63526,,,,,,,,0, +74708,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.03 +46720,100.0,10.0,10.0,10.0,8.0,10.0,8.0,1,0.03 +32073,91.0,9.0,9.0,10.0,10.0,9.0,9.0,18,0.53 +33498,,,,,,,,0, +7539,,,,,,,,0, +14703,,,,,,,,0, +60201,99.0,10.0,10.0,10.0,10.0,10.0,10.0,67,2.02 +752,92.0,9.0,9.0,9.0,9.0,10.0,9.0,6,0.18 +50547,,,,,,,,0, +7996,98.0,10.0,10.0,10.0,10.0,9.0,10.0,11,0.9 +54695,95.0,9.0,10.0,10.0,10.0,10.0,9.0,11,0.33 +30137,,,,,,,,0, +23097,,,,,,,,0, +40063,93.0,9.0,9.0,9.0,9.0,10.0,9.0,11,0.4 +18091,92.0,10.0,10.0,10.0,9.0,8.0,10.0,11,0.32 +71308,85.0,10.0,8.0,9.0,10.0,9.0,9.0,5,0.14 +5652,91.0,9.0,9.0,10.0,10.0,9.0,9.0,62,1.94 +51133,85.0,9.0,9.0,10.0,10.0,8.0,9.0,4,0.14 +58588,80.0,10.0,8.0,10.0,8.0,8.0,8.0,1,0.03 +23609,87.0,10.0,10.0,10.0,10.0,9.0,9.0,4,0.14 +29782,95.0,10.0,10.0,10.0,10.0,10.0,9.0,13,0.38 +69677,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +61029,95.0,10.0,10.0,10.0,10.0,9.0,10.0,266,7.79 +75620,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,2.09 +66914,94.0,10.0,9.0,10.0,10.0,9.0,10.0,39,5.02 +4939,100.0,10.0,10.0,10.0,10.0,10.0,10.0,62,1.9 +62327,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.45 +32966,96.0,9.0,9.0,10.0,10.0,8.0,9.0,6,1.05 +58240,97.0,10.0,9.0,10.0,10.0,10.0,10.0,46,1.41 +3156,,,,,,,,0, +72604,98.0,10.0,10.0,10.0,10.0,9.0,9.0,23,1.18 +56309,85.0,9.0,8.0,9.0,9.0,8.0,9.0,4,0.14 +60630,95.0,9.0,9.0,10.0,10.0,10.0,9.0,4,0.14 +52544,,,,,,,,1,0.03 +32555,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.21 +50953,98.0,10.0,10.0,10.0,10.0,10.0,10.0,103,3.62 +67061,96.0,10.0,10.0,10.0,10.0,10.0,10.0,48,1.49 +18199,,,,,,,,2,0.06 +37560,,,,,,,,0, +15077,95.0,10.0,9.0,10.0,10.0,9.0,9.0,67,1.99 +56896,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +7154,,,,,,,,0, +41133,80.0,10.0,10.0,10.0,10.0,6.0,8.0,1,0.03 +12903,80.0,10.0,8.0,10.0,10.0,8.0,8.0,2,0.11 +23131,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.03 +71431,87.0,9.0,10.0,10.0,8.0,10.0,9.0,3,0.13 +76203,,,,,,,,0, +8489,,,,,,,,0, +62375,87.0,9.0,9.0,10.0,9.0,9.0,9.0,149,4.37 +8879,,,,,,,,0, +16161,,,,,,,,0, +55689,,,,,,,,0, +41899,,,,,,,,0, +49809,,,,,,,,0, +57228,99.0,10.0,10.0,10.0,10.0,9.0,10.0,63,1.85 +64316,93.0,10.0,9.0,10.0,10.0,10.0,9.0,20,0.61 +38970,96.0,10.0,10.0,10.0,10.0,10.0,10.0,19,0.6 +47577,94.0,10.0,10.0,10.0,10.0,10.0,10.0,25,0.78 +72791,88.0,9.0,8.0,10.0,10.0,10.0,9.0,22,0.65 +19673,,,,,,,,0, +6851,,,,,,,,0, +42060,97.0,10.0,9.0,10.0,10.0,10.0,10.0,26,0.78 +68570,,,,,,,,0, +34212,,,,,,,,0, +24429,90.0,10.0,9.0,9.0,9.0,9.0,9.0,51,1.56 +5687,97.0,10.0,10.0,10.0,10.0,10.0,10.0,82,2.45 +45589,,,,,,,,0, +38611,96.0,10.0,10.0,10.0,10.0,9.0,10.0,32,0.93 +61098,96.0,10.0,9.0,10.0,9.0,9.0,9.0,11,0.34 +60538,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +4557,,,,,,,,0, +63047,60.0,8.0,8.0,6.0,6.0,6.0,6.0,1,0.06 +71768,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +69096,70.0,8.0,10.0,6.0,8.0,9.0,7.0,4,0.12 +29414,100.0,8.0,10.0,10.0,10.0,10.0,8.0,1,0.03 +68562,40.0,2.0,2.0,2.0,2.0,6.0,2.0,1,0.42 +68052,,,,,,,,0, +16379,80.0,9.0,8.0,8.0,8.0,8.0,7.0,2,0.07 +21163,97.0,10.0,10.0,10.0,10.0,9.0,10.0,20,0.69 +16506,99.0,10.0,10.0,10.0,10.0,10.0,10.0,58,1.75 +17873,95.0,10.0,9.0,10.0,10.0,9.0,9.0,29,1.45 +45378,,,,,,,,0, +74350,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +2760,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +74948,95.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.35 +21010,95.0,10.0,10.0,10.0,10.0,9.0,10.0,22,0.67 +19154,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.06 +12933,90.0,8.0,8.0,9.0,9.0,9.0,8.0,2,0.09 +40278,99.0,10.0,10.0,10.0,10.0,10.0,10.0,57,1.75 +30152,88.0,9.0,7.0,10.0,10.0,10.0,10.0,8,0.23 +60128,,,,,,,,1,0.03 +73770,80.0,10.0,10.0,9.0,7.0,9.0,9.0,4,0.11 +41683,87.0,9.0,9.0,9.0,9.0,10.0,9.0,99,2.9 +4426,98.0,10.0,10.0,10.0,10.0,10.0,9.0,24,0.7 +51952,96.0,10.0,9.0,9.0,9.0,10.0,9.0,5,0.17 +28032,90.0,10.0,9.0,10.0,10.0,10.0,10.0,6,0.18 +34223,,,,,,,,0, +2845,,,,,,,,0, +59733,,,,,,,,0, +5123,97.0,10.0,9.0,10.0,10.0,10.0,10.0,40,1.23 +3760,100.0,10.0,10.0,9.0,10.0,10.0,10.0,3,0.11 +2407,,,,,,,,0, +76446,,,,,,,,0, +73607,,,,,,,,0, +47367,20.0,2.0,2.0,,,,2.0,1,0.04 +21385,94.0,10.0,9.0,10.0,10.0,8.0,9.0,13,0.38 +40665,90.0,9.0,10.0,10.0,10.0,7.0,9.0,2,0.06 +67827,100.0,6.0,10.0,10.0,10.0,4.0,8.0,1,0.04 +36751,,,,,,,,0, +18031,,,,,,,,0, +3756,,,,,,,,0, +57002,,,,,,,,0, +52105,,,,,,,,0, +57059,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +45932,94.0,10.0,10.0,10.0,10.0,10.0,9.0,13,0.43 +40069,80.0,9.0,9.0,8.0,9.0,9.0,7.0,3,0.09 +46358,,,,,,,,0, +50503,,,,,,,,0, +1914,,,,,,,,0, +43904,,,,,,,,0, +50026,,,,,,,,0, +62255,73.0,6.0,6.0,6.0,8.0,9.0,7.0,3,0.13 +71975,,,,,,,,0, +28703,,,,,,,,0, +16750,,,,,,,,0, +24031,,,,,,,,0, +18270,,,,,,,,0, +73870,,,,,,,,0, +38523,,,,,,,,1,0.04 +18541,20.0,10.0,10.0,6.0,2.0,2.0,2.0,1,0.03 +29711,88.0,9.0,10.0,10.0,9.0,9.0,9.0,19,0.57 +32219,,,,,,,,0, +10493,85.0,9.0,9.0,9.0,9.0,9.0,9.0,12,0.35 +41371,,,,,,,,0, +51677,,,,,,,,0, +21619,94.0,10.0,9.0,10.0,10.0,10.0,9.0,54,2.41 +35642,,,,,,,,0, +25975,,,,,,,,0, +41924,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.06 +45617,,,,,,,,0, +20663,,,,,,,,0, +72835,,,,,,,,0, +26265,,,,,,,,0, +18923,100.0,10.0,10.0,10.0,10.0,10.0,10.0,24,0.91 +7978,,,,,,,,0, +21698,80.0,8.0,10.0,10.0,10.0,8.0,10.0,1,0.04 +17186,80.0,10.0,10.0,4.0,10.0,10.0,10.0,2,2.0 +24504,80.0,9.0,9.0,7.0,9.0,10.0,8.0,3,0.11 +42965,100.0,10.0,10.0,10.0,9.0,9.0,10.0,2,0.09 +41906,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.31 +55925,,,,,,,,0, +24318,,,,,,,,0, +2622,95.0,10.0,10.0,10.0,10.0,10.0,10.0,56,1.76 +76133,,,,,,,,0, +10082,,,,,,,,0, +37411,,,,,,,,0, +52857,,,,,,,,0, +74068,,,,,,,,0, +19014,,,,,,,,0, +56810,,,,,,,,0, +30451,,,,,,,,0, +56575,80.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.06 +39518,95.0,10.0,9.0,10.0,10.0,10.0,10.0,28,0.91 +60760,100.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.55 +7639,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.07 +25480,100.0,9.0,10.0,10.0,10.0,10.0,10.0,3,0.1 +42199,,,,,,,,0, +73384,96.0,10.0,10.0,10.0,10.0,9.0,10.0,12,0.41 +24232,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.03 +22037,79.0,8.0,7.0,9.0,9.0,10.0,8.0,106,3.11 +33118,,,,,,,,0, +3077,,,,,,,,0, +28653,90.0,8.0,10.0,10.0,10.0,9.0,9.0,2,0.07 +55761,,,,,,,,0, +52612,,,,,,,,0, +55321,100.0,10.0,10.0,6.0,8.0,10.0,10.0,1,0.04 +68525,80.0,9.0,6.0,5.0,8.0,9.0,9.0,2,0.09 +69328,98.0,10.0,10.0,10.0,10.0,10.0,10.0,92,2.78 +49962,,,,,,,,0, +12208,,,,,,,,0, +52709,,,,,,,,0, +58115,90.0,9.0,9.0,10.0,10.0,9.0,8.0,2,0.07 +2483,,,,,,,,0, +18915,,,,,,,,0, +6890,80.0,8.0,8.0,8.0,8.0,10.0,8.0,1,0.04 +5073,,,,,,,,0, +60448,,,,,,,,0, +30466,80.0,8.0,10.0,8.0,10.0,10.0,8.0,1,0.03 +66978,,,,,,,,0, +39765,97.0,10.0,10.0,10.0,10.0,10.0,9.0,13,0.4 +3060,87.0,9.0,9.0,10.0,10.0,10.0,9.0,3,0.1 +223,,,,,,,,0, +64642,,,,,,,,0, +49821,,,,,,,,0, +20047,,,,,,,,0, +27607,88.0,9.0,10.0,9.0,9.0,9.0,9.0,23,0.68 +69237,92.0,9.0,9.0,9.0,10.0,10.0,9.0,5,0.29 +41637,,,,,,,,0, +54415,93.0,9.0,9.0,10.0,10.0,10.0,9.0,56,1.73 +31682,,,,,,,,0, +17269,,,,,,,,0, +10441,,,,,,,,0, +48711,93.0,10.0,9.0,10.0,10.0,9.0,9.0,3,0.09 +35197,,,,,,,,0, +53201,,,,,,,,0, +74985,,,,,,,,0, +63268,94.0,10.0,9.0,10.0,10.0,9.0,9.0,43,1.27 +8318,94.0,10.0,9.0,10.0,10.0,10.0,10.0,110,3.3 +70446,,,,,,,,0, +64987,,,,,,,,0, +64981,,,,,,,,0, +27455,93.0,10.0,10.0,10.0,9.0,9.0,9.0,37,1.09 +66187,89.0,9.0,10.0,10.0,10.0,9.0,9.0,45,1.34 +42401,100.0,10.0,10.0,10.0,6.0,10.0,10.0,1,0.04 +65546,,,,,,,,0, +62997,,,,,,,,0, +32294,93.0,10.0,9.0,10.0,10.0,8.0,10.0,3,0.11 +51801,,,,,,,,0, +53042,100.0,10.0,10.0,10.0,10.0,10.0,10.0,34,1.28 +14530,,,,,,,,0, +66322,92.0,10.0,9.0,10.0,10.0,9.0,9.0,170,4.96 +48066,,,,,,,,0, +45242,90.0,9.0,8.0,9.0,9.0,9.0,10.0,2,0.08 +8269,96.0,10.0,10.0,10.0,10.0,9.0,9.0,16,0.49 +56029,,,,,,,,0, +32738,,,,,,,,0, +65382,55.0,8.0,8.0,7.0,6.0,7.0,6.0,4,0.28 +16744,,,,,,,,0, +66854,,,,,,,,0, +55560,,,,,,,,0, +40108,80.0,8.0,6.0,9.0,10.0,9.0,8.0,4,0.12 +62809,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.35 +17190,90.0,10.0,10.0,10.0,10.0,9.0,9.0,2,0.06 +23493,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.09 +8311,94.0,10.0,10.0,10.0,10.0,9.0,10.0,98,2.96 +36480,94.0,9.0,9.0,10.0,10.0,10.0,9.0,58,1.69 +20136,,,,,,,,1,0.03 +1827,93.0,9.0,9.0,9.0,10.0,9.0,9.0,5,0.15 +28016,95.0,10.0,9.0,10.0,10.0,9.0,10.0,23,0.69 +55068,100.0,10.0,9.0,10.0,10.0,10.0,10.0,10,0.85 +60893,98.0,10.0,9.0,10.0,10.0,10.0,10.0,9,0.29 +58778,87.0,9.0,10.0,10.0,9.0,8.0,9.0,124,3.63 +52995,85.0,9.0,9.0,9.0,9.0,8.0,9.0,62,1.87 +25847,90.0,8.0,9.0,10.0,10.0,10.0,8.0,2,0.07 +12200,99.0,10.0,10.0,10.0,10.0,10.0,10.0,57,1.72 +19032,,,,,,,,1, +10764,,,,,,,,0, +47965,87.0,7.0,8.0,9.0,10.0,10.0,7.0,3,0.09 +56472,91.0,10.0,9.0,10.0,10.0,9.0,9.0,143,4.18 +46164,90.0,9.0,8.0,9.0,10.0,9.0,9.0,14,0.45 +30799,97.0,10.0,10.0,10.0,10.0,10.0,9.0,52,1.57 +35099,100.0,10.0,9.0,10.0,10.0,9.0,9.0,2,0.11 +27549,80.0,8.0,8.0,8.0,6.0,8.0,8.0,1,0.03 +31164,97.0,9.0,10.0,10.0,10.0,9.0,9.0,7,0.43 +21610,88.0,9.0,10.0,10.0,10.0,9.0,9.0,10,0.64 +10362,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.48 +35735,,,,,,,,0, +33858,92.0,9.0,10.0,9.0,10.0,8.0,9.0,63,2.04 +27446,80.0,8.0,8.0,6.0,8.0,8.0,8.0,1,0.03 +49924,100.0,10.0,9.0,10.0,10.0,9.0,8.0,2,0.77 +13629,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.37 +33467,87.0,9.0,9.0,8.0,10.0,8.0,9.0,3,0.09 +46507,,,,,,,,0, +56527,,,,,,,,0, +74761,,,,,,,,0, +66461,100.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +36680,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.16 +12450,96.0,10.0,10.0,10.0,10.0,10.0,10.0,60,1.83 +47752,100.0,9.0,10.0,10.0,10.0,10.0,10.0,2,0.06 +64071,100.0,10.0,10.0,9.0,9.0,10.0,10.0,2,0.06 +14737,100.0,9.0,10.0,10.0,10.0,10.0,10.0,2,0.06 +41103,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.06 +3280,93.0,10.0,9.0,10.0,10.0,10.0,9.0,46,1.51 +27412,99.0,10.0,10.0,10.0,10.0,10.0,10.0,104,3.21 +63938,98.0,10.0,10.0,10.0,10.0,10.0,10.0,26,0.89 +29287,97.0,10.0,10.0,9.0,10.0,10.0,10.0,7,0.3 +8505,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.08 +16828,,,,,,,,0, +4383,95.0,10.0,9.0,10.0,10.0,10.0,10.0,22,0.68 +28690,93.0,9.0,9.0,10.0,10.0,10.0,9.0,6,0.68 +25540,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.12 +58442,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.09 +52001,92.0,10.0,9.0,10.0,10.0,10.0,9.0,100,2.92 +39501,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +73182,98.0,10.0,10.0,10.0,10.0,9.0,10.0,33,1.01 +23519,90.0,9.0,8.0,10.0,9.0,10.0,9.0,112,3.27 +63942,87.0,9.0,9.0,9.0,10.0,9.0,10.0,3,0.09 +67577,95.0,10.0,10.0,9.0,9.0,8.0,10.0,8,0.26 +40811,94.0,9.0,9.0,10.0,10.0,9.0,9.0,83,2.56 +68744,,,,,,,,0, +29440,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +14985,93.0,10.0,9.0,10.0,10.0,10.0,9.0,114,3.74 +8996,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.15 +33708,,,,,,,,0, +11332,73.0,8.0,7.0,9.0,8.0,10.0,8.0,14,0.41 +8396,80.0,9.0,9.0,8.0,9.0,8.0,8.0,2,0.41 +49058,96.0,10.0,10.0,10.0,10.0,9.0,10.0,50,1.48 +7735,97.0,10.0,10.0,10.0,10.0,10.0,10.0,23,0.81 +41521,94.0,10.0,10.0,10.0,10.0,9.0,9.0,7,0.21 +11490,94.0,10.0,10.0,10.0,10.0,10.0,9.0,33,0.96 +6204,98.0,10.0,10.0,10.0,10.0,10.0,10.0,47,1.42 +37711,98.0,10.0,9.0,10.0,10.0,10.0,10.0,14,1.21 +45580,,,,,,,,0, +32372,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +48500,88.0,9.0,9.0,10.0,9.0,9.0,9.0,16,0.46 +22530,95.0,9.0,9.0,10.0,10.0,10.0,10.0,96,2.84 +62464,,,,,,,,0, +76798,98.0,10.0,10.0,10.0,10.0,10.0,10.0,39,1.29 +18559,97.0,10.0,10.0,10.0,10.0,9.0,10.0,20,0.62 +32146,91.0,10.0,9.0,10.0,9.0,9.0,9.0,57,1.66 +48093,93.0,9.0,9.0,9.0,10.0,9.0,10.0,6,0.18 +4891,94.0,9.0,10.0,10.0,10.0,9.0,9.0,99,3.52 +39041,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.14 +75663,71.0,7.0,5.0,9.0,8.0,9.0,8.0,16,0.48 +43250,86.0,9.0,9.0,9.0,10.0,10.0,9.0,64,2.05 +17688,97.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.44 +14527,80.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.16 +34533,96.0,10.0,10.0,10.0,10.0,10.0,10.0,177,5.33 +41480,80.0,9.0,9.0,10.0,10.0,9.0,9.0,3,0.09 +59864,,,,,,,,0, +52441,94.0,10.0,10.0,9.0,10.0,10.0,9.0,95,2.79 +15414,99.0,10.0,10.0,10.0,10.0,10.0,10.0,46,3.73 +50289,,,,,,,,0, +75721,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.36 +47102,94.0,9.0,10.0,10.0,10.0,10.0,9.0,11,0.32 +486,94.0,10.0,9.0,10.0,10.0,10.0,9.0,7,0.21 +57531,80.0,10.0,10.0,10.0,9.0,9.0,10.0,2,0.06 +22381,100.0,10.0,8.0,10.0,10.0,8.0,10.0,2,0.06 +10386,70.0,8.0,7.0,8.0,7.0,8.0,2.0,2,0.07 +53604,96.0,10.0,10.0,10.0,10.0,10.0,10.0,95,2.77 +48313,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.34 +3472,92.0,9.0,10.0,10.0,10.0,10.0,9.0,20,0.64 +43650,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.25 +48670,98.0,10.0,10.0,10.0,10.0,10.0,10.0,71,2.07 +43961,80.0,10.0,9.0,10.0,10.0,9.0,9.0,4,0.12 +21982,96.0,9.0,9.0,9.0,9.0,9.0,9.0,10,0.33 +6821,95.0,9.0,9.0,10.0,10.0,10.0,10.0,5,0.15 +57192,70.0,9.0,9.0,9.0,9.0,9.0,8.0,3,0.58 +70286,89.0,10.0,9.0,10.0,10.0,10.0,9.0,9,0.27 +28413,98.0,10.0,10.0,10.0,10.0,10.0,10.0,38,1.13 +32445,,,,,,,,0, +3193,100.0,10.0,10.0,10.0,10.0,9.0,9.0,15,0.46 +55896,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.14 +22544,86.0,9.0,7.0,10.0,9.0,9.0,9.0,28,0.83 +29041,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.09 +74741,99.0,10.0,10.0,10.0,10.0,10.0,10.0,64,2.05 +60083,,,,,,,,0, +39445,,,,,,,,0, +51037,97.0,10.0,10.0,10.0,10.0,10.0,10.0,58,1.69 +20954,,,,,,,,0, +47145,,,,,,,,0, +26014,,,,,,,,0, +59197,97.0,10.0,9.0,10.0,10.0,10.0,10.0,15,1.94 +27374,90.0,10.0,10.0,9.0,9.0,10.0,9.0,66,1.91 +64230,92.0,9.0,9.0,10.0,10.0,9.0,10.0,37,1.1 +41932,80.0,10.0,6.0,10.0,10.0,8.0,8.0,1,0.03 +56916,,,,,,,,0, +36825,,,,,,,,0, +23757,100.0,10.0,10.0,8.0,8.0,10.0,10.0,2,0.06 +31098,,,,,,,,0, +25535,,,,,,,,0, +52925,80.0,8.0,8.0,4.0,8.0,8.0,8.0,1,0.03 +40123,95.0,10.0,10.0,10.0,10.0,9.0,9.0,23,0.71 +10664,94.0,9.0,10.0,10.0,10.0,9.0,9.0,62,1.88 +33344,,,,,,,,0, +21096,,,,,,,,0, +23646,,,,,,,,0, +16865,100.0,10.0,9.0,10.0,10.0,10.0,9.0,3,0.09 +50961,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.06 +60239,100.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.58 +42439,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +64635,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +30779,,,,,,,,0, +36143,,,,,,,,1,0.03 +64334,100.0,10.0,10.0,10.0,10.0,9.0,10.0,9,0.29 +31743,100.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.6 +17953,,,,,,,,0, +37605,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.08 +5277,88.0,9.0,9.0,10.0,9.0,9.0,9.0,64,2.03 +13929,84.0,9.0,7.0,10.0,10.0,10.0,9.0,38,1.18 +63371,98.0,10.0,10.0,10.0,10.0,10.0,10.0,37,1.15 +83,80.0,,8.0,,,,,1,0.04 +13083,91.0,10.0,8.0,10.0,10.0,10.0,9.0,9,0.37 +56966,91.0,10.0,9.0,10.0,10.0,9.0,9.0,242,7.03 +1915,95.0,9.0,10.0,10.0,10.0,10.0,9.0,12,0.4 +32223,91.0,10.0,9.0,10.0,10.0,9.0,9.0,271,7.86 +19037,,,,,,,,0, +73980,96.0,9.0,10.0,9.0,10.0,9.0,10.0,19,0.7 +30068,,,,,,,,0, +24010,,,,,,,,0, +66988,60.0,2.0,10.0,10.0,6.0,10.0,4.0,1,0.03 +37928,,,,,,,,0, +74707,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.07 +42764,,,,,,,,2,0.11 +55472,,,,,,,,0, +58759,92.0,10.0,9.0,10.0,10.0,10.0,9.0,6,0.19 +45021,80.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.04 +46477,95.0,10.0,9.0,10.0,10.0,10.0,9.0,37,1.08 +43560,,,,,,,,0, +17898,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.14 +45464,,,,,,,,0, +40232,67.0,9.0,7.0,8.0,8.0,8.0,9.0,3,0.1 +67726,80.0,8.0,10.0,8.0,8.0,10.0,10.0,1,0.04 +55833,100.0,10.0,10.0,,10.0,,,1,0.06 +11948,96.0,10.0,10.0,10.0,10.0,9.0,9.0,28,0.84 +69080,88.0,9.0,10.0,9.0,9.0,9.0,9.0,10,0.29 +10937,94.0,10.0,10.0,9.0,9.0,10.0,9.0,10,0.31 +5585,93.0,10.0,9.0,10.0,9.0,10.0,9.0,17,0.57 +25519,,,,,,,,0, +51503,,,,,,,,0, +10854,,,,,,,,0, +20356,,,,,,,,0, +35448,93.0,10.0,9.0,10.0,9.0,10.0,9.0,38,1.12 +17096,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.88 +51386,96.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.19 +36759,89.0,9.0,9.0,10.0,10.0,9.0,9.0,154,4.51 +366,96.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.42 +43203,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.13 +2333,96.0,10.0,10.0,10.0,10.0,10.0,9.0,113,3.36 +71979,,,,,,,,0, +14803,100.0,10.0,10.0,10.0,10.0,10.0,10.0,56,1.85 +30917,94.0,10.0,10.0,10.0,10.0,9.0,10.0,13,0.4 +64678,93.0,10.0,10.0,10.0,10.0,9.0,9.0,33,1.15 +47702,,,,,,,,0, +50066,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.06 +74842,90.0,9.0,9.0,10.0,10.0,8.0,10.0,4,0.15 +75202,,,,,,,,0, +12848,90.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.12 +29964,,,,,,,,0, +75114,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.06 +4037,,,,,,,,0, +74882,,,,,,,,0, +48210,98.0,10.0,10.0,10.0,10.0,10.0,10.0,28,0.95 +72808,,,,,,,,0, +6829,87.0,9.0,9.0,10.0,10.0,9.0,9.0,160,4.74 +50014,,,,,,,,0, +27928,,,,,,,,0, +24645,85.0,9.0,7.0,9.0,9.0,9.0,9.0,63,1.84 +23058,88.0,9.0,9.0,9.0,10.0,9.0,9.0,131,4.18 +74218,91.0,9.0,9.0,9.0,9.0,8.0,9.0,12,0.36 +21025,80.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.06 +76428,90.0,9.0,9.0,10.0,10.0,9.0,9.0,55,1.64 +75497,94.0,10.0,9.0,10.0,10.0,10.0,9.0,23,0.7 +29401,98.0,10.0,9.0,10.0,10.0,9.0,9.0,11,0.55 +57857,100.0,10.0,10.0,9.0,10.0,10.0,10.0,2,0.06 +60993,,,,,,,,0, +56611,99.0,10.0,10.0,10.0,10.0,10.0,10.0,38,1.12 +68194,93.0,9.0,9.0,10.0,10.0,10.0,9.0,6,0.2 +42126,90.0,9.0,9.0,9.0,10.0,9.0,9.0,39,1.17 +13116,96.0,10.0,9.0,10.0,10.0,10.0,9.0,71,2.18 +36291,87.0,9.0,10.0,10.0,9.0,10.0,9.0,24,0.76 +22621,100.0,10.0,10.0,10.0,9.0,10.0,10.0,3,0.21 +19358,98.0,10.0,10.0,10.0,10.0,10.0,10.0,54,1.73 +66530,96.0,10.0,10.0,10.0,10.0,8.0,10.0,82,2.97 +69663,,,,,,,,1,0.03 +10836,89.0,10.0,9.0,10.0,9.0,10.0,9.0,15,0.57 +9529,92.0,10.0,9.0,10.0,10.0,10.0,9.0,22,0.66 +47438,87.0,9.0,9.0,10.0,9.0,10.0,9.0,10,0.29 +49485,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.04 +38905,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +67524,96.0,10.0,10.0,10.0,10.0,10.0,10.0,84,2.75 +59129,98.0,10.0,10.0,10.0,10.0,10.0,10.0,47,1.53 +6986,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +42432,97.0,10.0,10.0,9.0,9.0,10.0,10.0,8,0.28 +54474,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.18 +30682,87.0,9.0,8.0,10.0,9.0,10.0,9.0,14,0.43 +9927,,,,,,,,0, +44834,97.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.4 +55780,,,,,,,,0, +40350,,,,,,,,0, +17860,93.0,10.0,9.0,10.0,9.0,10.0,9.0,3,0.11 +59604,,,,,,,,0, +58515,,,,,,,,1,0.03 +37436,82.0,8.0,9.0,9.0,9.0,10.0,8.0,68,2.0 +74689,94.0,10.0,9.0,10.0,10.0,9.0,9.0,30,0.98 +59796,98.0,10.0,10.0,10.0,10.0,10.0,10.0,20,0.59 +66985,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.29 +46647,98.0,10.0,10.0,10.0,10.0,10.0,10.0,93,2.72 +1176,94.0,10.0,9.0,10.0,10.0,9.0,10.0,26,0.78 +11667,97.0,10.0,10.0,10.0,10.0,9.0,10.0,12,0.51 +74212,100.0,10.0,10.0,10.0,10.0,9.0,10.0,13,0.42 +20538,,,,,,,,0, +4078,83.0,9.0,10.0,10.0,10.0,9.0,10.0,7,0.22 +447,,,,,,,,0, +25549,96.0,10.0,10.0,10.0,10.0,9.0,10.0,47,1.39 +65542,82.0,9.0,8.0,10.0,9.0,10.0,8.0,10,0.3 +39256,,,,,,,,0, +38894,97.0,10.0,10.0,10.0,10.0,9.0,10.0,103,3.16 +34267,93.0,10.0,10.0,10.0,10.0,10.0,9.0,135,3.92 +33305,94.0,10.0,9.0,10.0,10.0,10.0,10.0,33,1.04 +35127,93.0,10.0,9.0,9.0,9.0,9.0,9.0,3,0.19 +31097,,,,,,,,0, +46031,96.0,10.0,10.0,10.0,10.0,10.0,10.0,56,1.71 +48770,82.0,9.0,9.0,9.0,10.0,9.0,8.0,10,0.29 +63578,100.0,10.0,9.0,10.0,10.0,10.0,10.0,7,0.21 +37453,,,,,,,,0, +21641,98.0,10.0,10.0,10.0,10.0,9.0,10.0,33,0.98 +16905,100.0,10.0,9.0,10.0,10.0,10.0,9.0,3,0.09 +42526,,,,,,,,0, +70833,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.24 +28908,,,,,,,,0, +26845,,,,,,,,0, +7574,,,,,,,,0, +53608,,,,,,,,0, +63472,80.0,8.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +70502,98.0,10.0,10.0,10.0,10.0,9.0,10.0,23,0.8 +34406,,,,,,,,0, +27498,,,,,,,,0, +52036,90.0,9.0,9.0,10.0,10.0,10.0,9.0,84,2.52 +73013,95.0,10.0,9.0,10.0,10.0,10.0,9.0,37,1.17 +33749,99.0,10.0,10.0,10.0,10.0,10.0,10.0,27,0.82 +21084,100.0,7.0,8.0,10.0,9.0,9.0,9.0,3,0.09 +41533,98.0,10.0,10.0,10.0,10.0,10.0,10.0,24,0.7 +15474,89.0,10.0,9.0,9.0,10.0,10.0,9.0,55,1.61 +67520,94.0,9.0,10.0,10.0,10.0,10.0,9.0,53,1.61 +60734,89.0,9.0,9.0,9.0,9.0,10.0,9.0,90,2.62 +20573,98.0,10.0,10.0,10.0,10.0,9.0,10.0,12,0.39 +23120,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +31143,97.0,10.0,10.0,10.0,10.0,10.0,10.0,170,5.35 +76625,88.0,9.0,10.0,8.0,7.0,9.0,9.0,18,1.2 +75360,,,,,,,,0, +17999,,,,,,,,0, +67943,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.16 +20530,100.0,10.0,9.0,10.0,10.0,10.0,10.0,12,0.38 +43577,92.0,9.0,10.0,10.0,10.0,9.0,9.0,31,0.93 +7589,99.0,10.0,10.0,10.0,10.0,10.0,10.0,77,2.26 +15251,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.06 +32248,98.0,10.0,10.0,10.0,10.0,10.0,10.0,43,1.31 +15053,90.0,10.0,9.0,10.0,8.0,10.0,10.0,3,0.09 +39769,100.0,10.0,10.0,9.0,10.0,10.0,10.0,4,0.12 +14166,97.0,10.0,10.0,10.0,10.0,9.0,9.0,47,1.38 +27071,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +45523,,,,,,,,0, +32004,93.0,9.0,9.0,9.0,10.0,9.0,9.0,3,0.23 +10661,,,,,,,,0, +34092,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.2 +12206,89.0,10.0,10.0,10.0,9.0,10.0,9.0,74,2.16 +55327,87.0,8.0,9.0,10.0,10.0,10.0,8.0,7,0.21 +33100,90.0,9.0,10.0,9.0,10.0,9.0,9.0,10,0.72 +11953,90.0,9.0,10.0,9.0,10.0,10.0,9.0,2,0.34 +44491,94.0,10.0,10.0,9.0,10.0,9.0,9.0,20,0.64 +4052,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.09 +18130,99.0,10.0,10.0,10.0,10.0,10.0,10.0,33,1.0 +39988,,,,,,,,0, +7847,88.0,9.0,9.0,8.0,9.0,8.0,10.0,6,0.18 +3540,90.0,10.0,9.0,10.0,10.0,10.0,8.0,6,0.2 +54848,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +43447,,,,,,,,0, +66309,94.0,10.0,9.0,10.0,10.0,9.0,10.0,73,2.17 +57486,,,,,,,,0, +960,,,,,,,,0, +58335,83.0,9.0,9.0,9.0,9.0,9.0,9.0,87,2.56 +29198,88.0,9.0,9.0,10.0,9.0,9.0,9.0,24,0.71 +30872,99.0,10.0,10.0,10.0,10.0,9.0,10.0,46,1.37 +27185,98.0,10.0,9.0,10.0,10.0,10.0,10.0,16,0.47 +26345,96.0,10.0,9.0,10.0,10.0,10.0,10.0,19,2.25 +63715,99.0,10.0,10.0,10.0,10.0,9.0,10.0,23,0.78 +48256,94.0,10.0,9.0,10.0,10.0,10.0,9.0,67,1.96 +60759,85.0,9.0,8.0,9.0,9.0,8.0,8.0,43,1.27 +66323,98.0,10.0,10.0,10.0,10.0,9.0,9.0,9,0.27 +11467,60.0,6.0,2.0,8.0,6.0,10.0,6.0,2,0.06 +18865,80.0,8.0,8.0,9.0,8.0,10.0,8.0,5,0.18 +47123,92.0,10.0,8.0,9.0,9.0,9.0,8.0,7,0.23 +24946,92.0,10.0,9.0,10.0,10.0,10.0,9.0,117,4.19 +4947,,,,,,,,0, +62843,88.0,10.0,9.0,9.0,9.0,8.0,9.0,28,0.85 +18303,90.0,8.0,8.0,9.0,10.0,10.0,9.0,2,0.08 +51636,92.0,10.0,9.0,10.0,10.0,8.0,8.0,9,0.27 +40833,93.0,9.0,9.0,10.0,10.0,10.0,9.0,4,0.13 +14769,86.0,9.0,10.0,9.0,9.0,9.0,9.0,148,4.37 +55662,85.0,10.0,8.0,10.0,10.0,8.0,8.0,11,0.59 +7455,89.0,9.0,9.0,9.0,9.0,9.0,9.0,15,0.49 +16519,85.0,9.0,9.0,9.0,9.0,8.0,9.0,37,1.14 +37567,,,,,,,,2,0.12 +44370,89.0,9.0,9.0,9.0,9.0,9.0,9.0,44,1.3 +49131,94.0,10.0,10.0,10.0,8.0,9.0,9.0,30,0.92 +8128,,,,,,,,0, +47572,93.0,10.0,9.0,9.0,9.0,10.0,9.0,6,0.2 +1408,91.0,9.0,8.0,10.0,10.0,10.0,9.0,104,3.06 +42373,88.0,9.0,8.0,9.0,9.0,8.0,9.0,16,0.53 +31622,,,,,,,,0, +65150,91.0,9.0,9.0,10.0,10.0,10.0,9.0,10,0.34 +68031,,,,,,,,0, +12445,88.0,9.0,10.0,10.0,10.0,8.0,9.0,5,0.17 +9928,100.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.03 +65560,90.0,10.0,8.0,10.0,10.0,10.0,9.0,24,0.85 +76441,99.0,10.0,10.0,10.0,10.0,10.0,10.0,100,2.97 +59312,80.0,10.0,10.0,10.0,10.0,6.0,10.0,1,0.03 +14085,97.0,10.0,10.0,10.0,10.0,10.0,10.0,107,3.36 +73293,94.0,10.0,10.0,10.0,10.0,9.0,10.0,14,0.44 +59621,91.0,9.0,9.0,9.0,9.0,10.0,9.0,79,2.39 +58342,90.0,9.0,9.0,10.0,10.0,9.0,9.0,48,1.47 +32848,78.0,9.0,8.0,9.0,9.0,10.0,8.0,121,3.69 +1232,81.0,9.0,8.0,9.0,9.0,10.0,8.0,84,2.59 +46898,,,,,,,,1,0.03 +25404,,,,,,,,0, +76453,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.27 +62484,93.0,10.0,10.0,10.0,10.0,8.0,9.0,103,3.05 +20608,,,,,,,,0, +20106,97.0,10.0,10.0,10.0,9.0,10.0,9.0,28,0.84 +34699,98.0,10.0,10.0,10.0,10.0,10.0,9.0,33,1.05 +16609,95.0,10.0,10.0,9.0,10.0,10.0,9.0,37,1.1 +64161,99.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.71 +10807,89.0,9.0,9.0,10.0,10.0,9.0,9.0,205,6.08 +9696,85.0,9.0,8.0,10.0,10.0,9.0,9.0,161,4.86 +50189,60.0,7.0,7.0,6.0,6.0,8.0,8.0,5,0.16 +49627,80.0,6.0,8.0,9.0,9.0,8.0,7.0,3,0.86 +40204,,,,,,,,0, +65826,100.0,10.0,10.0,9.0,10.0,10.0,10.0,2,0.07 +59292,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.12 +65633,87.0,9.0,9.0,9.0,9.0,9.0,9.0,39,1.31 +45195,99.0,10.0,10.0,10.0,10.0,10.0,10.0,56,1.71 +25010,93.0,10.0,10.0,7.0,9.0,10.0,9.0,3,0.1 +66730,90.0,9.0,9.0,10.0,10.0,9.0,9.0,10,0.31 +59679,,,,,,,,0, +52934,93.0,10.0,10.0,9.0,9.0,9.0,9.0,51,1.52 +12761,94.0,10.0,9.0,10.0,10.0,10.0,9.0,23,0.78 +51074,95.0,9.0,9.0,10.0,10.0,10.0,9.0,13,0.38 +25193,98.0,10.0,10.0,10.0,10.0,9.0,9.0,31,1.58 +41540,,,,,,,,0, +52567,,,,,,,,0, +50011,91.0,9.0,10.0,10.0,10.0,9.0,9.0,30,0.98 +61238,87.0,9.0,10.0,10.0,10.0,9.0,9.0,6,0.19 +56059,,,,,,,,0, +44998,,,,,,,,0, +10976,89.0,10.0,10.0,9.0,9.0,10.0,9.0,77,2.26 +1359,95.0,10.0,9.0,10.0,10.0,9.0,9.0,28,0.86 +68353,97.0,10.0,9.0,10.0,10.0,10.0,10.0,12,0.59 +34678,98.0,10.0,9.0,10.0,10.0,10.0,9.0,51,1.5 +61922,89.0,9.0,9.0,10.0,9.0,10.0,9.0,13,0.42 +7934,,,,,,,,0, +46057,97.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.29 +4341,,,,,,,,0, +23981,94.0,10.0,9.0,10.0,10.0,10.0,9.0,25,1.2 +62909,93.0,9.0,9.0,10.0,10.0,10.0,9.0,41,1.21 +62437,86.0,9.0,7.0,10.0,10.0,10.0,9.0,24,0.75 +49225,98.0,10.0,10.0,10.0,10.0,10.0,10.0,152,4.44 +30370,,,,,,,,0, +15131,,,,,,,,0, +2052,,,,,,,,0, +11938,100.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.55 +75859,95.0,9.0,9.0,10.0,10.0,9.0,9.0,47,1.46 +11255,,,,,,,,0, +75050,,,,,,,,0, +27715,88.0,9.0,10.0,10.0,10.0,8.0,9.0,5,0.16 +43382,74.0,8.0,9.0,9.0,9.0,9.0,9.0,7,0.21 +4714,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +39329,93.0,10.0,9.0,9.0,10.0,10.0,9.0,18,0.59 +67056,91.0,9.0,9.0,10.0,10.0,10.0,9.0,78,2.32 +52653,80.0,8.0,8.0,9.0,9.0,10.0,8.0,127,3.83 +16764,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +31507,100.0,10.0,10.0,10.0,9.0,9.0,10.0,5,0.15 +14935,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.34 +66584,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.42 +43693,96.0,10.0,10.0,10.0,10.0,10.0,10.0,25,0.95 +39244,,,,,,,,0, +2402,95.0,10.0,9.0,10.0,9.0,9.0,10.0,15,0.47 +59890,90.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.15 +54750,98.0,10.0,10.0,10.0,10.0,10.0,10.0,247,7.68 +66595,,,,,,,,0, +55104,98.0,10.0,10.0,10.0,10.0,10.0,10.0,19,0.6 +46211,,,,,,,,0, +76768,95.0,10.0,8.0,9.0,10.0,9.0,9.0,36,1.07 +34126,93.0,10.0,9.0,9.0,9.0,10.0,9.0,120,3.54 +60961,97.0,10.0,10.0,10.0,10.0,9.0,10.0,153,4.9 +54153,100.0,10.0,10.0,10.0,10.0,10.0,9.0,10,0.33 +68421,97.0,10.0,9.0,10.0,10.0,10.0,10.0,39,1.16 +52038,92.0,9.0,9.0,9.0,10.0,9.0,9.0,36,1.14 +1823,93.0,10.0,9.0,9.0,10.0,9.0,9.0,20,0.59 +53660,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +71978,93.0,10.0,8.0,10.0,10.0,9.0,9.0,3,0.09 +72573,100.0,10.0,9.0,10.0,10.0,10.0,9.0,6,0.21 +15717,100.0,10.0,10.0,10.0,10.0,9.0,10.0,12,0.37 +5352,,,,,,,,0, +11331,95.0,10.0,9.0,10.0,10.0,10.0,9.0,103,3.15 +34015,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.27 +54224,90.0,9.0,9.0,9.0,9.0,9.0,9.0,153,4.51 +37832,100.0,10.0,10.0,8.0,10.0,10.0,10.0,1,0.03 +76501,97.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.26 +20943,89.0,9.0,9.0,9.0,9.0,9.0,9.0,163,4.79 +39787,80.0,9.0,7.0,8.0,9.0,9.0,8.0,8,0.28 +1127,91.0,9.0,9.0,10.0,10.0,10.0,9.0,68,2.01 +76939,90.0,9.0,10.0,10.0,10.0,10.0,9.0,64,1.9 +75695,100.0,10.0,9.0,10.0,10.0,9.0,10.0,3,0.13 +76569,92.0,9.0,9.0,10.0,10.0,10.0,9.0,21,0.66 +5165,,,,,,,,0, +63392,94.0,10.0,10.0,10.0,10.0,10.0,9.0,36,1.07 +72609,91.0,9.0,9.0,10.0,9.0,10.0,9.0,34,1.0 +6808,95.0,10.0,9.0,9.0,9.0,10.0,10.0,17,0.5 +6650,97.0,10.0,10.0,10.0,10.0,10.0,9.0,13,0.5 +76931,,,,,,,,0, +74746,96.0,10.0,10.0,9.0,10.0,9.0,10.0,11,0.33 +58279,78.0,9.0,7.0,9.0,10.0,10.0,8.0,12,0.36 +67767,,,,,,,,0, +36957,97.0,10.0,9.0,10.0,10.0,10.0,10.0,13,0.38 +26271,96.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.38 +14296,93.0,10.0,10.0,10.0,10.0,10.0,9.0,11,2.16 +5589,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.29 +72632,96.0,10.0,10.0,10.0,10.0,10.0,10.0,63,1.88 +1564,,,,,,,,0, +11617,,,,,,,,0, +5131,80.0,6.0,6.0,10.0,10.0,10.0,8.0,1,0.03 +65151,98.0,10.0,10.0,10.0,10.0,9.0,9.0,38,1.36 +56685,,,,,,,,0, +68100,93.0,10.0,8.0,10.0,10.0,10.0,10.0,9,0.27 +2607,100.0,10.0,10.0,10.0,10.0,9.0,10.0,15,0.46 +4472,99.0,10.0,10.0,10.0,10.0,9.0,10.0,80,2.38 +16584,99.0,10.0,10.0,10.0,10.0,9.0,10.0,31,1.06 +56375,93.0,9.0,9.0,9.0,10.0,9.0,9.0,60,1.89 +8344,91.0,9.0,8.0,9.0,9.0,9.0,9.0,52,1.54 +54731,88.0,9.0,9.0,8.0,9.0,10.0,9.0,40,1.18 +27432,77.0,9.0,9.0,9.0,8.0,9.0,7.0,6,0.18 +52765,100.0,10.0,8.0,8.0,10.0,8.0,6.0,1,0.03 +29296,99.0,10.0,10.0,10.0,10.0,9.0,10.0,18,0.78 +27803,87.0,9.0,9.0,10.0,10.0,9.0,8.0,9,0.27 +16122,87.0,9.0,10.0,10.0,10.0,9.0,9.0,3,0.15 +18585,83.0,9.0,9.0,9.0,9.0,7.0,9.0,92,2.79 +6690,,,,,,,,0, +48265,,,,,,,,0, +17406,98.0,10.0,10.0,10.0,10.0,9.0,10.0,13,0.42 +20668,,,,,,,,0, +41270,,,,,,,,0, +4081,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.12 +16153,,,,,,,,0, +42460,80.0,10.0,9.0,9.0,9.0,10.0,8.0,2,0.06 +19173,,,,,,,,0, +16912,88.0,9.0,9.0,9.0,9.0,10.0,9.0,98,2.95 +31539,80.0,7.0,7.0,9.0,9.0,9.0,8.0,3,0.1 +3637,,,,,,,,0, +7858,,,,,,,,0, +75072,95.0,10.0,10.0,10.0,10.0,10.0,9.0,51,1.55 +22571,95.0,10.0,9.0,10.0,10.0,10.0,9.0,36,1.19 +65438,,,,,,,,0, +22675,92.0,9.0,10.0,10.0,10.0,10.0,9.0,73,2.24 +51284,89.0,10.0,10.0,10.0,9.0,9.0,9.0,67,2.0 +33718,,,,,,,,0, +8967,80.0,8.0,8.0,8.0,8.0,10.0,8.0,1,0.03 +1082,,,,,,,,0, +25796,,,,,,,,0, +71102,100.0,9.0,10.0,10.0,10.0,10.0,10.0,3,0.09 +8472,,,,,,,,0, +42644,,,,,,,,0, +15065,,,,,,,,0, +1341,81.0,8.0,7.0,9.0,9.0,8.0,8.0,62,1.88 +3897,60.0,5.0,5.0,8.0,6.0,9.0,4.0,2,0.07 +44645,,,,,,,,0, +26217,60.0,8.0,6.0,7.0,7.0,10.0,8.0,2,0.06 +19106,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.39 +12811,,,,,,,,0, +64666,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +10974,94.0,10.0,10.0,10.0,10.0,10.0,9.0,53,1.58 +31875,,,,,,,,0, +46180,89.0,10.0,9.0,10.0,10.0,10.0,10.0,8,0.46 +76771,,,,,,,,0, +6017,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.22 +11195,90.0,9.0,10.0,10.0,9.0,10.0,10.0,4,0.13 +50745,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.21 +13419,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.25 +11978,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +60628,,,,,,,,0, +20521,95.0,10.0,10.0,10.0,10.0,10.0,9.0,17,0.51 +5644,,,,,,,,1,0.03 +32470,,,,,,,,0, +31701,96.0,10.0,10.0,10.0,10.0,10.0,9.0,56,1.67 +47724,,,,,,,,0, +8781,95.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.74 +33834,,,,,,,,0, +2584,99.0,10.0,10.0,10.0,10.0,10.0,10.0,72,2.43 +66425,82.0,8.0,8.0,8.0,9.0,9.0,8.0,53,1.58 +56836,99.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.58 +56252,96.0,10.0,10.0,9.0,10.0,9.0,9.0,46,1.38 +40442,81.0,8.0,8.0,8.0,8.0,9.0,8.0,54,1.64 +24132,92.0,9.0,8.0,10.0,10.0,10.0,9.0,47,1.43 +51388,78.0,8.0,10.0,9.0,9.0,9.0,8.0,12,0.42 +59830,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +13926,94.0,9.0,10.0,10.0,10.0,10.0,9.0,63,2.03 +72034,98.0,10.0,10.0,10.0,10.0,10.0,10.0,25,0.77 +28272,98.0,10.0,10.0,10.0,10.0,10.0,10.0,38,1.14 +72985,94.0,9.0,9.0,10.0,10.0,10.0,10.0,18,0.61 +17983,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.09 +58769,,,,,,,,0, +40843,,,,,,,,0, +74134,97.0,10.0,10.0,10.0,10.0,10.0,10.0,44,1.3 +48199,,,,,,,,0, +52507,93.0,10.0,10.0,10.0,10.0,9.0,9.0,22,0.7 +36929,93.0,10.0,10.0,10.0,10.0,10.0,9.0,102,3.08 +3758,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.12 +49513,,,,,,,,1,0.03 +66795,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.15 +47524,97.0,10.0,10.0,10.0,10.0,9.0,10.0,42,1.27 +43077,,,,,,,,0, +57877,,,,,,,,0, +67039,92.0,9.0,8.0,10.0,10.0,10.0,9.0,215,6.32 +14447,80.0,9.0,7.0,9.0,9.0,9.0,8.0,4,0.12 +15934,94.0,10.0,9.0,10.0,10.0,9.0,10.0,44,1.31 +24683,87.0,9.0,9.0,9.0,9.0,9.0,8.0,3,0.1 +25235,97.0,10.0,10.0,10.0,10.0,10.0,10.0,23,0.7 +62905,97.0,10.0,10.0,10.0,10.0,9.0,10.0,41,1.24 +10448,,,,,,,,1,0.03 +14321,84.0,9.0,8.0,9.0,9.0,9.0,9.0,126,3.7 +14612,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +24955,100.0,10.0,10.0,10.0,10.0,9.0,9.0,7,0.26 +1382,,,,,,,,0, +38535,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +36716,90.0,8.0,9.0,10.0,10.0,10.0,9.0,3,0.09 +56044,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.1 +75134,81.0,9.0,8.0,9.0,9.0,8.0,8.0,38,1.17 +60518,,,,,,,,1,0.03 +43872,95.0,10.0,10.0,10.0,10.0,9.0,10.0,62,1.88 +3582,98.0,10.0,10.0,10.0,10.0,10.0,10.0,63,2.36 +27098,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.09 +56394,85.0,9.0,9.0,9.0,9.0,10.0,9.0,11,0.33 +35569,,,,,,,,0, +44133,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +50521,94.0,9.0,10.0,10.0,10.0,9.0,9.0,14,0.66 +8521,,,,,,,,0, +44408,88.0,9.0,9.0,10.0,9.0,8.0,8.0,6,0.18 +16111,,,,,,,,0, +39818,99.0,10.0,10.0,10.0,10.0,10.0,10.0,73,3.58 +65158,96.0,10.0,10.0,10.0,10.0,10.0,10.0,17,1.44 +7043,95.0,10.0,10.0,10.0,10.0,10.0,9.0,35,1.05 +22269,,,,,,,,0, +75856,,,,,,,,0, +17090,87.0,9.0,9.0,9.0,9.0,8.0,9.0,64,1.93 +3569,80.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.03 +6526,,,,,,,,0, +8284,67.0,6.0,7.0,10.0,10.0,10.0,7.0,10,0.32 +13790,,,,,,,,0, +3690,80.0,9.0,7.0,9.0,9.0,10.0,8.0,152,4.51 +63447,89.0,9.0,9.0,10.0,10.0,10.0,9.0,128,4.04 +52961,100.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.19 +4127,86.0,9.0,9.0,9.0,9.0,8.0,9.0,123,3.65 +21800,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.14 +4338,80.0,10.0,8.0,10.0,10.0,6.0,8.0,2,0.06 +5226,93.0,10.0,10.0,9.0,9.0,10.0,9.0,59,1.78 +58785,,,,,,,,0, +29339,86.0,9.0,8.0,10.0,9.0,10.0,9.0,195,5.84 +26055,,,,,,,,0, +21117,,,,,,,,0, +14363,96.0,10.0,9.0,10.0,10.0,10.0,9.0,15,0.5 +76227,97.0,10.0,10.0,10.0,10.0,9.0,9.0,21,0.64 +58169,,,,,,,,0, +44171,,,,,,,,0, +51799,94.0,9.0,10.0,10.0,9.0,10.0,10.0,68,2.08 +15397,,,,,,,,0, +26546,,,,,,,,0, +34799,95.0,10.0,9.0,10.0,10.0,9.0,10.0,4,0.12 +36637,93.0,9.0,9.0,10.0,10.0,10.0,9.0,83,2.48 +6612,99.0,10.0,9.0,10.0,10.0,10.0,10.0,15,0.62 +63444,97.0,10.0,10.0,10.0,10.0,10.0,10.0,125,3.83 +24182,95.0,10.0,9.0,10.0,10.0,9.0,9.0,14,0.44 +64376,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.06 +36685,,,,,,,,0, +40047,98.0,10.0,10.0,10.0,10.0,10.0,10.0,32,1.0 +49979,91.0,9.0,9.0,10.0,10.0,9.0,9.0,11,0.39 +10921,86.0,9.0,9.0,9.0,9.0,8.0,9.0,38,1.15 +43987,97.0,10.0,10.0,10.0,10.0,10.0,9.0,59,1.78 +45002,95.0,10.0,10.0,10.0,10.0,10.0,9.0,35,1.16 +63124,84.0,9.0,8.0,10.0,10.0,9.0,9.0,5,0.15 +20712,90.0,8.0,9.0,9.0,8.0,9.0,9.0,10,0.31 +45762,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.18 +1162,,,,,,,,0, +71880,,,,,,,,0, +2322,,,,,,,,0, +11838,,,,,,,,0, +28602,98.0,10.0,10.0,10.0,10.0,10.0,10.0,77,2.31 +35818,85.0,9.0,8.0,9.0,9.0,10.0,9.0,227,6.7 +10691,,,,,,,,0, +367,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +5747,,,,,,,,0, +31265,94.0,10.0,10.0,10.0,10.0,9.0,9.0,127,3.75 +55024,96.0,10.0,10.0,10.0,10.0,10.0,10.0,21,0.67 +57649,,,,,,,,0, +16250,83.0,9.0,9.0,9.0,9.0,9.0,9.0,6,0.31 +39951,100.0,10.0,10.0,10.0,10.0,,10.0,1,0.03 +17835,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.03 +37381,82.0,9.0,8.0,9.0,9.0,10.0,9.0,93,2.76 +75065,87.0,9.0,9.0,10.0,9.0,9.0,9.0,3,0.09 +6255,91.0,9.0,9.0,10.0,10.0,9.0,9.0,38,1.23 +75887,100.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.49 +14623,97.0,10.0,10.0,10.0,10.0,10.0,10.0,24,0.8 +15729,85.0,9.0,9.0,9.0,8.0,10.0,8.0,121,3.59 +61622,,,,,,,,0, +30440,98.0,10.0,10.0,10.0,10.0,10.0,9.0,28,0.9 +67954,78.0,9.0,8.0,10.0,9.0,10.0,8.0,13,0.39 +32118,83.0,9.0,7.0,9.0,9.0,9.0,9.0,6,0.38 +25121,80.0,6.0,10.0,10.0,10.0,10.0,8.0,1,0.03 +43237,83.0,9.0,8.0,9.0,9.0,10.0,9.0,65,1.94 +10439,,,,,,,,0, +75250,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.12 +19070,95.0,10.0,9.0,10.0,10.0,10.0,9.0,8,0.32 +4647,,,,,,,,0, +56222,94.0,10.0,10.0,9.0,10.0,10.0,9.0,90,2.69 +52735,73.0,8.0,8.0,9.0,9.0,9.0,8.0,174,5.2 +26957,94.0,10.0,10.0,10.0,10.0,10.0,9.0,10,0.3 +5741,99.0,10.0,10.0,10.0,10.0,9.0,10.0,25,0.74 +16987,93.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.92 +75933,,,,,,,,0, +32304,98.0,10.0,10.0,10.0,10.0,9.0,10.0,9,0.3 +45394,100.0,10.0,9.0,10.0,9.0,10.0,9.0,3,0.22 +5965,100.0,10.0,9.0,10.0,10.0,9.0,9.0,10,0.43 +10263,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +65236,94.0,10.0,9.0,10.0,10.0,10.0,9.0,7,0.21 +23528,92.0,10.0,10.0,10.0,9.0,10.0,9.0,12,0.9 +24862,,,,,,,,1,0.03 +4978,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.18 +31596,,,,,,,,0, +67135,98.0,10.0,10.0,10.0,10.0,10.0,10.0,36,2.25 +68069,93.0,10.0,9.0,10.0,10.0,9.0,9.0,166,5.06 +67237,,,,,,,,1,0.03 +14217,,,,,,,,0, +36504,,,,,,,,0, +36323,97.0,9.0,9.0,10.0,10.0,9.0,9.0,7,0.21 +40570,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.12 +34813,,,,,,,,0, +64152,100.0,8.0,8.0,10.0,10.0,10.0,10.0,2,0.06 +65740,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.04 +31415,,,,,,,,0, +1729,,,,,,,,1,0.04 +5002,85.0,8.0,9.0,8.0,9.0,9.0,8.0,25,0.77 +33779,100.0,9.0,10.0,10.0,10.0,10.0,9.0,4,0.14 +23352,100.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.13 +44600,96.0,10.0,10.0,9.0,10.0,10.0,10.0,16,0.93 +74907,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +5375,85.0,9.0,8.0,9.0,8.0,9.0,9.0,14,0.42 +37105,,,,,,,,0, +3278,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +45892,91.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.29 +15217,99.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.5 +67819,97.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.4 +20945,97.0,10.0,10.0,10.0,10.0,10.0,10.0,49,1.56 +25083,95.0,10.0,10.0,10.0,10.0,9.0,10.0,159,4.7 +15634,94.0,10.0,10.0,10.0,10.0,10.0,9.0,35,1.3 +29166,,,,,,,,3,0.11 +27671,97.0,10.0,10.0,10.0,10.0,9.0,10.0,52,2.09 +20716,,,,,,,,0, +57391,,,,,,,,0, +67225,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +64070,,,,,,,,0, +11589,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.03 +49347,90.0,10.0,9.0,9.0,9.0,9.0,9.0,21,0.66 +25630,99.0,10.0,10.0,10.0,10.0,10.0,10.0,57,1.81 +10455,,,,,,,,0, +24294,,,,,,,,0, +67660,96.0,10.0,10.0,10.0,10.0,10.0,9.0,57,1.74 +1724,,,,,,,,0, +21196,98.0,10.0,10.0,10.0,10.0,10.0,10.0,64,1.92 +47406,95.0,10.0,10.0,9.0,9.0,9.0,9.0,8,0.24 +32914,100.0,,,,,,,2,0.06 +55952,94.0,10.0,9.0,10.0,10.0,10.0,10.0,36,2.69 +34713,84.0,9.0,9.0,9.0,9.0,9.0,9.0,77,2.32 +21490,87.0,10.0,7.0,10.0,10.0,8.0,9.0,3,0.09 +41591,95.0,10.0,9.0,10.0,10.0,9.0,9.0,11,0.34 +72626,,,,,,,,0, +6592,83.0,9.0,9.0,10.0,10.0,8.0,9.0,8,0.27 +56552,96.0,10.0,9.0,10.0,10.0,10.0,9.0,15,0.46 +15726,90.0,9.0,8.0,9.0,10.0,9.0,9.0,3,0.09 +35029,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.11 +29783,98.0,10.0,9.0,10.0,10.0,10.0,10.0,9,0.29 +63263,92.0,9.0,9.0,10.0,10.0,10.0,10.0,28,1.35 +46261,89.0,10.0,10.0,10.0,10.0,10.0,9.0,58,2.19 +42695,,,,,,,,0, +63784,93.0,10.0,9.0,9.0,9.0,10.0,9.0,5,0.15 +5863,80.0,8.0,6.0,10.0,6.0,10.0,8.0,2,0.07 +66175,96.0,10.0,10.0,10.0,10.0,9.0,9.0,14,0.59 +63395,92.0,10.0,10.0,9.0,9.0,10.0,9.0,50,1.49 +53991,93.0,10.0,10.0,9.0,10.0,9.0,9.0,14,0.42 +42549,,,,,,,,0, +43595,91.0,9.0,10.0,10.0,10.0,9.0,9.0,18,0.54 +37226,70.0,9.0,8.0,9.0,10.0,8.0,7.0,2,0.06 +42005,,,,,,,,0, +39420,,,,,,,,0, +74827,,,,,,,,0, +48374,94.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.54 +8203,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.36 +44480,,,,,,,,0, +45034,92.0,9.0,9.0,10.0,10.0,10.0,9.0,46,1.36 +52657,60.0,7.0,6.0,7.0,7.0,9.0,7.0,3,0.09 +6181,90.0,9.0,10.0,10.0,10.0,8.0,10.0,4,0.13 +4025,95.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.12 +23980,,,,,,,,0, +4389,97.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.24 +5190,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.21 +15214,,,,,,,,0, +7876,92.0,10.0,9.0,10.0,10.0,10.0,9.0,24,0.76 +8897,,,,,,,,0, +54852,,,,,,,,0, +46662,88.0,9.0,9.0,8.0,10.0,10.0,10.0,5,0.58 +28731,88.0,9.0,8.0,10.0,10.0,10.0,9.0,80,2.4 +5417,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.27 +32834,96.0,9.0,10.0,10.0,10.0,10.0,10.0,38,1.15 +40076,94.0,10.0,9.0,9.0,10.0,10.0,9.0,22,0.69 +29990,,,,,,,,0, +63355,98.0,10.0,10.0,10.0,10.0,10.0,10.0,79,2.4 +17493,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.11 +21061,98.0,10.0,10.0,10.0,10.0,10.0,10.0,22,0.66 +19113,,,,,,,,0, +31241,,,,,,,,0, +47876,90.0,10.0,9.0,9.0,10.0,9.0,9.0,2,0.06 +76577,90.0,10.0,9.0,10.0,10.0,10.0,10.0,8,0.24 +47668,,,,,,,,0, +29714,89.0,9.0,9.0,9.0,9.0,10.0,9.0,57,1.72 +50507,,,,,,,,0, +20510,100.0,10.0,10.0,10.0,10.0,9.0,9.0,8,0.42 +27747,90.0,9.0,10.0,9.0,9.0,10.0,9.0,66,1.99 +39699,88.0,9.0,8.0,9.0,9.0,10.0,9.0,31,0.98 +14751,94.0,10.0,10.0,10.0,9.0,9.0,9.0,7,0.21 +12344,100.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +37621,96.0,10.0,10.0,10.0,10.0,9.0,9.0,18,0.56 +12611,88.0,9.0,9.0,10.0,10.0,10.0,9.0,5,0.16 +7836,93.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.49 +23244,97.0,10.0,10.0,10.0,10.0,10.0,9.0,39,1.2 +20836,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.12 +11824,95.0,10.0,10.0,10.0,10.0,9.0,9.0,22,0.69 +63321,96.0,9.0,8.0,9.0,9.0,9.0,9.0,5,0.18 +56251,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +22302,,,,,,,,1,0.08 +846,,,,,,,,0, +67947,,,,,,,,0, +58827,93.0,9.0,9.0,9.0,10.0,9.0,10.0,16,0.48 +75085,97.0,10.0,10.0,10.0,10.0,10.0,9.0,30,0.92 +25710,80.0,6.0,6.0,6.0,8.0,8.0,6.0,1,0.38 +3684,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.67 +63776,,,,,,,,0, +2833,94.0,10.0,9.0,10.0,10.0,9.0,10.0,24,1.23 +50152,85.0,9.0,9.0,9.0,9.0,8.0,9.0,38,1.15 +364,,,,,,,,0, +51109,,,,,,,,0, +50833,,,,,,,,0, +67635,,,,,,,,0, +5027,93.0,9.0,9.0,10.0,10.0,10.0,10.0,10,0.35 +10758,100.0,10.0,10.0,10.0,10.0,9.0,10.0,48,1.42 +51976,,,,,,,,2,0.06 +2790,80.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.03 +49865,91.0,10.0,9.0,10.0,10.0,8.0,8.0,11,0.33 +5541,96.0,10.0,9.0,10.0,10.0,10.0,9.0,27,0.95 +12199,100.0,10.0,10.0,10.0,10.0,10.0,9.0,7,0.23 +1381,,,,,,,,0, +69570,98.0,10.0,9.0,10.0,10.0,10.0,10.0,13,0.39 +28521,93.0,10.0,9.0,10.0,10.0,9.0,9.0,33,1.03 +35866,98.0,10.0,9.0,10.0,10.0,10.0,10.0,13,0.39 +31350,90.0,10.0,7.0,10.0,9.0,10.0,9.0,4,0.14 +39824,,,,,,,,0, +12322,94.0,10.0,10.0,10.0,10.0,10.0,9.0,37,1.12 +16275,97.0,10.0,10.0,10.0,10.0,10.0,10.0,37,1.1 +32547,,,,,,,,0, +37557,100.0,10.0,10.0,10.0,10.0,9.0,10.0,20,0.6 +57384,97.0,10.0,10.0,10.0,10.0,10.0,10.0,41,2.35 +55618,96.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.5 +48380,78.0,8.0,8.0,9.0,9.0,10.0,8.0,146,4.44 +464,95.0,10.0,9.0,9.0,10.0,10.0,10.0,5,0.15 +57970,97.0,10.0,9.0,10.0,10.0,10.0,10.0,7,0.21 +67543,93.0,9.0,9.0,10.0,10.0,10.0,9.0,12,0.37 +72885,,,,,,,,0, +11001,,,,,,,,0, +49607,96.0,10.0,10.0,10.0,10.0,10.0,10.0,127,3.95 +4893,91.0,10.0,9.0,10.0,10.0,10.0,9.0,9,0.29 +12462,,,,,,,,0, +76933,98.0,10.0,10.0,10.0,10.0,9.0,10.0,18,0.59 +10935,96.0,10.0,10.0,9.0,10.0,10.0,10.0,20,0.61 +14767,83.0,8.0,8.0,9.0,9.0,8.0,8.0,17,1.01 +21759,98.0,10.0,9.0,10.0,10.0,9.0,10.0,44,1.35 +35639,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +23822,98.0,10.0,10.0,10.0,10.0,10.0,10.0,25,1.47 +24384,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,8.92 +17244,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.28 +64603,,,,,,,,0, +9102,90.0,9.0,9.0,10.0,10.0,10.0,9.0,43,1.34 +60809,97.0,10.0,10.0,10.0,10.0,10.0,9.0,16,0.52 +12298,,,,,,,,1,0.08 +45883,,,,,,,,0, +56105,96.0,10.0,10.0,10.0,10.0,9.0,9.0,23,0.91 +43055,,,,,,,,0, +3239,92.0,10.0,9.0,10.0,10.0,9.0,9.0,20,0.6 +27330,72.0,8.0,7.0,8.0,9.0,8.0,9.0,7,0.21 +962,93.0,9.0,9.0,10.0,10.0,9.0,9.0,86,2.66 +32825,80.0,10.0,10.0,10.0,10.0,8.0,6.0,1,0.03 +73049,100.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.49 +53388,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +18114,,,,,,,,0, +41493,90.0,9.0,8.0,10.0,10.0,9.0,9.0,44,1.6 +51215,99.0,10.0,10.0,10.0,10.0,10.0,10.0,29,1.96 +34476,98.0,10.0,10.0,10.0,10.0,10.0,10.0,24,0.73 +9056,80.0,8.0,10.0,10.0,10.0,10.0,8.0,1,0.03 +50853,80.0,8.0,8.0,9.0,9.0,10.0,8.0,111,3.31 +40459,98.0,10.0,10.0,10.0,10.0,10.0,10.0,25,0.89 +297,79.0,9.0,9.0,9.0,9.0,9.0,8.0,57,1.72 +59120,98.0,10.0,10.0,10.0,10.0,10.0,9.0,23,1.08 +1079,97.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.64 +40346,,,,,,,,0, +23803,96.0,10.0,10.0,9.0,9.0,9.0,10.0,14,0.42 +32037,80.0,8.0,8.0,8.0,6.0,6.0,8.0,1,0.03 +17400,76.0,8.0,8.0,9.0,9.0,10.0,8.0,167,4.97 +76116,60.0,10.0,6.0,10.0,10.0,10.0,8.0,1,0.03 +69076,97.0,10.0,10.0,10.0,10.0,10.0,10.0,32,0.98 +16166,,,,,,,,0, +32703,80.0,10.0,10.0,9.0,10.0,10.0,10.0,5,0.15 +7353,85.0,9.0,8.0,9.0,10.0,10.0,9.0,39,1.16 +58456,100.0,10.0,10.0,10.0,10.0,10.0,10.0,108,3.21 +39524,90.0,9.0,9.0,10.0,10.0,8.0,10.0,2,0.06 +34990,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.12 +24233,85.0,9.0,7.0,10.0,9.0,8.0,8.0,8,0.29 +7657,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +560,,,,,,,,0, +3058,89.0,10.0,9.0,10.0,10.0,8.0,9.0,9,0.31 +39965,98.0,10.0,10.0,10.0,10.0,10.0,10.0,46,1.43 +61589,94.0,10.0,10.0,10.0,10.0,10.0,10.0,29,1.0 +45444,,,,,,,,0, +6945,100.0,10.0,10.0,10.0,10.0,9.0,10.0,11,0.33 +58961,92.0,9.0,9.0,10.0,10.0,9.0,9.0,6,0.18 +30343,89.0,10.0,9.0,10.0,10.0,9.0,9.0,7,0.21 +62818,99.0,10.0,10.0,10.0,10.0,9.0,10.0,14,0.44 +44143,,,,,,,,0, +67825,100.0,10.0,10.0,10.0,10.0,10.0,10.0,32,0.96 +77005,,,,,,,,0, +45218,,,,,,,,0, +51195,,,,,,,,0, +31353,95.0,10.0,9.0,10.0,10.0,9.0,10.0,69,2.06 +67260,100.0,10.0,9.0,10.0,10.0,9.0,10.0,2,0.07 +66663,95.0,10.0,10.0,10.0,10.0,9.0,10.0,39,1.18 +33472,,,,,,,,0, +66473,98.0,10.0,10.0,10.0,10.0,9.0,10.0,69,2.1 +2229,,,,,,,,0, +35894,93.0,10.0,10.0,10.0,10.0,8.0,9.0,3,0.1 +31926,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +73114,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.15 +11673,,,,,,,,0, +5728,,,,,,,,0, +38543,90.0,9.0,9.0,10.0,10.0,9.0,9.0,130,3.94 +36789,91.0,10.0,10.0,10.0,10.0,9.0,9.0,7,0.26 +6693,97.0,10.0,10.0,10.0,10.0,10.0,10.0,16,2.65 +51667,60.0,6.0,2.0,6.0,8.0,8.0,6.0,1,0.03 +62805,97.0,10.0,10.0,10.0,10.0,9.0,10.0,29,0.99 +28747,95.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.19 +47149,60.0,8.0,6.0,10.0,10.0,10.0,7.0,3,0.09 +47068,87.0,10.0,9.0,9.0,10.0,9.0,9.0,4,0.14 +42270,92.0,10.0,9.0,10.0,10.0,10.0,9.0,20,0.6 +15445,96.0,10.0,10.0,9.0,9.0,10.0,9.0,35,1.11 +25750,98.0,10.0,10.0,10.0,10.0,10.0,10.0,45,1.39 +6411,99.0,10.0,10.0,10.0,10.0,9.0,10.0,17,0.53 +39452,,,,,,,,0, +19271,94.0,10.0,9.0,10.0,10.0,10.0,10.0,28,0.89 +65626,,,,,,,,0, +72294,,,,,,,,0, +58723,,,,,,,,1,0.03 +9714,80.0,9.0,7.0,9.0,9.0,8.0,7.0,2,0.06 +35674,87.0,9.0,9.0,9.0,10.0,10.0,10.0,3,0.09 +19968,71.0,8.0,8.0,8.0,9.0,9.0,8.0,13,0.4 +72301,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.2 +40575,,,,,,,,0, +24072,90.0,9.0,7.0,10.0,10.0,8.0,9.0,2,0.06 +35319,,,,,,,,0, +67160,80.0,10.0,8.0,10.0,10.0,10.0,8.0,2,0.48 +14324,,,,,,,,0, +18493,,,,,,,,0, +33815,,,,,,,,0, +56173,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +18042,,,,,,,,0, +48456,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +34691,70.0,7.0,8.0,6.0,6.0,10.0,8.0,2,0.07 +73048,80.0,8.0,8.0,9.0,9.0,8.0,8.0,36,1.08 +36766,94.0,10.0,9.0,10.0,10.0,10.0,9.0,7,0.21 +1802,92.0,9.0,10.0,9.0,9.0,10.0,9.0,18,0.56 +19089,80.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.04 +23271,,,,,,,,0, +26184,74.0,8.0,8.0,9.0,9.0,9.0,8.0,221,6.61 +7926,,,,,,,,0, +25514,,,,,,,,0, +24508,94.0,10.0,9.0,10.0,10.0,9.0,9.0,10,0.34 +4302,85.0,10.0,9.0,9.0,10.0,7.0,9.0,4,0.14 +16971,,,,,,,,0, +60664,99.0,10.0,10.0,10.0,10.0,10.0,10.0,114,3.43 +72484,96.0,10.0,10.0,9.0,10.0,10.0,10.0,17,0.53 +73178,90.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.06 +12765,94.0,9.0,9.0,10.0,10.0,10.0,9.0,21,0.64 +24822,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.3 +65581,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +66838,96.0,10.0,10.0,10.0,10.0,9.0,10.0,11,0.37 +75730,,,,,,,,0, +53639,86.0,10.0,8.0,10.0,10.0,9.0,9.0,7,0.22 +28279,91.0,9.0,9.0,10.0,10.0,10.0,9.0,22,0.68 +71076,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.1 +29761,80.0,8.0,8.0,8.0,10.0,8.0,10.0,1,0.05 +5690,,,,,,,,0, +8346,,,,,,,,0, +16130,67.0,7.0,7.0,8.0,8.0,8.0,7.0,9,0.29 +17861,,,,,,,,0, +28098,89.0,9.0,9.0,10.0,9.0,10.0,9.0,57,1.75 +31819,80.0,6.0,6.0,8.0,8.0,6.0,6.0,1,0.03 +21500,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.31 +33274,,,,,,,,0, +44154,80.0,8.0,10.0,10.0,10.0,6.0,6.0,1,0.03 +19797,,,,,,,,0, +31092,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +49112,92.0,9.0,9.0,10.0,10.0,10.0,9.0,29,0.89 +11396,99.0,10.0,10.0,10.0,10.0,9.0,10.0,41,1.34 +31271,80.0,9.0,7.0,9.0,9.0,8.0,9.0,3,0.09 +55788,95.0,9.0,9.0,9.0,9.0,10.0,9.0,12,0.43 +34760,,,,,,,,0, +54533,93.0,9.0,9.0,10.0,10.0,9.0,9.0,3,0.11 +47644,,,,,,,,1,0.03 +43026,,,,,,,,0, +24715,,,,,,,,0, +917,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +25899,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +1685,80.0,9.0,8.0,9.0,9.0,10.0,8.0,196,5.87 +34391,,,,,,,,0, +74622,,,,,,,,0, +29474,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.06 +68245,100.0,10.0,7.0,9.0,10.0,9.0,10.0,4,0.12 +54935,97.0,10.0,9.0,10.0,10.0,9.0,9.0,7,1.03 +74358,80.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +73953,100.0,10.0,10.0,10.0,10.0,9.0,9.0,2,0.06 +30973,90.0,10.0,8.0,8.0,10.0,10.0,10.0,2,0.08 +39223,91.0,9.0,9.0,9.0,10.0,10.0,9.0,95,2.84 +29961,,,,,,,,0, +30972,94.0,10.0,10.0,10.0,10.0,9.0,9.0,31,0.94 +75913,95.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.12 +48582,98.0,10.0,10.0,10.0,10.0,10.0,10.0,26,1.78 +19149,,,,,,,,0, +75354,94.0,10.0,9.0,10.0,10.0,10.0,9.0,87,2.73 +48588,91.0,10.0,8.0,10.0,10.0,10.0,9.0,7,0.22 +74661,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.11 +55530,84.0,9.0,8.0,9.0,9.0,9.0,8.0,29,0.88 +24332,,,,,,,,0, +21331,,,,,,,,0, +57450,99.0,10.0,10.0,10.0,10.0,10.0,10.0,20,0.66 +9141,,,,,,,,0, +68596,87.0,10.0,9.0,9.0,9.0,10.0,9.0,6,0.2 +45132,95.0,9.0,9.0,9.0,10.0,10.0,8.0,4,0.14 +28153,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +9334,,,,,,,,0, +10591,98.0,10.0,10.0,10.0,10.0,10.0,10.0,24,0.72 +42542,95.0,10.0,10.0,10.0,10.0,9.0,9.0,48,1.48 +45120,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +23483,,,,,,,,0, +72971,100.0,10.0,10.0,10.0,8.0,10.0,10.0,1,1.0 +64093,89.0,9.0,9.0,9.0,9.0,10.0,8.0,18,0.54 +17693,93.0,9.0,10.0,10.0,10.0,9.0,10.0,7,0.33 +50864,,,,,,,,0, +54345,,,,,,,,0, +44754,70.0,8.0,9.0,10.0,9.0,9.0,8.0,7,0.32 +2746,,,,,,,,0, +6115,100.0,10.0,9.0,8.0,9.0,10.0,9.0,2,0.14 +20176,,,,,,,,0, +12844,,,,,,,,0, +46987,,,,,,,,0, +56958,86.0,9.0,9.0,9.0,9.0,10.0,9.0,91,2.82 +19076,95.0,10.0,10.0,9.0,10.0,9.0,9.0,22,0.66 +73250,,,,,,,,0, +44469,98.0,10.0,9.0,10.0,10.0,10.0,10.0,11,0.33 +2895,,,,,,,,0, +10648,93.0,10.0,10.0,10.0,10.0,9.0,9.0,27,0.85 +56315,98.0,10.0,10.0,10.0,10.0,10.0,10.0,54,1.68 +61946,93.0,10.0,9.0,10.0,10.0,9.0,9.0,6,0.18 +58586,98.0,10.0,10.0,10.0,10.0,10.0,10.0,195,5.84 +29305,95.0,10.0,9.0,10.0,10.0,9.0,10.0,66,2.08 +24418,,,,,,,,0, +48077,93.0,8.0,9.0,8.0,8.0,8.0,8.0,5,0.24 +41703,99.0,10.0,10.0,10.0,10.0,10.0,10.0,38,1.3 +13378,87.0,9.0,9.0,9.0,9.0,10.0,9.0,101,3.01 +45725,,,,,,,,0, +41368,92.0,10.0,10.0,10.0,9.0,9.0,9.0,10,0.34 +71270,88.0,9.0,9.0,10.0,10.0,9.0,9.0,117,3.61 +61884,95.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.37 +39339,95.0,10.0,9.0,10.0,10.0,9.0,9.0,17,0.52 +47709,,,,,,,,0, +69440,90.0,10.0,9.0,10.0,10.0,9.0,9.0,128,3.82 +52798,92.0,9.0,8.0,9.0,10.0,9.0,9.0,12,0.6 +75909,,,,,,,,0, +55787,88.0,9.0,9.0,9.0,10.0,9.0,9.0,21,0.72 +46527,60.0,10.0,8.0,10.0,8.0,10.0,10.0,1,0.03 +32608,85.0,9.0,8.0,9.0,9.0,9.0,8.0,30,0.9 +41938,87.0,9.0,9.0,9.0,9.0,9.0,9.0,72,2.15 +17444,87.0,9.0,10.0,9.0,9.0,9.0,9.0,62,1.94 +47579,91.0,9.0,9.0,10.0,10.0,10.0,9.0,51,2.89 +42051,,,,,,,,0, +26374,,,,,,,,0, +65495,88.0,9.0,9.0,9.0,9.0,10.0,9.0,49,1.49 +11997,80.0,10.0,8.0,10.0,10.0,10.0,8.0,6,2.37 +73332,97.0,10.0,10.0,10.0,10.0,9.0,9.0,15,0.47 +60681,,,,,,,,0, +69097,,,,,,,,0, +42756,,,,,,,,0, +38747,96.0,10.0,10.0,10.0,9.0,10.0,10.0,18,0.63 +75113,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.38 +1778,80.0,9.0,9.0,8.0,9.0,8.0,8.0,2,0.06 +67302,,,,,,,,0, +61272,,,,,,,,0, +3666,,,,,,,,0, +204,,,,,,,,0, +18780,99.0,10.0,10.0,10.0,10.0,9.0,10.0,97,2.93 +30413,86.0,8.0,9.0,10.0,9.0,8.0,8.0,7,0.23 +57272,,,,,,,,0, +34470,95.0,10.0,9.0,10.0,10.0,10.0,10.0,12,0.41 +62261,,,,,,,,0, +61549,96.0,10.0,10.0,10.0,10.0,10.0,10.0,58,2.11 +14731,,,,,,,,0, +6652,,,,,,,,0, +49879,91.0,10.0,9.0,9.0,10.0,9.0,9.0,68,2.06 +34239,87.0,9.0,7.0,10.0,10.0,9.0,8.0,3,0.09 +62193,96.0,9.0,8.0,10.0,10.0,10.0,10.0,10,0.31 +44186,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.21 +3194,87.0,9.0,7.0,9.0,10.0,9.0,9.0,4,0.12 +26855,100.0,9.0,10.0,10.0,9.0,10.0,10.0,5,0.15 +6956,,,,,,,,0, +62969,,,,,,,,1,0.03 +75014,95.0,10.0,10.0,10.0,10.0,10.0,9.0,91,2.78 +29703,96.0,10.0,9.0,10.0,9.0,10.0,9.0,16,0.52 +42753,80.0,9.0,8.0,8.0,9.0,9.0,9.0,18,0.54 +60146,93.0,9.0,9.0,10.0,10.0,9.0,9.0,96,2.95 +39928,,,,,,,,0, +13590,92.0,9.0,9.0,10.0,10.0,10.0,10.0,6,0.19 +26484,90.0,10.0,9.0,9.0,10.0,10.0,9.0,57,1.71 +53596,95.0,10.0,9.0,9.0,10.0,9.0,10.0,16,0.54 +61504,67.0,7.0,7.0,8.0,8.0,8.0,6.0,19,0.59 +47911,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.18 +22429,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.25 +6783,87.0,8.0,8.0,10.0,10.0,10.0,9.0,9,0.27 +29220,95.0,9.0,10.0,10.0,10.0,9.0,9.0,11,0.36 +60480,100.0,9.0,10.0,10.0,10.0,10.0,9.0,2,0.07 +46317,93.0,9.0,9.0,10.0,10.0,10.0,10.0,14,0.45 +59711,97.0,10.0,10.0,10.0,10.0,9.0,9.0,21,0.63 +838,,,,,,,,0, +45840,100.0,10.0,10.0,9.0,10.0,10.0,10.0,4,0.13 +63396,,,,,,,,0, +35768,97.0,10.0,10.0,10.0,10.0,10.0,10.0,39,1.17 +15256,98.0,10.0,10.0,10.0,10.0,10.0,10.0,26,4.13 +75525,99.0,10.0,10.0,10.0,10.0,10.0,10.0,19,1.46 +20766,94.0,10.0,10.0,10.0,10.0,9.0,9.0,66,1.99 +18666,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +11647,100.0,9.0,9.0,9.0,10.0,9.0,10.0,4,0.12 +27074,87.0,9.0,9.0,9.0,10.0,9.0,9.0,67,2.08 +28132,,,,,,,,0, +37940,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.22 +19091,96.0,10.0,9.0,10.0,10.0,10.0,10.0,121,4.02 +11237,97.0,10.0,10.0,10.0,10.0,9.0,10.0,79,2.45 +49945,87.0,10.0,10.0,10.0,9.0,7.0,9.0,3,0.09 +14999,87.0,9.0,9.0,10.0,10.0,10.0,9.0,20,0.6 +75155,93.0,10.0,9.0,9.0,10.0,9.0,9.0,39,6.43 +36174,,,,,,,,0, +47403,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +34316,99.0,10.0,10.0,10.0,10.0,10.0,10.0,33,0.99 +51246,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.03 +57555,85.0,9.0,9.0,10.0,10.0,10.0,9.0,4,0.14 +20499,96.0,9.0,10.0,10.0,10.0,10.0,10.0,16,0.51 +1419,88.0,9.0,8.0,10.0,10.0,9.0,10.0,6,0.2 +7771,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +2824,95.0,10.0,9.0,10.0,10.0,9.0,10.0,63,1.93 +73122,90.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.23 +33107,94.0,10.0,10.0,10.0,10.0,10.0,9.0,14,0.45 +50149,79.0,9.0,8.0,9.0,9.0,9.0,8.0,100,3.1 +29550,78.0,9.0,7.0,9.0,9.0,10.0,8.0,184,5.54 +21336,77.0,8.0,8.0,9.0,9.0,10.0,8.0,195,5.84 +35172,80.0,8.0,8.0,9.0,9.0,10.0,8.0,199,5.96 +35781,,,,,,,,0, +5462,,,,,,,,0, +158,90.0,9.0,8.0,8.0,9.0,9.0,8.0,2,0.06 +35899,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +36336,94.0,10.0,10.0,10.0,10.0,10.0,9.0,7,0.22 +57390,99.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.94 +41554,,,,,,,,0, +54346,98.0,10.0,10.0,9.0,10.0,10.0,10.0,71,2.2 +38435,93.0,9.0,9.0,9.0,9.0,8.0,9.0,12,0.38 +36343,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.08 +70780,97.0,10.0,10.0,10.0,10.0,10.0,10.0,43,1.36 +22707,91.0,10.0,10.0,10.0,10.0,10.0,9.0,81,2.57 +18254,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +37182,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +34128,99.0,10.0,10.0,10.0,10.0,10.0,10.0,33,1.19 +19450,97.0,10.0,10.0,10.0,10.0,10.0,10.0,32,1.01 +26018,92.0,10.0,9.0,10.0,10.0,9.0,9.0,30,0.95 +17855,98.0,10.0,10.0,10.0,10.0,9.0,10.0,51,1.58 +3785,97.0,10.0,10.0,10.0,10.0,10.0,10.0,66,2.0 +63720,84.0,9.0,8.0,10.0,9.0,10.0,9.0,174,5.36 +39193,97.0,10.0,10.0,10.0,10.0,10.0,10.0,45,1.54 +47919,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +62526,78.0,9.0,8.0,9.0,9.0,10.0,8.0,183,5.52 +11105,84.0,9.0,9.0,9.0,9.0,10.0,9.0,151,4.51 +46992,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.17 +26309,,,,,,,,0, +63750,98.0,9.0,9.0,9.0,10.0,10.0,9.0,12,0.73 +58358,,,,,,,,0, +8957,98.0,10.0,10.0,10.0,10.0,10.0,10.0,53,1.71 +10696,94.0,10.0,9.0,10.0,10.0,10.0,9.0,64,1.95 +72920,78.0,8.0,8.0,9.0,9.0,9.0,9.0,13,0.42 +5788,80.0,9.0,7.0,10.0,10.0,9.0,8.0,4,0.12 +22207,94.0,10.0,9.0,10.0,10.0,10.0,10.0,28,0.91 +37211,100.0,10.0,10.0,9.0,10.0,10.0,10.0,6,0.19 +70524,,,,,,,,1,0.03 +53148,87.0,9.0,8.0,10.0,10.0,9.0,9.0,20,0.61 +29527,86.0,10.0,9.0,9.0,9.0,10.0,10.0,20,0.6 +11342,47.0,7.0,2.0,8.0,7.0,10.0,6.0,3,0.09 +31865,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +59602,97.0,10.0,10.0,10.0,10.0,10.0,10.0,23,0.8 +19060,80.0,10.0,6.0,8.0,10.0,8.0,8.0,2,0.06 +59413,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.28 +6000,98.0,10.0,10.0,10.0,10.0,9.0,10.0,9,0.28 +22824,86.0,9.0,10.0,9.0,9.0,10.0,8.0,26,0.83 +60297,98.0,10.0,10.0,10.0,10.0,10.0,10.0,27,0.93 +13892,97.0,10.0,10.0,10.0,10.0,9.0,10.0,182,5.52 +34104,87.0,9.0,9.0,9.0,9.0,10.0,9.0,55,1.72 +9811,98.0,10.0,9.0,10.0,10.0,9.0,9.0,11,0.54 +30217,95.0,10.0,9.0,10.0,10.0,10.0,10.0,17,0.55 +18704,,,,,,,,0, +8376,,,,,,,,0, +49893,,,,,,,,0, +57116,99.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.51 +24837,88.0,9.0,9.0,10.0,10.0,9.0,9.0,65,1.97 +47819,88.0,9.0,9.0,9.0,9.0,10.0,9.0,26,0.81 +46958,88.0,9.0,9.0,10.0,10.0,10.0,9.0,56,1.72 +31046,90.0,9.0,10.0,10.0,9.0,9.0,9.0,54,1.64 +46798,90.0,10.0,9.0,10.0,8.0,8.0,9.0,2,0.07 +29605,,,,,,,,0, +34890,98.0,10.0,10.0,10.0,10.0,10.0,9.0,17,0.56 +46486,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.06 +66656,89.0,10.0,9.0,9.0,10.0,9.0,9.0,7,0.22 +30746,80.0,10.0,10.0,10.0,9.0,9.0,8.0,2,0.06 +46519,87.0,10.0,7.0,9.0,10.0,9.0,9.0,3,0.09 +52055,,,,,,,,0, +25809,91.0,9.0,9.0,8.0,10.0,10.0,9.0,8,0.34 +37667,84.0,9.0,8.0,9.0,10.0,10.0,8.0,40,1.24 +67628,97.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.61 +1851,90.0,9.0,9.0,10.0,10.0,9.0,9.0,204,6.26 +44895,95.0,10.0,9.0,10.0,10.0,10.0,9.0,20,0.61 +45671,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.27 +42909,89.0,9.0,8.0,10.0,10.0,10.0,9.0,59,1.87 +40608,89.0,9.0,8.0,10.0,10.0,9.0,9.0,16,0.56 +4757,80.0,9.0,8.0,10.0,10.0,10.0,8.0,92,2.76 +6810,94.0,10.0,10.0,10.0,9.0,9.0,10.0,7,0.25 +47513,88.0,9.0,9.0,10.0,10.0,9.0,9.0,282,8.65 +26218,98.0,10.0,10.0,10.0,10.0,10.0,9.0,49,1.49 +28697,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +30602,,,,,,,,0, +55092,90.0,10.0,9.0,9.0,10.0,8.0,7.0,2,0.06 +22891,97.0,10.0,10.0,10.0,10.0,10.0,10.0,42,1.28 +72440,97.0,10.0,10.0,10.0,10.0,9.0,10.0,21,0.77 +60213,89.0,9.0,9.0,10.0,10.0,9.0,9.0,207,6.38 +33923,,,,,,,,0, +28115,81.0,9.0,8.0,9.0,9.0,8.0,8.0,30,0.91 +12134,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.13 +40537,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.25 +72423,90.0,10.0,9.0,9.0,9.0,8.0,9.0,4,0.12 +73180,,,,,,,,0, +72620,,,,,,,,0, +19514,80.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.03 +5409,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,2.03 +48720,100.0,10.0,10.0,10.0,10.0,6.0,9.0,2,0.07 +58729,96.0,10.0,9.0,10.0,10.0,9.0,9.0,16,0.5 +41622,90.0,9.0,8.0,10.0,10.0,10.0,10.0,2,0.07 +69349,,,,,,,,0, +40648,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +75394,,,,,,,,0, +23385,72.0,8.0,7.0,9.0,9.0,9.0,8.0,145,4.35 +35046,73.0,8.0,8.0,9.0,9.0,9.0,8.0,216,6.59 +37215,73.0,8.0,8.0,9.0,9.0,10.0,7.0,153,4.64 +3822,76.0,8.0,8.0,9.0,9.0,10.0,8.0,207,6.21 +55098,76.0,8.0,8.0,9.0,9.0,10.0,8.0,173,5.2 +37204,89.0,9.0,9.0,10.0,10.0,8.0,9.0,36,1.19 +54655,,,,,,,,0, +56379,,,,,,,,0, +54965,,,,,,,,0, +25407,100.0,10.0,10.0,10.0,10.0,10.0,10.0,41,1.4 +76780,70.0,7.0,8.0,8.0,7.0,7.0,7.0,2,0.07 +28482,97.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.24 +11922,84.0,8.0,8.0,9.0,9.0,8.0,9.0,35,1.09 +34833,,,,,,,,0, +10902,83.0,9.0,9.0,9.0,8.0,8.0,9.0,28,0.87 +41992,90.0,9.0,9.0,9.0,9.0,8.0,9.0,4,0.15 +14584,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.28 +38673,,,,,,,,0, +55656,,,,,,,,0, +18456,87.0,9.0,9.0,9.0,9.0,9.0,9.0,154,4.64 +54239,,,,,,,,0, +76716,,,,,,,,0, +42056,80.0,9.0,9.0,10.0,10.0,9.0,9.0,2,0.06 +22067,100.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.24 +26223,,,,,,,,0, +2020,,,,,,,,0, +50711,88.0,10.0,8.0,10.0,10.0,8.0,9.0,29,0.96 +36581,90.0,10.0,8.0,10.0,10.0,10.0,10.0,4,0.15 +19593,,,,,,,,0, +24258,,,,,,,,0, +6752,,,,,,,,0, +48934,,,,,,,,0, +73741,99.0,10.0,10.0,10.0,10.0,10.0,10.0,74,2.25 +73446,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.1 +49142,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.1 +22300,100.0,10.0,10.0,10.0,10.0,10.0,10.0,21,0.64 +14498,,,,,,,,0, +7116,76.0,8.0,8.0,8.0,9.0,9.0,8.0,14,0.43 +50628,100.0,10.0,10.0,10.0,10.0,10.0,10.0,30,1.0 +11485,93.0,10.0,9.0,9.0,10.0,9.0,9.0,11,0.37 +23637,93.0,9.0,8.0,10.0,10.0,9.0,9.0,3,0.1 +16000,100.0,10.0,10.0,10.0,10.0,7.0,10.0,2,0.24 +9651,74.0,8.0,8.0,9.0,9.0,9.0,8.0,225,6.77 +52047,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +20903,93.0,10.0,9.0,10.0,10.0,10.0,9.0,49,1.63 +21541,83.0,9.0,9.0,8.0,8.0,9.0,9.0,48,1.5 +57901,,,,,,,,0, +73102,89.0,9.0,9.0,9.0,9.0,10.0,9.0,22,0.67 +61389,,,,,,,,0, +41773,97.0,10.0,10.0,10.0,10.0,10.0,10.0,26,0.81 +61462,80.0,10.0,6.0,8.0,6.0,10.0,6.0,1,0.03 +4948,90.0,10.0,8.0,10.0,10.0,9.0,9.0,9,0.27 +10148,72.0,8.0,7.0,9.0,9.0,10.0,8.0,205,6.19 +37510,77.0,8.0,7.0,9.0,9.0,10.0,8.0,171,5.28 +39586,100.0,10.0,9.0,10.0,10.0,9.0,9.0,3,0.17 +24067,95.0,10.0,10.0,10.0,10.0,10.0,10.0,30,0.9 +63092,,,,,,,,1,0.03 +69824,,,,,,,,0, +3926,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +25476,,,,,,,,0, +22596,96.0,9.0,9.0,10.0,10.0,10.0,10.0,32,1.0 +44246,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +16547,100.0,10.0,9.0,10.0,10.0,10.0,9.0,3,0.1 +7146,80.0,9.0,6.0,9.0,9.0,10.0,9.0,5,0.16 +51995,86.0,9.0,9.0,10.0,10.0,10.0,9.0,52,1.59 +38689,94.0,10.0,9.0,10.0,10.0,9.0,10.0,33,1.28 +64988,100.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.55 +25485,98.0,10.0,10.0,10.0,10.0,10.0,10.0,26,0.82 +36940,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.12 +76122,,,,,,,,1,0.08 +18701,78.0,9.0,8.0,9.0,9.0,10.0,8.0,159,4.81 +29272,96.0,9.0,10.0,10.0,10.0,9.0,9.0,15,0.46 +36422,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +19094,99.0,10.0,10.0,10.0,10.0,10.0,10.0,58,1.75 +34022,100.0,10.0,9.0,10.0,10.0,10.0,10.0,7,0.22 +43462,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.1 +10116,100.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.28 +59082,95.0,10.0,9.0,10.0,10.0,10.0,10.0,67,2.02 +69464,91.0,10.0,9.0,10.0,9.0,10.0,9.0,15,0.85 +63713,100.0,10.0,10.0,10.0,10.0,6.0,8.0,1,0.04 +74849,92.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.23 +12660,99.0,10.0,10.0,10.0,10.0,9.0,10.0,17,0.78 +12869,,,,,,,,0, +21095,,,,,,,,0, +61261,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.66 +33747,79.0,8.0,8.0,9.0,8.0,8.0,8.0,56,1.84 +31692,81.0,9.0,8.0,9.0,9.0,9.0,8.0,20,0.6 +34102,95.0,10.0,9.0,9.0,10.0,9.0,9.0,44,1.41 +56809,97.0,10.0,10.0,10.0,10.0,10.0,9.0,71,2.2 +57518,99.0,10.0,10.0,10.0,10.0,10.0,10.0,29,0.91 +7179,98.0,10.0,10.0,10.0,10.0,9.0,10.0,47,2.88 +21620,100.0,10.0,9.0,10.0,9.0,10.0,10.0,3,0.11 +43053,100.0,9.0,10.0,10.0,10.0,10.0,10.0,2,0.06 +54370,96.0,10.0,10.0,10.0,10.0,9.0,9.0,10,0.34 +72207,,,,,,,,0, +57629,100.0,10.0,10.0,6.0,10.0,10.0,10.0,1,0.09 +98,,,,,,,,0, +55351,97.0,10.0,10.0,10.0,10.0,10.0,10.0,129,3.94 +406,92.0,9.0,9.0,9.0,9.0,10.0,9.0,87,2.63 +55890,,,,,,,,0, +662,97.0,10.0,9.0,10.0,10.0,10.0,10.0,30,0.95 +39116,,,,,,,,0, +43985,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.09 +60716,77.0,8.0,8.0,9.0,8.0,8.0,8.0,23,0.71 +42492,82.0,9.0,8.0,9.0,9.0,9.0,9.0,43,1.33 +22378,83.0,9.0,8.0,9.0,9.0,9.0,9.0,55,1.72 +65982,85.0,9.0,9.0,9.0,9.0,8.0,9.0,62,1.89 +10297,94.0,10.0,10.0,9.0,9.0,9.0,9.0,19,0.6 +24142,86.0,9.0,9.0,9.0,8.0,9.0,9.0,64,1.99 +52337,82.0,9.0,9.0,9.0,9.0,9.0,9.0,22,0.68 +22584,81.0,8.0,8.0,9.0,8.0,9.0,8.0,20,0.63 +14097,86.0,9.0,9.0,10.0,10.0,9.0,9.0,7,0.22 +2958,89.0,9.0,9.0,10.0,10.0,10.0,10.0,7,0.24 +49602,92.0,9.0,8.0,9.0,9.0,9.0,9.0,12,0.43 +36084,79.0,8.0,8.0,8.0,9.0,8.0,8.0,32,0.98 +23445,97.0,10.0,10.0,10.0,10.0,9.0,10.0,18,0.56 +14540,87.0,9.0,9.0,9.0,9.0,9.0,9.0,45,1.38 +61169,83.0,9.0,8.0,9.0,9.0,8.0,9.0,35,1.06 +74666,86.0,9.0,9.0,9.0,9.0,9.0,9.0,29,0.88 +53873,86.0,9.0,8.0,8.0,8.0,9.0,9.0,37,1.13 +31765,,,,,,,,0, +36784,,,,,,,,0, +3886,20.0,2.0,,,2.0,,,2,0.07 +66939,,,,,,,,1,0.03 +3304,97.0,10.0,10.0,10.0,10.0,10.0,10.0,28,0.96 +40293,76.0,8.0,8.0,8.0,8.0,8.0,8.0,5,0.16 +42675,98.0,10.0,10.0,10.0,10.0,9.0,10.0,9,0.28 +76760,98.0,10.0,10.0,10.0,10.0,9.0,10.0,23,0.7 +62456,,,,,,,,1,0.03 +64061,87.0,10.0,9.0,10.0,10.0,9.0,8.0,3,0.1 +1718,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.1 +13223,98.0,10.0,9.0,10.0,10.0,9.0,10.0,50,1.56 +54866,,,,,,,,0, +35104,72.0,7.0,6.0,9.0,8.0,7.0,7.0,32,0.98 +25068,95.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.12 +24390,94.0,9.0,10.0,10.0,10.0,10.0,9.0,15,0.45 +7946,,,,,,,,0, +16596,,,,,,,,0, +67309,93.0,9.0,10.0,10.0,10.0,10.0,9.0,60,1.94 +7063,95.0,9.0,10.0,10.0,9.0,10.0,9.0,16,0.61 +67649,100.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.55 +64885,,,,,,,,0, +71129,95.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.48 +53298,,,,,,,,0, +64737,93.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.21 +54683,91.0,10.0,10.0,10.0,10.0,9.0,9.0,39,1.43 +8720,96.0,10.0,10.0,10.0,10.0,9.0,10.0,24,0.79 +19972,95.0,10.0,9.0,10.0,10.0,10.0,9.0,40,1.27 +26181,,,,,,,,0, +33881,100.0,10.0,9.0,10.0,10.0,9.0,10.0,8,0.25 +9198,,,,,,,,0, +5854,97.0,10.0,9.0,10.0,10.0,10.0,10.0,59,1.78 +15790,,,,,,,,0, +48246,96.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.25 +61072,99.0,10.0,10.0,10.0,10.0,10.0,10.0,49,1.51 +66774,100.0,10.0,10.0,10.0,10.0,10.0,8.0,2,0.07 +70345,99.0,10.0,10.0,10.0,10.0,10.0,10.0,51,1.61 +27433,,,,,,,,0, +60094,,,,,,,,0, +69493,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.04 +45289,97.0,10.0,10.0,10.0,10.0,10.0,9.0,37,1.38 +31268,,,,,,,,0, +24366,100.0,10.0,10.0,10.0,10.0,10.0,10.0,23,0.79 +25189,,,,,,,,0, +23393,,,,,,,,0, +70449,92.0,9.0,10.0,10.0,10.0,10.0,9.0,138,4.24 +5770,,,,,,,,0, +62709,91.0,9.0,9.0,9.0,9.0,10.0,9.0,54,1.67 +73188,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +35295,,,,,,,,0, +2653,96.0,10.0,10.0,10.0,10.0,9.0,9.0,11,0.34 +29342,100.0,10.0,10.0,9.0,10.0,8.0,9.0,3,0.09 +3404,100.0,9.0,9.0,10.0,10.0,9.0,10.0,4,0.14 +67267,80.0,9.0,9.0,9.0,9.0,10.0,8.0,3,0.1 +32771,94.0,10.0,9.0,9.0,10.0,9.0,9.0,53,1.59 +47597,,,,,,,,0, +21959,,,,,,,,1,0.04 +34396,,,,,,,,0, +4683,98.0,10.0,10.0,10.0,10.0,10.0,10.0,164,5.13 +45788,,,,,,,,0, +76591,,,,,,,,0, +10875,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.44 +53685,99.0,10.0,10.0,10.0,10.0,9.0,9.0,15,0.48 +5469,99.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.51 +17604,88.0,9.0,9.0,9.0,9.0,10.0,9.0,36,1.12 +72114,90.0,9.0,9.0,10.0,10.0,10.0,9.0,40,1.3 +30944,95.0,9.0,10.0,9.0,10.0,9.0,9.0,39,4.76 +41966,93.0,10.0,10.0,9.0,10.0,10.0,9.0,8,0.25 +43324,,,,,,,,0, +70575,73.0,8.0,8.0,9.0,9.0,9.0,8.0,176,5.46 +10321,95.0,10.0,10.0,10.0,10.0,10.0,9.0,21,0.74 +63780,95.0,9.0,10.0,10.0,10.0,10.0,9.0,16,0.54 +49454,95.0,10.0,9.0,10.0,10.0,10.0,9.0,89,2.68 +26419,95.0,10.0,10.0,10.0,10.0,10.0,9.0,82,2.6 +30309,,,,,,,,0, +41045,81.0,9.0,7.0,10.0,9.0,9.0,9.0,112,3.4 +12305,,,,,,,,1,0.03 +16297,,,,,,,,0, +69407,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.06 +21123,96.0,10.0,9.0,10.0,10.0,10.0,9.0,49,1.5 +6360,93.0,10.0,9.0,10.0,10.0,8.0,10.0,30,1.08 +60278,,,,,,,,0, +36042,97.0,10.0,10.0,10.0,10.0,10.0,10.0,25,0.84 +44688,80.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.03 +67579,99.0,10.0,10.0,10.0,10.0,9.0,10.0,100,3.16 +48717,,,,,,,,0, +64962,97.0,10.0,10.0,10.0,10.0,10.0,10.0,52,1.72 +35493,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.28 +66195,,,,,,,,0, +23800,,,,,,,,0, +54511,89.0,9.0,10.0,9.0,9.0,10.0,9.0,82,2.5 +65131,93.0,9.0,9.0,9.0,9.0,10.0,10.0,3,0.09 +71003,70.0,8.0,7.0,9.0,8.0,9.0,9.0,3,0.11 +49147,84.0,9.0,8.0,10.0,9.0,10.0,8.0,6,0.2 +31288,,,,,,,,0, +60713,75.0,10.0,10.0,8.0,8.0,8.0,8.0,5,0.17 +6534,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.06 +12019,93.0,9.0,8.0,10.0,10.0,10.0,9.0,6,0.19 +38325,,,,,,,,0, +10642,,,,,,,,0, +58074,99.0,10.0,10.0,10.0,10.0,10.0,10.0,27,0.89 +33265,,,,,,,,0, +76392,98.0,10.0,10.0,10.0,10.0,10.0,10.0,109,3.46 +13385,93.0,10.0,9.0,10.0,10.0,8.0,10.0,15,0.48 +25529,,,,,,,,0, +54213,97.0,9.0,10.0,10.0,10.0,10.0,9.0,6,0.2 +59781,,,,,,,,0, +19931,92.0,10.0,10.0,10.0,10.0,9.0,9.0,14,0.5 +52277,,,,,,,,0, +60268,95.0,10.0,9.0,9.0,10.0,9.0,10.0,13,0.54 +21229,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.24 +30543,,,,,,,,0, +42741,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.26 +49591,86.0,9.0,9.0,10.0,10.0,10.0,9.0,31,0.98 +73311,,,,,,,,0, +50557,75.0,8.0,8.0,9.0,9.0,9.0,8.0,186,5.65 +13246,,,,,,,,0, +4871,79.0,9.0,9.0,9.0,9.0,10.0,8.0,206,6.27 +55101,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.2 +36014,93.0,10.0,8.0,10.0,10.0,10.0,9.0,4,0.13 +16520,87.0,9.0,7.0,9.0,10.0,9.0,9.0,6,0.24 +58773,,,,,,,,0, +56463,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.11 +143,,,,,,,,0, +51399,91.0,10.0,9.0,10.0,10.0,10.0,10.0,7,0.23 +73641,98.0,10.0,10.0,10.0,10.0,9.0,10.0,114,3.44 +52861,99.0,10.0,10.0,10.0,10.0,10.0,10.0,91,2.77 +40893,,,,,,,,0, +54862,,,,,,,,0, +24278,60.0,8.0,6.0,8.0,8.0,6.0,6.0,2,0.06 +32933,92.0,9.0,9.0,10.0,10.0,8.0,9.0,60,1.87 +50243,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.17 +14877,60.0,,,,,,,2,0.06 +11960,,,,,,,,0, +71247,,,,,,,,0, +26331,100.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.14 +76408,,,,,,,,0, +59279,,,,,,,,0, +22510,,,,,,,,0, +9633,99.0,10.0,10.0,10.0,10.0,10.0,10.0,33,1.14 +57248,,,,,,,,0, +27938,90.0,9.0,9.0,9.0,10.0,9.0,9.0,37,1.17 +52577,,,,,,,,0, +12506,,,,,,,,0, +48316,60.0,8.0,6.0,10.0,6.0,10.0,6.0,1,0.03 +65953,79.0,8.0,8.0,10.0,9.0,10.0,8.0,217,6.7 +38272,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.05 +51335,81.0,8.0,7.0,9.0,9.0,9.0,9.0,28,0.85 +49823,96.0,10.0,10.0,10.0,10.0,9.0,9.0,14,0.89 +45913,,,,,,,,0, +11140,97.0,10.0,10.0,9.0,9.0,10.0,9.0,6,0.32 +13319,100.0,10.0,10.0,10.0,10.0,10.0,10.0,50,1.57 +44821,80.0,7.0,7.0,10.0,10.0,10.0,8.0,6,0.18 +16948,97.0,10.0,9.0,10.0,10.0,9.0,10.0,18,0.57 +21066,97.0,10.0,10.0,10.0,10.0,10.0,10.0,46,1.45 +41257,86.0,9.0,9.0,10.0,9.0,9.0,9.0,8,0.38 +43758,100.0,8.0,10.0,6.0,10.0,10.0,10.0,1,0.03 +36299,,,,,,,,0, +16443,95.0,10.0,9.0,10.0,10.0,10.0,9.0,19,0.61 +74539,94.0,10.0,9.0,10.0,10.0,10.0,10.0,50,1.52 +76082,,,,,,,,0, +1291,97.0,10.0,10.0,10.0,10.0,10.0,10.0,30,0.99 +45532,,,,,,,,0, +44957,90.0,9.0,9.0,10.0,9.0,9.0,8.0,8,0.27 +61051,97.0,10.0,10.0,10.0,10.0,10.0,10.0,57,1.76 +4300,98.0,10.0,10.0,10.0,10.0,10.0,9.0,27,1.3 +17478,94.0,10.0,10.0,10.0,9.0,10.0,10.0,7,0.26 +7249,95.0,10.0,9.0,10.0,10.0,10.0,10.0,95,2.97 +20500,,,,,,,,0, +2248,,,,,,,,1,0.03 +67333,99.0,10.0,10.0,10.0,10.0,10.0,10.0,144,4.48 +38092,70.0,8.0,6.0,10.0,10.0,9.0,9.0,2,0.08 +16875,,,,,,,,0, +33408,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.1 +55745,95.0,10.0,10.0,10.0,10.0,9.0,9.0,29,0.91 +34582,,,,,,,,0, +41410,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.11 +20130,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.41 +71084,82.0,8.0,8.0,9.0,9.0,9.0,8.0,38,1.15 +64037,100.0,10.0,10.0,10.0,10.0,8.0,8.0,2,0.07 +44439,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.17 +16579,94.0,9.0,10.0,10.0,10.0,10.0,9.0,7,0.23 +31383,92.0,9.0,9.0,10.0,10.0,10.0,9.0,241,7.37 +64720,90.0,9.0,9.0,10.0,10.0,10.0,9.0,170,5.23 +67298,97.0,10.0,10.0,10.0,10.0,9.0,10.0,15,0.46 +28911,85.0,8.0,9.0,8.0,9.0,10.0,8.0,4,0.14 +35209,80.0,8.0,10.0,10.0,10.0,8.0,8.0,1,0.03 +39851,,,,,,,,0, +47051,78.0,10.0,9.0,10.0,10.0,10.0,9.0,8,0.26 +53147,100.0,8.0,8.0,10.0,10.0,10.0,10.0,1,0.03 +31573,82.0,9.0,9.0,9.0,8.0,9.0,9.0,12,0.37 +59060,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.17 +19545,,,,,,,,0, +27152,97.0,10.0,10.0,10.0,10.0,9.0,9.0,89,2.72 +33551,,,,,,,,0, +14480,,,,,,,,0, +36329,93.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.1 +76087,100.0,10.0,10.0,10.0,10.0,9.0,10.0,49,1.53 +42026,100.0,10.0,10.0,10.0,10.0,9.0,9.0,2,0.06 +73604,80.0,10.0,6.0,10.0,10.0,10.0,10.0,1,0.03 +25383,,,,,,,,0, +17425,98.0,10.0,10.0,10.0,10.0,10.0,9.0,11,0.34 +60302,80.0,10.0,8.0,4.0,9.0,10.0,8.0,2,0.38 +52083,96.0,10.0,9.0,10.0,10.0,10.0,10.0,15,0.46 +47148,93.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.09 +32680,,,,,,,,0, +28180,100.0,10.0,9.0,10.0,10.0,9.0,10.0,2,0.06 +59603,,,,,,,,0, +12036,77.0,8.0,7.0,9.0,9.0,9.0,8.0,6,0.19 +5888,,,,,,,,0, +64942,93.0,10.0,10.0,10.0,10.0,10.0,10.0,55,1.7 +73093,100.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +57918,98.0,10.0,9.0,10.0,10.0,10.0,10.0,16,0.5 +17276,98.0,10.0,10.0,10.0,10.0,10.0,10.0,46,1.41 +54277,,,,,,,,0, +13121,98.0,10.0,10.0,10.0,10.0,10.0,9.0,17,0.53 +65348,,,,,,,,0, +76051,,,,,,,,0, +53517,99.0,10.0,10.0,10.0,10.0,10.0,10.0,30,0.92 +34379,,,,,,,,0, +31635,,,,,,,,0, +7286,,,,,,,,0, +10376,87.0,10.0,10.0,10.0,9.0,9.0,9.0,6,0.19 +46215,92.0,10.0,10.0,10.0,10.0,10.0,9.0,38,1.38 +51573,90.0,9.0,9.0,10.0,10.0,10.0,9.0,52,1.6 +8767,87.0,9.0,8.0,9.0,9.0,8.0,8.0,10,0.53 +52095,94.0,10.0,10.0,10.0,10.0,10.0,9.0,65,2.04 +50716,93.0,9.0,9.0,10.0,10.0,10.0,10.0,10,0.37 +44130,92.0,10.0,9.0,10.0,10.0,10.0,10.0,13,0.41 +1849,98.0,10.0,10.0,10.0,10.0,10.0,10.0,50,1.63 +20839,,,,,,,,0, +3999,,,,,,,,0, +14841,,,,,,,,0, +18907,96.0,10.0,10.0,10.0,10.0,9.0,10.0,59,1.79 +64269,92.0,10.0,10.0,9.0,9.0,10.0,9.0,117,3.56 +41145,,,,,,,,0, +7651,100.0,10.0,9.0,10.0,10.0,9.0,9.0,6,0.19 +32312,99.0,10.0,10.0,10.0,10.0,10.0,10.0,56,1.73 +14914,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.18 +55666,,,,,,,,0, +53304,,,,,,,,0, +73313,,,,,,,,0, +27018,93.0,10.0,10.0,10.0,10.0,9.0,10.0,100,3.05 +70259,93.0,9.0,10.0,10.0,10.0,10.0,9.0,30,1.02 +14804,84.0,9.0,8.0,9.0,9.0,9.0,9.0,134,4.16 +51007,97.0,10.0,10.0,10.0,10.0,9.0,10.0,87,2.74 +18673,84.0,9.0,8.0,9.0,10.0,8.0,8.0,10,0.31 +53095,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.27 +61063,93.0,10.0,9.0,10.0,10.0,9.0,9.0,11,0.34 +46188,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +8186,,,,,,,,0, +20387,,,,,,,,1,0.04 +9635,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +15415,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.28 +45863,,,,,,,,0, +12896,85.0,8.0,9.0,9.0,9.0,9.0,9.0,12,0.38 +76489,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.18 +20060,88.0,9.0,9.0,9.0,9.0,10.0,9.0,97,2.95 +67004,87.0,9.0,9.0,9.0,9.0,10.0,9.0,61,1.98 +41161,98.0,10.0,10.0,10.0,10.0,8.0,9.0,10,0.32 +56165,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +62799,99.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.53 +4364,98.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.29 +51193,79.0,8.0,8.0,9.0,9.0,8.0,8.0,18,0.56 +36423,,,,,,,,0, +26692,60.0,8.0,10.0,,8.0,10.0,8.0,1,0.04 +33902,79.0,8.0,7.0,9.0,9.0,8.0,8.0,16,0.5 +59725,,,,,,,,1,0.77 +4868,,,,,,,,0, +58040,78.0,8.0,7.0,10.0,10.0,8.0,8.0,20,0.63 +33959,93.0,9.0,10.0,10.0,9.0,9.0,9.0,16,0.51 +62919,97.0,10.0,10.0,10.0,10.0,10.0,10.0,19,0.63 +37139,,,,,,,,0, +51225,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.16 +901,95.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.31 +29410,80.0,10.0,7.0,9.0,9.0,9.0,8.0,8,0.25 +65747,93.0,10.0,9.0,10.0,10.0,10.0,10.0,7,0.21 +38472,97.0,10.0,10.0,10.0,10.0,10.0,10.0,29,0.96 +59022,100.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.57 +27232,96.0,10.0,10.0,10.0,10.0,10.0,10.0,38,1.21 +85,98.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.57 +48612,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.41 +51311,97.0,10.0,9.0,10.0,10.0,10.0,9.0,24,0.76 +54083,,,,,,,,0, +9053,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.14 +64103,,,,,,,,0, +36753,98.0,10.0,10.0,9.0,10.0,10.0,10.0,9,0.28 +40002,100.0,10.0,10.0,10.0,10.0,10.0,10.0,25,1.39 +68256,,,,,,,,0, +64144,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.1 +52512,100.0,10.0,9.0,10.0,10.0,9.0,10.0,5,0.16 +37688,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.29 +21286,,,,,,,,0, +22345,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.18 +5643,,,,,,,,1,0.03 +30840,95.0,10.0,9.0,10.0,10.0,9.0,10.0,8,0.29 +67155,80.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.05 +40113,98.0,10.0,10.0,10.0,10.0,10.0,10.0,52,1.62 +31077,99.0,10.0,10.0,10.0,10.0,10.0,10.0,23,0.71 +60878,87.0,8.0,9.0,10.0,10.0,9.0,9.0,11,0.61 +4977,,,,,,,,0, +13792,84.0,9.0,9.0,9.0,9.0,9.0,8.0,25,0.78 +9509,80.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.03 +72147,,,,,,,,0, +72507,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.04 +28154,,,,,,,,0, +34915,84.0,9.0,9.0,9.0,9.0,10.0,9.0,39,1.24 +62701,95.0,10.0,10.0,10.0,10.0,9.0,9.0,57,1.78 +14306,,,,,,,,0, +5177,85.0,10.0,8.0,10.0,9.0,10.0,9.0,9,0.28 +53262,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +59659,,,,,,,,0, +30128,,,,,,,,0, +73047,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.55 +13326,71.0,8.0,8.0,8.0,7.0,9.0,8.0,10,0.33 +69309,,,,,,,,0, +7614,,,,,,,,0, +26235,,,,,,,,0, +7124,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +52304,96.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.44 +32670,,,,,,,,0, +40300,95.0,10.0,10.0,10.0,10.0,9.0,9.0,17,0.52 +16672,98.0,10.0,10.0,10.0,10.0,10.0,10.0,175,5.83 +20870,91.0,9.0,9.0,10.0,10.0,8.0,9.0,50,1.52 +39068,97.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.44 +6694,90.0,9.0,9.0,10.0,10.0,7.0,9.0,4,0.14 +49146,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.09 +17436,80.0,10.0,10.0,10.0,8.0,10.0,10.0,1,0.04 +74762,88.0,8.0,8.0,9.0,10.0,10.0,9.0,16,0.59 +26585,,,,,,,,0, +50348,93.0,10.0,8.0,10.0,9.0,10.0,9.0,4,0.13 +4452,,,,,,,,0, +30761,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.11 +14113,,,,,,,,0, +44036,98.0,10.0,10.0,10.0,10.0,10.0,10.0,26,0.88 +6073,,,,,,,,1,0.03 +11108,,,,,,,,1,0.13 +27083,91.0,9.0,9.0,10.0,9.0,9.0,9.0,19,0.6 +60533,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.42 +8729,,,,,,,,0, +967,98.0,10.0,10.0,10.0,10.0,9.0,10.0,191,5.88 +27474,100.0,10.0,10.0,10.0,9.0,10.0,10.0,4,0.13 +64894,,,,,,,,0, +30570,91.0,9.0,9.0,10.0,9.0,10.0,9.0,64,2.0 +60158,94.0,10.0,10.0,10.0,10.0,10.0,9.0,23,0.73 +1396,97.0,10.0,10.0,10.0,10.0,10.0,10.0,48,1.58 +13940,80.0,9.0,9.0,9.0,10.0,10.0,8.0,2,0.08 +9976,100.0,10.0,8.0,8.0,10.0,8.0,10.0,1,0.03 +69777,,,,,,,,0, +72734,,,,,,,,0, +43084,,,,,,,,0, +72051,100.0,10.0,9.0,10.0,10.0,8.0,10.0,10,0.62 +40544,92.0,9.0,9.0,10.0,10.0,10.0,9.0,88,2.73 +30147,,,,,,,,0, +75594,96.0,10.0,10.0,10.0,10.0,10.0,10.0,57,1.76 +23403,,,,,,,,0, +23435,98.0,10.0,9.0,10.0,10.0,10.0,9.0,8,0.26 +74228,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.19 +15886,80.0,10.0,8.0,10.0,10.0,8.0,8.0,1,0.04 +20764,100.0,9.0,10.0,10.0,10.0,10.0,10.0,2,0.06 +20578,90.0,9.0,9.0,10.0,10.0,9.0,10.0,2,0.06 +39505,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +4118,,,,,,,,0, +73054,87.0,9.0,8.0,10.0,10.0,9.0,9.0,3,0.12 +14034,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,2.56 +10485,93.0,10.0,9.0,10.0,10.0,9.0,9.0,74,2.26 +15183,,,,,,,,0, +10739,94.0,10.0,9.0,9.0,10.0,9.0,10.0,16,0.49 +53080,97.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.43 +20291,98.0,10.0,10.0,10.0,10.0,9.0,10.0,10,0.75 +13503,88.0,8.0,9.0,10.0,9.0,9.0,9.0,5,0.16 +72698,93.0,9.0,9.0,10.0,10.0,10.0,9.0,47,1.46 +47003,77.0,8.0,7.0,9.0,8.0,10.0,7.0,16,0.52 +53774,,,,,,,,0, +10262,93.0,10.0,9.0,10.0,10.0,9.0,9.0,58,1.83 +42903,,,,,,,,0, +71564,86.0,9.0,8.0,10.0,10.0,9.0,9.0,96,2.92 +75613,,,,,,,,0, +56871,87.0,9.0,9.0,9.0,9.0,10.0,9.0,33,1.28 +43122,94.0,10.0,9.0,10.0,10.0,9.0,10.0,125,3.9 +64709,98.0,10.0,10.0,10.0,10.0,10.0,10.0,29,0.99 +7942,80.0,10.0,9.0,8.0,10.0,9.0,8.0,2,0.9 +51163,97.0,10.0,10.0,10.0,10.0,9.0,10.0,21,0.68 +13592,95.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.49 +44260,92.0,10.0,9.0,9.0,10.0,9.0,10.0,5,0.16 +37422,100.0,9.0,10.0,10.0,10.0,10.0,10.0,2,0.06 +9937,80.0,8.0,10.0,10.0,8.0,8.0,8.0,1,0.03 +59660,,,,,,,,0, +26016,92.0,10.0,8.0,10.0,9.0,9.0,9.0,26,0.88 +56410,93.0,9.0,8.0,9.0,9.0,9.0,9.0,3,0.1 +63420,,,,,,,,0, +29010,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.06 +64444,96.0,10.0,10.0,10.0,10.0,9.0,10.0,153,4.67 +9263,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.81 +22418,94.0,9.0,9.0,10.0,10.0,9.0,9.0,36,1.15 +43586,,,,,,,,0, +26371,94.0,10.0,9.0,10.0,10.0,10.0,9.0,17,0.64 +68297,80.0,8.0,10.0,6.0,4.0,10.0,10.0,1,0.04 +56902,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.09 +54302,40.0,6.0,2.0,10.0,10.0,6.0,4.0,1,0.04 +10320,97.0,10.0,10.0,10.0,10.0,9.0,10.0,166,5.1 +34710,97.0,10.0,9.0,10.0,10.0,8.0,10.0,6,0.19 +42025,80.0,9.0,10.0,9.0,8.0,10.0,9.0,5,0.16 +3857,98.0,10.0,10.0,10.0,10.0,10.0,9.0,34,1.06 +23409,,,,,,,,0, +8106,90.0,10.0,10.0,10.0,10.0,10.0,8.0,2,0.07 +23979,,,,,,,,0, +20665,98.0,10.0,10.0,10.0,10.0,10.0,10.0,21,0.69 +24806,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.14 +54582,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.19 +66358,97.0,10.0,10.0,10.0,10.0,10.0,9.0,65,2.02 +53559,93.0,10.0,9.0,10.0,10.0,9.0,9.0,14,0.76 +8747,88.0,9.0,9.0,9.0,10.0,9.0,9.0,14,0.45 +18895,96.0,10.0,10.0,10.0,10.0,9.0,10.0,97,3.06 +22466,100.0,10.0,8.0,10.0,10.0,8.0,8.0,1,0.03 +34289,95.0,10.0,10.0,10.0,10.0,9.0,10.0,118,3.67 +31018,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.07 +9618,,,,,,,,0, +8941,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.07 +38275,80.0,8.0,8.0,9.0,9.0,9.0,8.0,9,0.28 +18976,100.0,10.0,10.0,10.0,6.0,8.0,8.0,1,0.07 +10955,92.0,9.0,9.0,10.0,10.0,9.0,9.0,10,0.31 +75239,78.0,9.0,8.0,9.0,9.0,9.0,8.0,70,2.15 +50422,97.0,9.0,9.0,10.0,9.0,9.0,9.0,7,0.22 +6674,,,,,,,,0, +43074,92.0,9.0,9.0,10.0,10.0,9.0,9.0,100,3.11 +66260,98.0,10.0,10.0,10.0,10.0,10.0,10.0,29,0.9 +4971,97.0,10.0,10.0,10.0,10.0,9.0,10.0,128,4.07 +68986,92.0,9.0,9.0,9.0,9.0,9.0,9.0,23,1.54 +43099,90.0,10.0,10.0,9.0,9.0,9.0,9.0,4,0.14 +48249,93.0,10.0,9.0,9.0,10.0,8.0,10.0,3,1.3 +47018,92.0,10.0,8.0,10.0,10.0,8.0,10.0,5,0.15 +74734,90.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.2 +50486,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +6058,92.0,9.0,10.0,10.0,10.0,10.0,9.0,19,0.64 +6892,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.13 +48027,98.0,10.0,10.0,10.0,10.0,9.0,10.0,22,0.68 +65993,,,,,,,,1,0.03 +1583,90.0,10.0,9.0,7.0,10.0,8.0,10.0,4,0.12 +44287,96.0,10.0,10.0,10.0,10.0,10.0,10.0,113,3.5 +13188,,,,,,,,0, +4173,80.0,8.0,6.0,6.0,8.0,8.0,8.0,1,0.03 +13873,,,,,,,,0, +61334,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.19 +11715,98.0,10.0,10.0,10.0,10.0,9.0,9.0,21,0.66 +71980,80.0,9.0,8.0,10.0,10.0,7.0,9.0,2,0.06 +20405,96.0,10.0,9.0,10.0,10.0,10.0,10.0,10,0.32 +71933,82.0,9.0,8.0,9.0,9.0,9.0,9.0,98,3.0 +12032,,,,,,,,0, +23631,98.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.51 +28343,91.0,9.0,9.0,9.0,9.0,9.0,9.0,20,0.62 +64367,,,,,,,,0, +25125,,,,,,,,0, +67933,20.0,2.0,2.0,6.0,4.0,8.0,2.0,1,0.03 +53821,98.0,10.0,10.0,10.0,10.0,10.0,10.0,44,1.37 +60588,98.0,10.0,10.0,10.0,10.0,9.0,10.0,33,1.01 +56269,93.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.1 +52345,78.0,8.0,8.0,9.0,8.0,8.0,8.0,17,0.56 +66151,,,,,,,,0, +75151,88.0,9.0,8.0,9.0,10.0,9.0,9.0,5,0.17 +32272,92.0,9.0,9.0,10.0,10.0,9.0,9.0,82,2.52 +3050,92.0,9.0,9.0,10.0,10.0,9.0,9.0,95,2.94 +20120,90.0,10.0,9.0,10.0,10.0,9.0,10.0,2,0.07 +71976,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.12 +18636,100.0,10.0,8.0,10.0,10.0,8.0,6.0,2,0.06 +38953,95.0,10.0,10.0,9.0,10.0,9.0,9.0,78,2.84 +61078,97.0,10.0,9.0,10.0,10.0,10.0,9.0,21,0.99 +68049,96.0,10.0,9.0,10.0,10.0,10.0,10.0,168,5.22 +33206,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.28 +8593,99.0,10.0,10.0,10.0,10.0,10.0,10.0,20,1.0 +11630,80.0,8.0,6.0,10.0,10.0,8.0,8.0,1,0.03 +37772,90.0,8.0,10.0,10.0,10.0,10.0,9.0,3,0.09 +71704,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.41 +13428,,,,,,,,0, +45451,,,,,,,,0, +4506,96.0,10.0,10.0,10.0,10.0,9.0,10.0,62,1.99 +382,,,,,,,,0, +19759,66.0,9.0,7.0,8.0,9.0,7.0,7.0,7,0.22 +49111,98.0,10.0,10.0,10.0,10.0,10.0,10.0,35,1.2 +15447,91.0,9.0,9.0,10.0,10.0,10.0,9.0,11,0.34 +5762,97.0,10.0,9.0,10.0,10.0,10.0,9.0,62,1.92 +39259,95.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.13 +53320,98.0,10.0,10.0,10.0,10.0,9.0,10.0,56,1.72 +42933,97.0,10.0,9.0,10.0,10.0,10.0,10.0,15,0.47 +24899,98.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.34 +35535,97.0,10.0,10.0,10.0,10.0,9.0,9.0,6,0.2 +54720,95.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.6 +4151,,,,,,,,1,0.04 +76676,97.0,10.0,10.0,10.0,10.0,10.0,10.0,67,2.09 +61928,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +16106,94.0,10.0,10.0,10.0,10.0,9.0,9.0,64,2.06 +31324,60.0,10.0,10.0,10.0,8.0,7.0,7.0,2,0.07 +23621,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +56039,90.0,9.0,9.0,10.0,10.0,10.0,9.0,132,4.03 +49172,96.0,10.0,10.0,10.0,10.0,9.0,10.0,64,2.02 +56109,85.0,9.0,9.0,10.0,10.0,9.0,9.0,25,0.76 +53090,84.0,9.0,9.0,9.0,9.0,9.0,8.0,33,1.02 +21278,,,,,,,,0, +61957,75.0,10.0,10.0,6.0,7.0,10.0,8.0,4,0.13 +25972,,,,,,,,0, +71045,,,,,,,,1,0.47 +26687,,,,,,,,0, +66214,87.0,8.0,7.0,10.0,10.0,10.0,9.0,3,0.09 +21950,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.1 +62457,99.0,10.0,10.0,10.0,10.0,10.0,10.0,75,2.36 +76185,,,,,,,,0, +30501,,,,,,,,1,0.03 +35629,78.0,9.0,9.0,9.0,9.0,10.0,8.0,9,0.28 +31540,88.0,10.0,9.0,10.0,10.0,9.0,10.0,5,0.17 +39005,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +55245,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +74987,97.0,10.0,10.0,10.0,10.0,10.0,9.0,38,1.18 +8923,,,,,,,,0, +19251,,,,,,,,0, +33158,91.0,9.0,8.0,9.0,9.0,10.0,9.0,12,0.37 +16278,,,,,,,,1,0.25 +3944,97.0,10.0,10.0,10.0,10.0,10.0,10.0,34,1.68 +24050,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.14 +39025,91.0,10.0,8.0,10.0,9.0,9.0,10.0,13,0.42 +60244,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +26652,88.0,9.0,9.0,10.0,10.0,8.0,9.0,5,0.16 +76010,100.0,10.0,10.0,9.0,10.0,10.0,9.0,2,0.06 +72933,,,,,,,,0, +43139,,,,,,,,0, +37029,,,,,,,,0, +11339,90.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.08 +69105,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +68815,95.0,10.0,9.0,10.0,10.0,9.0,10.0,20,0.62 +76599,80.0,9.0,9.0,7.0,10.0,10.0,9.0,7,0.27 +76813,95.0,10.0,9.0,9.0,10.0,9.0,10.0,15,1.84 +66310,94.0,10.0,9.0,10.0,10.0,10.0,9.0,17,0.61 +37576,97.0,10.0,9.0,10.0,10.0,10.0,10.0,37,1.2 +67808,,,,,,,,0, +29663,89.0,9.0,9.0,10.0,10.0,10.0,9.0,28,0.87 +21646,85.0,9.0,8.0,10.0,10.0,10.0,9.0,39,1.2 +63676,,,,,,,,0, +26517,87.0,9.0,9.0,10.0,9.0,10.0,9.0,30,0.93 +71674,,,,,,,,0, +73688,83.0,9.0,8.0,10.0,10.0,10.0,9.0,26,0.83 +25342,87.0,10.0,9.0,9.0,10.0,10.0,9.0,6,0.34 +58003,76.0,8.0,8.0,9.0,9.0,10.0,8.0,9,0.28 +65554,98.0,10.0,10.0,10.0,10.0,10.0,10.0,64,2.0 +31716,90.0,10.0,8.0,10.0,10.0,9.0,10.0,8,0.26 +16360,94.0,10.0,9.0,10.0,10.0,9.0,10.0,81,2.53 +46251,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.09 +9752,94.0,10.0,10.0,10.0,10.0,10.0,9.0,76,2.47 +20361,97.0,10.0,10.0,10.0,10.0,10.0,10.0,102,3.2 +65197,,,,,,,,0, +75296,,,,,,,,0, +61564,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.11 +49662,91.0,10.0,9.0,10.0,10.0,9.0,10.0,17,0.55 +34430,,,,,,,,0, +55514,,,,,,,,0, +28491,96.0,10.0,10.0,10.0,10.0,10.0,10.0,20,0.63 +31792,,,,,,,,0, +63190,96.0,10.0,9.0,10.0,10.0,10.0,10.0,63,2.02 +60155,100.0,10.0,9.0,9.0,10.0,9.0,10.0,9,0.28 +53539,94.0,9.0,9.0,9.0,10.0,10.0,9.0,28,0.89 +17950,96.0,10.0,10.0,10.0,10.0,10.0,10.0,31,0.95 +35447,90.0,9.0,10.0,9.0,10.0,9.0,10.0,4,0.14 +21142,99.0,10.0,10.0,10.0,10.0,10.0,9.0,68,2.1 +13073,,,,,,,,0, +67347,,,,,,,,0, +18617,,,,,,,,0, +26304,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +50603,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.06 +20902,92.0,9.0,9.0,10.0,10.0,10.0,9.0,85,2.7 +40735,90.0,9.0,9.0,10.0,10.0,10.0,9.0,40,1.28 +2271,99.0,10.0,10.0,10.0,10.0,10.0,10.0,57,1.81 +19510,99.0,10.0,10.0,10.0,10.0,10.0,10.0,74,2.37 +72738,90.0,10.0,9.0,9.0,10.0,9.0,9.0,27,0.88 +7188,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.5 +63459,89.0,9.0,9.0,9.0,9.0,9.0,9.0,9,0.28 +46559,90.0,10.0,10.0,10.0,10.0,8.0,9.0,4,0.13 +61274,,,,,,,,0, +32209,,,,,,,,0, +1946,,,,,,,,0, +57968,95.0,10.0,10.0,10.0,10.0,10.0,9.0,87,2.72 +79,90.0,9.0,8.0,9.0,9.0,9.0,9.0,14,0.6 +40765,67.0,7.0,8.0,7.0,7.0,10.0,7.0,17,0.53 +28634,89.0,9.0,8.0,10.0,10.0,9.0,9.0,21,0.69 +13194,,,,,,,,0, +13707,,,,,,,,0, +73193,68.0,8.0,7.0,7.0,7.0,8.0,7.0,8,0.25 +34115,96.0,10.0,10.0,10.0,10.0,9.0,9.0,25,0.83 +53139,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +27974,90.0,10.0,8.0,9.0,10.0,9.0,9.0,12,0.37 +15374,,,,,,,,0, +32103,93.0,10.0,8.0,10.0,10.0,9.0,9.0,77,2.65 +19602,78.0,8.0,8.0,9.0,8.0,9.0,8.0,8,0.25 +24338,88.0,8.0,10.0,10.0,9.0,10.0,9.0,5,0.18 +56586,70.0,9.0,10.0,9.0,10.0,9.0,9.0,2,1.03 +5089,90.0,8.0,9.0,9.0,10.0,9.0,9.0,2,0.07 +12973,,,,,,,,0, +41780,93.0,9.0,9.0,10.0,10.0,9.0,8.0,3,0.1 +12100,91.0,10.0,10.0,10.0,9.0,10.0,9.0,40,1.36 +6444,,,,,,,,0, +44773,,,,,,,,1,0.03 +54071,,,,,,,,0, +50166,,,,,,,,0, +62248,93.0,9.0,7.0,9.0,9.0,9.0,9.0,3,0.1 +38487,97.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.34 +63810,90.0,9.0,8.0,10.0,10.0,10.0,9.0,7,0.22 +18501,100.0,9.0,9.0,10.0,10.0,9.0,9.0,5,0.17 +75362,,,,,,,,0, +67653,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.1 +4035,97.0,10.0,10.0,10.0,10.0,10.0,10.0,32,1.78 +52692,100.0,10.0,10.0,10.0,10.0,10.0,9.0,8,0.27 +64549,84.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.16 +51436,,,,,,,,0, +46676,,,,,,,,0, +42008,,,,,,,,0, +27585,,,,,,,,1,0.03 +18668,99.0,10.0,10.0,10.0,10.0,10.0,10.0,83,2.73 +74266,,,,,,,,0, +42664,,,,,,,,1,0.03 +12468,,,,,,,,0, +3231,60.0,6.0,6.0,8.0,10.0,10.0,6.0,1,0.03 +501,85.0,9.0,8.0,9.0,9.0,10.0,8.0,34,2.18 +33117,96.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.55 +67849,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.51 +25683,98.0,10.0,9.0,10.0,10.0,9.0,9.0,9,0.28 +40592,96.0,10.0,10.0,10.0,10.0,10.0,10.0,169,5.23 +33706,80.0,9.0,7.0,10.0,9.0,10.0,8.0,4,0.13 +73233,70.0,9.0,8.0,8.0,9.0,9.0,9.0,4,0.13 +11257,89.0,9.0,9.0,9.0,10.0,9.0,9.0,51,1.58 +29110,90.0,9.0,7.0,10.0,10.0,9.0,9.0,2,0.06 +2828,98.0,10.0,10.0,10.0,10.0,10.0,10.0,44,1.43 +47825,,,,,,,,1,0.03 +33797,95.0,10.0,9.0,10.0,10.0,10.0,10.0,13,0.44 +13565,99.0,10.0,10.0,10.0,10.0,10.0,10.0,60,1.96 +50560,98.0,8.0,10.0,10.0,10.0,9.0,9.0,10,0.33 +60283,,,,,,,,0, +69205,93.0,9.0,9.0,10.0,10.0,9.0,9.0,3,0.1 +69632,98.0,10.0,10.0,10.0,10.0,9.0,10.0,35,1.15 +48705,,,,,,,,0, +30873,,,,,,,,0, +47173,92.0,10.0,9.0,10.0,10.0,9.0,9.0,59,1.9 +47670,80.0,8.0,7.0,9.0,8.0,9.0,8.0,5,0.16 +18583,83.0,9.0,9.0,10.0,10.0,8.0,8.0,8,0.25 +31325,92.0,10.0,9.0,10.0,10.0,10.0,9.0,27,0.93 +39154,93.0,10.0,9.0,10.0,10.0,9.0,9.0,3,0.1 +8910,93.0,9.0,9.0,10.0,10.0,9.0,9.0,12,0.38 +56843,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +60697,70.0,8.0,6.0,10.0,9.0,9.0,8.0,2,0.06 +19626,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +29701,98.0,10.0,10.0,10.0,10.0,10.0,10.0,44,1.4 +67674,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,1.08 +27476,98.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.49 +61076,96.0,10.0,9.0,10.0,10.0,10.0,10.0,28,0.87 +58708,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.16 +76382,98.0,10.0,10.0,10.0,10.0,9.0,10.0,13,1.14 +25236,,,,,,,,0, +3524,96.0,10.0,10.0,10.0,10.0,10.0,10.0,20,0.63 +59393,89.0,9.0,9.0,9.0,9.0,10.0,9.0,16,0.51 +55097,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.21 +31244,99.0,10.0,10.0,10.0,10.0,10.0,10.0,73,2.25 +69115,,,,,,,,0, +3581,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.13 +1067,80.0,7.0,6.0,7.0,8.0,7.0,7.0,5,0.16 +6915,88.0,9.0,9.0,9.0,10.0,9.0,9.0,16,0.51 +11829,91.0,9.0,8.0,10.0,9.0,10.0,9.0,14,0.86 +48125,,,,,,,,0, +44050,98.0,10.0,10.0,10.0,10.0,9.0,9.0,25,0.78 +22574,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.25 +13206,67.0,8.0,7.0,7.0,7.0,9.0,8.0,9,0.31 +23446,90.0,10.0,9.0,10.0,10.0,9.0,9.0,8,0.26 +38600,,,,,,,,0, +32741,94.0,10.0,10.0,10.0,10.0,10.0,9.0,23,0.8 +60930,98.0,10.0,10.0,10.0,10.0,10.0,10.0,74,2.38 +33804,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.13 +59306,93.0,10.0,9.0,10.0,10.0,10.0,10.0,30,0.92 +63231,,,,,,,,0, +66862,94.0,10.0,10.0,10.0,10.0,10.0,9.0,117,3.72 +17834,81.0,8.0,8.0,9.0,9.0,8.0,8.0,23,0.72 +61972,91.0,9.0,9.0,10.0,10.0,9.0,9.0,23,0.76 +55114,82.0,10.0,9.0,9.0,10.0,10.0,9.0,9,0.44 +53789,77.0,8.0,8.0,9.0,9.0,10.0,7.0,35,1.08 +7069,90.0,9.0,7.0,8.0,9.0,10.0,9.0,3,0.09 +33962,97.0,10.0,9.0,10.0,10.0,10.0,10.0,52,1.61 +2534,80.0,9.0,7.0,7.0,10.0,9.0,9.0,3,0.18 +19971,99.0,10.0,10.0,10.0,10.0,10.0,10.0,34,1.07 +66231,,,,,,,,0, +73270,96.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.22 +75430,92.0,10.0,8.0,9.0,10.0,10.0,10.0,5,0.16 +72105,98.0,10.0,10.0,10.0,10.0,10.0,10.0,57,1.77 +59614,,,,,,,,0, +38761,93.0,10.0,10.0,9.0,9.0,10.0,9.0,13,0.49 +8465,80.0,8.0,8.0,10.0,10.0,10.0,10.0,1,0.03 +6051,98.0,10.0,10.0,10.0,10.0,10.0,10.0,51,1.65 +31475,93.0,10.0,10.0,10.0,10.0,9.0,10.0,61,1.92 +33235,85.0,9.0,8.0,10.0,10.0,9.0,9.0,4,0.15 +969,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.03 +27322,,,,,,,,0, +50665,,,,,,,,0, +45680,90.0,9.0,9.0,10.0,9.0,10.0,9.0,26,0.8 +72201,90.0,9.0,9.0,10.0,10.0,9.0,9.0,54,1.74 +43656,97.0,10.0,9.0,10.0,10.0,10.0,10.0,173,5.48 +68225,,,,,,,,0, +66739,,,,,,,,0, +65475,95.0,10.0,9.0,9.0,9.0,10.0,10.0,4,0.13 +713,97.0,10.0,10.0,10.0,10.0,10.0,10.0,85,2.66 +4109,90.0,9.0,9.0,10.0,10.0,10.0,10.0,2,0.07 +10905,99.0,10.0,10.0,10.0,10.0,10.0,10.0,21,2.51 +41421,94.0,9.0,10.0,10.0,10.0,10.0,9.0,19,0.64 +44661,88.0,9.0,9.0,9.0,9.0,9.0,9.0,44,1.41 +45656,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.14 +40711,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.06 +3276,97.0,10.0,10.0,10.0,10.0,9.0,10.0,62,2.01 +71266,95.0,10.0,10.0,10.0,10.0,9.0,9.0,41,1.29 +12874,93.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.1 +74170,93.0,10.0,9.0,10.0,10.0,10.0,10.0,21,0.66 +63402,82.0,8.0,9.0,9.0,9.0,10.0,8.0,11,0.43 +11774,,,,,,,,0, +71019,95.0,10.0,10.0,10.0,10.0,9.0,10.0,51,1.7 +30800,,,,,,,,0, +47605,89.0,9.0,9.0,10.0,10.0,10.0,9.0,90,2.8 +29644,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.28 +2864,99.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.47 +22059,99.0,10.0,10.0,10.0,10.0,10.0,10.0,48,1.51 +62401,99.0,10.0,10.0,10.0,10.0,10.0,10.0,241,7.48 +19832,96.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.51 +52823,99.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.53 +12813,87.0,9.0,9.0,7.0,9.0,10.0,9.0,4,0.13 +22148,94.0,10.0,10.0,10.0,10.0,10.0,9.0,18,0.61 +5603,99.0,10.0,10.0,10.0,10.0,10.0,10.0,28,0.93 +56689,99.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.53 +17642,100.0,10.0,8.0,10.0,10.0,10.0,8.0,2,0.06 +64402,,,,,,,,0, +10217,98.0,10.0,9.0,10.0,10.0,9.0,10.0,49,1.54 +3861,94.0,10.0,10.0,10.0,10.0,10.0,9.0,50,1.57 +57234,,,,,,,,0, +14354,95.0,10.0,9.0,10.0,10.0,9.0,10.0,41,2.86 +65338,85.0,10.0,8.0,10.0,10.0,9.0,9.0,4,0.12 +52571,96.0,10.0,10.0,10.0,10.0,9.0,9.0,5,0.17 +1438,,,,,,,,0, +14558,100.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.8 +15480,,,,,,,,0, +73989,,,,,,,,0, +71899,95.0,10.0,10.0,10.0,10.0,9.0,10.0,67,2.08 +41793,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.03 +56914,73.0,7.0,7.0,7.0,7.0,7.0,7.0,3,0.09 +32775,97.0,9.0,10.0,9.0,9.0,10.0,10.0,7,0.22 +21849,,,,,,,,0, +63382,,,,,,,,0, +4637,90.0,9.0,8.0,9.0,9.0,8.0,9.0,2,0.06 +41885,93.0,9.0,8.0,10.0,10.0,10.0,9.0,3,0.11 +25770,100.0,10.0,10.0,10.0,10.0,10.0,10.0,27,0.92 +57723,86.0,9.0,9.0,9.0,9.0,9.0,9.0,75,2.46 +28486,92.0,9.0,9.0,10.0,9.0,10.0,9.0,10,0.31 +60066,100.0,6.0,10.0,10.0,10.0,8.0,10.0,1,0.04 +59203,95.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.25 +51710,,,,,,,,0, +64172,91.0,9.0,9.0,9.0,10.0,8.0,9.0,8,0.25 +47185,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.1 +43411,97.0,10.0,10.0,10.0,9.0,10.0,9.0,15,0.47 +46457,,,,,,,,0, +6512,100.0,10.0,10.0,10.0,10.0,10.0,10.0,15,1.03 +63911,80.0,8.0,4.0,8.0,6.0,8.0,6.0,1,0.21 +38016,88.0,9.0,9.0,10.0,10.0,9.0,9.0,121,3.89 +46085,90.0,10.0,9.0,10.0,10.0,8.0,10.0,2,0.07 +37873,100.0,8.0,10.0,10.0,10.0,8.0,10.0,1,0.23 +15029,90.0,10.0,9.0,10.0,10.0,10.0,9.0,6,0.2 +74449,84.0,10.0,9.0,8.0,9.0,10.0,9.0,9,0.31 +27579,70.0,8.0,7.0,10.0,10.0,7.0,7.0,2,0.09 +66353,,,,,,,,0, +425,97.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.22 +47737,96.0,10.0,9.0,10.0,9.0,10.0,9.0,21,0.77 +27802,93.0,9.0,9.0,10.0,10.0,9.0,9.0,3,0.1 +27339,99.0,10.0,10.0,10.0,10.0,10.0,9.0,37,1.26 +72574,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.06 +68175,,,,,,,,0, +25468,98.0,10.0,10.0,10.0,10.0,10.0,10.0,27,0.88 +56271,,,,,,,,0, +20948,,,,,,,,0, +40324,97.0,10.0,10.0,10.0,10.0,10.0,10.0,45,1.4 +29049,100.0,10.0,9.0,10.0,10.0,10.0,10.0,13,0.43 +28740,98.0,10.0,10.0,10.0,10.0,10.0,10.0,73,2.34 +37233,93.0,10.0,9.0,10.0,10.0,10.0,9.0,29,0.91 +63320,,,,,,,,0, +75496,,,,,,,,0, +31083,100.0,10.0,9.0,10.0,9.0,10.0,9.0,2,0.07 +69794,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.32 +61789,,,,,,,,0, +12592,85.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.14 +31605,,,,,,,,0, +69522,100.0,10.0,10.0,10.0,10.0,10.0,8.0,2,0.07 +35837,81.0,8.0,8.0,9.0,9.0,9.0,9.0,41,1.27 +229,,,,,,,,0, +57568,100.0,10.0,10.0,10.0,10.0,10.0,10.0,49,3.0 +22408,94.0,10.0,10.0,10.0,9.0,10.0,9.0,14,0.44 +47532,,,,,,,,0, +37361,100.0,10.0,10.0,10.0,10.0,10.0,8.0,2,0.07 +46979,93.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.19 +7335,60.0,6.0,6.0,8.0,10.0,8.0,4.0,1,0.06 +29406,,,,,,,,0, +20480,87.0,9.0,9.0,9.0,10.0,10.0,9.0,62,1.93 +13890,,,,,,,,0, +64352,,,,,,,,0, +53766,,,,,,,,0, +53488,97.0,10.0,10.0,10.0,10.0,9.0,9.0,6,0.19 +58189,,,,,,,,0, +43690,84.0,9.0,9.0,9.0,10.0,10.0,8.0,31,1.05 +33276,99.0,10.0,10.0,10.0,10.0,10.0,10.0,30,0.94 +55695,97.0,10.0,9.0,10.0,10.0,10.0,10.0,8,0.25 +59503,80.0,10.0,10.0,8.0,10.0,10.0,8.0,1,0.06 +8292,87.0,10.0,10.0,9.0,10.0,10.0,9.0,3,0.1 +71971,,,,,,,,0, +30911,75.0,8.0,7.0,9.0,9.0,9.0,8.0,54,1.77 +11214,75.0,8.0,7.0,9.0,9.0,9.0,7.0,13,0.49 +61493,98.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.51 +22106,,,,,,,,0, +50671,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.03 +20938,100.0,10.0,10.0,10.0,8.0,10.0,10.0,1,0.03 +36509,94.0,10.0,10.0,10.0,10.0,10.0,9.0,34,1.07 +4391,99.0,10.0,10.0,10.0,10.0,10.0,10.0,88,2.76 +35128,84.0,8.0,8.0,9.0,10.0,9.0,9.0,20,0.63 +45433,99.0,10.0,10.0,10.0,10.0,10.0,10.0,43,1.35 +26372,98.0,10.0,10.0,10.0,10.0,10.0,10.0,79,2.47 +26247,97.0,10.0,10.0,10.0,10.0,10.0,10.0,82,2.54 +64656,99.0,10.0,10.0,10.0,10.0,10.0,10.0,127,4.01 +75429,95.0,10.0,10.0,10.0,8.0,10.0,9.0,4,0.55 +6859,99.0,10.0,10.0,10.0,10.0,10.0,10.0,37,1.19 +63192,,,,,,,,0, +15534,100.0,10.0,10.0,10.0,10.0,9.0,10.0,17,0.55 +16710,100.0,8.0,10.0,10.0,10.0,10.0,9.0,3,0.11 +69633,52.0,6.0,6.0,7.0,7.0,9.0,5.0,10,0.32 +3224,82.0,9.0,8.0,9.0,8.0,8.0,8.0,10,0.32 +71104,90.0,9.0,9.0,10.0,10.0,8.0,9.0,47,1.47 +52675,,,,,,,,0, +26439,,,,,,,,0, +55975,,,,,,,,0, +71023,,,,,,,,0, +65625,,,,,,,,0, +22427,,,,,,,,0, +70632,,,,,,,,1,0.03 +6262,100.0,9.0,10.0,10.0,10.0,10.0,10.0,2,0.12 +9069,91.0,9.0,9.0,10.0,10.0,10.0,9.0,45,1.46 +23147,80.0,9.0,5.0,8.0,8.0,6.0,8.0,2,0.06 +48959,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.04 +51739,87.0,8.0,9.0,9.0,9.0,10.0,9.0,11,0.38 +28415,,,,,,,,0, +40713,99.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.64 +75712,,,,,,,,0, +65375,80.0,9.0,9.0,8.0,8.0,9.0,9.0,2,0.06 +53081,96.0,10.0,9.0,10.0,10.0,9.0,9.0,34,1.08 +41807,,,,,,,,1,0.04 +49864,98.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.37 +63072,80.0,8.0,9.0,9.0,9.0,9.0,8.0,2,0.07 +61216,90.0,9.0,9.0,8.0,9.0,8.0,9.0,2,0.06 +40562,73.0,8.0,10.0,8.0,9.0,8.0,9.0,3,0.1 +26255,94.0,10.0,9.0,10.0,10.0,10.0,9.0,103,3.2 +40733,100.0,10.0,10.0,10.0,10.0,10.0,9.0,9,0.81 +50923,,,,,,,,0, +26822,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +59545,,,,,,,,0, +44510,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.03 +12013,93.0,10.0,10.0,10.0,10.0,10.0,9.0,63,2.02 +59275,93.0,10.0,10.0,9.0,9.0,10.0,9.0,10,0.31 +65981,80.0,9.0,8.0,9.0,9.0,9.0,8.0,102,3.27 +41620,97.0,10.0,10.0,10.0,10.0,10.0,10.0,23,0.71 +38539,98.0,10.0,10.0,10.0,10.0,10.0,10.0,47,1.59 +72939,94.0,10.0,9.0,10.0,10.0,10.0,9.0,146,4.57 +33966,98.0,10.0,10.0,10.0,10.0,10.0,10.0,25,0.78 +68096,85.0,9.0,8.0,9.0,10.0,10.0,9.0,8,0.26 +6539,70.0,7.0,9.0,7.0,6.0,10.0,8.0,2,0.09 +1000,90.0,9.0,9.0,10.0,10.0,10.0,9.0,23,0.73 +12795,,,,,,,,1,0.03 +7481,95.0,10.0,9.0,10.0,10.0,10.0,9.0,27,0.85 +51111,,,,,,,,0, +67252,80.0,8.0,8.0,10.0,10.0,10.0,8.0,1,0.04 +41470,92.0,10.0,10.0,9.0,10.0,10.0,9.0,56,1.75 +25444,93.0,10.0,10.0,9.0,10.0,9.0,9.0,18,0.58 +15887,,,,,,,,1,0.08 +21495,80.0,9.0,8.0,10.0,10.0,8.0,8.0,5,0.27 +35698,91.0,10.0,9.0,10.0,10.0,10.0,9.0,7,0.22 +52495,97.0,10.0,9.0,10.0,10.0,9.0,9.0,18,0.77 +44699,87.0,9.0,9.0,9.0,9.0,10.0,9.0,98,3.08 +76080,97.0,10.0,10.0,10.0,10.0,10.0,9.0,44,1.39 +50920,,,,,,,,0, +47798,80.0,8.0,8.0,9.0,9.0,10.0,8.0,9,0.31 +34297,,,,,,,,0, +50933,,,,,,,,0, +27426,88.0,8.0,8.0,8.0,10.0,10.0,9.0,6,0.23 +5010,98.0,10.0,10.0,10.0,10.0,10.0,10.0,109,3.42 +56524,,,,,,,,0, +1567,96.0,10.0,10.0,10.0,10.0,10.0,10.0,162,5.1 +27496,,,,,,,,0, +32258,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.15 +50473,,,,,,,,0, +19015,,,,,,,,0, +12650,92.0,9.0,9.0,10.0,10.0,10.0,9.0,30,0.94 +56655,100.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.61 +33874,100.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.52 +53291,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,2.17 +49632,99.0,10.0,10.0,10.0,10.0,10.0,10.0,22,0.8 +62236,,,,,,,,0, +69613,96.0,10.0,10.0,10.0,10.0,10.0,10.0,55,1.96 +61372,,,,,,,,0, +57105,90.0,10.0,8.0,9.0,9.0,9.0,9.0,5,0.16 +1682,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.16 +939,98.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.35 +55248,80.0,8.0,6.0,9.0,9.0,10.0,9.0,10,0.32 +30569,,,,,,,,0, +61300,100.0,10.0,10.0,9.0,10.0,9.0,9.0,4,0.21 +62653,92.0,10.0,10.0,10.0,10.0,10.0,9.0,106,3.31 +6330,88.0,9.0,9.0,10.0,10.0,10.0,9.0,107,3.33 +66041,,,,,,,,0, +16631,96.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.16 +51310,88.0,9.0,9.0,10.0,10.0,10.0,9.0,62,2.0 +34035,88.0,9.0,9.0,10.0,10.0,10.0,9.0,162,5.05 +33167,90.0,9.0,9.0,9.0,10.0,10.0,8.0,3,0.1 +10861,98.0,10.0,10.0,10.0,10.0,10.0,10.0,34,1.06 +74418,,,,,,,,0, +71309,96.0,10.0,9.0,10.0,9.0,9.0,9.0,19,0.59 +16850,80.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.19 +25825,99.0,10.0,10.0,10.0,10.0,10.0,10.0,148,4.6 +45425,,,,,,,,0, +44968,98.0,10.0,10.0,10.0,10.0,10.0,10.0,34,1.1 +25118,87.0,9.0,8.0,10.0,10.0,9.0,9.0,52,1.67 +56322,,,,,,,,4,0.13 +33099,93.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.1 +12762,96.0,10.0,10.0,10.0,10.0,10.0,10.0,114,3.71 +19519,87.0,10.0,9.0,10.0,10.0,10.0,10.0,6,1.7 +41249,99.0,10.0,10.0,10.0,10.0,10.0,10.0,33,1.06 +51482,,,,,,,,0, +52607,84.0,10.0,7.0,10.0,10.0,10.0,8.0,8,0.25 +15913,,,,,,,,0, +31683,,,,,,,,0, +73875,,,,,,,,0, +28105,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.34 +17990,98.0,10.0,10.0,10.0,10.0,10.0,10.0,49,1.57 +43007,,,,,,,,0, +17358,,,,,,,,0, +73087,100.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.06 +70525,97.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.23 +3612,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +45738,99.0,10.0,10.0,10.0,10.0,10.0,10.0,205,6.55 +49466,,,,,,,,0, +29088,98.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.54 +12892,90.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.07 +63324,87.0,9.0,9.0,10.0,9.0,9.0,9.0,4,0.13 +38144,,,,,,,,0, +49943,98.0,10.0,10.0,10.0,10.0,10.0,9.0,21,0.66 +14743,,,,,,,,0, +42680,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.24 +50515,,,,,,,,0, +64047,85.0,10.0,7.0,10.0,10.0,10.0,9.0,4,0.14 +21601,95.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.14 +22557,99.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.6 +17664,96.0,10.0,10.0,10.0,10.0,10.0,10.0,63,2.02 +23306,,,,,,,,0, +16335,,,,,,,,0, +41894,,,,,,,,0, +45202,,,,,,,,0, +53997,96.0,10.0,10.0,10.0,10.0,10.0,9.0,67,2.1 +48159,96.0,10.0,10.0,10.0,10.0,10.0,9.0,65,2.04 +7023,,,,,,,,0, +58478,99.0,10.0,10.0,10.0,10.0,10.0,10.0,89,2.84 +50769,96.0,10.0,10.0,10.0,10.0,10.0,10.0,96,3.12 +16598,90.0,10.0,9.0,10.0,10.0,10.0,9.0,86,2.79 +7329,94.0,10.0,10.0,10.0,10.0,10.0,9.0,113,3.65 +59735,93.0,10.0,10.0,10.0,10.0,10.0,9.0,95,3.02 +48067,,,,,,,,1,0.05 +67610,99.0,10.0,10.0,10.0,10.0,10.0,10.0,55,1.77 +4010,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.42 +19540,,,,,,,,0, +14014,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.17 +54330,80.0,10.0,6.0,10.0,10.0,10.0,8.0,1,0.2 +75867,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.48 +33357,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.14 +23940,94.0,10.0,9.0,10.0,10.0,10.0,9.0,219,7.03 +43983,,,,,,,,0, +30539,97.0,9.0,10.0,10.0,10.0,9.0,10.0,8,0.26 +74158,80.0,9.0,7.0,7.0,9.0,8.0,8.0,5,0.16 +55832,90.0,9.0,10.0,8.0,10.0,5.0,9.0,2,0.06 +52323,99.0,10.0,10.0,10.0,10.0,9.0,10.0,59,1.99 +71732,98.0,10.0,10.0,10.0,10.0,10.0,10.0,41,1.28 +32433,,,,,,,,0, +76672,,,,,,,,1,0.03 +48197,90.0,10.0,10.0,10.0,10.0,7.0,9.0,2,0.06 +1966,,,,,,,,0, +29447,99.0,10.0,10.0,10.0,10.0,10.0,10.0,81,2.56 +3840,96.0,10.0,9.0,10.0,10.0,10.0,9.0,22,0.69 +27606,96.0,10.0,9.0,10.0,10.0,9.0,9.0,32,1.5 +40911,97.0,10.0,10.0,10.0,10.0,10.0,10.0,30,0.96 +41556,,,,,,,,0, +17615,,,,,,,,0, +76127,93.0,10.0,9.0,10.0,10.0,9.0,9.0,3,0.11 +68207,96.0,10.0,10.0,10.0,10.0,9.0,10.0,15,0.48 +13594,,,,,,,,0, +72795,,,,,,,,0, +33817,100.0,10.0,10.0,10.0,10.0,10.0,10.0,42,1.32 +13433,,,,,,,,1,1.0 +13972,96.0,10.0,9.0,10.0,10.0,10.0,10.0,150,4.71 +24689,99.0,10.0,10.0,10.0,10.0,10.0,9.0,16,0.53 +21651,,,,,,,,0, +46736,97.0,10.0,10.0,10.0,10.0,10.0,10.0,25,0.84 +6522,100.0,10.0,10.0,10.0,10.0,10.0,9.0,12,0.67 +30721,98.0,10.0,10.0,10.0,10.0,10.0,10.0,23,0.75 +6722,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.23 +54053,97.0,10.0,9.0,9.0,10.0,10.0,10.0,13,0.42 +23724,97.0,10.0,10.0,10.0,10.0,9.0,10.0,59,2.78 +31579,87.0,9.0,9.0,9.0,9.0,9.0,9.0,59,1.82 +58304,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.19 +45951,,,,,,,,0, +22014,,,,,,,,0, +34125,96.0,10.0,10.0,9.0,9.0,9.0,9.0,26,0.85 +29936,95.0,10.0,10.0,10.0,9.0,9.0,10.0,14,0.43 +3686,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +13671,96.0,10.0,10.0,10.0,10.0,9.0,10.0,10,0.35 +60896,95.0,10.0,9.0,10.0,10.0,10.0,10.0,79,2.69 +62829,92.0,9.0,9.0,9.0,10.0,10.0,9.0,60,1.9 +25911,,,,,,,,0, +23686,,,,,,,,0, +64322,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.21 +14849,,,,,,,,0, +49775,98.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.56 +5370,80.0,9.0,9.0,9.0,9.0,10.0,10.0,4,0.13 +39952,,,,,,,,0, +19492,,,,,,,,0, +62398,100.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.17 +72489,,,,,,,,0, +18008,97.0,10.0,10.0,10.0,10.0,9.0,10.0,45,1.42 +43652,93.0,10.0,10.0,10.0,10.0,10.0,10.0,133,4.5 +59190,95.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.13 +28110,98.0,10.0,10.0,10.0,10.0,10.0,9.0,41,1.29 +57567,20.0,2.0,2.0,2.0,2.0,2.0,2.0,1,0.03 +10090,99.0,10.0,10.0,10.0,10.0,10.0,10.0,80,2.48 +53491,99.0,10.0,10.0,10.0,10.0,10.0,10.0,21,0.74 +62393,93.0,9.0,9.0,10.0,10.0,9.0,9.0,16,0.5 +11511,,,,,,,,0, +44530,97.0,10.0,10.0,10.0,10.0,10.0,10.0,77,2.41 +66844,97.0,10.0,10.0,10.0,10.0,10.0,9.0,40,1.26 +56348,93.0,9.0,8.0,10.0,10.0,9.0,9.0,3,0.09 +2027,97.0,10.0,10.0,10.0,10.0,10.0,9.0,8,0.26 +42590,88.0,9.0,9.0,9.0,10.0,9.0,9.0,43,1.34 +70853,95.0,10.0,10.0,10.0,10.0,9.0,9.0,20,0.69 +47059,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.42 +2662,80.0,8.0,8.0,8.0,8.0,10.0,8.0,1,0.03 +43061,88.0,9.0,8.0,9.0,10.0,10.0,9.0,32,1.0 +28340,82.0,9.0,9.0,9.0,9.0,10.0,9.0,192,5.97 +59102,60.0,6.0,4.0,10.0,10.0,6.0,6.0,1,0.04 +47278,97.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.3 +40730,94.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.32 +63579,83.0,9.0,8.0,10.0,9.0,9.0,9.0,6,0.19 +73050,100.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.57 +43446,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +61215,89.0,10.0,10.0,9.0,9.0,10.0,9.0,177,5.98 +21976,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.94 +65349,97.0,10.0,10.0,10.0,10.0,9.0,10.0,108,3.36 +70680,98.0,10.0,9.0,10.0,10.0,10.0,9.0,24,0.78 +35773,91.0,9.0,9.0,9.0,10.0,10.0,9.0,17,1.41 +68068,100.0,10.0,10.0,10.0,10.0,9.0,9.0,7,0.23 +29206,99.0,10.0,10.0,10.0,10.0,10.0,10.0,20,0.63 +45036,100.0,10.0,10.0,9.0,10.0,10.0,10.0,7,0.24 +39065,,,,,,,,0, +75890,89.0,8.0,9.0,9.0,9.0,10.0,9.0,14,0.44 +69419,40.0,4.0,4.0,6.0,4.0,10.0,6.0,1,0.03 +72723,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +66539,,,,,,,,0, +33033,98.0,10.0,10.0,10.0,10.0,10.0,10.0,172,5.47 +62082,,,,,,,,0, +39617,95.0,10.0,10.0,10.0,10.0,9.0,9.0,21,0.72 +22613,,,,,,,,0, +43236,99.0,10.0,10.0,10.0,10.0,10.0,10.0,40,1.51 +49605,80.0,8.0,10.0,8.0,8.0,10.0,6.0,1,0.03 +66608,,,,,,,,0, +2073,60.0,6.0,2.0,8.0,8.0,6.0,6.0,1,0.03 +43673,96.0,10.0,10.0,10.0,10.0,10.0,10.0,20,0.64 +54853,90.0,9.0,9.0,9.0,9.0,9.0,9.0,16,4.75 +46382,99.0,10.0,10.0,10.0,10.0,10.0,10.0,120,3.9 +73591,96.0,10.0,10.0,10.0,10.0,10.0,10.0,79,2.47 +15456,99.0,10.0,10.0,10.0,10.0,10.0,10.0,19,0.59 +26606,99.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.46 +42696,60.0,6.0,6.0,10.0,10.0,8.0,6.0,1,0.03 +39435,93.0,9.0,9.0,10.0,10.0,10.0,10.0,12,0.38 +44815,96.0,10.0,9.0,10.0,10.0,10.0,10.0,22,0.77 +13545,,,,,,,,0, +31542,91.0,10.0,9.0,10.0,10.0,10.0,10.0,8,2.86 +29603,,,,,,,,0, +76692,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.09 +3341,93.0,9.0,9.0,9.0,9.0,9.0,8.0,12,0.47 +58147,60.0,6.0,4.0,6.0,6.0,6.0,4.0,1,0.03 +3680,,,,,,,,0, +62873,,,,,,,,0, +40416,85.0,9.0,9.0,9.0,9.0,10.0,9.0,39,1.22 +19558,79.0,9.0,7.0,9.0,9.0,9.0,8.0,59,1.87 +30429,98.0,10.0,10.0,10.0,10.0,9.0,10.0,49,1.72 +42990,,,,,,,,0, +73137,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.14 +37300,91.0,10.0,9.0,9.0,9.0,10.0,9.0,21,0.68 +28608,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.23 +70755,,,,,,,,0, +35282,95.0,10.0,10.0,10.0,10.0,10.0,9.0,8,0.27 +11213,75.0,7.0,8.0,8.0,7.0,8.0,8.0,5,0.18 +68920,,,,,,,,0, +51472,97.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.25 +69123,90.0,9.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +22350,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.13 +67886,80.0,10.0,6.0,10.0,10.0,10.0,8.0,1,0.03 +20046,,,,,,,,0, +55279,96.0,10.0,10.0,10.0,10.0,10.0,10.0,54,1.81 +26429,83.0,9.0,9.0,9.0,9.0,8.0,9.0,23,0.74 +72935,91.0,10.0,9.0,10.0,10.0,10.0,9.0,34,1.06 +2190,,,,,,,,0, +1257,,,,,,,,0, +974,80.0,9.0,8.0,10.0,10.0,7.0,8.0,4,0.13 +12435,94.0,10.0,10.0,10.0,10.0,9.0,9.0,40,1.26 +1096,,,,,,,,0, +74559,93.0,9.0,10.0,10.0,10.0,9.0,9.0,21,3.56 +49969,,,,,,,,0, +73970,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.34 +58923,95.0,10.0,10.0,10.0,10.0,10.0,10.0,45,1.8 +72135,,,,,,,,0, +33719,92.0,10.0,10.0,10.0,10.0,9.0,9.0,28,0.9 +34997,96.0,10.0,10.0,10.0,10.0,9.0,10.0,9,0.31 +68537,93.0,9.0,10.0,10.0,10.0,9.0,10.0,3,0.09 +24248,98.0,10.0,9.0,10.0,10.0,10.0,9.0,16,0.52 +36820,90.0,9.0,9.0,10.0,10.0,9.0,9.0,48,1.61 +49291,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +47117,94.0,9.0,9.0,10.0,10.0,10.0,9.0,23,0.78 +64198,94.0,10.0,9.0,10.0,10.0,10.0,9.0,71,2.48 +50522,97.0,10.0,9.0,10.0,10.0,10.0,9.0,19,0.64 +11412,94.0,10.0,9.0,10.0,10.0,10.0,10.0,133,4.36 +52917,92.0,9.0,9.0,10.0,10.0,10.0,9.0,46,1.43 +33617,83.0,9.0,8.0,9.0,9.0,9.0,8.0,60,1.89 +41709,97.0,10.0,10.0,10.0,10.0,10.0,10.0,20,0.72 +29949,98.0,10.0,10.0,10.0,10.0,10.0,9.0,28,0.93 +25675,,,,,,,,1,0.05 +55804,97.0,10.0,10.0,10.0,10.0,10.0,10.0,73,2.29 +47975,89.0,9.0,8.0,10.0,9.0,9.0,9.0,36,1.14 +61881,95.0,10.0,10.0,10.0,10.0,9.0,10.0,66,2.2 +31374,,,,,,,,0, +62626,98.0,10.0,10.0,10.0,9.0,9.0,10.0,13,0.41 +53607,93.0,9.0,9.0,10.0,10.0,9.0,9.0,11,0.35 +29371,96.0,9.0,10.0,10.0,9.0,10.0,10.0,5,0.17 +26328,91.0,9.0,9.0,10.0,10.0,9.0,9.0,24,1.27 +26314,93.0,10.0,8.0,9.0,10.0,9.0,9.0,10,0.33 +41734,95.0,10.0,10.0,9.0,10.0,9.0,9.0,4,0.13 +73496,98.0,10.0,10.0,10.0,10.0,10.0,10.0,25,0.82 +45144,99.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.46 +44737,97.0,10.0,9.0,9.0,10.0,10.0,10.0,23,0.73 +6393,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.11 +58880,93.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.1 +3124,98.0,10.0,10.0,9.0,10.0,9.0,9.0,18,0.58 +1892,87.0,9.0,9.0,10.0,10.0,8.0,9.0,24,0.75 +32618,100.0,10.0,10.0,10.0,10.0,10.0,10.0,26,0.84 +53944,97.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.42 +1731,90.0,9.0,10.0,9.0,9.0,9.0,9.0,10,0.37 +47380,,,,,,,,1,0.04 +59644,91.0,10.0,9.0,9.0,9.0,9.0,9.0,14,0.47 +39379,,,,,,,,0, +18062,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +43406,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +66065,100.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.27 +55621,97.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.51 +19260,,,,,,,,0, +35008,,,,,,,,0, +15017,99.0,10.0,10.0,10.0,10.0,10.0,10.0,23,0.72 +69240,93.0,10.0,9.0,10.0,10.0,9.0,9.0,71,2.23 +53712,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.35 +69944,80.0,10.0,9.0,9.0,10.0,9.0,8.0,8,0.26 +37178,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.44 +10413,87.0,9.0,7.0,9.0,10.0,9.0,10.0,4,0.14 +19416,,,,,,,,0, +13716,91.0,9.0,9.0,9.0,10.0,9.0,9.0,9,1.29 +75261,97.0,10.0,10.0,9.0,10.0,10.0,10.0,21,0.7 +56406,96.0,10.0,10.0,10.0,10.0,9.0,10.0,15,0.51 +9175,90.0,9.0,8.0,9.0,8.0,10.0,9.0,2,0.07 +21675,,,,,,,,0, +56353,,,,,,,,0, +59062,,,,,,,,0, +70538,90.0,9.0,10.0,9.0,9.0,9.0,9.0,68,2.13 +76371,92.0,9.0,9.0,10.0,10.0,10.0,9.0,140,4.38 +61510,94.0,10.0,9.0,10.0,10.0,9.0,10.0,74,2.37 +59910,,,,,,,,0, +45045,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.1 +72189,,,,,,,,0, +67776,96.0,10.0,10.0,10.0,10.0,9.0,9.0,35,1.1 +12252,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +1286,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.38 +22792,100.0,10.0,9.0,10.0,10.0,10.0,10.0,10,0.36 +71094,95.0,10.0,9.0,10.0,10.0,10.0,9.0,24,0.82 +15122,80.0,7.0,8.0,8.0,8.0,9.0,8.0,3,0.09 +10511,,,,,,,,0, +40731,96.0,10.0,10.0,10.0,10.0,10.0,10.0,49,1.6 +33687,99.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.58 +46184,92.0,10.0,9.0,10.0,10.0,9.0,10.0,68,2.31 +19468,100.0,10.0,10.0,10.0,10.0,10.0,9.0,18,0.67 +55946,95.0,10.0,10.0,10.0,10.0,9.0,10.0,13,0.41 +54340,87.0,9.0,9.0,10.0,10.0,10.0,9.0,100,3.16 +31532,92.0,10.0,9.0,10.0,10.0,9.0,10.0,6,0.27 +22884,95.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.39 +7687,93.0,10.0,7.0,10.0,10.0,9.0,9.0,3,0.11 +42543,,,,,,,,0, +46333,94.0,10.0,9.0,10.0,10.0,10.0,10.0,52,1.63 +3213,97.0,10.0,10.0,10.0,10.0,9.0,10.0,14,0.46 +56492,97.0,10.0,10.0,10.0,10.0,9.0,10.0,101,3.24 +71495,,,,,,,,0, +8854,98.0,10.0,10.0,10.0,10.0,9.0,10.0,84,2.67 +62175,99.0,10.0,10.0,10.0,10.0,9.0,10.0,127,4.16 +22084,90.0,10.0,7.0,10.0,10.0,10.0,9.0,7,0.23 +46425,96.0,10.0,10.0,10.0,10.0,10.0,9.0,94,2.95 +72820,,,,,,,,0, +5402,79.0,9.0,7.0,9.0,10.0,9.0,8.0,81,2.55 +15092,99.0,10.0,10.0,10.0,10.0,10.0,10.0,35,1.19 +961,96.0,10.0,10.0,10.0,10.0,9.0,10.0,19,0.62 +2637,100.0,10.0,9.0,10.0,10.0,9.0,9.0,2,0.07 +18090,89.0,10.0,9.0,8.0,9.0,10.0,9.0,14,0.44 +16491,,,,,,,,0, +16031,100.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.12 +60521,,,,,,,,0, +49691,,,,,,,,0, +69125,98.0,10.0,10.0,10.0,10.0,10.0,10.0,49,1.59 +60230,97.0,10.0,10.0,10.0,10.0,9.0,10.0,62,1.98 +68317,,,,,,,,0, +75004,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +68043,74.0,8.0,7.0,9.0,9.0,9.0,8.0,109,3.41 +57504,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.42 +25221,,,,,,,,0, +60396,,,,,,,,0, +61711,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.1 +60704,,,,,,,,0, +37339,100.0,10.0,9.0,10.0,10.0,10.0,10.0,8,1.64 +73157,40.0,6.0,2.0,10.0,8.0,4.0,4.0,1,0.03 +8367,100.0,10.0,8.0,10.0,9.0,10.0,10.0,2,0.36 +10147,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.38 +63947,97.0,10.0,9.0,10.0,10.0,10.0,10.0,31,1.03 +34451,100.0,10.0,7.0,10.0,10.0,10.0,10.0,2,0.39 +74499,67.0,9.0,6.0,7.0,7.0,9.0,7.0,16,0.5 +1576,95.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.18 +41870,,,,,,,,0, +15529,89.0,9.0,9.0,10.0,10.0,10.0,9.0,62,1.94 +39719,,,,,,,,0, +28262,,,,,,,,0, +62084,,,,,,,,0, +51534,100.0,10.0,10.0,10.0,10.0,10.0,10.0,21,0.67 +40090,99.0,10.0,9.0,10.0,10.0,9.0,10.0,25,0.95 +58632,,,,,,,,0, +62000,90.0,9.0,9.0,10.0,10.0,10.0,9.0,149,4.71 +66078,,,,,,,,0, +23835,,,,,,,,0, +53245,98.0,10.0,10.0,10.0,10.0,9.0,10.0,74,2.37 +42853,86.0,9.0,7.0,9.0,10.0,10.0,9.0,14,0.45 +18374,92.0,9.0,9.0,10.0,10.0,10.0,9.0,112,3.51 +27168,94.0,10.0,9.0,10.0,10.0,10.0,9.0,39,1.26 +54623,86.0,9.0,10.0,9.0,9.0,10.0,9.0,14,0.64 +70581,98.0,10.0,10.0,10.0,10.0,9.0,10.0,9,0.32 +44684,80.0,8.0,7.0,7.0,9.0,9.0,7.0,3,0.18 +23439,100.0,10.0,10.0,10.0,10.0,10.0,10.0,69,3.3 +1808,60.0,10.0,4.0,6.0,8.0,10.0,6.0,2,0.06 +45848,,,,,,,,0, +10125,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +46891,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.27 +17930,,,,,,,,0, +70807,,,,,,,,0, +18663,97.0,10.0,9.0,10.0,10.0,10.0,10.0,13,1.0 +28172,98.0,10.0,10.0,10.0,10.0,9.0,9.0,17,0.54 +41437,,,,,,,,0, +36475,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.38 +49644,80.0,,,,,,,1,0.03 +51646,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +51315,78.0,9.0,8.0,9.0,8.0,9.0,8.0,8,0.25 +51738,,,,,,,,0, +24312,98.0,10.0,10.0,10.0,10.0,9.0,10.0,56,1.83 +11058,,,,,,,,0, +76313,90.0,9.0,9.0,9.0,10.0,9.0,9.0,12,0.38 +29706,87.0,9.0,9.0,9.0,9.0,9.0,9.0,19,0.59 +42643,88.0,9.0,9.0,9.0,9.0,9.0,9.0,59,1.94 +61515,80.0,8.0,6.0,8.0,10.0,10.0,8.0,1,0.03 +45852,60.0,2.0,10.0,8.0,6.0,8.0,6.0,1,0.04 +23905,93.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.1 +43167,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.13 +42747,100.0,10.0,10.0,10.0,10.0,10.0,10.0,56,1.84 +952,90.0,10.0,10.0,10.0,9.0,9.0,9.0,6,0.24 +48860,99.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.58 +47782,94.0,10.0,9.0,10.0,10.0,10.0,9.0,31,1.22 +44213,91.0,9.0,9.0,10.0,10.0,9.0,9.0,84,2.85 +27012,60.0,10.0,10.0,2.0,6.0,4.0,10.0,1,0.03 +49540,88.0,9.0,10.0,10.0,10.0,10.0,9.0,12,0.44 +64779,,,,,,,,0, +53674,100.0,10.0,10.0,10.0,10.0,10.0,10.0,33,1.55 +32575,95.0,10.0,10.0,9.0,10.0,9.0,10.0,4,0.13 +71324,97.0,10.0,10.0,10.0,10.0,10.0,10.0,23,0.74 +67807,99.0,10.0,10.0,10.0,10.0,10.0,9.0,37,1.18 +38801,,,,,,,,0, +66003,,,,,,,,0, +41830,90.0,9.0,9.0,10.0,10.0,10.0,9.0,92,2.92 +73475,90.0,10.0,9.0,9.0,10.0,10.0,9.0,2,0.07 +54007,,,,,,,,0, +32480,,,,,,,,0, +33506,99.0,10.0,10.0,10.0,10.0,9.0,10.0,21,0.7 +6031,92.0,9.0,9.0,9.0,9.0,9.0,9.0,14,0.72 +9699,95.0,10.0,9.0,9.0,10.0,10.0,9.0,44,1.64 +11873,,,,,,,,0, +53181,99.0,10.0,10.0,10.0,10.0,9.0,10.0,16,0.53 +8419,100.0,9.0,10.0,10.0,10.0,10.0,10.0,3,0.1 +70729,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.13 +67812,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.18 +44353,92.0,10.0,9.0,10.0,10.0,9.0,9.0,24,0.78 +1064,97.0,10.0,9.0,10.0,10.0,9.0,10.0,26,1.67 +72211,97.0,10.0,9.0,10.0,10.0,9.0,10.0,25,0.85 +69425,93.0,10.0,9.0,10.0,10.0,10.0,10.0,21,0.66 +27450,,,,,,,,0, +4915,90.0,9.0,9.0,10.0,10.0,10.0,9.0,42,1.33 +25035,95.0,10.0,9.0,10.0,10.0,10.0,9.0,4,0.58 +23666,,,,,,,,0, +32974,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.2 +75716,93.0,10.0,10.0,10.0,9.0,9.0,10.0,20,0.63 +12574,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.25 +64284,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.04 +52799,96.0,10.0,9.0,10.0,10.0,10.0,10.0,46,1.46 +7380,95.0,10.0,9.0,10.0,10.0,9.0,10.0,5,0.18 +54436,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.78 +55629,96.0,10.0,9.0,10.0,10.0,10.0,9.0,5,0.16 +39444,,,,,,,,0, +38591,,,,,,,,0, +38544,,,,,,,,0, +14056,85.0,8.0,7.0,10.0,9.0,9.0,9.0,4,0.14 +39670,86.0,9.0,9.0,9.0,9.0,9.0,9.0,50,1.64 +59057,,,,,,,,0, +66626,,,,,,,,0, +19025,,,,,,,,0, +33281,80.0,10.0,10.0,9.0,7.0,10.0,8.0,5,0.17 +50246,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.06 +51889,70.0,7.0,7.0,10.0,10.0,8.0,8.0,2,0.06 +33068,92.0,10.0,9.0,10.0,10.0,10.0,9.0,62,2.01 +66073,,,,,,,,0, +2348,97.0,10.0,10.0,10.0,10.0,10.0,9.0,20,0.68 +77019,,,,,,,,0, +43534,97.0,10.0,9.0,10.0,10.0,10.0,9.0,84,2.66 +34295,90.0,10.0,7.0,10.0,10.0,9.0,8.0,2,0.07 +7426,94.0,10.0,9.0,10.0,10.0,9.0,10.0,11,0.37 +5538,,,,,,,,0, +54143,98.0,10.0,10.0,10.0,10.0,9.0,10.0,48,1.62 +68553,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +22925,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +50703,100.0,10.0,10.0,10.0,10.0,9.0,9.0,9,0.38 +8660,97.0,10.0,10.0,10.0,10.0,9.0,10.0,23,0.83 +36345,98.0,10.0,10.0,10.0,10.0,10.0,10.0,63,2.03 +67042,97.0,10.0,9.0,10.0,10.0,9.0,9.0,6,0.24 +63781,,,,,,,,0, +42518,94.0,10.0,9.0,10.0,10.0,8.0,9.0,18,0.91 +14600,96.0,10.0,9.0,10.0,10.0,10.0,10.0,11,0.35 +68751,95.0,10.0,10.0,10.0,10.0,10.0,9.0,13,0.69 +62058,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.07 +6626,77.0,8.0,7.0,8.0,8.0,8.0,8.0,21,0.66 +15411,,,,,,,,0, +61815,,,,,,,,0, +9506,83.0,9.0,8.0,10.0,10.0,10.0,10.0,6,0.2 +73108,99.0,10.0,10.0,10.0,10.0,9.0,10.0,15,0.49 +60376,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.1 +41121,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +40334,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.18 +15057,90.0,9.0,9.0,10.0,10.0,9.0,9.0,45,1.46 +17275,,,,,,,,0, +56943,95.0,10.0,9.0,10.0,10.0,9.0,9.0,48,1.53 +56728,,,,,,,,0, +43856,96.0,10.0,10.0,10.0,10.0,9.0,9.0,31,0.99 +16363,97.0,10.0,10.0,10.0,10.0,10.0,10.0,35,1.86 +67952,,,,,,,,0, +29589,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.44 +7819,93.0,9.0,7.0,9.0,10.0,9.0,9.0,4,0.13 +38921,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +59415,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.06 +11902,93.0,9.0,9.0,10.0,9.0,9.0,8.0,8,0.47 +10740,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.38 +50346,,,,,,,,0, +56430,,,,,,,,0, +32217,,,,,,,,0, +20164,,,,,,,,0, +62651,95.0,10.0,9.0,10.0,10.0,10.0,10.0,11,0.35 +60414,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.06 +48429,,,,,,,,0, +36613,93.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.15 +40493,93.0,10.0,10.0,9.0,10.0,9.0,9.0,21,0.89 +76003,99.0,10.0,10.0,10.0,10.0,9.0,10.0,19,1.41 +5881,96.0,10.0,9.0,10.0,10.0,10.0,10.0,55,1.73 +49583,95.0,10.0,9.0,10.0,10.0,9.0,10.0,208,6.72 +60217,98.0,10.0,9.0,10.0,10.0,10.0,10.0,26,1.33 +25032,79.0,9.0,8.0,9.0,9.0,10.0,8.0,34,1.11 +44829,94.0,10.0,9.0,10.0,10.0,9.0,10.0,28,0.91 +41595,87.0,9.0,9.0,9.0,9.0,10.0,9.0,75,2.38 +42391,85.0,9.0,9.0,10.0,10.0,10.0,10.0,4,0.13 +21948,93.0,10.0,9.0,9.0,10.0,9.0,9.0,16,0.54 +69823,80.0,9.0,8.0,10.0,10.0,9.0,10.0,3,0.1 +68114,,,,,,,,0, +74850,,,,,,,,0, +44132,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +688,94.0,9.0,10.0,10.0,10.0,8.0,9.0,18,0.91 +44335,97.0,10.0,10.0,10.0,10.0,10.0,9.0,7,0.22 +54996,96.0,10.0,10.0,10.0,10.0,9.0,9.0,12,0.38 +12913,100.0,10.0,9.0,10.0,10.0,9.0,10.0,9,0.3 +59457,86.0,9.0,9.0,9.0,10.0,10.0,9.0,7,0.23 +56259,98.0,10.0,10.0,10.0,10.0,10.0,9.0,8,0.27 +47555,100.0,10.0,10.0,10.0,10.0,10.0,10.0,35,1.11 +64772,98.0,10.0,10.0,10.0,10.0,10.0,10.0,19,0.65 +39115,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.1 +2804,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.26 +4023,97.0,10.0,9.0,10.0,10.0,10.0,10.0,50,1.98 +24914,88.0,9.0,9.0,9.0,10.0,9.0,9.0,23,0.78 +46130,90.0,9.0,8.0,9.0,9.0,9.0,9.0,12,0.39 +19498,,,,,,,,0, +24130,93.0,10.0,9.0,10.0,10.0,10.0,9.0,10,0.32 +67408,87.0,9.0,8.0,10.0,10.0,9.0,9.0,20,0.64 +15145,60.0,8.0,8.0,8.0,10.0,8.0,8.0,1,0.03 +40005,,,,,,,,0, +66648,,,,,,,,0, +57302,90.0,9.0,8.0,9.0,10.0,9.0,9.0,31,1.06 +46994,93.0,9.0,9.0,9.0,9.0,10.0,9.0,6,1.46 +55467,99.0,10.0,10.0,10.0,10.0,10.0,10.0,189,5.93 +30282,,,,,,,,0, +71848,98.0,10.0,10.0,10.0,10.0,10.0,10.0,24,0.77 +4322,99.0,10.0,10.0,10.0,10.0,10.0,10.0,21,0.71 +51229,,,,,,,,0, +30713,99.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.58 +59468,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.22 +13101,,,,,,,,0, +44932,100.0,10.0,10.0,10.0,8.0,8.0,10.0,1,0.06 +60501,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +30579,95.0,10.0,10.0,10.0,10.0,10.0,9.0,54,1.7 +17450,100.0,10.0,10.0,8.0,10.0,8.0,10.0,1,0.03 +10812,,,,,,,,0, +7133,,,,,,,,0, +51675,94.0,10.0,10.0,10.0,10.0,10.0,10.0,30,0.94 +7680,97.0,9.0,9.0,10.0,9.0,10.0,10.0,7,0.24 +36746,100.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.57 +34382,100.0,10.0,10.0,10.0,10.0,9.0,10.0,9,0.3 +74066,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.19 +1950,89.0,9.0,9.0,10.0,10.0,9.0,9.0,66,2.12 +50405,,,,,,,,0, +24524,,,,,,,,0, +11448,95.0,10.0,9.0,10.0,10.0,9.0,9.0,15,0.48 +70718,96.0,10.0,10.0,10.0,10.0,10.0,10.0,75,2.41 +4020,96.0,10.0,10.0,10.0,10.0,9.0,10.0,20,0.63 +43260,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.16 +31243,99.0,10.0,10.0,9.0,10.0,9.0,10.0,40,1.27 +697,,,,,,,,1,0.04 +47521,91.0,9.0,9.0,9.0,9.0,9.0,9.0,10,0.33 +35383,95.0,10.0,9.0,10.0,10.0,9.0,10.0,29,1.45 +44967,97.0,10.0,10.0,10.0,10.0,10.0,10.0,74,2.35 +49284,,,,,,,,0, +57184,98.0,10.0,10.0,10.0,10.0,9.0,10.0,26,0.86 +64544,,,,,,,,0, +29459,98.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.25 +74160,88.0,10.0,9.0,8.0,8.0,9.0,9.0,12,0.39 +8192,,,,,,,,0, +57278,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.17 +51731,,,,,,,,0, +20101,98.0,10.0,10.0,10.0,10.0,9.0,10.0,13,0.41 +25726,93.0,10.0,9.0,10.0,10.0,10.0,9.0,178,5.64 +24864,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.34 +36322,95.0,9.0,10.0,10.0,10.0,10.0,10.0,31,1.02 +25462,,,,,,,,0, +7547,93.0,10.0,9.0,9.0,10.0,10.0,9.0,46,1.48 +4498,92.0,10.0,10.0,10.0,10.0,10.0,10.0,48,1.53 +25885,90.0,10.0,9.0,10.0,10.0,10.0,9.0,28,0.9 +57990,96.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.48 +21098,72.0,8.0,7.0,8.0,7.0,8.0,9.0,13,0.42 +57670,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +42740,93.0,10.0,10.0,10.0,10.0,10.0,9.0,8,0.26 +43087,89.0,9.0,9.0,9.0,9.0,10.0,9.0,39,1.25 +69549,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.31 +44595,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.43 +21430,,,,,,,,0, +10930,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.08 +14471,99.0,10.0,10.0,10.0,10.0,9.0,9.0,30,0.98 +2164,,,,,,,,0, +51076,,,,,,,,0, +37521,90.0,8.0,8.0,9.0,10.0,10.0,9.0,2,0.07 +15924,97.0,10.0,10.0,10.0,10.0,10.0,10.0,113,3.65 +45724,,,,,,,,0, +66883,93.0,10.0,9.0,10.0,10.0,9.0,10.0,6,0.19 +35348,80.0,8.0,7.0,10.0,8.0,8.0,8.0,5,0.17 +4270,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.45 +74992,100.0,10.0,10.0,10.0,10.0,9.0,10.0,16,0.59 +856,,,,,,,,0, +58205,93.0,10.0,9.0,9.0,9.0,10.0,10.0,40,1.28 +47373,95.0,10.0,9.0,9.0,10.0,10.0,10.0,8,0.25 +65175,98.0,10.0,10.0,10.0,10.0,9.0,9.0,42,1.38 +49440,84.0,10.0,9.0,9.0,9.0,10.0,9.0,14,0.45 +8738,100.0,10.0,10.0,10.0,10.0,9.0,9.0,2,0.07 +32895,100.0,10.0,10.0,,10.0,,,1,0.06 +57374,93.0,10.0,9.0,10.0,9.0,10.0,9.0,11,0.41 +38297,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +8631,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.23 +10855,,,,,,,,0, +49509,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +65320,96.0,10.0,10.0,10.0,10.0,10.0,10.0,51,1.62 +75740,,,,,,,,0, +29676,90.0,10.0,9.0,10.0,10.0,9.0,10.0,10,0.34 +74385,96.0,10.0,10.0,10.0,10.0,9.0,9.0,51,1.65 +44386,92.0,9.0,9.0,10.0,10.0,9.0,9.0,15,0.48 +68552,93.0,10.0,10.0,10.0,10.0,9.0,10.0,9,0.35 +17785,96.0,10.0,10.0,10.0,10.0,10.0,10.0,58,2.18 +40781,84.0,9.0,8.0,9.0,9.0,9.0,9.0,95,3.04 +8486,,,,,,,,0, +35588,94.0,10.0,10.0,8.0,10.0,10.0,9.0,14,0.49 +66442,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.22 +43554,,,,,,,,1,0.03 +53430,,,,,,,,0, +30164,90.0,8.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +29506,100.0,10.0,10.0,,,,,2,0.07 +28078,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.94 +11927,93.0,9.0,9.0,10.0,10.0,9.0,9.0,17,0.56 +33046,100.0,10.0,10.0,10.0,10.0,9.0,10.0,17,0.54 +56162,20.0,6.0,6.0,8.0,2.0,4.0,4.0,1,0.03 +32915,,,,,,,,0, +20214,93.0,10.0,10.0,10.0,10.0,9.0,9.0,6,0.35 +22639,95.0,10.0,9.0,10.0,10.0,10.0,9.0,45,1.5 +725,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +11933,,,,,,,,0, +46125,88.0,9.0,9.0,9.0,9.0,10.0,9.0,10,0.32 +65229,94.0,10.0,8.0,10.0,10.0,10.0,10.0,18,0.6 +26133,60.0,7.0,4.0,10.0,10.0,6.0,7.0,2,0.08 +4062,98.0,10.0,10.0,10.0,10.0,10.0,10.0,116,5.26 +9909,100.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.59 +58361,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.11 +72878,98.0,10.0,10.0,10.0,10.0,9.0,10.0,28,0.89 +34600,91.0,10.0,9.0,9.0,10.0,10.0,9.0,7,0.26 +15997,96.0,10.0,10.0,9.0,9.0,10.0,9.0,15,0.56 +33700,,,,,,,,0, +60755,88.0,9.0,9.0,9.0,9.0,10.0,9.0,49,1.66 +40840,,,,,,,,0, +36185,100.0,10.0,9.0,10.0,10.0,10.0,9.0,10,0.36 +8110,93.0,10.0,9.0,10.0,10.0,10.0,8.0,6,1.08 +17467,,,,,,,,0, +1034,,,,,,,,0, +18076,,,,,,,,0, +20384,99.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.54 +26406,93.0,10.0,9.0,10.0,10.0,10.0,9.0,9,1.24 +27482,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +14890,87.0,9.0,9.0,9.0,9.0,9.0,9.0,25,0.79 +5869,,,,,,,,0, +74610,95.0,10.0,10.0,10.0,10.0,9.0,9.0,78,2.47 +53870,,,,,,,,0, +15981,89.0,10.0,8.0,10.0,9.0,9.0,9.0,10,0.33 +38603,90.0,10.0,10.0,9.0,10.0,10.0,10.0,2,0.1 +41466,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.08 +2736,100.0,10.0,10.0,10.0,10.0,10.0,10.0,20,0.67 +62609,96.0,10.0,9.0,10.0,10.0,10.0,9.0,31,1.01 +74397,,,,,,,,0, +74140,,,,,,,,0, +28542,,,,,,,,0, +20720,89.0,9.0,8.0,9.0,9.0,9.0,8.0,9,0.29 +74869,99.0,10.0,10.0,10.0,10.0,10.0,10.0,42,1.41 +17139,,,,,,,,0, +37782,,,,,,,,0, +64654,99.0,10.0,9.0,10.0,10.0,10.0,10.0,28,0.9 +33237,98.0,10.0,10.0,10.0,10.0,9.0,9.0,27,1.04 +63235,,,,,,,,0, +18502,80.0,9.0,9.0,7.0,7.0,10.0,8.0,3,0.13 +45815,95.0,10.0,9.0,10.0,10.0,10.0,9.0,12,0.41 +28522,,,,,,,,0, +58161,85.0,9.0,9.0,9.0,10.0,9.0,9.0,4,0.13 +52595,90.0,8.0,10.0,9.0,8.0,9.0,9.0,2,0.09 +56043,100.0,9.0,10.0,9.0,8.0,10.0,6.0,2,0.07 +21841,90.0,8.0,7.0,8.0,8.0,9.0,9.0,2,0.07 +12409,80.0,8.0,9.0,7.0,8.0,10.0,9.0,3,0.11 +37427,73.0,7.0,9.0,9.0,9.0,9.0,7.0,3,0.1 +61595,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.05 +75951,88.0,10.0,10.0,9.0,10.0,10.0,9.0,6,0.19 +74847,70.0,10.0,10.0,10.0,10.0,9.0,9.0,2,0.07 +62013,99.0,10.0,10.0,10.0,10.0,10.0,10.0,32,1.06 +19180,88.0,10.0,9.0,9.0,10.0,9.0,9.0,16,0.53 +60271,87.0,9.0,9.0,10.0,9.0,9.0,9.0,3,0.1 +37331,91.0,9.0,9.0,10.0,10.0,9.0,9.0,36,1.15 +8969,90.0,10.0,10.0,10.0,10.0,9.0,9.0,153,4.86 +52724,99.0,10.0,10.0,10.0,10.0,10.0,10.0,96,3.11 +61944,80.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.03 +55034,93.0,10.0,10.0,9.0,9.0,10.0,10.0,3,0.1 +73144,97.0,10.0,10.0,10.0,10.0,9.0,9.0,47,1.5 +39273,93.0,10.0,9.0,10.0,10.0,9.0,10.0,3,0.1 +9278,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +7417,96.0,10.0,10.0,10.0,10.0,10.0,9.0,26,0.86 +26701,93.0,10.0,9.0,10.0,10.0,9.0,9.0,10,0.32 +1862,93.0,9.0,8.0,9.0,10.0,8.0,9.0,6,0.2 +73699,94.0,10.0,10.0,10.0,10.0,10.0,9.0,21,0.67 +67101,96.0,10.0,10.0,10.0,10.0,10.0,10.0,25,0.84 +58942,20.0,2.0,2.0,2.0,2.0,6.0,2.0,2,0.06 +70817,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.21 +38619,90.0,9.0,9.0,10.0,10.0,10.0,8.0,22,0.72 +68560,,,,,,,,0, +21377,,,,,,,,0, +60361,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +26785,80.0,9.0,8.0,10.0,10.0,9.0,9.0,2,0.06 +2716,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +63203,40.0,4.0,6.0,8.0,8.0,6.0,6.0,1,0.27 +69249,90.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +29983,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +70640,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +27821,95.0,10.0,9.0,10.0,10.0,9.0,9.0,40,1.27 +13481,93.0,10.0,8.0,10.0,10.0,10.0,9.0,10,0.4 +45639,100.0,10.0,10.0,10.0,8.0,10.0,10.0,1,0.03 +44561,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.13 +66411,50.0,7.0,6.0,9.0,9.0,8.0,4.0,4,0.13 +36840,93.0,9.0,9.0,10.0,10.0,9.0,9.0,16,0.51 +27091,96.0,10.0,10.0,10.0,10.0,10.0,9.0,40,1.6 +23418,,,,,,,,0, +34202,67.0,7.0,7.0,7.0,9.0,7.0,7.0,3,0.1 +76020,,,,,,,,0, +3503,83.0,9.0,8.0,10.0,9.0,10.0,8.0,7,0.22 +60129,97.0,10.0,10.0,10.0,10.0,8.0,10.0,45,1.47 +44210,60.0,8.0,4.0,4.0,4.0,6.0,6.0,1,0.03 +32099,,,,,,,,0, +3479,96.0,10.0,10.0,10.0,10.0,9.0,10.0,28,0.9 +16611,100.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +37550,,,,,,,,0, +33150,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +64706,96.0,10.0,10.0,10.0,10.0,10.0,10.0,50,2.56 +43431,,,,,,,,0, +7348,94.0,10.0,9.0,10.0,10.0,9.0,9.0,7,0.24 +45462,,,,,,,,0, +71532,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.38 +58224,,,,,,,,0, +43396,,,,,,,,0, +32263,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +77043,92.0,10.0,9.0,10.0,10.0,9.0,9.0,11,0.35 +72869,,,,,,,,0, +31514,,,,,,,,0, +25571,,,,,,,,0, +9342,100.0,10.0,9.0,10.0,10.0,10.0,9.0,9,0.3 +66463,,,,,,,,0, +65140,98.0,10.0,10.0,10.0,10.0,10.0,10.0,21,0.68 +6569,100.0,9.0,10.0,10.0,10.0,10.0,10.0,2,0.08 +38219,84.0,10.0,8.0,10.0,9.0,10.0,9.0,5,0.17 +3238,100.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.08 +47008,,,,,,,,0, +68254,80.0,8.0,6.0,10.0,10.0,10.0,10.0,1,0.03 +49334,90.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.09 +62967,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +29708,95.0,10.0,10.0,10.0,10.0,9.0,9.0,87,2.76 +2697,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +18600,,,,,,,,0, +59453,80.0,10.0,8.0,10.0,10.0,8.0,10.0,2,0.07 +66872,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.29 +39896,,,,,,,,0, +49368,,,,,,,,0, +37170,96.0,10.0,10.0,10.0,10.0,10.0,10.0,140,4.54 +1721,98.0,10.0,10.0,10.0,10.0,10.0,9.0,34,1.92 +4181,97.0,10.0,10.0,10.0,10.0,10.0,10.0,31,0.99 +50339,95.0,10.0,9.0,10.0,10.0,10.0,9.0,20,0.67 +38819,90.0,9.0,9.0,9.0,9.0,10.0,9.0,4,0.14 +63429,96.0,10.0,9.0,10.0,10.0,9.0,9.0,113,3.63 +49256,,,,,,,,0, +11819,99.0,10.0,10.0,10.0,10.0,9.0,10.0,16,0.53 +8696,96.0,10.0,10.0,10.0,10.0,9.0,10.0,39,1.59 +15989,88.0,9.0,9.0,9.0,10.0,10.0,9.0,48,1.53 +11959,94.0,9.0,10.0,10.0,10.0,9.0,9.0,67,2.16 +38864,,,,,,,,0, +45564,80.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.06 +10817,,,,,,,,1,0.04 +61611,98.0,10.0,10.0,10.0,10.0,9.0,10.0,71,2.57 +50456,86.0,9.0,8.0,9.0,9.0,9.0,8.0,16,0.51 +36100,,,,,,,,0, +71859,100.0,10.0,10.0,10.0,10.0,8.0,10.0,2,0.06 +4028,99.0,10.0,10.0,10.0,10.0,10.0,10.0,24,0.77 +44539,97.0,10.0,9.0,10.0,10.0,9.0,10.0,51,1.66 +59262,,,,,,,,0, +72395,96.0,10.0,10.0,9.0,10.0,10.0,9.0,60,2.0 +65784,100.0,10.0,10.0,10.0,10.0,8.0,10.0,2,0.07 +25704,,,,,,,,0, +49517,99.0,10.0,10.0,10.0,10.0,9.0,10.0,38,1.28 +57023,,,,,,,,0, +9029,,,,,,,,0, +5758,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.27 +17722,96.0,10.0,9.0,10.0,10.0,9.0,10.0,6,0.2 +14545,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.16 +745,96.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.57 +33653,99.0,10.0,10.0,10.0,10.0,9.0,10.0,53,1.68 +52249,86.0,9.0,9.0,9.0,9.0,9.0,8.0,7,0.29 +42269,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.1 +637,,,,,,,,0, +14846,,,,,,,,0, +59079,99.0,10.0,10.0,10.0,10.0,10.0,10.0,44,1.45 +12077,100.0,10.0,10.0,10.0,10.0,10.0,10.0,32,1.05 +26896,73.0,8.0,6.0,7.0,8.0,9.0,7.0,3,0.1 +49832,90.0,10.0,10.0,9.0,10.0,9.0,9.0,2,0.06 +44140,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.65 +75046,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.34 +68739,99.0,10.0,10.0,10.0,10.0,10.0,10.0,66,2.51 +47823,,,,,,,,0, +52065,76.0,8.0,7.0,8.0,10.0,8.0,8.0,5,0.17 +63295,100.0,10.0,10.0,9.0,10.0,9.0,10.0,12,0.4 +18322,92.0,10.0,9.0,10.0,10.0,10.0,9.0,10,0.33 +36786,96.0,10.0,10.0,10.0,10.0,10.0,10.0,62,1.96 +5313,96.0,10.0,10.0,10.0,10.0,9.0,10.0,52,1.68 +52052,,,,,,,,0, +64214,90.0,9.0,8.0,9.0,9.0,9.0,9.0,31,1.0 +35605,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.2 +75694,92.0,9.0,9.0,10.0,10.0,10.0,9.0,28,0.94 +59891,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.34 +54215,97.0,10.0,10.0,10.0,10.0,10.0,10.0,38,1.24 +27415,93.0,10.0,9.0,10.0,10.0,10.0,9.0,9,0.3 +65100,96.0,10.0,10.0,10.0,10.0,10.0,10.0,23,0.74 +62247,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.22 +1201,98.0,10.0,10.0,10.0,10.0,10.0,10.0,26,0.85 +54587,,,,,,,,0, +54266,,,,,,,,0, +54704,,,,,,,,0, +9039,91.0,10.0,10.0,10.0,10.0,8.0,9.0,73,2.68 +71384,,,,,,,,0, +22948,,,,,,,,0, +61787,80.0,9.0,7.0,10.0,9.0,10.0,9.0,7,0.29 +39742,,,,,,,,0, +50781,97.0,10.0,10.0,10.0,10.0,10.0,10.0,37,2.08 +30801,99.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.54 +57146,95.0,10.0,10.0,10.0,10.0,10.0,10.0,30,0.97 +14760,,,,,,,,0, +20370,91.0,10.0,9.0,10.0,10.0,10.0,9.0,13,0.42 +38636,80.0,8.0,10.0,6.0,10.0,8.0,8.0,1,0.03 +67586,99.0,10.0,10.0,10.0,10.0,10.0,10.0,27,0.99 +47961,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +11504,,,,,,,,0, +8673,92.0,9.0,9.0,10.0,10.0,9.0,9.0,58,1.84 +42202,,,,,,,,0, +16650,60.0,6.0,6.0,10.0,8.0,8.0,2.0,1,0.04 +69114,91.0,9.0,10.0,10.0,10.0,10.0,9.0,7,0.37 +6784,93.0,10.0,9.0,10.0,10.0,9.0,9.0,69,2.25 +44111,100.0,10.0,,10.0,10.0,10.0,10.0,1,0.04 +62315,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +18483,94.0,10.0,10.0,10.0,10.0,9.0,10.0,61,2.02 +13668,95.0,10.0,10.0,10.0,10.0,9.0,10.0,168,5.36 +6564,98.0,10.0,9.0,10.0,10.0,10.0,10.0,19,0.61 +36832,100.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.6 +73712,,,,,,,,0, +6187,97.0,10.0,10.0,10.0,10.0,10.0,9.0,13,0.52 +56374,97.0,10.0,10.0,10.0,10.0,9.0,10.0,31,1.08 +16265,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +49098,100.0,8.0,8.0,10.0,10.0,10.0,10.0,2,0.07 +74664,,,,,,,,0, +58167,,,,,,,,1,0.08 +29005,,,,,,,,0, +23614,97.0,10.0,10.0,10.0,10.0,9.0,10.0,80,2.56 +59672,,,,,,,,0, +29587,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.26 +54067,97.0,10.0,10.0,10.0,10.0,10.0,10.0,110,3.53 +46500,99.0,10.0,10.0,10.0,10.0,10.0,10.0,95,3.04 +18696,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.3 +54799,,,,,,,,0, +69371,99.0,10.0,10.0,10.0,10.0,10.0,10.0,25,0.84 +36577,,,,,,,,0, +16080,,,,,,,,0, +6216,,,,,,,,0, +27733,,,,,,,,0, +23656,,,,,,,,0, +25949,96.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.31 +52681,93.0,9.0,9.0,10.0,9.0,10.0,10.0,19,0.63 +39783,91.0,9.0,9.0,9.0,9.0,10.0,9.0,115,3.69 +18441,,,,,,,,0, +40279,75.0,8.0,6.0,9.0,9.0,9.0,8.0,35,1.24 +56195,87.0,9.0,9.0,8.0,9.0,9.0,9.0,12,0.39 +11664,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +17122,70.0,4.0,2.0,2.0,9.0,9.0,7.0,2,0.06 +4105,,,,,,,,0, +38161,99.0,10.0,10.0,10.0,10.0,9.0,10.0,17,0.58 +50941,97.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.6 +39207,,,,,,,,0, +69687,,,,,,,,0, +55768,97.0,10.0,9.0,10.0,10.0,10.0,10.0,55,1.76 +2113,,,,,,,,0, +35292,,,,,,,,0, +67804,91.0,10.0,9.0,9.0,9.0,9.0,9.0,64,2.05 +72968,,,,,,,,0, +75052,97.0,10.0,10.0,10.0,10.0,9.0,10.0,61,1.99 +14926,92.0,10.0,9.0,10.0,10.0,9.0,9.0,30,1.05 +32481,80.0,8.0,6.0,4.0,4.0,6.0,6.0,2,0.07 +4577,,,,,,,,0, +3294,92.0,10.0,9.0,10.0,10.0,10.0,9.0,226,7.22 +28123,94.0,10.0,9.0,10.0,10.0,9.0,9.0,11,0.37 +33507,94.0,10.0,9.0,10.0,10.0,9.0,9.0,24,0.77 +41974,86.0,9.0,9.0,9.0,9.0,10.0,9.0,54,1.72 +28005,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.1 +23823,84.0,8.0,8.0,9.0,9.0,10.0,8.0,20,0.68 +21045,,,,,,,,0, +28723,92.0,10.0,9.0,10.0,10.0,9.0,9.0,91,2.9 +38119,90.0,10.0,9.0,9.0,10.0,10.0,9.0,2,0.07 +5997,,,,,,,,0, +27592,80.0,9.0,8.0,9.0,10.0,9.0,9.0,3,0.1 +19981,100.0,9.0,9.0,10.0,10.0,9.0,9.0,2,0.06 +77026,96.0,10.0,10.0,10.0,10.0,9.0,10.0,118,3.75 +17889,94.0,10.0,10.0,10.0,10.0,9.0,10.0,147,5.4 +19010,88.0,9.0,9.0,9.0,9.0,9.0,9.0,36,1.33 +10319,,,,,,,,0, +49375,,,,,,,,0, +73585,87.0,10.0,9.0,10.0,10.0,9.0,9.0,22,0.73 +59756,98.0,10.0,10.0,10.0,10.0,9.0,10.0,30,1.1 +32423,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.1 +19652,,,,,,,,0, +65044,91.0,10.0,8.0,10.0,10.0,10.0,9.0,23,0.78 +16648,,,,,,,,0, +41442,76.0,8.0,7.0,8.0,8.0,8.0,8.0,18,0.58 +36424,87.0,9.0,9.0,9.0,9.0,9.0,9.0,3,0.1 +63536,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.43 +35737,96.0,10.0,10.0,10.0,10.0,9.0,9.0,55,1.82 +4130,,,,,,,,0, +58642,80.0,8.0,7.0,10.0,10.0,9.0,9.0,4,0.14 +37639,,,,,,,,0, +32230,97.0,10.0,10.0,10.0,10.0,10.0,10.0,73,2.36 +31638,82.0,9.0,8.0,9.0,10.0,10.0,9.0,107,3.5 +3831,88.0,9.0,9.0,10.0,10.0,9.0,9.0,128,4.27 +41265,85.0,9.0,8.0,9.0,10.0,10.0,9.0,107,3.56 +35369,93.0,9.0,9.0,9.0,9.0,8.0,9.0,6,0.2 +24940,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.39 +45376,,,,,,,,0, +50826,,,,,,,,0, +32853,82.0,9.0,9.0,9.0,9.0,10.0,8.0,13,0.42 +21158,98.0,10.0,10.0,10.0,10.0,10.0,10.0,24,0.9 +33574,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +67570,89.0,10.0,9.0,9.0,9.0,10.0,9.0,114,3.67 +31388,98.0,10.0,10.0,10.0,10.0,10.0,10.0,54,1.72 +27034,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.03 +66066,,,,,,,,0, +3188,97.0,10.0,10.0,10.0,10.0,9.0,10.0,27,0.87 +34001,98.0,10.0,10.0,10.0,10.0,9.0,10.0,89,3.31 +16739,88.0,9.0,8.0,10.0,10.0,8.0,8.0,5,0.18 +48431,93.0,9.0,9.0,10.0,10.0,8.0,10.0,3,0.12 +4827,99.0,10.0,10.0,10.0,10.0,10.0,10.0,30,0.98 +8343,,,,,,,,1,0.03 +4271,100.0,10.0,10.0,10.0,10.0,10.0,10.0,31,1.01 +6634,,,,,,,,0, +36493,,,,,,,,0, +70950,93.0,10.0,9.0,10.0,10.0,10.0,9.0,48,1.56 +62629,84.0,9.0,8.0,10.0,9.0,9.0,9.0,32,1.03 +5972,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.46 +41886,89.0,9.0,9.0,10.0,10.0,10.0,9.0,56,1.92 +68892,90.0,10.0,9.0,10.0,10.0,9.0,9.0,8,0.8 +18037,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +76647,92.0,9.0,10.0,9.0,10.0,8.0,9.0,5,0.26 +41749,97.0,10.0,10.0,10.0,10.0,10.0,10.0,82,2.71 +32461,96.0,10.0,10.0,10.0,10.0,10.0,10.0,21,0.68 +34136,95.0,10.0,10.0,10.0,10.0,9.0,9.0,16,0.51 +75623,,,,,,,,0, +49574,94.0,10.0,10.0,10.0,10.0,9.0,10.0,10,0.33 +41910,96.0,10.0,9.0,10.0,10.0,10.0,10.0,7,0.22 +75042,,,,,,,,0, +23695,100.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.21 +75886,90.0,9.0,9.0,10.0,10.0,10.0,9.0,32,1.16 +56216,95.0,9.0,9.0,10.0,10.0,10.0,9.0,52,1.65 +72703,93.0,9.0,10.0,10.0,10.0,10.0,9.0,67,2.13 +37012,,,,,,,,0, +36269,99.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.44 +42452,95.0,10.0,10.0,10.0,9.0,10.0,10.0,24,0.84 +22833,98.0,10.0,9.0,10.0,10.0,10.0,10.0,21,0.7 +44427,87.0,10.0,8.0,10.0,10.0,10.0,9.0,33,1.13 +71956,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.58 +31959,,,,,,,,0, +74195,87.0,10.0,9.0,10.0,10.0,10.0,9.0,6,0.2 +9632,,,,,,,,1,0.03 +52430,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.13 +25708,,,,,,,,0, +47445,,,,,,,,0, +9784,92.0,10.0,9.0,10.0,10.0,9.0,9.0,83,2.69 +38188,,,,,,,,0, +53386,90.0,9.0,9.0,10.0,9.0,9.0,9.0,26,0.84 +41655,94.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.27 +73661,97.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.75 +54752,97.0,10.0,10.0,10.0,10.0,10.0,10.0,31,0.99 +33992,93.0,9.0,10.0,10.0,10.0,9.0,9.0,23,0.82 +31688,,,,,,,,0, +47713,92.0,10.0,9.0,10.0,10.0,9.0,9.0,20,0.75 +1506,93.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.1 +32946,,,,,,,,0, +53050,83.0,8.0,7.0,9.0,9.0,9.0,10.0,6,0.21 +38684,,,,,,,,0, +35536,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.21 +44701,96.0,10.0,10.0,10.0,10.0,9.0,10.0,136,4.36 +42118,94.0,10.0,10.0,10.0,10.0,9.0,10.0,22,0.74 +32455,84.0,9.0,7.0,9.0,9.0,9.0,9.0,189,6.14 +18490,,,,,,,,0, +69233,,,,,,,,0, +1169,90.0,9.0,10.0,9.0,9.0,9.0,8.0,6,0.21 +58507,73.0,7.0,9.0,9.0,9.0,8.0,7.0,5,0.16 +73599,,,,,,,,0, +48784,80.0,8.0,9.0,10.0,9.0,9.0,8.0,8,0.3 +43611,87.0,9.0,10.0,9.0,9.0,10.0,9.0,3,0.1 +26220,80.0,10.0,10.0,8.0,10.0,10.0,6.0,1,0.06 +53613,91.0,9.0,9.0,9.0,9.0,9.0,9.0,60,1.94 +49027,50.0,2.0,2.0,2.0,10.0,9.0,4.0,2,0.07 +29072,93.0,10.0,10.0,10.0,10.0,9.0,9.0,57,1.83 +23984,99.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.63 +58535,90.0,8.0,9.0,9.0,10.0,10.0,8.0,4,0.13 +53576,,,,,,,,0, +23820,90.0,8.0,10.0,10.0,9.0,10.0,9.0,5,0.16 +26978,100.0,10.0,10.0,9.0,10.0,9.0,10.0,8,0.26 +44521,91.0,9.0,9.0,9.0,9.0,9.0,9.0,18,0.59 +35795,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +69520,89.0,9.0,9.0,10.0,10.0,9.0,9.0,27,1.26 +44481,100.0,10.0,10.0,8.0,8.0,10.0,10.0,1,0.03 +8733,,,,,,,,2,0.06 +72665,100.0,10.0,9.0,10.0,10.0,9.0,10.0,5,0.17 +28915,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.07 +37719,84.0,9.0,8.0,9.0,9.0,9.0,9.0,105,3.39 +48455,,,,,,,,0, +7375,,,,,,,,0, +73216,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +15261,88.0,9.0,7.0,9.0,10.0,9.0,8.0,11,0.36 +34422,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.25 +34733,95.0,10.0,10.0,9.0,9.0,9.0,10.0,77,4.78 +45170,98.0,10.0,10.0,10.0,10.0,9.0,10.0,97,3.13 +71669,92.0,9.0,8.0,10.0,10.0,9.0,9.0,15,0.53 +74352,96.0,10.0,10.0,10.0,10.0,9.0,9.0,54,1.83 +52134,,,,,,,,0, +56357,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +70171,,,,,,,,0, +73963,100.0,10.0,10.0,10.0,10.0,10.0,10.0,34,1.16 +71692,93.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.75 +24204,93.0,10.0,9.0,9.0,10.0,10.0,10.0,9,0.29 +68476,93.0,10.0,10.0,10.0,10.0,9.0,9.0,116,4.1 +74505,96.0,10.0,9.0,10.0,10.0,10.0,9.0,85,3.38 +24734,,,,,,,,0, +28511,96.0,9.0,10.0,10.0,10.0,10.0,10.0,11,0.36 +66499,97.0,10.0,10.0,10.0,10.0,9.0,10.0,87,2.83 +7753,90.0,9.0,9.0,10.0,10.0,9.0,9.0,83,2.67 +22189,99.0,10.0,10.0,10.0,10.0,10.0,10.0,19,0.7 +47439,92.0,10.0,10.0,9.0,9.0,9.0,9.0,5,0.2 +60996,93.0,10.0,9.0,10.0,10.0,9.0,9.0,69,2.25 +74318,89.0,9.0,9.0,9.0,10.0,10.0,9.0,36,1.18 +31623,96.0,9.0,9.0,10.0,10.0,10.0,10.0,43,1.52 +64956,,,,,,,,0, +29573,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.17 +24213,,,,,,,,0, +19984,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.32 +51948,93.0,9.0,10.0,10.0,10.0,10.0,9.0,5,0.17 +34772,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +58466,,,,,,,,0, +30697,100.0,10.0,10.0,10.0,10.0,10.0,9.0,7,0.23 +44283,98.0,10.0,10.0,10.0,10.0,9.0,10.0,116,3.83 +7675,95.0,10.0,10.0,10.0,10.0,9.0,9.0,16,0.54 +3045,,,,,,,,0, +22939,94.0,10.0,9.0,10.0,10.0,10.0,10.0,10,0.63 +51234,96.0,10.0,10.0,10.0,10.0,9.0,10.0,23,1.44 +54158,,,,,,,,0, +1581,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +15433,,,,,,,,0, +60264,99.0,10.0,10.0,10.0,10.0,9.0,10.0,37,1.2 +43831,,,,,,,,0, +47482,96.0,10.0,10.0,10.0,10.0,10.0,10.0,71,2.28 +17877,92.0,9.0,9.0,10.0,10.0,9.0,9.0,98,3.21 +69423,96.0,10.0,10.0,10.0,10.0,10.0,9.0,90,2.94 +76196,88.0,9.0,9.0,10.0,10.0,9.0,9.0,26,0.86 +19935,,,,,,,,1,0.03 +73619,,,,,,,,0, +43696,94.0,9.0,9.0,9.0,10.0,9.0,9.0,32,1.03 +74004,100.0,10.0,10.0,10.0,10.0,10.0,10.0,87,3.19 +31402,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +30395,,,,,,,,0, +23202,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.1 +39386,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.47 +63828,75.0,7.0,6.0,10.0,9.0,9.0,9.0,4,0.13 +13874,97.0,10.0,10.0,10.0,10.0,10.0,10.0,155,4.95 +5551,98.0,10.0,10.0,10.0,10.0,10.0,10.0,55,1.86 +41403,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +22812,96.0,10.0,9.0,10.0,10.0,10.0,10.0,44,1.46 +63545,,,,,,,,0, +73804,95.0,9.0,10.0,9.0,9.0,10.0,9.0,20,0.66 +70650,97.0,10.0,10.0,9.0,10.0,10.0,10.0,76,2.9 +16134,92.0,10.0,10.0,9.0,10.0,10.0,9.0,18,0.59 +13214,83.0,8.0,9.0,9.0,9.0,9.0,8.0,6,0.19 +70378,98.0,10.0,10.0,10.0,10.0,10.0,10.0,97,3.13 +61695,90.0,10.0,10.0,10.0,10.0,9.0,9.0,7,0.23 +36502,91.0,9.0,9.0,10.0,10.0,10.0,9.0,23,0.78 +65872,90.0,10.0,8.0,10.0,10.0,8.0,9.0,2,0.33 +354,90.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.14 +22379,,,,,,,,0, +69641,,,,,,,,0, +63138,96.0,10.0,10.0,10.0,10.0,9.0,10.0,75,2.43 +30584,97.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.59 +73303,95.0,10.0,8.0,9.0,10.0,10.0,10.0,7,0.26 +91,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.1 +72481,93.0,10.0,10.0,9.0,10.0,10.0,10.0,6,0.2 +36331,,,,,,,,0, +63945,,,,,,,,1,0.04 +59020,98.0,10.0,10.0,10.0,10.0,10.0,10.0,46,1.52 +64471,,,,,,,,0, +28069,83.0,10.0,9.0,10.0,10.0,9.0,8.0,12,0.5 +18709,96.0,10.0,10.0,10.0,10.0,10.0,10.0,53,1.7 +69059,98.0,10.0,10.0,10.0,10.0,10.0,10.0,64,2.09 +6959,,,,,,,,0, +20094,100.0,9.0,10.0,10.0,10.0,10.0,10.0,2,0.08 +1263,100.0,10.0,10.0,10.0,10.0,8.0,9.0,6,0.21 +1046,97.0,10.0,9.0,10.0,10.0,10.0,9.0,29,0.93 +60005,93.0,9.0,9.0,10.0,10.0,10.0,9.0,20,0.66 +74900,,,,,,,,0, +42731,94.0,10.0,9.0,10.0,10.0,10.0,9.0,32,1.07 +18088,,,,,,,,1,0.03 +26282,96.0,10.0,9.0,10.0,10.0,10.0,10.0,34,1.16 +20288,98.0,10.0,10.0,10.0,10.0,10.0,10.0,47,1.54 +5892,,,,,,,,0, +76181,81.0,9.0,9.0,10.0,9.0,10.0,8.0,20,0.69 +75747,97.0,9.0,9.0,10.0,10.0,10.0,10.0,6,0.2 +59040,100.0,10.0,10.0,10.0,10.0,9.0,9.0,5,0.16 +68446,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.1 +35335,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.16 +44499,97.0,10.0,10.0,10.0,10.0,10.0,10.0,30,0.98 +2099,90.0,10.0,10.0,10.0,10.0,8.0,8.0,2,0.07 +12061,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +56158,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.32 +72176,90.0,10.0,10.0,10.0,10.0,10.0,9.0,6,2.37 +67642,100.0,8.0,8.0,8.0,8.0,8.0,8.0,2,0.44 +69506,95.0,10.0,9.0,10.0,9.0,9.0,9.0,12,0.39 +434,100.0,10.0,10.0,10.0,10.0,8.0,8.0,2,0.06 +42238,94.0,10.0,10.0,10.0,10.0,9.0,10.0,30,0.99 +1216,87.0,9.0,9.0,9.0,10.0,10.0,9.0,56,1.87 +64880,92.0,9.0,9.0,10.0,9.0,10.0,10.0,66,2.39 +67950,84.0,10.0,9.0,9.0,10.0,10.0,8.0,5,0.17 +4567,90.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +28313,,,,,,,,0, +45827,,,,,,,,0, +29579,,,,,,,,1,0.03 +21381,,,,,,,,0, +26712,100.0,10.0,9.0,10.0,10.0,10.0,10.0,9,0.3 +41312,96.0,10.0,9.0,10.0,10.0,10.0,10.0,23,0.8 +7642,88.0,9.0,9.0,9.0,9.0,10.0,9.0,54,1.75 +60340,96.0,10.0,10.0,9.0,10.0,10.0,10.0,9,0.31 +27477,,,,,,,,0, +7756,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +8832,77.0,8.0,8.0,9.0,8.0,10.0,7.0,8,0.4 +1254,95.0,10.0,10.0,10.0,10.0,10.0,10.0,20,0.95 +31980,67.0,8.0,8.0,10.0,9.0,10.0,7.0,6,0.36 +67370,,,,,,,,0, +68896,98.0,10.0,10.0,10.0,10.0,10.0,10.0,41,1.34 +57466,96.0,10.0,10.0,10.0,10.0,9.0,10.0,55,1.78 +34392,85.0,9.0,9.0,10.0,9.0,10.0,8.0,11,0.37 +6149,95.0,10.0,10.0,9.0,10.0,9.0,9.0,31,1.01 +35757,97.0,10.0,10.0,10.0,10.0,9.0,10.0,26,0.95 +65342,,,,,,,,0, +33282,80.0,8.0,8.0,10.0,10.0,10.0,8.0,1,0.03 +19934,100.0,10.0,10.0,10.0,10.0,10.0,10.0,20,1.16 +50907,84.0,9.0,8.0,9.0,9.0,9.0,9.0,37,1.29 +51435,,,,,,,,0, +53645,87.0,9.0,8.0,9.0,10.0,10.0,9.0,7,0.25 +28795,,,,,,,,0, +47490,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.2 +37656,95.0,10.0,9.0,10.0,10.0,9.0,10.0,12,0.43 +17222,,,,,,,,0, +24451,98.0,10.0,10.0,10.0,10.0,10.0,10.0,34,1.17 +43766,60.0,6.0,6.0,10.0,10.0,8.0,8.0,1,0.04 +33481,90.0,9.0,10.0,10.0,10.0,9.0,9.0,4,0.13 +26446,90.0,9.0,9.0,10.0,10.0,9.0,9.0,31,1.01 +34711,97.0,10.0,10.0,10.0,10.0,10.0,10.0,21,0.82 +43336,96.0,10.0,9.0,10.0,10.0,10.0,10.0,11,3.3 +74098,,,,,,,,0, +45767,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.14 +24272,,,,,,,,0, +42714,99.0,10.0,10.0,10.0,10.0,10.0,9.0,14,0.46 +65861,96.0,10.0,9.0,10.0,10.0,10.0,10.0,9,0.33 +28811,99.0,10.0,10.0,10.0,10.0,9.0,10.0,43,1.46 +64874,,,,,,,,0, +20951,100.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.29 +76846,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.14 +48403,,,,,,,,0, +22374,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.1 +24932,96.0,10.0,9.0,10.0,10.0,9.0,9.0,31,1.04 +23952,,,,,,,,0, +70687,98.0,10.0,10.0,10.0,10.0,9.0,9.0,19,0.69 +72883,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +72487,99.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.6 +12146,,,,,,,,0, +5216,96.0,10.0,9.0,10.0,10.0,10.0,10.0,6,0.2 +26299,96.0,10.0,10.0,10.0,10.0,9.0,10.0,48,1.65 +68825,94.0,9.0,9.0,10.0,10.0,10.0,9.0,65,2.09 +47858,90.0,10.0,8.0,10.0,10.0,10.0,10.0,6,0.21 +12153,97.0,10.0,10.0,10.0,10.0,10.0,10.0,22,0.72 +12763,,,,,,,,0, +7333,,,,,,,,0, +76295,,,,,,,,0, +12291,87.0,9.0,9.0,9.0,9.0,9.0,9.0,3,0.1 +74594,95.0,9.0,9.0,10.0,10.0,9.0,9.0,4,0.13 +63411,,,,,,,,0, +71208,,,,,,,,0, +21034,100.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.3 +5133,20.0,2.0,2.0,2.0,2.0,2.0,2.0,1,0.06 +6066,99.0,10.0,10.0,10.0,10.0,10.0,10.0,22,0.86 +59731,,,,,,,,0, +14596,,,,,,,,0, +26449,60.0,7.0,6.0,10.0,8.0,10.0,6.0,2,0.07 +58869,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.1 +72193,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.29 +38659,84.0,9.0,8.0,10.0,9.0,10.0,8.0,50,1.62 +58935,90.0,8.0,10.0,9.0,9.0,9.0,9.0,5,0.17 +17336,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +35492,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.13 +71852,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +59776,80.0,10.0,8.0,10.0,8.0,8.0,8.0,1,0.03 +25653,,,,,,,,0, +65664,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.27 +42962,85.0,9.0,9.0,9.0,9.0,10.0,8.0,36,1.21 +25864,80.0,8.0,8.0,8.0,10.0,8.0,6.0,1,0.04 +54113,,,,,,,,0, +35849,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.24 +57516,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.17 +56850,95.0,10.0,9.0,10.0,10.0,10.0,10.0,74,2.41 +11451,85.0,9.0,10.0,10.0,10.0,8.0,8.0,5,0.17 +5312,87.0,9.0,9.0,9.0,10.0,10.0,9.0,25,1.06 +70559,,,,,,,,0, +11465,60.0,8.0,4.0,8.0,8.0,8.0,8.0,1,0.03 +27244,,,,,,,,0, +17069,,,,,,,,0, +11551,97.0,10.0,10.0,10.0,10.0,9.0,10.0,23,0.79 +2558,92.0,9.0,9.0,9.0,9.0,9.0,9.0,5,0.29 +31005,93.0,9.0,9.0,10.0,9.0,10.0,9.0,8,0.87 +16879,60.0,10.0,10.0,2.0,6.0,10.0,8.0,1,0.03 +40667,,,,,,,,0, +20877,,,,,,,,0, +50354,94.0,10.0,9.0,10.0,10.0,10.0,10.0,38,1.36 +29836,,,,,,,,0, +1895,,,,,,,,0, +13615,98.0,10.0,10.0,10.0,10.0,10.0,10.0,33,1.12 +7368,96.0,10.0,9.0,10.0,10.0,10.0,8.0,5,0.18 +41283,90.0,10.0,10.0,6.0,9.0,10.0,10.0,3,0.1 +59635,97.0,10.0,9.0,10.0,10.0,9.0,10.0,51,1.65 +26543,,,,,,,,0, +8134,94.0,9.0,9.0,10.0,10.0,10.0,9.0,48,1.64 +12218,70.0,9.0,9.0,10.0,10.0,10.0,8.0,2,0.23 +5642,98.0,10.0,10.0,10.0,10.0,10.0,10.0,24,0.78 +8497,93.0,10.0,10.0,10.0,10.0,10.0,9.0,57,1.85 +56329,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +52967,95.0,10.0,8.0,10.0,10.0,10.0,9.0,15,0.5 +41775,90.0,10.0,10.0,10.0,10.0,9.0,9.0,4,0.28 +54216,94.0,10.0,9.0,10.0,10.0,10.0,10.0,10,0.34 +1898,,,,,,,,0, +17784,93.0,9.0,9.0,9.0,9.0,9.0,9.0,12,0.59 +71044,80.0,9.0,9.0,9.0,10.0,9.0,8.0,4,0.13 +34028,85.0,9.0,8.0,10.0,10.0,10.0,9.0,26,0.84 +50148,94.0,10.0,10.0,10.0,10.0,10.0,9.0,10,0.35 +68918,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.35 +16729,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.14 +63441,81.0,9.0,9.0,9.0,9.0,9.0,8.0,78,2.55 +23191,,,,,,,,0, +9719,80.0,10.0,10.0,8.0,6.0,10.0,8.0,1,0.03 +64531,93.0,9.0,9.0,10.0,9.0,9.0,9.0,62,2.06 +45294,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +63171,98.0,10.0,10.0,10.0,10.0,10.0,10.0,37,1.23 +63682,,,,,,,,2,0.07 +32072,91.0,10.0,10.0,10.0,9.0,9.0,9.0,32,1.04 +6764,80.0,8.0,8.0,9.0,9.0,10.0,9.0,3,0.1 +26945,98.0,10.0,10.0,10.0,10.0,10.0,10.0,81,2.67 +69713,79.0,9.0,10.0,9.0,9.0,8.0,8.0,17,0.59 +37600,97.0,10.0,10.0,10.0,10.0,9.0,9.0,31,1.03 +66905,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +42546,80.0,8.0,9.0,8.0,9.0,8.0,8.0,5,0.17 +34941,96.0,10.0,10.0,10.0,10.0,9.0,9.0,24,1.19 +16657,100.0,10.0,10.0,10.0,10.0,10.0,10.0,38,1.26 +13163,89.0,9.0,9.0,7.0,10.0,9.0,9.0,7,0.63 +61579,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.54 +42614,,,,,,,,0, +75596,,,,,,,,1,0.08 +61991,97.0,10.0,10.0,10.0,10.0,10.0,9.0,14,0.48 +352,,,,,,,,0, +1172,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +52542,80.0,10.0,8.0,,10.0,,,1,0.04 +24266,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.14 +56768,100.0,10.0,10.0,10.0,10.0,9.0,10.0,22,0.81 +47699,99.0,10.0,10.0,10.0,10.0,9.0,10.0,55,2.05 +72951,90.0,10.0,8.0,9.0,10.0,8.0,10.0,2,0.07 +70773,99.0,10.0,10.0,10.0,10.0,10.0,10.0,37,1.2 +55291,,,,,,,,1,0.03 +75817,94.0,10.0,10.0,10.0,10.0,9.0,9.0,16,0.52 +41302,,,,,,,,0, +47337,94.0,10.0,9.0,10.0,10.0,9.0,10.0,74,2.39 +5119,96.0,9.0,10.0,10.0,10.0,9.0,9.0,14,0.47 +29310,100.0,8.0,8.0,8.0,8.0,8.0,8.0,1,0.03 +8431,73.0,7.0,9.0,9.0,9.0,9.0,8.0,3,0.12 +51982,90.0,10.0,9.0,10.0,10.0,9.0,10.0,2,0.08 +69672,89.0,10.0,9.0,10.0,10.0,10.0,9.0,17,0.55 +67423,,,,,,,,0, +20876,97.0,10.0,10.0,10.0,10.0,10.0,10.0,123,4.91 +171,94.0,10.0,10.0,9.0,10.0,10.0,9.0,241,7.85 +20246,100.0,10.0,10.0,9.0,9.0,8.0,10.0,2,0.07 +76189,100.0,8.0,10.0,10.0,8.0,10.0,8.0,1,0.03 +64436,80.0,10.0,7.0,10.0,10.0,9.0,9.0,2,0.07 +76573,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +41053,93.0,9.0,9.0,10.0,10.0,10.0,10.0,7,0.26 +9722,,,,,,,,0, +6113,94.0,10.0,10.0,10.0,10.0,10.0,9.0,10,0.35 +44863,91.0,9.0,9.0,10.0,10.0,9.0,9.0,56,1.84 +2938,,,,,,,,0, +1125,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.19 +67917,,,,,,,,0, +53205,94.0,10.0,10.0,10.0,10.0,10.0,10.0,19,0.64 +35204,100.0,10.0,10.0,10.0,10.0,9.0,10.0,12,0.61 +59898,96.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.19 +64199,98.0,10.0,10.0,10.0,10.0,10.0,10.0,72,2.38 +7251,,,,,,,,1,0.03 +48646,,,,,,,,1,0.03 +48214,95.0,10.0,10.0,10.0,10.0,9.0,10.0,14,0.46 +16651,80.0,9.0,7.0,10.0,9.0,6.0,7.0,3,0.1 +66672,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +51276,,,,,,,,0, +36420,96.0,10.0,10.0,10.0,10.0,9.0,9.0,5,0.17 +1713,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.03 +38695,97.0,10.0,10.0,10.0,10.0,10.0,9.0,39,1.26 +67229,96.0,10.0,10.0,10.0,10.0,10.0,9.0,9,0.29 +48835,88.0,9.0,9.0,10.0,10.0,8.0,9.0,70,2.36 +1838,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.1 +1444,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.1 +20917,92.0,9.0,9.0,9.0,9.0,10.0,9.0,41,1.37 +18785,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.03 +54099,,,,,,,,0, +64947,100.0,10.0,10.0,10.0,10.0,9.0,10.0,15,0.51 +8443,96.0,10.0,10.0,10.0,10.0,9.0,10.0,19,0.65 +22094,100.0,9.0,10.0,10.0,10.0,9.0,10.0,3,0.12 +46688,,,,,,,,0, +9765,,,,,,,,0, +17077,95.0,10.0,9.0,10.0,10.0,10.0,10.0,11,0.37 +50004,,,,,,,,0, +64777,97.0,10.0,9.0,10.0,10.0,10.0,10.0,15,0.54 +36435,96.0,10.0,9.0,10.0,10.0,10.0,10.0,63,2.03 +76766,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.04 +1398,96.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.37 +6254,100.0,9.0,8.0,10.0,10.0,9.0,10.0,2,0.07 +45727,93.0,10.0,9.0,10.0,10.0,9.0,9.0,18,0.61 +1610,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.1 +25817,95.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.28 +19082,96.0,10.0,10.0,10.0,10.0,10.0,10.0,23,0.76 +70359,96.0,10.0,9.0,10.0,10.0,9.0,9.0,12,0.4 +15142,,,,,,,,0, +48650,95.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.6 +17000,92.0,10.0,10.0,10.0,9.0,10.0,10.0,5,0.27 +11446,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +7011,87.0,10.0,8.0,10.0,10.0,9.0,10.0,3,0.1 +42258,,,,,,,,0, +37253,,,,,,,,0, +2180,,,,,,,,0, +20796,94.0,10.0,9.0,10.0,10.0,10.0,9.0,37,1.25 +22175,98.0,10.0,10.0,10.0,10.0,9.0,10.0,20,0.7 +28376,,,,,,,,1,0.03 +7780,,,,,,,,0, +13693,87.0,9.0,9.0,9.0,8.0,10.0,9.0,3,0.1 +30756,76.0,8.0,8.0,9.0,9.0,10.0,8.0,11,0.35 +29030,100.0,10.0,10.0,10.0,8.0,10.0,8.0,3,0.35 +620,96.0,10.0,9.0,10.0,10.0,9.0,9.0,19,0.65 +39019,95.0,10.0,9.0,10.0,10.0,10.0,10.0,12,0.41 +29887,,,,,,,,0, +17191,82.0,9.0,9.0,9.0,9.0,8.0,8.0,38,1.22 +69281,84.0,9.0,9.0,9.0,9.0,8.0,9.0,44,1.45 +59340,89.0,9.0,9.0,10.0,10.0,9.0,9.0,24,0.77 +60686,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.07 +52859,92.0,9.0,10.0,9.0,9.0,9.0,9.0,17,0.58 +54357,84.0,9.0,8.0,10.0,10.0,9.0,8.0,10,0.35 +2106,99.0,10.0,10.0,10.0,10.0,10.0,10.0,27,0.88 +59094,90.0,9.0,10.0,10.0,10.0,10.0,9.0,44,1.53 +27472,96.0,10.0,10.0,10.0,10.0,9.0,9.0,10,0.39 +56076,92.0,9.0,9.0,10.0,10.0,10.0,10.0,6,0.19 +9157,,,,,,,,0, +45270,97.0,10.0,10.0,10.0,10.0,10.0,10.0,43,1.4 +33399,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +62832,,,,,,,,0, +27889,,,,,,,,0, +38607,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +22899,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.13 +50138,,,,,,,,0, +33261,,,,,,,,0, +37657,89.0,10.0,7.0,10.0,10.0,10.0,9.0,42,1.4 +15815,96.0,10.0,10.0,10.0,10.0,9.0,9.0,46,1.54 +17674,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.13 +66972,,,,,,,,0, +48276,,,,,,,,0, +61570,87.0,9.0,9.0,9.0,9.0,8.0,9.0,41,1.38 +63099,88.0,9.0,9.0,10.0,10.0,10.0,9.0,12,0.4 +28424,76.0,9.0,9.0,9.0,9.0,10.0,8.0,9,0.31 +9087,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.13 +50874,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.23 +14580,,,,,,,,0, +47340,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.13 +53328,90.0,8.0,9.0,9.0,9.0,9.0,9.0,2,0.07 +66317,91.0,9.0,9.0,10.0,9.0,10.0,9.0,70,2.39 +65471,95.0,10.0,9.0,10.0,10.0,9.0,9.0,23,0.78 +34654,80.0,8.0,10.0,10.0,9.0,9.0,8.0,2,0.07 +1788,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.42 +9498,96.0,10.0,10.0,10.0,10.0,10.0,9.0,80,2.61 +37565,98.0,10.0,10.0,10.0,10.0,9.0,10.0,13,0.62 +69917,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.18 +56849,,,,,,,,0, +48617,,,,,,,,0, +61472,80.0,9.0,9.0,10.0,9.0,10.0,9.0,201,6.5 +6454,84.0,9.0,9.0,9.0,10.0,8.0,9.0,24,0.8 +38546,,,,,,,,0, +43342,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.07 +67291,,,,,,,,0, +2136,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.39 +53709,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.08 +12101,,,,,,,,0, +56606,92.0,9.0,9.0,10.0,10.0,10.0,9.0,31,1.03 +14291,,,,,,,,0, +54943,,,,,,,,1,1.0 +22975,90.0,10.0,9.0,10.0,10.0,9.0,9.0,50,1.61 +12067,100.0,9.0,10.0,10.0,10.0,10.0,10.0,2,0.13 +67168,94.0,10.0,10.0,10.0,10.0,10.0,10.0,55,1.79 +31663,93.0,10.0,9.0,10.0,9.0,10.0,9.0,65,2.18 +11166,90.0,10.0,10.0,10.0,10.0,9.0,9.0,4,0.16 +58430,99.0,10.0,10.0,10.0,10.0,10.0,10.0,135,4.53 +60290,,,,,,,,0, +52235,92.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.18 +61017,,,,,,,,0, +48344,96.0,10.0,10.0,10.0,10.0,10.0,10.0,36,1.19 +48400,100.0,10.0,9.0,10.0,10.0,10.0,9.0,2,0.07 +72057,,,,,,,,0, +1855,,,,,,,,1,0.03 +62107,97.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.43 +16829,100.0,10.0,9.0,10.0,9.0,10.0,10.0,3,0.1 +56634,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.1 +72390,,,,,,,,0, +57016,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.03 +2494,94.0,9.0,9.0,10.0,10.0,10.0,10.0,41,1.34 +54094,80.0,6.0,6.0,8.0,10.0,8.0,8.0,1,0.03 +74777,73.0,8.0,8.0,9.0,9.0,9.0,8.0,52,1.68 +54800,83.0,9.0,9.0,9.0,9.0,9.0,9.0,100,3.24 +63981,85.0,9.0,9.0,10.0,9.0,9.0,9.0,81,2.64 +9236,98.0,10.0,10.0,10.0,10.0,10.0,9.0,54,1.81 +56568,,,,,,,,0, +14219,80.0,,,,10.0,8.0,8.0,1,0.03 +70140,87.0,9.0,8.0,10.0,10.0,9.0,9.0,3,0.1 +29540,,,,,,,,0, +58858,97.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.51 +21493,83.0,9.0,8.0,8.0,8.0,10.0,9.0,8,0.27 +5357,92.0,9.0,10.0,10.0,10.0,9.0,9.0,40,1.32 +45016,80.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.05 +47979,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.32 +43915,,,,,,,,0, +47936,,,,,,,,0, +72807,,,,,,,,0, +67900,,,,,,,,0, +72302,88.0,10.0,10.0,10.0,10.0,9.0,9.0,19,0.83 +43530,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.09 +25822,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +41723,95.0,9.0,10.0,10.0,10.0,10.0,9.0,20,0.69 +14396,,,,,,,,0, +28477,,,,,,,,0, +41064,95.0,10.0,10.0,10.0,10.0,9.0,10.0,144,4.83 +36061,90.0,9.0,10.0,10.0,8.0,10.0,10.0,2,0.07 +55229,91.0,10.0,9.0,10.0,10.0,10.0,9.0,21,0.68 +72517,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.45 +59304,91.0,9.0,9.0,10.0,10.0,9.0,9.0,106,3.45 +62095,100.0,10.0,10.0,10.0,10.0,10.0,10.0,41,1.36 +38706,93.0,10.0,8.0,10.0,10.0,10.0,10.0,10,0.35 +37409,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.13 +74753,,,,,,,,0, +174,100.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.06 +44069,92.0,9.0,8.0,9.0,8.0,10.0,9.0,6,0.32 +48418,93.0,9.0,9.0,10.0,10.0,9.0,9.0,38,1.26 +15104,89.0,9.0,9.0,10.0,9.0,9.0,9.0,43,1.43 +32594,93.0,9.0,9.0,10.0,9.0,10.0,9.0,40,1.3 +4054,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.07 +12608,88.0,9.0,9.0,10.0,10.0,9.0,9.0,45,1.49 +41125,,,,,,,,0, +22676,,,,,,,,0, +76258,,,,,,,,0, +61575,90.0,9.0,9.0,10.0,10.0,9.0,9.0,21,1.0 +20710,,,,,,,,0, +747,90.0,9.0,9.0,10.0,10.0,10.0,9.0,14,0.46 +52281,,,,,,,,0, +56978,,,,,,,,0, +76407,40.0,6.0,5.0,7.0,5.0,5.0,5.0,4,0.13 +62628,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.86 +3949,88.0,9.0,9.0,9.0,9.0,9.0,9.0,74,2.41 +21539,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +24618,98.0,10.0,10.0,10.0,10.0,10.0,10.0,23,0.76 +35042,100.0,10.0,2.0,6.0,10.0,6.0,10.0,1,0.03 +568,,,,,,,,1,0.03 +51810,55.0,5.0,5.0,5.0,7.0,7.0,5.0,4,0.14 +46027,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.07 +20301,,,,,,,,0, +35346,,,,,,,,0, +6099,97.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.31 +19822,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.07 +18005,90.0,9.0,9.0,9.0,9.0,9.0,9.0,2,0.07 +70704,99.0,10.0,10.0,10.0,10.0,10.0,10.0,22,0.92 +60026,,,,,,,,0, +65400,90.0,9.0,9.0,10.0,9.0,10.0,9.0,45,1.57 +56926,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.1 +7000,89.0,9.0,9.0,9.0,9.0,10.0,9.0,57,1.86 +16057,91.0,9.0,9.0,9.0,9.0,10.0,9.0,57,1.86 +68213,,,,,,,,0, +867,91.0,9.0,9.0,9.0,9.0,10.0,9.0,73,2.46 +29307,90.0,9.0,9.0,9.0,9.0,10.0,9.0,70,2.33 +28700,90.0,9.0,9.0,9.0,9.0,10.0,9.0,41,1.34 +54706,87.0,9.0,9.0,9.0,9.0,10.0,9.0,67,2.17 +30961,80.0,8.0,9.0,8.0,7.0,10.0,8.0,7,0.24 +65693,,,,,,,,0, +39381,95.0,10.0,9.0,10.0,10.0,9.0,10.0,27,0.89 +46198,,,,,,,,0, +51649,90.0,9.0,10.0,9.0,10.0,10.0,9.0,2,0.11 +20160,99.0,10.0,10.0,10.0,10.0,10.0,10.0,36,1.22 +17027,,,,,,,,0, +15419,,,,,,,,0, +54728,91.0,10.0,9.0,9.0,10.0,9.0,9.0,8,0.26 +58751,80.0,10.0,6.0,10.0,10.0,10.0,10.0,1,0.03 +30225,80.0,10.0,7.0,10.0,10.0,9.0,9.0,2,0.07 +6757,,,,,,,,0, +14312,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.47 +58752,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.1 +73979,,,,,,,,0, +75629,80.0,10.0,6.0,10.0,10.0,10.0,8.0,1,0.03 +50060,84.0,9.0,8.0,10.0,10.0,9.0,9.0,5,0.16 +24726,93.0,10.0,9.0,10.0,10.0,9.0,9.0,3,0.1 +1618,96.0,10.0,10.0,10.0,10.0,10.0,10.0,94,3.04 +74249,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.21 +15563,97.0,9.0,10.0,10.0,10.0,10.0,10.0,18,0.61 +32924,90.0,9.0,9.0,9.0,9.0,10.0,9.0,80,2.61 +966,80.0,10.0,8.0,6.0,6.0,10.0,6.0,1,0.22 +11471,98.0,10.0,10.0,10.0,10.0,10.0,10.0,21,0.71 +75536,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.36 +2745,90.0,9.0,9.0,10.0,10.0,10.0,10.0,2,0.07 +34442,,,,,,,,0, +45684,91.0,10.0,10.0,10.0,9.0,10.0,9.0,85,2.8 +30857,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.06 +44023,88.0,9.0,8.0,9.0,10.0,9.0,9.0,8,0.27 +65483,,,,,,,,0, +72619,,,,,,,,0, +46572,94.0,10.0,9.0,9.0,9.0,10.0,9.0,29,0.96 +23431,91.0,10.0,8.0,10.0,10.0,10.0,9.0,11,0.36 +24003,86.0,9.0,9.0,9.0,9.0,9.0,9.0,59,1.92 +1801,96.0,10.0,10.0,10.0,10.0,10.0,9.0,56,1.86 +55607,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.16 +28654,60.0,10.0,10.0,10.0,10.0,10.0,6.0,2,0.35 +21799,,,,,,,,0, +46515,96.0,10.0,10.0,10.0,10.0,10.0,10.0,80,2.67 +20187,,,,,,,,0, +31973,74.0,8.0,9.0,9.0,9.0,7.0,7.0,7,0.47 +25824,100.0,10.0,10.0,10.0,10.0,9.0,10.0,12,0.39 +16118,96.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.33 +60565,92.0,9.0,9.0,10.0,10.0,8.0,9.0,5,0.17 +32503,,,,,,,,0, +34684,91.0,10.0,9.0,10.0,10.0,10.0,9.0,90,2.91 +25542,,,,,,,,1,0.03 +9626,94.0,10.0,9.0,10.0,10.0,10.0,10.0,60,2.02 +26627,,,,,,,,0, +49224,80.0,10.0,6.0,10.0,10.0,10.0,10.0,1,0.03 +41790,91.0,10.0,10.0,10.0,10.0,10.0,9.0,254,8.28 +58871,85.0,9.0,9.0,8.0,9.0,9.0,8.0,11,0.6 +59984,,,,,,,,0, +3083,91.0,10.0,9.0,10.0,10.0,10.0,9.0,197,6.4 +25919,93.0,9.0,9.0,10.0,10.0,9.0,9.0,8,0.46 +63488,93.0,9.0,9.0,9.0,9.0,9.0,9.0,62,2.02 +38912,99.0,10.0,10.0,10.0,10.0,10.0,9.0,63,2.13 +69689,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.41 +69841,,,,,,,,0, +25752,100.0,10.0,10.0,10.0,10.0,10.0,10.0,27,0.91 +64238,80.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.03 +62258,90.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.13 +23838,96.0,10.0,10.0,10.0,10.0,10.0,9.0,9,0.31 +8429,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +67689,92.0,9.0,9.0,10.0,10.0,10.0,9.0,53,1.72 +30659,97.0,10.0,10.0,10.0,10.0,10.0,9.0,12,0.4 +38264,,,,,,,,0, +30333,93.0,9.0,9.0,10.0,10.0,9.0,9.0,9,0.3 +30908,98.0,9.0,10.0,10.0,10.0,9.0,10.0,12,0.41 +16496,,,,,,,,0, +40788,100.0,10.0,10.0,10.0,10.0,10.0,9.0,10,0.33 +44450,92.0,10.0,9.0,10.0,10.0,10.0,10.0,18,0.58 +53619,,,,,,,,1,0.03 +72857,80.0,9.0,9.0,10.0,10.0,8.0,8.0,11,0.36 +44686,100.0,9.0,10.0,10.0,10.0,10.0,10.0,3,0.1 +9401,95.0,10.0,10.0,10.0,10.0,9.0,10.0,75,2.45 +21673,100.0,10.0,9.0,10.0,9.0,10.0,10.0,4,0.19 +45730,,,,,,,,0, +56752,86.0,9.0,9.0,9.0,9.0,9.0,9.0,25,0.91 +16851,100.0,10.0,10.0,10.0,10.0,10.0,10.0,25,0.84 +51591,98.0,10.0,10.0,10.0,10.0,10.0,10.0,65,2.22 +26727,94.0,10.0,9.0,10.0,10.0,9.0,9.0,45,1.55 +76528,98.0,10.0,9.0,10.0,10.0,9.0,10.0,23,0.75 +41015,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.2 +1330,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.47 +9641,100.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.53 +13631,99.0,10.0,10.0,10.0,10.0,10.0,10.0,20,0.67 +35161,92.0,10.0,10.0,10.0,10.0,8.0,9.0,20,0.68 +29021,,,,,,,,0, +44301,100.0,10.0,10.0,10.0,10.0,10.0,10.0,24,0.82 +69994,96.0,10.0,10.0,10.0,10.0,10.0,10.0,37,1.24 +20767,,,,,,,,0, +15088,97.0,10.0,9.0,10.0,10.0,10.0,9.0,6,0.21 +9168,,,,,,,,0, +48113,91.0,10.0,9.0,10.0,10.0,9.0,9.0,32,1.13 +13619,94.0,10.0,9.0,10.0,10.0,10.0,9.0,10,0.58 +74487,,,,,,,,0, +8680,93.0,9.0,10.0,9.0,9.0,10.0,9.0,8,0.68 +65446,90.0,9.0,9.0,10.0,10.0,8.0,9.0,94,3.08 +46144,92.0,10.0,9.0,10.0,10.0,10.0,9.0,15,1.05 +51905,95.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.14 +71750,,,,,,,,0, +5944,97.0,10.0,10.0,10.0,10.0,9.0,10.0,38,1.25 +56828,89.0,9.0,8.0,10.0,10.0,9.0,9.0,20,0.65 +64818,92.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.17 +57029,97.0,10.0,10.0,10.0,10.0,10.0,10.0,29,1.09 +69408,84.0,9.0,8.0,10.0,9.0,9.0,9.0,68,2.21 +65676,95.0,10.0,10.0,10.0,10.0,10.0,10.0,40,1.3 +59241,90.0,9.0,8.0,10.0,10.0,10.0,9.0,71,2.3 +1755,97.0,10.0,9.0,10.0,10.0,10.0,10.0,15,0.52 +20137,99.0,10.0,10.0,10.0,10.0,10.0,10.0,108,3.52 +39762,,,,,,,,0, +65680,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.13 +36050,,,,,,,,0, +33775,,,,,,,,0, +43627,98.0,10.0,10.0,10.0,10.0,9.0,9.0,17,0.56 +4875,96.0,10.0,10.0,10.0,10.0,10.0,10.0,111,3.78 +53413,87.0,9.0,9.0,9.0,9.0,10.0,9.0,38,1.28 +42953,91.0,9.0,9.0,9.0,9.0,10.0,9.0,63,2.05 +29819,97.0,9.0,10.0,9.0,9.0,10.0,9.0,7,0.25 +38818,,,,,,,,0, +47747,,,,,,,,0, +47924,,,,,,,,0, +4508,98.0,10.0,10.0,10.0,10.0,9.0,10.0,33,1.27 +22730,98.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.37 +75391,80.0,9.0,7.0,9.0,9.0,8.0,8.0,5,0.17 +72195,100.0,10.0,10.0,8.0,10.0,8.0,10.0,1,0.03 +24761,99.0,10.0,10.0,10.0,10.0,10.0,10.0,132,4.32 +50863,93.0,10.0,9.0,10.0,10.0,10.0,10.0,9,0.34 +15314,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +47219,99.0,10.0,10.0,10.0,10.0,10.0,10.0,33,1.1 +50172,100.0,10.0,10.0,10.0,10.0,10.0,9.0,8,0.28 +67383,,,,,,,,0, +61516,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.07 +28975,,,,,,,,0, +9625,,,,,,,,0, +41688,100.0,10.0,10.0,10.0,10.0,8.0,10.0,2,0.06 +32034,87.0,9.0,9.0,9.0,9.0,9.0,9.0,3,0.1 +59174,,,,,,,,0, +76998,,,,,,,,0, +10044,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +20366,80.0,8.0,9.0,9.0,10.0,10.0,9.0,3,0.1 +56709,,,,,,,,0, +37695,82.0,8.0,7.0,9.0,9.0,8.0,8.0,129,4.2 +38681,,,,,,,,0, +29734,91.0,10.0,9.0,9.0,9.0,9.0,9.0,82,2.95 +72108,94.0,10.0,10.0,10.0,10.0,9.0,9.0,22,0.76 +779,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.07 +65728,93.0,9.0,9.0,9.0,9.0,10.0,9.0,15,0.87 +43518,,,,,,,,0, +46423,100.0,9.0,10.0,10.0,9.0,10.0,10.0,4,0.14 +37640,98.0,10.0,10.0,10.0,10.0,10.0,10.0,57,1.9 +70923,87.0,9.0,8.0,9.0,9.0,10.0,9.0,42,1.39 +33649,91.0,9.0,10.0,10.0,10.0,9.0,9.0,9,0.33 +23082,,,,,,,,0, +12088,,,,,,,,0, +22678,,,,,,,,0, +46033,,,,,,,,0, +43028,95.0,10.0,9.0,10.0,10.0,10.0,9.0,108,3.66 +20121,80.0,6.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +57094,99.0,10.0,10.0,10.0,10.0,10.0,10.0,28,0.91 +34113,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.1 +21803,80.0,10.0,8.0,10.0,10.0,6.0,10.0,1,0.04 +20322,98.0,10.0,10.0,10.0,10.0,10.0,9.0,10,0.33 +16945,95.0,10.0,10.0,9.0,10.0,9.0,10.0,4,0.13 +51103,76.0,9.0,9.0,9.0,9.0,8.0,8.0,9,0.31 +49446,93.0,9.0,8.0,10.0,10.0,9.0,9.0,17,0.56 +40571,92.0,10.0,9.0,9.0,10.0,10.0,9.0,72,2.36 +8438,95.0,10.0,9.0,9.0,10.0,10.0,9.0,122,4.12 +20968,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.55 +63924,97.0,10.0,10.0,10.0,10.0,10.0,9.0,27,0.99 +63692,97.0,10.0,10.0,10.0,10.0,10.0,10.0,20,0.69 +67057,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +40468,94.0,10.0,10.0,9.0,9.0,9.0,9.0,10,0.38 +63342,94.0,10.0,9.0,9.0,10.0,10.0,9.0,7,0.24 +1831,89.0,10.0,9.0,10.0,9.0,9.0,9.0,39,1.34 +31249,99.0,10.0,10.0,10.0,10.0,10.0,10.0,93,3.12 +8025,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +44509,100.0,9.0,9.0,10.0,10.0,10.0,10.0,6,0.2 +43245,,,,,,,,0, +12006,98.0,10.0,10.0,10.0,10.0,10.0,10.0,22,0.77 +37604,90.0,9.0,9.0,10.0,10.0,10.0,9.0,4,0.13 +51784,100.0,10.0,9.0,10.0,10.0,9.0,10.0,2,0.07 +61880,91.0,9.0,9.0,10.0,9.0,9.0,9.0,60,2.1 +47214,94.0,10.0,9.0,10.0,10.0,10.0,9.0,47,1.54 +70498,100.0,10.0,9.0,10.0,10.0,10.0,9.0,2,0.87 +53155,99.0,10.0,10.0,10.0,10.0,10.0,10.0,71,2.32 +27967,98.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.37 +44092,100.0,10.0,9.0,10.0,10.0,10.0,9.0,4,0.13 +64110,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.17 +11949,94.0,10.0,9.0,10.0,9.0,10.0,9.0,29,0.97 +10393,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +65943,91.0,9.0,8.0,10.0,10.0,10.0,9.0,16,0.54 +68533,80.0,9.0,9.0,9.0,10.0,8.0,9.0,6,0.2 +68646,91.0,9.0,9.0,9.0,9.0,10.0,9.0,94,3.05 +46528,80.0,8.0,9.0,8.0,9.0,9.0,8.0,3,0.1 +18275,93.0,10.0,9.0,10.0,10.0,9.0,9.0,9,0.31 +71229,98.0,10.0,10.0,10.0,10.0,9.0,10.0,180,5.95 +51131,80.0,8.0,4.0,8.0,8.0,10.0,6.0,1,0.03 +71698,96.0,10.0,10.0,10.0,10.0,10.0,9.0,48,1.56 +63405,96.0,10.0,10.0,10.0,10.0,10.0,10.0,21,0.71 +20533,96.0,10.0,9.0,10.0,10.0,9.0,9.0,17,0.56 +54392,,,,,,,,0, +5032,,,,,,,,0, +61182,,,,,,,,0, +13817,,,,,,,,0, +60204,,,,,,,,0, +65957,91.0,9.0,9.0,10.0,10.0,9.0,9.0,19,0.67 +8636,89.0,9.0,9.0,9.0,10.0,10.0,9.0,37,1.21 +13325,,,,,,,,0, +338,,,,,,,,1,0.03 +40415,100.0,10.0,10.0,10.0,10.0,6.0,8.0,1,0.04 +26576,100.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.23 +69681,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.04 +54221,85.0,8.0,8.0,9.0,9.0,9.0,9.0,16,0.54 +21847,,,,,,,,0, +7997,90.0,10.0,9.0,10.0,10.0,9.0,9.0,9,0.31 +2420,83.0,9.0,9.0,10.0,9.0,10.0,9.0,47,1.58 +37584,,,,,,,,0, +30528,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +15091,85.0,9.0,9.0,10.0,9.0,10.0,9.0,31,1.08 +20722,99.0,10.0,10.0,10.0,10.0,10.0,10.0,130,4.33 +35962,62.0,5.0,6.0,6.0,6.0,8.0,6.0,10,0.33 +22817,,,,,,,,0, +55954,,,,,,,,1,0.04 +71862,100.0,10.0,10.0,9.0,10.0,10.0,10.0,5,0.16 +70066,79.0,9.0,9.0,8.0,8.0,8.0,8.0,35,1.15 +28381,96.0,10.0,10.0,10.0,10.0,9.0,10.0,26,1.38 +8726,90.0,10.0,9.0,10.0,10.0,10.0,9.0,12,0.46 +49884,99.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.51 +26793,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.1 +7442,98.0,10.0,9.0,10.0,10.0,10.0,10.0,101,3.28 +9302,,,,,,,,0, +29816,82.0,8.0,9.0,9.0,9.0,9.0,9.0,32,1.04 +74407,78.0,8.0,9.0,8.0,8.0,9.0,8.0,40,1.33 +32970,,,,,,,,0, +27421,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +2219,,,,,,,,0, +33768,,,,,,,,0, +52311,,,,,,,,0, +58537,90.0,10.0,7.0,10.0,10.0,10.0,10.0,2,0.07 +12569,,,,,,,,0, +70258,,,,,,,,0, +28217,,,,,,,,0, +64815,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.12 +74553,91.0,9.0,8.0,10.0,10.0,10.0,9.0,162,5.6 +21074,83.0,9.0,8.0,10.0,10.0,9.0,9.0,6,0.2 +6323,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +47869,94.0,10.0,10.0,10.0,10.0,10.0,9.0,44,1.6 +40452,95.0,10.0,10.0,10.0,10.0,10.0,9.0,50,1.81 +39678,93.0,9.0,9.0,9.0,9.0,9.0,9.0,9,0.34 +36968,70.0,6.0,6.0,6.0,9.0,7.0,7.0,2,0.44 +11862,99.0,10.0,9.0,10.0,10.0,9.0,10.0,30,1.13 +44798,93.0,9.0,10.0,10.0,10.0,9.0,9.0,19,0.64 +16077,76.0,10.0,8.0,8.0,9.0,10.0,8.0,5,0.17 +26973,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +42670,93.0,9.0,8.0,10.0,10.0,10.0,9.0,6,0.3 +12998,95.0,10.0,9.0,10.0,10.0,10.0,10.0,137,4.51 +36535,96.0,10.0,9.0,10.0,10.0,9.0,10.0,107,3.56 +54136,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +34806,80.0,8.0,10.0,8.0,8.0,8.0,10.0,1,0.03 +14130,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.33 +16795,,,,,,,,0, +19125,93.0,10.0,9.0,9.0,9.0,9.0,9.0,49,1.65 +21530,98.0,10.0,10.0,10.0,10.0,10.0,10.0,37,1.22 +1326,,,,,,,,1,0.03 +12593,90.0,9.0,8.0,10.0,10.0,9.0,9.0,2,0.23 +73820,60.0,6.0,2.0,10.0,10.0,8.0,8.0,1,0.03 +66136,95.0,10.0,9.0,10.0,10.0,10.0,9.0,26,0.86 +57962,89.0,9.0,9.0,10.0,10.0,10.0,9.0,103,3.4 +74898,98.0,10.0,9.0,10.0,10.0,9.0,10.0,46,1.57 +74416,,,,,,,,0, +34972,,,,,,,,0, +16522,91.0,10.0,9.0,10.0,10.0,10.0,9.0,9,0.32 +63918,94.0,10.0,10.0,10.0,10.0,10.0,10.0,31,1.04 +68032,97.0,10.0,10.0,10.0,10.0,9.0,10.0,50,1.65 +56221,84.0,9.0,9.0,10.0,9.0,10.0,9.0,46,1.53 +32710,,,,,,,,0, +19992,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.14 +64320,87.0,10.0,9.0,10.0,9.0,10.0,9.0,36,1.2 +31544,85.0,9.0,9.0,9.0,10.0,10.0,9.0,57,1.9 +60134,91.0,9.0,9.0,9.0,10.0,9.0,9.0,55,1.82 +8762,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.23 +21595,80.0,8.0,9.0,9.0,10.0,10.0,8.0,2,0.07 +58426,98.0,10.0,10.0,10.0,10.0,10.0,10.0,52,1.74 +50967,93.0,9.0,9.0,10.0,9.0,10.0,9.0,53,1.86 +43006,96.0,10.0,9.0,10.0,10.0,10.0,9.0,34,1.15 +55084,60.0,10.0,4.0,10.0,8.0,6.0,6.0,1,0.03 +25932,97.0,10.0,10.0,10.0,10.0,10.0,10.0,34,1.13 +57198,95.0,10.0,10.0,8.0,10.0,10.0,9.0,4,0.14 +52472,80.0,7.0,9.0,10.0,9.0,10.0,9.0,2,0.07 +62336,100.0,9.0,7.0,10.0,10.0,9.0,8.0,2,0.07 +67617,90.0,7.0,7.0,7.0,9.0,9.0,8.0,6,0.45 +31393,85.0,9.0,8.0,9.0,9.0,8.0,9.0,135,4.45 +40842,97.0,10.0,10.0,10.0,10.0,9.0,10.0,36,1.19 +32286,,,,,,,,0, +41719,94.0,9.0,10.0,10.0,10.0,10.0,9.0,10,0.33 +16053,,,,,,,,0, +51104,90.0,9.0,9.0,9.0,10.0,9.0,9.0,142,4.62 +49641,95.0,10.0,10.0,10.0,10.0,9.0,10.0,44,1.61 +24352,,,,,,,,0, +17863,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.34 +32501,,,,,,,,0, +19672,86.0,9.0,9.0,10.0,10.0,9.0,9.0,50,1.69 +24321,,,,,,,,0, +63422,,,,,,,,1,0.03 +37161,99.0,10.0,10.0,10.0,10.0,9.0,10.0,18,0.6 +70390,,,,,,,,0, +27261,92.0,9.0,9.0,9.0,9.0,8.0,9.0,12,0.4 +39212,96.0,10.0,10.0,10.0,10.0,10.0,10.0,40,1.34 +31236,90.0,9.0,9.0,10.0,10.0,9.0,10.0,2,0.07 +35053,76.0,7.0,7.0,8.0,8.0,8.0,8.0,5,0.77 +965,,,,,,,,0, +35358,,,,,,,,0, +62964,,,,,,,,0, +15260,,,,,,,,1,0.03 +43637,91.0,9.0,9.0,9.0,10.0,10.0,9.0,7,0.24 +10336,90.0,9.0,9.0,10.0,10.0,9.0,9.0,20,0.66 +27105,100.0,10.0,10.0,10.0,10.0,8.0,10.0,2,0.06 +64753,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.07 +27465,100.0,10.0,10.0,10.0,10.0,10.0,9.0,19,0.75 +8888,97.0,9.0,9.0,9.0,10.0,9.0,10.0,13,0.44 +56194,,,,,,,,0, +69180,,,,,,,,1,0.03 +32105,,,,,,,,0, +23321,97.0,10.0,10.0,10.0,10.0,10.0,10.0,98,3.28 +73220,99.0,10.0,10.0,10.0,10.0,10.0,10.0,37,1.22 +63022,90.0,9.0,8.0,10.0,10.0,9.0,9.0,2,0.07 +3874,85.0,9.0,9.0,9.0,9.0,9.0,9.0,52,1.72 +49034,,,,,,,,0, +54793,100.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.6 +2590,93.0,10.0,9.0,9.0,10.0,10.0,9.0,32,1.09 +53681,100.0,10.0,9.0,10.0,10.0,10.0,8.0,2,0.07 +67639,,,,,,,,0, +44291,,,,,,,,0, +11222,,,,,,,,0, +2066,,,,,,,,0, +800,100.0,10.0,9.0,10.0,10.0,8.0,10.0,2,0.07 +54952,,,,,,,,0, +16873,95.0,9.0,8.0,9.0,9.0,10.0,10.0,8,0.27 +33586,91.0,9.0,9.0,9.0,9.0,10.0,8.0,14,0.47 +50142,80.0,10.0,9.0,9.0,9.0,10.0,9.0,6,0.2 +8324,77.0,8.0,8.0,9.0,9.0,10.0,8.0,219,7.28 +55469,99.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.56 +47763,97.0,10.0,9.0,10.0,10.0,9.0,10.0,6,0.21 +73838,85.0,9.0,9.0,9.0,10.0,9.0,9.0,23,0.75 +50913,91.0,10.0,10.0,10.0,10.0,10.0,9.0,63,2.1 +42992,,,,,,,,0, +30540,100.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.14 +61652,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.21 +54297,96.0,9.0,9.0,9.0,10.0,9.0,9.0,11,0.52 +65569,,,,,,,,0, +58797,80.0,8.0,8.0,8.0,6.0,10.0,10.0,1,0.04 +40876,,,,,,,,0, +18727,92.0,10.0,10.0,10.0,9.0,9.0,9.0,24,0.85 +59185,,,,,,,,0, +19357,91.0,9.0,9.0,10.0,10.0,9.0,9.0,63,2.1 +56479,96.0,10.0,10.0,10.0,10.0,9.0,10.0,22,0.73 +10008,98.0,10.0,10.0,10.0,10.0,8.0,10.0,15,0.53 +10803,,,,,,,,0, +3574,82.0,9.0,8.0,9.0,8.0,9.0,9.0,15,0.5 +38137,98.0,10.0,10.0,10.0,10.0,10.0,10.0,55,2.03 +54666,82.0,9.0,8.0,10.0,9.0,9.0,8.0,12,0.39 +56092,84.0,9.0,8.0,9.0,8.0,9.0,9.0,8,0.27 +14188,80.0,8.0,8.0,10.0,10.0,10.0,8.0,1,0.03 +67525,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.11 +15637,,,,,,,,0, +29314,,,,,,,,0, +4221,,,,,,,,0, +71634,,,,,,,,0, +7517,93.0,9.0,10.0,10.0,10.0,8.0,10.0,38,1.25 +55302,90.0,10.0,10.0,10.0,9.0,10.0,10.0,7,0.24 +27623,99.0,10.0,10.0,10.0,10.0,9.0,10.0,95,3.64 +24068,92.0,10.0,9.0,10.0,10.0,10.0,9.0,233,7.61 +4660,100.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.62 +32180,,,,,,,,0, +28328,,,,,,,,0, +62598,96.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.57 +73707,98.0,10.0,9.0,10.0,10.0,10.0,10.0,8,0.29 +52454,,,,,,,,0, +13066,95.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.13 +31584,,,,,,,,0, +70256,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +31417,91.0,9.0,9.0,10.0,10.0,9.0,9.0,14,0.54 +74077,,,,,,,,0, +420,95.0,10.0,10.0,10.0,10.0,10.0,9.0,13,0.44 +44771,93.0,9.0,10.0,10.0,10.0,9.0,10.0,16,0.61 +24379,80.0,9.0,8.0,10.0,9.0,9.0,8.0,11,0.36 +24398,86.0,8.0,9.0,10.0,10.0,9.0,9.0,10,0.33 +5838,90.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +33355,92.0,10.0,10.0,10.0,10.0,10.0,9.0,131,4.31 +21435,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +64738,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +38964,,,,,,,,0, +27187,95.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.13 +66251,96.0,10.0,9.0,10.0,10.0,10.0,10.0,39,1.35 +58589,100.0,10.0,10.0,10.0,10.0,10.0,10.0,45,1.53 +37835,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.34 +40974,98.0,10.0,10.0,10.0,10.0,10.0,10.0,62,2.07 +70342,97.0,10.0,9.0,10.0,10.0,10.0,10.0,65,2.19 +2519,95.0,10.0,9.0,10.0,10.0,10.0,9.0,27,0.9 +64421,92.0,10.0,9.0,9.0,10.0,9.0,10.0,102,3.37 +18732,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.33 +36388,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.03 +61494,95.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.32 +2261,,,,,,,,0, +9721,96.0,10.0,10.0,10.0,10.0,10.0,10.0,19,0.7 +22377,98.0,9.0,10.0,10.0,10.0,9.0,10.0,12,0.46 +12271,100.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.2 +57114,90.0,9.0,9.0,10.0,9.0,9.0,9.0,10,0.34 +71105,99.0,10.0,10.0,10.0,10.0,10.0,10.0,29,0.97 +52422,93.0,10.0,10.0,10.0,10.0,8.0,9.0,3,0.11 +61245,80.0,8.0,4.0,10.0,10.0,10.0,10.0,1,0.04 +10201,73.0,9.0,6.0,9.0,10.0,9.0,9.0,3,0.11 +22485,95.0,9.0,10.0,10.0,10.0,9.0,10.0,4,0.25 +17297,97.0,10.0,10.0,10.0,10.0,10.0,10.0,25,0.91 +24074,92.0,10.0,9.0,10.0,10.0,10.0,10.0,13,0.43 +67034,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.1 +48567,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +4329,96.0,10.0,10.0,10.0,10.0,10.0,10.0,132,4.49 +43046,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.23 +50022,96.0,10.0,10.0,10.0,10.0,10.0,10.0,87,2.91 +21327,99.0,10.0,10.0,10.0,10.0,9.0,10.0,167,5.53 +70821,47.0,4.0,5.0,5.0,5.0,6.0,6.0,3,0.1 +48701,100.0,10.0,10.0,10.0,10.0,9.0,9.0,14,0.48 +23437,98.0,10.0,10.0,10.0,10.0,10.0,10.0,20,0.7 +38869,,,,,,,,0, +5383,96.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.37 +59856,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +61016,95.0,9.0,9.0,10.0,10.0,10.0,9.0,21,0.72 +43947,,,,,,,,2,0.07 +41180,91.0,9.0,10.0,10.0,10.0,10.0,10.0,7,0.23 +67773,94.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.5 +60800,,,,,,,,0, +5048,100.0,10.0,10.0,10.0,9.0,10.0,10.0,2,0.07 +15494,,,,,,,,0, +33089,,,,,,,,0, +71566,,,,,,,,0, +51860,,,,,,,,0, +5676,98.0,10.0,10.0,10.0,10.0,9.0,10.0,9,0.34 +32475,100.0,10.0,9.0,10.0,10.0,10.0,9.0,12,0.41 +30970,,,,,,,,0, +61717,,,,,,,,0, +40430,,,,,,,,0, +34384,93.0,10.0,9.0,10.0,10.0,9.0,9.0,148,4.91 +52181,91.0,10.0,9.0,9.0,9.0,9.0,9.0,19,0.65 +48834,,,,,,,,0, +60294,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +50320,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +42682,,,,,,,,0, +5761,100.0,10.0,10.0,10.0,10.0,10.0,10.0,135,4.56 +10447,97.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.44 +7791,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.14 +19829,98.0,10.0,10.0,10.0,10.0,10.0,10.0,69,2.43 +29974,88.0,9.0,9.0,10.0,10.0,10.0,9.0,6,0.2 +44525,,,,,,,,0, +4790,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +57144,99.0,10.0,10.0,10.0,10.0,10.0,10.0,53,1.74 +32405,90.0,10.0,8.0,9.0,9.0,9.0,10.0,2,0.07 +16005,94.0,10.0,8.0,9.0,10.0,10.0,10.0,7,0.23 +60834,89.0,9.0,9.0,10.0,10.0,9.0,9.0,26,0.9 +72827,100.0,10.0,10.0,10.0,10.0,10.0,10.0,47,1.62 +71737,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.21 +59520,95.0,10.0,9.0,9.0,10.0,9.0,9.0,33,1.13 +37564,97.0,10.0,10.0,10.0,10.0,10.0,10.0,35,1.17 +11246,98.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.37 +57837,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.13 +68392,95.0,10.0,10.0,10.0,10.0,9.0,10.0,31,1.02 +9362,,,,,,,,0, +63032,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +70517,,,,,,,,0, +47827,,,,,,,,0, +53466,96.0,10.0,10.0,10.0,10.0,9.0,10.0,22,0.73 +12311,40.0,4.0,2.0,6.0,6.0,6.0,4.0,2,0.07 +73773,96.0,10.0,10.0,10.0,10.0,9.0,9.0,60,1.98 +39487,80.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.04 +70941,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.41 +39568,90.0,9.0,10.0,10.0,10.0,10.0,10.0,4,0.14 +39180,,,,,,,,0, +64393,100.0,10.0,10.0,10.0,10.0,10.0,8.0,2,0.16 +8393,80.0,10.0,10.0,8.0,10.0,10.0,8.0,2,0.07 +29847,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.13 +26137,93.0,10.0,9.0,10.0,10.0,9.0,10.0,3,0.26 +21220,80.0,8.0,6.0,8.0,8.0,8.0,8.0,1,0.03 +5120,100.0,10.0,10.0,10.0,10.0,10.0,10.0,60,2.21 +24854,80.0,10.0,6.0,10.0,10.0,10.0,10.0,1,0.03 +37011,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.44 +27600,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.33 +9405,,,,,,,,0, +49936,,,,,,,,0, +38422,,,,,,,,1,0.04 +70073,99.0,10.0,10.0,10.0,10.0,10.0,10.0,40,1.36 +31156,95.0,10.0,10.0,10.0,10.0,10.0,10.0,12,1.78 +33554,80.0,8.0,8.0,8.0,8.0,8.0,8.0,1,0.03 +68634,,,,,,,,0, +76287,92.0,9.0,9.0,10.0,10.0,9.0,9.0,32,1.07 +68143,95.0,9.0,9.0,10.0,10.0,8.0,9.0,16,0.55 +39451,86.0,9.0,10.0,10.0,10.0,10.0,10.0,11,0.37 +15782,89.0,9.0,10.0,10.0,10.0,10.0,9.0,15,0.51 +70001,,,,,,,,0, +38950,98.0,10.0,10.0,10.0,10.0,10.0,10.0,21,0.71 +47421,80.0,10.0,8.0,,,,,1,0.04 +67171,,,,,,,,0, +71499,,,,,,,,0, +59965,98.0,10.0,10.0,10.0,10.0,10.0,9.0,12,0.41 +64377,100.0,10.0,9.0,9.0,10.0,10.0,10.0,5,1.72 +72194,97.0,10.0,10.0,10.0,10.0,9.0,9.0,21,0.71 +60905,95.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.56 +42442,,,,,,,,0, +53509,,,,,,,,0, +64388,98.0,10.0,10.0,10.0,10.0,9.0,10.0,169,5.63 +60543,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.27 +48907,92.0,10.0,9.0,9.0,9.0,9.0,9.0,11,0.37 +76376,,,,,,,,0, +67324,,,,,,,,0, +38330,98.0,10.0,10.0,10.0,10.0,10.0,10.0,62,2.04 +9356,94.0,10.0,9.0,10.0,10.0,9.0,10.0,32,1.06 +73209,,,,,,,,0, +55647,97.0,10.0,9.0,10.0,10.0,10.0,9.0,6,0.21 +2906,,,,,,,,0, +45963,96.0,10.0,10.0,10.0,10.0,10.0,10.0,22,1.45 +35953,99.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.64 +12421,94.0,10.0,9.0,9.0,10.0,10.0,9.0,65,2.3 +14060,83.0,8.0,9.0,10.0,9.0,10.0,8.0,6,0.2 +19767,97.0,10.0,10.0,10.0,10.0,10.0,10.0,79,2.59 +56354,100.0,10.0,10.0,8.0,10.0,10.0,8.0,1,0.03 +3289,95.0,10.0,9.0,10.0,10.0,9.0,9.0,29,0.97 +60855,92.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.25 +34400,,,,,,,,0, +57054,92.0,9.0,9.0,9.0,9.0,10.0,9.0,20,0.66 +359,90.0,9.0,9.0,9.0,10.0,10.0,9.0,14,0.47 +67459,,,,,,,,0, +19643,87.0,9.0,9.0,9.0,10.0,10.0,9.0,3,0.11 +5458,85.0,9.0,9.0,8.0,9.0,9.0,9.0,12,0.4 +73161,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +19661,91.0,10.0,9.0,9.0,9.0,8.0,9.0,14,0.47 +61348,94.0,10.0,10.0,9.0,10.0,10.0,9.0,21,0.72 +64439,93.0,9.0,9.0,10.0,10.0,10.0,9.0,28,0.93 +22992,,,,,,,,0, +15741,,,,,,,,0, +19425,,,,,,,,0, +9013,,,,,,,,0, +55613,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.1 +31427,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.07 +59341,,,,,,,,2,0.07 +46279,87.0,9.0,9.0,10.0,10.0,8.0,9.0,24,0.82 +61329,86.0,9.0,9.0,9.0,10.0,9.0,8.0,25,3.73 +49054,,,,,,,,1,0.03 +64906,100.0,9.0,10.0,10.0,9.0,10.0,9.0,3,0.1 +35550,93.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.14 +74662,95.0,10.0,10.0,9.0,10.0,10.0,9.0,12,1.57 +76097,93.0,10.0,9.0,10.0,10.0,10.0,9.0,9,0.31 +23819,98.0,10.0,10.0,10.0,10.0,10.0,10.0,63,2.13 +52722,100.0,10.0,8.0,10.0,10.0,9.0,9.0,2,0.38 +50702,87.0,9.0,9.0,8.0,9.0,9.0,9.0,9,0.3 +64507,86.0,9.0,9.0,9.0,10.0,10.0,9.0,32,1.06 +20537,98.0,10.0,9.0,10.0,10.0,9.0,10.0,9,0.31 +788,,,,,,,,0, +60694,98.0,10.0,10.0,10.0,10.0,9.0,10.0,55,1.86 +54410,89.0,8.0,8.0,10.0,10.0,8.0,9.0,16,0.53 +14390,,,,,,,,0, +39861,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +26473,20.0,4.0,2.0,8.0,8.0,8.0,2.0,1,0.07 +3746,,,,,,,,0, +37494,100.0,8.0,8.0,10.0,10.0,8.0,8.0,1,0.06 +50230,95.0,10.0,9.0,10.0,10.0,10.0,10.0,13,0.44 +18163,,,,,,,,0, +2056,98.0,10.0,10.0,10.0,10.0,10.0,10.0,136,4.63 +68233,20.0,4.0,10.0,10.0,4.0,10.0,4.0,2,0.07 +36161,95.0,10.0,10.0,10.0,9.0,10.0,10.0,61,2.02 +59011,98.0,10.0,9.0,10.0,10.0,9.0,10.0,43,1.45 +46491,,,,,,,,0, +76779,,,,,,,,0, +24160,89.0,9.0,8.0,9.0,10.0,9.0,9.0,24,0.79 +48893,90.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.07 +33645,40.0,6.0,2.0,8.0,6.0,8.0,,1,0.04 +68620,91.0,10.0,9.0,10.0,9.0,10.0,9.0,17,0.56 +46114,,,,,,,,0, +52157,80.0,10.0,7.0,9.0,9.0,7.0,8.0,2,0.24 +64306,94.0,9.0,9.0,9.0,10.0,8.0,9.0,36,1.18 +12410,,,,,,,,0, +35378,96.0,10.0,9.0,10.0,10.0,9.0,9.0,45,1.75 +22929,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +76710,83.0,9.0,8.0,10.0,10.0,9.0,9.0,111,3.89 +4635,98.0,10.0,9.0,10.0,10.0,10.0,9.0,21,0.69 +11507,93.0,10.0,9.0,10.0,10.0,10.0,9.0,36,1.18 +65401,,,,,,,,0, +67547,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +57589,97.0,10.0,10.0,10.0,10.0,10.0,10.0,35,1.16 +58574,79.0,9.0,8.0,9.0,9.0,9.0,8.0,106,3.81 +68852,78.0,8.0,8.0,8.0,8.0,10.0,8.0,21,0.71 +57923,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.2 +50644,,,,,,,,0, +50669,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +15977,73.0,8.0,7.0,9.0,9.0,9.0,8.0,101,3.43 +50158,,,,,,,,0, +49570,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +62231,,,,,,,,0, +72367,94.0,9.0,9.0,10.0,10.0,9.0,10.0,25,1.13 +17033,96.0,10.0,10.0,10.0,9.0,9.0,10.0,11,0.37 +51280,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.12 +36839,90.0,9.0,7.0,10.0,9.0,10.0,9.0,2,0.07 +65779,,,,,,,,0, +145,93.0,9.0,8.0,10.0,10.0,10.0,9.0,4,0.13 +69865,,,,,,,,0, +30858,,,,,,,,0, +44148,94.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.49 +40186,92.0,9.0,9.0,10.0,10.0,10.0,9.0,13,0.43 +29659,96.0,10.0,10.0,10.0,10.0,10.0,10.0,84,2.77 +68642,,,,,,,,1,0.03 +5016,,,,,,,,0, +11827,96.0,10.0,10.0,10.0,10.0,10.0,9.0,10,0.37 +57479,94.0,9.0,10.0,9.0,9.0,9.0,10.0,7,0.23 +54127,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.14 +1393,,,,,,,,0, +51393,,,,,,,,0, +39162,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +42250,100.0,10.0,8.0,8.0,10.0,10.0,10.0,1,0.03 +76326,80.0,7.0,8.0,10.0,10.0,9.0,8.0,2,0.07 +76870,97.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.32 +15779,92.0,9.0,9.0,10.0,10.0,9.0,9.0,36,1.22 +32469,95.0,10.0,10.0,10.0,10.0,10.0,10.0,22,0.74 +15489,88.0,10.0,9.0,9.0,9.0,10.0,9.0,37,1.22 +46007,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.19 +23532,86.0,9.0,8.0,9.0,10.0,9.0,9.0,117,3.99 +28913,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +3543,,,,,,,,0, +68364,83.0,9.0,7.0,9.0,10.0,10.0,9.0,109,3.7 +34637,96.0,10.0,9.0,9.0,9.0,10.0,10.0,5,0.17 +36571,,,,,,,,0, +47035,93.0,9.0,10.0,10.0,9.0,10.0,9.0,3,0.11 +61396,,,,,,,,0, +25679,,,,,,,,0, +53844,,,,,,,,0, +38007,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +40941,97.0,10.0,10.0,10.0,10.0,10.0,10.0,101,3.35 +4831,,,,,,,,0, +17097,100.0,10.0,10.0,10.0,10.0,10.0,9.0,9,0.32 +38456,,,,,,,,0, +22066,100.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.98 +5954,80.0,8.0,10.0,10.0,10.0,10.0,6.0,1,0.05 +37497,97.0,10.0,9.0,10.0,10.0,9.0,10.0,43,1.41 +46165,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.03 +39525,93.0,10.0,8.0,10.0,10.0,9.0,9.0,10,0.33 +11599,20.0,2.0,2.0,2.0,2.0,4.0,2.0,1,0.04 +18036,,,,,,,,0, +40428,96.0,10.0,10.0,10.0,10.0,10.0,10.0,39,1.32 +66764,,,,,,,,0, +26175,98.0,10.0,10.0,10.0,10.0,9.0,10.0,28,1.09 +14721,,,,,,,,2,0.07 +1129,83.0,9.0,9.0,10.0,10.0,10.0,9.0,21,0.8 +16176,98.0,10.0,10.0,10.0,10.0,10.0,10.0,22,0.78 +70989,83.0,8.0,8.0,8.0,9.0,9.0,9.0,14,0.58 +11498,98.0,10.0,10.0,10.0,10.0,10.0,10.0,30,1.02 +70579,90.0,10.0,6.0,10.0,10.0,10.0,9.0,2,0.07 +37671,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.35 +13201,,,,,,,,0, +21032,98.0,10.0,9.0,10.0,10.0,9.0,10.0,9,0.3 +68873,,,,,,,,0, +33180,90.0,9.0,10.0,10.0,10.0,9.0,10.0,4,0.13 +22391,,,,,,,,0, +45637,100.0,10.0,10.0,10.0,10.0,9.0,9.0,11,0.36 +48525,,,,,,,,0, +18974,,,,,,,,0, +59143,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.42 +24550,74.0,9.0,7.0,9.0,10.0,9.0,7.0,7,0.25 +10587,20.0,2.0,2.0,4.0,2.0,4.0,2.0,1,0.04 +51871,100.0,10.0,10.0,9.0,10.0,9.0,9.0,4,0.13 +27595,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.17 +37597,87.0,8.0,8.0,9.0,10.0,9.0,9.0,23,0.77 +14032,87.0,9.0,9.0,9.0,9.0,8.0,8.0,7,0.24 +19525,94.0,9.0,10.0,10.0,10.0,9.0,9.0,37,1.24 +47535,,,,,,,,0, +60093,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.32 +50593,100.0,10.0,10.0,9.0,10.0,10.0,9.0,2,0.07 +23338,80.0,10.0,8.0,10.0,10.0,10.0,8.0,2,0.07 +45907,94.0,10.0,9.0,9.0,10.0,9.0,9.0,29,0.97 +19215,80.0,8.0,8.0,8.0,8.0,8.0,8.0,1,0.06 +27686,98.0,10.0,10.0,10.0,10.0,10.0,9.0,20,0.67 +50336,97.0,10.0,10.0,10.0,10.0,10.0,10.0,55,1.82 +64883,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.2 +58328,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +52715,,,,,,,,0, +39780,94.0,9.0,9.0,10.0,10.0,9.0,9.0,10,0.39 +36305,90.0,9.0,8.0,9.0,9.0,8.0,9.0,2,0.48 +3113,,,,,,,,0, +42646,98.0,10.0,10.0,10.0,10.0,10.0,10.0,66,2.23 +53511,96.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.52 +74037,,,,,,,,0, +73405,89.0,10.0,9.0,10.0,10.0,9.0,9.0,20,0.67 +57414,,,,,,,,0, +44994,90.0,10.0,9.0,10.0,10.0,9.0,9.0,24,0.81 +74497,93.0,10.0,9.0,10.0,10.0,10.0,9.0,16,0.54 +65794,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.15 +5713,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.46 +69631,99.0,10.0,10.0,10.0,10.0,9.0,10.0,49,1.64 +75191,95.0,10.0,9.0,10.0,10.0,9.0,9.0,28,1.03 +65307,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.37 +76450,,,,,,,,0, +11103,,,,,,,,0, +64537,,,,,,,,0, +25435,93.0,10.0,9.0,9.0,10.0,10.0,10.0,8,0.27 +40024,97.0,10.0,10.0,9.0,10.0,10.0,10.0,6,0.2 +57645,98.0,10.0,10.0,10.0,10.0,10.0,10.0,37,1.28 +65347,94.0,10.0,9.0,10.0,10.0,9.0,9.0,118,3.96 +33000,90.0,9.0,9.0,10.0,10.0,10.0,9.0,4,0.14 +53767,88.0,9.0,8.0,10.0,10.0,10.0,9.0,24,0.84 +59317,,,,,,,,0, +41677,,,,,,,,0, +17544,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.11 +36624,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.2 +12033,80.0,8.0,6.0,6.0,8.0,10.0,8.0,2,0.09 +37369,93.0,10.0,8.0,8.0,10.0,9.0,9.0,3,0.11 +39075,,,,,,,,0, +24305,80.0,8.0,6.0,10.0,10.0,8.0,8.0,1,0.03 +26239,,,,,,,,0, +48016,,,,,,,,0, +22602,99.0,10.0,10.0,10.0,10.0,10.0,10.0,101,3.86 +16745,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.1 +37996,80.0,9.0,10.0,10.0,9.0,10.0,9.0,2,0.1 +45985,98.0,10.0,10.0,10.0,10.0,9.0,10.0,21,0.72 +37531,,,,,,,,0, +48108,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.26 +30479,80.0,8.0,8.0,8.0,8.0,8.0,8.0,1,0.03 +22662,,,,,,,,0, +8233,94.0,10.0,9.0,10.0,10.0,9.0,9.0,116,4.04 +70505,93.0,10.0,9.0,10.0,9.0,10.0,10.0,13,0.44 +75766,87.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.1 +12114,89.0,9.0,10.0,9.0,8.0,9.0,9.0,7,0.27 +64318,,,,,,,,0, +61137,,,,,,,,0, +54182,84.0,9.0,9.0,10.0,10.0,10.0,8.0,10,0.38 +31262,,,,,,,,0, +724,87.0,9.0,10.0,10.0,10.0,9.0,9.0,3,0.1 +34011,90.0,10.0,10.0,10.0,10.0,10.0,9.0,3,3.0 +42207,80.0,10.0,10.0,10.0,10.0,8.0,8.0,1,1.0 +39574,,,,,,,,0, +47020,,,,,,,,0, +42920,,,,,,,,0, +36642,,,,,,,,0, +1973,100.0,9.0,10.0,10.0,10.0,10.0,9.0,2,1.22 +8892,,,,,,,,0, +75762,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +51461,87.0,9.0,9.0,10.0,10.0,10.0,9.0,3,0.1 +69556,95.0,10.0,9.0,10.0,10.0,9.0,10.0,12,0.4 +36248,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.19 +6019,80.0,8.0,6.0,10.0,10.0,10.0,8.0,2,0.07 +29552,87.0,8.0,9.0,8.0,9.0,9.0,7.0,3,1.25 +54878,,,,,,,,6,0.2 +61797,90.0,10.0,9.0,9.0,10.0,10.0,9.0,2,0.07 +51523,,,,,,,,0, +45605,,,,,,,,0, +67775,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.14 +43707,,,,,,,,0, +30590,,,,,,,,0, +31441,,,,,,,,1,0.03 +65458,96.0,9.0,8.0,10.0,9.0,10.0,9.0,6,0.29 +27280,91.0,9.0,10.0,10.0,10.0,8.0,9.0,42,1.54 +43202,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.4 +6429,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.07 +66444,100.0,9.0,7.0,10.0,10.0,9.0,9.0,3,0.11 +42106,87.0,10.0,9.0,10.0,10.0,9.0,10.0,3,0.11 +31662,100.0,10.0,10.0,10.0,10.0,10.0,10.0,23,0.77 +38017,80.0,10.0,8.0,8.0,10.0,8.0,8.0,1,0.03 +54810,87.0,9.0,8.0,10.0,10.0,9.0,9.0,27,0.9 +18338,98.0,10.0,10.0,10.0,10.0,9.0,10.0,31,1.04 +69835,92.0,10.0,9.0,10.0,10.0,9.0,10.0,55,1.82 +75608,85.0,8.0,10.0,9.0,8.0,9.0,9.0,8,0.28 +18111,97.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.24 +55436,,,,,,,,0, +16843,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +12425,,,,,,,,0, +10477,94.0,10.0,10.0,10.0,10.0,9.0,9.0,94,3.16 +49737,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.1 +38025,81.0,9.0,8.0,9.0,9.0,10.0,8.0,28,0.93 +74033,95.0,10.0,10.0,10.0,10.0,9.0,10.0,91,3.06 +28166,60.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +13544,,,,,,,,0, +58325,95.0,10.0,9.0,10.0,10.0,9.0,10.0,11,0.37 +62304,90.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.16 +71375,98.0,10.0,10.0,10.0,10.0,10.0,10.0,25,0.86 +22547,95.0,10.0,8.0,10.0,10.0,9.0,10.0,11,0.37 +50921,,,,,,,,1,0.03 +44323,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +11077,96.0,10.0,10.0,10.0,10.0,10.0,9.0,35,1.17 +57513,,,,,,,,0, +14362,90.0,9.0,9.0,10.0,10.0,8.0,9.0,2,0.11 +53346,81.0,9.0,9.0,9.0,9.0,9.0,8.0,63,2.13 +32819,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +35135,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.26 +68657,98.0,10.0,10.0,10.0,10.0,9.0,10.0,46,2.35 +36374,90.0,9.0,8.0,10.0,10.0,9.0,9.0,2,0.07 +46608,93.0,10.0,10.0,10.0,10.0,9.0,9.0,17,0.59 +53009,,,,,,,,0, +54554,,,,,,,,0, +48350,90.0,10.0,9.0,10.0,9.0,9.0,9.0,2,0.07 +70002,89.0,9.0,9.0,10.0,10.0,9.0,9.0,44,1.47 +44516,89.0,9.0,10.0,9.0,10.0,9.0,9.0,7,0.25 +39165,99.0,10.0,10.0,10.0,10.0,10.0,10.0,25,0.87 +16539,88.0,10.0,9.0,9.0,10.0,10.0,9.0,8,0.27 +16685,,,,,,,,1,0.03 +55542,80.0,8.0,10.0,2.0,2.0,8.0,8.0,1,0.03 +48415,91.0,10.0,9.0,10.0,10.0,8.0,9.0,11,0.38 +59246,96.0,10.0,10.0,10.0,10.0,10.0,10.0,62,2.04 +4247,90.0,9.0,9.0,10.0,9.0,10.0,9.0,71,2.48 +34782,93.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.18 +63220,98.0,10.0,9.0,10.0,10.0,10.0,10.0,39,1.31 +73897,98.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.36 +15236,,,,,,,,0, +8095,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.39 +29665,,,,,,,,0, +35421,86.0,9.0,7.0,9.0,9.0,9.0,9.0,29,0.97 +22158,97.0,10.0,10.0,10.0,10.0,10.0,10.0,41,1.49 +4906,75.0,9.0,7.0,9.0,9.0,10.0,9.0,4,0.13 +53924,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.07 +7153,88.0,9.0,9.0,10.0,10.0,10.0,10.0,13,0.43 +59893,90.0,10.0,9.0,10.0,9.0,10.0,10.0,2,0.07 +71958,,,,,,,,1,0.03 +42595,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +57754,95.0,10.0,9.0,10.0,10.0,10.0,9.0,21,0.7 +63180,83.0,9.0,9.0,9.0,9.0,9.0,9.0,16,0.63 +68339,40.0,6.0,2.0,10.0,8.0,8.0,6.0,1,0.04 +33939,,,,,,,,0, +55267,,,,,,,,0, +51866,,,,,,,,0, +18315,97.0,10.0,10.0,10.0,10.0,10.0,10.0,34,1.16 +29662,,,,,,,,0, +33473,,,,,,,,0, +70158,,,,,,,,0, +824,100.0,10.0,10.0,,10.0,,,1,0.04 +1597,,,,,,,,0, +19031,92.0,10.0,10.0,10.0,10.0,10.0,9.0,18,0.71 +22822,100.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.07 +3253,95.0,9.0,9.0,10.0,10.0,9.0,10.0,22,0.73 +16759,100.0,10.0,10.0,,10.0,,,1,0.04 +3715,85.0,9.0,9.0,10.0,9.0,9.0,9.0,70,2.34 +49732,83.0,9.0,9.0,9.0,9.0,10.0,8.0,63,2.09 +53216,90.0,9.0,9.0,9.0,9.0,9.0,9.0,60,2.02 +50363,88.0,9.0,9.0,9.0,9.0,8.0,9.0,50,1.69 +54632,85.0,9.0,8.0,9.0,9.0,10.0,9.0,54,2.09 +38126,80.0,8.0,6.0,10.0,10.0,8.0,10.0,1,0.03 +10944,,,,,,,,0, +47228,85.0,9.0,9.0,10.0,9.0,10.0,9.0,56,1.87 +54064,90.0,9.0,9.0,10.0,10.0,9.0,9.0,108,3.59 +27352,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.27 +23394,90.0,9.0,10.0,10.0,10.0,10.0,9.0,58,1.92 +9471,91.0,9.0,9.0,10.0,10.0,10.0,9.0,50,1.66 +16091,96.0,9.0,9.0,10.0,10.0,10.0,10.0,5,0.17 +53029,98.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.5 +45651,91.0,9.0,8.0,10.0,9.0,8.0,9.0,7,0.26 +46197,,,,,,,,0, +75807,86.0,9.0,9.0,9.0,10.0,9.0,9.0,37,1.27 +27025,,,,,,,,0, +41552,,,,,,,,0, +72088,100.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +47507,,,,,,,,0, +69318,,,,,,,,0, +12129,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.17 +64000,95.0,9.0,10.0,10.0,10.0,8.0,9.0,4,0.14 +37727,95.0,10.0,9.0,10.0,10.0,9.0,10.0,18,0.65 +18754,93.0,10.0,10.0,9.0,10.0,9.0,9.0,126,4.17 +20984,80.0,8.0,7.0,8.0,8.0,7.0,8.0,2,0.07 +23718,95.0,10.0,10.0,10.0,10.0,9.0,9.0,77,2.62 +21901,,,,,,,,0, +21086,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.17 +26568,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.39 +65171,94.0,10.0,9.0,10.0,10.0,10.0,9.0,90,2.97 +51725,92.0,10.0,8.0,10.0,10.0,10.0,10.0,6,0.2 +45502,,,,,,,,0, +282,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +35793,,,,,,,,0, +67931,,,,,,,,0, +74162,80.0,10.0,6.0,10.0,10.0,10.0,8.0,1,0.03 +25836,97.0,10.0,10.0,10.0,10.0,9.0,10.0,92,3.12 +44479,87.0,10.0,9.0,10.0,10.0,9.0,9.0,12,0.43 +67001,,,,,,,,0, +59987,,,,,,,,0, +42182,99.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.53 +53003,,,,,,,,0, +68779,89.0,9.0,9.0,10.0,10.0,9.0,9.0,49,1.63 +28383,97.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.4 +74076,87.0,9.0,9.0,9.0,9.0,9.0,9.0,3,0.1 +57214,88.0,9.0,10.0,10.0,10.0,9.0,9.0,5,0.17 +8960,94.0,10.0,9.0,10.0,10.0,9.0,10.0,7,0.24 +7190,99.0,10.0,10.0,10.0,10.0,10.0,10.0,56,1.85 +64386,,,,,,,,0, +34217,98.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.37 +33841,95.0,10.0,10.0,10.0,10.0,10.0,9.0,27,0.9 +72317,65.0,7.0,6.0,7.0,7.0,8.0,7.0,4,0.16 +66485,94.0,10.0,9.0,10.0,10.0,10.0,9.0,51,1.75 +57562,95.0,10.0,10.0,9.0,10.0,10.0,10.0,38,1.29 +73502,93.0,10.0,9.0,10.0,10.0,10.0,9.0,9,0.31 +24092,,,,,,,,0, +16304,,,,,,,,0, +45753,100.0,10.0,10.0,9.0,10.0,9.0,9.0,6,0.21 +60950,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.3 +49145,93.0,9.0,9.0,9.0,10.0,10.0,9.0,64,2.14 +66408,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +72185,90.0,9.0,7.0,10.0,10.0,8.0,9.0,3,0.11 +31167,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.33 +73713,92.0,10.0,9.0,10.0,10.0,8.0,10.0,5,0.17 +23507,93.0,10.0,9.0,9.0,10.0,10.0,9.0,3,0.1 +72322,,,,,,,,0, +34619,,,,,,,,0, +29322,60.0,6.0,6.0,10.0,8.0,6.0,8.0,1,0.04 +49120,100.0,10.0,10.0,10.0,8.0,10.0,10.0,1,0.04 +573,,,,,,,,0, +58514,99.0,10.0,10.0,10.0,10.0,10.0,10.0,82,2.82 +6914,95.0,10.0,10.0,10.0,10.0,9.0,10.0,12,0.41 +16624,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.07 +72617,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.11 +33778,,,,,,,,0, +66207,,,,,,,,0, +67112,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.24 +20283,100.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +69256,,,,,,,,0, +61731,100.0,10.0,10.0,10.0,10.0,9.0,10.0,123,4.14 +76509,,,,,,,,0, +5688,92.0,9.0,10.0,10.0,9.0,9.0,9.0,17,0.61 +36359,,,,,,,,0, +61617,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +68383,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +30929,80.0,9.0,10.0,8.0,10.0,8.0,10.0,2,0.07 +57995,96.0,10.0,9.0,10.0,10.0,10.0,9.0,23,0.78 +12397,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +14019,98.0,10.0,10.0,10.0,10.0,10.0,10.0,53,1.8 +73898,97.0,10.0,10.0,10.0,10.0,9.0,10.0,12,0.4 +19964,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +52360,,,,,,,,0, +67445,97.0,10.0,9.0,9.0,10.0,10.0,10.0,7,0.23 +36605,84.0,8.0,7.0,9.0,9.0,10.0,9.0,29,0.99 +44860,92.0,9.0,9.0,9.0,10.0,9.0,9.0,20,0.85 +50880,93.0,10.0,10.0,10.0,10.0,9.0,9.0,12,0.4 +47892,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +72516,97.0,10.0,10.0,10.0,10.0,10.0,10.0,18,1.26 +62787,91.0,9.0,9.0,9.0,9.0,9.0,9.0,21,0.73 +16572,93.0,9.0,9.0,9.0,9.0,10.0,9.0,33,1.15 +57235,,,,,,,,0, +23419,100.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.25 +61514,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +52848,,,,,,,,0, +10058,100.0,9.0,8.0,10.0,10.0,9.0,9.0,4,0.13 +72849,84.0,9.0,8.0,8.0,9.0,9.0,8.0,6,0.2 +12516,96.0,10.0,10.0,10.0,10.0,10.0,9.0,60,2.01 +21382,97.0,10.0,10.0,10.0,10.0,10.0,10.0,31,1.17 +56731,,,,,,,,0, +41936,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.25 +55614,,,,,,,,0, +49230,93.0,9.0,9.0,10.0,9.0,9.0,9.0,3,0.13 +46288,100.0,10.0,10.0,10.0,10.0,8.0,10.0,3,0.1 +75345,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +28663,98.0,10.0,10.0,10.0,10.0,10.0,10.0,65,2.2 +1048,95.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.57 +29391,93.0,10.0,9.0,10.0,10.0,9.0,9.0,27,0.9 +49813,,,,,,,,0, +36559,100.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.61 +70758,,,,,,,,0, +55693,96.0,10.0,8.0,10.0,10.0,10.0,9.0,5,0.37 +24828,100.0,10.0,10.0,9.0,10.0,10.0,10.0,3,0.1 +55633,95.0,10.0,10.0,10.0,10.0,10.0,9.0,9,0.3 +63685,,,,,,,,0, +7095,94.0,10.0,9.0,10.0,10.0,10.0,9.0,31,1.05 +2770,,,,,,,,0, +54982,90.0,9.0,8.0,10.0,10.0,9.0,9.0,28,0.94 +27126,95.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.41 +10641,93.0,10.0,9.0,10.0,10.0,10.0,9.0,75,2.56 +72094,97.0,10.0,10.0,9.0,10.0,9.0,10.0,6,0.23 +63236,93.0,10.0,10.0,10.0,10.0,10.0,9.0,15,0.5 +73627,93.0,9.0,10.0,10.0,9.0,9.0,9.0,10,0.37 +53022,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.14 +387,90.0,10.0,8.0,10.0,10.0,9.0,9.0,23,0.77 +2570,94.0,10.0,10.0,10.0,10.0,9.0,9.0,37,1.25 +399,,,,,,,,0, +33634,,,,,,,,0, +35733,100.0,9.0,9.0,10.0,10.0,8.0,8.0,3,0.11 +19575,,,,,,,,1,0.03 +65688,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.04 +20147,100.0,9.0,8.0,10.0,9.0,9.0,9.0,2,0.07 +44597,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +53482,,,,,,,,0, +1890,99.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.58 +1049,90.0,10.0,9.0,10.0,10.0,9.0,10.0,6,0.21 +29790,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,4.0 +39607,99.0,10.0,10.0,10.0,10.0,10.0,10.0,25,0.84 +52478,93.0,10.0,9.0,10.0,10.0,9.0,10.0,6,0.25 +74008,,,,,,,,0, +10754,60.0,5.0,5.0,10.0,8.0,8.0,5.0,2,0.07 +77063,90.0,10.0,8.0,10.0,10.0,8.0,10.0,3,0.11 +44211,89.0,9.0,10.0,10.0,9.0,10.0,9.0,8,0.27 +30,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +30918,98.0,10.0,10.0,10.0,10.0,10.0,10.0,84,2.82 +51826,95.0,10.0,10.0,10.0,10.0,9.0,9.0,19,0.65 +26080,97.0,10.0,9.0,10.0,10.0,10.0,9.0,20,0.68 +12253,,,,,,,,1,0.03 +28070,99.0,10.0,10.0,10.0,10.0,9.0,10.0,39,1.31 +75106,97.0,10.0,10.0,10.0,10.0,10.0,10.0,29,1.06 +7358,,,,,,,,0, +35238,,,,,,,,0, +35782,89.0,9.0,9.0,10.0,10.0,9.0,9.0,22,0.73 +37069,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.09 +41092,83.0,9.0,7.0,10.0,10.0,10.0,8.0,13,0.45 +28288,90.0,9.0,9.0,9.0,9.0,10.0,9.0,2,0.07 +10924,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.09 +6616,,,,,,,,0, +75408,93.0,9.0,9.0,10.0,10.0,9.0,9.0,17,0.61 +33644,90.0,10.0,10.0,10.0,10.0,10.0,8.0,2,0.11 +4419,,,,,,,,0, +10212,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +2513,80.0,9.0,7.0,10.0,10.0,10.0,10.0,3,0.1 +55214,,,,,,,,1, +44318,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +54568,,,,,,,,0, +47332,60.0,8.0,8.0,2.0,8.0,6.0,6.0,1,0.03 +4720,89.0,9.0,10.0,10.0,10.0,9.0,9.0,11,0.38 +6869,89.0,9.0,9.0,8.0,8.0,10.0,9.0,31,1.04 +38146,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.17 +21750,97.0,10.0,9.0,10.0,10.0,9.0,10.0,12,0.42 +31008,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.1 +18950,,,,,,,,0, +8865,,,,,,,,0, +18584,93.0,9.0,10.0,10.0,10.0,9.0,9.0,146,5.51 +30264,78.0,8.0,8.0,8.0,8.0,9.0,8.0,16,0.56 +56520,96.0,10.0,10.0,10.0,10.0,10.0,9.0,12,0.47 +62486,,,,,,,,0, +53743,40.0,6.0,2.0,6.0,8.0,6.0,4.0,1,0.03 +41305,96.0,10.0,10.0,10.0,10.0,10.0,9.0,109,3.66 +97,,,,,,,,0, +28897,99.0,10.0,10.0,10.0,10.0,10.0,10.0,79,2.85 +12235,93.0,9.0,8.0,9.0,9.0,10.0,9.0,13,0.46 +29136,88.0,9.0,9.0,10.0,10.0,8.0,9.0,32,1.2 +67814,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.17 +35613,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +27633,91.0,9.0,9.0,10.0,9.0,10.0,9.0,11,0.37 +63645,98.0,10.0,10.0,10.0,10.0,10.0,10.0,30,1.01 +14358,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +51151,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.28 +11367,,,,,,,,0, +42059,87.0,9.0,9.0,9.0,9.0,10.0,9.0,3,0.1 +4976,,,,,,,,0, +42721,93.0,10.0,10.0,10.0,9.0,10.0,9.0,6,0.2 +15607,,,,,,,,0, +20258,100.0,10.0,10.0,9.0,10.0,9.0,10.0,3,0.1 +73616,91.0,10.0,9.0,10.0,10.0,9.0,9.0,202,6.8 +23909,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +56796,,,,,,,,1,0.03 +65507,94.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.23 +10925,99.0,10.0,10.0,10.0,10.0,9.0,10.0,39,1.32 +12917,,,,,,,,0, +72116,88.0,9.0,9.0,9.0,10.0,9.0,8.0,8,0.38 +45546,100.0,9.0,10.0,10.0,10.0,10.0,9.0,6,0.2 +22947,,,,,,,,0, +55988,,,,,,,,0, +7907,,,,,,,,0, +16690,92.0,10.0,9.0,10.0,10.0,9.0,9.0,12,0.41 +48845,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.31 +66318,94.0,10.0,9.0,10.0,10.0,10.0,10.0,15,0.52 +26242,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +3222,,,,,,,,0, +63442,93.0,10.0,10.0,10.0,10.0,9.0,10.0,9,0.31 +59355,,,,,,,,0, +70379,,,,,,,,0, +72568,99.0,10.0,10.0,10.0,10.0,9.0,10.0,108,3.68 +28055,85.0,9.0,9.0,8.0,9.0,10.0,8.0,25,0.87 +58097,90.0,9.0,10.0,10.0,10.0,8.0,9.0,2,0.07 +46850,,,,,,,,0, +26951,92.0,9.0,10.0,10.0,10.0,9.0,9.0,12,0.41 +50010,93.0,10.0,6.0,10.0,10.0,10.0,9.0,3,0.1 +14535,,,,,,,,0, +77009,,,,,,,,0, +39920,,,,,,,,1,0.03 +73739,,,,,,,,0, +23523,,,,,,,,0, +48332,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.24 +26914,100.0,8.0,8.0,10.0,10.0,10.0,10.0,1,0.04 +69894,,,,,,,,0, +44711,98.0,10.0,10.0,10.0,10.0,9.0,10.0,13,0.45 +8050,,,,,,,,0, +14021,,,,,,,,0, +50253,80.0,7.0,8.0,10.0,10.0,9.0,8.0,6,0.2 +37674,,,,,,,,0, +19653,90.0,9.0,9.0,9.0,9.0,9.0,9.0,144,4.79 +47310,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.1 +20804,95.0,10.0,10.0,10.0,10.0,10.0,9.0,36,1.21 +19218,80.0,8.0,6.0,6.0,6.0,6.0,8.0,2,0.07 +4929,80.0,9.0,10.0,10.0,10.0,10.0,6.0,4,0.23 +9484,99.0,10.0,10.0,10.0,10.0,10.0,10.0,24,0.81 +39405,62.0,8.0,6.0,6.0,7.0,9.0,6.0,9,0.3 +33856,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.09 +65374,95.0,10.0,10.0,9.0,10.0,10.0,10.0,8,0.27 +6213,94.0,10.0,9.0,10.0,10.0,10.0,10.0,14,0.63 +24478,,,,,,,,0, +21782,91.0,9.0,9.0,10.0,9.0,9.0,9.0,11,0.37 +3505,95.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.14 +14377,,,,,,,,0, +20467,100.0,8.0,8.0,8.0,10.0,8.0,8.0,1,0.03 +67608,97.0,10.0,10.0,10.0,10.0,10.0,10.0,23,0.78 +23168,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.52 +35701,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.1 +33733,96.0,10.0,9.0,10.0,10.0,10.0,10.0,143,4.83 +36048,60.0,8.0,6.0,6.0,8.0,8.0,6.0,1,0.04 +72686,,,,,,,,0, +67227,100.0,10.0,9.0,10.0,10.0,10.0,10.0,7,0.24 +7013,100.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.18 +60875,,,,,,,,0, +64453,92.0,10.0,10.0,9.0,9.0,10.0,9.0,34,1.14 +49442,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +140,74.0,9.0,8.0,7.0,8.0,10.0,8.0,7,1.59 +52274,97.0,10.0,10.0,10.0,10.0,10.0,10.0,39,1.32 +53494,99.0,10.0,10.0,10.0,10.0,10.0,10.0,40,1.36 +76621,,,,,,,,0, +23769,95.0,10.0,9.0,10.0,10.0,7.0,9.0,8,0.45 +14270,97.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.41 +46319,87.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.1 +45025,96.0,10.0,10.0,10.0,10.0,10.0,10.0,79,2.63 +47315,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.32 +20977,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.17 +51248,,,,,,,,0, +51121,98.0,10.0,10.0,10.0,10.0,10.0,10.0,72,2.43 +65575,,,,,,,,0, +25282,,,,,,,,0, +68911,98.0,10.0,10.0,10.0,10.0,10.0,10.0,38,1.89 +56220,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.82 +29279,88.0,9.0,9.0,9.0,9.0,10.0,9.0,12,0.4 +155,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.13 +61324,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +6186,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.24 +87,,,,,,,,0, +20004,96.0,10.0,9.0,10.0,10.0,10.0,10.0,16,0.56 +5487,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.14 +64179,95.0,10.0,10.0,10.0,10.0,10.0,10.0,34,1.19 +61179,,,,,,,,0, +7962,94.0,10.0,10.0,10.0,10.0,9.0,9.0,14,0.48 +10016,,,,,,,,0, +68351,100.0,10.0,10.0,9.0,10.0,10.0,10.0,5,3.06 +9113,80.0,10.0,8.0,4.0,10.0,10.0,6.0,1,0.03 +75736,97.0,10.0,9.0,10.0,10.0,10.0,9.0,7,0.25 +17085,95.0,10.0,10.0,10.0,10.0,9.0,10.0,55,1.87 +3249,75.0,8.0,8.0,9.0,9.0,10.0,8.0,202,6.75 +55793,93.0,10.0,10.0,10.0,10.0,9.0,9.0,34,1.14 +9960,99.0,10.0,10.0,10.0,10.0,9.0,10.0,32,1.09 +39857,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.17 +10576,,,,,,,,0, +7457,99.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.52 +43285,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +4324,93.0,10.0,8.0,9.0,10.0,10.0,9.0,9,0.3 +70457,93.0,10.0,9.0,10.0,10.0,9.0,9.0,80,2.75 +73623,,,,,,,,0, +74616,,,,,,,,0, +47820,,,,,,,,0, +10264,,,,,,,,0, +9208,,,,,,,,0, +67289,92.0,9.0,9.0,10.0,10.0,9.0,9.0,22,0.77 +60606,,,,,,,,0, +55719,,,,,,,,0, +68720,99.0,10.0,10.0,10.0,10.0,10.0,10.0,28,0.98 +28580,67.0,6.0,5.0,8.0,8.0,8.0,7.0,3,0.1 +26909,96.0,9.0,10.0,10.0,9.0,10.0,9.0,21,0.89 +18856,,,,,,,,0, +23945,94.0,10.0,9.0,9.0,10.0,9.0,10.0,10,0.34 +50506,60.0,6.0,6.0,8.0,6.0,8.0,6.0,1,0.04 +19756,95.0,10.0,9.0,10.0,10.0,9.0,10.0,93,3.1 +21031,93.0,10.0,10.0,10.0,10.0,9.0,9.0,13,0.43 +30509,80.0,10.0,6.0,10.0,10.0,10.0,10.0,1,0.43 +75457,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.07 +7071,97.0,10.0,10.0,10.0,10.0,9.0,10.0,41,1.4 +62994,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.12 +70311,96.0,10.0,10.0,9.0,10.0,9.0,9.0,34,1.35 +64669,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.07 +34656,90.0,9.0,9.0,10.0,9.0,9.0,9.0,62,2.96 +11215,,,,,,,,0, +47608,100.0,10.0,9.0,10.0,10.0,9.0,9.0,3,0.1 +54610,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.2 +68301,92.0,10.0,9.0,10.0,10.0,10.0,9.0,36,1.23 +563,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.32 +71702,,,,,,,,0, +54278,100.0,10.0,9.0,10.0,10.0,10.0,10.0,7,0.32 +30845,,,,,,,,0, +50696,80.0,10.0,4.0,6.0,10.0,6.0,8.0,1,0.04 +55991,97.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.34 +75876,,,,,,,,0, +75182,97.0,10.0,10.0,10.0,10.0,10.0,10.0,64,2.15 +3868,94.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.27 +69740,92.0,9.0,9.0,10.0,10.0,9.0,10.0,37,1.25 +29524,,,,,,,,0, +17272,80.0,9.0,8.0,10.0,9.0,8.0,8.0,3,0.1 +62623,80.0,10.0,10.0,10.0,10.0,10.0,8.0,2,0.58 +73993,100.0,8.0,8.0,6.0,8.0,10.0,10.0,2,0.19 +1434,93.0,10.0,9.0,10.0,10.0,10.0,9.0,41,1.38 +33516,,,,,,,,0, +61497,80.0,6.0,6.0,8.0,8.0,8.0,8.0,1,0.04 +57101,,,,,,,,0, +10332,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.32 +30089,97.0,10.0,10.0,10.0,10.0,9.0,10.0,93,3.12 +20351,98.0,10.0,10.0,10.0,10.0,10.0,10.0,59,2.0 +35167,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.26 +50571,,,,,,,,0, +21723,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.1 +23934,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.27 +51154,94.0,10.0,9.0,9.0,9.0,9.0,9.0,44,1.47 +64111,,,,,,,,0, +65469,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +65182,100.0,10.0,10.0,10.0,10.0,6.0,8.0,1,0.04 +11762,70.0,8.0,9.0,6.0,6.0,9.0,8.0,2,0.13 +43714,97.0,10.0,9.0,10.0,10.0,9.0,9.0,13,0.46 +15774,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.34 +64949,93.0,10.0,10.0,9.0,10.0,10.0,10.0,3,0.1 +58567,,,,,,,,0, +28443,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.14 +27678,,,,,,,,0, +23488,93.0,9.0,9.0,10.0,10.0,10.0,9.0,143,4.75 +1937,97.0,10.0,10.0,10.0,10.0,10.0,10.0,153,5.17 +12849,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +47749,90.0,9.0,9.0,9.0,10.0,9.0,9.0,40,1.45 +9698,98.0,10.0,10.0,10.0,10.0,9.0,10.0,29,0.98 +53093,80.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.03 +66784,,,,,,,,0, +47678,,,,,,,,0, +65755,89.0,9.0,9.0,9.0,9.0,8.0,9.0,53,1.78 +64426,,,,,,,,0, +8827,99.0,10.0,10.0,10.0,10.0,10.0,10.0,25,0.88 +75094,,,,,,,,0, +61500,,,,,,,,0, +23978,98.0,10.0,10.0,10.0,10.0,10.0,10.0,28,0.98 +64548,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +40246,90.0,9.0,9.0,10.0,9.0,9.0,9.0,35,1.24 +4703,86.0,10.0,10.0,9.0,10.0,9.0,9.0,8,0.27 +33091,,,,,,,,0, +54650,98.0,10.0,10.0,10.0,10.0,10.0,10.0,37,1.25 +21778,95.0,10.0,10.0,10.0,10.0,10.0,10.0,54,2.04 +65428,98.0,9.0,10.0,10.0,10.0,9.0,9.0,10,0.34 +75966,,,,,,,,0, +73501,,,,,,,,0, +29600,,,,,,,,0, +40157,89.0,9.0,9.0,9.0,10.0,10.0,9.0,32,1.07 +48402,93.0,10.0,9.0,10.0,10.0,10.0,9.0,8,0.28 +19147,87.0,9.0,9.0,10.0,10.0,10.0,9.0,3,0.1 +14748,,,,,,,,3,0.1 +19840,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.27 +56290,,,,,,,,0, +36046,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.61 +23603,,,,,,,,0, +10119,94.0,10.0,10.0,10.0,10.0,9.0,10.0,76,2.53 +22496,96.0,10.0,10.0,10.0,10.0,10.0,9.0,129,4.4 +30376,98.0,10.0,10.0,10.0,10.0,10.0,10.0,46,1.58 +5484,80.0,9.0,8.0,9.0,9.0,8.0,9.0,2,0.07 +61025,,,,,,,,0, +59140,97.0,10.0,10.0,10.0,10.0,10.0,10.0,189,6.36 +75209,,,,,,,,0, +11582,94.0,10.0,10.0,10.0,10.0,9.0,10.0,50,1.71 +3240,93.0,10.0,9.0,9.0,10.0,9.0,10.0,3,0.1 +28474,90.0,9.0,9.0,9.0,9.0,9.0,8.0,4,0.15 +76663,,,,,,,,0, +8007,94.0,9.0,10.0,9.0,9.0,10.0,9.0,13,0.49 +70844,98.0,10.0,10.0,10.0,10.0,10.0,10.0,23,0.89 +23429,,,,,,,,0, +43054,90.0,10.0,8.0,10.0,9.0,8.0,9.0,6,0.21 +70527,93.0,9.0,9.0,9.0,10.0,9.0,9.0,76,2.55 +31762,92.0,10.0,9.0,10.0,10.0,9.0,9.0,78,2.6 +69957,86.0,9.0,8.0,9.0,10.0,10.0,9.0,7,0.25 +53342,87.0,9.0,7.0,9.0,9.0,9.0,9.0,19,0.63 +23055,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.31 +3527,,,,,,,,1,0.04 +3635,99.0,10.0,10.0,10.0,10.0,10.0,10.0,32,1.11 +52340,,,,,,,,0, +15904,93.0,9.0,10.0,10.0,10.0,9.0,9.0,117,3.9 +43889,100.0,10.0,10.0,10.0,10.0,10.0,9.0,6,1.18 +3462,98.0,10.0,9.0,10.0,10.0,10.0,10.0,48,1.66 +15312,,,,,,,,0, +4006,80.0,9.0,9.0,10.0,10.0,9.0,9.0,3,0.11 +32393,95.0,10.0,9.0,10.0,10.0,9.0,9.0,34,1.19 +73906,90.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.11 +8784,96.0,9.0,9.0,10.0,10.0,10.0,10.0,33,1.12 +43160,94.0,9.0,10.0,10.0,10.0,10.0,10.0,45,1.54 +37767,,,,,,,,0, +52097,,,,,,,,0, +25449,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +57975,96.0,10.0,10.0,10.0,10.0,10.0,9.0,40,1.47 +46156,90.0,10.0,8.0,10.0,10.0,8.0,10.0,23,0.78 +55026,97.0,9.0,10.0,10.0,10.0,9.0,9.0,7,0.25 +73381,96.0,9.0,10.0,10.0,10.0,10.0,10.0,6,0.2 +1957,100.0,10.0,10.0,10.0,10.0,10.0,10.0,126,4.28 +67576,100.0,8.0,8.0,8.0,4.0,10.0,8.0,1,0.08 +45486,,,,,,,,0, +76286,99.0,10.0,10.0,10.0,10.0,10.0,10.0,49,1.65 +17419,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.2 +52005,93.0,10.0,10.0,10.0,10.0,9.0,9.0,105,3.53 +3767,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.12 +75116,,,,,,,,0, +8529,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.1 +3161,,,,,,,,0, +67802,89.0,10.0,8.0,10.0,10.0,9.0,9.0,8,0.34 +71993,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +48998,87.0,9.0,8.0,9.0,10.0,9.0,8.0,3,0.1 +2091,98.0,10.0,9.0,10.0,10.0,10.0,10.0,90,3.03 +59993,,,,,,,,0, +3223,99.0,10.0,10.0,10.0,10.0,10.0,10.0,261,8.96 +23122,,,,,,,,0, +26366,86.0,9.0,7.0,9.0,9.0,9.0,8.0,10,0.35 +15541,80.0,8.0,6.0,10.0,10.0,8.0,10.0,1,0.03 +23524,,,,,,,,0, +44505,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +38972,,,,,,,,0, +2118,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +50932,,,,,,,,0, +32163,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.21 +32301,80.0,8.0,8.0,10.0,10.0,10.0,8.0,1,0.03 +41706,97.0,10.0,10.0,10.0,10.0,10.0,10.0,21,0.71 +53705,88.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.17 +21047,97.0,10.0,10.0,10.0,10.0,10.0,10.0,127,4.26 +34647,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.03 +31758,99.0,10.0,10.0,10.0,10.0,10.0,9.0,20,0.75 +4867,100.0,9.0,10.0,10.0,10.0,9.0,10.0,6,0.21 +46474,96.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.36 +56898,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +61369,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +3453,90.0,10.0,10.0,10.0,10.0,9.0,9.0,2,0.07 +49497,80.0,8.0,10.0,10.0,10.0,8.0,8.0,1,0.04 +21,93.0,9.0,9.0,9.0,10.0,8.0,9.0,5,0.17 +51077,,,,,,,,0, +68026,,,,,,,,0, +9703,,,,,,,,0, +47390,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.36 +50825,67.0,5.0,7.0,7.0,8.0,8.0,7.0,3,0.11 +43051,96.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.55 +33651,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.14 +5602,65.0,9.0,9.0,10.0,10.0,9.0,7.0,4,0.17 +20898,98.0,10.0,10.0,10.0,10.0,10.0,10.0,30,1.9 +40404,,,,,,,,0, +9656,100.0,10.0,10.0,10.0,9.0,10.0,10.0,3,0.14 +35736,80.0,10.0,10.0,8.0,8.0,8.0,8.0,1,0.03 +21920,97.0,10.0,10.0,10.0,10.0,10.0,9.0,15,0.55 +8363,96.0,10.0,9.0,10.0,10.0,10.0,9.0,11,0.37 +3421,,,,,,,,0, +17633,94.0,10.0,10.0,10.0,10.0,10.0,9.0,72,2.45 +25871,100.0,10.0,10.0,10.0,10.0,9.0,10.0,21,0.7 +32786,97.0,10.0,10.0,10.0,10.0,10.0,10.0,20,0.67 +19359,97.0,10.0,9.0,10.0,10.0,10.0,9.0,14,0.48 +43974,,,,,,,,0, +31469,84.0,9.0,8.0,10.0,10.0,10.0,9.0,241,8.09 +60198,80.0,9.0,8.0,9.0,10.0,10.0,8.0,2,0.07 +36433,88.0,10.0,9.0,9.0,10.0,9.0,9.0,6,0.2 +36070,100.0,9.0,10.0,10.0,10.0,9.0,10.0,7,0.24 +12883,,,,,,,,0, +1494,97.0,10.0,10.0,10.0,10.0,9.0,10.0,13,0.44 +72174,,,,,,,,0, +23768,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.1 +43162,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.2 +37799,100.0,10.0,9.0,10.0,9.0,10.0,9.0,4,0.14 +68731,,,,,,,,0, +47588,60.0,10.0,10.0,10.0,10.0,8.0,6.0,1,0.06 +30351,89.0,9.0,9.0,10.0,10.0,10.0,9.0,41,1.38 +49635,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.14 +14990,92.0,9.0,9.0,9.0,9.0,9.0,9.0,18,0.63 +25921,98.0,10.0,10.0,10.0,9.0,10.0,10.0,11,0.48 +1720,,,,,,,,0, +48177,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +35963,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +21362,,,,,,,,0, +74620,,,,,,,,0, +49684,,,,,,,,0, +62054,80.0,8.0,8.0,8.0,8.0,8.0,8.0,5,0.17 +8231,,,,,,,,0, +57761,,,,,,,,0, +38163,,,,,,,,0, +9621,80.0,10.0,6.0,10.0,10.0,8.0,6.0,1,0.15 +26521,89.0,9.0,9.0,10.0,9.0,9.0,9.0,39,1.31 +19536,93.0,10.0,10.0,10.0,10.0,10.0,9.0,18,0.67 +18838,83.0,9.0,10.0,9.0,9.0,8.0,8.0,7,0.25 +26106,90.0,10.0,9.0,10.0,10.0,9.0,9.0,2,0.07 +72557,98.0,10.0,10.0,10.0,10.0,10.0,10.0,24,1.24 +45835,,,,,,,,0, +4263,95.0,10.0,10.0,10.0,10.0,10.0,9.0,27,1.11 +27361,92.0,10.0,10.0,9.0,10.0,10.0,9.0,25,0.85 +9672,97.0,10.0,10.0,10.0,10.0,10.0,10.0,57,1.95 +68487,,,,,,,,0, +27394,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +61114,,,,,,,,0, +23278,100.0,10.0,8.0,8.0,10.0,10.0,10.0,1,0.03 +75776,100.0,10.0,10.0,10.0,10.0,10.0,9.0,8,0.27 +3068,90.0,10.0,10.0,9.0,8.0,8.0,9.0,4,0.14 +4866,97.0,10.0,10.0,10.0,10.0,8.0,10.0,122,4.47 +33297,77.0,9.0,9.0,8.0,7.0,10.0,8.0,7,0.24 +51985,100.0,10.0,4.0,10.0,10.0,6.0,10.0,1,0.15 +35366,92.0,10.0,9.0,10.0,10.0,10.0,9.0,105,3.51 +48604,80.0,6.0,8.0,10.0,10.0,8.0,10.0,1,0.04 +11258,,,,,,,,0, +38691,96.0,10.0,10.0,9.0,10.0,10.0,9.0,9,0.31 +15949,90.0,10.0,10.0,10.0,10.0,9.0,8.0,2,0.27 +74994,,,,,,,,1,0.03 +68784,,,,,,,,1,0.7 +37259,99.0,10.0,10.0,10.0,10.0,10.0,10.0,108,3.63 +10248,,,,,,,,0, +2454,90.0,9.0,9.0,10.0,10.0,9.0,10.0,2,0.07 +618,92.0,10.0,10.0,9.0,9.0,10.0,9.0,15,0.51 +7885,82.0,9.0,9.0,8.0,7.0,10.0,8.0,13,0.45 +28461,91.0,9.0,9.0,9.0,9.0,10.0,9.0,13,0.44 +25611,99.0,10.0,10.0,10.0,10.0,10.0,10.0,91,3.1 +64244,98.0,10.0,10.0,10.0,10.0,10.0,10.0,167,5.89 +698,92.0,10.0,10.0,9.0,10.0,10.0,10.0,5,0.21 +20310,,,,,,,,0, +55713,100.0,8.0,8.0,10.0,10.0,10.0,8.0,1,0.06 +74637,,,,,,,,0, +9747,93.0,10.0,9.0,9.0,10.0,10.0,10.0,19,0.65 +60475,,,,,,,,0, +69926,95.0,10.0,9.0,10.0,10.0,10.0,9.0,25,0.87 +42746,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +7530,93.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.1 +36351,88.0,10.0,8.0,9.0,10.0,10.0,8.0,5,0.21 +24455,,,,,,,,1,0.04 +60771,73.0,9.0,7.0,8.0,9.0,9.0,8.0,9,0.32 +28805,,,,,,,,0, +18672,95.0,10.0,10.0,10.0,10.0,9.0,10.0,23,0.89 +50969,99.0,10.0,10.0,10.0,10.0,10.0,10.0,29,1.23 +23547,100.0,8.0,8.0,10.0,8.0,8.0,8.0,1,0.03 +3367,86.0,9.0,8.0,9.0,9.0,10.0,9.0,48,1.61 +59162,96.0,10.0,10.0,10.0,10.0,10.0,10.0,45,1.61 +47559,99.0,10.0,10.0,10.0,10.0,9.0,9.0,18,0.65 +66406,97.0,10.0,10.0,10.0,10.0,9.0,10.0,28,0.94 +903,98.0,10.0,9.0,10.0,10.0,10.0,10.0,19,1.05 +17047,93.0,10.0,9.0,10.0,10.0,9.0,9.0,110,3.72 +45193,,,,,,,,0, +25508,98.0,10.0,10.0,10.0,10.0,10.0,10.0,20,0.73 +24192,,,,,,,,0, +14455,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +75417,94.0,10.0,9.0,9.0,9.0,9.0,9.0,20,0.68 +15993,,,,,,,,0, +73636,87.0,9.0,9.0,10.0,9.0,8.0,9.0,4,0.13 +13836,97.0,10.0,10.0,10.0,10.0,10.0,10.0,69,2.33 +21559,,,,,,,,0, +17168,97.0,10.0,9.0,10.0,10.0,10.0,10.0,84,2.85 +68831,90.0,9.0,9.0,9.0,9.0,10.0,9.0,71,2.49 +76949,95.0,10.0,9.0,10.0,10.0,10.0,10.0,12,0.42 +24548,93.0,10.0,10.0,10.0,10.0,9.0,9.0,30,1.02 +31506,,,,,,,,0, +46767,,,,,,,,0, +66359,60.0,8.0,8.0,8.0,10.0,4.0,6.0,1,0.03 +51912,,,,,,,,0, +46744,94.0,10.0,9.0,9.0,10.0,9.0,9.0,53,1.79 +122,100.0,10.0,9.0,10.0,10.0,10.0,10.0,6,0.2 +15709,,,,,,,,0, +8802,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +23576,99.0,10.0,10.0,10.0,10.0,10.0,10.0,30,1.04 +33588,97.0,9.0,10.0,10.0,10.0,10.0,10.0,13,0.52 +75971,98.0,10.0,10.0,10.0,10.0,10.0,10.0,66,2.25 +76259,72.0,7.0,7.0,8.0,9.0,8.0,8.0,10,0.34 +46452,90.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.07 +43761,,,,,,,,0, +13023,95.0,10.0,9.0,10.0,10.0,9.0,9.0,23,0.78 +41376,97.0,10.0,9.0,10.0,10.0,9.0,9.0,58,1.96 +34063,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +35326,,,,,,,,0, +70599,87.0,10.0,9.0,10.0,10.0,10.0,9.0,6,0.22 +8950,93.0,9.0,9.0,9.0,10.0,9.0,8.0,3,0.16 +29141,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +25818,,,,,,,,0, +60685,77.0,7.0,7.0,8.0,8.0,8.0,8.0,15,0.51 +38852,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.14 +19034,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +36472,,,,,,,,0, +28678,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,2.03 +5684,,,,,,,,0, +43354,96.0,10.0,10.0,10.0,10.0,9.0,9.0,10,0.38 +69869,,,,,,,,0, +2642,,,,,,,,0, +37840,,,,,,,,0, +29480,50.0,8.0,8.0,6.0,8.0,8.0,5.0,3,0.12 +60442,,,,,,,,0, +60837,,,,,,,,0, +20986,95.0,10.0,10.0,10.0,10.0,9.0,9.0,45,1.52 +45736,98.0,10.0,10.0,10.0,10.0,10.0,10.0,21,0.77 +44184,90.0,9.0,8.0,9.0,10.0,9.0,9.0,24,0.81 +45779,,,,,,,,0, +8150,,,,,,,,0, +41982,,,,,,,,3,0.1 +27039,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.2 +19100,100.0,10.0,10.0,10.0,10.0,10.0,10.0,23,0.78 +30302,,,,,,,,0, +11745,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +2781,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.51 +2155,96.0,9.0,9.0,10.0,10.0,9.0,10.0,10,0.36 +56791,95.0,10.0,10.0,10.0,10.0,9.0,9.0,15,0.51 +38859,,,,,,,,0, +34348,80.0,8.0,10.0,10.0,10.0,10.0,6.0,1,0.03 +58190,40.0,10.0,4.0,6.0,10.0,10.0,4.0,1,0.03 +1453,95.0,10.0,10.0,9.0,10.0,9.0,9.0,16,0.55 +54018,93.0,9.0,10.0,10.0,10.0,9.0,9.0,35,1.2 +66420,95.0,10.0,10.0,10.0,10.0,10.0,9.0,66,2.26 +22069,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +5934,,,,,,,,0, +7604,,,,,,,,0, +6625,70.0,9.0,9.0,9.0,9.0,8.0,7.0,3,0.1 +26595,94.0,10.0,10.0,10.0,10.0,10.0,9.0,10,0.35 +53112,,,,,,,,0, +22757,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.24 +7924,,,,,,,,0, +51966,,,,,,,,0, +55660,100.0,10.0,10.0,10.0,10.0,10.0,10.0,33,1.11 +14848,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +42036,96.0,10.0,9.0,10.0,10.0,9.0,10.0,32,1.07 +59519,,,,,,,,0, +16510,,,,,,,,0, +30248,,,,,,,,0, +68394,99.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.48 +7882,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.15 +41639,,,,,,,,0, +1321,,,,,,,,0, +33021,99.0,10.0,10.0,10.0,10.0,10.0,10.0,22,0.83 +2818,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.04 +37404,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.47 +17663,88.0,10.0,10.0,10.0,10.0,8.0,9.0,5,0.18 +52941,96.0,10.0,10.0,10.0,10.0,8.0,9.0,81,2.77 +42519,76.0,9.0,9.0,9.0,9.0,10.0,8.0,5,0.7 +6906,95.0,10.0,10.0,10.0,10.0,8.0,10.0,72,2.45 +37818,93.0,10.0,9.0,10.0,10.0,8.0,9.0,59,1.98 +7704,99.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.52 +58055,90.0,9.0,9.0,10.0,9.0,10.0,9.0,99,3.39 +39361,,,,,,,,0, +22973,93.0,10.0,10.0,10.0,10.0,10.0,9.0,15,0.54 +46830,82.0,9.0,8.0,9.0,8.0,9.0,9.0,18,0.61 +67852,96.0,10.0,9.0,10.0,10.0,10.0,10.0,16,0.55 +70580,,,,,,,,0, +47106,,,,,,,,0, +13852,95.0,10.0,10.0,10.0,10.0,9.0,9.0,8,0.57 +24697,99.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.6 +6011,89.0,8.0,8.0,9.0,9.0,9.0,9.0,7,0.25 +51463,,,,,,,,0, +46743,,,,,,,,0, +27380,82.0,9.0,8.0,9.0,8.0,9.0,9.0,10,0.34 +61742,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +2069,88.0,9.0,10.0,9.0,9.0,9.0,9.0,16,0.9 +8422,89.0,9.0,9.0,9.0,10.0,8.0,9.0,7,0.24 +60735,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.07 +9907,94.0,9.0,9.0,9.0,9.0,10.0,9.0,35,1.19 +64171,85.0,9.0,8.0,10.0,9.0,10.0,9.0,16,0.55 +68161,80.0,8.0,10.0,9.0,10.0,8.0,9.0,2,0.07 +25922,,,,,,,,1,0.04 +14499,,,,,,,,0, +28276,99.0,10.0,10.0,10.0,10.0,10.0,10.0,29,1.04 +70439,87.0,9.0,8.0,10.0,10.0,10.0,8.0,3,0.11 +9925,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.18 +46372,93.0,9.0,8.0,9.0,9.0,10.0,10.0,3,0.11 +27381,87.0,9.0,8.0,9.0,10.0,10.0,10.0,15,0.53 +47104,,,,,,,,0, +2933,95.0,10.0,9.0,10.0,10.0,10.0,9.0,22,1.13 +72719,99.0,10.0,10.0,10.0,10.0,10.0,10.0,32,1.1 +65476,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.44 +8437,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +41390,99.0,10.0,10.0,10.0,10.0,10.0,10.0,87,3.02 +4877,89.0,9.0,9.0,9.0,10.0,10.0,9.0,16,0.56 +50244,83.0,9.0,8.0,8.0,9.0,9.0,10.0,6,0.21 +61038,84.0,10.0,8.0,9.0,10.0,9.0,9.0,11,0.38 +50127,,,,,,,,0, +43274,,,,,,,,0, +68962,,,,,,,,0, +76615,91.0,10.0,9.0,10.0,10.0,10.0,9.0,19,0.65 +51660,88.0,9.0,9.0,10.0,10.0,9.0,9.0,39,1.34 +43951,87.0,9.0,8.0,9.0,9.0,8.0,9.0,12,0.41 +75122,,,,,,,,0, +29680,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.1 +58230,90.0,9.0,9.0,10.0,9.0,10.0,9.0,3,0.11 +59593,94.0,10.0,9.0,10.0,10.0,10.0,10.0,9,0.3 +15171,96.0,10.0,10.0,9.0,9.0,10.0,9.0,28,0.94 +70654,,,,,,,,0, +24684,94.0,10.0,10.0,10.0,10.0,10.0,9.0,14,0.47 +27120,90.0,9.0,8.0,10.0,10.0,9.0,9.0,4,0.13 +62335,70.0,6.0,8.0,8.0,2.0,7.0,8.0,2,0.07 +39033,,,,,,,,0, +43787,,,,,,,,0, +15011,,,,,,,,0, +11991,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.46 +39009,,,,,,,,1,0.04 +51528,89.0,9.0,8.0,9.0,10.0,9.0,8.0,18,0.62 +53365,93.0,9.0,9.0,10.0,10.0,9.0,9.0,21,0.71 +33557,,,,,,,,0, +16938,100.0,10.0,10.0,10.0,10.0,6.0,10.0,1,0.06 +56193,94.0,10.0,9.0,10.0,10.0,9.0,9.0,14,0.48 +15186,71.0,8.0,8.0,9.0,8.0,9.0,7.0,7,0.24 +10081,99.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.58 +32798,95.0,10.0,10.0,10.0,10.0,9.0,10.0,199,9.42 +53931,,,,,,,,0, +36147,94.0,10.0,9.0,10.0,10.0,10.0,9.0,44,1.53 +62766,94.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.49 +72679,,,,,,,,0, +48439,,,,,,,,0, +72265,,,,,,,,0, +19201,94.0,9.0,10.0,10.0,10.0,9.0,9.0,57,1.94 +55985,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +72420,97.0,10.0,10.0,10.0,10.0,10.0,10.0,26,0.89 +64830,100.0,10.0,10.0,10.0,10.0,10.0,10.0,46,1.7 +31600,,,,,,,,0, +15083,,,,,,,,0, +13964,,,,,,,,0, +71191,,,,,,,,0, +57743,,,,,,,,0, +19660,,,,,,,,0, +51268,,,,,,,,0, +21635,98.0,10.0,9.0,10.0,10.0,10.0,10.0,10,0.35 +9881,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +12545,,,,,,,,0, +25045,,,,,,,,0, +24238,20.0,2.0,2.0,2.0,2.0,,,4,0.14 +40389,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.03 +64834,100.0,10.0,10.0,,10.0,,,1,0.06 +64741,,,,,,,,0, +51391,100.0,10.0,9.0,10.0,10.0,8.0,9.0,2,0.07 +26388,91.0,9.0,9.0,10.0,10.0,10.0,9.0,23,0.79 +55716,99.0,10.0,10.0,10.0,10.0,9.0,10.0,67,2.28 +13088,,,,,,,,0, +30683,80.0,8.0,9.0,9.0,9.0,9.0,9.0,7,0.24 +28750,84.0,8.0,8.0,9.0,9.0,10.0,9.0,5,1.28 +10495,100.0,10.0,10.0,8.0,10.0,10.0,8.0,1,0.03 +66060,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +76824,92.0,10.0,9.0,10.0,10.0,9.0,10.0,10,0.35 +52112,97.0,10.0,10.0,10.0,10.0,9.0,9.0,14,0.47 +49133,,,,,,,,0, +37988,,,,,,,,0, +56495,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +67215,,,,,,,,0, +41788,98.0,10.0,10.0,10.0,10.0,9.0,10.0,10,0.41 +46398,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.25 +41990,,,,,,,,0, +66134,,,,,,,,0, +49599,79.0,8.0,7.0,9.0,9.0,9.0,8.0,16,0.55 +64300,,,,,,,,0, +76970,,,,,,,,0, +73234,92.0,10.0,9.0,10.0,10.0,9.0,9.0,12,0.51 +13271,,,,,,,,0, +59176,70.0,7.0,5.0,7.0,8.0,9.0,7.0,2,0.44 +62363,98.0,10.0,10.0,10.0,10.0,10.0,10.0,24,0.84 +53015,,,,,,,,0, +42435,,,,,,,,0, +7303,97.0,10.0,10.0,10.0,10.0,9.0,9.0,7,0.27 +64589,93.0,9.0,10.0,10.0,10.0,9.0,9.0,3,0.1 +16505,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +56982,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.11 +35374,100.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.28 +19223,,,,,,,,1,0.03 +15199,,,,,,,,0, +45254,,,,,,,,0, +43765,80.0,10.0,10.0,8.0,10.0,10.0,10.0,1,0.04 +29933,100.0,10.0,10.0,10.0,8.0,8.0,10.0,2,0.07 +37854,80.0,8.0,6.0,8.0,7.0,7.0,8.0,2,0.07 +76686,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.37 +14597,95.0,10.0,10.0,10.0,10.0,10.0,9.0,8,0.27 +5663,90.0,9.0,10.0,10.0,10.0,9.0,9.0,2,0.07 +45075,90.0,9.0,8.0,9.0,10.0,9.0,9.0,2,0.07 +69224,80.0,8.0,8.0,8.0,8.0,10.0,10.0,1,0.03 +46766,98.0,10.0,10.0,10.0,10.0,10.0,10.0,293,9.87 +41197,,,,,,,,0, +30438,89.0,9.0,9.0,9.0,10.0,10.0,9.0,17,0.62 +71166,90.0,9.0,9.0,10.0,9.0,10.0,9.0,97,3.4 +60909,95.0,10.0,10.0,10.0,10.0,9.0,10.0,21,0.74 +48788,72.0,8.0,7.0,8.0,9.0,9.0,8.0,10,0.34 +60737,99.0,10.0,10.0,10.0,10.0,10.0,10.0,23,0.84 +58149,92.0,10.0,9.0,10.0,10.0,10.0,9.0,172,5.8 +62821,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.12 +58288,,,,,,,,0, +9181,,,,,,,,0, +63728,,,,,,,,0, +47200,80.0,8.0,8.0,10.0,10.0,8.0,8.0,1,0.03 +66448,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +60037,100.0,10.0,9.0,10.0,10.0,9.0,10.0,2,0.51 +34976,,,,,,,,0, +73544,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.14 +49367,88.0,9.0,8.0,9.0,9.0,10.0,9.0,28,1.1 +54579,95.0,10.0,10.0,10.0,10.0,9.0,10.0,16,0.82 +43215,,,,,,,,1,0.03 +71474,100.0,8.0,8.0,10.0,10.0,10.0,8.0,1,0.03 +65611,100.0,10.0,9.0,9.0,10.0,10.0,10.0,3,0.1 +67848,99.0,10.0,10.0,10.0,10.0,10.0,10.0,47,1.62 +15209,89.0,10.0,9.0,10.0,10.0,10.0,9.0,36,1.26 +66922,87.0,10.0,9.0,9.0,9.0,10.0,9.0,20,0.69 +8426,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.14 +63515,94.0,9.0,8.0,10.0,10.0,10.0,9.0,35,1.25 +18725,95.0,10.0,10.0,10.0,10.0,10.0,9.0,22,0.76 +43079,93.0,10.0,9.0,9.0,10.0,9.0,9.0,11,0.47 +59254,99.0,10.0,10.0,10.0,10.0,10.0,10.0,90,3.06 +10415,90.0,9.0,9.0,10.0,9.0,8.0,9.0,2,0.07 +74024,,,,,,,,0, +21033,,,,,,,,0, +9231,,,,,,,,0, +28525,70.0,8.0,9.0,10.0,10.0,5.0,8.0,2,0.14 +16686,,,,,,,,0, +55966,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.15 +62379,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.1 +55779,,,,,,,,0, +31708,95.0,10.0,10.0,10.0,10.0,10.0,9.0,8,0.46 +14359,,,,,,,,0, +71427,,,,,,,,0, +49408,99.0,10.0,10.0,10.0,10.0,10.0,10.0,114,4.1 +30571,94.0,10.0,10.0,9.0,10.0,10.0,9.0,77,2.61 +17401,,,,,,,,0, +25023,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.25 +11876,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.08 +50282,,,,,,,,0, +9873,91.0,9.0,9.0,9.0,9.0,10.0,9.0,34,1.17 +17602,93.0,9.0,10.0,10.0,10.0,9.0,10.0,12,0.41 +5913,94.0,10.0,9.0,10.0,10.0,10.0,9.0,8,0.28 +36774,,,,,,,,0, +47057,94.0,10.0,9.0,10.0,10.0,9.0,10.0,7,0.24 +63157,100.0,10.0,10.0,10.0,8.0,8.0,8.0,1,0.04 +3695,96.0,10.0,9.0,10.0,10.0,10.0,9.0,10,0.4 +44605,60.0,8.0,4.0,2.0,8.0,10.0,6.0,1,0.03 +67397,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +15938,95.0,10.0,9.0,10.0,10.0,10.0,10.0,124,4.43 +24080,97.0,10.0,10.0,10.0,10.0,10.0,10.0,43,1.47 +58685,81.0,8.0,6.0,9.0,9.0,8.0,8.0,17,1.2 +4614,88.0,8.0,6.0,10.0,10.0,9.0,8.0,5,0.23 +24036,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.19 +302,,,,,,,,0, +625,80.0,9.0,9.0,9.0,9.0,7.0,9.0,5,0.17 +48635,97.0,10.0,10.0,10.0,10.0,9.0,10.0,22,0.75 +49478,85.0,9.0,9.0,9.0,10.0,10.0,9.0,26,0.89 +58538,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +45728,97.0,10.0,10.0,10.0,10.0,10.0,10.0,71,2.5 +77044,,,,,,,,0, +14814,96.0,10.0,10.0,10.0,10.0,9.0,10.0,53,1.81 +11355,90.0,9.0,9.0,10.0,10.0,10.0,9.0,45,1.52 +45826,100.0,10.0,10.0,10.0,10.0,8.0,10.0,3,0.1 +37350,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.1 +12802,90.0,9.0,8.0,10.0,10.0,10.0,9.0,10,0.47 +36544,97.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.27 +75571,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.11 +8127,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +11497,94.0,10.0,10.0,10.0,10.0,10.0,10.0,53,1.86 +3024,,,,,,,,0, +41118,,,,,,,,0, +25636,82.0,9.0,7.0,9.0,9.0,10.0,10.0,10,0.35 +51256,80.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.07 +51012,83.0,9.0,8.0,9.0,9.0,10.0,9.0,24,0.81 +67793,,,,,,,,0, +43041,,,,,,,,0, +33906,93.0,10.0,9.0,9.0,10.0,10.0,9.0,43,1.59 +40732,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +38309,90.0,8.0,8.0,10.0,10.0,10.0,9.0,2,0.09 +23328,,,,,,,,0, +56553,80.0,9.0,7.0,9.0,9.0,7.0,6.0,2,0.07 +42677,97.0,10.0,9.0,10.0,10.0,8.0,10.0,6,0.21 +67629,,,,,,,,0, +69088,87.0,9.0,9.0,9.0,9.0,10.0,8.0,37,1.26 +38881,60.0,8.0,8.0,10.0,8.0,10.0,8.0,1,0.06 +54175,,,,,,,,0, +8583,,,,,,,,0, +3528,,,,,,,,0, +33011,90.0,9.0,9.0,10.0,9.0,10.0,9.0,4,0.14 +50013,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.14 +67239,73.0,7.0,7.0,8.0,10.0,9.0,7.0,3,0.1 +25898,98.0,10.0,10.0,10.0,10.0,10.0,9.0,14,0.47 +75985,90.0,10.0,8.0,10.0,9.0,9.0,9.0,13,0.45 +36086,60.0,4.0,6.0,10.0,10.0,8.0,8.0,1,0.19 +50516,97.0,10.0,10.0,10.0,10.0,10.0,10.0,135,4.59 +38621,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +19731,96.0,9.0,10.0,9.0,10.0,10.0,10.0,5,0.19 +7266,,,,,,,,0, +27786,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +58818,,,,,,,,0, +50088,,,,,,,,0, +33247,,,,,,,,0, +42495,,,,,,,,1,0.03 +33995,93.0,10.0,9.0,10.0,10.0,9.0,9.0,25,0.86 +51994,98.0,9.0,8.0,10.0,10.0,10.0,10.0,16,0.55 +65628,,,,,,,,0, +74026,96.0,10.0,9.0,10.0,10.0,9.0,10.0,15,0.55 +54654,100.0,10.0,10.0,10.0,10.0,10.0,10.0,40,1.7 +37693,93.0,10.0,10.0,9.0,9.0,10.0,10.0,4,0.27 +44556,95.0,10.0,10.0,10.0,10.0,10.0,10.0,23,0.78 +40538,88.0,9.0,9.0,10.0,10.0,9.0,9.0,11,0.37 +13854,,,,,,,,0, +48595,,,,,,,,0, +17004,,,,,,,,0, +12324,98.0,10.0,10.0,10.0,10.0,10.0,10.0,39,1.31 +5592,81.0,9.0,8.0,9.0,9.0,10.0,9.0,54,1.84 +48909,86.0,9.0,9.0,10.0,10.0,9.0,9.0,18,0.67 +66625,80.0,10.0,6.0,10.0,10.0,10.0,10.0,1,0.03 +11036,100.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.21 +56262,93.0,10.0,9.0,8.0,9.0,8.0,9.0,3,0.1 +20895,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +54738,93.0,9.0,10.0,10.0,10.0,10.0,9.0,25,0.95 +57258,93.0,10.0,9.0,10.0,10.0,9.0,9.0,76,2.71 +19459,,,,,,,,1,0.04 +9514,88.0,10.0,8.0,10.0,10.0,10.0,10.0,5,0.17 +50881,84.0,10.0,8.0,10.0,10.0,9.0,9.0,11,0.37 +21699,90.0,9.0,9.0,9.0,10.0,9.0,9.0,34,1.16 +52564,98.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.46 +10714,80.0,9.0,8.0,10.0,8.0,9.0,9.0,4,0.14 +26432,96.0,10.0,10.0,10.0,10.0,9.0,10.0,50,1.73 +53391,,,,,,,,0, +51483,,,,,,,,0, +5809,88.0,9.0,10.0,10.0,10.0,9.0,9.0,52,1.78 +27634,,,,,,,,0, +48922,100.0,10.0,9.0,10.0,10.0,10.0,10.0,8,0.27 +41934,,,,,,,,0, +13606,,,,,,,,0, +12109,91.0,10.0,10.0,9.0,10.0,9.0,9.0,33,1.14 +15936,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.18 +50249,95.0,10.0,10.0,10.0,10.0,10.0,10.0,22,0.75 +28020,96.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.66 +21677,98.0,10.0,10.0,10.0,10.0,10.0,10.0,106,3.61 +60099,91.0,9.0,9.0,10.0,10.0,10.0,9.0,53,1.83 +28595,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.25 +51974,96.0,10.0,10.0,10.0,10.0,8.0,9.0,30,1.02 +41564,87.0,9.0,9.0,9.0,9.0,8.0,9.0,3,0.1 +55457,,,,,,,,1,0.03 +47903,96.0,10.0,10.0,10.0,10.0,10.0,9.0,66,2.42 +28079,97.0,10.0,10.0,10.0,9.0,10.0,9.0,8,0.28 +72306,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +48716,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +26567,,,,,,,,0, +11555,98.0,10.0,9.0,10.0,10.0,10.0,9.0,35,1.21 +46475,97.0,10.0,10.0,10.0,10.0,10.0,10.0,85,2.98 +68106,84.0,8.0,8.0,9.0,8.0,9.0,8.0,22,0.74 +33669,98.0,10.0,10.0,10.0,10.0,9.0,9.0,33,1.14 +54905,100.0,10.0,10.0,10.0,10.0,8.0,8.0,2,0.07 +73089,100.0,10.0,10.0,8.0,10.0,8.0,8.0,1,0.03 +43664,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.1 +34100,,,,,,,,0, +39369,96.0,10.0,10.0,10.0,10.0,10.0,10.0,197,6.72 +19685,88.0,10.0,10.0,10.0,10.0,9.0,9.0,5,0.17 +198,100.0,10.0,10.0,,10.0,,,1,0.04 +30452,,,,,,,,0, +9564,87.0,9.0,9.0,9.0,9.0,9.0,9.0,41,1.53 +52019,60.0,4.0,10.0,10.0,10.0,2.0,4.0,1,1.0 +1198,88.0,10.0,10.0,9.0,9.0,9.0,9.0,6,0.22 +1677,,,,,,,,0, +1226,93.0,10.0,9.0,10.0,10.0,9.0,10.0,7,0.24 +15211,100.0,9.0,9.0,10.0,10.0,9.0,10.0,13,0.45 +3174,97.0,10.0,9.0,10.0,9.0,9.0,10.0,7,0.24 +70806,92.0,10.0,9.0,9.0,10.0,9.0,9.0,18,0.61 +8157,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.07 +33843,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.35 +20183,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.1 +65087,80.0,10.0,8.0,10.0,10.0,8.0,8.0,1,0.03 +5013,98.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.61 +15137,,,,,,,,0, +33537,99.0,10.0,10.0,10.0,10.0,10.0,10.0,28,0.96 +15514,,,,,,,,0, +6489,88.0,9.0,10.0,10.0,9.0,9.0,9.0,43,1.47 +1944,80.0,9.0,7.0,9.0,10.0,8.0,8.0,3,0.13 +23011,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +72066,93.0,9.0,9.0,10.0,10.0,9.0,9.0,30,1.05 +25455,91.0,9.0,9.0,10.0,10.0,10.0,9.0,15,0.52 +52725,,,,,,,,0, +17640,90.0,10.0,9.0,10.0,10.0,10.0,9.0,5,0.17 +42776,94.0,9.0,9.0,10.0,9.0,9.0,9.0,37,1.26 +4445,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.29 +31498,,,,,,,,0, +39440,,,,,,,,0, +8715,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.16 +26679,,,,,,,,0, +22562,100.0,10.0,10.0,10.0,10.0,9.0,10.0,22,0.81 +13833,100.0,10.0,10.0,10.0,10.0,10.0,10.0,30,1.12 +50944,95.0,10.0,9.0,10.0,10.0,10.0,10.0,39,1.32 +60859,,,,,,,,0, +52347,89.0,9.0,9.0,9.0,9.0,9.0,9.0,32,1.18 +25225,98.0,10.0,10.0,10.0,10.0,10.0,10.0,44,1.53 +8312,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +7634,100.0,9.0,9.0,10.0,10.0,10.0,10.0,2,0.12 +975,,,,,,,,0, +14451,,,,,,,,0, +9276,93.0,9.0,9.0,9.0,9.0,9.0,9.0,3,0.11 +51580,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +68775,,,,,,,,0, +31294,90.0,10.0,9.0,10.0,10.0,9.0,9.0,4,0.14 +38587,80.0,8.0,8.0,10.0,10.0,10.0,8.0,1,0.03 +53094,95.0,10.0,10.0,10.0,10.0,10.0,9.0,55,1.9 +77018,90.0,10.0,10.0,9.0,9.0,10.0,10.0,2,0.07 +40240,80.0,6.0,10.0,10.0,9.0,7.0,7.0,3,0.18 +40684,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +25185,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.36 +39544,90.0,10.0,9.0,10.0,10.0,9.0,10.0,3,0.1 +59957,80.0,6.0,8.0,8.0,8.0,8.0,8.0,3,0.11 +11,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.08 +38355,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.28 +72113,98.0,10.0,10.0,10.0,10.0,9.0,10.0,106,3.67 +40519,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.58 +27730,86.0,9.0,9.0,10.0,10.0,10.0,9.0,7,0.28 +48700,95.0,10.0,9.0,10.0,10.0,10.0,9.0,42,1.44 +52890,80.0,9.0,9.0,9.0,9.0,10.0,9.0,5,0.17 +28948,,,,,,,,0, +7931,98.0,10.0,9.0,10.0,10.0,10.0,10.0,23,1.83 +66451,,,,,,,,0, +11454,80.0,8.0,8.0,10.0,8.0,10.0,6.0,2,0.07 +14961,70.0,9.0,8.0,9.0,10.0,7.0,7.0,3,0.1 +457,96.0,10.0,10.0,10.0,10.0,9.0,9.0,20,0.79 +23714,,,,,,,,0, +12133,,,,,,,,0, +57505,,,,,,,,0, +40014,94.0,10.0,9.0,10.0,10.0,9.0,10.0,65,2.23 +71507,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +70962,96.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.34 +73159,99.0,10.0,10.0,10.0,10.0,10.0,10.0,164,5.62 +27698,98.0,9.0,10.0,10.0,10.0,10.0,10.0,10,0.38 +74966,,,,,,,,0, +55089,96.0,9.0,10.0,10.0,10.0,10.0,10.0,39,1.4 +13395,85.0,9.0,6.0,9.0,10.0,10.0,7.0,4,0.14 +63670,,,,,,,,0, +6266,,,,,,,,0, +72780,,,,,,,,0, +48179,,,,,,,,0, +34587,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.42 +56766,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.11 +9751,98.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.58 +4248,90.0,10.0,9.0,10.0,9.0,10.0,9.0,269,10.19 +70189,,,,,,,,0, +14353,,,,,,,,0, +280,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.15 +65254,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.27 +58969,97.0,10.0,10.0,10.0,10.0,9.0,10.0,125,4.75 +38933,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +40446,88.0,9.0,9.0,9.0,9.0,9.0,9.0,43,1.46 +18385,98.0,10.0,10.0,10.0,10.0,10.0,10.0,33,1.22 +27316,87.0,9.0,9.0,9.0,9.0,9.0,9.0,7,0.24 +69095,93.0,9.0,9.0,9.0,9.0,9.0,9.0,5,0.17 +649,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.1 +67159,100.0,10.0,8.0,9.0,9.0,8.0,10.0,2,0.07 +70990,93.0,10.0,9.0,10.0,9.0,10.0,9.0,35,1.23 +65361,97.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.56 +874,97.0,10.0,9.0,10.0,10.0,10.0,10.0,13,0.45 +38189,73.0,8.0,7.0,10.0,9.0,9.0,8.0,3,0.1 +9251,,,,,,,,0, +1423,92.0,10.0,10.0,10.0,9.0,8.0,10.0,19,0.66 +9034,91.0,9.0,9.0,9.0,9.0,9.0,9.0,7,0.26 +40337,98.0,10.0,9.0,10.0,10.0,10.0,10.0,9,0.32 +24345,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +23396,78.0,9.0,8.0,8.0,9.0,10.0,8.0,11,0.43 +19958,,,,,,,,0, +10108,96.0,10.0,10.0,10.0,10.0,10.0,10.0,42,1.47 +15731,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +52469,100.0,10.0,10.0,10.0,10.0,8.0,10.0,2,0.07 +7492,96.0,10.0,10.0,10.0,10.0,10.0,10.0,43,1.61 +16883,90.0,10.0,8.0,10.0,9.0,9.0,9.0,5,0.17 +7932,97.0,10.0,9.0,10.0,10.0,9.0,10.0,29,0.98 +36854,96.0,10.0,10.0,10.0,10.0,10.0,9.0,72,2.45 +48012,,,,,,,,0, +69885,88.0,9.0,9.0,10.0,9.0,9.0,9.0,32,1.09 +31033,98.0,10.0,10.0,10.0,10.0,10.0,10.0,98,3.31 +37971,,,,,,,,0, +53465,95.0,10.0,10.0,10.0,10.0,10.0,10.0,20,1.04 +40549,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.28 +57628,96.0,10.0,9.0,10.0,10.0,9.0,9.0,28,0.96 +37059,,,,,,,,0, +59908,,,,,,,,0, +30385,,,,,,,,0, +55100,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.27 +73908,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.66 +63307,,,,,,,,0, +40276,94.0,10.0,10.0,10.0,10.0,10.0,9.0,131,4.75 +33630,,,,,,,,1,0.03 +8919,,,,,,,,0, +54739,,,,,,,,0, +50315,,,,,,,,1,0.04 +15263,84.0,9.0,10.0,9.0,9.0,10.0,8.0,5,0.17 +24675,99.0,10.0,10.0,10.0,10.0,10.0,10.0,41,1.66 +29591,82.0,9.0,8.0,9.0,9.0,8.0,8.0,89,3.04 +69226,93.0,10.0,9.0,9.0,10.0,10.0,10.0,9,0.35 +33701,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.11 +57028,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.07 +14298,97.0,10.0,10.0,10.0,10.0,9.0,10.0,28,0.98 +15039,,,,,,,,0, +35452,,,,,,,,0, +34203,94.0,10.0,10.0,9.0,10.0,10.0,9.0,29,1.04 +22174,83.0,9.0,8.0,9.0,9.0,9.0,9.0,98,3.33 +73794,79.0,8.0,8.0,10.0,10.0,8.0,8.0,23,0.78 +67172,76.0,9.0,7.0,9.0,10.0,9.0,8.0,10,0.35 +41660,,,,,,,,0, +67575,,,,,,,,0, +50227,98.0,10.0,10.0,10.0,10.0,10.0,10.0,27,0.97 +70452,99.0,10.0,10.0,10.0,10.0,10.0,10.0,43,1.51 +837,,,,,,,,0, +14450,,,,,,,,0, +73956,97.0,10.0,10.0,10.0,10.0,9.0,10.0,10,0.35 +64633,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.39 +44315,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.17 +13081,84.0,9.0,9.0,9.0,9.0,10.0,9.0,22,0.76 +76294,,,,,,,,0, +55785,93.0,9.0,8.0,10.0,10.0,10.0,9.0,19,0.67 +71834,,,,,,,,0, +55893,97.0,10.0,10.0,10.0,10.0,10.0,10.0,18,1.36 +20707,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.27 +63857,100.0,10.0,10.0,10.0,10.0,9.0,10.0,10,0.36 +1573,100.0,10.0,10.0,10.0,10.0,9.0,10.0,10,0.36 +34565,,,,,,,,0, +69170,85.0,10.0,9.0,9.0,10.0,9.0,9.0,5,0.34 +41091,87.0,9.0,6.0,10.0,10.0,9.0,9.0,3,0.1 +76920,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.41 +32135,,,,,,,,0, +52412,,,,,,,,0, +5090,40.0,2.0,2.0,6.0,4.0,8.0,2.0,1,0.04 +56476,84.0,10.0,8.0,10.0,10.0,10.0,8.0,8,0.31 +54528,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.17 +5509,100.0,9.0,10.0,10.0,10.0,9.0,9.0,2,0.1 +9974,100.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.22 +12918,93.0,10.0,10.0,10.0,10.0,9.0,9.0,114,3.9 +303,87.0,9.0,8.0,10.0,10.0,9.0,9.0,3,0.11 +20328,98.0,10.0,10.0,10.0,10.0,10.0,10.0,100,3.85 +13656,97.0,9.0,10.0,10.0,10.0,9.0,9.0,15,0.54 +5218,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.13 +157,99.0,10.0,10.0,10.0,10.0,10.0,10.0,29,1.0 +66340,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.17 +23356,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.51 +72783,67.0,8.0,7.0,8.0,7.0,9.0,8.0,7,0.24 +54275,91.0,9.0,9.0,10.0,9.0,10.0,9.0,23,0.78 +8866,,,,,,,,0, +5384,,,,,,,,0, +63998,100.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.51 +50051,,,,,,,,1,0.04 +45434,97.0,10.0,10.0,10.0,10.0,9.0,9.0,12,0.41 +4928,57.0,6.0,5.0,8.0,7.0,6.0,6.0,6,0.21 +69864,,,,,,,,0, +50924,85.0,8.0,9.0,9.0,8.0,8.0,9.0,4,0.14 +66810,100.0,8.0,10.0,8.0,10.0,8.0,8.0,1,0.04 +68884,80.0,9.0,10.0,8.0,10.0,6.0,7.0,3,0.1 +4395,80.0,9.0,8.0,9.0,9.0,8.0,8.0,15,0.51 +71041,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.03 +36973,80.0,7.0,9.0,10.0,10.0,9.0,8.0,2,0.07 +10231,,,,,,,,0, +2892,85.0,7.0,9.0,9.0,10.0,10.0,9.0,4,0.15 +70649,100.0,10.0,10.0,10.0,10.0,9.0,9.0,6,0.21 +31482,89.0,9.0,8.0,8.0,9.0,10.0,9.0,9,0.31 +32499,99.0,10.0,10.0,10.0,10.0,10.0,10.0,29,5.51 +55617,97.0,10.0,9.0,10.0,10.0,9.0,10.0,64,2.24 +66135,93.0,10.0,9.0,9.0,10.0,9.0,9.0,6,0.5 +55147,97.0,9.0,8.0,10.0,10.0,9.0,9.0,6,0.21 +8354,98.0,10.0,10.0,10.0,10.0,10.0,10.0,53,1.81 +20997,91.0,9.0,9.0,9.0,10.0,9.0,9.0,73,2.57 +51599,100.0,10.0,10.0,9.0,9.0,10.0,10.0,3,0.18 +37721,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +8801,90.0,10.0,10.0,7.0,10.0,8.0,9.0,2,2.0 +75057,80.0,8.0,8.0,6.0,6.0,10.0,8.0,1,0.03 +52711,,,,,,,,0, +19878,,,,,,,,0, +11651,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +36660,98.0,10.0,10.0,10.0,10.0,10.0,10.0,49,1.69 +21921,,,,,,,,1,0.04 +27788,98.0,10.0,10.0,10.0,10.0,10.0,10.0,73,3.32 +474,87.0,9.0,8.0,9.0,9.0,8.0,9.0,14,0.57 +76984,93.0,9.0,9.0,10.0,10.0,10.0,9.0,27,0.94 +22696,,,,,,,,0, +12241,100.0,10.0,9.0,10.0,10.0,10.0,9.0,2,0.07 +44564,,,,,,,,0, +17718,97.0,10.0,10.0,10.0,10.0,10.0,10.0,22,0.76 +67607,97.0,9.0,9.0,10.0,10.0,9.0,9.0,6,0.22 +66517,,,,,,,,0, +4084,98.0,10.0,9.0,10.0,10.0,9.0,10.0,48,1.7 +23387,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.34 +56784,93.0,10.0,9.0,10.0,10.0,10.0,10.0,10,0.39 +16344,94.0,10.0,9.0,10.0,10.0,9.0,9.0,72,2.45 +43898,95.0,9.0,10.0,8.0,8.0,9.0,10.0,4,0.24 +20803,98.0,10.0,8.0,10.0,10.0,10.0,10.0,10,0.4 +5571,,,,,,,,0, +20105,90.0,10.0,10.0,10.0,9.0,10.0,10.0,5,0.17 +63140,89.0,9.0,9.0,10.0,10.0,9.0,9.0,34,1.2 +42450,96.0,10.0,9.0,10.0,10.0,9.0,10.0,9,0.32 +40871,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.1 +51422,,,,,,,,0, +38445,60.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +38068,,,,,,,,0, +30827,,,,,,,,0, +45011,90.0,9.0,9.0,9.0,9.0,9.0,9.0,23,0.8 +68456,100.0,10.0,10.0,10.0,10.0,10.0,10.0,33,1.13 +6435,,,,,,,,0, +63013,,,,,,,,0, +55000,,,,,,,,0, +32904,90.0,9.0,9.0,10.0,9.0,9.0,9.0,2,0.34 +3948,80.0,10.0,8.0,8.0,8.0,8.0,8.0,1,0.04 +74533,99.0,10.0,10.0,10.0,10.0,9.0,9.0,18,0.66 +61113,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.1 +4082,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +24744,,,,,,,,1,0.03 +7744,,,,,,,,1,0.03 +10204,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.31 +4965,,,,,,,,0, +6290,96.0,9.0,10.0,10.0,10.0,9.0,9.0,12,0.48 +47420,95.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.57 +33216,,,,,,,,0, +39040,,,,,,,,0, +26164,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +17234,,,,,,,,0, +49345,100.0,8.0,10.0,10.0,10.0,9.0,10.0,2,0.07 +18626,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +23719,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +53074,,,,,,,,0, +62584,90.0,10.0,10.0,10.0,10.0,9.0,10.0,11,0.41 +56858,91.0,10.0,9.0,9.0,10.0,9.0,9.0,7,3.82 +68976,,,,,,,,0, +57160,92.0,10.0,9.0,10.0,10.0,10.0,9.0,121,4.13 +8073,95.0,10.0,9.0,10.0,10.0,10.0,10.0,22,0.76 +61974,80.0,8.0,10.0,10.0,10.0,8.0,10.0,1,0.03 +8837,,,,,,,,0, +72674,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.2 +77093,91.0,9.0,9.0,10.0,9.0,9.0,9.0,23,1.09 +832,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.15 +25160,91.0,9.0,9.0,10.0,10.0,10.0,9.0,156,5.53 +74672,60.0,8.0,5.0,8.0,8.0,5.0,6.0,3,0.1 +27064,92.0,9.0,9.0,10.0,10.0,9.0,9.0,60,2.37 +18913,,,,,,,,0, +71938,60.0,10.0,10.0,10.0,10.0,10.0,8.0,2,0.07 +9409,,,,,,,,0, +27458,70.0,7.0,8.0,9.0,9.0,10.0,8.0,4,0.14 +53137,100.0,10.0,10.0,8.0,10.0,10.0,10.0,1,0.04 +43311,87.0,10.0,8.0,9.0,9.0,9.0,8.0,3,0.72 +37488,90.0,10.0,8.0,10.0,10.0,10.0,8.0,2,0.08 +70273,97.0,10.0,10.0,10.0,10.0,10.0,10.0,40,1.38 +26658,60.0,5.0,4.0,8.0,8.0,8.0,7.0,2,0.07 +115,83.0,8.0,8.0,9.0,8.0,9.0,8.0,39,2.48 +31789,75.0,7.0,8.0,9.0,8.0,9.0,8.0,25,0.87 +59765,97.0,10.0,10.0,9.0,10.0,9.0,10.0,6,0.2 +7519,93.0,9.0,10.0,9.0,9.0,9.0,9.0,3,0.11 +18769,,,,,,,,0, +47957,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.41 +23530,95.0,9.0,10.0,10.0,10.0,10.0,9.0,16,0.58 +48501,,,,,,,,0, +23046,97.0,10.0,10.0,10.0,10.0,10.0,9.0,13,0.48 +40196,,,,,,,,0, +43794,80.0,8.0,8.0,8.0,8.0,8.0,8.0,1,0.05 +49030,,,,,,,,0, +76112,96.0,9.0,10.0,10.0,10.0,9.0,10.0,14,0.49 +25948,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.3 +35087,,,,,,,,0, +74973,,,,,,,,0, +25159,98.0,10.0,10.0,10.0,10.0,10.0,10.0,40,1.49 +39078,93.0,10.0,9.0,10.0,10.0,9.0,10.0,3,0.13 +18189,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.11 +15916,,,,,,,,0, +55159,88.0,9.0,10.0,9.0,10.0,9.0,9.0,19,0.68 +57627,84.0,10.0,9.0,10.0,8.0,8.0,8.0,5,0.17 +45207,94.0,10.0,10.0,9.0,10.0,10.0,9.0,78,2.68 +30615,,,,,,,,0, +70607,93.0,10.0,10.0,10.0,10.0,9.0,10.0,9,0.31 +34091,,,,,,,,0, +24088,93.0,9.0,9.0,10.0,10.0,9.0,9.0,80,2.71 +46628,90.0,9.0,9.0,10.0,10.0,10.0,9.0,4,0.17 +1316,95.0,10.0,10.0,10.0,10.0,10.0,10.0,133,4.58 +74469,96.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.54 +39024,96.0,10.0,10.0,10.0,10.0,9.0,9.0,5,0.21 +44159,,,,,,,,0, +40318,96.0,10.0,10.0,10.0,10.0,10.0,10.0,54,1.86 +35995,96.0,10.0,10.0,10.0,10.0,10.0,10.0,93,3.25 +32551,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.39 +40363,100.0,10.0,9.0,10.0,10.0,10.0,9.0,14,0.8 +3397,,,,,,,,0, +9222,89.0,9.0,9.0,10.0,10.0,9.0,9.0,14,0.52 +39191,94.0,10.0,9.0,10.0,9.0,10.0,9.0,196,6.7 +59002,,,,,,,,0, +71548,97.0,10.0,10.0,9.0,9.0,9.0,10.0,6,0.26 +42110,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.04 +59231,,,,,,,,0, +39785,,,,,,,,0, +35501,100.0,10.0,10.0,10.0,10.0,9.0,9.0,11,0.39 +22255,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.08 +7470,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.13 +69153,100.0,10.0,9.0,9.0,10.0,8.0,10.0,4,0.14 +51596,,,,,,,,0, +31664,100.0,10.0,10.0,10.0,8.0,8.0,10.0,1,0.04 +61544,97.0,10.0,10.0,10.0,10.0,9.0,10.0,46,1.6 +69277,85.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.14 +12515,80.0,8.0,9.0,10.0,9.0,9.0,8.0,6,0.21 +3786,96.0,10.0,10.0,10.0,10.0,9.0,10.0,17,0.58 +2821,,,,,,,,0, +26996,95.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.5 +63100,,,,,,,,0, +38873,80.0,8.0,8.0,8.0,8.0,8.0,8.0,1,0.05 +52334,99.0,10.0,10.0,10.0,10.0,10.0,9.0,23,0.83 +57262,,,,,,,,1,0.03 +54210,,,,,,,,0, +14098,93.0,9.0,9.0,10.0,10.0,9.0,9.0,45,1.54 +32447,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.11 +7834,,,,,,,,0, +23671,,,,,,,,0, +77003,97.0,10.0,10.0,10.0,9.0,9.0,10.0,13,0.46 +70093,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.11 +39413,,,,,,,,0, +2986,91.0,10.0,10.0,10.0,10.0,10.0,9.0,30,1.04 +16059,98.0,10.0,10.0,10.0,10.0,9.0,10.0,11,0.38 +75833,,,,,,,,0, +58540,,,,,,,,0, +34945,,,,,,,,0, +30531,98.0,10.0,10.0,10.0,10.0,9.0,10.0,24,0.94 +7716,100.0,10.0,9.0,9.0,9.0,9.0,9.0,2,0.08 +46861,93.0,9.0,10.0,9.0,9.0,9.0,9.0,3,0.11 +22238,,,,,,,,0, +2702,,,,,,,,0, +23179,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +71215,,,,,,,,0, +24190,99.0,10.0,9.0,10.0,10.0,9.0,10.0,15,0.52 +38601,60.0,8.0,10.0,10.0,10.0,8.0,10.0,1,0.04 +34109,100.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.56 +11533,,,,,,,,0, +71175,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.14 +27984,,,,,,,,0, +33140,87.0,9.0,8.0,10.0,10.0,10.0,9.0,17,0.59 +43238,,,,,,,,0, +70106,100.0,9.0,9.0,10.0,10.0,9.0,9.0,3,0.11 +41286,,,,,,,,0, +67364,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.21 +10623,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +18747,82.0,9.0,8.0,10.0,10.0,10.0,8.0,19,0.65 +4731,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.43 +46092,,,,,,,,0, +43362,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.32 +66698,79.0,8.0,7.0,9.0,9.0,10.0,9.0,17,0.58 +55724,93.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.1 +58947,,,,,,,,0, +53972,85.0,8.0,8.0,9.0,10.0,9.0,8.0,22,0.76 +18643,,,,,,,,0, +24288,91.0,10.0,9.0,10.0,10.0,10.0,9.0,39,1.34 +31764,100.0,10.0,10.0,10.0,10.0,9.0,10.0,20,0.72 +61986,99.0,10.0,10.0,10.0,10.0,10.0,10.0,22,0.76 +104,99.0,10.0,9.0,10.0,10.0,10.0,10.0,20,0.72 +4427,98.0,10.0,10.0,10.0,10.0,10.0,9.0,23,0.82 +19245,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.17 +4224,,,,,,,,0, +42589,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.1 +74484,92.0,9.0,9.0,9.0,9.0,9.0,9.0,99,3.47 +67519,,,,,,,,0, +51296,97.0,10.0,10.0,10.0,10.0,10.0,10.0,22,0.75 +45232,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.15 +13310,100.0,8.0,8.0,10.0,10.0,10.0,10.0,2,0.11 +29111,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.18 +24910,,,,,,,,0, +74595,100.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.6 +37415,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +10567,,,,,,,,0, +26211,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.07 +62983,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.03 +66958,,,,,,,,0, +59204,96.0,10.0,10.0,10.0,10.0,9.0,10.0,191,6.56 +9590,97.0,10.0,10.0,10.0,10.0,10.0,10.0,85,2.9 +10423,80.0,10.0,10.0,10.0,10.0,6.0,8.0,1,0.18 +60671,96.0,10.0,9.0,10.0,10.0,10.0,10.0,18,0.92 +52034,89.0,9.0,8.0,10.0,10.0,10.0,9.0,33,1.49 +69427,96.0,9.0,9.0,10.0,9.0,9.0,9.0,16,0.56 +4234,90.0,10.0,9.0,10.0,10.0,10.0,9.0,2,0.07 +13464,,,,,,,,1,0.03 +39439,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.25 +19295,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.21 +76832,99.0,10.0,10.0,10.0,10.0,10.0,10.0,53,1.87 +29723,,,,,,,,0, +54234,100.0,8.0,10.0,10.0,10.0,10.0,8.0,1,0.04 +43164,99.0,10.0,10.0,10.0,10.0,9.0,10.0,148,5.18 +61037,90.0,10.0,9.0,10.0,10.0,10.0,9.0,2,0.07 +11524,,,,,,,,0, +46730,94.0,10.0,9.0,10.0,10.0,10.0,9.0,28,1.01 +8163,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +35656,96.0,10.0,9.0,10.0,10.0,10.0,10.0,20,0.68 +3383,100.0,10.0,9.0,10.0,10.0,9.0,9.0,2,0.07 +47015,,,,,,,,0, +38955,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.14 +1999,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.21 +927,,,,,,,,0, +63335,,,,,,,,0, +32425,80.0,8.0,8.0,10.0,10.0,8.0,8.0,1,0.03 +46244,96.0,9.0,9.0,10.0,10.0,9.0,9.0,14,0.54 +58434,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +37741,98.0,10.0,10.0,10.0,10.0,9.0,10.0,73,2.68 +31997,88.0,9.0,9.0,9.0,9.0,9.0,9.0,74,2.52 +54432,,,,,,,,0, +49019,,,,,,,,0, +46453,99.0,10.0,10.0,10.0,10.0,10.0,10.0,67,3.34 +64732,98.0,10.0,10.0,10.0,10.0,9.0,10.0,9,0.32 +56161,93.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.1 +6980,96.0,10.0,10.0,10.0,10.0,10.0,9.0,58,2.01 +49369,96.0,10.0,10.0,10.0,10.0,10.0,10.0,54,1.88 +43604,98.0,10.0,10.0,10.0,10.0,10.0,9.0,20,0.69 +69985,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +8758,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.43 +71398,90.0,10.0,8.0,10.0,10.0,10.0,10.0,4,0.14 +49659,90.0,9.0,10.0,10.0,10.0,8.0,9.0,33,1.15 +54008,80.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.03 +8436,100.0,10.0,10.0,10.0,10.0,7.0,8.0,3,1.17 +61388,95.0,9.0,10.0,10.0,10.0,8.0,9.0,22,0.75 +75725,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.18 +10960,,,,,,,,0, +62517,,,,,,,,0, +33064,,,,,,,,0, +68085,94.0,10.0,9.0,10.0,10.0,10.0,10.0,131,4.48 +32583,80.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.04 +62758,99.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.49 +13962,96.0,10.0,9.0,10.0,10.0,10.0,9.0,17,0.61 +9250,,,,,,,,1,0.03 +69305,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +47050,80.0,6.0,6.0,8.0,8.0,8.0,6.0,1,0.04 +17251,,,,,,,,0, +21100,92.0,9.0,10.0,10.0,10.0,8.0,9.0,40,1.37 +3219,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.35 +33836,20.0,2.0,2.0,6.0,2.0,2.0,2.0,1,0.06 +24365,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.11 +65306,,,,,,,,0, +23513,98.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.28 +54168,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.35 +33057,,,,,,,,0, +74143,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +25284,,,,,,,,0, +8249,91.0,10.0,9.0,10.0,9.0,9.0,9.0,103,3.51 +38176,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,4.22 +53950,,,,,,,,0, +20128,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.15 +50710,80.0,10.0,8.0,10.0,10.0,8.0,10.0,1,0.04 +70477,,,,,,,,3,0.1 +73687,,,,,,,,0, +61221,84.0,9.0,9.0,9.0,10.0,10.0,9.0,20,0.85 +64652,100.0,10.0,10.0,9.0,10.0,8.0,10.0,2,0.07 +13034,,,,,,,,0, +9062,90.0,9.0,9.0,9.0,9.0,9.0,9.0,49,1.68 +76820,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +75657,,,,,,,,0, +23286,96.0,10.0,9.0,9.0,9.0,9.0,9.0,6,0.33 +12898,99.0,10.0,10.0,10.0,10.0,10.0,10.0,35,1.2 +52270,,,,,,,,0, +69101,91.0,10.0,9.0,9.0,10.0,10.0,9.0,49,1.74 +15622,,,,,,,,0, +41224,99.0,10.0,10.0,10.0,10.0,10.0,10.0,39,1.34 +16141,,,,,,,,1,0.03 +65248,,,,,,,,0, +62910,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.13 +4914,,,,,,,,0, +10525,97.0,10.0,9.0,10.0,10.0,10.0,10.0,30,1.07 +23423,99.0,10.0,9.0,10.0,10.0,10.0,10.0,15,0.51 +67915,95.0,10.0,9.0,10.0,10.0,10.0,9.0,25,0.88 +30231,97.0,9.0,9.0,10.0,8.0,9.0,9.0,6,0.21 +15963,,,,,,,,0, +21824,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.38 +72678,,,,,,,,0, +30307,92.0,10.0,10.0,10.0,10.0,9.0,9.0,42,1.46 +76,97.0,10.0,10.0,10.0,10.0,9.0,10.0,12,0.42 +36983,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.25 +2406,,,,,,,,0, +67928,,,,,,,,0, +9583,96.0,9.0,10.0,9.0,10.0,9.0,9.0,5,0.21 +52113,,,,,,,,0, +14857,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.14 +8242,,,,,,,,0, +45868,98.0,10.0,10.0,10.0,10.0,10.0,10.0,35,1.2 +5224,,,,,,,,0, +635,97.0,10.0,9.0,10.0,10.0,10.0,10.0,25,0.98 +73119,92.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.32 +3668,,,,,,,,0, +74414,95.0,10.0,9.0,10.0,10.0,10.0,8.0,4,0.14 +16890,,,,,,,,0, +53974,93.0,10.0,10.0,9.0,8.0,10.0,10.0,3,0.17 +33325,99.0,10.0,10.0,10.0,10.0,10.0,10.0,31,1.09 +27333,92.0,10.0,8.0,10.0,10.0,8.0,10.0,5,0.17 +67516,98.0,10.0,10.0,10.0,10.0,9.0,10.0,24,1.02 +46390,,,,,,,,1,0.04 +26956,100.0,9.0,9.0,10.0,10.0,10.0,9.0,3,0.24 +19237,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +15121,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.41 +65870,95.0,10.0,10.0,10.0,10.0,10.0,10.0,50,1.72 +66348,90.0,10.0,9.0,10.0,10.0,9.0,9.0,2,0.08 +59983,70.0,10.0,4.0,6.0,10.0,10.0,8.0,2,0.07 +37509,,,,,,,,1,0.03 +37481,,,,,,,,0, +9532,,,,,,,,0, +20662,99.0,10.0,9.0,10.0,10.0,10.0,10.0,19,0.74 +61304,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.41 +383,97.0,10.0,10.0,10.0,10.0,10.0,10.0,23,0.85 +30714,97.0,10.0,10.0,10.0,10.0,10.0,10.0,20,0.69 +71465,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +20111,100.0,10.0,10.0,9.0,10.0,10.0,10.0,3,0.13 +18393,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +67246,,,,,,,,1,0.04 +59932,,,,,,,,0, +60517,80.0,8.0,6.0,10.0,10.0,10.0,8.0,1,0.04 +48971,87.0,9.0,9.0,10.0,10.0,7.0,9.0,19,0.65 +53236,86.0,9.0,9.0,9.0,10.0,9.0,9.0,24,0.84 +40327,99.0,10.0,10.0,10.0,10.0,10.0,10.0,26,0.9 +51813,97.0,10.0,10.0,10.0,10.0,10.0,10.0,49,1.72 +24131,,,,,,,,0, +28995,,,,,,,,1,0.03 +18129,,,,,,,,0, +38311,90.0,8.0,8.0,9.0,9.0,10.0,10.0,2,0.07 +36522,,,,,,,,0, +50325,94.0,10.0,10.0,10.0,10.0,10.0,10.0,31,1.06 +54257,100.0,10.0,9.0,10.0,10.0,9.0,9.0,3,0.19 +49642,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +17172,92.0,9.0,9.0,9.0,9.0,10.0,9.0,52,1.85 +49325,92.0,9.0,8.0,10.0,9.0,10.0,9.0,6,0.25 +60670,92.0,10.0,10.0,10.0,10.0,9.0,10.0,83,2.83 +4474,,,,,,,,0, +228,,,,,,,,0, +67354,,,,,,,,1,0.04 +27456,,,,,,,,0, +53916,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.34 +65107,70.0,6.0,7.0,9.0,9.0,9.0,6.0,2,0.07 +29042,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.31 +72370,94.0,10.0,10.0,10.0,10.0,9.0,10.0,36,1.31 +28513,,,,,,,,2,0.16 +28926,100.0,9.0,10.0,10.0,10.0,10.0,9.0,5,0.18 +27829,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.14 +63076,96.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.21 +57797,100.0,10.0,10.0,10.0,10.0,8.0,10.0,11,0.4 +37273,100.0,10.0,9.0,9.0,10.0,6.0,8.0,3,0.1 +13782,93.0,10.0,10.0,10.0,10.0,10.0,9.0,7,0.3 +1481,94.0,10.0,9.0,10.0,10.0,10.0,9.0,46,1.63 +12120,90.0,10.0,9.0,10.0,10.0,9.0,10.0,2,0.07 +28596,,,,,,,,0, +12136,97.0,10.0,10.0,10.0,10.0,10.0,9.0,23,0.86 +65797,99.0,10.0,10.0,10.0,10.0,10.0,9.0,21,0.72 +72007,98.0,10.0,10.0,10.0,10.0,10.0,10.0,171,5.85 +34324,95.0,10.0,10.0,10.0,10.0,9.0,9.0,48,1.71 +21368,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +22314,,,,,,,,0, +27875,96.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.62 +13761,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.14 +4907,,,,,,,,0, +46485,,,,,,,,0, +45126,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.42 +71292,94.0,10.0,10.0,10.0,10.0,10.0,9.0,22,0.79 +40003,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +31829,88.0,9.0,9.0,10.0,10.0,9.0,9.0,26,0.95 +38871,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.14 +15416,,,,,,,,0, +56441,,,,,,,,0, +39923,93.0,10.0,10.0,10.0,10.0,9.0,10.0,16,0.55 +26379,99.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.64 +57068,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +17300,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.03 +49618,87.0,9.0,9.0,10.0,9.0,10.0,9.0,41,1.43 +57661,90.0,10.0,9.0,10.0,10.0,9.0,10.0,3,0.11 +4451,92.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.32 +25603,98.0,10.0,10.0,10.0,10.0,10.0,9.0,14,0.49 +22551,94.0,9.0,10.0,10.0,10.0,10.0,10.0,7,0.24 +35365,92.0,10.0,10.0,10.0,10.0,8.0,8.0,5,0.17 +75090,100.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.55 +44683,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.18 +58395,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.11 +29669,97.0,10.0,10.0,9.0,10.0,10.0,10.0,19,0.67 +66474,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +27191,,,,,,,,0, +41193,,,,,,,,0, +37872,80.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.03 +36483,91.0,10.0,10.0,10.0,10.0,9.0,10.0,18,0.63 +31910,,,,,,,,0, +43189,,,,,,,,0, +63610,,,,,,,,0, +26912,,,,,,,,0, +19166,92.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.42 +18457,95.0,10.0,9.0,10.0,10.0,10.0,9.0,31,1.1 +59838,92.0,9.0,9.0,9.0,9.0,10.0,9.0,21,0.75 +33837,80.0,10.0,9.0,10.0,10.0,10.0,9.0,2,0.07 +50629,87.0,9.0,9.0,9.0,9.0,10.0,9.0,13,0.52 +33512,90.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.11 +42235,87.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.1 +36108,95.0,9.0,10.0,10.0,10.0,9.0,10.0,37,1.26 +36627,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.4 +16033,,,,,,,,1,0.03 +10160,92.0,10.0,9.0,10.0,9.0,10.0,9.0,61,2.21 +70672,97.0,10.0,9.0,10.0,10.0,10.0,10.0,31,1.11 +1106,100.0,10.0,9.0,10.0,10.0,9.0,9.0,3,0.21 +49491,99.0,10.0,10.0,10.0,10.0,10.0,10.0,20,0.74 +37778,,,,,,,,0, +42077,92.0,9.0,10.0,9.0,9.0,10.0,10.0,5,0.25 +31928,,,,,,,,0, +24963,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.78 +39173,20.0,2.0,2.0,2.0,2.0,2.0,2.0,5,0.18 +14136,,,,,,,,1,0.03 +71558,96.0,10.0,10.0,10.0,10.0,10.0,9.0,34,1.25 +33422,,,,,,,,0, +33224,,,,,,,,0, +46291,,,,,,,,0, +42136,100.0,9.0,9.0,9.0,10.0,10.0,10.0,2,0.07 +10193,99.0,10.0,10.0,10.0,10.0,10.0,10.0,29,1.01 +65636,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +24838,88.0,9.0,9.0,9.0,10.0,8.0,9.0,37,1.31 +74651,,,,,,,,0, +49072,83.0,9.0,8.0,9.0,9.0,9.0,8.0,49,1.68 +15063,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.24 +29614,87.0,9.0,8.0,10.0,10.0,10.0,9.0,116,4.1 +16693,80.0,9.0,9.0,9.0,8.0,9.0,9.0,2,0.07 +19509,91.0,9.0,9.0,9.0,9.0,8.0,9.0,10,0.35 +36194,98.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.56 +59069,96.0,10.0,9.0,10.0,10.0,9.0,9.0,61,2.13 +58158,85.0,9.0,9.0,10.0,10.0,10.0,9.0,196,6.83 +47474,,,,,,,,0, +63640,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +56140,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +26214,89.0,10.0,9.0,10.0,10.0,9.0,9.0,7,0.25 +26562,97.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.53 +65068,73.0,9.0,9.0,9.0,7.0,9.0,9.0,3,0.14 +21269,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.1 +28484,98.0,10.0,10.0,10.0,10.0,10.0,10.0,20,0.7 +12979,92.0,9.0,10.0,10.0,10.0,10.0,10.0,12,0.41 +55136,100.0,9.0,9.0,10.0,9.0,10.0,9.0,15,0.53 +8896,93.0,10.0,9.0,10.0,10.0,10.0,9.0,189,6.67 +41402,97.0,10.0,10.0,10.0,10.0,10.0,10.0,38,1.3 +21126,,,,,,,,0, +36175,96.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.56 +31150,,,,,,,,0, +54577,,,,,,,,0, +72643,93.0,10.0,9.0,10.0,10.0,10.0,9.0,10,0.36 +28468,80.0,10.0,8.0,8.0,10.0,10.0,8.0,1,0.04 +19762,,,,,,,,0, +46422,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +37358,92.0,9.0,9.0,9.0,9.0,9.0,9.0,30,1.06 +30472,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.61 +24542,,,,,,,,0, +68428,,,,,,,,0, +64890,70.0,8.0,7.0,8.0,8.0,8.0,7.0,14,0.49 +10209,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +35979,,,,,,,,1,0.04 +73772,88.0,9.0,9.0,9.0,9.0,9.0,9.0,25,0.9 +62527,,,,,,,,0, +15292,87.0,9.0,9.0,9.0,10.0,9.0,9.0,3,0.13 +33724,,,,,,,,0, +41820,,,,,,,,0, +63053,67.0,7.0,6.0,9.0,9.0,9.0,7.0,3,0.1 +25792,,,,,,,,0, +21709,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +54947,93.0,9.0,9.0,10.0,10.0,9.0,9.0,3,0.1 +4455,100.0,8.0,10.0,10.0,10.0,8.0,10.0,1,0.03 +51173,,,,,,,,0, +20704,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.14 +32276,80.0,8.0,8.0,10.0,10.0,8.0,8.0,2,0.07 +59314,,,,,,,,0, +34429,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +55710,,,,,,,,0, +9608,97.0,10.0,10.0,10.0,10.0,10.0,10.0,27,1.0 +67949,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.93 +26962,,,,,,,,0, +46023,,,,,,,,0, +46162,90.0,10.0,9.0,10.0,10.0,9.0,10.0,2,0.07 +42831,91.0,9.0,9.0,8.0,10.0,9.0,8.0,26,0.95 +67859,80.0,8.0,6.0,4.0,8.0,10.0,8.0,1,0.04 +23163,97.0,10.0,10.0,10.0,10.0,9.0,10.0,22,0.76 +71608,,,,,,,,0, +43654,100.0,9.0,8.0,8.0,10.0,10.0,9.0,4,0.14 +30262,,,,,,,,0, +36846,95.0,10.0,9.0,9.0,9.0,10.0,10.0,28,0.96 +68914,91.0,10.0,9.0,10.0,9.0,8.0,9.0,18,0.64 +24906,96.0,10.0,10.0,10.0,10.0,10.0,10.0,38,1.33 +61083,98.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.56 +38406,98.0,10.0,10.0,10.0,10.0,10.0,10.0,31,1.09 +75801,,,,,,,,0, +29771,92.0,10.0,9.0,9.0,9.0,9.0,9.0,37,1.3 +54068,90.0,10.0,9.0,10.0,9.0,9.0,9.0,2,0.07 +61448,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.17 +58914,97.0,10.0,9.0,10.0,10.0,10.0,9.0,7,0.38 +36537,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +18964,93.0,9.0,9.0,9.0,10.0,10.0,10.0,15,0.52 +71539,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.04 +15233,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +9458,100.0,10.0,10.0,8.0,10.0,10.0,10.0,2,0.1 +74678,80.0,9.0,8.0,9.0,9.0,9.0,8.0,8,0.33 +71552,96.0,10.0,9.0,10.0,10.0,10.0,9.0,108,3.77 +23272,87.0,9.0,10.0,10.0,10.0,9.0,9.0,3,0.2 +65034,,,,,,,,0, +11247,,,,,,,,0, +69482,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.11 +53723,90.0,9.0,9.0,8.0,9.0,9.0,8.0,2,0.07 +57812,97.0,10.0,10.0,10.0,10.0,9.0,10.0,23,2.8 +37099,,,,,,,,0, +50434,,,,,,,,0, +5919,92.0,10.0,9.0,10.0,10.0,9.0,9.0,55,2.19 +32227,,,,,,,,1,0.03 +71092,100.0,10.0,10.0,10.0,10.0,10.0,10.0,27,0.94 +21819,,,,,,,,0, +28987,95.0,10.0,10.0,10.0,10.0,8.0,10.0,5,0.17 +4605,,,,,,,,0, +15254,84.0,9.0,8.0,9.0,10.0,10.0,9.0,38,1.38 +33032,84.0,9.0,9.0,9.0,9.0,8.0,8.0,23,0.8 +8635,93.0,9.0,9.0,9.0,10.0,9.0,9.0,32,1.12 +50704,,,,,,,,0, +20702,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.46 +47863,90.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.39 +63829,76.0,8.0,8.0,8.0,8.0,9.0,8.0,140,4.83 +27712,93.0,9.0,8.0,10.0,10.0,9.0,10.0,25,0.87 +67499,,,,,,,,0, +56125,96.0,9.0,10.0,10.0,10.0,10.0,9.0,16,1.07 +41022,,,,,,,,0, +42969,100.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.56 +61234,96.0,10.0,10.0,9.0,10.0,10.0,9.0,23,0.86 +32549,,,,,,,,0, +63046,95.0,9.0,9.0,9.0,10.0,8.0,9.0,8,0.28 +19470,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.17 +17893,96.0,10.0,10.0,10.0,10.0,10.0,10.0,56,1.97 +17442,,,,,,,,0, +31157,,,,,,,,0, +74819,89.0,10.0,10.0,10.0,10.0,9.0,10.0,15,0.64 +54861,97.0,10.0,9.0,10.0,10.0,9.0,10.0,13,0.46 +46557,94.0,10.0,9.0,10.0,10.0,9.0,10.0,10,0.36 +54490,91.0,10.0,9.0,9.0,10.0,9.0,9.0,13,0.48 +44552,,,,,,,,1,0.34 +59313,,,,,,,,0, +12822,,,,,,,,0, +21994,89.0,9.0,9.0,9.0,10.0,9.0,9.0,24,0.89 +73494,,,,,,,,0, +13742,,,,,,,,1,0.03 +3863,100.0,10.0,10.0,8.0,10.0,10.0,10.0,1,0.04 +43607,,,,,,,,0, +35947,,,,,,,,0, +75618,,,,,,,,0, +57195,98.0,10.0,10.0,10.0,10.0,10.0,10.0,66,2.28 +62148,80.0,9.0,9.0,8.0,9.0,7.0,8.0,2,0.07 +40266,80.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.04 +31975,80.0,10.0,8.0,10.0,10.0,8.0,8.0,1,0.04 +29267,80.0,10.0,10.0,8.0,10.0,10.0,10.0,1,0.04 +60417,99.0,10.0,10.0,10.0,10.0,10.0,10.0,35,1.3 +2987,87.0,9.0,9.0,8.0,8.0,8.0,9.0,21,0.74 +30685,,,,,,,,0, +9003,98.0,10.0,10.0,10.0,10.0,9.0,10.0,41,1.58 +23947,,,,,,,,0, +69068,87.0,10.0,9.0,10.0,10.0,10.0,9.0,47,1.97 +16538,99.0,10.0,10.0,10.0,10.0,9.0,10.0,105,3.64 +51575,,,,,,,,0, +5793,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.17 +71982,,,,,,,,0, +2626,,,,,,,,0, +51309,95.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.17 +68398,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.14 +22083,90.0,10.0,8.0,10.0,10.0,8.0,9.0,2,0.07 +38503,98.0,10.0,9.0,10.0,10.0,10.0,10.0,11,0.71 +22803,,,,,,,,0, +36195,,,,,,,,0, +20586,,,,,,,,0, +56341,,,,,,,,0, +70297,96.0,10.0,10.0,10.0,10.0,10.0,10.0,87,3.02 +75210,100.0,9.0,9.0,10.0,10.0,9.0,9.0,3,0.11 +26572,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.27 +36884,,,,,,,,1,0.04 +59718,60.0,10.0,4.0,8.0,6.0,6.0,8.0,1,0.04 +12325,89.0,9.0,9.0,10.0,10.0,10.0,9.0,23,0.8 +34247,,,,,,,,0, +54685,85.0,9.0,8.0,10.0,9.0,10.0,9.0,8,0.28 +7343,,,,,,,,0, +74085,97.0,10.0,9.0,10.0,10.0,10.0,10.0,60,2.09 +60291,97.0,10.0,10.0,10.0,10.0,10.0,9.0,13,0.46 +45930,80.0,8.0,10.0,8.0,10.0,8.0,10.0,2,1.54 +56137,,,,,,,,0, +73991,92.0,10.0,9.0,10.0,10.0,10.0,9.0,59,2.03 +34697,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +2727,99.0,10.0,10.0,10.0,10.0,10.0,10.0,48,1.7 +34956,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +26105,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.15 +68227,97.0,10.0,10.0,10.0,10.0,9.0,10.0,53,1.98 +43825,97.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.47 +29633,,,,,,,,0, +31144,93.0,10.0,10.0,10.0,10.0,9.0,9.0,15,0.54 +21574,,,,,,,,0, +41463,,,,,,,,0, +30765,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.32 +16326,,,,,,,,0, +75731,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.23 +27238,91.0,9.0,8.0,10.0,10.0,10.0,9.0,22,0.78 +27709,87.0,9.0,9.0,9.0,8.0,8.0,9.0,9,0.31 +12290,94.0,10.0,9.0,10.0,10.0,10.0,10.0,34,1.19 +17050,,,,,,,,0, +5936,80.0,8.0,6.0,10.0,8.0,8.0,8.0,1,0.04 +59713,97.0,10.0,10.0,10.0,10.0,10.0,10.0,16,1.73 +59610,97.0,10.0,10.0,10.0,10.0,9.0,10.0,63,2.91 +9146,100.0,9.0,10.0,10.0,9.0,9.0,10.0,3,0.1 +28431,,,,,,,,0, +53703,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.11 +32474,80.0,9.0,7.0,10.0,10.0,10.0,8.0,2,0.11 +57707,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,2.76 +76837,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.18 +65733,96.0,10.0,10.0,10.0,10.0,10.0,10.0,27,1.0 +50699,,,,,,,,0, +74565,91.0,10.0,9.0,10.0,10.0,9.0,10.0,13,0.52 +45117,100.0,10.0,10.0,10.0,10.0,9.0,9.0,4,0.15 +53066,88.0,9.0,9.0,9.0,9.0,9.0,9.0,20,0.69 +14020,96.0,10.0,10.0,10.0,10.0,9.0,10.0,9,0.31 +65911,,,,,,,,0, +68253,,,,,,,,0, +41213,,,,,,,,0, +8461,99.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.53 +12378,100.0,10.0,10.0,9.0,10.0,10.0,10.0,2,0.07 +7211,94.0,10.0,10.0,10.0,10.0,9.0,9.0,14,0.75 +26461,,,,,,,,0, +3899,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.15 +56925,80.0,10.0,6.0,10.0,10.0,10.0,10.0,1,0.04 +36378,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.23 +948,95.0,10.0,10.0,10.0,10.0,9.0,9.0,21,0.74 +15643,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +52758,98.0,10.0,10.0,10.0,10.0,9.0,10.0,41,1.45 +53772,99.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.61 +29020,,,,,,,,0, +13167,92.0,10.0,10.0,10.0,10.0,10.0,9.0,17,0.64 +24473,,,,,,,,0, +50241,95.0,10.0,9.0,10.0,10.0,9.0,9.0,21,0.73 +57782,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.2 +16970,90.0,10.0,9.0,9.0,10.0,9.0,9.0,8,0.29 +37692,80.0,8.0,9.0,9.0,9.0,9.0,8.0,6,0.21 +68662,,,,,,,,0, +76639,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.43 +53663,99.0,10.0,10.0,10.0,10.0,10.0,10.0,134,5.05 +7159,97.0,10.0,10.0,10.0,10.0,10.0,10.0,83,2.89 +58771,93.0,9.0,9.0,10.0,10.0,10.0,9.0,3,0.11 +18072,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +50123,,,,,,,,0, +27946,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +53646,79.0,8.0,8.0,9.0,8.0,10.0,8.0,29,1.07 +66012,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.18 +39275,98.0,10.0,10.0,10.0,10.0,10.0,10.0,100,3.69 +66293,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.09 +45318,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.15 +58231,96.0,10.0,10.0,10.0,10.0,10.0,10.0,27,1.13 +16556,98.0,10.0,10.0,10.0,10.0,9.0,10.0,56,2.02 +44710,100.0,10.0,10.0,10.0,10.0,9.0,10.0,23,0.91 +63369,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +49073,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.16 +33009,90.0,8.0,10.0,9.0,9.0,9.0,8.0,2,0.31 +48831,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +58212,100.0,10.0,10.0,10.0,10.0,10.0,10.0,48,1.71 +5656,98.0,10.0,10.0,9.0,10.0,9.0,10.0,10,0.57 +17872,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.19 +61998,,,,,,,,0, +31702,93.0,10.0,8.0,10.0,10.0,10.0,9.0,7,0.27 +4152,,,,,,,,0, +69873,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.18 +33381,86.0,9.0,8.0,10.0,10.0,9.0,8.0,10,0.37 +42772,,,,,,,,0, +57174,,,,,,,,0, +49634,98.0,10.0,10.0,10.0,10.0,9.0,10.0,64,2.23 +75501,93.0,10.0,10.0,9.0,10.0,9.0,9.0,54,1.97 +2776,89.0,9.0,9.0,9.0,9.0,8.0,9.0,17,0.62 +2939,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.49 +73116,,,,,,,,0, +21528,,,,,,,,0, +68187,97.0,10.0,9.0,10.0,10.0,10.0,10.0,6,0.21 +59605,99.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.66 +68995,,,,,,,,0, +42923,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.18 +43876,100.0,10.0,10.0,9.0,9.0,10.0,9.0,3,0.17 +6798,100.0,10.0,9.0,10.0,10.0,10.0,9.0,2,0.07 +64646,80.0,6.0,8.0,10.0,10.0,10.0,8.0,1,0.04 +22105,93.0,10.0,10.0,10.0,9.0,10.0,9.0,3,0.1 +43337,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +42616,98.0,10.0,10.0,10.0,10.0,9.0,10.0,30,1.08 +74886,89.0,10.0,9.0,10.0,10.0,10.0,9.0,13,0.47 +18827,100.0,8.0,10.0,10.0,10.0,8.0,8.0,1,0.19 +56992,88.0,9.0,9.0,9.0,9.0,10.0,9.0,52,1.82 +76467,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.34 +19381,85.0,9.0,9.0,10.0,9.0,10.0,9.0,86,3.06 +70882,,,,,,,,0, +33442,80.0,9.0,8.0,9.0,9.0,9.0,9.0,2,0.07 +36232,80.0,10.0,8.0,10.0,10.0,8.0,10.0,1,0.04 +20074,100.0,8.0,8.0,10.0,10.0,8.0,10.0,1,0.04 +23560,100.0,10.0,9.0,10.0,10.0,9.0,9.0,3,0.69 +31609,96.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.65 +4293,92.0,9.0,10.0,10.0,10.0,10.0,9.0,13,0.46 +29583,100.0,10.0,9.0,10.0,10.0,9.0,10.0,4,0.2 +50838,80.0,10.0,4.0,10.0,10.0,10.0,10.0,2,0.07 +53937,90.0,10.0,9.0,10.0,9.0,10.0,9.0,62,2.36 +51761,96.0,10.0,8.0,10.0,10.0,10.0,10.0,6,0.22 +9074,89.0,10.0,8.0,10.0,10.0,10.0,9.0,17,0.72 +51051,92.0,9.0,9.0,10.0,9.0,10.0,9.0,47,1.78 +54745,,,,,,,,0, +31091,90.0,10.0,8.0,10.0,10.0,10.0,10.0,6,0.21 +41550,94.0,10.0,9.0,10.0,10.0,9.0,9.0,51,2.75 +19405,,,,,,,,0, +38203,,,,,,,,0, +63056,,,,,,,,0, +63139,96.0,10.0,10.0,10.0,10.0,9.0,9.0,14,1.31 +66479,99.0,10.0,10.0,10.0,10.0,10.0,9.0,27,0.99 +25105,95.0,10.0,10.0,10.0,10.0,10.0,9.0,71,2.49 +77069,80.0,10.0,8.0,10.0,6.0,9.0,7.0,2,0.07 +934,90.0,10.0,9.0,10.0,10.0,9.0,9.0,2,0.12 +47028,76.0,8.0,8.0,8.0,8.0,9.0,8.0,45,1.6 +40740,87.0,9.0,9.0,9.0,9.0,9.0,9.0,97,3.4 +74290,100.0,10.0,10.0,10.0,10.0,9.0,10.0,20,0.7 +18942,20.0,2.0,2.0,2.0,2.0,2.0,2.0,1,0.04 +77028,,,,,,,,0, +5991,80.0,8.0,8.0,9.0,9.0,7.0,6.0,3,3.0 +76118,80.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.04 +62196,95.0,10.0,10.0,10.0,10.0,10.0,10.0,43,1.87 +54550,98.0,10.0,10.0,10.0,10.0,9.0,10.0,17,0.69 +46172,98.0,10.0,10.0,10.0,10.0,10.0,10.0,43,1.5 +48120,87.0,9.0,9.0,10.0,10.0,9.0,9.0,94,3.46 +25628,97.0,10.0,10.0,10.0,10.0,10.0,10.0,38,1.35 +467,80.0,8.0,8.0,10.0,10.0,6.0,8.0,2,0.08 +58730,,,,,,,,0, +886,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.11 +18460,76.0,8.0,8.0,8.0,8.0,8.0,8.0,5,0.18 +53864,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.08 +55070,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.32 +30445,82.0,9.0,9.0,8.0,9.0,10.0,9.0,41,1.44 +47576,93.0,9.0,9.0,10.0,10.0,10.0,9.0,3,0.11 +66271,,,,,,,,0, +32402,99.0,10.0,10.0,10.0,10.0,10.0,10.0,28,1.67 +16803,89.0,10.0,9.0,9.0,9.0,9.0,9.0,14,0.54 +49948,,,,,,,,0, +32341,98.0,10.0,10.0,10.0,10.0,10.0,9.0,18,0.64 +47346,94.0,9.0,9.0,10.0,10.0,10.0,10.0,25,0.87 +23818,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.18 +23663,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.35 +61785,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.42 +9083,93.0,10.0,9.0,10.0,10.0,10.0,9.0,35,1.22 +24480,,,,,,,,0, +53637,90.0,10.0,10.0,9.0,10.0,9.0,9.0,10,0.37 +22970,86.0,9.0,8.0,9.0,9.0,10.0,9.0,69,2.46 +62114,,,,,,,,0, +44920,98.0,10.0,10.0,10.0,10.0,10.0,9.0,28,1.04 +1210,82.0,9.0,9.0,9.0,9.0,10.0,9.0,34,1.24 +59570,97.0,10.0,10.0,10.0,10.0,9.0,10.0,31,1.08 +51013,73.0,7.0,8.0,9.0,9.0,9.0,8.0,16,0.57 +16619,86.0,9.0,9.0,9.0,9.0,10.0,9.0,77,2.73 +53820,85.0,9.0,9.0,10.0,10.0,10.0,9.0,5,0.18 +55684,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.11 +10190,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +65025,84.0,8.0,9.0,8.0,8.0,10.0,8.0,28,1.0 +8737,85.0,9.0,10.0,9.0,9.0,10.0,9.0,27,1.19 +65807,93.0,10.0,9.0,10.0,10.0,10.0,10.0,33,1.17 +23091,98.0,10.0,9.0,10.0,10.0,10.0,9.0,11,0.39 +5696,84.0,9.0,9.0,9.0,8.0,10.0,9.0,58,2.3 +55799,50.0,8.0,7.0,6.0,6.0,8.0,5.0,2,0.12 +30766,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.22 +23187,98.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.98 +40655,91.0,9.0,9.0,10.0,10.0,10.0,9.0,11,0.38 +68091,,,,,,,,0, +11470,,,,,,,,0, +66894,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.14 +53322,98.0,10.0,10.0,10.0,10.0,10.0,10.0,26,0.97 +68405,99.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.92 +66704,84.0,8.0,7.0,9.0,9.0,9.0,8.0,32,1.13 +23763,100.0,10.0,10.0,10.0,10.0,10.0,8.0,2,0.07 +39399,,,,,,,,0, +1901,100.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.28 +15094,,,,,,,,1,0.03 +32673,,,,,,,,0, +58151,100.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.28 +12360,,,,,,,,0, +49400,,,,,,,,0, +251,,,,,,,,0, +75340,98.0,10.0,10.0,10.0,10.0,10.0,10.0,34,1.19 +62785,96.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.31 +25648,,,,,,,,0, +19846,95.0,10.0,10.0,9.0,10.0,9.0,9.0,104,3.74 +64151,93.0,10.0,9.0,10.0,10.0,9.0,10.0,3,0.11 +68235,95.0,10.0,9.0,10.0,10.0,10.0,10.0,12,0.43 +4026,92.0,10.0,9.0,10.0,10.0,7.0,9.0,7,0.29 +64768,98.0,10.0,10.0,10.0,10.0,9.0,10.0,34,1.22 +35322,71.0,7.0,7.0,8.0,8.0,8.0,8.0,11,0.39 +54208,93.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.41 +66409,100.0,9.0,10.0,10.0,10.0,9.0,10.0,3,0.16 +17967,93.0,9.0,9.0,10.0,10.0,10.0,9.0,19,0.73 +3717,100.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.82 +67531,88.0,9.0,9.0,9.0,9.0,9.0,9.0,8,0.3 +28369,,,,,,,,0, +31797,,,,,,,,0, +32622,,,,,,,,0, +37382,83.0,8.0,8.0,10.0,10.0,8.0,8.0,8,0.28 +56500,91.0,10.0,9.0,10.0,10.0,10.0,9.0,31,1.12 +72603,89.0,9.0,9.0,9.0,10.0,9.0,9.0,40,1.41 +51842,100.0,9.0,10.0,10.0,10.0,10.0,10.0,2,0.44 +22439,90.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.16 +34005,,,,,,,,0, +39201,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.3 +32371,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +51506,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +8220,80.0,8.0,8.0,9.0,9.0,8.0,8.0,26,0.92 +54191,,,,,,,,0, +68320,95.0,10.0,10.0,10.0,10.0,9.0,9.0,23,0.81 +60944,,,,,,,,0, +54214,100.0,10.0,10.0,10.0,10.0,10.0,10.0,56,4.38 +74492,86.0,9.0,9.0,9.0,9.0,9.0,9.0,93,3.33 +69064,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.11 +1815,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.14 +23720,92.0,9.0,9.0,10.0,10.0,9.0,9.0,5,0.19 +62368,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.25 +14589,95.0,10.0,10.0,9.0,10.0,10.0,9.0,40,1.41 +39062,100.0,10.0,10.0,9.0,10.0,10.0,10.0,3,0.1 +71240,97.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.43 +50676,96.0,10.0,10.0,9.0,10.0,9.0,9.0,73,2.61 +13933,100.0,9.0,9.0,10.0,10.0,10.0,10.0,2,0.07 +17332,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.3 +49211,94.0,10.0,9.0,10.0,10.0,9.0,9.0,29,1.03 +72696,93.0,10.0,9.0,10.0,10.0,10.0,10.0,10,0.35 +49356,98.0,10.0,9.0,10.0,10.0,10.0,10.0,13,0.48 +4631,,,,,,,,1,0.04 +70835,98.0,10.0,10.0,10.0,10.0,10.0,10.0,49,2.03 +51691,,,,,,,,0, +39460,,,,,,,,0, +43440,94.0,10.0,9.0,10.0,10.0,10.0,9.0,63,2.24 +17636,80.0,8.0,10.0,10.0,8.0,8.0,8.0,2,0.07 +32333,100.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.69 +54413,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.14 +4212,96.0,10.0,10.0,9.0,9.0,10.0,10.0,5,0.18 +72614,,,,,,,,0, +9617,100.0,10.0,10.0,9.0,10.0,10.0,10.0,3,0.11 +987,,,,,,,,0, +53946,,,,,,,,0, +60819,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +47303,96.0,10.0,10.0,9.0,10.0,9.0,9.0,46,1.65 +39356,100.0,10.0,8.0,10.0,10.0,8.0,8.0,3,0.15 +2096,95.0,10.0,9.0,10.0,10.0,9.0,9.0,12,0.43 +51465,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.39 +27769,93.0,10.0,9.0,10.0,10.0,9.0,9.0,9,0.37 +42416,87.0,10.0,8.0,10.0,9.0,9.0,9.0,9,0.33 +31774,,,,,,,,0, +53400,,,,,,,,0, +25388,94.0,9.0,9.0,10.0,10.0,9.0,9.0,13,0.46 +37813,,,,,,,,0, +71121,86.0,9.0,8.0,9.0,9.0,9.0,9.0,12,0.42 +60582,80.0,8.0,9.0,10.0,6.0,9.0,8.0,3,0.19 +65050,95.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.14 +8598,100.0,10.0,10.0,,,,,1,0.06 +11786,100.0,10.0,10.0,10.0,10.0,9.0,10.0,10,0.49 +7365,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.24 +21790,,,,,,,,0, +65312,,,,,,,,0, +12276,99.0,10.0,10.0,10.0,10.0,9.0,10.0,16,0.57 +5168,96.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.29 +41239,87.0,9.0,9.0,9.0,9.0,9.0,9.0,4,0.15 +53454,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +69186,88.0,9.0,10.0,9.0,9.0,8.0,9.0,10,0.35 +45067,,,,,,,,0, +2270,100.0,10.0,7.0,10.0,10.0,10.0,9.0,2,0.07 +72234,90.0,10.0,8.0,10.0,9.0,10.0,10.0,2,0.07 +76194,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.04 +40236,80.0,10.0,9.0,9.0,10.0,9.0,10.0,2,0.08 +18446,94.0,10.0,9.0,10.0,10.0,9.0,10.0,10,0.44 +27243,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.34 +61885,93.0,10.0,9.0,10.0,10.0,9.0,9.0,139,4.82 +56770,95.0,9.0,10.0,10.0,10.0,10.0,9.0,46,1.63 +2413,95.0,9.0,9.0,10.0,10.0,10.0,9.0,11,0.4 +12539,88.0,9.0,9.0,9.0,9.0,9.0,9.0,36,1.4 +44974,93.0,9.0,9.0,10.0,10.0,9.0,10.0,33,1.15 +1174,87.0,9.0,8.0,9.0,9.0,9.0,9.0,3,0.11 +54553,100.0,10.0,10.0,10.0,10.0,9.0,10.0,43,1.57 +42956,88.0,10.0,8.0,9.0,10.0,9.0,9.0,8,0.29 +63555,91.0,10.0,9.0,10.0,10.0,9.0,9.0,44,1.53 +63028,,,,,,,,0, +5981,97.0,10.0,10.0,10.0,10.0,9.0,10.0,44,1.57 +17510,83.0,9.0,10.0,10.0,10.0,8.0,9.0,13,0.45 +29588,100.0,9.0,9.0,9.0,10.0,9.0,9.0,3,0.11 +32609,94.0,9.0,9.0,10.0,10.0,9.0,9.0,35,1.36 +22658,97.0,10.0,9.0,10.0,10.0,10.0,10.0,78,2.73 +5661,,,,,,,,0, +46849,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.33 +62408,85.0,9.0,9.0,9.0,10.0,10.0,8.0,8,0.51 +26830,90.0,10.0,9.0,10.0,10.0,10.0,9.0,76,2.64 +73274,,,,,,,,0, +3995,98.0,10.0,10.0,10.0,10.0,10.0,10.0,145,5.14 +28550,94.0,9.0,9.0,10.0,10.0,9.0,9.0,14,0.51 +63387,100.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.08 +47090,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.06 +1691,,,,,,,,0, +44991,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.11 +48166,60.0,10.0,2.0,10.0,10.0,10.0,8.0,1,0.04 +22227,,,,,,,,0, +39711,87.0,9.0,9.0,9.0,9.0,9.0,9.0,43,2.2 +68813,99.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.63 +16756,80.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.36 +5962,,,,,,,,0, +1600,87.0,9.0,8.0,10.0,9.0,10.0,9.0,9,0.32 +42516,81.0,8.0,8.0,9.0,9.0,9.0,8.0,30,1.14 +7927,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.43 +51557,,,,,,,,0, +9153,83.0,10.0,8.0,9.0,9.0,10.0,9.0,21,0.74 +39592,,,,,,,,0, +46099,98.0,10.0,10.0,10.0,10.0,10.0,9.0,12,0.44 +29521,96.0,9.0,9.0,9.0,9.0,10.0,9.0,13,0.46 +54837,92.0,9.0,8.0,9.0,9.0,9.0,9.0,5,0.26 +61601,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +53836,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.4 +72316,95.0,10.0,10.0,9.0,10.0,9.0,9.0,4,0.25 +43140,92.0,10.0,10.0,10.0,10.0,8.0,10.0,12,2.22 +8548,93.0,10.0,10.0,10.0,10.0,9.0,9.0,15,0.54 +63353,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.43 +56068,100.0,10.0,8.0,10.0,10.0,9.0,10.0,2,0.07 +39069,91.0,9.0,9.0,10.0,10.0,9.0,9.0,18,0.65 +57493,98.0,10.0,10.0,10.0,10.0,10.0,10.0,19,0.67 +15517,97.0,10.0,10.0,10.0,10.0,10.0,9.0,24,0.89 +43698,,,,,,,,0, +11558,96.0,10.0,10.0,10.0,10.0,10.0,10.0,39,1.37 +22198,97.0,10.0,9.0,10.0,10.0,10.0,9.0,6,0.22 +42194,100.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.68 +22457,,,,,,,,1,0.05 +48017,,,,,,,,0, +8404,,,,,,,,0, +58369,97.0,10.0,10.0,10.0,10.0,10.0,9.0,14,0.51 +12594,,,,,,,,0, +64260,92.0,8.0,9.0,9.0,10.0,8.0,9.0,5,0.17 +10856,94.0,9.0,10.0,9.0,10.0,9.0,9.0,29,1.02 +60618,,,,,,,,0, +1548,100.0,,,,10.0,10.0,10.0,1,0.04 +32736,92.0,10.0,9.0,9.0,10.0,9.0,9.0,27,0.96 +54373,,,,,,,,0, +13086,98.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.64 +53125,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,1.38 +26738,60.0,10.0,2.0,6.0,10.0,6.0,6.0,1,0.04 +55776,100.0,10.0,9.0,10.0,10.0,10.0,9.0,2,0.07 +60695,,,,,,,,1,0.29 +26056,96.0,10.0,10.0,10.0,10.0,10.0,10.0,30,1.09 +50528,89.0,9.0,9.0,10.0,10.0,10.0,9.0,7,0.28 +5864,100.0,10.0,10.0,10.0,10.0,10.0,9.0,7,0.26 +3215,78.0,9.0,9.0,8.0,10.0,9.0,9.0,12,0.46 +18194,94.0,10.0,9.0,9.0,10.0,10.0,9.0,27,0.94 +42887,98.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.64 +11598,95.0,10.0,9.0,10.0,10.0,9.0,10.0,26,0.92 +43648,96.0,10.0,10.0,10.0,10.0,10.0,9.0,52,1.85 +476,100.0,10.0,10.0,10.0,9.0,7.0,10.0,3,0.11 +24289,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.12 +58878,,,,,,,,0, +3507,,,,,,,,0, +18863,100.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.21 +40654,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.32 +46966,95.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.21 +31814,,,,,,,,0, +3727,96.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.46 +60490,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.18 +25569,100.0,10.0,10.0,10.0,10.0,10.0,10.0,17,1.39 +68747,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.11 +43328,98.0,10.0,10.0,10.0,10.0,10.0,9.0,13,0.5 +16587,85.0,8.0,10.0,9.0,9.0,9.0,9.0,28,0.98 +75964,,,,,,,,0, +21725,95.0,10.0,9.0,10.0,10.0,10.0,9.0,48,1.73 +35675,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +68721,80.0,,,,,,,1,0.03 +43559,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.11 +40891,93.0,9.0,7.0,9.0,10.0,7.0,9.0,3,0.11 +59994,,,,,,,,0, +66753,90.0,9.0,8.0,10.0,10.0,10.0,10.0,2,0.07 +73306,,,,,,,,0, +42578,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.14 +9679,,,,,,,,0, +14309,100.0,10.0,10.0,10.0,10.0,10.0,9.0,14,0.71 +4921,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +4083,96.0,10.0,9.0,10.0,10.0,9.0,9.0,11,0.39 +2112,,,,,,,,0, +22490,95.0,10.0,10.0,10.0,10.0,10.0,9.0,32,1.13 +16995,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.32 +39795,91.0,10.0,10.0,10.0,10.0,10.0,9.0,30,1.05 +21441,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,1.3 +56629,95.0,9.0,9.0,9.0,9.0,9.0,10.0,11,1.15 +76544,82.0,9.0,9.0,10.0,9.0,10.0,8.0,45,1.66 +27087,91.0,9.0,9.0,9.0,9.0,9.0,9.0,39,1.42 +53652,,,,,,,,0, +37405,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +55824,98.0,10.0,10.0,10.0,10.0,10.0,10.0,86,3.02 +12882,,,,,,,,0, +11763,87.0,9.0,8.0,8.0,8.0,9.0,8.0,3,0.11 +33911,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.03 +41526,,,,,,,,0, +11772,95.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.3 +24656,100.0,9.0,8.0,10.0,10.0,8.0,10.0,2,0.43 +11547,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.25 +58626,98.0,9.0,10.0,10.0,10.0,10.0,9.0,9,0.33 +59540,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.08 +73682,,,,,,,,0, +75722,88.0,9.0,9.0,9.0,9.0,10.0,9.0,34,1.2 +31866,93.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.29 +52251,96.0,10.0,10.0,10.0,10.0,10.0,10.0,28,1.0 +2875,81.0,8.0,9.0,9.0,9.0,9.0,8.0,18,0.67 +65823,96.0,10.0,9.0,10.0,10.0,10.0,9.0,37,1.42 +53923,87.0,10.0,8.0,10.0,10.0,9.0,9.0,15,0.7 +7394,100.0,10.0,6.0,10.0,10.0,10.0,10.0,2,0.07 +48028,84.0,10.0,6.0,10.0,10.0,9.0,10.0,5,0.18 +49533,89.0,9.0,9.0,9.0,9.0,9.0,9.0,24,0.91 +36303,95.0,10.0,9.0,10.0,9.0,9.0,9.0,8,0.28 +69169,99.0,10.0,10.0,10.0,10.0,10.0,10.0,21,0.75 +56104,90.0,10.0,9.0,10.0,10.0,8.0,8.0,5,0.17 +33483,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +53179,98.0,10.0,9.0,10.0,10.0,9.0,9.0,9,0.32 +49102,,,,,,,,0, +69311,76.0,8.0,10.0,10.0,10.0,8.0,8.0,5,0.18 +596,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,3.0 +26198,93.0,10.0,9.0,9.0,9.0,10.0,9.0,45,1.62 +12154,93.0,10.0,9.0,10.0,10.0,10.0,9.0,181,6.31 +76298,100.0,10.0,9.0,10.0,10.0,10.0,10.0,18,0.64 +59286,100.0,10.0,9.0,10.0,10.0,10.0,9.0,3,0.11 +58238,90.0,9.0,8.0,10.0,8.0,9.0,8.0,2,0.07 +25786,,,,,,,,0, +52288,97.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.33 +30512,90.0,10.0,8.0,10.0,10.0,10.0,10.0,4,0.22 +74154,93.0,10.0,9.0,10.0,10.0,10.0,10.0,11,0.39 +38190,91.0,10.0,9.0,10.0,10.0,10.0,10.0,22,0.93 +74088,93.0,9.0,10.0,10.0,10.0,10.0,10.0,6,0.22 +69924,,,,,,,,0, +76963,,,,,,,,0, +8243,91.0,9.0,9.0,10.0,10.0,10.0,8.0,8,0.54 +75372,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.3 +66080,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.54 +54815,80.0,10.0,10.0,10.0,10.0,6.0,8.0,1,0.04 +14222,,,,,,,,0, +4624,95.0,10.0,9.0,10.0,10.0,9.0,9.0,22,0.83 +49940,96.0,9.0,10.0,10.0,10.0,9.0,9.0,9,0.37 +17413,100.0,9.0,9.0,10.0,10.0,8.0,10.0,4,0.17 +56282,,,,,,,,0, +52614,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.12 +6171,,,,,,,,0, +34272,89.0,9.0,8.0,9.0,10.0,10.0,9.0,27,1.01 +16601,86.0,9.0,9.0,9.0,9.0,10.0,9.0,43,1.51 +15481,100.0,10.0,10.0,10.0,10.0,9.0,9.0,5,0.2 +70537,95.0,10.0,10.0,10.0,10.0,9.0,9.0,21,0.87 +43033,93.0,10.0,9.0,10.0,10.0,10.0,9.0,11,0.41 +76332,,,,,,,,0, +3125,90.0,10.0,8.0,10.0,10.0,10.0,10.0,4,0.49 +17729,90.0,9.0,9.0,10.0,10.0,10.0,9.0,29,1.07 +55441,98.0,10.0,10.0,10.0,10.0,10.0,10.0,25,1.51 +53948,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.41 +46490,100.0,10.0,9.0,10.0,10.0,9.0,10.0,11,0.41 +3315,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.05 +44949,91.0,9.0,9.0,9.0,9.0,9.0,9.0,13,0.46 +3545,,,,,,,,0, +68241,,,,,,,,0, +24409,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.15 +74735,,,,,,,,0, +35677,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +47740,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +41392,,,,,,,,0, +55667,86.0,9.0,9.0,9.0,9.0,10.0,8.0,33,1.2 +75302,,,,,,,,4,0.14 +45567,80.0,8.0,6.0,9.0,9.0,9.0,8.0,7,0.27 +39572,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.25 +43083,,,,,,,,0, +22652,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.11 +335,89.0,10.0,9.0,10.0,10.0,9.0,9.0,11,0.38 +59012,,,,,,,,0, +33860,83.0,8.0,8.0,10.0,10.0,9.0,8.0,7,0.25 +9945,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.32 +16656,94.0,10.0,9.0,10.0,10.0,9.0,9.0,7,0.25 +20823,96.0,10.0,10.0,10.0,10.0,9.0,10.0,83,2.93 +22217,80.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.04 +76843,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.22 +869,,,,,,,,0, +19785,,,,,,,,0, +15972,95.0,10.0,10.0,10.0,10.0,10.0,9.0,101,3.52 +11549,95.0,10.0,10.0,10.0,10.0,9.0,9.0,12,0.42 +53057,99.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.68 +7,95.0,10.0,10.0,10.0,10.0,10.0,10.0,86,3.04 +40923,91.0,10.0,10.0,9.0,9.0,9.0,9.0,18,0.63 +75919,93.0,10.0,10.0,9.0,9.0,9.0,9.0,16,0.56 +53243,91.0,10.0,10.0,9.0,10.0,8.0,9.0,28,0.99 +716,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +59515,80.0,6.0,8.0,10.0,10.0,8.0,8.0,1,0.04 +49298,98.0,10.0,9.0,10.0,10.0,10.0,10.0,12,0.44 +14550,,,,,,,,0, +50902,,,,,,,,0, +44075,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +7793,100.0,10.0,10.0,9.0,10.0,9.0,10.0,4,0.17 +52295,98.0,10.0,10.0,10.0,10.0,9.0,10.0,14,0.77 +24141,95.0,9.0,8.0,10.0,10.0,10.0,9.0,18,0.63 +66923,,,,,,,,0, +37403,92.0,9.0,9.0,9.0,9.0,9.0,10.0,5,0.18 +9437,93.0,9.0,8.0,9.0,9.0,10.0,9.0,6,0.43 +21145,95.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.18 +60127,100.0,10.0,9.0,10.0,10.0,9.0,10.0,2,0.07 +54280,81.0,9.0,7.0,10.0,10.0,8.0,9.0,15,0.53 +8813,81.0,9.0,8.0,9.0,9.0,9.0,8.0,54,1.9 +8289,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.5 +16597,88.0,9.0,9.0,9.0,10.0,10.0,9.0,83,4.6 +21380,95.0,9.0,9.0,10.0,10.0,10.0,9.0,38,1.44 +10171,95.0,10.0,10.0,10.0,10.0,10.0,9.0,13,0.47 +36096,94.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.49 +55547,60.0,10.0,8.0,10.0,10.0,6.0,6.0,1,0.04 +44014,95.0,9.0,10.0,10.0,9.0,10.0,9.0,11,0.39 +17708,90.0,10.0,10.0,10.0,9.0,9.0,8.0,12,0.43 +15992,80.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.08 +28806,,,,,,,,0, +16236,100.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.04 +41941,99.0,10.0,10.0,10.0,10.0,10.0,10.0,59,2.08 +54101,94.0,10.0,10.0,10.0,10.0,10.0,10.0,63,2.3 +58760,,,,,,,,0, +7284,95.0,10.0,10.0,10.0,10.0,10.0,9.0,26,1.04 +32271,94.0,10.0,9.0,10.0,10.0,9.0,10.0,115,5.55 +52126,,,,,,,,0, +54875,91.0,9.0,10.0,10.0,10.0,10.0,9.0,43,1.51 +52589,95.0,10.0,9.0,9.0,10.0,10.0,9.0,13,0.47 +8903,96.0,10.0,10.0,10.0,10.0,9.0,10.0,12,0.48 +34431,100.0,8.0,10.0,10.0,10.0,8.0,10.0,1,0.04 +41255,90.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.22 +46493,99.0,10.0,10.0,10.0,10.0,9.0,10.0,18,0.63 +6367,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +52923,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.17 +27360,60.0,,,,,,,2,0.07 +30521,95.0,9.0,9.0,10.0,10.0,10.0,9.0,92,3.23 +64419,,,,,,,,0, +53286,,,,,,,,0, +31142,99.0,10.0,10.0,10.0,10.0,10.0,10.0,83,2.97 +28428,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.45 +67323,96.0,10.0,10.0,10.0,10.0,9.0,9.0,5,0.18 +24646,,,,,,,,1,0.06 +70174,97.0,10.0,9.0,10.0,10.0,10.0,10.0,217,7.7 +74797,97.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.44 +54241,91.0,10.0,10.0,10.0,10.0,10.0,9.0,84,2.93 +27033,93.0,10.0,10.0,10.0,10.0,9.0,10.0,3,1.36 +26426,92.0,9.0,9.0,10.0,10.0,10.0,10.0,19,0.67 +459,,,,,,,,0, +10635,,,,,,,,0, +25153,96.0,10.0,10.0,10.0,10.0,10.0,9.0,181,6.43 +58564,,,,,,,,0, +73447,89.0,10.0,9.0,10.0,10.0,10.0,9.0,48,1.69 +40642,100.0,10.0,10.0,10.0,10.0,10.0,10.0,26,1.05 +29997,94.0,10.0,10.0,10.0,10.0,10.0,9.0,7,0.26 +9593,93.0,9.0,9.0,10.0,10.0,10.0,9.0,35,1.29 +45635,93.0,10.0,9.0,9.0,10.0,9.0,9.0,40,1.43 +13534,98.0,10.0,10.0,10.0,10.0,10.0,10.0,35,1.23 +13532,,,,,,,,0, +6820,93.0,10.0,9.0,10.0,10.0,10.0,10.0,8,0.28 +46933,,,,,,,,0, +29800,100.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.21 +31085,85.0,9.0,9.0,10.0,10.0,10.0,10.0,4,0.26 +34082,96.0,10.0,10.0,10.0,10.0,9.0,10.0,11,0.4 +26765,95.0,9.0,10.0,10.0,10.0,10.0,10.0,4,0.18 +50866,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.35 +19925,96.0,10.0,10.0,10.0,10.0,10.0,10.0,97,4.05 +3266,,,,,,,,0, +65511,100.0,8.0,10.0,10.0,10.0,8.0,10.0,1,0.04 +75627,95.0,10.0,9.0,9.0,10.0,9.0,9.0,20,0.74 +76644,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.14 +56578,85.0,9.0,9.0,8.0,8.0,10.0,10.0,6,0.22 +11484,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +54561,93.0,10.0,9.0,10.0,10.0,9.0,9.0,4,0.19 +73710,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.04 +24251,84.0,9.0,9.0,9.0,9.0,9.0,8.0,65,2.31 +33528,96.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.64 +14630,97.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.25 +25414,,,,,,,,0, +8383,,,,,,,,1,0.04 +38720,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.18 +14641,99.0,10.0,10.0,10.0,10.0,9.0,10.0,29,1.02 +30564,90.0,9.0,9.0,10.0,10.0,10.0,9.0,52,1.91 +70407,95.0,10.0,9.0,10.0,10.0,9.0,10.0,51,1.88 +29991,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.18 +30200,96.0,10.0,10.0,10.0,10.0,10.0,10.0,41,1.45 +21365,95.0,9.0,10.0,10.0,10.0,10.0,9.0,15,0.6 +74888,94.0,10.0,10.0,10.0,10.0,10.0,9.0,36,1.27 +64919,94.0,10.0,10.0,9.0,9.0,10.0,9.0,51,1.8 +59687,86.0,9.0,9.0,9.0,9.0,9.0,9.0,125,4.49 +23729,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.08 +28429,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +45778,,,,,,,,0, +888,88.0,9.0,9.0,10.0,10.0,9.0,9.0,31,1.09 +57635,100.0,10.0,10.0,10.0,10.0,10.0,10.0,44,2.13 +60524,92.0,9.0,8.0,10.0,10.0,10.0,10.0,5,0.19 +26905,89.0,9.0,9.0,9.0,9.0,9.0,9.0,103,3.65 +58141,100.0,10.0,10.0,10.0,10.0,10.0,10.0,47,1.7 +31184,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.14 +24844,96.0,10.0,10.0,10.0,10.0,9.0,9.0,23,0.86 +21626,98.0,10.0,10.0,10.0,10.0,10.0,10.0,101,3.56 +47443,98.0,10.0,10.0,10.0,10.0,9.0,10.0,14,0.54 +71416,88.0,9.0,10.0,10.0,9.0,10.0,9.0,5,0.18 +27787,,,,,,,,0, +67941,97.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.38 +30314,90.0,9.0,9.0,9.0,9.0,9.0,8.0,4,0.15 +48722,100.0,10.0,8.0,10.0,10.0,10.0,10.0,4,0.14 +14683,20.0,4.0,4.0,8.0,4.0,10.0,2.0,1,0.1 +63997,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +75487,98.0,10.0,10.0,10.0,10.0,10.0,10.0,22,0.77 +2158,,,,,,,,0, +22903,97.0,10.0,10.0,9.0,10.0,9.0,9.0,38,1.36 +1733,95.0,10.0,10.0,9.0,10.0,10.0,9.0,4,0.16 +2663,96.0,10.0,9.0,10.0,10.0,9.0,10.0,23,0.81 +59449,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.81 +13485,80.0,9.0,6.0,10.0,10.0,10.0,8.0,7,0.25 +40028,96.0,9.0,10.0,10.0,10.0,8.0,10.0,5,0.2 +57252,97.0,10.0,10.0,10.0,10.0,9.0,9.0,6,0.22 +59005,90.0,8.0,9.0,9.0,10.0,8.0,9.0,4,0.14 +37919,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.34 +51270,96.0,10.0,9.0,10.0,10.0,9.0,9.0,23,0.82 +55023,96.0,10.0,10.0,10.0,10.0,10.0,10.0,55,2.0 +7479,100.0,10.0,10.0,10.0,10.0,8.0,10.0,2,0.94 +26022,100.0,9.0,10.0,10.0,10.0,10.0,10.0,3,0.11 +63760,82.0,8.0,8.0,9.0,9.0,9.0,9.0,13,0.46 +22775,98.0,10.0,10.0,10.0,10.0,10.0,10.0,116,4.16 +9166,92.0,10.0,9.0,10.0,9.0,9.0,10.0,175,6.19 +25040,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.18 +23865,100.0,10.0,10.0,6.0,8.0,8.0,9.0,2,0.11 +38048,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.18 +58663,80.0,10.0,8.0,10.0,8.0,10.0,8.0,1,0.06 +53736,91.0,9.0,8.0,10.0,9.0,9.0,9.0,21,0.76 +37827,76.0,8.0,7.0,10.0,9.0,9.0,8.0,5,0.18 +61474,91.0,9.0,10.0,9.0,10.0,9.0,9.0,36,1.29 +39855,87.0,9.0,10.0,9.0,9.0,9.0,9.0,36,1.28 +50285,98.0,10.0,10.0,10.0,10.0,10.0,10.0,27,0.95 +45363,97.0,10.0,10.0,10.0,10.0,9.0,10.0,12,0.43 +73290,80.0,10.0,8.0,10.0,10.0,8.0,10.0,1,0.04 +66696,96.0,10.0,10.0,10.0,10.0,10.0,9.0,100,3.62 +14884,84.0,9.0,9.0,9.0,9.0,10.0,9.0,152,5.4 +64508,,,,,,,,0, +32705,,,,,,,,0, +59248,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +20737,99.0,10.0,10.0,10.0,10.0,10.0,10.0,58,2.05 +49997,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +35874,91.0,9.0,9.0,9.0,9.0,9.0,9.0,9,0.32 +34458,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.23 +74909,90.0,9.0,9.0,10.0,10.0,10.0,9.0,212,7.46 +2732,96.0,10.0,9.0,10.0,10.0,9.0,9.0,59,2.22 +56817,97.0,10.0,9.0,10.0,10.0,10.0,10.0,8,0.28 +62003,99.0,10.0,10.0,10.0,10.0,10.0,10.0,72,2.58 +49871,93.0,9.0,9.0,9.0,10.0,10.0,9.0,31,1.1 +41174,80.0,10.0,8.0,10.0,10.0,8.0,10.0,2,0.07 +53737,69.0,8.0,6.0,8.0,9.0,8.0,8.0,9,0.32 +57358,88.0,10.0,10.0,10.0,9.0,9.0,10.0,5,0.28 +15557,66.0,7.0,8.0,7.0,8.0,9.0,6.0,11,0.44 +70111,100.0,10.0,10.0,10.0,10.0,10.0,10.0,67,2.38 +60465,90.0,10.0,10.0,10.0,10.0,9.0,9.0,6,0.81 +44643,95.0,10.0,10.0,10.0,10.0,9.0,10.0,38,1.37 +53874,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +9443,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +25890,99.0,10.0,10.0,10.0,10.0,10.0,10.0,19,0.71 +69715,,,,,,,,0, +1928,100.0,10.0,10.0,8.0,10.0,8.0,10.0,2,0.12 +12781,90.0,9.0,10.0,10.0,10.0,10.0,9.0,2,0.45 +9467,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.14 +42868,100.0,10.0,10.0,10.0,10.0,10.0,10.0,28,1.92 +36711,100.0,10.0,10.0,10.0,10.0,10.0,10.0,24,0.85 +70219,95.0,10.0,10.0,10.0,10.0,10.0,9.0,15,0.56 +57119,85.0,9.0,9.0,10.0,10.0,10.0,9.0,176,6.28 +21491,,,,,,,,1,0.04 +35057,99.0,10.0,10.0,10.0,10.0,10.0,10.0,24,0.87 +21883,87.0,9.0,9.0,10.0,10.0,10.0,9.0,154,5.47 +74482,88.0,9.0,9.0,10.0,10.0,10.0,9.0,161,5.83 +65272,97.0,10.0,9.0,10.0,10.0,10.0,10.0,6,0.21 +12412,100.0,10.0,10.0,9.0,9.0,10.0,9.0,10,0.37 +49209,99.0,10.0,10.0,10.0,10.0,10.0,10.0,32,1.61 +1524,97.0,10.0,10.0,10.0,10.0,9.0,10.0,29,1.05 +3790,95.0,9.0,9.0,10.0,10.0,9.0,10.0,14,0.5 +72295,,,,,,,,0, +51542,85.0,9.0,9.0,10.0,9.0,9.0,9.0,41,1.47 +50746,94.0,9.0,9.0,10.0,10.0,9.0,10.0,130,4.63 +60977,96.0,10.0,10.0,10.0,10.0,9.0,9.0,48,1.96 +3770,97.0,10.0,9.0,10.0,10.0,9.0,10.0,31,1.1 +20344,91.0,10.0,10.0,10.0,10.0,10.0,9.0,7,0.26 +8351,87.0,9.0,9.0,9.0,9.0,9.0,9.0,3,0.12 +7595,98.0,10.0,10.0,10.0,10.0,10.0,9.0,14,0.75 +22972,95.0,9.0,10.0,8.0,9.0,9.0,9.0,4,0.5 +38138,97.0,10.0,9.0,9.0,10.0,10.0,10.0,7,0.33 +35734,88.0,9.0,9.0,10.0,10.0,9.0,9.0,21,0.77 +29664,90.0,9.0,10.0,10.0,10.0,10.0,9.0,21,0.76 +46405,98.0,10.0,10.0,10.0,10.0,10.0,9.0,19,0.75 +54300,98.0,10.0,10.0,9.0,10.0,9.0,10.0,30,1.17 +72486,98.0,10.0,9.0,10.0,10.0,9.0,10.0,39,1.49 +41973,94.0,10.0,10.0,10.0,10.0,10.0,9.0,35,1.26 +25089,97.0,10.0,10.0,10.0,10.0,9.0,9.0,13,0.48 +16512,,,,,,,,0, +73164,96.0,10.0,9.0,10.0,10.0,9.0,10.0,34,1.27 +48899,100.0,10.0,10.0,10.0,10.0,10.0,10.0,33,1.23 +2198,93.0,10.0,9.0,10.0,10.0,10.0,9.0,46,1.63 +42810,97.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.44 +46633,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.28 +23037,88.0,9.0,9.0,9.0,10.0,10.0,9.0,33,1.17 +61377,80.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.04 +8281,96.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.34 +24627,89.0,9.0,9.0,10.0,10.0,9.0,9.0,26,0.92 +31450,91.0,9.0,10.0,9.0,9.0,10.0,9.0,42,1.49 +57187,93.0,9.0,10.0,10.0,10.0,10.0,10.0,12,0.42 +28218,89.0,9.0,9.0,10.0,10.0,9.0,9.0,14,0.51 +49555,98.0,10.0,10.0,10.0,10.0,9.0,10.0,33,1.65 +11800,95.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.19 +46339,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.18 +61561,,,,,,,,1,0.04 +70723,98.0,10.0,10.0,10.0,10.0,10.0,10.0,62,2.18 +9028,94.0,9.0,10.0,10.0,10.0,9.0,9.0,27,0.96 +23793,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.4 +27359,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.22 +69387,100.0,10.0,10.0,10.0,9.0,10.0,10.0,2,0.09 +1511,93.0,10.0,9.0,10.0,10.0,9.0,9.0,9,0.33 +54797,97.0,10.0,10.0,10.0,10.0,9.0,10.0,68,2.49 +42278,70.0,9.0,7.0,9.0,10.0,10.0,9.0,4,0.75 +75121,98.0,10.0,10.0,10.0,10.0,10.0,10.0,101,3.57 +41494,90.0,10.0,9.0,9.0,10.0,9.0,9.0,4,0.15 +20114,96.0,10.0,9.0,10.0,10.0,9.0,10.0,28,1.17 +16991,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.06 +36179,98.0,10.0,10.0,9.0,10.0,8.0,9.0,17,0.62 +39448,87.0,9.0,10.0,9.0,9.0,8.0,9.0,3,0.15 +29273,97.0,9.0,9.0,10.0,10.0,10.0,9.0,16,1.12 +43091,,,,,,,,0, +70831,97.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.26 +73371,90.0,9.0,9.0,10.0,10.0,10.0,9.0,6,0.22 +63496,92.0,9.0,9.0,10.0,10.0,9.0,9.0,149,5.25 +48289,86.0,10.0,9.0,9.0,9.0,10.0,10.0,11,0.39 +69658,91.0,9.0,9.0,10.0,10.0,10.0,9.0,8,0.31 +65484,93.0,10.0,8.0,10.0,10.0,10.0,10.0,6,0.44 +42775,100.0,10.0,10.0,10.0,9.0,10.0,9.0,3,0.11 +55134,90.0,9.0,10.0,9.0,10.0,9.0,9.0,4,0.41 +55813,97.0,10.0,10.0,10.0,10.0,10.0,10.0,43,1.66 +70569,90.0,9.0,9.0,9.0,10.0,9.0,9.0,9,0.38 +61071,94.0,10.0,9.0,10.0,10.0,10.0,9.0,13,0.5 +2235,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.11 +52659,80.0,10.0,9.0,7.0,10.0,8.0,8.0,2,0.07 +17665,79.0,9.0,8.0,9.0,8.0,10.0,8.0,37,1.32 +75367,93.0,9.0,9.0,10.0,9.0,10.0,9.0,27,0.97 +21113,100.0,10.0,10.0,10.0,10.0,9.0,10.0,16,0.58 +59347,,,,,,,,0, +9150,86.0,9.0,8.0,9.0,9.0,9.0,9.0,23,0.85 +28969,95.0,10.0,10.0,10.0,10.0,10.0,9.0,8,3.53 +62222,98.0,10.0,10.0,10.0,10.0,10.0,10.0,93,3.5 +28891,96.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.32 +27184,99.0,10.0,10.0,10.0,10.0,10.0,10.0,33,1.35 +38494,96.0,10.0,9.0,10.0,10.0,9.0,10.0,96,3.4 +75431,95.0,10.0,10.0,10.0,10.0,10.0,10.0,82,2.92 +45547,96.0,10.0,9.0,10.0,10.0,10.0,10.0,113,3.98 +69861,,,,,,,,0, +66508,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.39 +46246,100.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.65 +53170,98.0,10.0,10.0,10.0,10.0,10.0,9.0,8,0.3 +14764,,,,,,,,0, +62978,100.0,10.0,10.0,10.0,10.0,9.0,10.0,54,1.94 +16136,100.0,9.0,10.0,10.0,10.0,10.0,10.0,2,0.17 +2769,80.0,9.0,8.0,9.0,9.0,8.0,9.0,25,0.89 +3946,95.0,10.0,9.0,10.0,10.0,10.0,9.0,133,4.67 +23527,74.0,8.0,8.0,8.0,9.0,8.0,8.0,22,0.8 +2033,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.07 +11663,,,,,,,,0, +36294,99.0,10.0,10.0,10.0,10.0,10.0,10.0,42,1.51 +59224,88.0,10.0,9.0,9.0,9.0,9.0,9.0,10,0.38 +31828,,,,,,,,0, +54612,96.0,10.0,10.0,10.0,10.0,10.0,9.0,26,1.0 +40838,93.0,9.0,9.0,10.0,10.0,10.0,10.0,4,0.14 +46434,86.0,9.0,7.0,10.0,10.0,10.0,9.0,10,0.36 +72488,,,,,,,,1,0.04 +31884,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.14 +39042,90.0,10.0,9.0,10.0,10.0,10.0,10.0,16,0.82 +24013,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +50777,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.38 +37710,95.0,10.0,10.0,10.0,10.0,10.0,10.0,67,2.72 +39188,,,,,,,,0, +56435,88.0,9.0,10.0,10.0,9.0,8.0,9.0,68,2.45 +72220,98.0,10.0,10.0,10.0,10.0,9.0,10.0,13,0.6 +25645,93.0,10.0,9.0,10.0,10.0,9.0,10.0,29,1.04 +21064,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.28 +237,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.11 +30295,86.0,9.0,9.0,9.0,9.0,9.0,9.0,113,4.04 +22043,100.0,10.0,10.0,10.0,10.0,10.0,10.0,21,0.89 +45426,99.0,10.0,10.0,9.0,10.0,10.0,10.0,16,0.57 +39628,98.0,10.0,10.0,10.0,10.0,10.0,10.0,38,1.39 +7205,98.0,10.0,10.0,10.0,10.0,10.0,10.0,17,1.96 +980,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.2 +59384,78.0,8.0,9.0,9.0,7.0,10.0,7.0,10,0.37 +5501,94.0,10.0,9.0,9.0,10.0,9.0,9.0,23,0.89 +11404,98.0,10.0,10.0,10.0,10.0,10.0,10.0,73,3.36 +60220,95.0,9.0,9.0,10.0,10.0,10.0,9.0,31,1.11 +38410,95.0,10.0,10.0,10.0,9.0,10.0,9.0,36,1.28 +4924,99.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.59 +69239,,,,,,,,0, +35300,91.0,10.0,9.0,10.0,10.0,8.0,10.0,39,1.51 +45722,96.0,10.0,9.0,10.0,10.0,10.0,9.0,10,0.35 +29422,93.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.11 +32994,85.0,10.0,8.0,10.0,10.0,9.0,9.0,9,0.39 +40948,90.0,10.0,10.0,9.0,10.0,9.0,9.0,4,0.14 +7556,100.0,10.0,10.0,10.0,10.0,9.0,10.0,18,0.68 +16470,98.0,10.0,10.0,10.0,10.0,10.0,10.0,70,2.55 +772,90.0,9.0,9.0,10.0,10.0,9.0,9.0,28,1.04 +31869,100.0,10.0,8.0,10.0,10.0,8.0,10.0,1,0.04 +24430,96.0,10.0,10.0,9.0,10.0,10.0,10.0,20,5.13 +52401,83.0,8.0,8.0,9.0,9.0,9.0,9.0,40,1.41 +32269,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.6 +7912,91.0,10.0,8.0,10.0,10.0,10.0,10.0,7,0.25 +30193,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +71091,99.0,10.0,10.0,10.0,10.0,10.0,10.0,28,0.99 +50718,80.0,8.0,9.0,10.0,9.0,10.0,9.0,2,0.07 +64719,84.0,9.0,8.0,8.0,8.0,10.0,9.0,5,0.18 +2389,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.5 +71171,100.0,10.0,9.0,10.0,10.0,10.0,10.0,6,0.29 +33465,98.0,10.0,10.0,10.0,10.0,10.0,10.0,19,0.73 +51455,99.0,10.0,9.0,9.0,10.0,9.0,9.0,19,0.76 +4747,96.0,10.0,10.0,10.0,10.0,10.0,10.0,113,4.26 +76225,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.11 +74208,97.0,10.0,9.0,9.0,9.0,9.0,9.0,6,0.21 +65729,94.0,10.0,10.0,10.0,10.0,10.0,10.0,179,6.3 +56932,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.08 +75162,83.0,10.0,8.0,9.0,9.0,9.0,9.0,13,0.48 +29914,85.0,9.0,7.0,10.0,10.0,9.0,9.0,30,1.09 +19336,99.0,10.0,10.0,10.0,10.0,9.0,10.0,29,3.04 +33583,90.0,9.0,9.0,10.0,10.0,9.0,9.0,22,0.78 +76096,,,,,,,,0, +71033,84.0,9.0,9.0,9.0,9.0,10.0,8.0,5,0.18 +2995,93.0,10.0,9.0,10.0,10.0,10.0,9.0,15,0.55 +12266,100.0,10.0,10.0,10.0,6.0,10.0,10.0,1,0.04 +56804,93.0,9.0,8.0,10.0,10.0,9.0,9.0,6,0.24 +15046,97.0,10.0,10.0,10.0,10.0,10.0,10.0,55,4.42 +64097,95.0,9.0,10.0,10.0,10.0,10.0,10.0,4,0.16 +5254,96.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.18 +45160,92.0,10.0,9.0,9.0,9.0,9.0,9.0,80,2.83 +43300,100.0,10.0,9.0,10.0,9.0,10.0,10.0,3,0.15 +49922,94.0,10.0,10.0,10.0,10.0,9.0,9.0,47,1.68 +16097,98.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.53 +75448,76.0,8.0,9.0,10.0,10.0,8.0,8.0,5,0.18 +40520,90.0,9.0,9.0,10.0,10.0,10.0,9.0,95,3.35 +19052,98.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.28 +124,90.0,9.0,9.0,10.0,10.0,10.0,9.0,95,3.38 +24699,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.11 +31073,88.0,10.0,10.0,10.0,10.0,9.0,9.0,5,0.18 +60068,96.0,10.0,10.0,10.0,10.0,9.0,10.0,296,10.46 +33556,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +42233,,,,,,,,0, +25401,,,,,,,,0, +14064,99.0,10.0,10.0,10.0,10.0,10.0,10.0,28,0.99 +8027,98.0,10.0,10.0,10.0,10.0,10.0,10.0,50,1.78 +19130,89.0,9.0,9.0,9.0,9.0,10.0,9.0,76,2.7 +72850,,,,,,,,0, +29602,88.0,9.0,9.0,9.0,10.0,8.0,9.0,209,7.61 +34653,80.0,8.0,9.0,9.0,9.0,8.0,8.0,13,0.48 +65473,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.29 +57121,89.0,9.0,9.0,10.0,10.0,8.0,9.0,211,7.66 +36689,95.0,10.0,10.0,10.0,10.0,9.0,10.0,106,4.92 +15737,91.0,9.0,9.0,10.0,9.0,9.0,9.0,23,0.83 +62854,95.0,10.0,10.0,10.0,10.0,10.0,10.0,26,0.97 +77082,,,,,,,,0, +61917,95.0,10.0,10.0,10.0,10.0,10.0,10.0,38,1.35 +23747,95.0,9.0,10.0,9.0,10.0,9.0,10.0,46,1.64 +18386,,,,,,,,0, +65864,87.0,9.0,9.0,9.0,9.0,8.0,9.0,179,6.5 +23288,86.0,9.0,9.0,9.0,9.0,9.0,9.0,48,1.73 +75977,100.0,9.0,10.0,9.0,10.0,9.0,9.0,3,0.12 +62554,98.0,10.0,9.0,10.0,10.0,10.0,10.0,8,0.34 +30712,95.0,10.0,10.0,10.0,10.0,10.0,9.0,8,0.91 +25273,80.0,9.0,9.0,10.0,10.0,7.0,9.0,3,0.11 +1985,96.0,10.0,10.0,10.0,10.0,10.0,9.0,58,3.19 +17243,99.0,10.0,10.0,10.0,10.0,10.0,10.0,54,1.97 +37071,98.0,10.0,10.0,10.0,10.0,9.0,10.0,23,0.83 +74087,94.0,10.0,9.0,10.0,10.0,9.0,10.0,35,1.27 +732,93.0,9.0,10.0,10.0,10.0,10.0,9.0,16,0.59 +49539,,,,,,,,0, +51776,91.0,10.0,9.0,10.0,10.0,10.0,9.0,7,0.27 +18471,,,,,,,,0, +28691,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.49 +66275,99.0,10.0,9.0,10.0,10.0,10.0,10.0,51,4.66 +13998,97.0,10.0,10.0,10.0,10.0,9.0,9.0,13,0.55 +68154,93.0,10.0,10.0,10.0,10.0,10.0,10.0,9,1.4 +51321,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.22 +23914,89.0,9.0,10.0,9.0,9.0,9.0,9.0,23,0.83 +65447,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,1.03 +15153,80.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.04 +16372,,,,,,,,1,0.1 +62639,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,3.1 +22108,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.61 +63473,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.11 +3659,95.0,10.0,10.0,9.0,10.0,10.0,10.0,7,0.26 +34293,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +68454,98.0,9.0,10.0,10.0,10.0,9.0,9.0,35,1.67 +37704,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +17438,83.0,9.0,9.0,10.0,10.0,10.0,9.0,6,0.22 +58060,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.08 +39129,98.0,10.0,10.0,10.0,10.0,9.0,10.0,11,0.42 +26848,86.0,9.0,8.0,10.0,10.0,10.0,9.0,98,3.59 +75392,,,,,,,,0, +31484,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.15 +65839,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.63 +21938,,,,,,,,0, +65421,40.0,6.0,2.0,4.0,6.0,8.0,6.0,2,0.07 +38581,,,,,,,,0, +64420,97.0,9.0,10.0,10.0,10.0,10.0,9.0,23,0.85 +6781,93.0,9.0,10.0,10.0,9.0,9.0,10.0,31,1.12 +34241,98.0,10.0,9.0,10.0,10.0,10.0,10.0,9,0.33 +43633,60.0,7.0,8.0,8.0,7.0,7.0,7.0,3,0.11 +57834,,,,,,,,0, +28851,,,,,,,,1,0.04 +807,89.0,9.0,10.0,10.0,10.0,10.0,9.0,36,1.3 +32794,100.0,10.0,10.0,10.0,10.0,10.0,10.0,22,0.78 +10913,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.18 +57231,100.0,8.0,8.0,8.0,10.0,8.0,10.0,1,0.04 +17372,89.0,9.0,9.0,9.0,9.0,8.0,9.0,20,0.72 +31216,100.0,10.0,10.0,10.0,10.0,10.0,10.0,19,0.74 +22462,99.0,10.0,10.0,10.0,10.0,10.0,10.0,114,4.2 +55711,97.0,10.0,10.0,10.0,10.0,9.0,10.0,56,2.06 +41659,97.0,10.0,10.0,9.0,10.0,10.0,9.0,15,0.57 +7185,90.0,9.0,9.0,10.0,10.0,10.0,10.0,3,0.11 +35089,,,,,,,,0, +56538,98.0,10.0,9.0,10.0,10.0,9.0,9.0,20,0.96 +8104,97.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.52 +61206,,,,,,,,0, +67046,76.0,8.0,8.0,9.0,9.0,9.0,8.0,6,0.22 +58191,91.0,9.0,9.0,9.0,9.0,10.0,9.0,28,1.11 +67744,96.0,10.0,10.0,10.0,10.0,10.0,9.0,12,0.77 +981,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.21 +61479,91.0,9.0,9.0,9.0,10.0,10.0,9.0,16,0.57 +54971,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.07 +66238,,,,,,,,0, +50650,87.0,8.0,9.0,9.0,10.0,9.0,9.0,3,0.11 +39351,96.0,10.0,10.0,9.0,10.0,10.0,9.0,11,0.45 +43511,99.0,10.0,10.0,10.0,10.0,10.0,10.0,96,3.49 +3518,96.0,10.0,9.0,9.0,10.0,10.0,10.0,10,0.36 +49946,93.0,10.0,9.0,10.0,10.0,10.0,10.0,9,0.33 +59243,90.0,9.0,9.0,10.0,10.0,10.0,9.0,43,1.62 +37561,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +6744,99.0,10.0,10.0,10.0,10.0,10.0,10.0,66,2.34 +7067,,,,,,,,0, +23332,93.0,10.0,9.0,10.0,10.0,9.0,9.0,17,0.64 +15170,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.1 +1542,60.0,7.0,8.0,8.0,7.0,9.0,8.0,4,0.14 +69662,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +63174,88.0,9.0,9.0,9.0,9.0,10.0,9.0,39,1.38 +12605,77.0,10.0,7.0,9.0,8.0,9.0,9.0,6,0.21 +25343,,,,,,,,0, +13585,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.1 +34253,,,,,,,,0, +63887,99.0,10.0,10.0,10.0,10.0,9.0,10.0,18,0.66 +15535,92.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.18 +2573,89.0,9.0,10.0,9.0,10.0,9.0,9.0,32,1.17 +73143,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.13 +11133,99.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.55 +62728,97.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.68 +4966,100.0,10.0,10.0,10.0,10.0,10.0,10.0,87,3.48 +14518,97.0,10.0,9.0,10.0,10.0,10.0,10.0,14,0.68 +67395,,,,,,,,0, +48645,99.0,10.0,10.0,10.0,10.0,9.0,10.0,78,2.95 +20151,100.0,9.0,9.0,10.0,10.0,10.0,10.0,2,0.07 +24399,,,,,,,,0, +33002,96.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.18 +16034,99.0,10.0,10.0,10.0,10.0,9.0,10.0,87,3.22 +21498,85.0,9.0,9.0,8.0,8.0,10.0,9.0,5,0.18 +29060,94.0,10.0,9.0,10.0,10.0,9.0,9.0,7,0.26 +46576,,,,,,,,0, +11801,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.32 +71267,,,,,,,,0, +72740,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,3.0 +13827,92.0,9.0,9.0,10.0,9.0,10.0,9.0,183,7.02 +39864,,,,,,,,0, +17105,96.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.4 +6207,,,,,,,,0, +63531,92.0,9.0,9.0,10.0,9.0,9.0,9.0,29,1.2 +2911,96.0,10.0,10.0,10.0,10.0,10.0,9.0,31,1.13 +35706,97.0,10.0,9.0,10.0,10.0,10.0,10.0,30,1.07 +12652,80.0,7.0,6.0,10.0,10.0,9.0,7.0,2,0.52 +51781,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.58 +11253,94.0,9.0,9.0,10.0,10.0,10.0,9.0,7,0.25 +14822,89.0,9.0,9.0,9.0,9.0,10.0,9.0,36,1.3 +9399,95.0,10.0,10.0,10.0,9.0,9.0,10.0,35,1.29 +808,93.0,10.0,10.0,9.0,9.0,9.0,9.0,38,1.39 +16046,90.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.08 +16454,98.0,10.0,10.0,10.0,10.0,9.0,10.0,36,1.33 +35825,,,,,,,,0, +67123,96.0,10.0,10.0,10.0,10.0,10.0,9.0,25,0.89 +67330,97.0,10.0,10.0,10.0,10.0,10.0,10.0,52,1.85 +70292,96.0,10.0,9.0,10.0,10.0,10.0,10.0,33,1.34 +36043,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.13 +43124,87.0,9.0,9.0,9.0,9.0,9.0,9.0,21,0.95 +20646,95.0,10.0,10.0,10.0,10.0,10.0,9.0,17,0.88 +69670,93.0,10.0,9.0,10.0,10.0,9.0,9.0,107,3.79 +72217,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.11 +25303,93.0,9.0,9.0,10.0,10.0,10.0,9.0,33,1.19 +22705,80.0,9.0,8.0,9.0,9.0,8.0,8.0,53,1.9 +70405,77.0,7.0,8.0,8.0,8.0,9.0,8.0,22,0.81 +74883,97.0,10.0,10.0,10.0,10.0,10.0,9.0,14,0.5 +43040,94.0,10.0,9.0,10.0,10.0,10.0,9.0,75,2.68 +55386,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.37 +37883,89.0,10.0,10.0,10.0,10.0,8.0,10.0,10,0.42 +59482,92.0,10.0,9.0,10.0,10.0,10.0,9.0,57,2.08 +27480,90.0,9.0,9.0,10.0,10.0,10.0,9.0,4,0.14 +43789,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +65887,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.11 +13622,96.0,10.0,9.0,10.0,10.0,10.0,10.0,15,0.55 +63075,78.0,9.0,9.0,9.0,9.0,9.0,8.0,21,0.77 +38268,93.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.7 +67723,90.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.11 +58843,,,,,,,,0, +37973,,,,,,,,0, +8946,,,,,,,,0, +75006,90.0,9.0,10.0,9.0,9.0,9.0,9.0,8,0.34 +69750,98.0,9.0,10.0,10.0,10.0,10.0,10.0,10,0.36 +49873,,,,,,,,0, +12436,88.0,9.0,9.0,9.0,9.0,9.0,9.0,32,1.17 +27262,100.0,10.0,10.0,9.0,9.0,10.0,10.0,2,0.1 +1645,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.04 +4195,87.0,9.0,9.0,10.0,8.0,9.0,9.0,7,0.26 +63737,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.33 +59972,,,,,,,,2,0.21 +31505,96.0,10.0,10.0,10.0,10.0,9.0,10.0,76,2.74 +548,96.0,10.0,10.0,10.0,10.0,10.0,9.0,35,1.26 +74458,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.12 +32617,99.0,10.0,10.0,10.0,10.0,10.0,10.0,96,3.56 +44802,94.0,9.0,10.0,9.0,10.0,10.0,10.0,19,0.7 +42729,93.0,10.0,9.0,10.0,10.0,10.0,9.0,18,0.67 +9701,99.0,10.0,10.0,10.0,10.0,9.0,9.0,17,0.63 +75503,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +71476,80.0,6.0,10.0,8.0,10.0,10.0,10.0,1,0.04 +65479,98.0,10.0,10.0,10.0,10.0,9.0,10.0,135,5.36 +289,89.0,9.0,9.0,10.0,10.0,9.0,9.0,94,3.34 +9918,94.0,9.0,9.0,10.0,10.0,10.0,9.0,67,2.56 +24039,99.0,10.0,10.0,10.0,10.0,9.0,10.0,21,0.78 +26857,,,,,,,,1,0.04 +70061,95.0,10.0,9.0,10.0,10.0,10.0,10.0,42,1.55 +74536,94.0,10.0,10.0,10.0,10.0,9.0,10.0,47,1.7 +25482,99.0,10.0,10.0,10.0,10.0,10.0,10.0,31,1.11 +15784,96.0,10.0,10.0,9.0,9.0,10.0,9.0,18,0.91 +60170,,,,,,,,0, +52622,96.0,10.0,10.0,10.0,10.0,10.0,10.0,83,3.03 +74685,,,,,,,,1,0.04 +23684,,,,,,,,0, +58477,,,,,,,,0, +47078,93.0,7.0,10.0,10.0,10.0,10.0,9.0,3,0.74 +41573,99.0,10.0,10.0,10.0,10.0,10.0,9.0,14,0.59 +2433,98.0,10.0,9.0,10.0,10.0,10.0,10.0,30,1.11 +26494,91.0,10.0,10.0,10.0,10.0,10.0,9.0,8,0.42 +15627,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.16 +12954,97.0,10.0,10.0,10.0,10.0,10.0,9.0,21,0.8 +18183,89.0,9.0,9.0,10.0,10.0,9.0,9.0,32,1.26 +32416,95.0,9.0,9.0,10.0,10.0,9.0,10.0,41,1.65 +7281,95.0,10.0,10.0,10.0,10.0,10.0,9.0,43,1.58 +18625,,,,,,,,0, +3750,98.0,10.0,10.0,10.0,10.0,10.0,9.0,46,1.67 +8634,,,,,,,,0, +27014,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.57 +9863,95.0,10.0,10.0,9.0,10.0,9.0,9.0,6,0.43 +69397,,,,,,,,0, +41679,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +43402,94.0,10.0,10.0,9.0,9.0,10.0,10.0,7,0.33 +17894,95.0,10.0,10.0,10.0,10.0,10.0,10.0,23,0.83 +68135,93.0,10.0,10.0,10.0,10.0,10.0,9.0,26,0.93 +77014,,,,,,,,1,0.04 +24115,,,,,,,,0, +14722,,,,,,,,0, +60778,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.25 +24832,99.0,10.0,10.0,10.0,10.0,10.0,10.0,30,1.1 +51855,90.0,9.0,9.0,10.0,9.0,10.0,9.0,76,2.8 +67803,95.0,9.0,9.0,10.0,10.0,8.0,9.0,11,0.44 +40662,88.0,9.0,9.0,9.0,9.0,9.0,9.0,166,6.06 +14906,98.0,10.0,10.0,10.0,10.0,9.0,10.0,9,0.32 +75926,94.0,10.0,9.0,10.0,10.0,10.0,9.0,20,0.73 +60594,99.0,10.0,10.0,10.0,10.0,10.0,9.0,18,0.7 +73547,97.0,10.0,10.0,10.0,10.0,9.0,10.0,26,1.5 +6327,94.0,10.0,10.0,10.0,10.0,9.0,9.0,28,1.03 +51499,96.0,10.0,10.0,10.0,10.0,10.0,8.0,5,0.22 +38413,99.0,10.0,10.0,10.0,10.0,10.0,10.0,92,3.45 +54081,80.0,6.0,6.0,10.0,10.0,10.0,10.0,1,0.04 +66460,,,,,,,,2,0.07 +57642,72.0,8.0,7.0,8.0,9.0,8.0,8.0,64,2.29 +41707,97.0,10.0,10.0,10.0,10.0,9.0,10.0,58,2.1 +67221,82.0,9.0,8.0,9.0,9.0,8.0,9.0,76,2.71 +15382,96.0,9.0,10.0,10.0,10.0,10.0,9.0,12,0.49 +28268,98.0,10.0,10.0,10.0,10.0,9.0,10.0,63,2.26 +23629,87.0,9.0,9.0,10.0,10.0,10.0,9.0,326,11.64 +23371,100.0,10.0,9.0,10.0,10.0,9.0,10.0,3,0.11 +37824,89.0,9.0,8.0,9.0,9.0,10.0,9.0,36,1.28 +13965,77.0,7.0,8.0,8.0,8.0,9.0,7.0,14,0.53 +63550,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.25 +39774,93.0,10.0,10.0,10.0,10.0,10.0,9.0,16,0.61 +72888,95.0,10.0,10.0,10.0,10.0,10.0,10.0,21,0.78 +48548,94.0,10.0,9.0,10.0,10.0,9.0,9.0,178,6.43 +65214,92.0,10.0,9.0,10.0,10.0,9.0,9.0,25,0.94 +52039,92.0,10.0,9.0,10.0,10.0,10.0,9.0,39,1.39 +11007,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +49685,67.0,8.0,5.0,9.0,9.0,8.0,7.0,13,0.5 +25955,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.09 +47193,,,,,,,,0, +55565,,,,,,,,0, +61122,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.41 +71090,94.0,10.0,10.0,9.0,10.0,10.0,10.0,31,1.12 +13983,98.0,10.0,10.0,10.0,10.0,10.0,10.0,93,3.69 +76725,98.0,10.0,10.0,10.0,10.0,10.0,10.0,27,0.99 +43451,95.0,10.0,9.0,10.0,10.0,10.0,9.0,24,0.86 +21425,,,,,,,,1,0.42 +17852,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.14 +61751,96.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.27 +33471,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +53799,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +2053,,,,,,,,0, +68966,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.17 +54456,93.0,10.0,8.0,10.0,10.0,9.0,10.0,8,0.29 +8416,98.0,10.0,10.0,10.0,10.0,9.0,10.0,53,1.9 +51771,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.26 +63800,90.0,10.0,10.0,10.0,9.0,9.0,9.0,65,2.33 +64567,92.0,10.0,7.0,10.0,10.0,9.0,9.0,23,0.83 +65716,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.69 +48703,,,,,,,,1,0.1 +66603,97.0,9.0,9.0,10.0,9.0,9.0,10.0,35,1.28 +27260,99.0,10.0,10.0,10.0,10.0,10.0,10.0,27,0.97 +49660,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.17 +21996,100.0,10.0,10.0,10.0,10.0,9.0,10.0,10,0.42 +23687,,,,,,,,0, +54864,94.0,10.0,9.0,10.0,10.0,9.0,10.0,25,1.01 +55095,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +35186,97.0,10.0,10.0,10.0,10.0,10.0,10.0,21,0.88 +67054,100.0,10.0,8.0,9.0,10.0,9.0,10.0,3,0.12 +67003,84.0,8.0,8.0,10.0,9.0,9.0,9.0,5,0.18 +38104,82.0,8.0,9.0,9.0,9.0,9.0,9.0,40,1.44 +25134,83.0,9.0,9.0,10.0,9.0,9.0,8.0,17,0.62 +65922,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +74320,96.0,9.0,9.0,10.0,10.0,9.0,9.0,9,0.33 +17742,88.0,8.0,7.0,10.0,10.0,9.0,9.0,5,0.19 +32694,98.0,10.0,9.0,10.0,10.0,8.0,9.0,10,0.39 +44369,97.0,10.0,10.0,10.0,10.0,10.0,10.0,44,1.66 +47280,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.33 +20871,85.0,8.0,8.0,9.0,9.0,8.0,8.0,47,1.68 +12683,93.0,9.0,9.0,10.0,10.0,9.0,9.0,3,0.11 +30254,87.0,10.0,10.0,9.0,9.0,9.0,9.0,3,0.57 +11260,97.0,10.0,9.0,10.0,10.0,9.0,10.0,6,0.26 +67075,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +65638,90.0,9.0,9.0,10.0,10.0,10.0,9.0,16,0.59 +232,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.29 +50335,90.0,9.0,10.0,9.0,10.0,10.0,9.0,3,0.11 +41507,100.0,10.0,10.0,10.0,10.0,8.0,10.0,2,0.08 +15281,94.0,10.0,10.0,10.0,10.0,10.0,9.0,124,4.46 +59438,98.0,10.0,10.0,10.0,10.0,10.0,10.0,44,1.58 +25358,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +46606,93.0,10.0,9.0,10.0,9.0,10.0,9.0,6,0.38 +20058,97.0,10.0,10.0,10.0,10.0,9.0,10.0,23,0.84 +44422,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +20165,,,,,,,,0, +23936,87.0,9.0,8.0,10.0,10.0,9.0,8.0,11,0.42 +44382,,,,,,,,0, +76432,98.0,10.0,10.0,10.0,10.0,10.0,10.0,40,1.45 +71249,93.0,10.0,9.0,9.0,9.0,9.0,9.0,3,0.41 +65173,,,,,,,,0, +51967,87.0,9.0,8.0,9.0,10.0,9.0,8.0,7,0.25 +33364,89.0,9.0,9.0,10.0,10.0,10.0,9.0,24,0.87 +29226,98.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.54 +2397,96.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.52 +29793,100.0,10.0,9.0,10.0,10.0,10.0,10.0,6,0.23 +56129,91.0,10.0,10.0,9.0,9.0,9.0,9.0,30,1.09 +17737,100.0,8.0,10.0,10.0,10.0,8.0,8.0,1,0.06 +4797,99.0,10.0,10.0,10.0,10.0,10.0,10.0,97,3.49 +30588,100.0,10.0,10.0,10.0,10.0,10.0,10.0,25,0.9 +5968,99.0,10.0,10.0,10.0,10.0,10.0,10.0,121,4.53 +68102,92.0,9.0,10.0,10.0,10.0,10.0,9.0,50,1.88 +56703,89.0,9.0,9.0,9.0,10.0,10.0,9.0,123,4.42 +2721,,,,,,,,0, +29473,97.0,10.0,10.0,10.0,10.0,9.0,10.0,67,2.5 +48234,100.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.14 +24659,93.0,10.0,9.0,10.0,10.0,10.0,10.0,39,1.41 +69460,99.0,10.0,10.0,10.0,10.0,9.0,10.0,69,2.57 +64653,,,,,,,,0, +15749,96.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.22 +19738,80.0,8.0,8.0,8.0,8.0,8.0,8.0,1,0.06 +40825,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.15 +55959,86.0,9.0,9.0,9.0,9.0,8.0,9.0,36,1.3 +62897,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +48846,70.0,8.0,7.0,8.0,8.0,10.0,7.0,4,0.15 +65674,98.0,10.0,10.0,10.0,10.0,10.0,10.0,42,1.56 +5130,91.0,10.0,9.0,10.0,10.0,10.0,9.0,54,1.94 +32558,88.0,10.0,9.0,10.0,9.0,10.0,9.0,13,0.47 +16228,97.0,10.0,9.0,10.0,10.0,10.0,9.0,7,0.31 +28919,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.04 +16790,93.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.12 +33491,,,,,,,,0, +18819,93.0,10.0,9.0,10.0,9.0,9.0,9.0,24,0.87 +59179,85.0,10.0,8.0,10.0,10.0,9.0,9.0,5,0.2 +55677,88.0,10.0,8.0,10.0,10.0,9.0,9.0,7,0.25 +50925,90.0,10.0,8.0,9.0,10.0,9.0,10.0,4,0.14 +63126,100.0,10.0,9.0,9.0,10.0,9.0,9.0,8,1.16 +57058,,,,,,,,1,0.04 +42567,95.0,10.0,8.0,10.0,9.0,10.0,8.0,5,0.21 +56464,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +76006,80.0,7.0,8.0,5.0,7.0,6.0,7.0,3,0.11 +71265,93.0,10.0,10.0,10.0,9.0,10.0,10.0,6,0.24 +50632,,,,,,,,1,0.04 +66722,99.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.64 +56750,,,,,,,,0, +57984,93.0,10.0,9.0,9.0,10.0,10.0,9.0,51,1.87 +39464,96.0,10.0,10.0,10.0,9.0,9.0,10.0,42,1.51 +65180,90.0,10.0,9.0,9.0,10.0,9.0,9.0,4,0.18 +71894,95.0,9.0,10.0,10.0,10.0,10.0,9.0,54,2.72 +31879,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.08 +19275,93.0,9.0,9.0,9.0,9.0,9.0,9.0,4,0.17 +6628,,,,,,,,0, +10509,88.0,9.0,9.0,9.0,10.0,9.0,8.0,8,0.5 +30666,,,,,,,,0, +71099,95.0,10.0,10.0,10.0,10.0,10.0,9.0,11,0.39 +35491,94.0,10.0,9.0,10.0,10.0,9.0,10.0,34,1.24 +59110,94.0,10.0,9.0,10.0,10.0,10.0,10.0,34,1.45 +12871,93.0,9.0,10.0,10.0,10.0,10.0,10.0,30,1.11 +62412,100.0,10.0,10.0,10.0,10.0,10.0,10.0,44,1.6 +35256,,,,,,,,0, +21467,89.0,9.0,9.0,9.0,9.0,8.0,9.0,11,0.41 +1843,93.0,9.0,9.0,9.0,10.0,10.0,9.0,57,2.12 +68664,73.0,8.0,7.0,10.0,10.0,10.0,7.0,4,0.15 +62735,90.0,9.0,10.0,9.0,10.0,9.0,9.0,4,0.15 +55772,94.0,9.0,9.0,10.0,10.0,10.0,9.0,10,0.39 +15127,95.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.15 +72372,,,,,,,,0, +60623,97.0,10.0,9.0,10.0,10.0,9.0,10.0,31,1.12 +23294,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.08 +67880,,,,,,,,1,0.2 +40896,87.0,9.0,9.0,9.0,9.0,10.0,9.0,84,3.01 +68488,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.18 +65327,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +4610,,,,,,,,0, +43516,97.0,10.0,10.0,10.0,10.0,10.0,9.0,14,0.84 +19155,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.92 +21578,,,,,,,,0, +7925,94.0,10.0,10.0,10.0,10.0,10.0,10.0,28,1.11 +42185,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.08 +63628,93.0,9.0,9.0,10.0,10.0,9.0,9.0,21,0.84 +53473,97.0,10.0,9.0,10.0,10.0,10.0,9.0,16,0.6 +40844,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.19 +43522,100.0,10.0,10.0,10.0,10.0,10.0,10.0,53,1.94 +34232,94.0,9.0,10.0,10.0,10.0,10.0,9.0,58,2.11 +28249,,,,,,,,0, +28446,93.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.11 +62536,90.0,9.0,9.0,10.0,10.0,9.0,9.0,3,0.13 +62410,97.0,9.0,10.0,10.0,10.0,9.0,10.0,7,0.29 +47030,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.08 +16011,91.0,9.0,9.0,10.0,9.0,10.0,9.0,18,0.71 +16069,73.0,7.0,6.0,9.0,9.0,10.0,7.0,6,0.22 +64538,,,,,,,,0, +28749,96.0,10.0,10.0,10.0,9.0,9.0,10.0,17,0.61 +30777,83.0,9.0,8.0,8.0,8.0,8.0,8.0,8,0.36 +60419,95.0,10.0,10.0,10.0,10.0,10.0,9.0,8,0.34 +42924,,,,,,,,0, +69621,94.0,10.0,9.0,10.0,10.0,9.0,9.0,10,0.42 +64754,,,,,,,,0, +63172,,,,,,,,0, +52262,,,,,,,,0, +25816,,,,,,,,0, +15932,88.0,9.0,9.0,9.0,9.0,9.0,9.0,35,1.28 +39113,,,,,,,,0, +53935,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +46381,96.0,10.0,9.0,10.0,10.0,9.0,9.0,20,0.73 +16232,90.0,10.0,8.0,10.0,10.0,9.0,9.0,8,0.29 +59513,95.0,9.0,9.0,9.0,10.0,10.0,9.0,23,0.92 +74769,96.0,10.0,10.0,10.0,10.0,8.0,10.0,5,0.18 +13321,96.0,10.0,10.0,9.0,10.0,10.0,9.0,24,0.87 +48836,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.46 +8190,,,,,,,,0, +37932,80.0,8.0,7.0,8.0,8.0,9.0,7.0,2,0.07 +28973,98.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.55 +35051,89.0,9.0,10.0,9.0,9.0,9.0,9.0,110,4.31 +39504,96.0,10.0,10.0,10.0,10.0,9.0,10.0,93,3.57 +45526,90.0,9.0,9.0,10.0,10.0,9.0,9.0,94,3.37 +14932,,,,,,,,0, +71017,91.0,9.0,9.0,10.0,10.0,9.0,9.0,65,2.33 +11378,80.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.15 +68112,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.11 +56460,90.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +68762,,,,,,,,0, +4890,84.0,9.0,8.0,8.0,8.0,9.0,9.0,14,0.51 +56021,91.0,9.0,8.0,10.0,10.0,9.0,9.0,7,0.26 +60212,,,,,,,,0, +25865,98.0,10.0,9.0,9.0,10.0,9.0,9.0,16,0.59 +71822,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.15 +10032,98.0,10.0,10.0,10.0,10.0,10.0,9.0,9,0.38 +76545,90.0,10.0,9.0,10.0,10.0,10.0,9.0,6,0.25 +10919,,,,,,,,0, +24150,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.11 +25190,,,,,,,,0, +30880,98.0,10.0,10.0,10.0,10.0,9.0,10.0,19,0.73 +52656,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +44221,80.0,9.0,9.0,9.0,9.0,9.0,9.0,8,0.29 +11361,94.0,10.0,9.0,10.0,10.0,10.0,10.0,41,1.51 +786,96.0,10.0,10.0,10.0,10.0,9.0,10.0,21,0.91 +9114,60.0,8.0,6.0,10.0,10.0,10.0,8.0,1,0.88 +70461,96.0,10.0,10.0,10.0,10.0,9.0,10.0,61,2.27 +46657,98.0,10.0,10.0,10.0,10.0,10.0,9.0,20,0.77 +33110,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.08 +19693,95.0,10.0,9.0,10.0,10.0,9.0,10.0,24,0.87 +49101,98.0,10.0,10.0,10.0,10.0,10.0,10.0,95,3.48 +21019,80.0,8.0,6.0,10.0,10.0,10.0,10.0,1,0.04 +73977,94.0,10.0,9.0,10.0,10.0,10.0,9.0,31,1.12 +14360,88.0,9.0,9.0,9.0,10.0,10.0,9.0,21,0.77 +55767,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.64 +14876,89.0,10.0,9.0,9.0,9.0,9.0,9.0,9,0.34 +12921,,,,,,,,0, +60187,93.0,10.0,10.0,9.0,9.0,10.0,9.0,33,1.22 +48383,90.0,9.0,10.0,9.0,10.0,9.0,9.0,15,0.54 +53718,98.0,10.0,10.0,10.0,10.0,9.0,10.0,18,1.01 +10828,91.0,10.0,9.0,10.0,10.0,10.0,9.0,140,5.18 +5191,89.0,9.0,9.0,10.0,10.0,10.0,9.0,161,5.85 +2954,87.0,9.0,9.0,10.0,10.0,10.0,9.0,158,5.7 +598,91.0,9.0,10.0,10.0,10.0,9.0,9.0,55,2.03 +10139,,,,,,,,0, +34387,99.0,10.0,10.0,10.0,10.0,9.0,10.0,45,1.62 +3241,,,,,,,,1, +9357,95.0,10.0,9.0,10.0,10.0,10.0,10.0,22,1.0 +7053,,,,,,,,1,0.04 +13026,,,,,,,,0, +62869,90.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.15 +36986,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +15431,97.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.54 +36275,91.0,10.0,9.0,10.0,10.0,9.0,9.0,30,1.1 +30609,95.0,9.0,9.0,10.0,10.0,9.0,9.0,31,1.17 +69602,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +47720,,,,,,,,0, +46340,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.07 +59677,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +68070,96.0,10.0,9.0,10.0,10.0,10.0,9.0,17,0.63 +46548,,,,,,,,0, +62644,,,,,,,,0, +4432,90.0,10.0,9.0,10.0,10.0,9.0,9.0,31,1.16 +62889,96.0,10.0,9.0,10.0,10.0,10.0,10.0,11,0.4 +39403,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.07 +40535,95.0,10.0,10.0,10.0,10.0,10.0,9.0,22,0.81 +41487,91.0,9.0,8.0,10.0,10.0,9.0,9.0,19,0.69 +46113,99.0,10.0,10.0,10.0,10.0,10.0,10.0,91,3.33 +968,99.0,10.0,10.0,10.0,10.0,10.0,9.0,14,0.53 +18748,90.0,10.0,9.0,8.0,9.0,8.0,10.0,4,0.18 +50214,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.18 +18418,,,,,,,,0, +69122,93.0,10.0,10.0,10.0,10.0,10.0,9.0,15,0.55 +13069,,,,,,,,0, +53418,97.0,10.0,10.0,10.0,10.0,9.0,10.0,113,4.19 +46936,100.0,10.0,10.0,10.0,10.0,10.0,10.0,55,2.14 +20736,95.0,10.0,10.0,9.0,10.0,10.0,10.0,5,0.19 +16376,100.0,9.0,10.0,10.0,10.0,9.0,10.0,2,0.07 +9038,94.0,9.0,9.0,10.0,10.0,10.0,9.0,32,1.18 +25558,99.0,10.0,10.0,10.0,10.0,10.0,10.0,27,0.98 +26666,91.0,10.0,10.0,10.0,10.0,10.0,9.0,41,1.51 +37180,,,,,,,,0, +64634,,,,,,,,1,0.04 +9839,85.0,9.0,8.0,10.0,9.0,9.0,9.0,36,1.45 +72834,94.0,10.0,10.0,10.0,10.0,9.0,10.0,38,1.38 +16173,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.18 +28537,95.0,10.0,10.0,10.0,10.0,9.0,9.0,47,1.72 +20305,86.0,9.0,8.0,9.0,10.0,8.0,9.0,191,6.88 +51350,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.04 +59045,100.0,10.0,10.0,9.0,10.0,10.0,10.0,8,0.29 +32417,94.0,10.0,9.0,10.0,10.0,10.0,9.0,14,0.5 +16215,88.0,9.0,8.0,9.0,10.0,9.0,9.0,187,6.73 +14717,96.0,10.0,10.0,10.0,10.0,9.0,10.0,29,1.08 +4729,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.17 +17476,84.0,9.0,8.0,9.0,9.0,9.0,9.0,190,6.83 +56091,94.0,10.0,9.0,10.0,10.0,9.0,9.0,88,3.2 +6804,90.0,9.0,9.0,9.0,9.0,10.0,9.0,28,1.01 +22430,90.0,9.0,9.0,9.0,10.0,9.0,9.0,220,8.0 +37968,91.0,9.0,9.0,9.0,10.0,9.0,9.0,178,6.43 +27929,100.0,10.0,10.0,10.0,10.0,9.0,10.0,22,1.03 +34432,93.0,10.0,9.0,10.0,10.0,10.0,9.0,22,0.8 +8606,,,,,,,,0, +27165,75.0,8.0,7.0,9.0,9.0,9.0,7.0,19,0.71 +37875,89.0,9.0,9.0,9.0,9.0,9.0,9.0,183,6.6 +8049,,,,,,,,0, +31548,78.0,8.0,7.0,9.0,9.0,10.0,8.0,19,0.7 +54812,92.0,10.0,9.0,10.0,10.0,9.0,9.0,42,1.54 +8234,84.0,9.0,9.0,9.0,9.0,10.0,9.0,60,2.21 +31423,,,,,,,,0, +23117,99.0,10.0,10.0,10.0,10.0,10.0,10.0,65,2.36 +31136,97.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.59 +9572,98.0,10.0,10.0,10.0,10.0,10.0,9.0,26,0.94 +21383,96.0,10.0,10.0,10.0,10.0,8.0,10.0,37,1.33 +61753,95.0,10.0,9.0,10.0,10.0,9.0,9.0,36,1.3 +12940,94.0,10.0,9.0,10.0,10.0,9.0,10.0,40,1.45 +15908,97.0,10.0,10.0,10.0,10.0,10.0,9.0,132,4.75 +26806,90.0,9.0,9.0,9.0,9.0,9.0,9.0,22,0.87 +7028,100.0,10.0,10.0,10.0,10.0,9.0,10.0,21,1.0 +16092,94.0,9.0,9.0,10.0,10.0,10.0,9.0,12,0.46 +28746,93.0,10.0,9.0,9.0,9.0,10.0,9.0,11,0.41 +69303,87.0,9.0,9.0,9.0,9.0,9.0,8.0,20,0.77 +5591,94.0,9.0,9.0,10.0,10.0,9.0,9.0,34,2.14 +26783,97.0,10.0,10.0,10.0,10.0,10.0,10.0,27,1.01 +10519,96.0,10.0,10.0,10.0,10.0,10.0,10.0,60,2.86 +23529,93.0,9.0,9.0,10.0,10.0,10.0,9.0,91,3.38 +55604,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.04 +14747,60.0,6.0,9.0,6.0,6.0,7.0,6.0,2,0.07 +25405,98.0,10.0,10.0,10.0,10.0,9.0,10.0,106,3.83 +50421,97.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.59 +48906,94.0,10.0,9.0,10.0,10.0,9.0,9.0,35,1.66 +36239,82.0,9.0,8.0,9.0,9.0,10.0,8.0,43,1.61 +70583,88.0,9.0,9.0,10.0,10.0,10.0,9.0,146,5.24 +2430,98.0,10.0,10.0,10.0,10.0,10.0,10.0,66,2.4 +64356,99.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.64 +17778,,,,,,,,0, +19837,89.0,9.0,9.0,10.0,10.0,10.0,9.0,124,4.48 +72085,92.0,10.0,9.0,10.0,10.0,10.0,9.0,158,5.74 +28909,90.0,9.0,9.0,10.0,10.0,10.0,9.0,157,5.72 +71470,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.16 +74244,96.0,10.0,10.0,10.0,10.0,10.0,10.0,52,1.96 +3922,95.0,10.0,10.0,10.0,10.0,10.0,10.0,19,0.7 +57820,,,,,,,,0, +59633,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.41 +58180,,,,,,,,0, +3764,100.0,9.0,10.0,10.0,10.0,10.0,10.0,4,0.17 +127,,,,,,,,1,0.04 +74525,85.0,9.0,9.0,9.0,9.0,10.0,8.0,19,0.7 +30159,,,,,,,,0, +44495,60.0,4.0,4.0,10.0,10.0,10.0,8.0,1,0.06 +38327,,,,,,,,1,0.04 +60120,,,,,,,,0, +51663,92.0,10.0,9.0,9.0,10.0,10.0,9.0,24,0.88 +46815,99.0,10.0,10.0,10.0,10.0,10.0,10.0,28,1.03 +54220,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.16 +56359,89.0,9.0,9.0,9.0,9.0,9.0,9.0,76,2.74 +26615,90.0,10.0,9.0,10.0,10.0,10.0,9.0,145,5.23 +14474,88.0,9.0,9.0,10.0,10.0,9.0,9.0,93,3.67 +19341,90.0,9.0,10.0,9.0,9.0,9.0,9.0,47,1.74 +29643,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.37 +50087,85.0,9.0,8.0,9.0,9.0,10.0,9.0,12,0.43 +73904,98.0,10.0,10.0,9.0,10.0,10.0,10.0,50,1.81 +75820,96.0,10.0,10.0,10.0,10.0,9.0,10.0,60,2.21 +2275,93.0,10.0,9.0,10.0,10.0,9.0,10.0,14,0.97 +70395,85.0,9.0,9.0,10.0,10.0,10.0,9.0,142,5.62 +72662,93.0,9.0,10.0,10.0,10.0,10.0,10.0,16,0.58 +9773,,,,,,,,0, +52942,,,,,,,,0, +29594,,,,,,,,0, +2830,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +18569,98.0,10.0,9.0,10.0,10.0,10.0,10.0,15,0.58 +24463,97.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.3 +12542,92.0,9.0,10.0,10.0,10.0,9.0,9.0,38,1.44 +22617,98.0,10.0,10.0,9.0,10.0,10.0,10.0,24,0.87 +12537,82.0,9.0,9.0,9.0,9.0,10.0,8.0,26,0.94 +75172,80.0,9.0,9.0,9.0,9.0,10.0,8.0,47,1.72 +55085,93.0,10.0,9.0,9.0,10.0,10.0,9.0,11,0.41 +37666,90.0,9.0,9.0,9.0,9.0,9.0,9.0,111,3.99 +40284,97.0,10.0,10.0,10.0,10.0,10.0,10.0,28,1.03 +24613,94.0,10.0,9.0,10.0,10.0,10.0,9.0,31,1.16 +49926,94.0,9.0,10.0,10.0,10.0,9.0,10.0,18,0.68 +45251,88.0,9.0,8.0,10.0,10.0,10.0,9.0,31,1.14 +71184,80.0,7.0,9.0,10.0,10.0,9.0,7.0,3,0.11 +75517,84.0,8.0,8.0,8.0,8.0,9.0,9.0,7,0.27 +13437,100.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.55 +4186,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +23284,96.0,10.0,10.0,10.0,9.0,10.0,9.0,5,0.18 +19098,98.0,10.0,10.0,10.0,10.0,10.0,10.0,85,3.16 +37299,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +37944,99.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.54 +24880,83.0,10.0,7.0,9.0,10.0,9.0,8.0,7,0.29 +5680,98.0,10.0,10.0,10.0,10.0,9.0,10.0,37,1.41 +64467,50.0,4.0,8.0,7.0,5.0,10.0,6.0,2,0.07 +7092,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +3622,91.0,9.0,9.0,10.0,9.0,10.0,9.0,62,2.29 +17768,,,,,,,,0, +33499,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.14 +70478,90.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.18 +55879,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.15 +57010,90.0,9.0,9.0,10.0,10.0,9.0,9.0,35,1.37 +59769,90.0,10.0,7.0,10.0,10.0,10.0,10.0,4,0.16 +75449,99.0,10.0,10.0,10.0,10.0,10.0,10.0,155,5.64 +36539,,,,,,,,0, +54318,95.0,10.0,9.0,10.0,10.0,10.0,10.0,19,0.72 +4099,97.0,10.0,10.0,10.0,10.0,9.0,10.0,57,2.39 +943,85.0,9.0,8.0,10.0,9.0,9.0,9.0,89,3.21 +64831,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.15 +47330,100.0,10.0,10.0,10.0,10.0,10.0,6.0,1,0.04 +52511,,,,,,,,0, +6646,100.0,10.0,10.0,10.0,10.0,8.0,10.0,2,0.07 +4651,100.0,10.0,10.0,,10.0,,,2,0.07 +69806,100.0,10.0,10.0,10.0,10.0,8.0,10.0,2,0.07 +69812,83.0,9.0,9.0,8.0,8.0,9.0,9.0,35,1.29 +35564,97.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.26 +34568,96.0,10.0,10.0,10.0,10.0,9.0,10.0,74,2.69 +17959,89.0,9.0,9.0,10.0,10.0,10.0,9.0,29,1.05 +37535,94.0,9.0,9.0,10.0,10.0,9.0,9.0,11,0.53 +58584,95.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.17 +56100,,,,,,,,0, +4578,99.0,10.0,9.0,10.0,10.0,9.0,10.0,54,2.04 +19097,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +36919,96.0,10.0,10.0,10.0,10.0,10.0,9.0,34,1.28 +38764,98.0,10.0,10.0,10.0,10.0,10.0,10.0,137,6.94 +18802,,,,,,,,0, +5646,97.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.23 +40760,60.0,7.0,7.0,7.0,7.0,9.0,7.0,4,0.16 +62804,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.32 +45107,,,,,,,,1,0.13 +46942,100.0,10.0,10.0,10.0,10.0,9.0,10.0,9,0.35 +50843,96.0,10.0,10.0,10.0,10.0,10.0,9.0,9,0.52 +14355,90.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.38 +69952,80.0,8.0,7.0,10.0,9.0,8.0,8.0,2,0.07 +76786,,,,,,,,0, +66072,,,,,,,,0, +42577,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +21451,90.0,10.0,9.0,10.0,10.0,9.0,9.0,7,0.28 +72472,93.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.15 +65380,,,,,,,,0, +31934,98.0,10.0,10.0,10.0,10.0,10.0,10.0,32,1.2 +53333,86.0,9.0,9.0,10.0,10.0,8.0,9.0,21,0.77 +17319,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +41640,91.0,10.0,9.0,10.0,10.0,9.0,10.0,7,0.26 +52780,89.0,10.0,9.0,10.0,9.0,10.0,9.0,22,0.8 +45695,80.0,8.0,8.0,10.0,10.0,10.0,10.0,3,0.12 +52682,90.0,9.0,9.0,10.0,10.0,9.0,9.0,108,4.02 +58103,,,,,,,,1,0.04 +46116,90.0,9.0,9.0,10.0,10.0,9.0,9.0,85,3.17 +142,87.0,9.0,9.0,9.0,9.0,8.0,9.0,36,1.31 +13798,77.0,9.0,9.0,10.0,10.0,9.0,9.0,7,0.26 +48901,83.0,9.0,9.0,9.0,9.0,9.0,9.0,92,3.38 +74527,96.0,10.0,10.0,10.0,10.0,10.0,10.0,45,1.76 +63892,83.0,9.0,8.0,10.0,9.0,9.0,9.0,86,3.18 +41039,86.0,9.0,9.0,10.0,10.0,9.0,9.0,58,2.11 +68691,90.0,9.0,9.0,10.0,10.0,10.0,9.0,25,0.93 +70403,89.0,9.0,9.0,10.0,9.0,10.0,9.0,140,5.05 +2673,93.0,9.0,10.0,10.0,10.0,10.0,9.0,122,4.52 +50877,98.0,10.0,9.0,10.0,10.0,10.0,10.0,12,0.44 +13682,95.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.21 +415,94.0,10.0,9.0,10.0,10.0,10.0,9.0,132,4.87 +32982,94.0,10.0,9.0,10.0,10.0,10.0,9.0,123,4.49 +64766,93.0,9.0,10.0,10.0,10.0,10.0,9.0,89,3.38 +4922,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.12 +11431,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +33493,98.0,10.0,10.0,10.0,10.0,10.0,10.0,24,0.9 +37061,96.0,9.0,9.0,10.0,10.0,10.0,10.0,5,0.18 +19603,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.17 +41905,96.0,10.0,9.0,10.0,10.0,10.0,10.0,10,0.42 +43661,99.0,10.0,10.0,10.0,10.0,10.0,10.0,25,1.92 +4133,100.0,10.0,10.0,10.0,10.0,10.0,10.0,54,2.42 +37322,100.0,10.0,10.0,10.0,10.0,10.0,10.0,98,3.59 +41609,80.0,9.0,7.0,10.0,10.0,7.0,8.0,2,0.08 +18507,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.16 +13125,78.0,8.0,8.0,8.0,8.0,9.0,8.0,10,0.37 +68633,87.0,9.0,7.0,9.0,7.0,9.0,9.0,6,0.22 +47778,,,,,,,,0, +55782,99.0,10.0,10.0,10.0,10.0,10.0,10.0,71,2.66 +72388,88.0,9.0,9.0,10.0,10.0,9.0,9.0,23,0.85 +3854,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +24579,,,,,,,,0, +55140,,,,,,,,0, +62514,100.0,10.0,6.0,10.0,10.0,10.0,8.0,3,0.2 +44986,93.0,9.0,9.0,10.0,10.0,10.0,9.0,8,0.31 +19351,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.5 +33526,,,,,,,,0, +880,,,,,,,,1,0.04 +12461,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +8846,,,,,,,,1,0.04 +32253,92.0,10.0,9.0,10.0,10.0,10.0,9.0,56,2.12 +6948,71.0,8.0,8.0,6.0,7.0,10.0,7.0,14,0.52 +27825,78.0,8.0,10.0,9.0,9.0,9.0,8.0,9,0.35 +72836,96.0,10.0,10.0,10.0,10.0,10.0,10.0,68,2.48 +69342,80.0,8.0,9.0,8.0,9.0,10.0,8.0,3,0.11 +65988,60.0,8.0,9.0,6.0,5.0,9.0,6.0,3,0.12 +30949,87.0,9.0,9.0,9.0,9.0,9.0,9.0,6,0.23 +63661,60.0,3.0,4.0,9.0,9.0,9.0,4.0,2,0.08 +22116,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.79 +76396,93.0,10.0,10.0,10.0,10.0,9.0,9.0,17,0.87 +59813,100.0,10.0,9.0,10.0,10.0,10.0,10.0,7,0.26 +27896,94.0,10.0,10.0,10.0,10.0,9.0,10.0,137,5.07 +4638,100.0,10.0,10.0,10.0,10.0,8.0,10.0,3,0.11 +43200,94.0,10.0,9.0,10.0,10.0,10.0,10.0,74,3.64 +8401,95.0,10.0,9.0,10.0,10.0,10.0,9.0,26,0.95 +18759,87.0,8.0,8.0,10.0,10.0,10.0,9.0,3,0.26 +17590,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.15 +12257,94.0,10.0,9.0,10.0,10.0,10.0,10.0,25,0.9 +14330,97.0,10.0,10.0,10.0,10.0,9.0,9.0,18,0.66 +21417,98.0,10.0,10.0,10.0,10.0,9.0,9.0,17,0.64 +9006,95.0,10.0,10.0,10.0,10.0,9.0,10.0,94,3.44 +32727,94.0,10.0,10.0,10.0,10.0,9.0,10.0,85,3.59 +38896,99.0,10.0,10.0,10.0,10.0,10.0,10.0,190,6.88 +30189,94.0,10.0,10.0,10.0,10.0,9.0,9.0,111,4.72 +34847,93.0,10.0,10.0,10.0,10.0,10.0,9.0,144,5.42 +60247,95.0,10.0,9.0,10.0,10.0,10.0,10.0,114,4.14 +39001,99.0,10.0,10.0,10.0,10.0,9.0,10.0,14,0.69 +54936,,,,,,,,0, +38564,91.0,10.0,9.0,10.0,10.0,9.0,9.0,113,4.15 +64764,84.0,9.0,9.0,9.0,8.0,10.0,9.0,37,1.34 +18939,88.0,9.0,9.0,9.0,9.0,10.0,9.0,20,0.73 +74294,84.0,9.0,9.0,9.0,9.0,9.0,9.0,22,0.89 +63208,79.0,8.0,8.0,8.0,7.0,10.0,9.0,27,1.09 +51887,72.0,7.0,9.0,8.0,7.0,9.0,8.0,12,0.44 +61443,78.0,9.0,10.0,8.0,8.0,10.0,9.0,13,0.48 +26875,86.0,9.0,10.0,9.0,9.0,10.0,9.0,56,2.04 +17727,83.0,8.0,9.0,8.0,9.0,10.0,9.0,7,0.25 +36921,86.0,9.0,9.0,9.0,9.0,10.0,9.0,31,1.21 +52527,83.0,9.0,9.0,9.0,8.0,9.0,8.0,39,1.43 +3037,93.0,10.0,10.0,10.0,9.0,10.0,9.0,42,1.54 +33175,100.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.77 +30854,93.0,10.0,10.0,10.0,10.0,10.0,9.0,24,0.89 +63725,100.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.15 +70945,100.0,10.0,10.0,10.0,8.0,8.0,10.0,1,0.04 +36347,,,,,,,,2,0.26 +37607,99.0,10.0,10.0,10.0,10.0,9.0,10.0,76,2.76 +20753,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +47309,55.0,8.0,10.0,8.0,4.0,9.0,7.0,4,0.15 +20528,97.0,10.0,9.0,10.0,10.0,9.0,10.0,31,2.86 +39492,100.0,10.0,9.0,10.0,10.0,10.0,10.0,6,0.22 +742,,,,,,,,0, +42816,91.0,10.0,9.0,9.0,9.0,9.0,9.0,34,1.24 +64998,98.0,10.0,10.0,10.0,10.0,10.0,9.0,43,1.58 +7745,96.0,10.0,10.0,10.0,10.0,10.0,10.0,28,1.19 +33356,93.0,10.0,10.0,10.0,10.0,9.0,9.0,13,0.49 +47199,100.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.23 +22129,100.0,10.0,10.0,10.0,10.0,10.0,10.0,24,0.9 +58908,99.0,10.0,10.0,10.0,10.0,10.0,10.0,28,1.18 +13216,98.0,10.0,10.0,10.0,10.0,10.0,10.0,37,2.74 +39561,96.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.28 +20100,95.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.27 +24555,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.13 +76047,99.0,10.0,10.0,10.0,10.0,10.0,10.0,46,1.68 +30383,92.0,9.0,9.0,9.0,10.0,10.0,9.0,11,0.41 +22169,98.0,10.0,10.0,10.0,10.0,9.0,10.0,77,2.85 +8464,99.0,10.0,10.0,10.0,10.0,10.0,10.0,80,3.01 +58817,60.0,6.0,2.0,10.0,10.0,6.0,2.0,2,0.1 +62354,98.0,10.0,10.0,10.0,10.0,10.0,9.0,20,0.81 +50094,91.0,9.0,9.0,9.0,10.0,10.0,9.0,43,1.6 +38343,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.16 +31365,91.0,9.0,8.0,9.0,9.0,9.0,9.0,16,0.6 +19340,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.17 +50118,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.34 +41179,91.0,9.0,9.0,10.0,10.0,9.0,9.0,97,3.55 +36657,87.0,9.0,10.0,9.0,10.0,9.0,9.0,11,0.42 +49664,98.0,10.0,10.0,10.0,10.0,10.0,9.0,31,1.15 +23171,98.0,10.0,10.0,10.0,10.0,10.0,10.0,23,0.87 +17620,79.0,9.0,8.0,9.0,8.0,9.0,8.0,34,1.24 +8811,71.0,8.0,5.0,8.0,8.0,8.0,7.0,7,0.26 +41848,93.0,9.0,9.0,10.0,10.0,9.0,9.0,12,0.45 +34723,95.0,10.0,8.0,10.0,10.0,9.0,9.0,12,0.46 +40806,86.0,9.0,9.0,10.0,10.0,9.0,9.0,18,0.66 +9548,93.0,10.0,10.0,10.0,10.0,9.0,9.0,36,1.32 +25000,95.0,10.0,9.0,10.0,10.0,9.0,9.0,53,1.97 +19538,97.0,10.0,9.0,10.0,10.0,10.0,10.0,14,0.52 +53678,92.0,10.0,9.0,9.0,10.0,9.0,9.0,27,1.0 +39355,88.0,9.0,9.0,10.0,10.0,9.0,9.0,184,6.68 +56547,89.0,9.0,9.0,9.0,9.0,9.0,9.0,11,0.41 +58236,,,,,,,,0, +69156,92.0,9.0,9.0,10.0,10.0,9.0,9.0,15,0.55 +49709,80.0,7.0,7.0,10.0,9.0,9.0,8.0,3,0.2 +13198,97.0,10.0,10.0,9.0,10.0,9.0,10.0,6,0.23 +28646,97.0,10.0,10.0,10.0,10.0,10.0,10.0,20,1.27 +66056,99.0,10.0,10.0,10.0,10.0,10.0,10.0,27,1.01 +14424,96.0,10.0,10.0,10.0,10.0,10.0,9.0,70,2.75 +69688,98.0,10.0,10.0,10.0,10.0,9.0,10.0,49,1.84 +54039,87.0,10.0,9.0,10.0,9.0,10.0,9.0,4,0.17 +4038,100.0,10.0,10.0,9.0,10.0,9.0,10.0,12,0.44 +63102,100.0,9.0,9.0,10.0,10.0,10.0,10.0,3,0.42 +56480,99.0,10.0,10.0,10.0,10.0,10.0,10.0,124,4.58 +12319,,,,,,,,0, +7597,98.0,10.0,9.0,10.0,10.0,9.0,10.0,28,1.04 +14707,89.0,9.0,9.0,9.0,9.0,9.0,9.0,37,1.36 +55501,83.0,9.0,8.0,9.0,9.0,9.0,9.0,70,2.75 +40612,96.0,10.0,10.0,10.0,10.0,9.0,10.0,45,1.67 +58986,96.0,10.0,9.0,10.0,10.0,10.0,10.0,106,3.98 +35912,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.15 +43613,80.0,8.0,8.0,8.0,8.0,8.0,8.0,1,0.04 +35750,90.0,10.0,9.0,10.0,10.0,10.0,9.0,36,1.31 +18069,94.0,10.0,10.0,10.0,10.0,10.0,9.0,27,0.99 +54584,97.0,9.0,9.0,10.0,9.0,9.0,10.0,14,0.55 +2708,89.0,10.0,9.0,10.0,10.0,10.0,9.0,35,1.28 +63897,89.0,9.0,9.0,9.0,9.0,9.0,9.0,7,0.42 +67012,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.56 +46044,90.0,9.0,10.0,9.0,10.0,10.0,8.0,2,0.07 +14693,93.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.46 +37484,94.0,10.0,10.0,10.0,10.0,10.0,9.0,60,2.32 +60122,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +38714,84.0,9.0,8.0,9.0,9.0,9.0,9.0,23,0.87 +69302,,,,,,,,0, +38212,89.0,9.0,9.0,9.0,10.0,9.0,9.0,17,0.63 +29061,97.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.3 +57137,92.0,10.0,9.0,9.0,9.0,10.0,9.0,32,1.17 +44872,91.0,10.0,9.0,10.0,10.0,10.0,9.0,15,0.55 +64783,98.0,10.0,10.0,10.0,10.0,10.0,10.0,37,1.87 +21481,93.0,9.0,9.0,9.0,10.0,9.0,9.0,4,0.15 +71469,99.0,10.0,10.0,10.0,10.0,10.0,10.0,29,1.08 +51659,96.0,9.0,10.0,10.0,10.0,10.0,10.0,15,0.58 +24628,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.09 +16578,80.0,10.0,7.0,10.0,10.0,7.0,8.0,2,0.07 +26172,95.0,10.0,9.0,10.0,10.0,10.0,9.0,47,1.74 +17530,98.0,10.0,9.0,10.0,10.0,10.0,10.0,33,1.28 +43413,99.0,10.0,10.0,10.0,10.0,10.0,10.0,35,1.31 +52420,97.0,10.0,10.0,10.0,10.0,9.0,10.0,27,1.0 +49067,95.0,10.0,9.0,10.0,10.0,10.0,9.0,93,3.41 +22996,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.17 +10124,100.0,8.0,4.0,10.0,10.0,10.0,10.0,1,0.04 +63257,100.0,10.0,10.0,,10.0,,,1,0.04 +55273,,,,,,,,1,0.04 +41238,95.0,10.0,9.0,10.0,10.0,10.0,9.0,4,0.15 +2203,,,,,,,,0, +7567,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.17 +42906,89.0,9.0,9.0,9.0,10.0,10.0,9.0,33,1.21 +38797,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.15 +22959,100.0,8.0,8.0,10.0,10.0,10.0,10.0,1,0.19 +51539,93.0,10.0,9.0,9.0,10.0,9.0,10.0,6,0.26 +25599,93.0,9.0,9.0,10.0,10.0,10.0,9.0,3,0.11 +26814,96.0,10.0,10.0,10.0,10.0,10.0,10.0,50,1.85 +26147,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.28 +64296,97.0,10.0,9.0,10.0,10.0,10.0,10.0,158,5.9 +57514,84.0,10.0,9.0,10.0,10.0,10.0,10.0,8,0.3 +17034,,,,,,,,2,0.08 +75445,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.5 +32407,80.0,9.0,8.0,10.0,10.0,10.0,9.0,4,0.16 +63876,91.0,9.0,9.0,10.0,9.0,10.0,9.0,25,0.92 +57405,90.0,10.0,6.0,10.0,10.0,7.0,9.0,3,0.11 +7856,88.0,9.0,8.0,9.0,10.0,9.0,9.0,38,1.4 +37843,84.0,10.0,9.0,10.0,10.0,9.0,10.0,5,0.21 +6642,94.0,10.0,9.0,10.0,10.0,10.0,9.0,8,1.26 +72262,,,,,,,,0, +38837,93.0,10.0,10.0,9.0,9.0,9.0,9.0,3,0.11 +31844,82.0,9.0,7.0,9.0,9.0,9.0,8.0,28,1.15 +33896,100.0,10.0,10.0,10.0,9.0,9.0,10.0,5,0.18 +1503,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.15 +56581,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.94 +2544,93.0,10.0,9.0,10.0,10.0,10.0,9.0,103,3.93 +50565,94.0,10.0,10.0,10.0,10.0,9.0,10.0,146,5.64 +61126,,,,,,,,0, +27954,99.0,10.0,10.0,10.0,10.0,10.0,10.0,42,1.56 +13652,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.07 +43050,100.0,10.0,10.0,10.0,10.0,10.0,10.0,27,1.06 +42513,96.0,10.0,9.0,9.0,10.0,10.0,10.0,15,0.57 +71998,95.0,10.0,9.0,10.0,10.0,10.0,10.0,69,2.6 +51177,93.0,10.0,9.0,9.0,10.0,7.0,9.0,3,0.11 +59895,97.0,9.0,9.0,10.0,10.0,10.0,10.0,7,0.26 +26004,,,,,,,,0, +12111,87.0,9.0,9.0,9.0,9.0,10.0,9.0,3,0.11 +64640,96.0,10.0,9.0,10.0,10.0,10.0,9.0,6,0.25 +30095,47.0,5.0,5.0,5.0,5.0,6.0,5.0,3,0.11 +12505,77.0,8.0,8.0,9.0,9.0,8.0,8.0,26,1.0 +16427,99.0,10.0,10.0,10.0,10.0,10.0,10.0,26,0.95 +25882,99.0,10.0,10.0,10.0,10.0,10.0,10.0,53,1.95 +41481,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +9232,83.0,9.0,9.0,9.0,10.0,10.0,8.0,40,1.47 +76731,96.0,10.0,10.0,10.0,9.0,9.0,9.0,96,3.54 +67284,95.0,10.0,9.0,10.0,10.0,10.0,9.0,37,1.42 +58749,98.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.83 +62979,92.0,9.0,9.0,10.0,9.0,9.0,9.0,48,1.79 +24107,99.0,10.0,10.0,10.0,10.0,10.0,9.0,15,0.55 +58562,98.0,10.0,10.0,10.0,10.0,9.0,10.0,20,0.83 +52389,94.0,10.0,10.0,10.0,10.0,10.0,9.0,14,0.51 +65239,98.0,10.0,10.0,10.0,10.0,10.0,10.0,48,1.79 +5733,97.0,10.0,9.0,10.0,10.0,9.0,9.0,32,2.66 +29431,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.04 +5052,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +61912,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.43 +53614,96.0,10.0,9.0,10.0,10.0,10.0,9.0,33,1.25 +44164,93.0,9.0,8.0,10.0,10.0,10.0,10.0,3,0.18 +33025,97.0,10.0,10.0,10.0,10.0,10.0,10.0,31,1.2 +59103,,,,,,,,0, +72275,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.19 +39840,98.0,10.0,10.0,10.0,10.0,10.0,10.0,44,1.61 +12212,96.0,10.0,10.0,10.0,10.0,9.0,9.0,15,0.58 +24691,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.08 +61691,95.0,10.0,9.0,10.0,10.0,10.0,9.0,90,3.3 +66853,99.0,10.0,10.0,10.0,10.0,10.0,10.0,38,1.44 +37114,99.0,10.0,10.0,10.0,10.0,10.0,10.0,39,1.46 +37141,88.0,10.0,9.0,10.0,9.0,10.0,9.0,12,0.46 +37660,99.0,10.0,10.0,10.0,10.0,10.0,9.0,20,0.75 +74040,,,,,,,,0, +68369,94.0,10.0,9.0,10.0,9.0,9.0,10.0,55,2.07 +9442,85.0,10.0,8.0,8.0,9.0,10.0,10.0,13,0.49 +63010,,,,,,,,1,0.04 +989,94.0,10.0,10.0,9.0,9.0,9.0,10.0,19,0.72 +17292,99.0,10.0,10.0,10.0,10.0,10.0,10.0,44,1.63 +71535,,,,,,,,0, +73107,20.0,8.0,8.0,8.0,6.0,6.0,4.0,1,0.04 +8672,93.0,10.0,10.0,10.0,10.0,10.0,9.0,24,0.88 +67925,,,,,,,,0, +71232,78.0,9.0,8.0,9.0,7.0,9.0,7.0,10,0.75 +26000,94.0,10.0,9.0,10.0,10.0,10.0,9.0,23,0.87 +72280,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +21011,96.0,10.0,9.0,10.0,10.0,10.0,10.0,211,7.94 +23685,,,,,,,,0, +74213,100.0,9.0,10.0,10.0,10.0,7.0,8.0,2,0.08 +67387,96.0,10.0,10.0,10.0,10.0,9.0,10.0,20,1.37 +7144,98.0,10.0,9.0,10.0,10.0,10.0,10.0,18,0.67 +19241,,,,,,,,0, +72117,99.0,10.0,10.0,10.0,10.0,10.0,10.0,20,0.74 +40257,99.0,10.0,10.0,10.0,10.0,10.0,9.0,14,0.51 +945,88.0,9.0,9.0,10.0,10.0,10.0,9.0,15,0.55 +71707,90.0,10.0,9.0,10.0,10.0,10.0,9.0,3,0.13 +55905,97.0,10.0,9.0,9.0,10.0,9.0,10.0,16,0.68 +71547,92.0,10.0,9.0,10.0,10.0,10.0,10.0,15,0.55 +16262,100.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.69 +76800,89.0,9.0,8.0,9.0,9.0,10.0,9.0,11,0.5 +11540,93.0,9.0,10.0,9.0,10.0,10.0,10.0,16,0.62 +39911,95.0,10.0,9.0,10.0,10.0,10.0,9.0,105,4.01 +17939,93.0,10.0,9.0,10.0,10.0,10.0,9.0,29,1.06 +64904,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,1.05 +7495,97.0,10.0,9.0,10.0,10.0,9.0,9.0,23,0.85 +44787,87.0,9.0,9.0,10.0,10.0,10.0,9.0,163,5.96 +64237,88.0,9.0,9.0,10.0,10.0,10.0,9.0,84,3.09 +636,97.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.65 +15765,95.0,10.0,10.0,10.0,10.0,9.0,9.0,43,1.65 +42555,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.14 +23730,90.0,9.0,9.0,9.0,9.0,9.0,9.0,14,0.52 +40259,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.13 +38922,87.0,9.0,9.0,9.0,9.0,10.0,9.0,24,0.95 +3942,92.0,10.0,10.0,9.0,10.0,9.0,10.0,10,0.42 +72542,87.0,8.0,7.0,9.0,7.0,9.0,8.0,5,0.18 +48297,95.0,10.0,10.0,10.0,10.0,10.0,10.0,22,0.82 +34309,90.0,9.0,9.0,10.0,10.0,10.0,9.0,107,3.98 +16778,,,,,,,,0, +11167,,,,,,,,0, +28015,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.23 +73834,99.0,10.0,10.0,10.0,10.0,9.0,10.0,103,3.77 +3137,90.0,10.0,10.0,9.0,9.0,9.0,9.0,12,0.44 +62124,85.0,10.0,8.0,10.0,9.0,9.0,9.0,44,1.63 +56549,60.0,2.0,4.0,10.0,10.0,6.0,6.0,2,0.07 +4319,95.0,10.0,10.0,10.0,10.0,10.0,10.0,31,1.14 +39777,97.0,10.0,10.0,10.0,10.0,10.0,10.0,79,2.89 +3143,99.0,10.0,10.0,10.0,10.0,10.0,10.0,53,2.04 +74581,80.0,7.0,6.0,9.0,9.0,9.0,7.0,5,0.26 +56681,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +6799,95.0,10.0,10.0,10.0,10.0,9.0,9.0,107,3.95 +47407,91.0,9.0,9.0,9.0,9.0,10.0,9.0,7,0.26 +25489,,,,,,,,0, +21360,95.0,10.0,9.0,10.0,10.0,9.0,10.0,13,0.49 +68653,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.5 +35529,96.0,10.0,9.0,10.0,10.0,9.0,10.0,43,1.71 +6644,86.0,9.0,9.0,10.0,10.0,10.0,9.0,143,5.3 +5187,94.0,9.0,9.0,10.0,10.0,10.0,10.0,22,0.86 +72340,,,,,,,,0, +42316,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.15 +6201,97.0,10.0,10.0,10.0,10.0,10.0,10.0,64,2.51 +71409,86.0,9.0,9.0,9.0,9.0,9.0,9.0,10,0.38 +73131,91.0,9.0,9.0,10.0,10.0,10.0,9.0,96,3.66 +52704,99.0,10.0,10.0,10.0,10.0,10.0,10.0,36,1.49 +62638,100.0,10.0,10.0,10.0,10.0,10.0,10.0,34,1.69 +53657,99.0,10.0,10.0,10.0,10.0,10.0,10.0,20,0.85 +53943,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.45 +9007,99.0,10.0,10.0,10.0,10.0,10.0,10.0,55,2.43 +51915,91.0,9.0,9.0,9.0,10.0,10.0,9.0,129,4.96 +69079,87.0,9.0,9.0,9.0,9.0,9.0,9.0,111,4.2 +47663,100.0,10.0,10.0,9.0,10.0,9.0,9.0,3,0.11 +33997,96.0,9.0,10.0,10.0,10.0,10.0,10.0,5,0.22 +21807,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +602,90.0,10.0,9.0,10.0,10.0,9.0,10.0,4,0.16 +44626,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.59 +76487,,,,,,,,0, +11235,87.0,10.0,9.0,10.0,9.0,9.0,10.0,6,0.22 +9350,,,,,,,,0, +22711,95.0,10.0,10.0,10.0,10.0,10.0,9.0,76,2.83 +33023,97.0,10.0,10.0,10.0,10.0,10.0,10.0,21,0.78 +60840,80.0,9.0,7.0,9.0,10.0,10.0,9.0,6,0.23 +33982,92.0,9.0,9.0,9.0,9.0,9.0,9.0,18,0.66 +9998,100.0,10.0,10.0,10.0,10.0,10.0,9.0,8,0.66 +8034,96.0,10.0,10.0,10.0,10.0,9.0,10.0,28,1.06 +57113,,,,,,,,0, +44266,98.0,10.0,10.0,10.0,10.0,10.0,10.0,145,5.34 +37271,88.0,9.0,9.0,10.0,10.0,10.0,10.0,12,6.32 +13500,80.0,9.0,8.0,10.0,10.0,9.0,9.0,3,0.17 +20298,92.0,9.0,9.0,9.0,10.0,9.0,9.0,5,0.21 +53396,,,,,,,,0, +35086,87.0,10.0,9.0,10.0,10.0,10.0,9.0,64,2.42 +69769,94.0,10.0,10.0,10.0,10.0,10.0,9.0,106,3.96 +17745,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.04 +10233,89.0,9.0,9.0,10.0,9.0,10.0,9.0,56,2.14 +54729,,,,,,,,1,0.04 +13553,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.19 +919,90.0,9.0,9.0,10.0,10.0,10.0,9.0,61,2.4 +18250,99.0,10.0,10.0,10.0,10.0,10.0,10.0,28,1.03 +64192,90.0,9.0,9.0,10.0,9.0,10.0,9.0,39,1.7 +28224,,,,,,,,0, +39020,98.0,10.0,10.0,10.0,10.0,9.0,9.0,15,0.57 +60450,95.0,10.0,9.0,10.0,10.0,10.0,10.0,18,0.67 +17464,,,,,,,,0, +76631,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.79 +10523,82.0,8.0,9.0,9.0,8.0,8.0,8.0,9,1.15 +32827,99.0,10.0,10.0,10.0,10.0,10.0,10.0,20,0.75 +70751,93.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.13 +15654,96.0,10.0,9.0,10.0,10.0,10.0,10.0,50,1.88 +4386,94.0,10.0,9.0,10.0,10.0,9.0,9.0,26,0.98 +63380,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.13 +9424,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +13625,,,,,,,,0, +32057,86.0,9.0,9.0,10.0,9.0,9.0,9.0,61,2.25 +58096,82.0,9.0,8.0,9.0,9.0,9.0,9.0,84,3.1 +26863,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.11 +65587,91.0,9.0,9.0,9.0,10.0,9.0,9.0,11,0.41 +71817,100.0,10.0,10.0,10.0,10.0,10.0,10.0,26,1.07 +44389,80.0,8.0,7.0,9.0,10.0,9.0,9.0,2,0.12 +13133,93.0,9.0,10.0,9.0,9.0,9.0,9.0,3,0.11 +68789,98.0,10.0,10.0,9.0,10.0,9.0,10.0,23,0.9 +21961,99.0,10.0,10.0,10.0,10.0,9.0,10.0,15,0.55 +74546,95.0,9.0,10.0,10.0,10.0,10.0,9.0,58,2.15 +19487,98.0,10.0,10.0,10.0,10.0,9.0,10.0,50,1.9 +24290,,,,,,,,0, +71528,,,,,,,,0, +38911,96.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.26 +14463,80.0,8.0,8.0,9.0,9.0,8.0,8.0,49,1.93 +539,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.21 +2625,,,,,,,,0, +48489,78.0,8.0,7.0,10.0,10.0,9.0,8.0,11,0.42 +38940,90.0,9.0,8.0,9.0,10.0,10.0,9.0,7,0.39 +58002,,,,,,,,0, +71085,87.0,9.0,7.0,10.0,10.0,9.0,9.0,24,0.95 +13539,88.0,9.0,8.0,9.0,9.0,10.0,9.0,47,1.77 +51935,,,,,,,,0, +67923,,,,,,,,0, +6960,60.0,10.0,6.0,10.0,10.0,6.0,6.0,2,0.1 +7868,90.0,10.0,9.0,10.0,9.0,9.0,9.0,4,0.15 +36673,92.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.3 +61910,94.0,10.0,10.0,10.0,10.0,10.0,9.0,13,0.5 +66635,89.0,10.0,9.0,8.0,9.0,9.0,9.0,7,0.26 +72096,98.0,10.0,10.0,9.0,10.0,10.0,10.0,10,0.54 +60362,90.0,9.0,9.0,9.0,9.0,10.0,9.0,73,3.1 +25849,86.0,10.0,9.0,10.0,10.0,10.0,9.0,15,0.56 +15025,99.0,10.0,10.0,10.0,10.0,10.0,10.0,37,1.42 +26660,100.0,10.0,7.0,10.0,10.0,9.0,10.0,4,0.17 +27302,98.0,10.0,10.0,10.0,10.0,10.0,10.0,26,1.0 +23597,99.0,10.0,10.0,10.0,10.0,10.0,10.0,20,0.73 +72046,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +25820,90.0,10.0,9.0,10.0,9.0,10.0,10.0,2,0.15 +25861,93.0,10.0,9.0,9.0,10.0,10.0,9.0,26,0.99 +52193,93.0,10.0,10.0,10.0,10.0,9.0,9.0,8,0.32 +47771,93.0,10.0,9.0,10.0,10.0,10.0,9.0,39,1.53 +30474,96.0,10.0,10.0,10.0,10.0,10.0,10.0,118,4.36 +24350,97.0,10.0,10.0,10.0,10.0,9.0,10.0,196,7.29 +69856,98.0,10.0,10.0,10.0,10.0,10.0,10.0,27,1.1 +34339,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.31 +58921,99.0,10.0,10.0,10.0,10.0,10.0,10.0,31,1.16 +5993,99.0,10.0,10.0,10.0,10.0,9.0,10.0,18,0.67 +41266,,,,,,,,0, +17298,96.0,10.0,10.0,10.0,10.0,10.0,10.0,117,4.33 +11306,97.0,10.0,10.0,10.0,10.0,10.0,10.0,60,2.25 +73204,,,,,,,,1,0.04 +67708,98.0,10.0,10.0,9.0,10.0,10.0,10.0,10,0.88 +30039,96.0,10.0,10.0,10.0,10.0,10.0,10.0,131,4.82 +69162,,,,,,,,1,0.79 +49925,,,,,,,,0, +43239,,,,,,,,0, +63723,80.0,10.0,4.0,10.0,10.0,10.0,8.0,1,0.04 +31238,84.0,8.0,8.0,10.0,9.0,10.0,10.0,5,0.18 +46395,96.0,10.0,9.0,10.0,10.0,10.0,10.0,131,4.86 +76192,91.0,10.0,10.0,10.0,10.0,9.0,9.0,14,0.52 +14288,89.0,9.0,9.0,9.0,10.0,10.0,9.0,189,7.01 +66166,96.0,10.0,10.0,10.0,10.0,9.0,10.0,54,2.6 +31978,,,,,,,,0, +4821,,,,,,,,0, +74513,100.0,10.0,10.0,10.0,10.0,9.0,9.0,2,0.11 +60812,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.11 +13484,90.0,9.0,10.0,10.0,10.0,10.0,9.0,18,0.68 +29877,94.0,10.0,10.0,10.0,10.0,10.0,9.0,157,5.78 +8074,93.0,10.0,10.0,10.0,9.0,9.0,10.0,74,2.76 +8752,92.0,10.0,8.0,10.0,10.0,9.0,9.0,74,2.74 +75522,94.0,9.0,9.0,10.0,10.0,10.0,9.0,39,1.54 +29482,98.0,10.0,10.0,10.0,10.0,10.0,10.0,25,1.28 +64945,95.0,10.0,10.0,10.0,10.0,9.0,10.0,18,0.76 +56705,99.0,10.0,10.0,10.0,10.0,10.0,10.0,30,1.12 +27246,90.0,10.0,8.0,10.0,10.0,10.0,9.0,6,1.71 +22082,99.0,10.0,10.0,10.0,10.0,10.0,10.0,41,1.76 +17156,93.0,10.0,9.0,10.0,10.0,9.0,10.0,7,0.27 +34859,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.26 +69089,94.0,10.0,10.0,10.0,10.0,10.0,9.0,19,0.75 +60135,95.0,10.0,9.0,10.0,10.0,9.0,9.0,12,0.44 +16055,,,,,,,,0, +19847,100.0,10.0,10.0,10.0,10.0,10.0,10.0,29,1.08 +69424,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.19 +54859,98.0,10.0,10.0,10.0,10.0,10.0,10.0,130,4.82 +62691,89.0,10.0,7.0,9.0,10.0,10.0,9.0,7,0.29 +62426,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +67356,91.0,9.0,9.0,9.0,9.0,10.0,9.0,7,0.3 +56299,,,,,,,,0, +57153,,,,,,,,0, +65985,100.0,10.0,10.0,10.0,10.0,9.0,10.0,31,1.17 +37526,93.0,9.0,9.0,9.0,9.0,10.0,9.0,11,0.41 +16369,,,,,,,,0, +39323,81.0,9.0,8.0,9.0,9.0,9.0,9.0,20,0.75 +20600,97.0,10.0,10.0,10.0,10.0,10.0,10.0,36,1.33 +10235,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.06 +72621,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.16 +61701,,,,,,,,0, +30430,99.0,10.0,10.0,9.0,10.0,9.0,9.0,44,1.74 +26972,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +74872,78.0,8.0,8.0,9.0,10.0,8.0,8.0,10,0.37 +52570,95.0,9.0,9.0,9.0,9.0,9.0,9.0,9,0.34 +61124,98.0,10.0,10.0,10.0,10.0,9.0,9.0,9,0.37 +4517,,,,,,,,0, +2159,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.08 +45969,97.0,10.0,10.0,10.0,10.0,9.0,10.0,49,1.82 +15305,99.0,10.0,10.0,10.0,10.0,9.0,10.0,137,5.23 +55238,,,,,,,,0, +62914,97.0,10.0,10.0,10.0,10.0,10.0,9.0,74,2.75 +62655,90.0,10.0,7.0,10.0,10.0,10.0,9.0,2,0.07 +44463,87.0,9.0,10.0,10.0,10.0,9.0,10.0,3,0.11 +9785,95.0,10.0,10.0,10.0,10.0,7.0,10.0,4,0.15 +17844,97.0,10.0,10.0,10.0,10.0,10.0,10.0,30,1.11 +11916,90.0,9.0,9.0,10.0,9.0,10.0,9.0,15,0.58 +63858,,,,,,,,0, +3561,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.08 +67549,,,,,,,,0, +33800,97.0,10.0,10.0,10.0,10.0,9.0,10.0,18,0.84 +35709,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +34121,,,,,,,,0, +35687,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.26 +58600,,,,,,,,1,0.04 +11282,,,,,,,,0, +20280,,,,,,,,1,0.05 +28761,96.0,10.0,10.0,10.0,9.0,9.0,10.0,14,0.57 +39603,91.0,9.0,9.0,10.0,9.0,9.0,9.0,25,0.94 +1835,90.0,10.0,10.0,10.0,10.0,10.0,8.0,2,0.08 +4406,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,1.01 +75565,86.0,9.0,9.0,9.0,10.0,10.0,8.0,103,3.88 +74535,,,,,,,,0, +3571,92.0,9.0,9.0,9.0,10.0,9.0,9.0,34,1.27 +18880,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.59 +39956,93.0,10.0,10.0,10.0,9.0,9.0,9.0,116,4.31 +9348,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.35 +6369,100.0,10.0,10.0,10.0,10.0,10.0,9.0,8,0.31 +54649,93.0,10.0,10.0,10.0,10.0,9.0,9.0,137,5.14 +59285,92.0,10.0,10.0,10.0,9.0,9.0,9.0,135,5.11 +12629,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.13 +2039,93.0,10.0,10.0,10.0,10.0,8.0,9.0,18,0.76 +68064,97.0,10.0,9.0,10.0,10.0,10.0,9.0,54,2.05 +30566,97.0,10.0,9.0,10.0,10.0,10.0,10.0,30,1.11 +39973,,,,,,,,1,0.04 +14696,100.0,10.0,9.0,9.0,9.0,10.0,10.0,3,0.16 +49451,,,,,,,,1,0.04 +53759,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.15 +14662,97.0,10.0,10.0,10.0,10.0,10.0,10.0,24,0.9 +73675,,,,,,,,0, +54015,96.0,9.0,9.0,9.0,10.0,10.0,9.0,5,0.19 +17252,100.0,10.0,10.0,7.0,9.0,10.0,10.0,2,0.22 +71510,,,,,,,,0, +76743,,,,,,,,0, +36037,,,,,,,,0, +7864,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.33 +55460,96.0,10.0,9.0,10.0,10.0,10.0,10.0,173,6.38 +55464,97.0,10.0,10.0,10.0,10.0,9.0,10.0,29,1.21 +711,94.0,9.0,9.0,9.0,9.0,10.0,10.0,7,0.28 +46388,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.21 +27343,86.0,9.0,9.0,9.0,10.0,10.0,9.0,85,3.17 +31199,91.0,9.0,8.0,9.0,9.0,9.0,9.0,26,0.97 +57188,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.13 +62736,87.0,9.0,9.0,10.0,10.0,10.0,9.0,91,3.53 +33437,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.1 +20442,,,,,,,,0, +43896,,,,,,,,0, +39893,100.0,8.0,8.0,10.0,10.0,8.0,10.0,1,0.04 +44385,98.0,10.0,10.0,10.0,10.0,10.0,10.0,42,1.61 +3476,98.0,10.0,10.0,10.0,10.0,10.0,10.0,143,5.45 +28088,84.0,9.0,8.0,9.0,9.0,10.0,8.0,9,0.34 +69382,96.0,10.0,10.0,10.0,10.0,9.0,10.0,19,0.71 +3196,98.0,10.0,10.0,10.0,10.0,10.0,10.0,27,1.0 +55171,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +30694,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +26305,93.0,9.0,9.0,10.0,10.0,10.0,9.0,20,0.74 +13074,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.43 +41753,93.0,9.0,9.0,10.0,9.0,9.0,9.0,40,1.53 +21407,100.0,8.0,8.0,10.0,10.0,10.0,8.0,1,0.04 +42572,88.0,9.0,9.0,10.0,9.0,10.0,9.0,53,2.0 +27416,90.0,10.0,9.0,10.0,9.0,10.0,9.0,47,1.91 +7423,95.0,9.0,10.0,9.0,10.0,10.0,9.0,13,0.49 +46,89.0,10.0,9.0,9.0,9.0,10.0,9.0,35,1.47 +40017,73.0,8.0,9.0,10.0,10.0,8.0,8.0,5,0.19 +35162,,,,,,,,0, +49787,,,,,,,,0, +3805,96.0,9.0,9.0,10.0,10.0,10.0,10.0,10,0.38 +63393,100.0,10.0,10.0,10.0,10.0,10.0,10.0,21,0.96 +60979,93.0,10.0,9.0,10.0,10.0,9.0,9.0,116,4.33 +35943,93.0,10.0,9.0,10.0,10.0,9.0,10.0,9,0.38 +9647,,,,,,,,0, +49721,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.16 +48170,99.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.65 +44810,93.0,9.0,9.0,9.0,9.0,9.0,9.0,3,0.11 +76908,98.0,10.0,10.0,10.0,10.0,9.0,10.0,93,3.86 +44993,91.0,9.0,9.0,9.0,9.0,9.0,9.0,7,0.27 +26570,100.0,9.0,9.0,9.0,9.0,9.0,9.0,3,0.12 +28311,95.0,10.0,10.0,10.0,10.0,9.0,10.0,120,4.43 +35994,92.0,10.0,9.0,10.0,10.0,10.0,9.0,233,8.69 +57554,84.0,9.0,7.0,10.0,9.0,9.0,9.0,18,0.75 +48004,97.0,10.0,10.0,10.0,10.0,10.0,10.0,137,5.11 +62666,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.1 +15329,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.07 +36097,73.0,7.0,7.0,7.0,7.0,7.0,7.0,3,0.12 +53589,94.0,10.0,9.0,9.0,10.0,10.0,9.0,8,0.3 +12823,93.0,9.0,10.0,10.0,10.0,10.0,9.0,33,1.35 +40914,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.04 +72793,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.08 +5702,88.0,9.0,9.0,9.0,9.0,9.0,9.0,39,1.52 +61060,99.0,10.0,10.0,10.0,10.0,10.0,10.0,22,0.87 +63123,96.0,10.0,10.0,10.0,10.0,9.0,10.0,39,1.44 +43340,98.0,10.0,10.0,10.0,10.0,9.0,10.0,9,0.35 +29488,90.0,9.0,9.0,10.0,10.0,10.0,9.0,43,1.62 +1603,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.15 +6579,97.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.56 +50661,87.0,10.0,9.0,9.0,10.0,9.0,9.0,4,0.15 +33688,88.0,9.0,9.0,9.0,9.0,9.0,9.0,45,1.67 +55674,,,,,,,,1,0.04 +38917,92.0,9.0,9.0,10.0,10.0,10.0,10.0,21,0.79 +21990,95.0,10.0,10.0,10.0,10.0,9.0,10.0,56,2.11 +67539,60.0,6.0,6.0,,8.0,,,1,0.04 +11541,95.0,10.0,10.0,10.0,10.0,10.0,9.0,57,2.16 +47890,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.16 +19396,90.0,9.0,9.0,10.0,10.0,9.0,9.0,8,0.3 +63585,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.28 +40884,,,,,,,,0, +18266,82.0,8.0,7.0,9.0,8.0,9.0,8.0,10,0.42 +5825,60.0,6.0,6.0,10.0,8.0,8.0,6.0,3,0.14 +35748,96.0,10.0,10.0,10.0,10.0,10.0,10.0,106,4.03 +74360,100.0,10.0,9.0,10.0,10.0,10.0,9.0,3,0.22 +71617,89.0,9.0,9.0,9.0,9.0,9.0,9.0,67,2.57 +16100,97.0,10.0,10.0,10.0,10.0,10.0,9.0,29,1.11 +10281,80.0,8.0,10.0,10.0,10.0,8.0,8.0,1,0.04 +37958,80.0,9.0,10.0,8.0,9.0,9.0,9.0,4,0.15 +63306,,,,,,,,0, +67984,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +47210,100.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.1 +8843,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.05 +24349,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.13 +45772,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.49 +53862,,,,,,,,0, +33229,99.0,10.0,9.0,10.0,10.0,10.0,10.0,38,1.47 +67451,,,,,,,,0, +7033,,,,,,,,0, +16861,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.11 +35810,,,,,,,,1,0.09 +68166,,,,,,,,0, +49161,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.08 +68577,,,,,,,,1,0.04 +7079,93.0,9.0,9.0,10.0,10.0,9.0,10.0,18,0.72 +73714,98.0,10.0,10.0,10.0,10.0,10.0,10.0,83,3.39 +53219,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +50790,93.0,10.0,10.0,10.0,10.0,8.0,9.0,6,0.23 +4870,,,,,,,,0, +69026,94.0,10.0,10.0,10.0,10.0,9.0,10.0,19,0.73 +65019,94.0,10.0,9.0,10.0,10.0,9.0,10.0,122,4.55 +10929,,,,,,,,0, +27646,,,,,,,,0, +68449,97.0,10.0,10.0,10.0,10.0,9.0,10.0,32,1.22 +70011,97.0,10.0,10.0,10.0,10.0,9.0,10.0,24,0.93 +72475,95.0,10.0,9.0,10.0,10.0,10.0,9.0,11,0.42 +76182,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.11 +71843,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.19 +12098,98.0,10.0,10.0,10.0,10.0,9.0,10.0,10,0.37 +41287,100.0,10.0,10.0,10.0,10.0,9.0,10.0,10,0.37 +23843,,,,,,,,1,0.04 +6305,,,,,,,,0, +66013,96.0,10.0,10.0,10.0,10.0,10.0,9.0,36,1.37 +36499,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.12 +40021,90.0,9.0,9.0,10.0,9.0,9.0,9.0,2,0.07 +65621,89.0,9.0,9.0,10.0,9.0,9.0,9.0,46,1.75 +49407,95.0,10.0,10.0,10.0,10.0,10.0,10.0,33,1.23 +21522,70.0,8.0,6.0,10.0,10.0,10.0,6.0,2,0.1 +29117,,,,,,,,0, +60899,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.15 +16731,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.21 +27085,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.48 +26031,97.0,10.0,10.0,10.0,10.0,10.0,10.0,58,2.18 +75524,,,,,,,,0, +61383,98.0,10.0,10.0,10.0,10.0,9.0,10.0,9,0.37 +48589,,,,,,,,0, +28496,86.0,9.0,10.0,9.0,9.0,9.0,9.0,7,0.26 +42523,93.0,9.0,9.0,9.0,9.0,10.0,9.0,5,0.19 +1050,,,,,,,,0, +31120,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.22 +40212,96.0,10.0,9.0,10.0,10.0,9.0,10.0,52,2.21 +4925,,,,,,,,0, +31292,98.0,10.0,9.0,10.0,10.0,9.0,10.0,44,1.79 +63008,92.0,9.0,9.0,10.0,10.0,10.0,9.0,20,0.75 +13303,100.0,10.0,10.0,10.0,10.0,10.0,10.0,22,0.84 +3136,95.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.4 +47701,85.0,10.0,9.0,10.0,10.0,10.0,9.0,5,0.19 +27850,100.0,10.0,10.0,10.0,10.0,9.0,10.0,11,0.43 +29852,60.0,4.0,6.0,8.0,8.0,6.0,4.0,1,0.37 +33004,,,,,,,,1,0.04 +58193,98.0,10.0,9.0,10.0,10.0,10.0,10.0,110,4.16 +9951,100.0,10.0,10.0,10.0,10.0,10.0,10.0,20,0.77 +45399,93.0,10.0,9.0,10.0,10.0,10.0,10.0,12,0.47 +22839,98.0,10.0,9.0,10.0,10.0,10.0,10.0,9,1.18 +4164,97.0,10.0,10.0,10.0,10.0,9.0,9.0,19,0.71 +50174,93.0,10.0,8.0,10.0,10.0,9.0,10.0,6,0.23 +62383,97.0,10.0,10.0,10.0,10.0,10.0,10.0,52,1.97 +50527,83.0,9.0,9.0,8.0,9.0,8.0,8.0,16,0.59 +4615,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.11 +34537,96.0,10.0,10.0,10.0,10.0,9.0,9.0,12,0.46 +72074,91.0,9.0,8.0,10.0,10.0,10.0,9.0,19,0.72 +46518,,,,,,,,0, +3752,100.0,10.0,10.0,8.0,10.0,10.0,10.0,1,0.04 +49712,,,,,,,,0, +29277,97.0,10.0,10.0,10.0,10.0,10.0,9.0,7,0.84 +50577,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +10237,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.75 +44746,86.0,9.0,9.0,10.0,10.0,10.0,9.0,7,0.26 +58183,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.17 +48182,98.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.53 +4273,98.0,10.0,10.0,10.0,10.0,9.0,10.0,25,0.94 +2574,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.11 +10274,87.0,9.0,8.0,9.0,10.0,9.0,9.0,66,2.53 +61243,96.0,10.0,9.0,10.0,10.0,9.0,9.0,25,0.94 +61499,95.0,9.0,10.0,9.0,9.0,10.0,10.0,16,1.22 +18508,99.0,10.0,10.0,10.0,10.0,10.0,10.0,39,1.47 +4132,89.0,9.0,10.0,9.0,9.0,10.0,9.0,35,1.51 +30599,96.0,9.0,10.0,9.0,10.0,10.0,9.0,9,0.35 +65535,96.0,10.0,9.0,10.0,10.0,10.0,10.0,49,1.83 +40984,,,,,,,,1,0.04 +46805,95.0,10.0,10.0,10.0,10.0,9.0,9.0,12,0.47 +7326,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.5 +9230,99.0,10.0,10.0,10.0,10.0,10.0,10.0,36,1.38 +8214,100.0,10.0,10.0,10.0,10.0,10.0,10.0,22,0.82 +11067,94.0,9.0,9.0,10.0,10.0,10.0,9.0,36,1.37 +3048,,,,,,,,1,0.09 +50955,20.0,2.0,,,,,,1,0.04 +14997,98.0,10.0,10.0,10.0,10.0,9.0,10.0,52,2.37 +67026,,,,,,,,0, +69725,93.0,9.0,10.0,10.0,9.0,10.0,9.0,74,2.79 +75420,96.0,10.0,9.0,10.0,10.0,9.0,9.0,47,1.77 +49229,100.0,10.0,10.0,10.0,10.0,10.0,10.0,45,1.88 +22469,99.0,10.0,10.0,10.0,10.0,10.0,10.0,53,1.99 +7544,80.0,7.0,10.0,9.0,7.0,9.0,7.0,4,0.15 +32708,98.0,10.0,9.0,10.0,10.0,10.0,10.0,9,0.34 +59397,,,,,,,,0, +46313,98.0,10.0,10.0,10.0,10.0,9.0,10.0,20,0.8 +20659,89.0,9.0,9.0,10.0,10.0,10.0,9.0,25,1.02 +22581,90.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.08 +52366,96.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.19 +41028,100.0,10.0,10.0,10.0,9.0,10.0,10.0,3,0.11 +7103,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.19 +57103,,,,,,,,0, +41854,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.33 +47862,93.0,10.0,9.0,10.0,10.0,8.0,9.0,11,0.51 +50079,74.0,8.0,8.0,7.0,8.0,10.0,7.0,15,0.57 +24498,,,,,,,,0, +40037,,,,,,,,0, +36095,,,,,,,,0, +42540,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.11 +31571,100.0,10.0,10.0,10.0,10.0,9.0,9.0,4,0.33 +51714,98.0,10.0,10.0,10.0,10.0,10.0,10.0,95,3.58 +13910,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.2 +13683,100.0,10.0,10.0,10.0,10.0,10.0,10.0,19,0.72 +7242,92.0,10.0,9.0,10.0,10.0,10.0,9.0,46,1.75 +72761,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +627,97.0,10.0,10.0,10.0,10.0,10.0,10.0,21,0.78 +26135,,,,,,,,0, +57120,94.0,9.0,9.0,10.0,10.0,10.0,9.0,7,0.91 +21557,97.0,10.0,10.0,10.0,10.0,9.0,10.0,81,5.31 +17474,92.0,10.0,9.0,10.0,10.0,10.0,9.0,21,0.78 +3306,97.0,10.0,10.0,10.0,10.0,10.0,10.0,90,3.58 +55058,,,,,,,,0, +64086,77.0,7.0,8.0,8.0,9.0,10.0,8.0,7,0.3 +75579,95.0,10.0,9.0,10.0,10.0,10.0,10.0,15,0.58 +72521,,,,,,,,0, +68696,90.0,9.0,8.0,10.0,10.0,10.0,9.0,38,1.41 +2492,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.04 +29718,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.15 +76609,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.22 +62039,,,,,,,,0, +33648,80.0,8.0,8.0,10.0,9.0,7.0,8.0,4,0.15 +53636,,,,,,,,0, +42734,93.0,10.0,9.0,10.0,10.0,10.0,10.0,17,0.67 +37267,86.0,9.0,8.0,9.0,10.0,10.0,9.0,42,1.58 +34992,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +37363,,,,,,,,0, +16763,98.0,10.0,10.0,10.0,10.0,10.0,10.0,26,2.15 +16660,,,,,,,,0, +62604,98.0,10.0,10.0,10.0,10.0,10.0,10.0,60,2.24 +36668,89.0,10.0,9.0,9.0,9.0,9.0,9.0,11,0.42 +52987,95.0,10.0,10.0,10.0,10.0,9.0,10.0,45,1.68 +68846,94.0,9.0,10.0,9.0,10.0,8.0,9.0,82,3.16 +23664,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.38 +34986,80.0,9.0,8.0,9.0,9.0,9.0,8.0,18,0.7 +71260,90.0,9.0,9.0,10.0,10.0,10.0,9.0,33,1.24 +43846,95.0,10.0,9.0,10.0,10.0,10.0,10.0,42,1.58 +16347,89.0,9.0,9.0,10.0,9.0,9.0,9.0,32,1.2 +44930,95.0,10.0,9.0,10.0,9.0,10.0,10.0,38,1.74 +68123,88.0,9.0,9.0,10.0,9.0,8.0,9.0,56,2.18 +33037,,,,,,,,1,0.04 +70544,95.0,10.0,9.0,10.0,10.0,9.0,10.0,24,0.96 +12393,97.0,10.0,9.0,9.0,10.0,10.0,9.0,7,0.26 +53616,91.0,9.0,10.0,10.0,10.0,10.0,9.0,18,0.7 +21460,99.0,10.0,10.0,10.0,10.0,10.0,10.0,41,1.66 +62722,93.0,10.0,9.0,9.0,9.0,10.0,9.0,8,0.3 +63940,100.0,10.0,10.0,10.0,10.0,10.0,10.0,24,0.94 +30454,40.0,5.0,5.0,7.0,7.0,6.0,4.0,3,0.34 +24771,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.29 +36926,95.0,10.0,10.0,10.0,10.0,10.0,10.0,130,6.43 +56123,92.0,9.0,9.0,10.0,10.0,9.0,9.0,39,1.55 +50789,93.0,10.0,10.0,10.0,10.0,10.0,9.0,18,0.69 +51453,,,,,,,,0, +9161,98.0,10.0,10.0,10.0,10.0,9.0,9.0,25,0.98 +73115,88.0,9.0,9.0,10.0,10.0,8.0,9.0,33,1.26 +13175,,,,,,,,0, +55039,98.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.6 +62059,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.51 +23142,91.0,9.0,9.0,10.0,9.0,10.0,9.0,13,1.7 +2455,97.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.38 +24367,,,,,,,,0, +75791,95.0,10.0,10.0,10.0,10.0,9.0,9.0,4,0.16 +12507,99.0,10.0,10.0,10.0,10.0,9.0,10.0,30,1.17 +7098,99.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.6 +24099,100.0,10.0,10.0,10.0,10.0,10.0,10.0,40,1.52 +47244,91.0,10.0,9.0,9.0,9.0,10.0,9.0,30,1.14 +61368,,,,,,,,0, +45463,94.0,10.0,9.0,10.0,10.0,10.0,9.0,95,3.54 +36469,83.0,9.0,9.0,9.0,9.0,10.0,8.0,6,0.23 +69954,96.0,10.0,10.0,10.0,10.0,10.0,10.0,62,2.55 +28771,60.0,8.0,4.0,10.0,8.0,8.0,6.0,1,0.04 +25564,90.0,10.0,10.0,9.0,9.0,9.0,10.0,2,0.08 +74312,100.0,10.0,9.0,10.0,10.0,10.0,10.0,15,1.2 +47241,98.0,10.0,10.0,10.0,10.0,10.0,10.0,65,2.45 +489,89.0,10.0,9.0,10.0,10.0,10.0,9.0,26,0.99 +62299,95.0,10.0,9.0,10.0,10.0,10.0,10.0,25,1.02 +3689,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.08 +42127,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.12 +14828,,,,,,,,0, +20932,100.0,10.0,9.0,10.0,10.0,10.0,9.0,2,0.42 +57022,100.0,10.0,10.0,10.0,10.0,10.0,10.0,32,1.2 +29972,,,,,,,,0, +36639,96.0,10.0,9.0,10.0,10.0,10.0,10.0,37,1.4 +55697,96.0,10.0,9.0,10.0,10.0,10.0,10.0,9,0.34 +6080,,,,,,,,0, +31299,90.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.12 +45630,88.0,9.0,9.0,10.0,10.0,10.0,9.0,5,0.19 +15822,93.0,9.0,9.0,10.0,10.0,9.0,9.0,104,3.88 +25081,92.0,10.0,9.0,10.0,10.0,10.0,9.0,32,1.26 +30270,,,,,,,,0, +30775,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.37 +5335,100.0,10.0,8.0,8.0,10.0,10.0,10.0,1,0.04 +65798,98.0,10.0,10.0,10.0,10.0,10.0,10.0,69,2.59 +25646,98.0,10.0,10.0,10.0,10.0,10.0,10.0,73,2.9 +35988,95.0,10.0,10.0,10.0,10.0,9.0,10.0,41,1.55 +27785,64.0,7.0,7.0,8.0,7.0,8.0,7.0,5,0.19 +70847,93.0,9.0,9.0,10.0,10.0,9.0,9.0,83,3.09 +75701,90.0,10.0,9.0,10.0,9.0,8.0,9.0,5,0.26 +64868,,,,,,,,3,0.11 +40409,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.55 +18509,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.3 +52973,,,,,,,,0, +66842,87.0,9.0,9.0,9.0,9.0,9.0,9.0,83,3.1 +36626,99.0,10.0,10.0,10.0,10.0,10.0,9.0,22,1.04 +33629,100.0,10.0,10.0,10.0,10.0,9.0,10.0,31,1.23 +33525,95.0,10.0,9.0,10.0,10.0,10.0,10.0,36,1.95 +27937,89.0,9.0,9.0,9.0,9.0,10.0,9.0,18,0.68 +39549,98.0,10.0,10.0,10.0,10.0,10.0,10.0,25,1.02 +56405,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.11 +60949,100.0,10.0,10.0,10.0,10.0,10.0,10.0,103,3.84 +50980,97.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.36 +42637,,,,,,,,0, +66120,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.04 +26113,86.0,8.0,9.0,9.0,9.0,8.0,9.0,11,0.41 +52481,81.0,9.0,8.0,10.0,9.0,9.0,8.0,128,4.82 +55314,76.0,8.0,8.0,9.0,9.0,9.0,8.0,130,4.86 +53431,83.0,9.0,8.0,9.0,9.0,9.0,9.0,137,5.11 +58029,,,,,,,,0, +27831,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.25 +23398,,,,,,,,0, +69072,,,,,,,,0, +58474,70.0,8.0,4.0,8.0,9.0,6.0,7.0,2,0.09 +22633,,,,,,,,0, +34153,97.0,10.0,10.0,10.0,10.0,10.0,10.0,23,0.88 +38421,,,,,,,,0, +1811,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +14871,97.0,10.0,10.0,10.0,10.0,10.0,10.0,40,1.7 +1168,,,,,,,,0, +31472,100.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.19 +1118,91.0,9.0,9.0,10.0,10.0,10.0,9.0,33,1.24 +42536,96.0,10.0,10.0,10.0,10.0,9.0,10.0,26,1.02 +50654,100.0,10.0,10.0,8.0,10.0,10.0,10.0,1,0.57 +39560,,,,,,,,0, +69190,,,,,,,,0, +33346,80.0,10.0,6.0,10.0,10.0,8.0,8.0,2,0.37 +74639,97.0,10.0,9.0,10.0,10.0,9.0,10.0,32,3.64 +30634,98.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.64 +61172,97.0,10.0,10.0,10.0,10.0,10.0,10.0,66,2.51 +17632,80.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.08 +57284,99.0,10.0,10.0,10.0,10.0,10.0,10.0,92,3.48 +31442,93.0,10.0,10.0,10.0,10.0,9.0,9.0,125,4.68 +13649,98.0,10.0,10.0,9.0,9.0,9.0,9.0,8,0.31 +53664,90.0,10.0,10.0,10.0,10.0,10.0,9.0,8,0.48 +6725,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.09 +4717,96.0,9.0,8.0,10.0,9.0,10.0,9.0,5,0.22 +1791,92.0,10.0,9.0,10.0,10.0,10.0,9.0,36,1.35 +9848,100.0,10.0,10.0,10.0,10.0,10.0,10.0,20,0.79 +29598,,,,,,,,0, +71595,94.0,10.0,9.0,10.0,10.0,10.0,9.0,17,0.65 +9695,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.25 +56952,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.52 +22294,,,,,,,,0, +2364,86.0,9.0,8.0,9.0,9.0,10.0,9.0,22,0.84 +70453,97.0,10.0,10.0,10.0,10.0,10.0,10.0,45,1.72 +58802,96.0,10.0,9.0,10.0,10.0,10.0,9.0,10,0.4 +70522,96.0,9.0,9.0,10.0,10.0,10.0,9.0,41,1.6 +5394,97.0,10.0,10.0,10.0,10.0,10.0,10.0,45,1.71 +6215,89.0,9.0,8.0,10.0,10.0,10.0,9.0,9,0.55 +38383,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.62 +13932,97.0,10.0,10.0,10.0,10.0,10.0,10.0,22,1.09 +369,99.0,10.0,10.0,10.0,10.0,10.0,10.0,22,0.86 +65245,70.0,7.0,7.0,10.0,9.0,10.0,9.0,4,0.15 +15978,99.0,10.0,10.0,10.0,10.0,10.0,10.0,21,0.81 +35079,88.0,9.0,8.0,10.0,10.0,9.0,9.0,37,1.39 +28229,100.0,10.0,10.0,10.0,10.0,10.0,10.0,43,1.63 +19001,95.0,10.0,10.0,10.0,10.0,8.0,10.0,12,0.46 +40729,50.0,7.0,7.0,7.0,6.0,10.0,6.0,3,0.11 +52517,84.0,8.0,9.0,9.0,9.0,8.0,8.0,5,0.21 +47428,90.0,9.0,10.0,9.0,10.0,10.0,9.0,2,1.11 +62865,99.0,10.0,10.0,10.0,10.0,10.0,10.0,52,2.07 +49797,98.0,10.0,9.0,10.0,10.0,10.0,10.0,13,0.65 +23395,92.0,10.0,10.0,9.0,9.0,10.0,9.0,49,1.84 +22177,92.0,10.0,9.0,10.0,10.0,10.0,9.0,5,0.29 +3809,89.0,9.0,9.0,10.0,10.0,9.0,9.0,18,0.72 +16789,,,,,,,,0, +57259,98.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.71 +71808,97.0,10.0,10.0,10.0,10.0,10.0,10.0,27,1.02 +71095,98.0,10.0,10.0,10.0,10.0,9.0,10.0,46,1.76 +958,96.0,10.0,10.0,10.0,10.0,10.0,9.0,28,1.05 +43433,98.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.83 +1753,80.0,10.0,8.0,10.0,10.0,10.0,9.0,4,0.16 +26782,96.0,10.0,10.0,10.0,10.0,9.0,10.0,52,1.98 +2475,100.0,10.0,10.0,10.0,10.0,10.0,10.0,28,1.14 +24808,95.0,10.0,9.0,10.0,10.0,10.0,10.0,21,0.8 +33734,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.12 +48074,,,,,,,,0, +66748,100.0,10.0,10.0,10.0,10.0,10.0,9.0,45,1.71 +70851,100.0,10.0,10.0,10.0,10.0,10.0,10.0,28,1.14 +1689,100.0,10.0,10.0,10.0,10.0,10.0,10.0,47,1.77 +49336,,,,,,,,0, +4764,,,,,,,,0, +35026,,,,,,,,0, +26294,,,,,,,,0, +43731,,,,,,,,0, +45978,,,,,,,,1,0.04 +55771,,,,,,,,1,0.05 +51829,94.0,10.0,9.0,10.0,10.0,9.0,9.0,38,1.44 +24148,90.0,10.0,9.0,9.0,10.0,9.0,9.0,2,0.11 +26842,97.0,10.0,10.0,10.0,10.0,10.0,9.0,18,0.69 +45804,,,,,,,,0, +74669,94.0,9.0,9.0,10.0,10.0,10.0,9.0,14,0.53 +3608,,,,,,,,0, +27874,100.0,10.0,,10.0,,10.0,10.0,1,0.04 +44142,99.0,10.0,10.0,10.0,10.0,10.0,10.0,37,1.41 +41978,93.0,10.0,10.0,10.0,9.0,9.0,9.0,14,0.53 +36217,95.0,9.0,10.0,10.0,10.0,9.0,10.0,27,1.06 +23384,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.27 +18506,95.0,10.0,9.0,10.0,10.0,10.0,10.0,41,1.54 +70211,60.0,8.0,6.0,10.0,10.0,10.0,10.0,1,0.04 +56088,,,,,,,,0, +29584,96.0,10.0,9.0,10.0,10.0,10.0,10.0,41,1.6 +533,,,,,,,,2,0.13 +61783,74.0,7.0,9.0,9.0,9.0,10.0,8.0,7,0.34 +34575,97.0,10.0,9.0,10.0,10.0,10.0,10.0,58,2.22 +21644,98.0,10.0,10.0,10.0,10.0,9.0,10.0,12,0.49 +48280,96.0,10.0,9.0,10.0,10.0,10.0,10.0,10,0.58 +52009,69.0,9.0,8.0,10.0,10.0,10.0,8.0,9,0.52 +7332,89.0,9.0,9.0,9.0,9.0,10.0,9.0,14,0.55 +4344,97.0,10.0,10.0,10.0,10.0,10.0,9.0,14,0.82 +65510,96.0,10.0,10.0,10.0,10.0,10.0,9.0,16,0.64 +34766,88.0,9.0,10.0,10.0,10.0,10.0,8.0,5,0.29 +16461,86.0,9.0,9.0,9.0,9.0,10.0,8.0,16,0.93 +54558,95.0,10.0,9.0,10.0,10.0,9.0,10.0,17,0.64 +67165,93.0,10.0,10.0,9.0,10.0,10.0,9.0,8,0.47 +50542,93.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.18 +10903,88.0,10.0,10.0,10.0,10.0,10.0,9.0,8,0.46 +20050,80.0,10.0,6.0,10.0,10.0,10.0,10.0,1,0.07 +7339,94.0,10.0,9.0,10.0,10.0,10.0,10.0,13,0.76 +35410,91.0,10.0,10.0,10.0,10.0,9.0,9.0,9,0.35 +42341,92.0,10.0,8.0,10.0,10.0,10.0,9.0,5,0.26 +32173,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +14529,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.23 +45816,,,,,,,,0, +76680,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.12 +70288,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.16 +24123,100.0,10.0,10.0,10.0,10.0,8.0,10.0,3,0.43 +15455,,,,,,,,0, +55418,88.0,10.0,10.0,10.0,10.0,10.0,8.0,5,0.29 +66963,,,,,,,,0, +8205,97.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.35 +22183,96.0,10.0,10.0,10.0,10.0,9.0,9.0,38,1.44 +32901,91.0,9.0,10.0,10.0,10.0,10.0,9.0,7,0.41 +30406,100.0,10.0,10.0,10.0,10.0,10.0,10.0,44,4.41 +18432,98.0,10.0,9.0,10.0,10.0,10.0,10.0,11,0.64 +16274,100.0,10.0,10.0,10.0,10.0,10.0,10.0,47,1.81 +67540,95.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.19 +76594,96.0,10.0,10.0,10.0,10.0,10.0,9.0,15,0.87 +20577,90.0,8.0,10.0,10.0,10.0,9.0,10.0,4,0.15 +693,,,,,,,,0, +16151,98.0,10.0,10.0,10.0,10.0,8.0,9.0,13,0.49 +57335,95.0,10.0,9.0,10.0,10.0,10.0,10.0,17,0.65 +62073,98.0,10.0,10.0,9.0,10.0,10.0,10.0,8,0.46 +53241,93.0,9.0,9.0,10.0,9.0,10.0,9.0,6,0.35 +75884,90.0,10.0,9.0,10.0,10.0,9.0,10.0,4,0.25 +30131,88.0,10.0,9.0,9.0,10.0,10.0,9.0,8,0.48 +73455,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.15 +73673,,,,,,,,0, +70272,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.18 +37438,93.0,10.0,9.0,10.0,10.0,10.0,9.0,9,0.55 +65573,91.0,9.0,9.0,10.0,10.0,10.0,9.0,7,0.42 +35140,98.0,10.0,10.0,10.0,10.0,9.0,10.0,40,1.53 +69582,85.0,9.0,9.0,9.0,9.0,9.0,9.0,66,2.48 +69012,94.0,9.0,9.0,10.0,10.0,9.0,9.0,21,0.8 +39002,92.0,10.0,10.0,10.0,10.0,9.0,9.0,80,3.02 +11632,97.0,9.0,9.0,10.0,10.0,8.0,10.0,16,0.82 +50084,92.0,9.0,8.0,10.0,10.0,10.0,9.0,36,1.66 +72460,91.0,9.0,8.0,10.0,10.0,9.0,9.0,83,3.21 +21438,93.0,10.0,9.0,10.0,10.0,10.0,10.0,10,0.39 +27026,91.0,9.0,8.0,9.0,9.0,10.0,9.0,66,2.53 +26757,100.0,9.0,9.0,9.0,10.0,9.0,10.0,3,0.12 +7918,,,,,,,,0, +36268,90.0,9.0,9.0,10.0,10.0,10.0,9.0,65,2.51 +41896,98.0,10.0,10.0,10.0,10.0,9.0,10.0,88,3.76 +72561,95.0,10.0,10.0,10.0,10.0,9.0,10.0,28,1.3 +44377,,,,,,,,0, +13651,93.0,10.0,9.0,10.0,10.0,10.0,9.0,12,0.46 +63571,100.0,10.0,9.0,9.0,10.0,10.0,10.0,5,0.2 +76508,98.0,10.0,10.0,10.0,10.0,9.0,10.0,12,0.46 +61212,,,,,,,,0, +7191,,,,,,,,0, +17151,96.0,10.0,10.0,10.0,10.0,10.0,10.0,20,0.78 +59772,93.0,9.0,9.0,9.0,9.0,10.0,9.0,3,0.23 +36500,,,,,,,,1,0.18 +67695,91.0,9.0,9.0,9.0,10.0,10.0,9.0,7,1.02 +3743,93.0,10.0,10.0,10.0,9.0,10.0,9.0,33,1.28 +27366,96.0,10.0,10.0,10.0,10.0,9.0,10.0,58,2.19 +51206,85.0,10.0,8.0,9.0,9.0,10.0,9.0,11,0.43 +51327,93.0,9.0,9.0,9.0,9.0,9.0,9.0,6,0.24 +1110,98.0,10.0,10.0,10.0,10.0,10.0,10.0,129,4.92 +54701,90.0,9.0,10.0,10.0,10.0,9.0,9.0,2,0.08 +21448,,,,,,,,0, +16743,96.0,10.0,9.0,10.0,10.0,10.0,10.0,79,4.85 +30601,77.0,8.0,8.0,7.0,7.0,9.0,9.0,12,0.46 +58830,98.0,10.0,9.0,10.0,10.0,9.0,9.0,19,0.73 +13718,93.0,10.0,9.0,10.0,10.0,10.0,9.0,35,1.33 +43242,95.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.65 +469,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.49 +74299,97.0,10.0,9.0,10.0,10.0,10.0,9.0,44,1.82 +29792,98.0,10.0,10.0,10.0,10.0,8.0,9.0,8,3.16 +70208,93.0,10.0,9.0,10.0,10.0,7.0,10.0,3,0.15 +33013,,,,,,,,1,0.04 +64463,90.0,10.0,8.0,7.0,10.0,9.0,9.0,2,0.18 +48928,,,,,,,,0, +71283,99.0,10.0,10.0,10.0,10.0,9.0,10.0,23,0.97 +8255,,,,,,,,0, +67222,90.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.1 +3359,93.0,9.0,10.0,10.0,10.0,9.0,9.0,11,0.42 +33671,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.08 +17720,,,,,,,,0, +27542,91.0,10.0,9.0,10.0,9.0,10.0,9.0,165,6.27 +55240,96.0,10.0,9.0,10.0,10.0,9.0,9.0,15,0.64 +14335,96.0,10.0,9.0,10.0,10.0,9.0,10.0,16,0.67 +42261,98.0,10.0,9.0,10.0,10.0,9.0,10.0,11,0.87 +64472,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.33 +72439,89.0,10.0,9.0,10.0,9.0,10.0,9.0,11,0.47 +59837,95.0,10.0,9.0,10.0,10.0,9.0,9.0,13,0.85 +45664,96.0,10.0,10.0,10.0,10.0,9.0,10.0,31,1.18 +31882,97.0,10.0,10.0,10.0,10.0,10.0,10.0,37,1.45 +65210,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.04 +2589,,,,,,,,0, +27335,,,,,,,,2,0.08 +25550,97.0,10.0,10.0,10.0,10.0,10.0,10.0,99,3.72 +25784,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.43 +25974,90.0,10.0,10.0,10.0,8.0,10.0,9.0,2,0.08 +50739,94.0,10.0,10.0,9.0,10.0,9.0,9.0,25,0.95 +13605,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.12 +56938,,,,,,,,0, +14385,100.0,10.0,10.0,10.0,10.0,10.0,10.0,82,3.67 +6629,76.0,8.0,7.0,7.0,7.0,9.0,7.0,5,0.24 +27823,,,,,,,,0, +27264,100.0,10.0,10.0,10.0,10.0,10.0,10.0,27,1.44 +34228,97.0,10.0,10.0,10.0,10.0,10.0,10.0,133,5.03 +47627,,,,,,,,0, +5078,96.0,9.0,9.0,10.0,10.0,8.0,9.0,6,0.24 +57,80.0,8.0,7.0,10.0,10.0,10.0,10.0,2,0.09 +57263,85.0,9.0,8.0,10.0,10.0,10.0,9.0,46,1.76 +57077,92.0,9.0,9.0,10.0,10.0,10.0,9.0,5,0.2 +29188,87.0,10.0,10.0,9.0,9.0,10.0,10.0,3,0.11 +64358,,,,,,,,0, +20357,73.0,7.0,7.0,7.0,7.0,7.0,7.0,3,0.2 +37001,,,,,,,,0, +37871,99.0,10.0,10.0,10.0,10.0,10.0,10.0,34,1.33 +35597,,,,,,,,0, +35560,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.12 +60331,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.08 +26083,97.0,10.0,10.0,10.0,10.0,9.0,9.0,20,0.78 +42481,90.0,9.0,7.0,9.0,9.0,10.0,9.0,8,0.33 +62786,98.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.43 +44550,88.0,9.0,9.0,9.0,9.0,10.0,9.0,19,0.74 +9859,,,,,,,,0, +49273,97.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.25 +54121,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.09 +37090,95.0,10.0,10.0,10.0,9.0,10.0,9.0,4,0.15 +9174,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.47 +9798,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.12 +60964,100.0,10.0,9.0,10.0,10.0,9.0,10.0,2,0.09 +9566,95.0,9.0,9.0,10.0,9.0,9.0,9.0,17,0.67 +62980,,,,,,,,0, +51369,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.2 +47333,89.0,9.0,9.0,9.0,10.0,9.0,9.0,75,2.88 +64304,93.0,9.0,8.0,10.0,10.0,10.0,9.0,92,5.88 +35269,94.0,10.0,10.0,10.0,10.0,9.0,9.0,28,1.15 +57552,90.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.11 +66888,100.0,10.0,10.0,10.0,10.0,10.0,10.0,24,0.96 +7014,92.0,10.0,10.0,10.0,10.0,10.0,9.0,161,6.08 +60056,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.11 +50197,95.0,9.0,9.0,10.0,10.0,10.0,9.0,31,1.24 +22740,84.0,8.0,8.0,9.0,9.0,9.0,9.0,16,0.64 +25064,,,,,,,,0, +44774,,,,,,,,0, +36007,,,,,,,,0, +71333,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.08 +6910,,,,,,,,0, +50947,100.0,10.0,10.0,10.0,10.0,10.0,10.0,62,2.38 +6197,98.0,10.0,10.0,10.0,10.0,10.0,9.0,34,1.31 +17638,89.0,9.0,9.0,9.0,9.0,9.0,9.0,11,0.78 +34327,,,,,,,,0, +45147,97.0,10.0,10.0,10.0,10.0,9.0,10.0,108,4.11 +23789,90.0,9.0,8.0,10.0,10.0,10.0,9.0,35,1.33 +53251,97.0,10.0,10.0,10.0,10.0,9.0,10.0,35,1.35 +39714,98.0,10.0,10.0,10.0,10.0,10.0,10.0,76,2.9 +14590,97.0,10.0,9.0,10.0,10.0,10.0,10.0,44,1.89 +4995,91.0,9.0,9.0,10.0,9.0,10.0,9.0,45,1.73 +30851,96.0,10.0,9.0,9.0,9.0,10.0,10.0,14,0.53 +59958,99.0,10.0,10.0,10.0,10.0,10.0,10.0,65,2.46 +24117,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.19 +70906,,,,,,,,0, +58254,80.0,8.0,8.0,9.0,9.0,9.0,8.0,6,0.25 +10165,72.0,7.0,8.0,9.0,9.0,8.0,8.0,21,0.8 +53817,95.0,10.0,10.0,10.0,10.0,9.0,9.0,21,0.81 +69404,98.0,10.0,10.0,10.0,10.0,9.0,10.0,17,0.77 +386,77.0,9.0,8.0,9.0,8.0,9.0,8.0,9,0.34 +69070,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.15 +13540,95.0,10.0,9.0,10.0,10.0,10.0,9.0,13,0.5 +56316,96.0,10.0,10.0,9.0,10.0,9.0,9.0,24,1.01 +36160,100.0,10.0,10.0,10.0,10.0,10.0,10.0,105,3.98 +26127,88.0,9.0,9.0,9.0,10.0,9.0,9.0,8,0.31 +27233,,,,,,,,0, +26700,95.0,9.0,10.0,10.0,10.0,9.0,10.0,14,0.54 +34771,97.0,10.0,10.0,10.0,10.0,10.0,9.0,106,4.03 +66643,92.0,10.0,10.0,10.0,10.0,10.0,9.0,14,0.54 +52603,,,,,,,,0, +12108,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.27 +6968,,,,,,,,0, +75235,90.0,10.0,9.0,10.0,10.0,8.0,9.0,4,0.16 +68709,98.0,10.0,10.0,10.0,10.0,10.0,10.0,84,3.19 +67268,98.0,10.0,10.0,10.0,10.0,10.0,10.0,29,1.18 +69250,80.0,6.0,10.0,10.0,10.0,10.0,8.0,2,0.11 +17927,98.0,10.0,10.0,10.0,10.0,10.0,10.0,34,1.3 +43840,99.0,10.0,10.0,10.0,10.0,9.0,10.0,14,0.53 +22382,95.0,10.0,9.0,10.0,10.0,10.0,10.0,149,5.67 +20705,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.37 +10543,50.0,6.0,5.0,8.0,8.0,8.0,6.0,2,0.09 +34349,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.1 +50489,97.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.29 +19482,90.0,9.0,9.0,10.0,10.0,10.0,9.0,30,1.16 +76014,95.0,10.0,9.0,10.0,10.0,9.0,9.0,23,0.91 +70592,96.0,9.0,9.0,8.0,8.0,10.0,9.0,5,0.2 +17994,95.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.32 +66237,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.19 +14472,100.0,10.0,10.0,8.0,10.0,9.0,10.0,3,0.16 +22506,93.0,10.0,8.0,9.0,10.0,10.0,9.0,9,0.37 +16811,93.0,10.0,9.0,10.0,9.0,10.0,9.0,14,0.55 +50206,88.0,9.0,9.0,10.0,10.0,9.0,9.0,34,1.31 +63436,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.14 +44146,,,,,,,,0, +48301,73.0,7.0,7.0,10.0,9.0,9.0,8.0,6,0.24 +52962,60.0,6.0,2.0,8.0,10.0,6.0,6.0,1,0.04 +46546,90.0,10.0,9.0,10.0,10.0,10.0,9.0,69,2.64 +21093,99.0,10.0,10.0,10.0,10.0,10.0,10.0,46,2.19 +75149,99.0,10.0,10.0,10.0,10.0,10.0,10.0,71,2.78 +16753,86.0,9.0,9.0,9.0,9.0,10.0,9.0,17,0.87 +64723,91.0,9.0,10.0,10.0,10.0,9.0,9.0,23,0.89 +12692,95.0,10.0,9.0,10.0,10.0,9.0,10.0,93,3.62 +51339,96.0,10.0,10.0,9.0,9.0,9.0,10.0,17,0.66 +64771,95.0,10.0,10.0,10.0,10.0,10.0,9.0,31,1.51 +32322,98.0,10.0,9.0,10.0,10.0,9.0,10.0,15,0.59 +39900,88.0,10.0,10.0,10.0,10.0,10.0,9.0,19,1.25 +1142,,,,,,,,0, +7086,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.55 +12501,85.0,9.0,8.0,10.0,10.0,9.0,9.0,48,1.85 +14631,95.0,10.0,9.0,9.0,10.0,10.0,9.0,33,1.29 +35696,96.0,10.0,9.0,9.0,10.0,9.0,10.0,11,0.55 +19786,95.0,10.0,9.0,10.0,10.0,9.0,10.0,4,0.15 +40949,77.0,8.0,9.0,9.0,8.0,10.0,7.0,8,0.33 +57828,,,,,,,,0, +13574,93.0,9.0,9.0,10.0,10.0,9.0,10.0,23,0.89 +18226,99.0,10.0,10.0,10.0,10.0,10.0,10.0,71,2.7 +33970,87.0,10.0,9.0,10.0,10.0,9.0,9.0,6,0.24 +44662,,,,,,,,0, +18642,90.0,10.0,9.0,9.0,10.0,10.0,9.0,9,0.38 +13351,,,,,,,,0, +24814,90.0,10.0,10.0,8.0,8.0,10.0,8.0,2,0.15 +62452,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.51 +70191,100.0,10.0,10.0,10.0,2.0,10.0,8.0,1,0.04 +53357,95.0,10.0,10.0,9.0,10.0,10.0,10.0,24,0.94 +39430,85.0,9.0,9.0,7.0,9.0,9.0,9.0,16,0.85 +12934,99.0,10.0,10.0,10.0,10.0,10.0,10.0,81,3.16 +28972,93.0,10.0,9.0,10.0,10.0,9.0,10.0,9,0.36 +26151,95.0,10.0,10.0,10.0,10.0,9.0,9.0,8,0.31 +16231,93.0,10.0,9.0,10.0,10.0,10.0,10.0,13,0.55 +54897,100.0,10.0,9.0,9.0,9.0,10.0,9.0,7,0.28 +67300,99.0,10.0,10.0,10.0,10.0,9.0,10.0,43,2.15 +37370,80.0,9.0,8.0,10.0,10.0,9.0,8.0,2,0.08 +57185,100.0,10.0,9.0,10.0,10.0,9.0,9.0,4,0.16 +73261,,,,,,,,0, +63490,,,,,,,,1,0.09 +74702,91.0,9.0,9.0,9.0,9.0,8.0,9.0,69,2.67 +66716,,,,,,,,0, +20210,88.0,9.0,9.0,9.0,9.0,10.0,9.0,13,0.6 +47140,60.0,4.0,10.0,10.0,10.0,6.0,4.0,1,0.04 +5161,98.0,10.0,9.0,10.0,10.0,9.0,10.0,31,1.23 +18781,99.0,10.0,10.0,10.0,10.0,10.0,10.0,20,0.78 +63852,96.0,10.0,9.0,10.0,10.0,9.0,10.0,51,2.04 +53072,92.0,10.0,10.0,10.0,9.0,9.0,10.0,5,0.22 +71972,95.0,10.0,10.0,10.0,10.0,10.0,9.0,16,0.86 +1425,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.32 +42833,99.0,10.0,10.0,10.0,10.0,10.0,10.0,25,1.01 +42158,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.08 +46026,95.0,10.0,9.0,10.0,10.0,9.0,9.0,4,0.15 +44097,100.0,10.0,10.0,10.0,10.0,10.0,10.0,17,2.63 +35316,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,3.51 +38438,99.0,10.0,10.0,10.0,10.0,10.0,10.0,21,0.84 +76379,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.46 +68693,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +71762,100.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.65 +53973,89.0,9.0,9.0,10.0,10.0,9.0,9.0,34,1.33 +24447,86.0,9.0,9.0,10.0,10.0,10.0,9.0,41,1.57 +56863,96.0,10.0,9.0,10.0,10.0,10.0,10.0,22,0.88 +12615,95.0,10.0,9.0,10.0,10.0,9.0,9.0,4,0.16 +72744,99.0,10.0,10.0,10.0,10.0,10.0,10.0,42,1.63 +71563,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.33 +63622,,,,,,,,0, +47347,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +36612,91.0,10.0,9.0,9.0,10.0,9.0,10.0,10,0.38 +23486,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.08 +71973,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.08 +45409,99.0,10.0,10.0,10.0,10.0,9.0,10.0,37,1.47 +23705,,,,,,,,0, +51349,99.0,10.0,10.0,10.0,10.0,10.0,10.0,33,1.46 +10830,96.0,10.0,10.0,10.0,10.0,9.0,10.0,25,0.98 +29861,93.0,10.0,9.0,10.0,10.0,9.0,9.0,46,1.75 +51152,100.0,10.0,10.0,10.0,10.0,9.0,10.0,12,0.47 +36415,,,,,,,,0, +11402,97.0,10.0,10.0,10.0,10.0,10.0,10.0,29,1.23 +67881,99.0,10.0,10.0,10.0,10.0,10.0,10.0,47,1.82 +6774,80.0,9.0,9.0,8.0,8.0,10.0,9.0,22,0.84 +7654,95.0,10.0,10.0,10.0,10.0,10.0,10.0,22,0.89 +7219,89.0,10.0,9.0,9.0,9.0,9.0,9.0,7,0.28 +57140,97.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.5 +65386,84.0,6.0,7.0,10.0,9.0,10.0,8.0,7,0.36 +64557,100.0,10.0,10.0,10.0,10.0,10.0,10.0,22,0.86 +24322,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.23 +24587,98.0,10.0,10.0,10.0,10.0,9.0,10.0,36,1.66 +62224,60.0,8.0,6.0,10.0,10.0,10.0,6.0,1,0.04 +39836,98.0,10.0,10.0,10.0,10.0,10.0,10.0,50,2.74 +46356,90.0,9.0,8.0,10.0,10.0,10.0,9.0,14,0.91 +68714,80.0,8.0,10.0,6.0,6.0,6.0,8.0,1,0.39 +89,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.29 +55329,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.27 +1310,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.11 +11884,99.0,10.0,10.0,10.0,10.0,10.0,10.0,68,2.94 +58206,,,,,,,,0, +70693,96.0,10.0,10.0,9.0,10.0,10.0,9.0,89,3.43 +52985,98.0,10.0,10.0,10.0,10.0,9.0,10.0,21,0.8 +38115,93.0,10.0,9.0,9.0,10.0,9.0,9.0,23,0.89 +63595,80.0,8.0,8.0,8.0,8.0,9.0,8.0,2,0.08 +60194,80.0,8.0,6.0,8.0,10.0,8.0,10.0,1,0.06 +3355,95.0,9.0,9.0,10.0,10.0,9.0,9.0,11,0.42 +54045,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.54 +34796,94.0,10.0,10.0,10.0,9.0,10.0,9.0,7,0.3 +67558,95.0,10.0,9.0,10.0,10.0,10.0,9.0,25,0.96 +65012,81.0,9.0,8.0,9.0,9.0,9.0,8.0,18,0.94 +62984,90.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.08 +35159,90.0,9.0,8.0,10.0,10.0,9.0,10.0,7,0.32 +35426,,,,,,,,1,0.04 +72937,80.0,7.0,9.0,7.0,8.0,9.0,8.0,3,0.41 +3567,92.0,10.0,9.0,9.0,10.0,10.0,9.0,11,0.45 +71534,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +15345,100.0,10.0,10.0,,10.0,,,1,0.04 +74442,,,,,,,,0, +6502,,,,,,,,0, +60626,93.0,10.0,10.0,10.0,10.0,10.0,9.0,185,7.06 +30409,93.0,10.0,9.0,10.0,10.0,10.0,9.0,74,2.84 +8768,87.0,9.0,8.0,10.0,10.0,9.0,10.0,7,0.27 +55344,20.0,2.0,2.0,2.0,2.0,6.0,2.0,1,0.07 +7032,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +59779,,,,,,,,0, +43571,94.0,10.0,10.0,9.0,10.0,10.0,9.0,28,1.11 +49219,93.0,10.0,9.0,10.0,10.0,10.0,9.0,8,0.31 +43481,99.0,10.0,10.0,10.0,10.0,10.0,10.0,35,1.34 +45234,89.0,10.0,10.0,10.0,10.0,9.0,9.0,7,0.28 +64486,82.0,9.0,10.0,8.0,8.0,10.0,9.0,10,0.4 +41367,99.0,10.0,10.0,10.0,10.0,9.0,10.0,27,1.04 +12520,87.0,9.0,9.0,9.0,10.0,10.0,8.0,7,0.3 +64684,97.0,10.0,10.0,10.0,10.0,10.0,10.0,66,2.62 +38334,100.0,10.0,8.0,,10.0,,,1,0.04 +16364,97.0,9.0,9.0,10.0,10.0,10.0,9.0,6,0.33 +47874,100.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.21 +5479,85.0,9.0,8.0,9.0,9.0,9.0,8.0,34,1.48 +74369,88.0,9.0,10.0,10.0,10.0,10.0,9.0,27,1.05 +14809,67.0,6.0,7.0,6.0,7.0,7.0,7.0,3,0.16 +27965,96.0,10.0,10.0,10.0,10.0,9.0,10.0,19,0.73 +28151,92.0,10.0,9.0,9.0,10.0,10.0,9.0,5,0.2 +9477,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.08 +65163,98.0,9.0,10.0,10.0,10.0,10.0,10.0,12,0.47 +13911,73.0,8.0,6.0,9.0,9.0,9.0,8.0,89,3.38 +60095,99.0,10.0,10.0,10.0,10.0,10.0,10.0,26,1.0 +27705,89.0,10.0,9.0,10.0,10.0,10.0,9.0,15,2.59 +33914,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.24 +4440,98.0,10.0,10.0,10.0,10.0,9.0,10.0,16,0.62 +55553,98.0,10.0,10.0,10.0,10.0,9.0,10.0,94,3.57 +67999,84.0,9.0,9.0,8.0,8.0,10.0,9.0,21,0.8 +11971,93.0,9.0,9.0,10.0,10.0,10.0,9.0,25,0.97 +3860,85.0,9.0,9.0,9.0,10.0,8.0,9.0,15,0.57 +50776,90.0,9.0,9.0,9.0,9.0,10.0,9.0,54,2.09 +40007,90.0,9.0,9.0,9.0,9.0,8.0,9.0,10,0.52 +11435,,,,,,,,0, +37515,,,,,,,,0, +62108,94.0,10.0,9.0,10.0,10.0,10.0,9.0,33,1.26 +55076,100.0,9.0,9.0,10.0,10.0,9.0,9.0,3,0.13 +55091,96.0,10.0,10.0,10.0,10.0,9.0,9.0,89,3.45 +41177,100.0,10.0,10.0,10.0,10.0,10.0,10.0,23,0.89 +47224,84.0,8.0,7.0,9.0,9.0,8.0,8.0,18,0.7 +33801,97.0,10.0,10.0,10.0,10.0,10.0,10.0,61,2.47 +75271,96.0,10.0,10.0,10.0,10.0,10.0,10.0,20,0.83 +48036,100.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.5 +68655,91.0,10.0,9.0,10.0,10.0,8.0,9.0,7,0.29 +52265,86.0,9.0,8.0,10.0,9.0,9.0,9.0,111,4.25 +22393,100.0,10.0,10.0,10.0,10.0,6.0,10.0,1,0.04 +36225,92.0,9.0,10.0,10.0,10.0,10.0,10.0,5,0.21 +48058,97.0,10.0,10.0,10.0,10.0,10.0,10.0,19,0.75 +25061,85.0,9.0,10.0,9.0,9.0,9.0,8.0,4,0.15 +62467,,,,,,,,0, +2816,96.0,10.0,9.0,10.0,10.0,9.0,10.0,29,3.58 +64840,,,,,,,,0, +38676,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.16 +46746,100.0,10.0,10.0,10.0,10.0,10.0,8.0,2,0.08 +5076,90.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.11 +6803,84.0,10.0,9.0,10.0,10.0,10.0,8.0,5,0.44 +13676,,,,,,,,0, +53875,94.0,10.0,10.0,10.0,10.0,10.0,9.0,7,0.29 +3028,98.0,10.0,10.0,10.0,10.0,9.0,10.0,11,0.42 +47585,97.0,10.0,9.0,10.0,10.0,10.0,9.0,7,0.3 +19922,99.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.79 +58660,84.0,8.0,7.0,9.0,9.0,9.0,9.0,9,0.35 +8425,,,,,,,,0, +73646,94.0,10.0,10.0,10.0,10.0,9.0,9.0,93,3.6 +43958,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.46 +19518,92.0,9.0,9.0,10.0,10.0,10.0,9.0,33,1.25 +34416,99.0,10.0,10.0,10.0,10.0,9.0,10.0,99,3.85 +52448,99.0,10.0,10.0,10.0,10.0,10.0,10.0,28,1.2 +44316,100.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.9 +71798,91.0,9.0,9.0,9.0,9.0,10.0,10.0,34,1.31 +64372,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.11 +54129,77.0,8.0,7.0,9.0,9.0,9.0,8.0,86,3.32 +43747,88.0,9.0,9.0,9.0,10.0,10.0,8.0,23,0.88 +26710,93.0,9.0,9.0,10.0,10.0,10.0,9.0,33,1.29 +29286,,,,,,,,0, +9810,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.2 +61263,96.0,9.0,10.0,10.0,10.0,9.0,10.0,10,0.41 +2202,100.0,10.0,9.0,10.0,10.0,10.0,10.0,6,0.41 +33989,95.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.17 +7042,94.0,10.0,9.0,10.0,10.0,10.0,10.0,36,1.48 +27408,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.45 +69897,100.0,8.0,10.0,10.0,10.0,10.0,8.0,1,0.04 +62057,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +16868,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.42 +71072,,,,,,,,0, +1875,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.16 +71504,96.0,10.0,10.0,10.0,10.0,9.0,9.0,5,0.21 +19815,100.0,9.0,10.0,10.0,10.0,9.0,9.0,6,0.24 +62890,95.0,10.0,9.0,10.0,10.0,9.0,10.0,93,3.56 +7862,98.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.43 +31302,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +25872,100.0,10.0,10.0,10.0,10.0,10.0,10.0,58,2.22 +54279,87.0,9.0,8.0,10.0,10.0,9.0,9.0,12,0.49 +6713,93.0,9.0,9.0,9.0,9.0,10.0,10.0,3,0.12 +57123,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.33 +5388,92.0,10.0,10.0,10.0,10.0,9.0,9.0,28,1.07 +59750,94.0,10.0,10.0,10.0,10.0,10.0,10.0,118,4.6 +76678,93.0,10.0,9.0,10.0,10.0,9.0,10.0,46,1.75 +24657,80.0,10.0,8.0,10.0,8.0,8.0,8.0,1,0.04 +32921,,,,,,,,1,0.04 +12095,96.0,10.0,10.0,10.0,10.0,10.0,10.0,27,1.04 +70374,98.0,10.0,10.0,10.0,10.0,10.0,10.0,71,2.72 +2834,93.0,9.0,9.0,10.0,10.0,8.0,10.0,65,2.54 +34823,95.0,10.0,10.0,10.0,10.0,9.0,10.0,24,0.93 +65831,100.0,10.0,8.0,10.0,10.0,10.0,8.0,2,0.08 +29483,83.0,9.0,10.0,7.0,8.0,10.0,9.0,6,0.25 +55509,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.27 +1923,,,,,,,,0, +17024,96.0,9.0,10.0,9.0,10.0,8.0,10.0,40,1.68 +20011,97.0,10.0,9.0,10.0,10.0,10.0,9.0,32,1.26 +25120,92.0,9.0,9.0,10.0,10.0,8.0,9.0,5,0.21 +43304,96.0,10.0,9.0,10.0,10.0,10.0,9.0,37,1.68 +37877,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.19 +59684,92.0,10.0,10.0,10.0,10.0,10.0,9.0,27,1.05 +18807,20.0,3.0,2.0,6.0,3.0,9.0,2.0,2,0.08 +46885,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.04 +57579,,,,,,,,0, +15608,100.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.28 +38907,,,,,,,,0, +33418,92.0,9.0,8.0,9.0,9.0,10.0,9.0,5,0.21 +8224,91.0,10.0,9.0,10.0,10.0,9.0,9.0,36,1.41 +40640,97.0,10.0,9.0,10.0,10.0,10.0,9.0,7,0.3 +67276,80.0,8.0,8.0,9.0,9.0,8.0,8.0,85,3.31 +52201,93.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.24 +34369,93.0,10.0,10.0,10.0,10.0,9.0,9.0,57,2.19 +14949,83.0,9.0,8.0,9.0,9.0,9.0,9.0,74,2.92 +31856,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +56991,,,,,,,,0, +47739,98.0,10.0,10.0,10.0,10.0,10.0,9.0,28,2.12 +22182,97.0,9.0,10.0,10.0,9.0,9.0,9.0,12,0.49 +17705,100.0,10.0,10.0,9.0,10.0,9.0,10.0,10,0.39 +67905,90.0,10.0,9.0,10.0,10.0,9.0,10.0,9,0.48 +73669,70.0,6.0,10.0,10.0,6.0,10.0,10.0,2,0.08 +3055,80.0,6.0,10.0,6.0,10.0,10.0,8.0,1,0.06 +58435,86.0,9.0,8.0,9.0,10.0,10.0,9.0,19,0.92 +41781,96.0,10.0,9.0,10.0,10.0,10.0,10.0,30,1.23 +74509,99.0,10.0,10.0,10.0,10.0,9.0,9.0,16,0.63 +57967,88.0,9.0,8.0,9.0,9.0,9.0,9.0,93,3.56 +72844,99.0,10.0,10.0,10.0,10.0,9.0,10.0,31,1.2 +62162,95.0,10.0,10.0,10.0,10.0,9.0,10.0,94,3.68 +42641,96.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.46 +31269,,,,,,,,0, +77021,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.21 +24381,99.0,10.0,10.0,10.0,10.0,10.0,10.0,34,1.4 +30195,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +45828,84.0,9.0,9.0,9.0,9.0,9.0,9.0,29,1.12 +9207,93.0,10.0,9.0,9.0,10.0,10.0,9.0,40,1.55 +12175,88.0,9.0,9.0,8.0,9.0,9.0,9.0,29,1.43 +43760,94.0,10.0,9.0,10.0,10.0,10.0,9.0,14,0.59 +34310,,,,,,,,0, +51818,,,,,,,,0, +75198,87.0,9.0,9.0,9.0,9.0,10.0,9.0,55,2.13 +24047,93.0,9.0,9.0,10.0,10.0,10.0,9.0,6,0.3 +48225,97.0,10.0,10.0,10.0,10.0,9.0,10.0,121,4.64 +36717,,,,,,,,0, +16261,82.0,9.0,8.0,9.0,9.0,9.0,9.0,100,3.85 +56385,99.0,10.0,10.0,10.0,10.0,10.0,10.0,36,1.58 +63237,97.0,10.0,9.0,10.0,10.0,10.0,10.0,35,1.34 +69082,98.0,10.0,10.0,10.0,10.0,9.0,10.0,46,1.77 +24223,87.0,7.0,10.0,6.0,6.0,8.0,9.0,3,0.13 +1762,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.04 +41335,98.0,10.0,10.0,10.0,10.0,10.0,10.0,83,3.22 +48424,98.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.31 +62282,90.0,9.0,9.0,10.0,9.0,9.0,9.0,25,1.0 +3085,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +41919,70.0,7.0,7.0,9.0,9.0,5.0,6.0,2,0.08 +58146,96.0,10.0,10.0,10.0,10.0,10.0,9.0,9,0.48 +71189,96.0,10.0,10.0,10.0,10.0,9.0,10.0,108,6.98 +42478,91.0,9.0,9.0,10.0,10.0,10.0,9.0,35,1.36 +75547,,,,,,,,0, +22425,,,,,,,,0, +4560,,,,,,,,0, +5217,86.0,10.0,8.0,10.0,10.0,10.0,8.0,9,0.35 +29097,,,,,,,,0, +11675,48.0,5.0,7.0,7.0,6.0,8.0,5.0,7,0.28 +12884,91.0,10.0,8.0,10.0,10.0,10.0,9.0,16,0.61 +46600,99.0,10.0,10.0,10.0,10.0,10.0,10.0,30,1.25 +26084,93.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.13 +41326,98.0,10.0,10.0,10.0,10.0,9.0,10.0,25,1.03 +73470,94.0,10.0,9.0,10.0,10.0,10.0,9.0,14,1.18 +50098,86.0,10.0,10.0,9.0,10.0,9.0,9.0,7,0.41 +40511,83.0,8.0,10.0,9.0,8.0,9.0,8.0,12,0.48 +23746,94.0,10.0,9.0,10.0,10.0,10.0,9.0,19,0.74 +74010,98.0,10.0,9.0,10.0,10.0,10.0,10.0,9,0.43 +38391,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.3 +45135,97.0,10.0,10.0,10.0,10.0,10.0,9.0,29,1.12 +31566,96.0,10.0,10.0,10.0,10.0,10.0,10.0,52,2.01 +14421,94.0,9.0,9.0,10.0,9.0,10.0,9.0,32,1.25 +45766,97.0,10.0,10.0,10.0,10.0,10.0,10.0,35,1.39 +73692,80.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.04 +30211,99.0,10.0,10.0,10.0,10.0,9.0,10.0,28,1.08 +17415,100.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.73 +60971,88.0,8.0,10.0,10.0,10.0,10.0,8.0,8,0.31 +35138,88.0,9.0,9.0,9.0,9.0,10.0,9.0,47,1.8 +63552,80.0,8.0,9.0,9.0,9.0,10.0,8.0,8,0.32 +69353,91.0,9.0,9.0,9.0,10.0,9.0,9.0,19,0.73 +993,,,,,,,,0, +48411,,,,,,,,0, +48593,80.0,10.0,6.0,10.0,10.0,8.0,8.0,1,0.09 +9280,89.0,9.0,10.0,10.0,10.0,10.0,9.0,34,1.3 +1909,,,,,,,,0, +40085,91.0,10.0,9.0,10.0,10.0,10.0,10.0,28,1.08 +55549,100.0,10.0,10.0,10.0,10.0,10.0,10.0,92,3.56 +44944,,,,,,,,0, +69390,96.0,10.0,10.0,10.0,10.0,10.0,10.0,34,1.34 +30645,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.04 +50719,88.0,9.0,9.0,8.0,9.0,10.0,9.0,24,1.12 +52465,98.0,10.0,10.0,10.0,10.0,10.0,10.0,127,4.9 +6040,88.0,10.0,9.0,10.0,10.0,10.0,10.0,6,0.25 +44027,,,,,,,,0, +68478,89.0,9.0,9.0,9.0,10.0,9.0,9.0,32,1.25 +51383,,,,,,,,0, +11697,98.0,9.0,10.0,9.0,10.0,10.0,9.0,9,0.38 +38471,82.0,9.0,8.0,9.0,9.0,10.0,9.0,59,2.28 +63061,97.0,10.0,10.0,10.0,10.0,10.0,10.0,45,1.88 +25759,98.0,10.0,10.0,10.0,10.0,10.0,10.0,145,5.59 +63660,94.0,10.0,9.0,10.0,10.0,10.0,9.0,60,2.38 +61197,100.0,10.0,10.0,10.0,10.0,10.0,10.0,20,0.87 +5257,,,,,,,,0, +36804,96.0,10.0,10.0,10.0,10.0,10.0,10.0,104,4.09 +2310,98.0,10.0,9.0,10.0,10.0,10.0,9.0,19,0.84 +69963,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.41 +45187,97.0,10.0,10.0,10.0,10.0,10.0,10.0,31,1.24 +34639,87.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.18 +68276,98.0,10.0,10.0,10.0,10.0,10.0,10.0,26,1.01 +9993,100.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.67 +74862,97.0,10.0,10.0,10.0,9.0,10.0,10.0,14,0.56 +50761,98.0,9.0,9.0,10.0,10.0,10.0,10.0,8,0.43 +70314,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.12 +25147,100.0,10.0,10.0,,10.0,,,1,0.06 +62596,97.0,10.0,10.0,10.0,10.0,10.0,10.0,31,1.23 +20113,93.0,9.0,9.0,10.0,10.0,10.0,9.0,32,1.23 +61141,88.0,10.0,9.0,10.0,10.0,9.0,9.0,18,0.7 +32941,90.0,10.0,10.0,10.0,10.0,10.0,10.0,49,1.89 +54363,86.0,9.0,9.0,9.0,9.0,9.0,9.0,22,1.47 +39817,80.0,8.0,8.0,8.0,8.0,8.0,8.0,1,0.04 +58805,97.0,10.0,10.0,10.0,10.0,10.0,9.0,12,0.55 +11204,20.0,2.0,2.0,2.0,2.0,2.0,2.0,1,0.04 +22384,,,,,,,,0, +13434,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.04 +66814,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.32 +73230,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.04 +15032,95.0,10.0,10.0,10.0,10.0,9.0,10.0,89,3.52 +6857,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.08 +64499,92.0,9.0,10.0,10.0,10.0,10.0,9.0,25,0.99 +24007,,,,,,,,0, +27265,100.0,10.0,10.0,10.0,10.0,10.0,10.0,50,2.85 +25466,96.0,10.0,10.0,10.0,10.0,10.0,10.0,39,1.51 +50288,93.0,10.0,10.0,10.0,10.0,9.0,9.0,13,0.54 +68156,95.0,10.0,9.0,10.0,10.0,10.0,9.0,67,2.59 +44558,100.0,10.0,10.0,9.0,10.0,10.0,10.0,4,0.21 +45256,97.0,10.0,10.0,10.0,10.0,10.0,10.0,41,1.61 +31459,93.0,9.0,10.0,10.0,10.0,10.0,9.0,3,0.13 +35858,93.0,9.0,9.0,10.0,10.0,9.0,9.0,23,0.89 +38795,92.0,9.0,10.0,8.0,10.0,10.0,10.0,6,0.25 +18488,80.0,6.0,8.0,10.0,10.0,10.0,8.0,1,0.07 +34479,,,,,,,,0, +1376,,,,,,,,0, +63082,91.0,10.0,9.0,10.0,10.0,9.0,9.0,8,0.31 +55636,98.0,10.0,9.0,10.0,10.0,9.0,10.0,9,0.38 +10223,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.5 +59694,84.0,9.0,7.0,10.0,10.0,10.0,9.0,131,5.06 +67105,100.0,10.0,10.0,10.0,10.0,10.0,10.0,43,1.66 +41149,98.0,10.0,10.0,10.0,10.0,10.0,10.0,20,0.77 +14100,98.0,10.0,10.0,10.0,10.0,10.0,10.0,39,1.56 +73483,95.0,10.0,10.0,9.0,10.0,8.0,9.0,4,0.23 +61417,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.08 +52660,97.0,10.0,9.0,10.0,10.0,10.0,9.0,45,1.84 +64168,,,,,,,,0, +46146,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.08 +69703,100.0,10.0,10.0,10.0,10.0,9.0,10.0,55,3.61 +44900,95.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.2 +28194,97.0,10.0,10.0,10.0,10.0,10.0,10.0,43,1.71 +72702,91.0,10.0,9.0,10.0,10.0,9.0,9.0,28,1.12 +47682,,,,,,,,2,0.09 +69990,96.0,10.0,10.0,10.0,10.0,9.0,10.0,129,5.02 +51514,97.0,10.0,10.0,10.0,10.0,10.0,9.0,79,3.27 +30585,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.13 +36367,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.39 +6450,97.0,10.0,10.0,10.0,10.0,10.0,10.0,47,2.0 +3402,100.0,10.0,10.0,10.0,10.0,10.0,10.0,145,5.58 +23280,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.35 +72511,99.0,10.0,10.0,10.0,10.0,9.0,10.0,18,0.71 +1126,100.0,10.0,10.0,9.0,10.0,10.0,10.0,4,0.17 +22935,94.0,10.0,10.0,10.0,10.0,10.0,9.0,21,0.82 +52880,86.0,9.0,8.0,10.0,9.0,10.0,9.0,193,7.42 +6029,92.0,10.0,9.0,10.0,10.0,10.0,9.0,32,1.39 +22326,90.0,9.0,9.0,10.0,10.0,10.0,9.0,26,1.03 +22859,96.0,10.0,10.0,9.0,10.0,10.0,10.0,17,0.72 +31001,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.08 +54973,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.11 +51937,98.0,10.0,10.0,10.0,9.0,10.0,10.0,26,1.0 +8727,100.0,10.0,9.0,10.0,10.0,9.0,9.0,2,0.27 +40190,,,,,,,,0, +75093,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.13 +57323,100.0,10.0,9.0,10.0,10.0,9.0,10.0,3,0.12 +5522,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.04 +46127,97.0,10.0,10.0,10.0,10.0,10.0,9.0,37,1.5 +11662,90.0,10.0,9.0,10.0,10.0,10.0,9.0,4,0.75 +45833,93.0,10.0,8.0,9.0,10.0,10.0,9.0,6,0.24 +48013,95.0,9.0,10.0,10.0,10.0,10.0,10.0,32,1.25 +70188,99.0,10.0,10.0,10.0,10.0,9.0,9.0,76,3.23 +60792,94.0,9.0,9.0,10.0,10.0,9.0,9.0,14,0.6 +6932,93.0,10.0,8.0,10.0,10.0,9.0,9.0,45,1.74 +18341,98.0,10.0,10.0,10.0,10.0,9.0,10.0,41,1.6 +21293,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.95 +31922,100.0,9.0,10.0,9.0,10.0,8.0,7.0,2,1.15 +37154,95.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.32 +27693,96.0,10.0,10.0,10.0,10.0,9.0,10.0,9,0.36 +75564,98.0,10.0,10.0,10.0,10.0,10.0,9.0,23,0.92 +40342,87.0,9.0,7.0,9.0,9.0,9.0,8.0,3,0.21 +20816,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.42 +15182,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.29 +65356,,,,,,,,0, +69112,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.08 +10808,,,,,,,,0, +59411,,,,,,,,0, +18353,,,,,,,,0, +32349,,,,,,,,0, +60047,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,1.81 +57482,,,,,,,,0, +61313,90.0,9.0,8.0,10.0,10.0,10.0,10.0,2,0.08 +8315,,,,,,,,0, +41313,92.0,10.0,8.0,10.0,10.0,10.0,9.0,9,0.35 +67667,84.0,9.0,9.0,10.0,10.0,10.0,9.0,69,2.7 +21703,91.0,9.0,10.0,9.0,10.0,9.0,9.0,22,0.86 +35873,,,,,,,,0, +57253,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.28 +20215,95.0,10.0,10.0,10.0,10.0,10.0,9.0,70,2.73 +47187,93.0,10.0,10.0,10.0,10.0,10.0,10.0,24,0.96 +38499,99.0,10.0,10.0,10.0,10.0,9.0,10.0,167,7.2 +63643,96.0,10.0,10.0,10.0,9.0,10.0,9.0,28,1.29 +271,93.0,9.0,9.0,10.0,10.0,10.0,9.0,8,0.37 +54662,100.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.61 +39768,,,,,,,,0, +23038,100.0,10.0,10.0,10.0,10.0,9.0,10.0,18,0.91 +31878,,,,,,,,0, +13601,80.0,9.0,10.0,10.0,10.0,8.0,9.0,3,0.12 +55843,94.0,10.0,9.0,10.0,10.0,10.0,10.0,30,1.2 +6151,99.0,10.0,10.0,10.0,10.0,10.0,10.0,19,0.74 +17209,98.0,10.0,9.0,10.0,10.0,10.0,10.0,13,0.51 +67006,95.0,10.0,10.0,10.0,10.0,9.0,10.0,66,2.62 +64657,100.0,10.0,10.0,10.0,10.0,10.0,10.0,19,0.92 +44055,86.0,9.0,9.0,9.0,10.0,10.0,9.0,44,1.69 +42885,,,,,,,,0, +54714,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.39 +63030,95.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.36 +57398,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +64017,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.12 +14918,,,,,,,,0, +35504,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.12 +44779,,,,,,,,0, +70770,96.0,10.0,9.0,10.0,10.0,9.0,9.0,12,0.47 +5095,,,,,,,,0, +46034,,,,,,,,0, +60044,,,,,,,,0, +37468,96.0,10.0,10.0,10.0,10.0,9.0,9.0,16,0.62 +59954,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +42660,96.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.23 +75231,,,,,,,,0, +13719,99.0,10.0,10.0,10.0,10.0,10.0,10.0,48,1.87 +46858,,,,,,,,0, +64035,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.08 +8560,,,,,,,,0, +49091,82.0,8.0,9.0,8.0,9.0,10.0,8.0,24,0.93 +37898,67.0,8.0,8.0,9.0,9.0,7.0,8.0,6,0.25 +61015,89.0,9.0,9.0,10.0,10.0,10.0,9.0,22,1.29 +23767,,,,,,,,0, +16604,99.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.62 +33450,99.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.63 +54060,83.0,9.0,9.0,9.0,9.0,9.0,9.0,36,1.41 +42895,88.0,9.0,9.0,9.0,9.0,8.0,9.0,29,1.13 +33919,95.0,10.0,9.0,10.0,10.0,10.0,10.0,4,1.71 +42425,91.0,10.0,10.0,9.0,10.0,9.0,9.0,17,0.69 +46637,94.0,10.0,10.0,10.0,10.0,10.0,10.0,40,1.56 +69354,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.08 +14437,80.0,8.0,9.0,8.0,8.0,7.0,8.0,8,0.34 +15888,98.0,10.0,10.0,10.0,10.0,10.0,10.0,36,1.41 +18682,88.0,9.0,9.0,9.0,10.0,9.0,9.0,13,0.51 +27858,98.0,10.0,10.0,10.0,10.0,9.0,10.0,23,1.19 +51900,,,,,,,,0, +7910,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +15801,20.0,2.0,,2.0,2.0,2.0,2.0,1,0.06 +39066,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.2 +29460,,,,,,,,0, +7558,80.0,8.0,7.0,10.0,10.0,9.0,8.0,7,0.4 +45645,,,,,,,,0, +21985,99.0,10.0,10.0,10.0,10.0,10.0,10.0,25,0.98 +40979,93.0,10.0,10.0,10.0,10.0,8.0,10.0,3,0.43 +27740,96.0,10.0,10.0,10.0,10.0,9.0,9.0,28,1.11 +22281,80.0,10.0,10.0,8.0,6.0,10.0,10.0,1,0.09 +52963,90.0,9.0,9.0,9.0,10.0,9.0,9.0,31,1.77 +59607,93.0,10.0,10.0,10.0,10.0,9.0,10.0,3,3.0 +30491,,,,,,,,0, +41851,95.0,10.0,9.0,10.0,10.0,10.0,10.0,28,1.11 +32615,88.0,9.0,9.0,10.0,10.0,8.0,9.0,179,6.91 +17716,96.0,10.0,10.0,10.0,10.0,10.0,10.0,62,2.44 +56904,97.0,10.0,10.0,10.0,10.0,10.0,9.0,15,0.68 +17201,88.0,9.0,8.0,10.0,10.0,9.0,9.0,151,5.85 +7204,97.0,10.0,10.0,10.0,10.0,10.0,10.0,29,1.17 +73411,90.0,9.0,9.0,10.0,10.0,9.0,9.0,171,6.67 +61608,90.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.09 +11141,94.0,9.0,9.0,10.0,9.0,10.0,9.0,54,2.13 +12678,,,,,,,,0, +30427,97.0,10.0,9.0,10.0,10.0,10.0,9.0,7,0.3 +71867,86.0,9.0,9.0,9.0,9.0,10.0,9.0,81,3.13 +20266,,,,,,,,0, +65926,93.0,9.0,10.0,10.0,10.0,9.0,9.0,12,0.47 +63611,88.0,9.0,9.0,10.0,9.0,10.0,9.0,43,1.72 +58924,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.27 +72036,87.0,9.0,9.0,10.0,10.0,9.0,8.0,35,1.39 +55800,98.0,10.0,10.0,10.0,10.0,10.0,10.0,25,0.98 +70240,93.0,10.0,9.0,9.0,10.0,9.0,9.0,99,3.86 +72179,98.0,10.0,9.0,10.0,10.0,10.0,10.0,10,0.42 +49780,90.0,9.0,9.0,10.0,10.0,10.0,9.0,63,2.45 +21130,91.0,10.0,9.0,10.0,10.0,10.0,9.0,71,2.74 +514,100.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.17 +66940,,,,,,,,0, +37751,80.0,9.0,10.0,8.0,9.0,8.0,8.0,2,0.13 +54337,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.08 +40352,85.0,9.0,8.0,9.0,9.0,10.0,9.0,49,1.91 +72852,82.0,9.0,8.0,9.0,10.0,10.0,9.0,11,0.46 +14341,97.0,10.0,10.0,10.0,10.0,10.0,10.0,37,1.47 +69039,77.0,9.0,8.0,9.0,9.0,10.0,9.0,7,0.28 +65526,87.0,9.0,9.0,10.0,9.0,9.0,8.0,3,0.12 +39630,87.0,9.0,9.0,10.0,10.0,9.0,9.0,175,6.77 +37962,87.0,9.0,8.0,9.0,9.0,9.0,9.0,27,1.13 +55462,95.0,10.0,9.0,10.0,10.0,10.0,10.0,18,0.75 +31647,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.39 +52283,89.0,9.0,9.0,9.0,9.0,9.0,9.0,49,1.93 +2346,98.0,10.0,10.0,10.0,10.0,10.0,10.0,114,4.49 +29869,90.0,10.0,9.0,9.0,10.0,10.0,9.0,5,0.21 +68586,,,,,,,,0, +24412,99.0,10.0,10.0,10.0,10.0,10.0,10.0,55,2.14 +72615,90.0,10.0,9.0,9.0,9.0,10.0,9.0,58,2.28 +52072,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.43 +27403,89.0,9.0,9.0,10.0,9.0,10.0,9.0,48,1.87 +64312,89.0,9.0,9.0,9.0,9.0,10.0,9.0,52,2.03 +11320,87.0,9.0,9.0,9.0,9.0,10.0,9.0,95,3.81 +57666,90.0,9.0,9.0,9.0,10.0,10.0,9.0,86,3.36 +19406,87.0,9.0,9.0,9.0,9.0,10.0,9.0,75,2.94 +3792,84.0,9.0,9.0,9.0,9.0,9.0,9.0,55,2.19 +40805,87.0,9.0,9.0,9.0,9.0,9.0,9.0,82,3.19 +24888,84.0,9.0,9.0,9.0,9.0,10.0,9.0,65,2.55 +4744,97.0,10.0,10.0,10.0,10.0,10.0,10.0,25,1.0 +8075,83.0,9.0,9.0,9.0,9.0,9.0,9.0,65,2.57 +5520,90.0,9.0,9.0,9.0,9.0,10.0,9.0,75,2.97 +71488,90.0,9.0,9.0,9.0,9.0,10.0,9.0,107,4.17 +24188,89.0,9.0,9.0,9.0,9.0,10.0,9.0,71,2.91 +3626,,,,,,,,2,0.08 +18239,100.0,10.0,10.0,10.0,10.0,10.0,8.0,2,0.14 +26523,94.0,10.0,10.0,10.0,10.0,10.0,9.0,176,6.87 +46571,,,,,,,,1, +31358,88.0,8.0,8.0,10.0,10.0,9.0,9.0,8,0.31 +59412,,,,,,,,0, +12925,92.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.25 +5176,88.0,10.0,9.0,10.0,10.0,9.0,9.0,46,1.81 +51492,96.0,10.0,10.0,10.0,10.0,10.0,9.0,19,0.75 +27519,92.0,9.0,10.0,10.0,10.0,10.0,9.0,13,1.02 +53983,90.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.15 +22694,100.0,10.0,10.0,10.0,10.0,9.0,10.0,17,1.5 +40192,93.0,10.0,9.0,10.0,10.0,9.0,9.0,3,0.13 +16271,,,,,,,,0, +63299,,,,,,,,0, +69805,97.0,10.0,10.0,10.0,10.0,10.0,9.0,32,1.34 +73653,96.0,10.0,10.0,10.0,10.0,10.0,9.0,9,0.38 +8754,97.0,10.0,10.0,10.0,10.0,10.0,9.0,16,0.67 +13951,94.0,10.0,10.0,10.0,9.0,9.0,10.0,32,1.25 +6357,90.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.21 +67645,100.0,10.0,10.0,10.0,10.0,9.0,10.0,9,0.36 +63548,100.0,10.0,10.0,10.0,10.0,9.0,10.0,17,0.68 +13800,100.0,10.0,10.0,10.0,10.0,10.0,10.0,27,1.14 +73942,95.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.16 +4015,86.0,9.0,9.0,9.0,9.0,10.0,9.0,44,1.73 +44897,92.0,10.0,10.0,10.0,10.0,9.0,9.0,78,3.05 +6018,,,,,,,,2,0.11 +47112,90.0,9.0,9.0,10.0,10.0,10.0,10.0,2,0.08 +51119,,,,,,,,0, +52699,,,,,,,,0, +31933,80.0,7.0,5.0,9.0,9.0,9.0,8.0,2,0.08 +22303,84.0,9.0,7.0,10.0,10.0,9.0,10.0,5,0.21 +9888,89.0,9.0,9.0,10.0,9.0,10.0,9.0,8,0.32 +2204,,,,,,,,0, +32060,98.0,10.0,9.0,9.0,10.0,10.0,9.0,56,2.39 +44538,100.0,10.0,10.0,10.0,10.0,9.0,9.0,6,0.24 +72647,100.0,10.0,10.0,10.0,10.0,8.0,,1,0.06 +30191,99.0,10.0,10.0,10.0,10.0,10.0,10.0,39,1.72 +21658,100.0,10.0,10.0,10.0,9.0,10.0,10.0,12,0.51 +38856,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +17197,,,,,,,,0, +4539,93.0,9.0,9.0,9.0,9.0,9.0,7.0,3,0.14 +73720,85.0,10.0,9.0,9.0,10.0,8.0,9.0,4,0.16 +2170,98.0,10.0,10.0,10.0,10.0,10.0,10.0,65,2.54 +5178,99.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.65 +48727,100.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +2051,93.0,10.0,9.0,10.0,10.0,10.0,9.0,72,2.85 +16424,95.0,10.0,9.0,10.0,9.0,10.0,9.0,31,1.45 +3131,100.0,9.0,9.0,10.0,10.0,8.0,9.0,2,0.09 +69749,100.0,10.0,10.0,10.0,10.0,9.0,10.0,21,0.85 +53570,100.0,10.0,10.0,10.0,10.0,10.0,10.0,26,1.03 +22905,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +4347,86.0,9.0,8.0,9.0,9.0,8.0,9.0,44,1.71 +26049,92.0,9.0,10.0,9.0,10.0,10.0,9.0,44,1.72 +69019,94.0,10.0,9.0,10.0,10.0,10.0,9.0,10,0.42 +50563,87.0,9.0,10.0,9.0,8.0,9.0,9.0,3,0.18 +6739,89.0,9.0,8.0,10.0,10.0,9.0,9.0,15,0.62 +61306,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.13 +2110,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.77 +41592,84.0,9.0,8.0,10.0,10.0,9.0,8.0,5,0.21 +51302,95.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.35 +47358,92.0,9.0,9.0,10.0,10.0,10.0,10.0,10,0.39 +10928,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.13 +43423,89.0,9.0,9.0,9.0,9.0,10.0,8.0,10,0.48 +36676,92.0,9.0,10.0,10.0,9.0,10.0,9.0,10,0.75 +48586,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.17 +3148,40.0,4.0,2.0,8.0,8.0,8.0,2.0,1,1.0 +53716,80.0,8.0,10.0,10.0,8.0,10.0,10.0,1,0.06 +28223,,,,,,,,0, +39038,93.0,10.0,10.0,9.0,10.0,9.0,9.0,6,0.24 +68475,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.55 +62225,90.0,9.0,10.0,9.0,9.0,10.0,9.0,29,1.14 +70414,,,,,,,,0, +33320,100.0,10.0,10.0,10.0,10.0,10.0,10.0,22,0.87 +33452,95.0,10.0,10.0,10.0,9.0,9.0,10.0,15,0.64 +60101,99.0,10.0,10.0,10.0,10.0,10.0,10.0,58,2.29 +76345,99.0,10.0,10.0,10.0,10.0,10.0,10.0,31,1.77 +16727,92.0,9.0,10.0,9.0,10.0,10.0,9.0,14,0.59 +28258,80.0,8.0,8.0,10.0,10.0,6.0,8.0,1,0.04 +72041,88.0,9.0,7.0,10.0,10.0,8.0,8.0,5,0.2 +54328,100.0,10.0,10.0,10.0,10.0,8.0,10.0,5,0.84 +15829,,,,,,,,0, +23837,100.0,10.0,10.0,10.0,10.0,8.0,,1,0.04 +74264,,,,,,,,0, +15125,,,,,,,,0, +29611,85.0,9.0,9.0,9.0,9.0,9.0,9.0,12,0.48 +50735,,,,,,,,0, +7635,,,,,,,,0, +1026,,,,,,,,2,0.08 +48132,,,,,,,,0, +5209,91.0,9.0,10.0,10.0,10.0,10.0,9.0,12,0.51 +1906,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.47 +37406,97.0,10.0,9.0,10.0,10.0,10.0,10.0,15,0.6 +21343,100.0,10.0,9.0,10.0,10.0,9.0,10.0,2,0.08 +68389,,,,,,,,0, +24460,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.01 +76193,,,,,,,,0, +65875,95.0,10.0,9.0,10.0,10.0,10.0,10.0,131,5.13 +77055,98.0,10.0,10.0,10.0,10.0,9.0,10.0,19,0.75 +9019,89.0,9.0,9.0,10.0,10.0,10.0,9.0,57,2.22 +24722,95.0,9.0,9.0,10.0,9.0,9.0,9.0,22,9.57 +28489,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.11 +56815,,,,,,,,0, +33532,98.0,10.0,10.0,10.0,10.0,10.0,10.0,26,1.05 +67922,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.31 +33823,98.0,10.0,10.0,10.0,10.0,10.0,10.0,49,1.97 +11784,85.0,10.0,9.0,10.0,10.0,10.0,9.0,12,0.47 +43269,97.0,10.0,10.0,9.0,10.0,9.0,9.0,20,0.98 +849,,,,,,,,0, +42573,,,,,,,,0, +34249,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +10279,,,,,,,,0, +69155,91.0,9.0,10.0,10.0,10.0,9.0,9.0,10,0.55 +28228,,,,,,,,0, +56950,,,,,,,,0, +7992,98.0,10.0,10.0,10.0,10.0,10.0,9.0,13,0.53 +14868,94.0,10.0,10.0,9.0,10.0,9.0,9.0,37,1.45 +5624,99.0,10.0,10.0,10.0,10.0,10.0,10.0,75,3.08 +71636,87.0,9.0,9.0,8.0,9.0,8.0,9.0,3,0.16 +47004,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.05 +20456,,,,,,,,0, +23545,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.12 +56153,85.0,10.0,8.0,9.0,9.0,8.0,8.0,11,0.44 +22526,64.0,7.0,7.0,8.0,6.0,10.0,5.0,5,0.2 +29396,,,,,,,,0, +12043,,,,,,,,0, +7176,,,,,,,,0, +31343,90.0,9.0,10.0,10.0,10.0,10.0,9.0,2,0.08 +33048,92.0,10.0,10.0,10.0,10.0,10.0,9.0,21,0.9 +7428,88.0,10.0,9.0,9.0,10.0,9.0,8.0,5,0.25 +13311,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.1 +26412,90.0,10.0,10.0,10.0,10.0,9.0,9.0,2,0.1 +54839,70.0,9.0,6.0,10.0,8.0,9.0,7.0,2,0.61 +23452,100.0,10.0,8.0,10.0,10.0,8.0,10.0,1,0.04 +10970,98.0,10.0,10.0,10.0,10.0,9.0,10.0,13,0.59 +20459,93.0,10.0,9.0,10.0,10.0,10.0,9.0,13,0.54 +56778,86.0,8.0,8.0,9.0,9.0,9.0,8.0,24,0.98 +51759,78.0,9.0,8.0,9.0,8.0,10.0,8.0,12,0.48 +6304,80.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.39 +50818,,,,,,,,0, +20177,,,,,,,,0, +7262,96.0,10.0,9.0,9.0,10.0,9.0,10.0,5,0.29 +30616,100.0,10.0,9.0,9.0,10.0,10.0,10.0,2,0.11 +13036,93.0,10.0,10.0,10.0,10.0,9.0,9.0,59,2.34 +49799,90.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.31 +55424,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.43 +18918,100.0,10.0,10.0,10.0,10.0,10.0,10.0,66,2.57 +43213,,,,,,,,0, +42493,,,,,,,,0, +18209,94.0,10.0,9.0,10.0,10.0,10.0,10.0,26,1.02 +52137,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.27 +19438,,,,,,,,0, +75348,,,,,,,,0, +54944,70.0,10.0,8.0,10.0,10.0,8.0,8.0,2,0.11 +75550,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +42013,100.0,9.0,9.0,10.0,10.0,9.0,10.0,3,0.12 +7719,100.0,10.0,10.0,10.0,10.0,9.0,10.0,10,0.55 +20104,,,,,,,,0, +68515,96.0,10.0,9.0,10.0,10.0,9.0,9.0,5,0.27 +48504,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.23 +7668,99.0,10.0,10.0,10.0,10.0,10.0,10.0,32,1.31 +3704,93.0,10.0,9.0,10.0,10.0,10.0,10.0,14,0.55 +45245,100.0,10.0,10.0,9.0,10.0,10.0,8.0,5,0.21 +4058,93.0,10.0,9.0,10.0,10.0,10.0,9.0,39,1.56 +26176,92.0,10.0,9.0,9.0,10.0,10.0,9.0,105,4.17 +34795,97.0,10.0,10.0,10.0,10.0,10.0,10.0,45,1.77 +43307,96.0,10.0,10.0,10.0,10.0,10.0,10.0,95,3.75 +63023,98.0,10.0,10.0,9.0,9.0,9.0,9.0,35,1.48 +2161,99.0,10.0,10.0,10.0,10.0,10.0,10.0,20,0.79 +71844,,,,,,,,0, +28800,90.0,9.0,9.0,9.0,9.0,9.0,9.0,6,0.43 +72552,93.0,10.0,9.0,10.0,10.0,10.0,9.0,54,2.19 +53193,80.0,10.0,8.0,10.0,10.0,10.0,8.0,3,1.08 +45315,99.0,10.0,10.0,10.0,10.0,10.0,10.0,33,1.3 +61287,,,,,,,,0, +3139,92.0,9.0,9.0,9.0,10.0,10.0,9.0,29,1.15 +22692,,,,,,,,0, +24740,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.4 +66743,,,,,,,,0, +65842,97.0,10.0,10.0,10.0,10.0,9.0,10.0,91,3.57 +17367,,,,,,,,0, +52267,,,,,,,,0, +13053,80.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.04 +52998,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.08 +35233,,,,,,,,0, +12451,87.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.16 +3657,,,,,,,,0, +60356,90.0,9.0,9.0,10.0,10.0,10.0,8.0,4,0.19 +53546,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.16 +65522,100.0,10.0,8.0,10.0,10.0,8.0,10.0,2,0.08 +58432,87.0,9.0,9.0,9.0,9.0,10.0,9.0,53,2.07 +20563,80.0,8.0,10.0,10.0,10.0,8.0,,1,0.05 +47906,,,,,,,,0, +8535,,,,,,,,0, +26079,60.0,6.0,6.0,6.0,6.0,7.0,6.0,3,0.13 +66691,76.0,8.0,8.0,8.0,9.0,10.0,7.0,9,0.4 +51217,87.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.37 +75117,91.0,10.0,9.0,10.0,10.0,10.0,9.0,16,0.72 +45908,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.2 +56187,,,,,,,,0, +64279,,,,,,,,0, +42120,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.15 +31486,88.0,9.0,9.0,10.0,10.0,10.0,10.0,5,0.22 +16371,60.0,7.0,6.0,6.0,9.0,10.0,7.0,4,0.76 +40335,52.0,6.0,5.0,6.0,7.0,10.0,5.0,5,0.21 +65841,97.0,10.0,10.0,10.0,10.0,10.0,10.0,31,1.23 +46315,99.0,10.0,10.0,10.0,10.0,10.0,10.0,21,1.15 +11807,,,,,,,,0, +5404,85.0,9.0,8.0,10.0,9.0,9.0,9.0,12,0.5 +69235,98.0,10.0,10.0,10.0,10.0,10.0,10.0,27,1.06 +24242,93.0,10.0,9.0,10.0,10.0,10.0,9.0,3,0.32 +44562,93.0,10.0,10.0,9.0,10.0,10.0,9.0,37,1.46 +48856,96.0,10.0,9.0,10.0,10.0,10.0,9.0,10,0.42 +70642,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.16 +58026,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +11386,95.0,10.0,9.0,10.0,10.0,9.0,9.0,48,1.87 +39721,85.0,9.0,9.0,9.0,9.0,9.0,9.0,8,0.33 +32676,96.0,10.0,9.0,10.0,10.0,9.0,10.0,39,1.74 +11570,99.0,10.0,9.0,10.0,10.0,10.0,10.0,15,0.62 +74343,98.0,10.0,10.0,10.0,10.0,10.0,10.0,49,2.71 +45915,96.0,10.0,9.0,9.0,10.0,10.0,9.0,34,1.36 +20934,99.0,10.0,10.0,10.0,10.0,9.0,9.0,16,0.63 +45616,99.0,10.0,10.0,10.0,10.0,9.0,10.0,44,1.82 +11981,100.0,10.0,10.0,9.0,10.0,10.0,10.0,6,0.25 +54639,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.2 +11875,98.0,10.0,10.0,10.0,10.0,10.0,10.0,79,3.12 +4818,,,,,,,,0, +26628,100.0,,10.0,,,,,1,0.06 +26708,98.0,10.0,9.0,10.0,10.0,10.0,10.0,22,0.87 +24459,,,,,,,,1,0.05 +9210,95.0,10.0,9.0,10.0,10.0,10.0,9.0,53,2.1 +41560,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.44 +45155,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.24 +73051,99.0,10.0,10.0,10.0,10.0,9.0,10.0,39,1.52 +41930,,,,,,,,0, +14285,85.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.17 +19120,,,,,,,,0, +59136,95.0,10.0,10.0,10.0,10.0,10.0,9.0,38,1.5 +52342,97.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.29 +22232,96.0,10.0,9.0,10.0,10.0,10.0,9.0,88,3.53 +22172,100.0,10.0,8.0,6.0,10.0,8.0,8.0,1,0.57 +1424,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +75633,93.0,9.0,9.0,10.0,10.0,10.0,9.0,14,0.58 +28438,88.0,9.0,10.0,9.0,10.0,10.0,9.0,8,0.57 +76141,90.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.08 +69929,95.0,10.0,9.0,10.0,10.0,10.0,10.0,8,0.41 +34683,98.0,10.0,10.0,10.0,10.0,10.0,9.0,24,1.03 +56089,,,,,,,,0, +36298,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.32 +30443,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.54 +53087,94.0,9.0,9.0,10.0,10.0,9.0,10.0,32,1.28 +40161,97.0,10.0,10.0,10.0,10.0,10.0,10.0,45,1.81 +7010,99.0,10.0,10.0,10.0,10.0,10.0,10.0,23,0.91 +39734,98.0,10.0,10.0,10.0,10.0,10.0,10.0,48,2.36 +12930,,,,,,,,1,0.53 +65470,100.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.17 +25531,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.34 +28657,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.17 +7121,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.56 +75022,97.0,10.0,10.0,10.0,10.0,10.0,10.0,71,2.9 +45328,100.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.66 +5283,,,,,,,,0, +45557,,,,,,,,0, +34819,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.3 +29787,93.0,10.0,9.0,9.0,9.0,9.0,10.0,10,0.5 +61449,98.0,10.0,10.0,10.0,10.0,9.0,10.0,14,0.67 +46823,95.0,10.0,10.0,10.0,10.0,10.0,10.0,25,1.56 +33047,90.0,9.0,8.0,10.0,10.0,10.0,9.0,135,5.36 +26125,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.41 +5977,99.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.59 +52169,,,,,,,,0, +4334,96.0,10.0,9.0,10.0,10.0,10.0,10.0,17,0.68 +28046,96.0,10.0,9.0,9.0,9.0,9.0,9.0,9,0.35 +44954,100.0,9.0,9.0,10.0,10.0,9.0,10.0,4,0.18 +15272,87.0,10.0,9.0,10.0,10.0,9.0,9.0,3,0.12 +68557,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.28 +34219,99.0,10.0,10.0,10.0,10.0,10.0,10.0,32,1.27 +55484,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.2 +27699,95.0,10.0,9.0,10.0,10.0,10.0,10.0,11,0.45 +53356,,,,,,,,0, +15819,96.0,10.0,9.0,10.0,10.0,10.0,10.0,39,1.56 +72544,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.17 +57772,100.0,10.0,10.0,10.0,10.0,10.0,9.0,7,0.35 +3535,85.0,9.0,8.0,9.0,9.0,9.0,9.0,43,1.71 +43926,90.0,9.0,8.0,9.0,10.0,10.0,9.0,2,0.1 +32983,,,,,,,,2,0.08 +74125,100.0,10.0,10.0,10.0,10.0,10.0,10.0,42,1.86 +33785,96.0,10.0,10.0,10.0,10.0,9.0,9.0,10,1.74 +64575,90.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.16 +5166,,,,,,,,0, +56984,,,,,,,,0, +29913,73.0,8.0,10.0,8.0,7.0,10.0,7.0,3,0.15 +13518,86.0,9.0,10.0,9.0,9.0,8.0,9.0,18,0.74 +8872,100.0,9.0,10.0,10.0,10.0,9.0,6.0,3,0.13 +6660,94.0,10.0,9.0,9.0,10.0,9.0,9.0,20,0.81 +47162,,,,,,,,0, +65646,94.0,10.0,10.0,10.0,10.0,9.0,10.0,10,0.4 +42679,95.0,10.0,10.0,10.0,10.0,9.0,10.0,68,2.71 +56070,93.0,10.0,10.0,10.0,10.0,10.0,9.0,48,3.17 +73541,95.0,10.0,10.0,10.0,10.0,9.0,9.0,55,2.16 +1460,99.0,10.0,10.0,10.0,10.0,10.0,10.0,45,2.12 +45423,92.0,10.0,9.0,8.0,8.0,8.0,9.0,5,0.21 +71199,,,,,,,,0, +13301,99.0,10.0,9.0,10.0,10.0,9.0,10.0,16,0.68 +65786,97.0,10.0,10.0,10.0,10.0,10.0,10.0,23,1.13 +22808,100.0,10.0,10.0,,10.0,,,1,0.04 +29032,94.0,10.0,10.0,10.0,9.0,9.0,9.0,22,0.87 +56276,98.0,10.0,10.0,10.0,10.0,10.0,10.0,60,2.77 +49932,87.0,9.0,9.0,9.0,9.0,9.0,9.0,40,1.57 +2554,,,,,,,,0, +12526,90.0,9.0,9.0,10.0,10.0,10.0,9.0,35,1.44 +3885,87.0,9.0,9.0,10.0,9.0,9.0,7.0,3,0.14 +65502,95.0,9.0,10.0,10.0,10.0,10.0,9.0,11,0.47 +23454,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.45 +74403,,,,,,,,0, +71511,99.0,10.0,10.0,10.0,10.0,10.0,10.0,21,1.5 +21076,96.0,10.0,9.0,10.0,10.0,10.0,9.0,18,0.73 +13007,94.0,10.0,10.0,9.0,10.0,10.0,10.0,15,0.61 +17064,,,,,,,,0, +28021,92.0,10.0,9.0,10.0,10.0,9.0,10.0,41,1.75 +60464,97.0,10.0,10.0,10.0,10.0,10.0,9.0,7,0.73 +67750,92.0,10.0,9.0,10.0,10.0,9.0,9.0,103,4.09 +11433,93.0,10.0,9.0,10.0,10.0,10.0,9.0,57,2.3 +25741,92.0,9.0,9.0,10.0,10.0,9.0,9.0,55,2.19 +40719,95.0,10.0,10.0,10.0,10.0,9.0,10.0,78,3.1 +13847,87.0,9.0,9.0,9.0,9.0,9.0,9.0,3,0.12 +58920,90.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.74 +42198,,,,,,,,0, +51405,98.0,10.0,10.0,10.0,10.0,10.0,9.0,19,0.78 +48443,99.0,10.0,10.0,10.0,10.0,10.0,10.0,26,1.1 +53285,82.0,8.0,8.0,9.0,10.0,10.0,8.0,34,1.34 +44284,97.0,10.0,10.0,10.0,10.0,9.0,10.0,14,0.56 +43641,92.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.2 +5909,87.0,9.0,9.0,10.0,10.0,10.0,9.0,23,0.97 +4707,88.0,9.0,7.0,10.0,9.0,9.0,9.0,8,0.34 +22051,,,,,,,,0, +21292,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +41096,80.0,10.0,8.0,10.0,10.0,9.0,7.0,2,0.23 +20540,97.0,10.0,10.0,10.0,10.0,10.0,10.0,20,1.26 +13956,86.0,8.0,8.0,10.0,9.0,9.0,8.0,20,0.82 +29558,,,,,,,,0, +10490,96.0,10.0,10.0,10.0,10.0,9.0,10.0,41,1.74 +1982,92.0,9.0,10.0,10.0,10.0,9.0,10.0,6,0.25 +65402,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +72477,93.0,10.0,9.0,10.0,10.0,9.0,9.0,6,0.33 +31731,100.0,10.0,10.0,10.0,10.0,10.0,9.0,28,1.12 +35446,,,,,,,,0, +67595,100.0,10.0,10.0,10.0,10.0,10.0,10.0,20,0.83 +2414,,,,,,,,0, +63483,100.0,10.0,10.0,9.0,10.0,10.0,10.0,3,0.13 +17161,97.0,10.0,10.0,10.0,10.0,10.0,9.0,12,0.47 +16715,89.0,9.0,10.0,9.0,9.0,10.0,9.0,30,1.19 +15785,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.43 +66020,100.0,10.0,10.0,10.0,10.0,10.0,10.0,27,1.15 +76431,98.0,10.0,9.0,10.0,10.0,10.0,9.0,19,1.77 +55184,,,,,,,,0, +29228,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.59 +4969,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.63 +5077,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +14489,,,,,,,,0, +48153,,,,,,,,0, +27258,40.0,2.0,6.0,2.0,4.0,10.0,6.0,1,0.04 +14218,93.0,9.0,10.0,10.0,10.0,9.0,9.0,20,0.83 +39564,88.0,10.0,8.0,10.0,10.0,10.0,9.0,6,0.24 +45701,94.0,10.0,9.0,10.0,10.0,10.0,9.0,7,0.3 +36649,86.0,9.0,8.0,9.0,10.0,9.0,9.0,16,0.64 +65984,96.0,10.0,8.0,10.0,10.0,10.0,9.0,30,1.27 +63975,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.45 +36599,100.0,10.0,9.0,10.0,10.0,9.0,9.0,3,0.13 +12698,100.0,10.0,10.0,10.0,9.0,10.0,10.0,5,0.2 +57549,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +27278,,,,,,,,1,0.04 +24949,100.0,10.0,10.0,10.0,10.0,9.0,10.0,18,0.74 +12194,95.0,10.0,9.0,10.0,10.0,10.0,9.0,20,0.83 +46765,98.0,10.0,10.0,10.0,10.0,9.0,10.0,10,0.43 +32784,93.0,9.0,10.0,10.0,9.0,10.0,10.0,3,0.12 +25390,79.0,8.0,8.0,9.0,10.0,9.0,8.0,33,1.32 +6205,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.2 +67589,87.0,9.0,9.0,9.0,10.0,9.0,9.0,6,0.24 +45058,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.36 +19714,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +62459,,,,,,,,0, +9133,100.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.17 +49159,96.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.31 +76826,93.0,9.0,9.0,10.0,10.0,9.0,9.0,6,0.41 +54066,97.0,10.0,10.0,10.0,10.0,10.0,9.0,21,0.93 +27901,,,,,,,,2,0.08 +1348,,,,,,,,0, +23426,100.0,10.0,8.0,10.0,10.0,8.0,8.0,3,0.17 +2510,92.0,10.0,10.0,9.0,10.0,9.0,9.0,22,0.88 +15551,,,,,,,,0, +61635,93.0,10.0,9.0,10.0,10.0,9.0,9.0,151,6.03 +82,90.0,9.0,9.0,10.0,10.0,10.0,9.0,60,2.42 +54435,97.0,10.0,10.0,10.0,10.0,10.0,10.0,29,1.15 +9308,100.0,10.0,10.0,,10.0,,,1,0.04 +28624,90.0,9.0,9.0,9.0,10.0,10.0,9.0,102,4.0 +11083,98.0,10.0,10.0,10.0,10.0,9.0,10.0,21,0.85 +65033,93.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.26 +68445,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.64 +64994,96.0,10.0,10.0,10.0,10.0,9.0,10.0,32,1.46 +22826,92.0,10.0,9.0,10.0,10.0,10.0,9.0,26,1.1 +35236,60.0,6.0,4.0,10.0,10.0,8.0,6.0,2,0.08 +58282,92.0,9.0,10.0,10.0,10.0,10.0,9.0,57,2.26 +18101,,,,,,,,0, +28534,,,,,,,,0, +54684,,,,,,,,0, +62640,96.0,10.0,10.0,10.0,10.0,9.0,10.0,17,0.69 +38771,86.0,10.0,8.0,10.0,10.0,9.0,9.0,7,0.3 +70480,100.0,10.0,10.0,10.0,10.0,9.0,9.0,2,0.08 +74799,100.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.72 +74890,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +14406,84.0,8.0,6.0,9.0,9.0,9.0,8.0,9,0.37 +57910,,,,,,,,0, +65865,,,,,,,,0, +43965,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.08 +52213,92.0,9.0,9.0,10.0,10.0,10.0,9.0,54,2.15 +17709,95.0,10.0,10.0,9.0,9.0,10.0,10.0,11,0.53 +38409,,,,,,,,0, +73672,,,,,,,,0, +72840,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.08 +61927,80.0,9.0,7.0,9.0,9.0,9.0,8.0,3,0.14 +55822,,,,,,,,0, +31848,92.0,10.0,9.0,7.0,9.0,10.0,9.0,6,1.07 +56767,94.0,9.0,9.0,10.0,10.0,10.0,9.0,40,1.59 +19580,,,,,,,,0, +48473,,,,,,,,0, +21489,,,,,,,,0, +67421,88.0,9.0,9.0,9.0,10.0,9.0,8.0,29,1.53 +42635,100.0,9.0,10.0,10.0,10.0,10.0,10.0,4,0.16 +31771,90.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.19 +52087,100.0,8.0,10.0,10.0,10.0,10.0,8.0,1,0.41 +11857,100.0,10.0,10.0,10.0,8.0,10.0,10.0,1,0.07 +45092,92.0,9.0,9.0,10.0,10.0,10.0,9.0,23,1.0 +14570,,,,,,,,0, +29478,,,,,,,,0, +65732,85.0,9.0,9.0,10.0,10.0,9.0,9.0,107,4.31 +14332,97.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.77 +53422,88.0,9.0,9.0,10.0,10.0,10.0,9.0,111,4.45 +14102,99.0,10.0,10.0,10.0,10.0,10.0,10.0,30,1.35 +52689,92.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.25 +11894,,,,,,,,0, +31029,96.0,10.0,10.0,10.0,10.0,10.0,9.0,22,0.89 +70763,,,,,,,,0, +37844,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +9119,100.0,10.0,9.0,10.0,10.0,10.0,10.0,8,0.31 +31457,,,,,,,,0, +43562,,,,,,,,0, +64273,,,,,,,,0, +76864,99.0,10.0,10.0,10.0,10.0,10.0,10.0,19,0.77 +29978,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +66360,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.76 +27616,90.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.09 +64861,94.0,9.0,9.0,9.0,10.0,10.0,9.0,7,0.43 +63007,,,,,,,,1,0.04 +24252,,,,,,,,0, +51500,97.0,10.0,9.0,10.0,10.0,10.0,10.0,12,0.48 +77077,,,,,,,,0, +3973,,,,,,,,0, +781,100.0,10.0,10.0,10.0,10.0,9.0,9.0,10,0.54 +26685,60.0,5.0,5.0,8.0,8.0,9.0,8.0,3,0.12 +14465,98.0,10.0,10.0,10.0,10.0,9.0,10.0,31,1.24 +72559,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.28 +35695,95.0,10.0,9.0,10.0,10.0,9.0,9.0,91,3.68 +10695,94.0,10.0,10.0,9.0,10.0,9.0,9.0,31,1.26 +65665,93.0,10.0,10.0,10.0,10.0,9.0,9.0,24,0.95 +5925,,,,,,,,0, +22787,,,,,,,,0, +29989,93.0,10.0,10.0,10.0,10.0,9.0,10.0,18,1.93 +43291,,,,,,,,1,0.07 +56990,95.0,10.0,9.0,10.0,10.0,8.0,10.0,9,0.36 +26961,,,,,,,,0, +74766,89.0,10.0,9.0,9.0,9.0,10.0,9.0,22,0.89 +29534,93.0,10.0,10.0,10.0,10.0,8.0,10.0,3,0.13 +1016,,,,,,,,0, +35808,97.0,10.0,10.0,9.0,9.0,9.0,9.0,23,0.94 +28748,97.0,10.0,10.0,10.0,10.0,9.0,9.0,13,0.55 +8681,100.0,10.0,10.0,10.0,10.0,10.0,10.0,36,1.47 +60214,93.0,9.0,9.0,9.0,10.0,9.0,9.0,7,0.28 +664,93.0,10.0,10.0,10.0,10.0,10.0,9.0,20,0.83 +24743,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.37 +61475,77.0,9.0,8.0,9.0,9.0,8.0,8.0,7,0.28 +28732,98.0,10.0,10.0,10.0,10.0,10.0,10.0,22,0.88 +74933,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.17 +42755,93.0,10.0,9.0,10.0,10.0,10.0,9.0,3,0.13 +62367,94.0,10.0,9.0,10.0,10.0,9.0,9.0,20,0.84 +65516,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.13 +58420,87.0,9.0,10.0,10.0,10.0,9.0,10.0,9,0.36 +54470,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +39671,96.0,9.0,10.0,10.0,10.0,9.0,9.0,22,0.99 +36235,96.0,9.0,9.0,10.0,10.0,9.0,9.0,7,0.28 +12287,95.0,10.0,9.0,9.0,10.0,10.0,10.0,19,0.77 +33999,83.0,8.0,8.0,9.0,9.0,9.0,9.0,16,0.65 +42988,100.0,10.0,10.0,8.0,8.0,8.0,10.0,2,0.08 +69956,89.0,9.0,8.0,10.0,10.0,9.0,9.0,23,0.93 +55989,91.0,9.0,8.0,10.0,10.0,9.0,9.0,45,1.79 +25381,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,1.46 +23274,98.0,10.0,10.0,10.0,10.0,10.0,10.0,27,1.06 +12818,89.0,10.0,9.0,9.0,10.0,10.0,9.0,21,0.89 +55691,100.0,10.0,10.0,10.0,10.0,8.0,10.0,2,0.08 +44384,,,,,,,,0, +38178,98.0,10.0,9.0,10.0,10.0,10.0,9.0,10,0.42 +25302,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.08 +14776,96.0,9.0,9.0,9.0,9.0,9.0,9.0,14,0.84 +14627,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.11 +49472,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.25 +33050,99.0,10.0,10.0,10.0,10.0,10.0,10.0,227,9.93 +12581,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.26 +15723,,,,,,,,0, +6331,95.0,9.0,10.0,10.0,9.0,10.0,10.0,4,0.16 +20680,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.52 +70561,80.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.2 +34789,73.0,9.0,7.0,10.0,9.0,8.0,8.0,3,0.13 +42019,93.0,10.0,9.0,10.0,10.0,9.0,9.0,46,1.85 +9575,83.0,9.0,9.0,9.0,9.0,8.0,9.0,12,0.48 +55721,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.08 +17956,89.0,9.0,9.0,9.0,9.0,9.0,9.0,25,0.99 +35320,90.0,9.0,9.0,9.0,9.0,10.0,9.0,49,1.93 +32792,93.0,10.0,9.0,10.0,10.0,9.0,9.0,20,0.98 +72535,95.0,9.0,9.0,10.0,10.0,8.0,10.0,5,0.24 +68622,98.0,10.0,10.0,10.0,10.0,10.0,9.0,17,0.68 +68439,99.0,10.0,10.0,10.0,10.0,10.0,10.0,27,1.07 +3217,90.0,9.0,10.0,9.0,10.0,10.0,8.0,2,0.08 +65159,86.0,9.0,8.0,10.0,9.0,10.0,9.0,34,1.37 +46206,,,,,,,,0, +23556,99.0,10.0,10.0,9.0,10.0,10.0,9.0,21,0.93 +30414,92.0,10.0,9.0,10.0,9.0,10.0,9.0,72,2.91 +33746,,,,,,,,1,0.04 +26036,99.0,10.0,10.0,10.0,10.0,10.0,10.0,19,0.8 +59410,93.0,10.0,9.0,10.0,10.0,10.0,9.0,4,0.16 +6778,100.0,10.0,8.0,10.0,10.0,8.0,8.0,1,0.04 +48895,98.0,10.0,10.0,10.0,10.0,9.0,10.0,17,0.7 +27955,99.0,10.0,10.0,10.0,10.0,10.0,10.0,63,3.07 +63872,94.0,9.0,10.0,10.0,10.0,9.0,9.0,35,1.39 +58016,,,,,,,,0, +42871,67.0,7.0,7.0,10.0,9.0,10.0,8.0,3,0.12 +48392,89.0,10.0,9.0,10.0,10.0,9.0,9.0,72,2.86 +76483,94.0,10.0,9.0,10.0,10.0,9.0,9.0,18,0.73 +21952,96.0,10.0,9.0,10.0,10.0,10.0,10.0,19,0.84 +20324,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.25 +39216,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.52 +1585,94.0,9.0,10.0,10.0,10.0,9.0,10.0,11,0.47 +18224,90.0,10.0,9.0,10.0,9.0,9.0,9.0,3,0.14 +12767,92.0,10.0,9.0,10.0,9.0,9.0,9.0,77,3.08 +50697,96.0,10.0,9.0,10.0,10.0,10.0,10.0,60,2.38 +65768,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,1.22 +39918,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +42326,,,,,,,,0, +57243,,,,,,,,0, +52391,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.75 +17051,96.0,10.0,10.0,10.0,10.0,10.0,10.0,38,1.5 +42877,97.0,10.0,10.0,10.0,10.0,9.0,9.0,41,1.74 +2615,,,,,,,,0, +72393,,,,,,,,0, +61288,97.0,10.0,9.0,10.0,10.0,10.0,10.0,30,1.48 +74347,88.0,9.0,9.0,10.0,10.0,9.0,9.0,75,2.98 +66598,,,,,,,,0, +71810,93.0,9.0,9.0,10.0,10.0,9.0,9.0,3,0.12 +18164,98.0,10.0,10.0,10.0,10.0,9.0,10.0,71,2.84 +22759,89.0,9.0,9.0,10.0,9.0,10.0,9.0,8,0.32 +18947,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.11 +64180,90.0,9.0,8.0,10.0,10.0,9.0,9.0,5,0.2 +22677,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.66 +35807,90.0,9.0,10.0,10.0,10.0,9.0,10.0,5,0.2 +75686,,,,,,,,0, +10075,89.0,8.0,10.0,9.0,10.0,8.0,9.0,9,0.36 +50637,,,,,,,,0, +11429,96.0,10.0,10.0,10.0,10.0,9.0,10.0,51,2.03 +937,80.0,7.0,7.0,8.0,9.0,9.0,9.0,2,0.09 +33812,67.0,9.0,4.0,9.0,9.0,9.0,5.0,3,0.13 +52819,,,,,,,,0, +76273,77.0,9.0,8.0,9.0,9.0,9.0,9.0,7,0.3 +64506,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.29 +56715,90.0,9.0,9.0,8.0,10.0,9.0,9.0,3,0.12 +62184,,,,,,,,1,0.05 +51577,88.0,9.0,8.0,10.0,10.0,9.0,9.0,75,2.98 +29101,98.0,10.0,10.0,9.0,9.0,10.0,9.0,10,0.4 +64615,95.0,10.0,9.0,10.0,10.0,10.0,10.0,22,0.9 +73550,,,,,,,,0, +23923,98.0,10.0,10.0,10.0,10.0,10.0,9.0,33,1.34 +76163,100.0,10.0,10.0,10.0,10.0,10.0,10.0,71,3.31 +16392,93.0,9.0,9.0,10.0,10.0,9.0,9.0,3,0.18 +71205,91.0,10.0,9.0,10.0,10.0,9.0,9.0,79,3.14 +23316,96.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.48 +16418,88.0,9.0,9.0,10.0,10.0,9.0,9.0,74,2.94 +63097,,,,,,,,0, +16747,,,,,,,,0, +53,90.0,9.0,10.0,9.0,8.0,9.0,9.0,8,0.33 +10538,90.0,9.0,9.0,9.0,9.0,9.0,9.0,9,0.43 +53677,96.0,10.0,9.0,9.0,9.0,10.0,10.0,11,0.57 +60471,90.0,9.0,9.0,9.0,9.0,9.0,9.0,24,0.97 +44780,95.0,10.0,9.0,10.0,10.0,10.0,9.0,48,1.94 +20278,80.0,9.0,8.0,10.0,9.0,9.0,8.0,3,0.19 +34127,100.0,9.0,10.0,10.0,10.0,10.0,10.0,2,0.08 +54003,,,,,,,,0, +43373,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.39 +51977,90.0,10.0,10.0,8.0,10.0,10.0,10.0,2,0.11 +73398,,,,,,,,0, +56288,,,,,,,,0, +57394,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.18 +506,92.0,10.0,9.0,10.0,10.0,9.0,9.0,103,4.13 +37899,87.0,9.0,9.0,10.0,9.0,9.0,9.0,11,3.2 +25614,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.24 +30374,98.0,10.0,10.0,10.0,10.0,10.0,10.0,48,2.01 +15788,98.0,10.0,10.0,10.0,10.0,10.0,10.0,44,1.9 +47096,,,,,,,,0, +27153,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +67811,86.0,9.0,8.0,9.0,9.0,9.0,9.0,7,0.32 +13340,80.0,8.0,6.0,10.0,9.0,8.0,7.0,5,0.2 +57550,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.09 +20437,100.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.74 +70394,87.0,9.0,8.0,9.0,9.0,10.0,9.0,8,0.32 +9176,,,,,,,,0, +76214,,,,,,,,0, +56018,96.0,10.0,10.0,9.0,10.0,10.0,9.0,27,1.09 +46569,96.0,10.0,10.0,10.0,10.0,10.0,10.0,46,1.84 +63518,73.0,7.0,10.0,10.0,8.0,7.0,7.0,3,0.12 +35820,91.0,10.0,9.0,10.0,9.0,9.0,10.0,9,0.42 +52723,,,,,,,,1,0.09 +42820,94.0,10.0,10.0,10.0,10.0,9.0,9.0,10,0.4 +21966,94.0,10.0,9.0,10.0,10.0,9.0,9.0,32,1.66 +12274,91.0,9.0,10.0,10.0,10.0,9.0,9.0,7,0.28 +1054,90.0,10.0,9.0,10.0,10.0,9.0,10.0,6,0.32 +20257,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +19160,96.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.62 +66503,80.0,8.0,10.0,8.0,9.0,8.0,9.0,6,0.26 +32981,,,,,,,,0, +36189,89.0,9.0,9.0,10.0,10.0,9.0,10.0,14,0.61 +63265,98.0,10.0,10.0,10.0,10.0,10.0,10.0,33,1.31 +7512,85.0,9.0,8.0,10.0,10.0,9.0,9.0,33,1.31 +43768,93.0,10.0,9.0,10.0,10.0,10.0,9.0,25,1.02 +47264,80.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.3 +52623,94.0,9.0,9.0,10.0,10.0,9.0,9.0,63,2.5 +21288,100.0,10.0,10.0,8.0,8.0,10.0,8.0,1,0.05 +52024,88.0,9.0,9.0,10.0,10.0,10.0,9.0,37,1.51 +66754,,,,,,,,0, +947,,,,,,,,0, +67119,,,,,,,,0, +50660,86.0,9.0,9.0,9.0,10.0,10.0,9.0,17,0.69 +14715,94.0,9.0,9.0,10.0,10.0,9.0,9.0,25,1.01 +38927,96.0,10.0,9.0,10.0,10.0,10.0,10.0,38,1.83 +76204,94.0,10.0,10.0,9.0,9.0,9.0,10.0,39,1.55 +75240,90.0,10.0,9.0,9.0,10.0,9.0,9.0,21,0.92 +54963,91.0,9.0,10.0,9.0,10.0,9.0,9.0,19,1.12 +73678,,,,,,,,0, +6587,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,2.61 +67627,96.0,10.0,9.0,10.0,10.0,10.0,10.0,27,1.08 +44577,99.0,10.0,10.0,10.0,10.0,10.0,10.0,23,3.92 +16885,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.12 +21864,93.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.13 +52909,93.0,10.0,10.0,9.0,9.0,10.0,9.0,8,0.34 +42591,99.0,10.0,10.0,10.0,10.0,10.0,10.0,50,2.05 +54190,85.0,9.0,8.0,10.0,10.0,10.0,9.0,29,1.21 +40281,98.0,10.0,10.0,10.0,10.0,9.0,10.0,90,3.61 +23797,93.0,9.0,9.0,10.0,10.0,8.0,8.0,6,0.24 +68893,94.0,9.0,9.0,10.0,9.0,9.0,9.0,14,0.57 +31072,,,,,,,,0, +19475,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.08 +58966,79.0,8.0,9.0,9.0,9.0,10.0,8.0,18,0.74 +32071,87.0,9.0,9.0,9.0,10.0,9.0,9.0,52,2.08 +62600,86.0,9.0,9.0,9.0,9.0,9.0,9.0,7,0.48 +47084,92.0,10.0,9.0,10.0,9.0,10.0,10.0,42,1.66 +5351,97.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.32 +21682,80.0,8.0,9.0,10.0,10.0,10.0,8.0,2,0.11 +56694,90.0,9.0,9.0,8.0,10.0,10.0,8.0,3,0.13 +35542,84.0,9.0,9.0,10.0,10.0,9.0,9.0,66,2.65 +18844,,,,,,,,0, +39640,,,,,,,,0, +71054,,,,,,,,0, +76761,98.0,10.0,10.0,10.0,10.0,9.0,10.0,11,0.44 +20086,,,,,,,,0, +26339,95.0,10.0,10.0,9.0,10.0,10.0,9.0,17,0.7 +35337,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +49688,70.0,8.0,7.0,8.0,10.0,10.0,6.0,2,0.14 +27209,84.0,9.0,9.0,9.0,8.0,9.0,9.0,20,0.8 +23537,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +29417,97.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.26 +17188,,,,,,,,0, +63572,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.12 +24440,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +26862,96.0,10.0,10.0,9.0,10.0,9.0,9.0,47,1.9 +58602,97.0,10.0,9.0,10.0,10.0,10.0,10.0,36,1.66 +31247,90.0,10.0,9.0,9.0,10.0,10.0,9.0,4,0.49 +72469,87.0,9.0,9.0,10.0,9.0,10.0,9.0,55,2.21 +49481,,,,,,,,0, +53068,88.0,9.0,9.0,9.0,9.0,10.0,9.0,20,1.07 +53547,,,,,,,,0, +62960,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.04 +18366,93.0,9.0,9.0,9.0,10.0,9.0,9.0,7,0.29 +29684,,,,,,,,0, +29096,93.0,10.0,9.0,9.0,10.0,9.0,9.0,32,1.28 +32462,,,,,,,,0, +71327,,,,,,,,0, +57702,92.0,10.0,9.0,10.0,9.0,9.0,9.0,56,2.27 +59589,90.0,9.0,10.0,10.0,10.0,10.0,9.0,6,0.36 +6504,92.0,10.0,9.0,10.0,10.0,10.0,10.0,52,2.09 +67601,80.0,9.0,9.0,10.0,10.0,9.0,9.0,2,0.12 +30213,99.0,10.0,10.0,10.0,10.0,10.0,10.0,23,0.92 +59073,93.0,10.0,9.0,10.0,10.0,9.0,9.0,87,3.49 +9732,95.0,9.0,9.0,10.0,10.0,10.0,9.0,4,0.61 +75692,,,,,,,,0, +21070,,,,,,,,0, +35790,90.0,8.0,8.0,8.0,8.0,6.0,8.0,2,0.08 +68182,95.0,9.0,10.0,10.0,9.0,9.0,10.0,4,0.16 +52703,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.25 +23753,,,,,,,,0, +17699,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.51 +50954,77.0,8.0,7.0,9.0,8.0,8.0,8.0,33,1.34 +22567,,,,,,,,0, +26043,96.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.68 +54290,70.0,6.0,6.0,6.0,5.0,6.0,7.0,2,0.11 +51110,100.0,8.0,10.0,8.0,8.0,8.0,8.0,3,0.14 +41702,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.41 +16044,97.0,10.0,9.0,10.0,10.0,10.0,10.0,23,0.93 +17619,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +18957,,,,,,,,0, +61317,100.0,10.0,10.0,10.0,10.0,4.0,8.0,3,0.12 +59267,93.0,9.0,10.0,10.0,10.0,10.0,9.0,32,1.29 +52548,87.0,10.0,8.0,10.0,10.0,10.0,10.0,3,0.14 +73227,,,,,,,,0, +33866,91.0,10.0,8.0,10.0,10.0,10.0,9.0,46,3.61 +49544,99.0,10.0,9.0,10.0,10.0,10.0,10.0,14,0.75 +27913,,,,,,,,0, +25874,,,,,,,,0, +15160,,,,,,,,0, +56983,98.0,10.0,9.0,10.0,10.0,10.0,10.0,9,0.4 +26682,95.0,9.0,10.0,10.0,9.0,10.0,9.0,8,0.47 +19348,,,,,,,,0, +22292,96.0,10.0,10.0,10.0,10.0,10.0,10.0,19,0.77 +37694,99.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.85 +27396,95.0,9.0,9.0,10.0,9.0,10.0,10.0,5,0.25 +28416,,,,,,,,0, +5704,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +66037,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.3 +19185,91.0,9.0,10.0,10.0,10.0,9.0,9.0,7,0.28 +74558,95.0,9.0,10.0,10.0,10.0,9.0,10.0,16,0.72 +66509,96.0,10.0,10.0,10.0,10.0,10.0,9.0,16,0.76 +18170,99.0,10.0,10.0,10.0,10.0,10.0,10.0,73,3.11 +45020,,,,,,,,0, +31125,,,,,,,,0, +22829,,,,,,,,0, +13309,,,,,,,,4,0.16 +13586,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.13 +37357,,,,,,,,0, +61541,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.15 +32807,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.54 +63696,83.0,9.0,8.0,9.0,9.0,8.0,8.0,28,1.19 +55640,92.0,10.0,9.0,10.0,10.0,9.0,10.0,20,0.81 +8295,99.0,10.0,10.0,10.0,10.0,10.0,9.0,17,0.7 +16401,,,,,,,,0, +25915,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +54646,97.0,10.0,10.0,10.0,10.0,10.0,9.0,23,0.93 +306,100.0,10.0,10.0,10.0,10.0,10.0,10.0,32,1.28 +50754,,,,,,,,1,0.05 +16856,100.0,10.0,10.0,9.0,10.0,10.0,10.0,2,0.08 +38424,95.0,10.0,10.0,10.0,10.0,10.0,9.0,62,2.49 +33533,,,,,,,,0, +4314,96.0,10.0,10.0,10.0,10.0,9.0,10.0,27,1.23 +27757,80.0,8.0,8.0,9.0,9.0,9.0,8.0,8,0.37 +13617,100.0,10.0,10.0,9.0,10.0,10.0,10.0,2,0.09 +51484,100.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.33 +49733,,,,,,,,0, +23108,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.37 +43939,83.0,9.0,8.0,9.0,8.0,9.0,9.0,7,0.3 +64563,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.12 +75857,,,,,,,,0, +70766,91.0,10.0,10.0,10.0,10.0,9.0,9.0,23,1.12 +27697,,,,,,,,0, +24602,99.0,10.0,10.0,10.0,10.0,10.0,10.0,35,1.43 +56627,,,,,,,,0, +43600,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.17 +9098,,,,,,,,0, +2077,98.0,10.0,10.0,10.0,10.0,10.0,10.0,32,1.65 +39553,98.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.44 +37291,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.2 +1580,97.0,9.0,9.0,10.0,10.0,10.0,9.0,14,0.57 +56420,83.0,9.0,8.0,9.0,10.0,9.0,8.0,33,1.33 +54424,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +29291,98.0,10.0,10.0,10.0,10.0,10.0,10.0,55,2.21 +38133,93.0,9.0,9.0,10.0,10.0,9.0,10.0,13,0.6 +75511,,,,,,,,1,0.14 +56418,88.0,9.0,8.0,10.0,10.0,10.0,9.0,46,1.86 +4685,95.0,9.0,9.0,10.0,10.0,9.0,10.0,33,1.33 +67865,92.0,9.0,9.0,9.0,10.0,10.0,9.0,34,1.52 +23049,87.0,9.0,8.0,10.0,10.0,10.0,9.0,35,1.44 +41187,,,,,,,,0, +75611,97.0,10.0,10.0,10.0,10.0,10.0,10.0,161,6.51 +58674,100.0,10.0,10.0,10.0,10.0,10.0,10.0,30,1.27 +60470,90.0,10.0,9.0,10.0,10.0,9.0,9.0,15,0.67 +76643,,,,,,,,0, +53768,97.0,10.0,9.0,10.0,10.0,10.0,10.0,24,1.14 +71170,96.0,10.0,10.0,10.0,10.0,9.0,10.0,149,6.05 +19793,91.0,9.0,9.0,10.0,10.0,10.0,9.0,111,4.48 +26635,95.0,10.0,9.0,10.0,10.0,10.0,10.0,17,0.74 +40057,,,,,,,,0, +59160,,,,,,,,0, +40796,96.0,10.0,10.0,10.0,10.0,10.0,9.0,30,1.41 +11961,87.0,10.0,9.0,10.0,10.0,10.0,9.0,6,0.24 +69844,,,,,,,,1,0.04 +19328,88.0,9.0,9.0,10.0,10.0,10.0,10.0,5,0.26 +26481,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +35145,90.0,9.0,9.0,10.0,10.0,10.0,9.0,4,0.8 +6732,90.0,9.0,10.0,10.0,9.0,10.0,9.0,2,0.08 +23859,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.21 +10779,97.0,10.0,10.0,10.0,10.0,10.0,9.0,64,2.61 +62551,98.0,10.0,10.0,10.0,10.0,10.0,10.0,86,3.55 +42467,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.04 +24845,100.0,10.0,10.0,10.0,10.0,10.0,10.0,90,3.62 +22924,100.0,10.0,10.0,10.0,10.0,10.0,10.0,88,3.62 +37786,,,,,,,,0, +40287,86.0,10.0,10.0,9.0,9.0,9.0,9.0,15,0.61 +9640,70.0,6.0,6.0,8.0,8.0,6.0,7.0,2,0.09 +74028,95.0,9.0,9.0,10.0,10.0,8.0,9.0,4,0.2 +59931,90.0,10.0,9.0,10.0,10.0,10.0,9.0,19,0.98 +56795,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.45 +46713,100.0,10.0,10.0,10.0,9.0,10.0,10.0,2,0.08 +1837,96.0,10.0,10.0,10.0,10.0,9.0,10.0,127,5.13 +27224,60.0,8.0,4.0,10.0,10.0,8.0,6.0,1,0.04 +2880,90.0,10.0,10.0,10.0,9.0,9.0,9.0,2,0.1 +24991,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.29 +19463,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.1 +22018,100.0,10.0,10.0,10.0,9.0,10.0,10.0,4,0.16 +7831,90.0,9.0,7.0,10.0,8.0,7.0,10.0,2,0.08 +66301,100.0,10.0,10.0,8.0,8.0,10.0,8.0,1,0.17 +42387,80.0,10.0,9.0,10.0,10.0,9.0,9.0,3,0.12 +52602,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +67385,,,,,,,,0, +41551,99.0,10.0,10.0,10.0,10.0,10.0,10.0,65,2.63 +52367,86.0,8.0,9.0,8.0,9.0,9.0,9.0,34,1.37 +14258,,,,,,,,0, +73703,84.0,9.0,9.0,9.0,9.0,9.0,8.0,61,2.47 +11417,92.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.27 +71635,99.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.58 +38454,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +21978,80.0,9.0,7.0,10.0,9.0,10.0,8.0,6,0.25 +6005,86.0,10.0,7.0,10.0,9.0,9.0,9.0,11,0.45 +31589,,,,,,,,0, +9378,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.2 +62504,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.13 +10773,,,,,,,,0, +8168,94.0,10.0,10.0,10.0,10.0,9.0,10.0,187,7.57 +75755,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.22 +56293,96.0,10.0,10.0,10.0,10.0,9.0,9.0,5,0.2 +44812,87.0,9.0,9.0,10.0,10.0,8.0,9.0,6,0.25 +6560,94.0,10.0,9.0,10.0,10.0,10.0,9.0,14,0.57 +25698,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.12 +197,99.0,10.0,10.0,10.0,10.0,10.0,10.0,33,1.33 +63859,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.22 +76076,96.0,10.0,9.0,10.0,10.0,10.0,9.0,24,0.97 +76706,86.0,9.0,9.0,9.0,10.0,10.0,9.0,29,1.2 +27146,80.0,7.0,6.0,8.0,8.0,9.0,7.0,5,0.2 +6683,98.0,10.0,9.0,10.0,10.0,10.0,9.0,18,0.75 +20216,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.23 +6631,,,,,,,,0, +38364,91.0,10.0,9.0,10.0,10.0,10.0,9.0,202,8.15 +37145,87.0,9.0,9.0,10.0,10.0,8.0,9.0,9,0.36 +59216,91.0,10.0,10.0,10.0,10.0,8.0,9.0,9,0.38 +51216,96.0,10.0,9.0,10.0,10.0,9.0,9.0,26,1.05 +44393,91.0,9.0,8.0,10.0,10.0,9.0,9.0,59,2.38 +41582,,,,,,,,0, +56428,95.0,10.0,10.0,10.0,10.0,10.0,9.0,28,1.14 +291,,,,,,,,0, +73939,93.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.14 +69204,80.0,8.0,6.0,10.0,10.0,10.0,8.0,1,0.33 +21974,97.0,10.0,9.0,10.0,10.0,10.0,10.0,20,0.85 +26506,,,,,,,,0, +64751,,,,,,,,0, +70984,95.0,10.0,9.0,10.0,10.0,10.0,9.0,22,0.9 +51334,90.0,10.0,10.0,9.0,9.0,10.0,8.0,5,0.2 +11817,99.0,10.0,10.0,10.0,10.0,10.0,10.0,88,3.88 +26207,100.0,10.0,10.0,10.0,10.0,8.0,10.0,2,0.08 +6146,90.0,10.0,8.0,10.0,10.0,10.0,9.0,4,0.2 +28207,,,,,,,,0, +28825,96.0,10.0,10.0,10.0,10.0,9.0,10.0,145,5.94 +32650,99.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.72 +25596,92.0,9.0,10.0,9.0,10.0,10.0,10.0,12,0.48 +10826,76.0,9.0,7.0,9.0,9.0,8.0,8.0,24,0.96 +30556,,,,,,,,0, +15986,80.0,9.0,6.0,8.0,8.0,9.0,9.0,3,0.13 +32094,98.0,10.0,10.0,10.0,10.0,10.0,10.0,32,1.29 +245,100.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.17 +58481,,,,,,,,0, +2997,93.0,10.0,8.0,9.0,9.0,10.0,9.0,6,0.25 +4093,90.0,9.0,10.0,8.0,10.0,10.0,9.0,14,0.6 +72345,97.0,9.0,10.0,10.0,10.0,9.0,9.0,35,1.44 +76110,40.0,4.0,6.0,10.0,8.0,10.0,6.0,1,0.04 +6993,93.0,9.0,9.0,10.0,9.0,10.0,10.0,3,0.13 +46985,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.17 +5737,100.0,10.0,10.0,10.0,10.0,10.0,8.0,2,0.08 +63227,97.0,10.0,9.0,10.0,10.0,9.0,10.0,20,0.81 +47612,96.0,10.0,10.0,10.0,10.0,9.0,10.0,136,5.9 +68409,95.0,10.0,9.0,10.0,10.0,10.0,9.0,11,0.47 +52325,89.0,9.0,9.0,9.0,10.0,10.0,10.0,15,0.72 +2937,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.23 +59376,,,,,,,,0, +75878,87.0,9.0,9.0,9.0,9.0,9.0,9.0,27,1.13 +44614,,,,,,,,1,0.04 +983,93.0,10.0,9.0,10.0,10.0,10.0,10.0,49,8.35 +15371,92.0,9.0,9.0,9.0,9.0,9.0,9.0,160,6.76 +29255,60.0,6.0,6.0,10.0,10.0,10.0,8.0,1,0.04 +46917,95.0,10.0,10.0,10.0,10.0,9.0,9.0,12,0.63 +21850,95.0,10.0,10.0,10.0,10.0,9.0,10.0,26,1.06 +19776,74.0,8.0,7.0,9.0,8.0,8.0,8.0,58,2.35 +28509,88.0,10.0,8.0,10.0,10.0,9.0,8.0,5,0.21 +60436,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +32168,92.0,10.0,10.0,9.0,10.0,8.0,9.0,18,0.74 +56265,100.0,10.0,9.0,10.0,9.0,10.0,9.0,2,0.1 +5763,,,,,,,,0, +339,100.0,10.0,10.0,10.0,10.0,10.0,10.0,22,1.01 +13235,97.0,10.0,9.0,10.0,10.0,9.0,9.0,38,1.53 +24260,100.0,10.0,9.0,9.0,10.0,10.0,10.0,2,0.11 +67350,91.0,9.0,9.0,9.0,9.0,9.0,9.0,7,0.3 +71107,,,,,,,,0, +50682,97.0,10.0,10.0,10.0,10.0,10.0,10.0,29,1.26 +54250,96.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.38 +50584,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.35 +67822,100.0,10.0,10.0,8.0,10.0,10.0,10.0,1,0.04 +46123,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.27 +21518,,,,,,,,0, +56833,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.2 +16896,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.08 +45055,98.0,10.0,10.0,10.0,10.0,10.0,10.0,30,1.26 +22036,97.0,10.0,10.0,10.0,10.0,9.0,10.0,39,1.66 +45515,90.0,9.0,8.0,10.0,10.0,10.0,9.0,6,0.27 +29712,88.0,9.0,9.0,9.0,9.0,10.0,9.0,12,0.53 +74270,83.0,8.0,10.0,10.0,10.0,10.0,8.0,13,0.76 +55420,78.0,9.0,7.0,9.0,8.0,8.0,8.0,65,2.71 +39426,96.0,10.0,9.0,10.0,10.0,10.0,9.0,14,0.57 +69352,,,,,,,,0, +56607,,,,,,,,0, +50049,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.08 +46484,98.0,10.0,10.0,10.0,10.0,10.0,10.0,29,1.19 +60747,98.0,10.0,10.0,10.0,10.0,10.0,10.0,32,1.32 +76136,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +48200,88.0,9.0,9.0,8.0,9.0,10.0,9.0,10,0.59 +50908,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.45 +24892,98.0,10.0,10.0,10.0,10.0,10.0,9.0,12,0.51 +48662,87.0,9.0,8.0,10.0,10.0,9.0,9.0,15,0.63 +71840,99.0,10.0,10.0,10.0,10.0,10.0,10.0,49,2.37 +6296,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.69 +70402,,,,,,,,0, +35021,97.0,10.0,10.0,10.0,10.0,9.0,10.0,81,3.44 +74217,96.0,10.0,9.0,10.0,10.0,9.0,9.0,16,1.13 +31916,95.0,10.0,9.0,10.0,10.0,9.0,9.0,14,0.58 +67138,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +32241,83.0,9.0,8.0,9.0,9.0,9.0,9.0,71,2.86 +43318,99.0,10.0,10.0,10.0,10.0,10.0,10.0,26,1.1 +42681,,,,,,,,0, +56529,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.04 +44905,60.0,,4.0,,,,,1,0.04 +26011,98.0,10.0,10.0,10.0,10.0,10.0,10.0,17,1.79 +47039,,,,,,,,0, +75504,95.0,10.0,9.0,10.0,10.0,9.0,10.0,22,0.94 +26410,95.0,10.0,9.0,10.0,10.0,10.0,10.0,20,0.8 +42082,93.0,10.0,9.0,10.0,10.0,10.0,9.0,12,0.51 +52705,,,,,,,,0, +68462,,,,,,,,0, +483,,,,,,,,1,0.04 +42811,96.0,10.0,10.0,10.0,10.0,10.0,9.0,30,1.27 +14773,,,,,,,,0, +36742,,,,,,,,0, +75129,,,,,,,,0, +6006,80.0,10.0,10.0,8.0,10.0,6.0,8.0,2,0.09 +66148,91.0,9.0,9.0,9.0,10.0,10.0,9.0,8,0.52 +843,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.08 +2982,96.0,9.0,9.0,10.0,10.0,10.0,10.0,24,0.98 +33968,97.0,10.0,9.0,10.0,10.0,10.0,10.0,6,0.25 +54545,90.0,9.0,9.0,9.0,9.0,8.0,8.0,2,0.08 +47268,98.0,10.0,10.0,10.0,10.0,9.0,10.0,27,1.13 +28348,,,,,,,,0, +1130,,,,,,,,0, +55493,75.0,8.0,6.0,9.0,9.0,10.0,8.0,19,0.77 +48266,93.0,10.0,9.0,10.0,10.0,9.0,10.0,12,0.54 +48692,97.0,10.0,10.0,10.0,10.0,10.0,10.0,20,0.92 +73150,81.0,8.0,8.0,9.0,9.0,10.0,8.0,70,2.88 +62209,,,,,,,,0, +63880,40.0,,,,,,,1,0.04 +38730,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.16 +15287,98.0,10.0,10.0,10.0,10.0,9.0,10.0,39,1.65 +3265,96.0,10.0,10.0,10.0,10.0,9.0,9.0,39,1.65 +11414,95.0,10.0,10.0,10.0,10.0,9.0,10.0,24,0.98 +64210,95.0,10.0,10.0,10.0,10.0,9.0,9.0,39,1.64 +45310,,,,,,,,0, +65603,,,,,,,,0, +25073,94.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.72 +32386,,,,,,,,0, +57758,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.69 +63936,95.0,9.0,9.0,10.0,10.0,9.0,9.0,4,0.16 +74564,99.0,10.0,10.0,10.0,10.0,10.0,10.0,16,1.86 +19892,93.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.3 +20795,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +36852,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.12 +2245,,,,,,,,0, +22317,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +31963,,,,,,,,0, +52485,85.0,8.0,8.0,9.0,9.0,10.0,8.0,12,0.5 +32055,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.28 +3409,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +23851,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +36701,97.0,10.0,10.0,10.0,10.0,8.0,9.0,15,0.75 +21168,100.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.17 +1522,94.0,10.0,9.0,10.0,10.0,10.0,9.0,43,1.88 +45035,,,,,,,,0, +20806,80.0,10.0,10.0,10.0,10.0,9.0,9.0,2,0.19 +12573,99.0,10.0,10.0,9.0,10.0,10.0,10.0,19,0.81 +50773,96.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.21 +2182,,,,,,,,0, +53726,97.0,10.0,10.0,10.0,10.0,9.0,9.0,29,1.19 +13530,75.0,8.0,8.0,9.0,8.0,8.0,8.0,33,1.43 +5698,40.0,8.0,10.0,4.0,4.0,8.0,8.0,3,0.13 +45359,90.0,9.0,10.0,9.0,9.0,9.0,9.0,14,0.58 +3116,80.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.04 +22003,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.56 +32828,,,,,,,,0, +42597,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.08 +8114,87.0,9.0,8.0,9.0,9.0,9.0,9.0,3,0.13 +5673,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +10333,94.0,10.0,9.0,10.0,10.0,9.0,9.0,7,0.3 +61545,,,,,,,,0, +14267,84.0,9.0,8.0,9.0,9.0,9.0,9.0,81,3.47 +62763,,,,,,,,0, +23410,,,,,,,,0, +12842,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,2.0 +64749,84.0,9.0,8.0,9.0,9.0,9.0,9.0,82,3.31 +43486,76.0,8.0,8.0,8.0,8.0,8.0,8.0,7,0.28 +10159,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +70733,87.0,9.0,9.0,9.0,9.0,9.0,9.0,103,4.16 +31100,,,,,,,,0, +34821,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.08 +34186,97.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.42 +7109,97.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.49 +49075,100.0,9.0,10.0,10.0,10.0,9.0,10.0,5,0.38 +61402,,,,,,,,0, +33780,93.0,9.0,9.0,10.0,10.0,10.0,9.0,21,0.86 +60657,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.44 +61326,89.0,9.0,9.0,9.0,9.0,10.0,9.0,7,0.3 +76019,92.0,9.0,10.0,10.0,10.0,10.0,10.0,24,1.02 +14392,91.0,9.0,10.0,8.0,9.0,9.0,9.0,7,0.32 +74770,93.0,9.0,10.0,9.0,9.0,9.0,10.0,8,0.34 +53879,76.0,8.0,9.0,9.0,9.0,8.0,8.0,12,0.5 +47896,,,,,,,,0, +19455,,,,,,,,0, +66726,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.04 +65714,95.0,10.0,10.0,10.0,10.0,10.0,10.0,191,7.73 +38164,99.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.73 +59680,98.0,10.0,10.0,10.0,10.0,10.0,10.0,26,1.11 +76604,,,,,,,,0, +45115,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.21 +34137,95.0,10.0,9.0,10.0,10.0,9.0,10.0,44,3.0 +17302,93.0,9.0,9.0,10.0,10.0,9.0,9.0,7,0.33 +68595,91.0,9.0,9.0,9.0,9.0,9.0,9.0,27,1.15 +70744,,,,,,,,0, +34577,95.0,10.0,9.0,10.0,10.0,10.0,10.0,28,1.19 +68222,80.0,8.0,6.0,6.0,10.0,10.0,8.0,1,0.04 +29557,,,,,,,,0, +45696,95.0,10.0,9.0,10.0,10.0,10.0,9.0,4,0.23 +55795,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.33 +19390,95.0,8.0,8.0,8.0,8.0,7.0,8.0,4,0.17 +47427,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.33 +36437,,,,,,,,0, +17414,,,,,,,,0, +2596,,,,,,,,0, +28412,87.0,10.0,9.0,10.0,9.0,9.0,10.0,3,0.12 +50296,97.0,10.0,10.0,10.0,10.0,9.0,10.0,44,1.78 +21172,,,,,,,,3,0.15 +13997,100.0,10.0,10.0,10.0,10.0,6.0,10.0,1,0.04 +64285,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.12 +65325,,,,,,,,1,1.0 +68329,100.0,10.0,10.0,10.0,10.0,10.0,10.0,41,4.9 +32042,,,,,,,,0, +59245,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.15 +36653,96.0,10.0,9.0,10.0,10.0,9.0,9.0,18,0.74 +59665,95.0,10.0,9.0,9.0,9.0,9.0,10.0,9,0.36 +60597,,,,,,,,0, +58990,93.0,10.0,10.0,10.0,10.0,9.0,9.0,14,0.58 +19203,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.08 +246,91.0,10.0,10.0,8.0,10.0,9.0,9.0,18,0.97 +20874,93.0,9.0,10.0,10.0,10.0,10.0,9.0,35,1.49 +2778,99.0,10.0,10.0,10.0,10.0,9.0,10.0,19,0.81 +41512,93.0,10.0,9.0,9.0,9.0,10.0,10.0,12,0.5 +36153,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.3 +26256,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.43 +22716,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.31 +7240,96.0,10.0,10.0,10.0,10.0,10.0,10.0,44,1.99 +35644,,,,,,,,0, +73858,100.0,8.0,8.0,8.0,8.0,8.0,6.0,1,0.04 +21379,100.0,10.0,10.0,9.0,10.0,10.0,10.0,2,0.08 +70293,96.0,10.0,9.0,10.0,10.0,9.0,9.0,5,0.2 +23972,100.0,10.0,10.0,9.0,10.0,10.0,10.0,6,0.27 +35678,,,,,,,,0, +5198,,,,,,,,0, +38888,95.0,10.0,9.0,10.0,10.0,9.0,9.0,111,4.49 +17974,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.16 +6328,80.0,10.0,6.0,8.0,10.0,8.0,8.0,2,0.11 +66765,89.0,9.0,9.0,10.0,10.0,10.0,9.0,17,0.72 +30839,70.0,9.0,7.0,10.0,9.0,8.0,10.0,2,0.08 +34959,,,,,,,,0, +35902,84.0,9.0,8.0,10.0,10.0,9.0,9.0,18,0.73 +54912,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.37 +67415,,,,,,,,0, +31773,90.0,10.0,10.0,10.0,10.0,8.0,8.0,2,0.09 +69813,98.0,10.0,10.0,10.0,10.0,10.0,10.0,110,4.58 +1322,83.0,8.0,8.0,9.0,9.0,9.0,8.0,19,0.77 +14614,99.0,10.0,10.0,10.0,10.0,9.0,10.0,26,1.07 +57416,100.0,10.0,9.0,10.0,10.0,10.0,10.0,6,0.25 +62317,94.0,10.0,10.0,10.0,10.0,10.0,9.0,17,0.8 +27124,100.0,10.0,10.0,8.0,10.0,8.0,10.0,1,0.04 +51057,98.0,10.0,10.0,10.0,10.0,9.0,10.0,27,1.14 +19946,93.0,9.0,10.0,10.0,9.0,10.0,9.0,3,0.13 +46599,97.0,10.0,10.0,10.0,10.0,10.0,10.0,35,1.49 +59661,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.94 +45300,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.13 +41157,,,,,,,,0, +32762,,,,,,,,0, +5778,90.0,10.0,9.0,10.0,10.0,10.0,9.0,4,0.18 +36975,99.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.69 +5576,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.87 +47602,96.0,10.0,9.0,10.0,10.0,9.0,10.0,16,0.67 +29886,93.0,10.0,9.0,10.0,10.0,9.0,9.0,30,1.46 +66786,84.0,9.0,9.0,9.0,9.0,8.0,9.0,5,0.21 +47841,96.0,10.0,10.0,10.0,10.0,9.0,10.0,19,0.77 +75393,80.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.04 +36743,90.0,8.0,9.0,10.0,10.0,10.0,10.0,4,0.24 +26849,95.0,10.0,10.0,10.0,10.0,8.0,9.0,27,1.35 +20410,93.0,10.0,10.0,9.0,9.0,10.0,9.0,12,0.54 +67990,98.0,10.0,10.0,10.0,10.0,9.0,9.0,33,1.36 +8330,87.0,9.0,10.0,9.0,9.0,10.0,9.0,27,1.11 +63925,85.0,8.0,9.0,9.0,10.0,9.0,8.0,5,0.2 +52642,80.0,8.0,8.0,8.0,8.0,8.0,6.0,1,0.04 +64546,90.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.4 +36183,,,,,,,,1,0.04 +49499,85.0,8.0,9.0,9.0,9.0,10.0,9.0,8,0.33 +61211,90.0,9.0,9.0,9.0,10.0,9.0,9.0,46,1.89 +56532,99.0,10.0,10.0,10.0,10.0,10.0,10.0,65,2.68 +47045,100.0,10.0,10.0,10.0,10.0,10.0,10.0,83,3.63 +50934,100.0,10.0,10.0,10.0,10.0,9.0,10.0,9,0.38 +16696,,,,,,,,0, +6586,,,,,,,,0, +15776,97.0,10.0,9.0,10.0,10.0,9.0,10.0,71,2.88 +74936,,,,,,,,0, +2197,93.0,10.0,9.0,10.0,10.0,9.0,9.0,114,4.67 +36011,95.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.92 +15653,91.0,10.0,9.0,10.0,10.0,10.0,9.0,17,0.71 +61469,97.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.7 +26933,,,,,,,,0, +24299,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.04 +3745,99.0,10.0,10.0,10.0,10.0,10.0,10.0,82,3.38 +15999,98.0,10.0,10.0,10.0,10.0,9.0,10.0,22,1.15 +9242,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.38 +55180,,,,,,,,0, +15248,,,,,,,,0, +50157,84.0,9.0,9.0,9.0,9.0,9.0,9.0,33,1.35 +52902,,,,,,,,0, +39480,96.0,10.0,10.0,10.0,10.0,10.0,10.0,50,2.04 +56491,,,,,,,,0, +16670,87.0,9.0,9.0,9.0,10.0,9.0,9.0,25,1.02 +41969,97.0,10.0,9.0,10.0,10.0,9.0,10.0,12,0.51 +52229,95.0,10.0,10.0,10.0,10.0,9.0,9.0,53,2.2 +56626,93.0,9.0,10.0,10.0,10.0,10.0,10.0,12,0.59 +59906,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.1 +51429,,,,,,,,0, +76128,93.0,10.0,9.0,9.0,10.0,9.0,9.0,12,0.51 +24682,93.0,10.0,10.0,9.0,10.0,10.0,9.0,23,0.98 +14946,,,,,,,,0, +66149,96.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.37 +25700,100.0,10.0,10.0,10.0,10.0,10.0,10.0,21,0.87 +74599,,,,,,,,0, +27494,20.0,2.0,2.0,2.0,2.0,2.0,2.0,1,0.75 +58117,98.0,10.0,10.0,10.0,10.0,10.0,9.0,8,0.36 +20555,,,,,,,,0, +61902,99.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.77 +1711,97.0,10.0,10.0,10.0,10.0,9.0,9.0,24,1.1 +14329,,,,,,,,0, +63173,98.0,10.0,9.0,10.0,10.0,10.0,10.0,37,1.53 +43932,90.0,9.0,9.0,10.0,9.0,10.0,9.0,27,1.38 +37519,77.0,9.0,7.0,8.0,8.0,10.0,8.0,8,0.33 +40643,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.08 +63240,99.0,9.0,9.0,10.0,10.0,9.0,9.0,20,0.97 +5677,95.0,10.0,9.0,10.0,10.0,9.0,9.0,69,2.8 +44475,99.0,10.0,10.0,10.0,10.0,9.0,10.0,14,0.62 +51512,20.0,2.0,2.0,6.0,6.0,10.0,2.0,2,0.08 +73925,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.08 +5507,96.0,10.0,9.0,10.0,10.0,10.0,10.0,7,0.32 +27466,96.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.29 +45521,92.0,10.0,10.0,10.0,10.0,10.0,10.0,33,1.36 +44603,96.0,10.0,10.0,10.0,10.0,9.0,9.0,15,0.64 +7833,80.0,7.0,8.0,9.0,9.0,9.0,8.0,3,0.12 +13766,100.0,8.0,10.0,8.0,10.0,10.0,10.0,1,0.37 +73755,,,,,,,,1,0.04 +50873,93.0,10.0,9.0,9.0,10.0,10.0,9.0,10,0.48 +16940,,,,,,,,0, +9073,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.43 +7829,80.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.08 +21274,90.0,9.0,8.0,9.0,9.0,10.0,9.0,10,0.42 +26350,,,,,,,,0, +27410,,,,,,,,0, +38369,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.75 +52948,92.0,8.0,8.0,10.0,9.0,9.0,9.0,9,0.37 +48112,99.0,10.0,10.0,10.0,10.0,9.0,10.0,31,1.27 +34934,80.0,9.0,7.0,8.0,8.0,9.0,8.0,76,3.26 +64430,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,1.36 +51179,91.0,10.0,9.0,10.0,9.0,8.0,9.0,27,1.19 +34268,96.0,10.0,10.0,10.0,10.0,9.0,10.0,39,1.66 +61961,91.0,9.0,9.0,9.0,10.0,9.0,9.0,21,0.92 +23643,98.0,10.0,10.0,10.0,10.0,10.0,9.0,9,0.38 +2981,96.0,9.0,10.0,10.0,10.0,10.0,10.0,20,1.02 +2646,90.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.19 +65289,97.0,10.0,10.0,10.0,10.0,9.0,10.0,13,0.55 +2782,95.0,10.0,10.0,10.0,10.0,10.0,9.0,8,0.4 +28326,99.0,10.0,10.0,10.0,10.0,10.0,10.0,36,1.48 +21162,,,,,,,,0, +26936,100.0,10.0,10.0,10.0,10.0,6.0,8.0,1,0.06 +4103,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.56 +74293,90.0,10.0,8.0,10.0,10.0,10.0,9.0,10,0.48 +3040,92.0,9.0,9.0,9.0,10.0,10.0,9.0,46,2.03 +62307,92.0,9.0,10.0,9.0,9.0,9.0,9.0,23,1.28 +66551,98.0,10.0,10.0,9.0,10.0,9.0,10.0,31,1.32 +31195,88.0,9.0,9.0,10.0,10.0,10.0,9.0,29,1.18 +2191,,,,,,,,0, +53287,93.0,9.0,9.0,10.0,10.0,9.0,9.0,4,0.17 +5245,85.0,9.0,8.0,9.0,9.0,9.0,9.0,70,2.85 +36207,63.0,7.0,6.0,7.0,7.0,9.0,7.0,8,0.37 +11633,90.0,9.0,9.0,9.0,9.0,10.0,9.0,104,4.29 +41690,,,,,,,,0, +47389,,,,,,,,0, +58713,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.23 +46821,95.0,10.0,9.0,10.0,10.0,9.0,9.0,8,0.32 +59167,98.0,10.0,9.0,9.0,10.0,10.0,10.0,16,2.03 +75976,,,,,,,,0, +6373,92.0,9.0,9.0,9.0,9.0,9.0,9.0,12,0.56 +5017,91.0,9.0,9.0,10.0,10.0,9.0,9.0,94,3.84 +2680,80.0,8.0,10.0,10.0,10.0,10.0,8.0,1,0.04 +1300,95.0,10.0,9.0,10.0,9.0,10.0,9.0,19,0.81 +39902,91.0,10.0,9.0,10.0,10.0,9.0,10.0,92,3.76 +27451,92.0,10.0,9.0,10.0,10.0,9.0,10.0,69,2.82 +21654,94.0,10.0,9.0,10.0,10.0,9.0,10.0,59,2.44 +20149,100.0,10.0,10.0,9.0,10.0,9.0,9.0,8,0.7 +75086,100.0,9.0,9.0,10.0,10.0,10.0,10.0,2,0.09 +39578,90.0,9.0,8.0,10.0,9.0,8.0,9.0,92,3.78 +53551,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.1 +9985,91.0,9.0,9.0,10.0,9.0,8.0,9.0,52,2.34 +20282,99.0,10.0,10.0,10.0,10.0,9.0,10.0,42,1.79 +2285,99.0,10.0,10.0,10.0,10.0,10.0,10.0,71,2.92 +14239,80.0,8.0,4.0,8.0,8.0,10.0,8.0,1,0.04 +37997,93.0,9.0,7.0,9.0,9.0,10.0,9.0,4,0.31 +46121,98.0,9.0,10.0,10.0,10.0,9.0,10.0,9,0.4 +9516,93.0,9.0,9.0,10.0,10.0,8.0,9.0,8,0.33 +30273,,,,,,,,0, +76363,91.0,9.0,9.0,9.0,9.0,9.0,9.0,14,0.58 +75403,,,,,,,,0, +9254,93.0,10.0,8.0,10.0,10.0,10.0,10.0,12,0.49 +46645,96.0,10.0,10.0,10.0,10.0,9.0,9.0,41,2.07 +64082,95.0,10.0,10.0,10.0,9.0,10.0,10.0,4,0.17 +14414,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.41 +7740,87.0,9.0,7.0,10.0,10.0,10.0,8.0,4,0.23 +62417,98.0,10.0,10.0,10.0,10.0,10.0,9.0,20,0.85 +45808,88.0,10.0,8.0,10.0,9.0,9.0,9.0,6,0.25 +43496,76.0,8.0,6.0,9.0,9.0,10.0,9.0,6,0.25 +65531,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.58 +40031,,,,,,,,0, +69623,85.0,9.0,9.0,10.0,10.0,9.0,8.0,13,0.55 +24482,,,,,,,,0, +26753,,,,,,,,0, +65827,,,,,,,,0, +23658,80.0,9.0,7.0,9.0,9.0,9.0,8.0,30,1.23 +20077,84.0,8.0,8.0,10.0,10.0,10.0,8.0,5,0.29 +61451,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.51 +7438,99.0,10.0,10.0,10.0,10.0,10.0,10.0,119,5.09 +62936,70.0,8.0,8.0,7.0,8.0,10.0,8.0,4,0.18 +50723,100.0,10.0,10.0,10.0,10.0,10.0,10.0,115,5.22 +8097,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +48243,80.0,10.0,8.0,10.0,10.0,10.0,8.0,2,0.08 +15392,87.0,9.0,10.0,9.0,9.0,9.0,9.0,48,2.21 +35455,90.0,9.0,7.0,4.0,8.0,8.0,8.0,2,0.1 +24097,80.0,9.0,7.0,10.0,10.0,8.0,9.0,2,0.08 +6737,100.0,10.0,10.0,10.0,10.0,10.0,10.0,24,1.26 +10893,100.0,10.0,10.0,10.0,10.0,10.0,10.0,47,2.12 +25256,,,,,,,,0, +60456,92.0,10.0,8.0,9.0,10.0,10.0,9.0,5,0.21 +15569,96.0,10.0,10.0,10.0,10.0,10.0,9.0,31,1.27 +49703,96.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.21 +34730,,,,,,,,0, +56714,,,,,,,,0, +57084,100.0,10.0,10.0,10.0,10.0,9.0,10.0,9,0.38 +55234,100.0,10.0,10.0,9.0,10.0,10.0,10.0,13,1.92 +62208,93.0,10.0,9.0,10.0,10.0,9.0,10.0,49,2.04 +45663,96.0,10.0,10.0,10.0,10.0,10.0,10.0,74,3.09 +23031,93.0,10.0,9.0,9.0,10.0,9.0,10.0,12,0.51 +60925,100.0,10.0,9.0,10.0,10.0,10.0,9.0,7,0.3 +38157,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.25 +43094,93.0,10.0,9.0,10.0,10.0,10.0,9.0,162,6.69 +7451,40.0,2.0,6.0,6.0,4.0,10.0,4.0,1,0.04 +9704,96.0,10.0,9.0,10.0,10.0,10.0,9.0,6,0.39 +21492,99.0,10.0,10.0,10.0,10.0,10.0,10.0,33,1.48 +2817,,,,,,,,0, +65763,,,,,,,,0, +26650,98.0,10.0,10.0,10.0,10.0,10.0,9.0,33,1.49 +42786,90.0,10.0,8.0,10.0,10.0,8.0,9.0,2,0.34 +22181,,,,,,,,0, +32627,77.0,8.0,7.0,9.0,8.0,9.0,9.0,7,0.32 +8454,77.0,8.0,7.0,9.0,9.0,8.0,7.0,17,0.8 +32458,,,,,,,,1,0.45 +14686,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.26 +33878,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +43492,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.13 +4351,96.0,10.0,9.0,10.0,10.0,10.0,9.0,26,1.11 +21371,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.31 +59001,90.0,9.0,8.0,10.0,9.0,9.0,9.0,14,0.8 +53111,90.0,9.0,9.0,10.0,10.0,10.0,10.0,2,0.08 +28898,93.0,9.0,10.0,9.0,10.0,9.0,9.0,6,0.35 +49350,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.37 +18332,,,,,,,,0, +1549,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +73976,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +38946,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.17 +62568,98.0,10.0,10.0,10.0,9.0,10.0,10.0,10,0.49 +67317,98.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.57 +66063,80.0,5.0,7.0,8.0,8.0,10.0,7.0,3,0.15 +65416,80.0,8.0,10.0,10.0,10.0,8.0,8.0,1,0.05 +24211,90.0,10.0,8.0,10.0,10.0,10.0,9.0,2,0.13 +36860,99.0,9.0,10.0,9.0,10.0,9.0,9.0,15,0.87 +50399,,,,,,,,1,0.04 +53978,,,,,,,,0, +15613,94.0,9.0,9.0,10.0,10.0,9.0,9.0,17,0.69 +74524,86.0,9.0,8.0,9.0,9.0,10.0,9.0,14,0.59 +26696,100.0,10.0,10.0,10.0,10.0,10.0,10.0,19,0.78 +32754,,,,,,,,0, +32049,93.0,10.0,10.0,10.0,10.0,10.0,9.0,19,0.81 +22293,93.0,9.0,9.0,9.0,9.0,9.0,9.0,4,0.16 +32244,91.0,9.0,9.0,9.0,10.0,10.0,9.0,66,3.11 +36016,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.09 +9576,,,,,,,,0, +49788,90.0,9.0,9.0,9.0,10.0,9.0,9.0,12,0.49 +67638,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +13165,100.0,9.0,10.0,9.0,9.0,9.0,9.0,10,0.43 +7248,,,,,,,,0, +38105,100.0,,10.0,,,,,1,0.04 +54459,95.0,9.0,10.0,10.0,10.0,10.0,9.0,22,0.9 +77080,100.0,10.0,8.0,10.0,10.0,8.0,10.0,1,0.04 +60591,91.0,10.0,9.0,9.0,10.0,10.0,9.0,29,1.3 +27782,80.0,8.0,6.0,10.0,10.0,8.0,8.0,1,0.04 +57438,,,,,,,,0, +63912,,,,,,,,0, +54736,97.0,10.0,10.0,10.0,10.0,8.0,10.0,7,0.3 +14864,100.0,8.0,8.0,10.0,10.0,8.0,10.0,1,0.04 +61748,100.0,8.0,10.0,10.0,10.0,8.0,10.0,2,0.09 +25133,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.54 +54492,98.0,10.0,9.0,10.0,10.0,9.0,10.0,26,1.16 +11789,97.0,10.0,10.0,10.0,10.0,9.0,10.0,39,1.59 +23625,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.43 +56319,93.0,10.0,9.0,9.0,10.0,10.0,10.0,10,0.5 +22663,98.0,10.0,10.0,10.0,10.0,10.0,9.0,12,0.6 +15169,93.0,10.0,9.0,10.0,10.0,10.0,9.0,65,2.65 +76466,98.0,10.0,10.0,10.0,10.0,10.0,10.0,42,1.98 +45879,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.09 +36677,89.0,9.0,9.0,8.0,9.0,9.0,9.0,20,0.85 +44742,100.0,10.0,10.0,10.0,10.0,9.0,9.0,10,0.41 +33691,,,,,,,,0, +19064,,,,,,,,0, +14639,94.0,10.0,8.0,10.0,10.0,10.0,9.0,7,0.31 +34200,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.11 +30058,80.0,10.0,9.0,10.0,10.0,9.0,9.0,3,0.13 +8209,,,,,,,,0, +54460,95.0,9.0,9.0,10.0,10.0,9.0,10.0,5,0.21 +66423,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +6811,84.0,9.0,9.0,9.0,9.0,9.0,9.0,10,0.43 +70764,84.0,8.0,6.0,7.0,8.0,10.0,8.0,6,0.25 +30459,96.0,10.0,10.0,9.0,10.0,9.0,10.0,12,0.49 +68170,100.0,8.0,8.0,10.0,10.0,10.0,8.0,1,0.18 +35878,,,,,,,,0, +28213,94.0,10.0,10.0,10.0,10.0,9.0,9.0,83,3.53 +49382,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,3.14 +65655,87.0,9.0,7.0,10.0,9.0,9.0,9.0,3,0.15 +69798,94.0,9.0,9.0,9.0,10.0,10.0,9.0,8,0.33 +34179,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.13 +16222,96.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.26 +67144,94.0,10.0,9.0,10.0,9.0,10.0,9.0,7,0.31 +73705,99.0,10.0,10.0,10.0,10.0,10.0,10.0,34,1.45 +11886,93.0,9.0,10.0,9.0,9.0,10.0,9.0,15,0.65 +46369,100.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.66 +73291,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.47 +4919,96.0,10.0,8.0,10.0,10.0,10.0,10.0,5,0.29 +47202,100.0,10.0,10.0,10.0,9.0,9.0,9.0,3,0.14 +29947,100.0,10.0,10.0,10.0,10.0,10.0,10.0,36,1.6 +16146,98.0,10.0,10.0,10.0,10.0,9.0,10.0,19,0.98 +43146,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +68310,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.43 +96,,,,,,,,0, +41452,89.0,9.0,9.0,10.0,9.0,10.0,9.0,44,2.06 +29935,98.0,10.0,10.0,10.0,10.0,9.0,10.0,90,3.83 +44608,99.0,10.0,10.0,10.0,10.0,9.0,10.0,14,0.82 +10950,99.0,10.0,10.0,10.0,10.0,10.0,10.0,78,3.37 +36155,90.0,10.0,10.0,9.0,9.0,10.0,8.0,4,0.2 +1658,80.0,8.0,8.0,10.0,10.0,10.0,8.0,2,0.08 +13909,87.0,10.0,8.0,10.0,10.0,10.0,10.0,3,0.2 +72264,98.0,10.0,10.0,10.0,10.0,10.0,10.0,38,1.6 +18607,60.0,5.0,6.0,6.0,6.0,9.0,7.0,3,0.12 +53922,98.0,10.0,10.0,10.0,10.0,10.0,10.0,101,4.16 +49854,92.0,10.0,9.0,10.0,10.0,9.0,9.0,21,0.88 +73351,80.0,8.0,8.0,8.0,8.0,8.0,8.0,5,0.21 +27687,98.0,10.0,10.0,10.0,10.0,10.0,10.0,28,1.23 +2467,93.0,9.0,9.0,9.0,9.0,10.0,9.0,6,0.34 +61296,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +34175,86.0,9.0,9.0,9.0,9.0,10.0,8.0,31,1.27 +26625,,,,,,,,0, +32875,95.0,10.0,10.0,9.0,10.0,9.0,9.0,8,0.34 +14384,88.0,9.0,8.0,10.0,10.0,10.0,8.0,6,0.25 +20660,98.0,10.0,10.0,10.0,10.0,9.0,10.0,30,1.27 +63276,,,,,,,,0, +6497,,,,,,,,0, +45752,92.0,10.0,9.0,10.0,10.0,10.0,9.0,30,1.43 +5439,94.0,10.0,9.0,10.0,10.0,10.0,10.0,17,0.7 +76362,96.0,10.0,10.0,10.0,10.0,9.0,10.0,152,6.26 +23810,94.0,10.0,10.0,10.0,10.0,10.0,9.0,37,1.83 +2759,80.0,9.0,7.0,9.0,8.0,8.0,7.0,4,0.17 +40084,90.0,9.0,9.0,8.0,9.0,9.0,9.0,3,0.12 +69158,89.0,9.0,9.0,9.0,9.0,9.0,9.0,25,1.11 +7301,95.0,10.0,10.0,10.0,10.0,10.0,9.0,51,2.36 +33280,,,,,,,,0, +55488,99.0,10.0,10.0,10.0,10.0,10.0,10.0,20,0.88 +32051,,,,,,,,0, +32083,89.0,9.0,9.0,10.0,9.0,9.0,9.0,42,1.75 +278,85.0,8.0,8.0,9.0,10.0,9.0,9.0,8,0.38 +76709,85.0,10.0,8.0,9.0,9.0,10.0,9.0,5,0.2 +6865,,,,,,,,0, +52045,97.0,10.0,9.0,10.0,10.0,10.0,10.0,27,1.15 +3003,91.0,9.0,9.0,10.0,10.0,10.0,9.0,34,2.0 +33835,80.0,10.0,6.0,6.0,10.0,10.0,10.0,1,0.04 +50537,89.0,10.0,9.0,9.0,10.0,10.0,9.0,21,0.87 +11415,,,,,,,,1,0.04 +1369,92.0,9.0,9.0,10.0,10.0,10.0,9.0,29,1.19 +28396,60.0,8.0,6.0,10.0,10.0,8.0,10.0,1,0.17 +10234,99.0,10.0,10.0,10.0,10.0,10.0,10.0,60,2.47 +3256,98.0,10.0,9.0,10.0,10.0,10.0,10.0,8,0.4 +46724,93.0,10.0,10.0,10.0,10.0,10.0,9.0,34,1.87 +50582,100.0,8.0,10.0,10.0,10.0,10.0,8.0,1,0.04 +19604,90.0,9.0,9.0,10.0,10.0,10.0,9.0,27,1.62 +567,85.0,9.0,9.0,9.0,9.0,10.0,8.0,17,3.05 +57942,98.0,10.0,10.0,10.0,10.0,10.0,10.0,30,1.24 +30163,95.0,10.0,9.0,8.0,10.0,10.0,10.0,4,0.17 +26555,91.0,10.0,9.0,10.0,10.0,10.0,9.0,29,1.79 +70354,89.0,9.0,9.0,9.0,9.0,9.0,9.0,21,1.21 +2678,100.0,9.0,9.0,9.0,9.0,9.0,9.0,3,0.16 +53505,67.0,7.0,7.0,7.0,7.0,7.0,7.0,5,0.31 +14771,,,,,,,,0, +60580,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.13 +76465,90.0,9.0,10.0,10.0,10.0,10.0,9.0,27,1.6 +8601,89.0,9.0,9.0,10.0,10.0,10.0,9.0,33,1.89 +33350,68.0,7.0,7.0,9.0,9.0,9.0,8.0,19,0.96 +62320,85.0,9.0,9.0,10.0,9.0,10.0,9.0,23,1.34 +46680,99.0,10.0,10.0,10.0,10.0,9.0,9.0,17,0.72 +27059,90.0,9.0,9.0,10.0,9.0,10.0,8.0,16,0.65 +19584,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.21 +36223,86.0,9.0,8.0,9.0,9.0,9.0,9.0,25,1.19 +20568,94.0,10.0,9.0,10.0,10.0,10.0,10.0,58,2.42 +72622,93.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.15 +39593,89.0,9.0,10.0,10.0,10.0,9.0,10.0,12,0.52 +62260,,,,,,,,0, +18242,,,,,,,,0, +34579,95.0,10.0,9.0,10.0,10.0,10.0,9.0,53,2.22 +21392,98.0,10.0,10.0,10.0,10.0,9.0,10.0,21,0.94 +4845,90.0,10.0,8.0,10.0,10.0,8.0,9.0,3,0.12 +12735,,,,,,,,0, +24891,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.13 +73251,100.0,10.0,10.0,10.0,9.0,10.0,9.0,3,0.41 +43505,98.0,10.0,10.0,10.0,10.0,10.0,10.0,21,0.86 +36038,93.0,9.0,9.0,9.0,9.0,9.0,9.0,4,0.23 +68669,,,,,,,,0, +37164,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.06 +76818,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.09 +26778,100.0,10.0,10.0,10.0,10.0,10.0,10.0,26,1.27 +64760,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.28 +5053,96.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.21 +17101,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.08 +50687,94.0,10.0,9.0,10.0,10.0,9.0,10.0,18,1.47 +64073,97.0,10.0,9.0,9.0,10.0,10.0,9.0,6,0.25 +23197,90.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.08 +19029,94.0,10.0,10.0,10.0,10.0,10.0,10.0,24,1.14 +64782,70.0,7.0,5.0,8.0,8.0,10.0,10.0,3,0.13 +11179,90.0,10.0,10.0,10.0,7.0,10.0,9.0,2,0.17 +30774,93.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.14 +9163,100.0,10.0,10.0,10.0,10.0,9.0,9.0,6,0.26 +35537,100.0,10.0,10.0,10.0,10.0,10.0,10.0,30,1.25 +14189,97.0,10.0,10.0,10.0,10.0,10.0,10.0,32,1.7 +50065,96.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.27 +2477,92.0,9.0,9.0,10.0,10.0,9.0,9.0,54,2.29 +308,100.0,10.0,6.0,10.0,10.0,8.0,8.0,1,0.04 +37612,,,,,,,,0, +12895,97.0,10.0,9.0,10.0,10.0,9.0,10.0,13,0.55 +72667,93.0,10.0,10.0,10.0,9.0,9.0,10.0,6,0.25 +63699,80.0,6.0,8.0,10.0,10.0,8.0,8.0,1,0.04 +62777,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.38 +24853,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +67,81.0,9.0,8.0,8.0,8.0,9.0,8.0,27,1.16 +52505,98.0,10.0,10.0,10.0,10.0,10.0,9.0,22,1.04 +69651,,,,,,,,0, +18773,,,,,,,,0, +55075,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.29 +31691,98.0,10.0,9.0,9.0,10.0,10.0,10.0,28,1.17 +28408,90.0,9.0,9.0,10.0,10.0,9.0,9.0,10,0.42 +36875,87.0,9.0,8.0,9.0,9.0,9.0,8.0,11,0.53 +73962,,,,,,,,0, +37687,91.0,9.0,9.0,10.0,10.0,9.0,10.0,21,0.91 +41862,92.0,9.0,10.0,9.0,10.0,10.0,9.0,43,1.82 +10907,100.0,8.0,8.0,10.0,10.0,10.0,10.0,2,0.08 +12657,,,,,,,,0, +33826,88.0,10.0,10.0,10.0,10.0,10.0,9.0,13,0.55 +27575,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +64551,97.0,10.0,10.0,10.0,10.0,9.0,10.0,75,3.15 +64747,,,,,,,,1,0.08 +24000,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.08 +9917,95.0,10.0,9.0,10.0,10.0,10.0,10.0,31,1.36 +16796,83.0,8.0,9.0,9.0,9.0,9.0,8.0,7,0.35 +66560,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.09 +67367,86.0,9.0,8.0,10.0,9.0,10.0,9.0,15,0.64 +54841,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.17 +62646,100.0,10.0,10.0,10.0,8.0,10.0,10.0,1,0.2 +61683,99.0,10.0,10.0,10.0,10.0,9.0,10.0,19,0.96 +12188,80.0,10.0,6.0,10.0,10.0,10.0,8.0,1,0.04 +8739,91.0,9.0,9.0,10.0,10.0,10.0,9.0,66,2.76 +31659,96.0,10.0,10.0,10.0,10.0,10.0,10.0,54,2.24 +70467,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +63168,80.0,8.0,6.0,10.0,8.0,8.0,8.0,1,0.06 +51239,99.0,10.0,10.0,10.0,10.0,10.0,10.0,19,1.02 +28922,,,,,,,,0, +16762,,,,,,,,0, +21267,,,,,,,,0, +19022,100.0,10.0,10.0,8.0,10.0,10.0,10.0,1,0.04 +14116,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.13 +44147,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.11 +56218,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.34 +41219,,,,,,,,0, +15184,99.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.64 +11968,,,,,,,,1,0.04 +67780,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +17774,97.0,10.0,10.0,10.0,10.0,10.0,10.0,51,2.46 +31318,100.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.08 +10938,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +46202,80.0,8.0,2.0,2.0,4.0,8.0,6.0,1,0.04 +42815,97.0,10.0,9.0,10.0,10.0,9.0,9.0,13,0.78 +59933,,,,,,,,0, +27635,,,,,,,,0, +895,83.0,9.0,9.0,9.0,9.0,10.0,9.0,130,5.34 +22720,76.0,8.0,9.0,9.0,9.0,10.0,8.0,180,7.41 +24903,100.0,10.0,10.0,10.0,10.0,10.0,10.0,36,1.51 +39764,96.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.25 +33536,100.0,9.0,9.0,10.0,10.0,7.0,8.0,2,0.08 +13955,99.0,10.0,10.0,10.0,10.0,9.0,10.0,24,0.99 +67702,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.42 +72083,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.31 +7161,95.0,10.0,10.0,10.0,10.0,9.0,9.0,13,0.55 +20048,99.0,10.0,10.0,10.0,10.0,10.0,10.0,38,1.66 +68973,100.0,9.0,9.0,10.0,10.0,10.0,10.0,2,0.08 +19478,96.0,10.0,9.0,9.0,10.0,10.0,10.0,15,0.77 +61233,84.0,9.0,9.0,9.0,9.0,10.0,8.0,103,4.23 +47693,80.0,8.0,8.0,10.0,10.0,8.0,7.0,3,0.12 +46937,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.09 +8850,86.0,9.0,9.0,9.0,9.0,10.0,9.0,18,1.07 +53376,91.0,10.0,10.0,10.0,9.0,10.0,9.0,18,1.05 +63664,94.0,10.0,10.0,9.0,10.0,9.0,9.0,7,0.29 +30180,89.0,10.0,10.0,10.0,9.0,10.0,9.0,20,0.85 +64226,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +66029,87.0,9.0,9.0,8.0,9.0,9.0,8.0,4,0.23 +9573,,,,,,,,0, +54759,,,,,,,,0, +62935,,,,,,,,0, +76651,94.0,10.0,9.0,10.0,10.0,10.0,9.0,16,0.9 +12784,92.0,10.0,10.0,10.0,9.0,9.0,9.0,22,1.29 +69891,90.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.17 +59251,100.0,9.0,10.0,10.0,10.0,10.0,9.0,3,0.12 +75527,88.0,9.0,10.0,9.0,9.0,9.0,9.0,34,1.4 +64695,90.0,10.0,10.0,9.0,9.0,9.0,9.0,25,1.37 +50970,96.0,10.0,10.0,10.0,10.0,10.0,10.0,42,1.74 +38258,92.0,9.0,9.0,10.0,10.0,9.0,9.0,20,1.15 +20010,,,,,,,,0, +395,98.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.68 +7682,,,,,,,,0, +14393,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +3026,,,,,,,,0, +7584,,,,,,,,0, +15639,86.0,9.0,9.0,9.0,9.0,9.0,8.0,13,0.78 +5392,90.0,9.0,10.0,10.0,9.0,9.0,10.0,23,1.37 +66731,93.0,10.0,9.0,10.0,10.0,10.0,10.0,19,1.13 +63198,76.0,8.0,8.0,8.0,8.0,9.0,8.0,11,0.67 +14531,95.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.89 +32704,91.0,10.0,10.0,10.0,10.0,10.0,9.0,34,1.85 +11040,99.0,10.0,10.0,10.0,10.0,10.0,10.0,16,1.01 +32952,94.0,10.0,10.0,9.0,10.0,9.0,8.0,7,0.4 +2644,60.0,6.0,4.0,8.0,10.0,10.0,6.0,1,0.04 +45749,93.0,10.0,10.0,9.0,9.0,9.0,9.0,16,0.94 +70318,,,,,,,,2,0.09 +13227,80.0,9.0,8.0,8.0,9.0,9.0,8.0,11,0.61 +52860,90.0,8.0,8.0,10.0,9.0,9.0,9.0,2,0.08 +26397,100.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.06 +58948,,,,,,,,0, +34739,,,,,,,,0, +15773,93.0,10.0,9.0,9.0,9.0,9.0,9.0,9,0.38 +20061,93.0,9.0,9.0,9.0,9.0,9.0,9.0,15,0.64 +74374,95.0,10.0,10.0,10.0,10.0,10.0,9.0,25,1.43 +1115,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.04 +48365,88.0,9.0,9.0,9.0,9.0,10.0,9.0,217,8.89 +41332,,,,,,,,0, +71082,76.0,8.0,8.0,9.0,9.0,9.0,8.0,148,6.07 +39490,,,,,,,,1,0.1 +7007,,,,,,,,0, +60864,90.0,9.0,9.0,10.0,10.0,9.0,9.0,82,3.42 +67733,89.0,9.0,8.0,9.0,10.0,10.0,8.0,22,0.95 +19572,98.0,10.0,8.0,10.0,10.0,10.0,10.0,8,0.34 +27981,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.18 +45569,94.0,10.0,9.0,10.0,10.0,9.0,10.0,10,1.29 +20021,99.0,10.0,10.0,10.0,10.0,10.0,10.0,33,1.4 +59566,95.0,9.0,9.0,10.0,10.0,10.0,9.0,18,0.76 +50402,,,,,,,,0, +25264,,,,,,,,0, +23764,89.0,10.0,10.0,9.0,9.0,10.0,9.0,7,0.46 +7887,,,,,,,,0, +2419,,,,,,,,0, +63605,,,,,,,,1,0.05 +65724,,,,,,,,1,0.18 +14072,82.0,9.0,9.0,10.0,10.0,10.0,9.0,41,1.73 +12975,95.0,10.0,9.0,10.0,9.0,10.0,9.0,32,1.34 +75792,94.0,10.0,9.0,10.0,10.0,10.0,9.0,25,1.09 +41055,80.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.07 +30025,88.0,9.0,9.0,10.0,9.0,9.0,10.0,17,0.72 +30091,74.0,8.0,10.0,9.0,9.0,9.0,8.0,9,0.38 +70968,97.0,10.0,10.0,9.0,10.0,10.0,10.0,12,0.6 +64865,83.0,9.0,9.0,10.0,9.0,10.0,9.0,170,7.04 +3508,80.0,8.0,8.0,10.0,10.0,10.0,8.0,1,0.07 +16397,80.0,9.0,9.0,10.0,9.0,10.0,8.0,174,7.25 +6251,100.0,10.0,8.0,10.0,10.0,,,1,0.06 +12071,,,,,,,,0, +28450,85.0,8.0,10.0,9.0,9.0,10.0,8.0,4,0.17 +74693,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.12 +52707,,,,,,,,0, +24056,92.0,9.0,9.0,9.0,10.0,9.0,9.0,22,0.92 +51459,100.0,10.0,10.0,10.0,10.0,8.0,10.0,2,0.08 +8237,,,,,,,,0, +11184,87.0,10.0,10.0,10.0,9.0,9.0,9.0,6,0.36 +57289,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.44 +5803,93.0,10.0,9.0,10.0,9.0,10.0,9.0,21,1.25 +52468,,,,,,,,0, +41087,100.0,10.0,10.0,10.0,10.0,10.0,9.0,11,0.45 +28742,,,,,,,,0, +43208,95.0,10.0,10.0,10.0,10.0,10.0,10.0,57,2.38 +34279,93.0,9.0,7.0,9.0,9.0,9.0,9.0,3,0.13 +14661,95.0,10.0,10.0,10.0,10.0,9.0,10.0,12,0.52 +52910,93.0,9.0,9.0,10.0,9.0,10.0,9.0,14,0.58 +61003,,,,,,,,0, +72859,92.0,9.0,9.0,10.0,10.0,9.0,9.0,34,1.44 +41766,,,,,,,,0, +74182,93.0,9.0,8.0,10.0,10.0,9.0,9.0,3,0.13 +76551,96.0,10.0,10.0,10.0,10.0,9.0,10.0,107,4.43 +74962,95.0,10.0,10.0,10.0,10.0,9.0,9.0,26,1.1 +34824,100.0,10.0,9.0,9.0,10.0,10.0,9.0,3,0.15 +20241,,,,,,,,1,0.04 +32133,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.19 +37923,96.0,10.0,10.0,10.0,10.0,9.0,10.0,18,0.92 +56053,97.0,10.0,10.0,10.0,10.0,9.0,10.0,13,0.82 +19691,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.04 +37171,95.0,10.0,9.0,10.0,10.0,9.0,9.0,23,0.98 +28702,100.0,10.0,10.0,8.0,10.0,10.0,10.0,2,0.08 +61760,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.18 +2879,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +17461,100.0,9.0,8.0,10.0,10.0,10.0,10.0,6,0.25 +23892,94.0,9.0,10.0,9.0,9.0,10.0,8.0,10,0.43 +52839,93.0,10.0,9.0,10.0,9.0,10.0,9.0,17,0.72 +55628,92.0,10.0,9.0,9.0,10.0,9.0,9.0,102,4.43 +7509,,,,,,,,0, +18459,80.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.09 +17561,80.0,10.0,10.0,8.0,10.0,10.0,8.0,2,0.09 +24565,98.0,10.0,10.0,10.0,10.0,10.0,10.0,20,1.06 +35530,93.0,10.0,9.0,10.0,10.0,10.0,9.0,38,1.58 +940,100.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.26 +6562,,,,,,,,0, +38775,,,,,,,,0, +48519,,,,,,,,0, +68511,,,,,,,,0, +31900,90.0,10.0,10.0,9.0,10.0,10.0,9.0,25,1.45 +70080,100.0,10.0,10.0,10.0,10.0,8.0,10.0,5,0.21 +31987,96.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.57 +26674,90.0,10.0,10.0,10.0,9.0,9.0,9.0,32,1.86 +18612,70.0,9.0,5.0,7.0,8.0,10.0,8.0,2,0.09 +56254,91.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.45 +9450,97.0,10.0,10.0,10.0,10.0,10.0,10.0,50,2.36 +35150,82.0,9.0,8.0,9.0,9.0,9.0,8.0,33,1.4 +30989,91.0,10.0,9.0,9.0,10.0,10.0,9.0,35,1.49 +14452,,,,,,,,1,0.04 +71408,,,,,,,,0, +19585,63.0,8.0,7.0,8.0,7.0,9.0,7.0,7,1.51 +38201,80.0,8.0,10.0,10.0,10.0,10.0,8.0,1,0.05 +58052,86.0,10.0,8.0,9.0,10.0,9.0,9.0,8,0.57 +76291,,,,,,,,0, +64736,,,,,,,,0, +24191,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.39 +18044,93.0,9.0,9.0,10.0,9.0,9.0,9.0,11,0.47 +17681,99.0,10.0,10.0,10.0,10.0,9.0,10.0,15,0.72 +45046,98.0,10.0,10.0,10.0,10.0,9.0,10.0,37,1.64 +56980,89.0,10.0,9.0,10.0,10.0,9.0,10.0,13,0.7 +29903,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.09 +44586,90.0,9.0,8.0,9.0,9.0,9.0,9.0,4,0.17 +22657,90.0,10.0,9.0,10.0,10.0,10.0,9.0,2,0.09 +2561,,,,,,,,0, +65358,,,,,,,,0, +15244,98.0,9.0,10.0,10.0,10.0,9.0,10.0,23,0.96 +11883,99.0,10.0,10.0,10.0,10.0,10.0,9.0,17,0.72 +28358,93.0,10.0,9.0,10.0,10.0,10.0,9.0,4,0.31 +38156,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.21 +53668,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.18 +9096,97.0,10.0,10.0,10.0,10.0,10.0,9.0,7,0.38 +24721,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.15 +59546,96.0,10.0,10.0,10.0,10.0,10.0,10.0,22,0.97 +48866,95.0,10.0,10.0,10.0,10.0,9.0,10.0,41,1.83 +1967,88.0,9.0,9.0,10.0,9.0,9.0,9.0,8,0.39 +40073,,,,,,,,0, +61128,,,,,,,,1,0.23 +76667,,,,,,,,0, +23682,92.0,10.0,9.0,10.0,10.0,9.0,10.0,5,0.21 +13277,,,,,,,,0, +12675,90.0,10.0,9.0,10.0,10.0,10.0,9.0,8,0.46 +13504,88.0,9.0,9.0,9.0,10.0,9.0,8.0,15,0.73 +4608,95.0,10.0,10.0,9.0,9.0,8.0,9.0,5,0.25 +1391,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.17 +52352,83.0,9.0,9.0,9.0,9.0,10.0,9.0,29,1.19 +7226,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.06 +1714,,,,,,,,0, +69649,91.0,10.0,10.0,10.0,9.0,9.0,9.0,14,0.6 +48187,97.0,10.0,10.0,10.0,10.0,9.0,10.0,62,2.78 +60945,99.0,10.0,10.0,10.0,10.0,10.0,10.0,195,8.3 +17397,80.0,8.0,8.0,8.0,6.0,8.0,8.0,1,0.04 +17125,87.0,9.0,9.0,9.0,9.0,10.0,9.0,46,1.9 +38320,,,,,,,,0, +15071,93.0,10.0,10.0,10.0,10.0,9.0,9.0,25,1.06 +50733,98.0,10.0,10.0,10.0,10.0,10.0,10.0,36,1.96 +54035,91.0,9.0,10.0,10.0,10.0,10.0,9.0,10,0.41 +19059,100.0,10.0,9.0,10.0,10.0,10.0,9.0,12,0.51 +36060,60.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +44942,93.0,10.0,9.0,10.0,10.0,9.0,9.0,19,0.88 +40866,99.0,10.0,10.0,10.0,10.0,9.0,10.0,60,2.64 +68888,99.0,10.0,10.0,10.0,10.0,9.0,10.0,17,0.72 +67895,,,,,,,,0, +35722,90.0,8.0,10.0,10.0,10.0,10.0,10.0,2,0.09 +23642,90.0,8.0,10.0,10.0,9.0,10.0,9.0,4,0.24 +18684,98.0,10.0,9.0,10.0,10.0,10.0,10.0,21,0.89 +10894,20.0,2.0,2.0,2.0,2.0,2.0,2.0,1,0.07 +44026,60.0,4.0,4.0,8.0,8.0,8.0,4.0,1,0.06 +33594,50.0,6.0,7.0,9.0,9.0,10.0,6.0,2,0.38 +5235,83.0,8.0,9.0,9.0,10.0,9.0,9.0,12,0.5 +7261,90.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.18 +37284,80.0,8.0,6.0,8.0,8.0,8.0,8.0,1,0.04 +47181,93.0,9.0,9.0,10.0,10.0,9.0,10.0,3,0.13 +56241,97.0,10.0,9.0,10.0,10.0,10.0,10.0,18,0.77 +57476,90.0,9.0,9.0,6.0,7.0,10.0,9.0,2,0.09 +16815,90.0,9.0,9.0,9.0,9.0,9.0,9.0,12,0.53 +47872,90.0,9.0,9.0,9.0,9.0,9.0,8.0,2,0.08 +22392,95.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.2 +959,83.0,9.0,6.0,9.0,9.0,10.0,8.0,6,0.26 +21618,,,,,,,,0, +37513,80.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.05 +70481,90.0,10.0,8.0,9.0,10.0,8.0,9.0,4,0.17 +50442,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +43649,,,,,,,,0, +18279,96.0,10.0,9.0,10.0,10.0,9.0,9.0,14,0.75 +42565,96.0,10.0,10.0,10.0,10.0,10.0,10.0,192,7.92 +7580,97.0,10.0,9.0,10.0,10.0,10.0,10.0,76,3.14 +17056,,,,,,,,0, +1433,,,,,,,,1,0.04 +32520,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.39 +63752,90.0,10.0,10.0,10.0,10.0,8.0,10.0,5,0.25 +17579,95.0,10.0,10.0,10.0,10.0,10.0,10.0,27,1.35 +26161,,,,,,,,0, +22722,97.0,10.0,10.0,10.0,10.0,10.0,10.0,26,1.13 +49388,98.0,10.0,10.0,10.0,10.0,10.0,10.0,43,1.8 +67270,,,,,,,,0, +59882,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.3 +70074,90.0,10.0,9.0,10.0,10.0,10.0,9.0,11,0.48 +37663,98.0,10.0,10.0,10.0,10.0,10.0,10.0,39,1.66 +75361,,,,,,,,0, +42538,96.0,9.0,10.0,9.0,10.0,9.0,10.0,12,0.61 +48254,98.0,10.0,9.0,10.0,10.0,10.0,9.0,12,0.51 +22262,,,,,,,,0, +52067,85.0,9.0,8.0,9.0,10.0,9.0,9.0,8,0.36 +1418,87.0,9.0,8.0,9.0,10.0,9.0,9.0,22,0.91 +38560,88.0,9.0,9.0,8.0,8.0,8.0,8.0,5,0.21 +23375,100.0,10.0,10.0,10.0,10.0,10.0,10.0,27,1.25 +59553,,,,,,,,0, +35462,96.0,10.0,10.0,10.0,10.0,9.0,9.0,22,0.93 +45882,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.08 +4587,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.41 +46505,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.19 +9755,,,,,,,,0, +71797,,,,,,,,0, +70212,,,,,,,,0, +61434,80.0,9.0,8.0,10.0,9.0,10.0,9.0,7,0.36 +50202,96.0,10.0,10.0,10.0,10.0,10.0,10.0,29,1.31 +64390,92.0,10.0,9.0,10.0,10.0,9.0,9.0,24,1.0 +3313,,,,,,,,0, +26858,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.12 +47103,100.0,10.0,6.0,10.0,10.0,10.0,10.0,1,0.05 +17019,,,,,,,,0, +58294,100.0,9.0,9.0,10.0,10.0,10.0,10.0,3,0.13 +33191,89.0,10.0,9.0,10.0,10.0,10.0,9.0,26,1.12 +60266,,,,,,,,0, +70920,,,,,,,,0, +29670,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.09 +11052,96.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.74 +56704,94.0,10.0,8.0,10.0,10.0,9.0,9.0,8,0.63 +6023,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +49194,97.0,10.0,10.0,10.0,10.0,8.0,9.0,21,0.89 +41467,98.0,10.0,10.0,10.0,10.0,9.0,10.0,22,1.25 +44828,87.0,9.0,9.0,10.0,10.0,9.0,9.0,88,3.67 +31200,94.0,10.0,10.0,10.0,10.0,9.0,9.0,20,8.7 +27353,89.0,9.0,9.0,10.0,10.0,10.0,9.0,78,3.39 +1209,80.0,9.0,9.0,7.0,7.0,9.0,7.0,3,0.13 +3257,97.0,10.0,10.0,10.0,10.0,9.0,9.0,40,1.7 +65532,93.0,9.0,9.0,8.0,10.0,9.0,9.0,15,0.64 +13333,,,,,,,,0, +46252,60.0,6.0,10.0,6.0,2.0,6.0,6.0,2,0.09 +43465,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +64347,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.04 +55415,60.0,6.0,4.0,2.0,6.0,8.0,4.0,1,0.04 +31002,,,,,,,,0, +37554,,,,,,,,0, +17283,91.0,10.0,9.0,10.0,10.0,10.0,9.0,15,0.64 +37680,98.0,10.0,10.0,10.0,10.0,10.0,10.0,33,1.39 +39239,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.08 +17320,,,,,,,,0, +43261,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.42 +40238,87.0,9.0,9.0,10.0,10.0,9.0,9.0,80,3.36 +77048,,,,,,,,0, +64131,,,,,,,,0, +33715,,,,,,,,0, +64698,96.0,10.0,10.0,10.0,10.0,9.0,10.0,33,1.77 +17344,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,1.82 +60437,,,,,,,,0, +27139,,,,,,,,0, +41847,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.19 +60770,80.0,8.0,10.0,10.0,10.0,8.0,8.0,1,0.04 +31235,90.0,9.0,8.0,9.0,10.0,9.0,9.0,11,0.45 +52620,87.0,9.0,8.0,8.0,9.0,9.0,9.0,20,0.85 +34227,80.0,6.0,8.0,8.0,6.0,6.0,6.0,1,0.04 +26548,98.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.33 +33333,75.0,6.0,9.0,9.0,9.0,10.0,8.0,4,0.27 +43970,60.0,6.0,4.0,6.0,8.0,8.0,6.0,1,0.81 +16854,,,,,,,,0, +77042,93.0,10.0,10.0,10.0,10.0,9.0,9.0,13,0.56 +73000,95.0,9.0,9.0,10.0,9.0,10.0,9.0,38,1.58 +66541,,,,,,,,0, +44019,,,,,,,,0, +27040,96.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.84 +1279,60.0,6.0,4.0,10.0,4.0,10.0,6.0,1,0.04 +427,80.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.04 +56311,90.0,8.0,9.0,8.0,9.0,8.0,9.0,2,0.11 +66797,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.09 +54909,40.0,2.0,2.0,6.0,8.0,6.0,4.0,2,0.08 +47131,,,,,,,,0, +69789,90.0,9.0,9.0,10.0,9.0,10.0,9.0,66,2.78 +36606,100.0,10.0,10.0,10.0,10.0,10.0,9.0,16,0.85 +72631,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.2 +13145,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.64 +43018,100.0,10.0,10.0,10.0,10.0,10.0,10.0,34,1.5 +63756,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.93 +1293,98.0,9.0,10.0,9.0,10.0,10.0,10.0,11,0.47 +60334,,,,,,,,0, +76773,91.0,10.0,9.0,10.0,10.0,10.0,9.0,25,1.08 +25509,,,,,,,,0, +34414,94.0,10.0,10.0,10.0,10.0,10.0,9.0,44,1.87 +27405,95.0,10.0,9.0,10.0,10.0,9.0,10.0,35,1.73 +42312,,,,,,,,0, +51241,97.0,10.0,10.0,10.0,10.0,10.0,10.0,45,1.89 +34370,100.0,10.0,10.0,10.0,10.0,9.0,10.0,11,0.5 +58350,94.0,9.0,10.0,10.0,10.0,9.0,10.0,57,2.42 +19606,,,,,,,,0, +1785,,,,,,,,0, +13840,40.0,,4.0,,,,,1,0.04 +31296,80.0,9.0,9.0,10.0,9.0,9.0,9.0,6,0.27 +39926,97.0,10.0,10.0,10.0,10.0,10.0,10.0,93,3.89 +21119,96.0,10.0,10.0,10.0,10.0,10.0,10.0,40,1.7 +2386,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +45461,90.0,10.0,7.0,10.0,10.0,9.0,10.0,3,0.13 +50946,97.0,10.0,10.0,10.0,10.0,9.0,10.0,53,2.26 +28406,,,,,,,,0, +74644,90.0,9.0,8.0,10.0,9.0,10.0,9.0,16,0.73 +35836,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.34 +47302,100.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.19 +56557,100.0,10.0,10.0,10.0,10.0,10.0,9.0,7,0.35 +19136,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +61386,83.0,8.0,9.0,9.0,9.0,8.0,8.0,13,0.55 +71591,,,,,,,,0, +5860,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +13128,,,,,,,,0, +48335,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.38 +22112,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.25 +54181,92.0,10.0,9.0,10.0,10.0,9.0,9.0,12,1.04 +68520,92.0,10.0,9.0,10.0,10.0,10.0,10.0,28,1.19 +53130,98.0,10.0,10.0,10.0,10.0,10.0,10.0,45,2.03 +31594,91.0,10.0,9.0,10.0,10.0,10.0,10.0,47,2.0 +24203,87.0,9.0,9.0,10.0,9.0,8.0,9.0,13,0.54 +35566,96.0,10.0,10.0,10.0,10.0,10.0,10.0,22,0.94 +34524,,,,,,,,0, +40613,,,,,,,,0, +5274,87.0,9.0,9.0,10.0,9.0,10.0,9.0,24,1.02 +3563,90.0,9.0,9.0,10.0,10.0,10.0,8.0,12,0.61 +66389,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.29 +63886,,,,,,,,0, +52668,96.0,9.0,8.0,10.0,10.0,10.0,9.0,10,0.42 +63559,95.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.27 +54783,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.18 +74056,96.0,10.0,10.0,10.0,10.0,9.0,9.0,73,3.14 +62974,,,,,,,,0, +46952,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +39032,80.0,8.0,7.0,10.0,9.0,10.0,9.0,7,0.31 +23919,97.0,10.0,9.0,10.0,10.0,10.0,9.0,6,0.3 +31044,97.0,10.0,10.0,10.0,10.0,10.0,10.0,35,1.93 +63712,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.2 +63679,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.25 +41612,93.0,10.0,10.0,10.0,10.0,9.0,9.0,4,0.17 +65459,,,,,,,,0, +21558,100.0,10.0,9.0,10.0,10.0,9.0,10.0,7,0.32 +15185,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.4 +27032,90.0,10.0,9.0,10.0,10.0,10.0,9.0,8,0.34 +63971,98.0,10.0,10.0,10.0,10.0,10.0,10.0,48,2.01 +42081,80.0,8.0,8.0,9.0,8.0,9.0,8.0,13,0.59 +55949,87.0,9.0,9.0,8.0,7.0,10.0,9.0,6,0.29 +59834,86.0,8.0,8.0,10.0,9.0,10.0,8.0,7,0.29 +42826,,,,,,,,0, +45520,,,,,,,,0, +14967,99.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.81 +48618,91.0,10.0,10.0,9.0,10.0,9.0,9.0,16,0.67 +55615,,,,,,,,0, +27533,95.0,10.0,10.0,10.0,10.0,10.0,9.0,85,3.6 +3463,80.0,6.0,6.0,8.0,8.0,10.0,8.0,1,0.26 +23304,95.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.51 +31631,,,,,,,,0, +44466,98.0,10.0,10.0,10.0,10.0,10.0,10.0,49,2.12 +77012,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.18 +68272,90.0,10.0,9.0,10.0,10.0,10.0,9.0,9,0.4 +74443,90.0,9.0,9.0,10.0,9.0,10.0,10.0,2,0.09 +68742,94.0,10.0,8.0,10.0,10.0,10.0,9.0,16,0.69 +53579,73.0,7.0,7.0,7.0,7.0,7.0,7.0,3,0.13 +50513,91.0,10.0,10.0,9.0,9.0,10.0,9.0,11,0.5 +47814,88.0,9.0,8.0,10.0,10.0,9.0,9.0,5,0.26 +31516,92.0,9.0,9.0,10.0,9.0,9.0,9.0,21,0.87 +9530,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.1 +15964,,,,,,,,0, +45884,84.0,9.0,9.0,9.0,9.0,10.0,9.0,18,0.88 +32861,,,,,,,,0, +55341,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.58 +9518,,,,,,,,0, +23004,,,,,,,,0, +37825,80.0,8.0,6.0,10.0,10.0,10.0,10.0,1,0.04 +2201,92.0,9.0,9.0,9.0,10.0,8.0,9.0,18,0.81 +48510,94.0,10.0,9.0,10.0,10.0,9.0,10.0,7,0.3 +66588,92.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.23 +46287,96.0,9.0,8.0,10.0,10.0,9.0,9.0,11,0.47 +40931,,,,,,,,0, +2902,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.38 +54411,,,,,,,,0, +48539,,,,,,,,0, +60646,97.0,10.0,10.0,10.0,10.0,10.0,10.0,45,1.97 +2220,100.0,9.0,10.0,9.0,9.0,10.0,9.0,3,0.13 +63225,93.0,10.0,10.0,9.0,10.0,9.0,9.0,33,1.49 +29386,,,,,,,,0, +25161,95.0,9.0,10.0,10.0,9.0,10.0,10.0,4,0.22 +4011,99.0,10.0,10.0,10.0,10.0,10.0,10.0,58,2.76 +39531,98.0,10.0,10.0,10.0,10.0,9.0,10.0,67,2.85 +38557,73.0,8.0,8.0,8.0,9.0,8.0,7.0,13,0.56 +50720,90.0,10.0,8.0,10.0,10.0,9.0,10.0,2,0.09 +49890,87.0,8.0,7.0,8.0,8.0,10.0,9.0,3,0.13 +9165,96.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.73 +49975,,,,,,,,0, +8197,95.0,10.0,10.0,10.0,10.0,9.0,9.0,16,0.68 +38278,99.0,10.0,10.0,10.0,10.0,9.0,10.0,18,0.97 +27590,,,,,,,,0, +71594,97.0,10.0,10.0,10.0,10.0,9.0,10.0,53,2.26 +64006,100.0,10.0,9.0,10.0,10.0,9.0,10.0,3,0.12 +47518,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +30546,96.0,10.0,9.0,9.0,9.0,10.0,9.0,28,1.19 +67236,97.0,10.0,10.0,10.0,10.0,9.0,9.0,105,5.46 +67783,90.0,9.0,8.0,10.0,9.0,10.0,9.0,6,0.26 +2542,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +74376,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.58 +41907,95.0,10.0,9.0,9.0,10.0,9.0,9.0,13,0.54 +17715,91.0,9.0,10.0,10.0,10.0,9.0,9.0,8,0.34 +15791,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.36 +39976,87.0,9.0,8.0,10.0,9.0,10.0,9.0,9,0.38 +67032,100.0,10.0,10.0,8.0,8.0,10.0,10.0,1,0.04 +59683,99.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.69 +29817,97.0,10.0,10.0,10.0,10.0,10.0,10.0,25,1.15 +10401,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.34 +47680,99.0,10.0,10.0,10.0,10.0,9.0,10.0,57,2.44 +7484,97.0,10.0,10.0,10.0,10.0,9.0,10.0,23,0.98 +30642,,,,,,,,0, +42722,95.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.17 +59146,96.0,10.0,10.0,10.0,10.0,10.0,9.0,45,1.91 +31048,96.0,10.0,10.0,10.0,10.0,10.0,10.0,27,1.15 +69394,80.0,8.0,8.0,8.0,8.0,8.0,8.0,16,0.74 +43997,,,,,,,,0, +41812,97.0,10.0,10.0,10.0,10.0,9.0,9.0,41,1.92 +19535,,,,,,,,0, +23700,96.0,10.0,10.0,10.0,10.0,10.0,9.0,32,1.37 +19364,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +55,83.0,8.0,8.0,9.0,9.0,10.0,8.0,8,0.44 +2501,,,,,,,,0, +28936,,,,,,,,1,0.05 +3290,90.0,10.0,9.0,10.0,10.0,8.0,9.0,6,0.79 +3841,,,,,,,,1,0.05 +7557,95.0,10.0,9.0,10.0,10.0,9.0,10.0,8,0.34 +16511,96.0,10.0,10.0,10.0,10.0,10.0,9.0,49,2.08 +22277,98.0,9.0,9.0,9.0,9.0,10.0,10.0,9,0.45 +16730,,,,,,,,0, +59266,95.0,10.0,10.0,10.0,10.0,10.0,9.0,53,2.25 +65570,80.0,7.0,7.0,9.0,9.0,10.0,8.0,10,0.43 +40685,96.0,10.0,10.0,10.0,10.0,9.0,10.0,31,1.31 +58915,97.0,10.0,10.0,10.0,10.0,10.0,10.0,40,1.66 +73971,89.0,9.0,9.0,10.0,10.0,10.0,9.0,17,0.75 +11137,,,,,,,,0, +12596,80.0,10.0,9.0,10.0,10.0,8.0,10.0,3,0.13 +41897,95.0,10.0,10.0,10.0,10.0,10.0,10.0,82,3.51 +35965,98.0,10.0,9.0,9.0,10.0,10.0,10.0,11,0.47 +44553,92.0,10.0,8.0,10.0,10.0,9.0,9.0,5,0.21 +12960,,,,,,,,0, +54762,95.0,10.0,10.0,10.0,10.0,10.0,10.0,127,5.29 +73921,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.47 +42456,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.86 +13467,90.0,9.0,9.0,9.0,9.0,9.0,9.0,12,0.52 +54576,89.0,9.0,10.0,9.0,9.0,10.0,9.0,34,1.46 +15467,91.0,10.0,9.0,10.0,10.0,9.0,9.0,9,0.39 +9319,100.0,10.0,9.0,10.0,10.0,10.0,9.0,5,0.34 +50797,91.0,9.0,9.0,10.0,10.0,9.0,9.0,17,1.07 +39497,99.0,10.0,10.0,10.0,10.0,10.0,10.0,60,2.85 +57410,100.0,10.0,10.0,10.0,10.0,10.0,10.0,29,1.23 +53665,98.0,10.0,10.0,10.0,10.0,10.0,9.0,13,0.55 +52082,91.0,10.0,9.0,9.0,10.0,9.0,9.0,11,0.47 +28828,,,,,,,,0, +41328,,,,,,,,0, +25995,,,,,,,,1,0.04 +54272,100.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.68 +21259,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.08 +36549,80.0,9.0,9.0,10.0,10.0,9.0,9.0,5,0.26 +67596,,,,,,,,0, +30377,,,,,,,,0, +3531,90.0,10.0,10.0,10.0,10.0,10.0,8.0,5,0.21 +73798,97.0,10.0,10.0,10.0,10.0,10.0,10.0,94,4.0 +71519,83.0,8.0,8.0,9.0,9.0,9.0,8.0,13,0.63 +11600,95.0,10.0,9.0,10.0,9.0,9.0,10.0,65,2.86 +62798,98.0,10.0,10.0,10.0,10.0,10.0,10.0,31,1.31 +65190,94.0,10.0,9.0,10.0,10.0,9.0,9.0,13,0.77 +2517,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.13 +69761,92.0,9.0,9.0,10.0,9.0,10.0,9.0,35,1.5 +72945,93.0,10.0,9.0,9.0,10.0,9.0,9.0,3,0.13 +70167,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.23 +60660,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.22 +45131,,,,,,,,1,0.5 +13436,100.0,10.0,9.0,10.0,10.0,9.0,10.0,3,0.13 +32651,94.0,9.0,9.0,10.0,10.0,9.0,9.0,34,1.42 +29911,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.24 +19818,98.0,10.0,10.0,10.0,10.0,10.0,10.0,61,2.79 +60109,95.0,10.0,10.0,10.0,10.0,10.0,10.0,49,2.12 +7532,96.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.21 +36115,,,,,,,,0, +36894,,,,,,,,0, +76570,,,,,,,,0, +40561,,,,,,,,0, +14844,98.0,10.0,10.0,10.0,10.0,9.0,10.0,30,1.46 +42949,,,,,,,,0, +33202,,,,,,,,0, +49269,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.51 +37586,96.0,10.0,10.0,10.0,10.0,9.0,9.0,5,0.21 +51973,93.0,9.0,10.0,10.0,10.0,9.0,9.0,36,1.53 +20777,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +49416,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.18 +65769,,,,,,,,0, +41378,96.0,10.0,9.0,10.0,10.0,10.0,9.0,138,5.87 +66462,,,,,,,,0, +75941,87.0,9.0,7.0,10.0,10.0,10.0,9.0,3,0.16 +6249,98.0,10.0,10.0,10.0,10.0,9.0,9.0,12,0.53 +72459,,,,,,,,0, +17885,,,,,,,,0, +50297,93.0,9.0,9.0,9.0,10.0,9.0,9.0,4,0.17 +5360,,,,,,,,1,0.28 +2377,,,,,,,,0, +44990,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.14 +38379,91.0,10.0,9.0,10.0,10.0,9.0,9.0,82,3.51 +75299,95.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.49 +76756,97.0,10.0,10.0,9.0,10.0,10.0,10.0,7,0.3 +42153,98.0,10.0,10.0,10.0,10.0,10.0,10.0,36,1.74 +73899,,,,,,,,0, +47121,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.26 +72456,87.0,10.0,9.0,9.0,9.0,10.0,9.0,31,1.32 +66150,95.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.17 +32587,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.13 +41581,,,,,,,,0, +3244,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.49 +1146,100.0,10.0,10.0,10.0,10.0,10.0,10.0,36,1.58 +40405,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +53187,80.0,10.0,8.0,6.0,10.0,10.0,8.0,1,0.06 +73249,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.09 +43355,87.0,9.0,8.0,6.0,7.0,10.0,8.0,3,0.13 +14262,80.0,10.0,9.0,10.0,10.0,9.0,8.0,5,0.24 +65465,80.0,10.0,6.0,10.0,10.0,4.0,8.0,2,0.09 +22428,,,,,,,,0, +54713,,,,,,,,0, +71037,,,,,,,,0, +19965,91.0,9.0,9.0,8.0,9.0,8.0,9.0,9,0.46 +53317,,,,,,,,0, +44372,,,,,,,,0, +3089,100.0,10.0,10.0,10.0,10.0,8.0,10.0,2,0.09 +70059,96.0,10.0,10.0,10.0,10.0,10.0,10.0,91,3.95 +67234,98.0,10.0,10.0,10.0,10.0,10.0,10.0,20,0.85 +64327,93.0,10.0,9.0,9.0,10.0,9.0,9.0,9,0.47 +35784,97.0,10.0,10.0,10.0,10.0,10.0,10.0,106,4.5 +43870,92.0,9.0,9.0,10.0,10.0,10.0,10.0,5,0.21 +38779,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.09 +18989,94.0,9.0,9.0,10.0,10.0,10.0,9.0,67,2.8 +57007,96.0,10.0,9.0,10.0,9.0,10.0,10.0,5,0.21 +65005,78.0,9.0,8.0,10.0,9.0,9.0,8.0,10,0.42 +63325,,,,,,,,0, +53145,,,,,,,,0, +14357,98.0,10.0,10.0,10.0,10.0,9.0,10.0,13,0.58 +25761,,,,,,,,0, +61393,95.0,10.0,8.0,10.0,10.0,10.0,9.0,8,0.41 +12996,90.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.17 +12861,,,,,,,,0, +43183,92.0,9.0,9.0,9.0,10.0,9.0,9.0,145,6.14 +4953,73.0,9.0,8.0,9.0,9.0,9.0,9.0,3,0.13 +8517,97.0,10.0,10.0,10.0,10.0,10.0,10.0,122,5.24 +5200,,,,,,,,0, +35210,89.0,9.0,9.0,10.0,9.0,9.0,9.0,7,0.3 +51594,91.0,10.0,9.0,10.0,10.0,10.0,9.0,53,2.3 +22196,99.0,10.0,10.0,10.0,10.0,9.0,10.0,15,0.64 +71545,87.0,9.0,10.0,10.0,10.0,10.0,9.0,3,0.27 +75236,85.0,9.0,9.0,9.0,9.0,10.0,8.0,15,0.8 +50153,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.11 +8184,86.0,9.0,8.0,9.0,9.0,10.0,8.0,7,0.33 +31421,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.21 +47533,82.0,9.0,9.0,8.0,9.0,9.0,8.0,10,0.42 +17323,,,,,,,,0, +7535,96.0,9.0,9.0,10.0,10.0,9.0,9.0,12,0.68 +29103,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,1.66 +45669,96.0,10.0,9.0,9.0,10.0,9.0,10.0,5,0.21 +59328,80.0,8.0,6.0,6.0,10.0,10.0,6.0,1,0.41 +37308,,,,,,,,0, +76338,93.0,10.0,10.0,10.0,10.0,10.0,9.0,66,2.81 +76997,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.01 +64121,20.0,2.0,2.0,2.0,2.0,2.0,2.0,1,0.14 +15277,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.35 +42030,,,,,,,,0, +39998,92.0,10.0,9.0,10.0,10.0,9.0,10.0,18,0.76 +5156,95.0,10.0,9.0,10.0,10.0,9.0,9.0,44,1.87 +26846,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +76368,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.04 +39844,,,,,,,,0, +47900,,,,,,,,0, +37248,100.0,10.0,10.0,10.0,10.0,10.0,9.0,22,1.21 +9200,,,,,,,,1,0.04 +23703,93.0,10.0,10.0,10.0,10.0,9.0,9.0,18,0.76 +55251,96.0,10.0,9.0,10.0,10.0,9.0,10.0,47,2.32 +34360,86.0,9.0,8.0,10.0,10.0,9.0,9.0,78,3.29 +74408,100.0,10.0,10.0,9.0,10.0,9.0,10.0,3,0.13 +43042,89.0,9.0,9.0,10.0,10.0,10.0,9.0,20,0.86 +64705,,,,,,,,0, +75293,,,,,,,,0, +75132,,,,,,,,0, +168,87.0,9.0,9.0,9.0,9.0,8.0,9.0,32,1.42 +31368,95.0,9.0,9.0,10.0,10.0,10.0,9.0,29,1.23 +14086,,,,,,,,0, +55239,,,,,,,,0, +18396,98.0,10.0,10.0,10.0,10.0,10.0,10.0,19,0.84 +63383,,,,,,,,0, +67710,,,,,,,,0, +28499,79.0,9.0,7.0,10.0,9.0,9.0,8.0,75,3.21 +44225,96.0,10.0,10.0,10.0,10.0,10.0,9.0,20,0.85 +60682,80.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.08 +50580,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +33601,100.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.75 +43025,,,,,,,,0, +10473,100.0,10.0,10.0,10.0,10.0,10.0,10.0,20,0.85 +40230,,,,,,,,0, +42098,,,,,,,,0, +49713,98.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.76 +70243,,,,,,,,0, +63961,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.53 +25993,57.0,6.0,6.0,9.0,7.0,8.0,6.0,6,0.28 +42399,,,,,,,,0, +61550,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.4 +32621,98.0,10.0,10.0,10.0,10.0,9.0,10.0,22,1.04 +58788,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.57 +62861,93.0,9.0,10.0,10.0,9.0,10.0,9.0,37,1.56 +75560,86.0,9.0,9.0,9.0,9.0,10.0,9.0,28,1.18 +56367,100.0,10.0,10.0,10.0,10.0,,10.0,1,0.04 +65065,94.0,10.0,10.0,9.0,10.0,9.0,9.0,8,0.85 +28644,96.0,10.0,10.0,10.0,10.0,10.0,9.0,30,1.49 +51530,80.0,10.0,4.0,10.0,10.0,10.0,8.0,1,0.21 +66976,,,,,,,,0, +4240,98.0,10.0,10.0,10.0,10.0,10.0,9.0,29,1.29 +69909,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +27024,,,,,,,,0, +40558,84.0,10.0,9.0,10.0,10.0,9.0,9.0,11,0.47 +10247,87.0,9.0,9.0,10.0,10.0,9.0,9.0,4,0.17 +13222,96.0,10.0,9.0,10.0,10.0,9.0,10.0,64,2.77 +49471,,,,,,,,0, +9535,93.0,10.0,9.0,10.0,10.0,10.0,9.0,12,0.51 +56641,91.0,10.0,8.0,10.0,10.0,9.0,9.0,13,0.55 +54523,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.09 +20597,,,,,,,,0, +38553,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.22 +23927,93.0,10.0,10.0,10.0,10.0,10.0,9.0,8,0.35 +56114,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.09 +7259,97.0,10.0,10.0,10.0,10.0,9.0,10.0,19,0.98 +35991,100.0,10.0,9.0,10.0,10.0,9.0,10.0,3,0.13 +23186,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +63204,,,,,,,,0, +34034,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.04 +64565,,,,,,,,0, +44153,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.47 +40678,93.0,10.0,9.0,10.0,10.0,9.0,9.0,24,1.3 +55847,90.0,10.0,9.0,10.0,10.0,10.0,9.0,16,0.87 +27213,98.0,9.0,10.0,10.0,10.0,10.0,10.0,9,0.38 +40513,85.0,9.0,10.0,9.0,9.0,9.0,8.0,5,0.21 +11013,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +69923,,,,,,,,0, +49661,89.0,10.0,10.0,10.0,10.0,9.0,9.0,16,0.73 +3099,93.0,10.0,9.0,10.0,10.0,10.0,10.0,9,0.45 +20542,96.0,9.0,9.0,10.0,10.0,10.0,9.0,19,0.83 +9136,89.0,9.0,9.0,8.0,9.0,10.0,9.0,10,0.47 +8170,93.0,10.0,10.0,9.0,9.0,8.0,9.0,3,0.13 +73419,80.0,9.0,9.0,9.0,9.0,9.0,9.0,7,0.32 +26308,97.0,10.0,10.0,10.0,10.0,10.0,10.0,24,1.02 +28572,89.0,9.0,9.0,10.0,10.0,10.0,9.0,25,1.11 +54344,94.0,10.0,9.0,10.0,10.0,10.0,9.0,93,3.93 +51488,,,,,,,,0, +29059,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.17 +15727,90.0,10.0,9.0,10.0,9.0,9.0,9.0,6,0.27 +3665,99.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.8 +74265,99.0,10.0,10.0,10.0,10.0,10.0,10.0,20,0.85 +6645,87.0,9.0,9.0,10.0,10.0,10.0,9.0,60,2.56 +47675,94.0,9.0,9.0,10.0,10.0,10.0,10.0,62,2.63 +64789,97.0,10.0,10.0,10.0,10.0,9.0,9.0,46,1.95 +62535,,,,,,,,0, +54005,100.0,10.0,10.0,9.0,10.0,10.0,9.0,3,0.13 +56740,88.0,9.0,9.0,9.0,9.0,10.0,9.0,15,0.66 +34891,95.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.17 +45914,96.0,10.0,9.0,10.0,10.0,9.0,9.0,11,0.56 +37992,92.0,9.0,9.0,10.0,10.0,9.0,9.0,5,0.22 +49450,87.0,9.0,8.0,9.0,10.0,9.0,9.0,4,0.17 +44068,99.0,10.0,10.0,10.0,10.0,10.0,10.0,144,6.15 +6185,98.0,10.0,10.0,10.0,10.0,9.0,10.0,149,6.39 +62281,100.0,10.0,10.0,10.0,10.0,10.0,10.0,52,2.54 +16186,100.0,10.0,9.0,10.0,10.0,9.0,10.0,3,0.2 +45415,,,,,,,,0, +23235,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.49 +40822,97.0,10.0,9.0,10.0,10.0,9.0,10.0,6,0.25 +66272,88.0,9.0,8.0,10.0,10.0,10.0,9.0,33,1.43 +42864,,,,,,,,1,0.04 +48967,93.0,10.0,10.0,9.0,10.0,10.0,9.0,6,0.67 +32984,97.0,10.0,10.0,10.0,10.0,10.0,10.0,118,5.01 +72518,85.0,8.0,8.0,9.0,10.0,9.0,9.0,11,0.49 +73869,100.0,10.0,10.0,9.0,10.0,9.0,9.0,3,0.13 +59195,,,,,,,,0, +57404,,,,,,,,0, +64483,92.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.3 +47718,93.0,9.0,10.0,10.0,10.0,10.0,9.0,17,0.72 +1251,97.0,10.0,10.0,10.0,10.0,10.0,10.0,67,2.93 +56969,96.0,10.0,9.0,10.0,10.0,10.0,9.0,46,2.24 +69626,96.0,10.0,10.0,10.0,10.0,9.0,9.0,18,0.91 +88,100.0,10.0,9.0,10.0,10.0,10.0,9.0,2,1.43 +40623,96.0,10.0,9.0,10.0,10.0,10.0,10.0,17,0.73 +36640,,,,,,,,0, +56556,,,,,,,,0, +46397,92.0,9.0,9.0,10.0,10.0,10.0,9.0,31,1.41 +4551,,,,,,,,0, +29493,,,,,,,,0, +10389,93.0,9.0,9.0,10.0,10.0,9.0,9.0,60,2.55 +16748,96.0,10.0,10.0,10.0,10.0,10.0,10.0,53,2.83 +48396,73.0,8.0,8.0,9.0,9.0,10.0,8.0,6,0.28 +45217,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.09 +56882,,,,,,,,0, +34196,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.17 +36397,,,,,,,,0, +56437,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.15 +52706,98.0,10.0,9.0,10.0,10.0,10.0,10.0,45,1.93 +29133,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +46437,80.0,8.0,10.0,8.0,10.0,6.0,8.0,1,0.04 +51150,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.75 +18679,100.0,10.0,10.0,10.0,10.0,10.0,9.0,8,0.39 +26134,80.0,8.0,8.0,10.0,10.0,10.0,8.0,2,0.4 +51240,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +40194,98.0,10.0,10.0,10.0,10.0,10.0,10.0,60,2.55 +30648,,,,,,,,0, +52817,91.0,9.0,9.0,9.0,10.0,10.0,9.0,109,4.92 +73805,,,,,,,,0, +46989,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.13 +45853,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.13 +23748,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.12 +21931,92.0,10.0,9.0,9.0,10.0,10.0,9.0,103,4.48 +29922,99.0,10.0,10.0,9.0,10.0,9.0,10.0,14,1.25 +16171,93.0,9.0,8.0,9.0,10.0,9.0,9.0,6,0.26 +66001,95.0,9.0,10.0,10.0,10.0,9.0,9.0,31,1.58 +24053,86.0,9.0,9.0,9.0,10.0,9.0,10.0,8,0.34 +15220,98.0,10.0,9.0,10.0,10.0,10.0,10.0,38,1.73 +65687,95.0,10.0,10.0,10.0,9.0,10.0,9.0,9,0.39 +14286,91.0,10.0,10.0,10.0,10.0,10.0,9.0,13,0.65 +11808,100.0,10.0,9.0,10.0,10.0,10.0,9.0,2,0.09 +40802,,,,,,,,0, +48348,,,,,,,,0, +7220,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.09 +46299,93.0,10.0,9.0,10.0,10.0,9.0,9.0,27,1.17 +8392,,,,,,,,0, +49746,96.0,10.0,10.0,10.0,10.0,10.0,10.0,107,4.74 +70720,95.0,10.0,9.0,10.0,10.0,10.0,9.0,187,7.95 +22331,,,,,,,,0, +51602,98.0,10.0,10.0,10.0,10.0,9.0,10.0,61,2.6 +13613,,,,,,,,0, +43792,97.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.62 +34762,95.0,10.0,9.0,10.0,10.0,10.0,10.0,8,0.38 +46045,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.21 +75371,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.58 +66297,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.17 +75984,,,,,,,,0, +3778,,,,,,,,0, +27887,85.0,9.0,8.0,9.0,9.0,10.0,8.0,23,0.98 +20654,,,,,,,,0, +15313,90.0,9.0,8.0,10.0,10.0,9.0,8.0,2,0.11 +64791,96.0,10.0,9.0,10.0,10.0,9.0,10.0,44,1.87 +55694,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.75 +17984,99.0,10.0,10.0,10.0,10.0,10.0,10.0,77,3.32 +56135,94.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.57 +2929,100.0,10.0,10.0,10.0,10.0,8.0,9.0,6,0.3 +35189,100.0,10.0,9.0,10.0,10.0,10.0,10.0,6,0.3 +51245,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.46 +54877,,,,,,,,0, +32190,98.0,10.0,10.0,10.0,10.0,10.0,10.0,29,1.28 +35315,100.0,8.0,10.0,10.0,10.0,6.0,10.0,1,0.21 +72514,,,,,,,,0, +4959,100.0,10.0,10.0,10.0,10.0,10.0,10.0,47,2.14 +41964,84.0,9.0,8.0,9.0,9.0,9.0,9.0,17,0.82 +6314,95.0,10.0,10.0,10.0,10.0,9.0,10.0,34,1.52 +31839,94.0,10.0,10.0,10.0,9.0,10.0,9.0,14,0.68 +31811,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +60696,88.0,9.0,8.0,9.0,9.0,9.0,9.0,24,1.37 +12923,98.0,10.0,10.0,10.0,10.0,10.0,10.0,106,4.63 +64873,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.32 +35682,95.0,10.0,10.0,9.0,10.0,9.0,9.0,4,0.2 +26918,99.0,10.0,10.0,10.0,10.0,10.0,10.0,96,4.2 +4036,80.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.04 +41913,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.3 +51018,,,,,,,,0, +46745,85.0,9.0,8.0,10.0,10.0,10.0,9.0,51,2.23 +19614,100.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.78 +59290,99.0,10.0,10.0,10.0,10.0,10.0,10.0,42,1.96 +69481,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.22 +61175,90.0,9.0,9.0,9.0,9.0,9.0,9.0,51,3.63 +14112,80.0,10.0,8.0,10.0,10.0,8.0,8.0,2,0.18 +36997,82.0,9.0,7.0,9.0,9.0,9.0,8.0,23,1.19 +74464,88.0,9.0,9.0,9.0,9.0,9.0,9.0,16,0.68 +70874,90.0,9.0,9.0,10.0,10.0,10.0,8.0,3,0.13 +15716,96.0,10.0,10.0,10.0,10.0,9.0,10.0,19,0.81 +6706,80.0,9.0,9.0,10.0,10.0,10.0,10.0,2,0.11 +14250,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.11 +918,,,,,,,,0, +31931,94.0,10.0,10.0,10.0,9.0,10.0,9.0,17,0.74 +28175,93.0,9.0,9.0,10.0,10.0,10.0,10.0,8,0.35 +36886,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.16 +56386,89.0,9.0,9.0,9.0,10.0,10.0,9.0,19,0.89 +28568,90.0,8.0,9.0,10.0,10.0,9.0,9.0,21,0.95 +65030,92.0,10.0,9.0,10.0,10.0,10.0,9.0,36,1.55 +8103,,,,,,,,0, +63164,78.0,9.0,8.0,10.0,10.0,8.0,8.0,9,0.43 +73919,80.0,8.0,9.0,9.0,9.0,8.0,8.0,19,0.82 +42624,92.0,9.0,9.0,9.0,9.0,10.0,9.0,24,1.04 +63486,,,,,,,,1,0.04 +38000,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.62 +49050,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.14 +14235,,,,,,,,0, +14959,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.52 +64518,100.0,10.0,10.0,9.0,8.0,9.0,9.0,6,0.3 +33546,100.0,10.0,10.0,10.0,10.0,10.0,10.0,19,0.84 +820,100.0,10.0,10.0,10.0,10.0,10.0,10.0,36,1.6 +34612,94.0,10.0,9.0,10.0,10.0,9.0,10.0,32,1.39 +48354,97.0,10.0,10.0,10.0,10.0,9.0,9.0,14,0.66 +69453,95.0,10.0,10.0,10.0,10.0,10.0,9.0,17,0.84 +2241,100.0,10.0,10.0,10.0,10.0,10.0,8.0,2,0.41 +37445,92.0,9.0,9.0,10.0,10.0,10.0,9.0,36,1.55 +10130,,,,,,,,2,0.09 +21266,,,,,,,,0, +42510,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.62 +34931,,,,,,,,0, +17030,78.0,9.0,8.0,10.0,10.0,9.0,8.0,11,0.48 +38647,87.0,10.0,8.0,10.0,10.0,10.0,10.0,6,0.28 +19256,99.0,10.0,10.0,10.0,10.0,9.0,10.0,29,1.34 +30905,,,,,,,,0, +46415,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.09 +71690,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.45 +40034,98.0,10.0,10.0,10.0,10.0,9.0,10.0,34,2.41 +33252,,,,,,,,0, +33278,60.0,7.0,5.0,6.0,8.0,10.0,7.0,2,0.09 +32010,93.0,9.0,9.0,9.0,10.0,9.0,10.0,32,1.37 +51493,99.0,10.0,10.0,10.0,10.0,10.0,10.0,20,0.93 +741,,,,,,,,0, +66955,,,,,,,,4,0.23 +70081,95.0,10.0,8.0,10.0,10.0,10.0,9.0,25,1.34 +14016,75.0,10.0,7.0,10.0,10.0,8.0,9.0,5,0.22 +60804,99.0,10.0,10.0,10.0,10.0,10.0,10.0,33,1.44 +56964,91.0,10.0,9.0,10.0,10.0,10.0,9.0,100,4.3 +3893,96.0,10.0,10.0,10.0,10.0,9.0,10.0,16,0.74 +18329,86.0,9.0,8.0,9.0,9.0,9.0,10.0,8,0.34 +64524,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.27 +27390,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.09 +55654,99.0,10.0,10.0,10.0,10.0,10.0,10.0,16,1.09 +68284,65.0,7.0,5.0,8.0,8.0,8.0,7.0,13,0.57 +56564,95.0,10.0,9.0,10.0,10.0,10.0,9.0,86,3.78 +25842,82.0,8.0,8.0,9.0,8.0,9.0,8.0,14,0.61 +42075,,,,,,,,0, +37397,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.43 +22135,,,,,,,,0, +23025,100.0,10.0,10.0,10.0,10.0,9.0,10.0,10,0.45 +17505,90.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.12 +71985,,,,,,,,0, +69049,94.0,10.0,9.0,10.0,10.0,10.0,9.0,53,2.35 +68197,80.0,8.0,6.0,10.0,10.0,10.0,8.0,1,0.05 +4706,95.0,10.0,10.0,10.0,10.0,10.0,9.0,31,1.32 +39700,,,,,,,,0, +24924,92.0,9.0,9.0,10.0,10.0,10.0,10.0,6,0.27 +9077,85.0,9.0,10.0,9.0,9.0,9.0,9.0,15,0.71 +44594,87.0,9.0,9.0,10.0,10.0,7.0,9.0,7,0.31 +76343,,,,,,,,0, +24666,89.0,9.0,10.0,9.0,9.0,10.0,9.0,11,0.48 +75411,93.0,9.0,8.0,9.0,9.0,9.0,9.0,3,0.13 +55994,,,,,,,,0, +47938,93.0,9.0,9.0,10.0,9.0,10.0,9.0,18,0.9 +49385,,,,,,,,0, +23129,100.0,10.0,10.0,10.0,10.0,8.0,10.0,2,0.14 +54161,95.0,9.0,9.0,10.0,10.0,10.0,9.0,6,0.28 +17537,95.0,9.0,9.0,9.0,10.0,9.0,9.0,30,1.45 +47479,95.0,9.0,9.0,9.0,9.0,10.0,10.0,20,0.89 +36056,95.0,10.0,9.0,10.0,10.0,10.0,10.0,47,2.07 +58532,87.0,9.0,9.0,7.0,8.0,9.0,9.0,3,0.15 +33231,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.18 +21424,,,,,,,,3,0.13 +41840,100.0,10.0,10.0,,10.0,,,2,0.12 +65352,88.0,9.0,9.0,9.0,9.0,10.0,9.0,29,1.28 +75923,,,,,,,,2,0.09 +49777,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.08 +17499,20.0,2.0,2.0,6.0,2.0,2.0,2.0,1,0.04 +47755,97.0,10.0,9.0,10.0,10.0,10.0,10.0,23,1.13 +48651,80.0,8.0,10.0,10.0,8.0,9.0,9.0,4,0.17 +37392,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.24 +45890,89.0,9.0,8.0,9.0,9.0,9.0,9.0,20,0.88 +48506,97.0,10.0,10.0,10.0,10.0,10.0,10.0,35,1.53 +31149,100.0,10.0,10.0,10.0,10.0,10.0,10.0,24,1.25 +37076,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +26744,98.0,10.0,9.0,10.0,10.0,9.0,10.0,17,0.75 +5411,,,,,,,,0, +15062,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.25 +30110,,,,,,,,0, +14416,95.0,9.0,10.0,10.0,10.0,10.0,9.0,55,2.65 +701,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.15 +76341,97.0,10.0,10.0,10.0,10.0,9.0,10.0,29,1.28 +73978,67.0,7.0,7.0,9.0,7.0,10.0,7.0,4,0.2 +66022,97.0,10.0,10.0,10.0,10.0,10.0,10.0,24,4.14 +25465,97.0,10.0,10.0,10.0,10.0,10.0,10.0,204,8.73 +56940,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.11 +5363,98.0,10.0,10.0,10.0,10.0,10.0,10.0,104,4.5 +21851,90.0,10.0,7.0,10.0,10.0,10.0,10.0,3,0.14 +52056,,,,,,,,0, +22517,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.15 +26384,98.0,10.0,10.0,10.0,10.0,10.0,10.0,44,1.94 +31282,100.0,10.0,10.0,10.0,10.0,10.0,10.0,19,0.95 +16683,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.22 +18161,,,,,,,,0, +12079,96.0,10.0,10.0,9.0,9.0,10.0,9.0,19,0.83 +42692,,,,,,,,0, +52432,94.0,10.0,10.0,10.0,10.0,10.0,9.0,37,1.72 +8477,97.0,10.0,10.0,10.0,10.0,9.0,10.0,74,3.52 +3547,99.0,10.0,10.0,10.0,10.0,10.0,10.0,32,1.76 +71806,,,,,,,,0, +34594,98.0,10.0,10.0,10.0,10.0,9.0,10.0,9,0.49 +69262,93.0,10.0,10.0,10.0,10.0,10.0,9.0,28,1.3 +53655,,,,,,,,0, +53276,96.0,10.0,9.0,10.0,10.0,10.0,10.0,24,1.05 +55155,84.0,9.0,9.0,9.0,9.0,9.0,9.0,20,0.94 +34748,,,,,,,,0, +73528,95.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.21 +11379,97.0,10.0,10.0,10.0,10.0,9.0,10.0,45,1.99 +69734,,,,,,,,0, +8339,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.5 +42802,94.0,9.0,9.0,10.0,10.0,9.0,9.0,21,0.97 +26277,95.0,10.0,10.0,10.0,10.0,9.0,9.0,26,1.34 +56237,,,,,,,,0, +62202,90.0,10.0,10.0,9.0,10.0,10.0,10.0,5,0.23 +74738,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.47 +18306,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.22 +43519,90.0,9.0,9.0,10.0,10.0,10.0,9.0,25,1.26 +65631,69.0,8.0,8.0,9.0,9.0,9.0,7.0,149,6.39 +36352,76.0,8.0,8.0,9.0,9.0,10.0,8.0,160,6.88 +73295,90.0,9.0,8.0,10.0,10.0,8.0,9.0,11,0.55 +67482,,,,,,,,0, +5232,91.0,9.0,10.0,10.0,10.0,9.0,9.0,14,0.63 +14036,91.0,9.0,9.0,9.0,9.0,9.0,9.0,29,1.3 +60494,96.0,10.0,10.0,9.0,9.0,10.0,9.0,21,0.91 +54658,85.0,9.0,8.0,10.0,10.0,9.0,9.0,24,1.05 +26775,94.0,10.0,9.0,9.0,10.0,10.0,9.0,39,1.78 +37048,,,,,,,,0, +24205,100.0,10.0,10.0,10.0,10.0,10.0,10.0,19,0.89 +74257,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.59 +14003,97.0,10.0,10.0,10.0,10.0,9.0,10.0,13,0.61 +27046,88.0,9.0,9.0,10.0,10.0,10.0,9.0,38,1.65 +3396,96.0,9.0,10.0,10.0,10.0,10.0,10.0,5,0.22 +73458,99.0,10.0,10.0,10.0,10.0,10.0,10.0,25,1.19 +26964,100.0,10.0,10.0,10.0,10.0,9.0,10.0,14,0.69 +51085,97.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.66 +64461,98.0,10.0,10.0,10.0,10.0,9.0,10.0,40,1.77 +29145,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.59 +20922,73.0,7.0,9.0,8.0,7.0,7.0,7.0,3,0.17 +54138,94.0,9.0,9.0,9.0,9.0,9.0,9.0,16,0.71 +74718,92.0,10.0,9.0,9.0,10.0,10.0,9.0,42,1.82 +24929,97.0,10.0,10.0,9.0,10.0,10.0,9.0,13,0.62 +44071,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.56 +59843,87.0,9.0,9.0,9.0,7.0,10.0,9.0,3,0.26 +56684,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.63 +37993,97.0,10.0,10.0,10.0,10.0,9.0,10.0,80,3.45 +40716,85.0,9.0,8.0,9.0,9.0,10.0,9.0,8,0.38 +38900,,,,,,,,0, +9816,93.0,9.0,10.0,10.0,10.0,9.0,9.0,36,1.8 +22012,94.0,10.0,9.0,10.0,10.0,10.0,10.0,10,0.48 +70114,96.0,10.0,10.0,10.0,9.0,10.0,10.0,9,0.45 +16734,,,,,,,,0, +67555,,,,,,,,0, +70227,97.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.71 +25286,80.0,10.0,8.0,10.0,10.0,8.0,10.0,1,0.73 +59086,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.26 +50018,89.0,9.0,9.0,9.0,9.0,8.0,9.0,26,1.2 +614,98.0,10.0,9.0,10.0,10.0,10.0,10.0,19,0.93 +46168,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.16 +37594,92.0,9.0,9.0,10.0,10.0,10.0,9.0,20,1.22 +44255,95.0,10.0,9.0,9.0,9.0,9.0,9.0,4,0.22 +9298,97.0,10.0,9.0,10.0,10.0,10.0,10.0,21,1.07 +66806,97.0,10.0,10.0,10.0,10.0,9.0,9.0,23,1.11 +25460,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.62 +63460,85.0,9.0,9.0,10.0,10.0,10.0,9.0,6,0.32 +18890,95.0,10.0,9.0,10.0,10.0,10.0,10.0,130,5.8 +71182,95.0,10.0,10.0,10.0,10.0,9.0,9.0,5,0.34 +73697,94.0,9.0,10.0,10.0,10.0,9.0,9.0,35,1.54 +20893,92.0,10.0,9.0,10.0,10.0,10.0,9.0,54,2.35 +54501,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.19 +46868,80.0,10.0,6.0,10.0,10.0,10.0,8.0,1,0.05 +54209,69.0,8.0,7.0,8.0,9.0,6.0,6.0,9,0.45 +62962,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +6510,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.35 +7948,,,,,,,,0, +41993,86.0,9.0,8.0,10.0,9.0,9.0,9.0,37,1.73 +14626,100.0,10.0,8.0,10.0,10.0,10.0,6.0,1,0.05 +42975,,,,,,,,0, +25928,,,,,,,,0, +34482,96.0,10.0,9.0,10.0,10.0,10.0,10.0,28,1.46 +63009,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.09 +32774,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.14 +72376,96.0,10.0,10.0,10.0,10.0,9.0,10.0,99,6.2 +4101,89.0,9.0,9.0,9.0,9.0,10.0,9.0,11,0.5 +19577,74.0,7.0,8.0,8.0,8.0,10.0,8.0,52,2.32 +71120,84.0,9.0,9.0,10.0,9.0,10.0,9.0,27,1.24 +64272,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.09 +6701,97.0,10.0,10.0,10.0,9.0,9.0,10.0,16,0.72 +66209,95.0,10.0,10.0,10.0,10.0,10.0,9.0,44,3.77 +42971,98.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.51 +46135,92.0,10.0,9.0,10.0,10.0,10.0,10.0,13,0.62 +14712,99.0,10.0,10.0,10.0,10.0,10.0,10.0,46,2.01 +38646,95.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.35 +65007,100.0,6.0,10.0,10.0,8.0,8.0,8.0,2,0.09 +63813,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.21 +43331,50.0,8.0,3.0,10.0,10.0,9.0,6.0,3,0.13 +25266,91.0,9.0,10.0,9.0,10.0,9.0,10.0,30,1.64 +23750,,,,,,,,0, +36532,94.0,9.0,10.0,10.0,10.0,9.0,9.0,17,0.94 +19347,,,,,,,,0, +66364,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.11 +32252,,,,,,,,0, +66831,95.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.22 +52158,96.0,9.0,9.0,10.0,10.0,10.0,9.0,25,1.07 +12408,,,,,,,,0, +72597,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.12 +17683,66.0,7.0,7.0,8.0,7.0,9.0,7.0,7,0.32 +13526,95.0,10.0,10.0,10.0,10.0,10.0,10.0,97,4.22 +23948,40.0,8.0,10.0,8.0,10.0,8.0,2.0,1,0.05 +21166,93.0,10.0,10.0,10.0,10.0,9.0,10.0,36,1.55 +62246,99.0,10.0,10.0,10.0,10.0,9.0,10.0,17,0.74 +60016,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.37 +13886,92.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.78 +63119,60.0,6.0,6.0,6.0,8.0,6.0,6.0,2,0.1 +33386,,,,,,,,0, +20706,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.41 +33547,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.31 +72431,98.0,10.0,10.0,10.0,10.0,10.0,9.0,22,0.98 +25999,93.0,10.0,9.0,10.0,10.0,10.0,9.0,8,0.36 +54653,98.0,10.0,10.0,10.0,10.0,9.0,10.0,110,4.79 +25937,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.22 +7221,,,,,,,,0, +67483,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.63 +22319,100.0,10.0,10.0,10.0,10.0,9.0,9.0,7,0.32 +28390,97.0,10.0,10.0,10.0,10.0,9.0,10.0,46,2.06 +25717,100.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.05 +52214,77.0,8.0,8.0,9.0,9.0,9.0,8.0,6,0.26 +35720,95.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.56 +49338,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.23 +61010,,,,,,,,0, +65062,93.0,9.0,9.0,10.0,10.0,10.0,9.0,32,1.43 +22190,100.0,10.0,10.0,10.0,10.0,8.0,10.0,6,0.34 +7726,97.0,10.0,10.0,10.0,10.0,10.0,10.0,30,1.33 +50020,,,,,,,,0, +24950,96.0,10.0,10.0,10.0,10.0,10.0,10.0,114,4.94 +53178,94.0,10.0,9.0,10.0,10.0,9.0,9.0,8,0.34 +61870,,,,,,,,0, +33314,87.0,9.0,9.0,9.0,9.0,9.0,9.0,136,5.91 +46869,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.05 +49186,97.0,10.0,9.0,10.0,9.0,9.0,9.0,8,0.39 +57668,99.0,10.0,10.0,10.0,10.0,10.0,10.0,26,1.29 +31896,93.0,9.0,8.0,9.0,10.0,10.0,9.0,30,1.3 +67571,100.0,10.0,10.0,10.0,10.0,10.0,10.0,36,1.57 +51198,95.0,10.0,8.0,10.0,10.0,9.0,10.0,4,0.2 +1863,97.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.56 +41641,,,,,,,,0, +16247,96.0,10.0,9.0,10.0,10.0,9.0,10.0,11,0.48 +23836,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.35 +62378,89.0,10.0,10.0,10.0,9.0,10.0,9.0,15,0.8 +71093,97.0,10.0,10.0,10.0,10.0,9.0,10.0,23,1.25 +28142,100.0,10.0,10.0,10.0,10.0,9.0,10.0,18,0.89 +68174,,,,,,,,0, +72912,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.39 +13353,89.0,9.0,9.0,9.0,9.0,9.0,9.0,26,1.17 +31834,,,,,,,,0, +27062,,,,,,,,0, +2652,97.0,10.0,10.0,10.0,9.0,9.0,10.0,7,0.31 +10099,84.0,9.0,8.0,9.0,9.0,10.0,9.0,58,6.52 +26697,,,,,,,,0, +24976,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.12 +59234,94.0,10.0,9.0,10.0,9.0,10.0,9.0,8,1.11 +22507,94.0,10.0,10.0,10.0,10.0,10.0,10.0,54,2.39 +71813,98.0,9.0,10.0,10.0,10.0,10.0,10.0,32,1.42 +8111,96.0,10.0,9.0,10.0,10.0,10.0,9.0,14,0.69 +39681,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.35 +65690,93.0,10.0,10.0,10.0,10.0,10.0,10.0,46,2.0 +24695,89.0,9.0,9.0,9.0,9.0,9.0,9.0,34,1.57 +34828,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +42869,,,,,,,,0, +1098,77.0,8.0,9.0,9.0,8.0,9.0,8.0,6,0.28 +66967,100.0,10.0,10.0,10.0,10.0,10.0,10.0,74,3.38 +70949,98.0,10.0,10.0,10.0,10.0,9.0,9.0,34,2.09 +67829,,,,,,,,0, +48328,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.18 +73404,95.0,10.0,10.0,10.0,10.0,10.0,10.0,215,9.94 +48914,100.0,10.0,10.0,10.0,10.0,10.0,9.0,16,0.83 +52525,98.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.79 +8886,97.0,10.0,10.0,10.0,10.0,10.0,9.0,38,1.65 +21447,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.26 +60322,,,,,,,,0, +23190,97.0,10.0,10.0,10.0,10.0,9.0,10.0,38,1.68 +728,93.0,9.0,10.0,10.0,9.0,9.0,9.0,39,1.94 +56970,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.23 +37685,95.0,10.0,10.0,10.0,10.0,10.0,9.0,9,0.39 +12659,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +13398,96.0,10.0,10.0,10.0,10.0,10.0,9.0,16,0.79 +58098,90.0,9.0,10.0,10.0,9.0,8.0,9.0,7,0.32 +47688,86.0,9.0,9.0,9.0,9.0,10.0,9.0,21,0.91 +70541,95.0,10.0,10.0,9.0,10.0,10.0,10.0,23,1.02 +58656,96.0,10.0,9.0,10.0,10.0,9.0,9.0,10,0.47 +43676,,,,,,,,0, +21186,100.0,10.0,10.0,10.0,10.0,10.0,10.0,21,0.97 +11022,99.0,10.0,10.0,10.0,10.0,10.0,10.0,19,0.84 +35761,82.0,9.0,8.0,9.0,9.0,9.0,8.0,81,3.91 +18121,,,,,,,,0, +74123,97.0,10.0,10.0,10.0,10.0,9.0,10.0,44,1.92 +46540,88.0,9.0,10.0,10.0,10.0,9.0,9.0,8,0.35 +68087,96.0,10.0,10.0,10.0,10.0,10.0,10.0,75,3.26 +52306,87.0,9.0,9.0,9.0,9.0,9.0,9.0,4,0.22 +58072,99.0,10.0,10.0,10.0,10.0,10.0,10.0,21,0.94 +33596,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.41 +70076,97.0,10.0,10.0,10.0,10.0,10.0,10.0,163,7.41 +30175,88.0,9.0,8.0,10.0,10.0,8.0,9.0,32,1.48 +23230,,,,,,,,0, +57266,94.0,10.0,10.0,10.0,10.0,10.0,9.0,27,1.23 +15756,96.0,10.0,10.0,10.0,10.0,10.0,10.0,40,1.77 +64256,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.57 +16373,99.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.89 +39421,97.0,9.0,10.0,10.0,10.0,10.0,9.0,7,0.3 +63883,,,,,,,,1,0.35 +48467,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.16 +22111,83.0,9.0,8.0,9.0,10.0,10.0,9.0,8,0.49 +67088,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.12 +41672,97.0,10.0,10.0,10.0,10.0,10.0,9.0,38,1.69 +35708,97.0,10.0,10.0,10.0,10.0,10.0,10.0,20,0.95 +16920,97.0,10.0,9.0,10.0,10.0,9.0,10.0,143,6.26 +61786,96.0,10.0,10.0,10.0,10.0,9.0,9.0,41,1.79 +37027,98.0,10.0,10.0,10.0,10.0,9.0,9.0,11,0.55 +24564,99.0,10.0,10.0,10.0,10.0,10.0,10.0,19,1.17 +75161,94.0,10.0,9.0,10.0,10.0,9.0,10.0,21,0.92 +28244,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.11 +43813,100.0,10.0,10.0,10.0,10.0,10.0,10.0,20,0.88 +60192,91.0,10.0,9.0,10.0,9.0,10.0,9.0,61,2.64 +15174,97.0,10.0,9.0,10.0,10.0,9.0,10.0,23,1.01 +3934,99.0,10.0,10.0,10.0,10.0,10.0,10.0,16,2.15 +31141,94.0,10.0,9.0,10.0,10.0,9.0,9.0,82,3.58 +55663,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.09 +39478,91.0,10.0,9.0,10.0,10.0,10.0,9.0,61,2.67 +7160,90.0,7.0,9.0,10.0,7.0,9.0,7.0,2,0.3 +22807,90.0,9.0,10.0,10.0,10.0,9.0,9.0,26,1.29 +41030,94.0,10.0,10.0,10.0,9.0,10.0,9.0,7,0.33 +39641,92.0,10.0,10.0,10.0,10.0,10.0,9.0,34,1.57 +8562,98.0,10.0,10.0,10.0,10.0,9.0,10.0,49,2.19 +1280,98.0,10.0,10.0,10.0,10.0,10.0,10.0,57,2.73 +42841,,,,,,,,0, +60522,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.12 +70834,98.0,10.0,10.0,10.0,10.0,10.0,10.0,25,1.15 +57143,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.18 +67616,98.0,10.0,10.0,10.0,10.0,10.0,10.0,36,1.63 +50460,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +11528,95.0,10.0,10.0,10.0,10.0,10.0,9.0,77,3.71 +11009,96.0,10.0,10.0,9.0,10.0,10.0,10.0,10,0.47 +23805,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.49 +19929,93.0,9.0,9.0,9.0,9.0,9.0,9.0,4,0.17 +75767,80.0,6.0,10.0,6.0,7.0,10.0,8.0,2,0.11 +37650,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.15 +48820,,,,,,,,0, +34259,92.0,9.0,10.0,9.0,10.0,9.0,9.0,10,0.47 +65424,94.0,9.0,10.0,10.0,10.0,10.0,9.0,29,1.31 +10395,,,,,,,,0, +2379,96.0,10.0,10.0,10.0,10.0,9.0,9.0,52,2.28 +1384,86.0,9.0,8.0,10.0,9.0,9.0,9.0,27,1.19 +72418,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.05 +11323,,,,,,,,0, +60211,84.0,9.0,9.0,9.0,10.0,9.0,9.0,17,0.75 +5159,99.0,10.0,10.0,10.0,10.0,9.0,10.0,16,0.74 +74069,70.0,9.0,7.0,8.0,10.0,10.0,9.0,4,0.25 +22296,,,,,,,,0, +17333,,,,,,,,0, +14635,95.0,10.0,10.0,10.0,10.0,9.0,9.0,39,1.72 +41835,92.0,10.0,8.0,10.0,10.0,9.0,10.0,5,3.13 +61708,100.0,10.0,10.0,10.0,10.0,10.0,9.0,11,0.75 +41291,,,,,,,,0, +43593,,,,,,,,0, +52804,95.0,10.0,10.0,10.0,9.0,10.0,9.0,4,0.23 +15014,99.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.64 +15351,90.0,10.0,9.0,9.0,10.0,9.0,9.0,4,0.24 +29515,95.0,10.0,9.0,10.0,10.0,9.0,9.0,41,1.92 +2925,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.23 +63659,83.0,9.0,9.0,9.0,9.0,9.0,9.0,8,0.35 +48926,73.0,5.0,9.0,10.0,10.0,9.0,8.0,5,0.24 +12142,87.0,9.0,8.0,9.0,9.0,9.0,9.0,19,0.83 +844,60.0,6.0,10.0,6.0,8.0,8.0,6.0,1,0.06 +18720,94.0,10.0,9.0,10.0,10.0,9.0,9.0,14,0.62 +21147,95.0,10.0,10.0,10.0,10.0,8.0,10.0,4,0.19 +64383,98.0,10.0,9.0,9.0,9.0,10.0,10.0,12,0.54 +55692,93.0,9.0,9.0,10.0,10.0,9.0,9.0,33,1.61 +7346,83.0,9.0,8.0,10.0,10.0,9.0,9.0,9,0.41 +76976,60.0,10.0,10.0,4.0,4.0,8.0,8.0,1,0.14 +14315,78.0,8.0,7.0,8.0,8.0,9.0,8.0,8,0.37 +37037,97.0,10.0,10.0,10.0,10.0,10.0,10.0,118,5.76 +31806,,,,,,,,0, +8320,99.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.74 +25267,93.0,10.0,9.0,10.0,10.0,9.0,9.0,30,2.93 +73320,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.18 +68637,,,,,,,,0, +50432,96.0,10.0,10.0,9.0,10.0,10.0,10.0,10,0.43 +2720,93.0,10.0,10.0,10.0,10.0,10.0,9.0,22,0.98 +72152,,,,,,,,0, +40072,,,,,,,,0, +72067,93.0,9.0,9.0,10.0,10.0,9.0,9.0,3,0.2 +54047,98.0,10.0,10.0,10.0,10.0,9.0,10.0,38,1.76 +73877,100.0,10.0,8.0,8.0,10.0,10.0,10.0,1,0.04 +32507,40.0,3.0,7.0,8.0,6.0,8.0,8.0,3,0.2 +59835,,,,,,,,0, +18089,,,,,,,,0, +6229,,,,,,,,0, +43073,91.0,9.0,9.0,10.0,10.0,10.0,9.0,7,0.3 +62576,,,,,,,,0, +42140,96.0,9.0,9.0,10.0,10.0,9.0,10.0,9,0.41 +10611,84.0,8.0,8.0,8.0,8.0,8.0,8.0,7,0.35 +45976,97.0,10.0,10.0,10.0,10.0,10.0,10.0,30,1.5 +36293,99.0,10.0,10.0,9.0,10.0,9.0,9.0,18,1.04 +55661,,,,,,,,0, +17896,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +25117,83.0,9.0,9.0,10.0,10.0,10.0,9.0,76,3.53 +31562,92.0,9.0,10.0,10.0,10.0,10.0,9.0,23,1.09 +44790,88.0,9.0,9.0,10.0,10.0,10.0,9.0,8,0.63 +32876,,,,,,,,0, +34638,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.09 +57124,93.0,10.0,9.0,9.0,10.0,10.0,9.0,36,1.66 +44017,95.0,10.0,9.0,10.0,10.0,9.0,9.0,8,0.39 +74335,20.0,2.0,2.0,2.0,2.0,2.0,2.0,1,0.2 +71393,94.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.48 +19707,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.18 +58384,83.0,8.0,8.0,9.0,8.0,9.0,9.0,6,0.41 +2934,97.0,10.0,10.0,10.0,10.0,10.0,9.0,13,0.56 +29772,,,,,,,,0, +3559,85.0,9.0,8.0,9.0,9.0,9.0,9.0,42,1.84 +39845,40.0,2.0,2.0,6.0,10.0,10.0,2.0,2,0.09 +58806,91.0,10.0,9.0,10.0,10.0,10.0,9.0,28,1.22 +56305,,,,,,,,0, +56122,,,,,,,,0, +58811,97.0,10.0,9.0,10.0,10.0,10.0,10.0,29,1.38 +22117,91.0,9.0,9.0,10.0,10.0,10.0,9.0,47,2.04 +41414,98.0,10.0,10.0,10.0,10.0,9.0,10.0,38,2.3 +31465,100.0,10.0,9.0,10.0,10.0,9.0,10.0,4,0.2 +36022,,,,,,,,0, +76279,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.22 +45670,96.0,10.0,9.0,10.0,10.0,9.0,9.0,33,1.46 +33335,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.53 +58113,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +9491,,,,,,,,0, +53340,,,,,,,,0, +20617,98.0,10.0,10.0,10.0,10.0,10.0,10.0,39,2.04 +73828,,,,,,,,0, +46182,83.0,9.0,9.0,9.0,9.0,9.0,9.0,24,1.07 +40330,93.0,9.0,9.0,10.0,9.0,9.0,9.0,16,1.56 +147,97.0,10.0,10.0,10.0,10.0,10.0,10.0,70,3.13 +54026,,,,,,,,0, +76857,95.0,10.0,9.0,10.0,10.0,9.0,9.0,139,6.09 +75946,,,,,,,,0, +40912,96.0,10.0,10.0,10.0,10.0,10.0,9.0,28,1.27 +26089,93.0,10.0,10.0,10.0,9.0,9.0,9.0,10,0.45 +31598,100.0,10.0,8.0,10.0,10.0,9.0,10.0,6,0.27 +76737,98.0,9.0,10.0,10.0,10.0,10.0,10.0,26,1.25 +73878,89.0,9.0,10.0,10.0,9.0,10.0,9.0,7,0.39 +76283,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +35579,100.0,9.0,9.0,10.0,10.0,8.0,9.0,2,0.11 +7276,80.0,7.0,7.0,8.0,8.0,8.0,7.0,4,0.18 +44660,,,,,,,,1,0.05 +33259,,,,,,,,0, +74528,95.0,10.0,9.0,9.0,10.0,9.0,10.0,5,0.22 +56296,94.0,10.0,10.0,10.0,10.0,10.0,10.0,23,1.16 +69746,91.0,9.0,10.0,10.0,10.0,9.0,9.0,24,1.06 +52540,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.36 +50176,76.0,8.0,7.0,8.0,7.0,10.0,8.0,5,0.23 +14818,99.0,10.0,10.0,10.0,10.0,9.0,10.0,22,1.25 +11337,,,,,,,,0, +50690,95.0,10.0,10.0,9.0,10.0,10.0,9.0,13,0.63 +24118,,,,,,,,0, +21594,97.0,10.0,10.0,10.0,10.0,9.0,10.0,15,0.66 +9464,99.0,10.0,10.0,10.0,10.0,9.0,10.0,27,1.68 +25306,97.0,10.0,9.0,10.0,10.0,10.0,9.0,43,2.04 +67871,100.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.25 +71065,80.0,8.0,8.0,9.0,9.0,9.0,7.0,3,0.27 +43106,94.0,10.0,9.0,10.0,9.0,9.0,10.0,12,0.53 +6260,98.0,10.0,9.0,10.0,10.0,10.0,9.0,8,0.4 +44233,92.0,9.0,9.0,9.0,10.0,9.0,9.0,12,0.62 +58268,82.0,9.0,9.0,9.0,9.0,10.0,8.0,137,6.0 +73283,,,,,,,,1,0.05 +52149,100.0,10.0,9.0,10.0,10.0,10.0,10.0,11,0.51 +65340,79.0,8.0,9.0,10.0,9.0,10.0,8.0,143,6.29 +27073,98.0,10.0,10.0,10.0,10.0,10.0,10.0,73,3.25 +37548,97.0,10.0,10.0,10.0,10.0,10.0,10.0,60,2.81 +40463,96.0,10.0,9.0,10.0,10.0,10.0,9.0,10,0.59 +69069,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.69 +49631,92.0,9.0,9.0,10.0,10.0,9.0,9.0,41,2.88 +48370,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.3 +39220,95.0,10.0,9.0,10.0,10.0,9.0,10.0,4,0.42 +70768,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.39 +20203,96.0,9.0,10.0,10.0,10.0,9.0,9.0,10,0.46 +24633,83.0,9.0,8.0,9.0,9.0,10.0,8.0,19,1.09 +17440,60.0,7.0,7.0,7.0,6.0,10.0,8.0,3,0.14 +17441,100.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.7 +76636,100.0,9.0,9.0,10.0,10.0,9.0,10.0,2,0.09 +48695,87.0,9.0,10.0,10.0,9.0,9.0,9.0,3,0.16 +47416,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.04 +11230,,,,,,,,0, +53176,90.0,9.0,9.0,10.0,10.0,10.0,9.0,2,0.1 +23076,85.0,9.0,9.0,9.0,9.0,9.0,8.0,19,0.9 +43315,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +69899,97.0,10.0,10.0,10.0,10.0,9.0,10.0,53,2.67 +69655,94.0,10.0,9.0,10.0,10.0,10.0,10.0,15,0.73 +1368,99.0,10.0,10.0,10.0,10.0,10.0,10.0,50,2.24 +16617,60.0,10.0,4.0,10.0,10.0,6.0,6.0,1,0.05 +31620,99.0,10.0,10.0,10.0,10.0,10.0,10.0,19,0.95 +73913,93.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.19 +35071,97.0,10.0,10.0,10.0,10.0,10.0,9.0,36,1.65 +16212,99.0,10.0,10.0,10.0,10.0,10.0,10.0,56,2.64 +25097,97.0,10.0,10.0,10.0,10.0,10.0,10.0,117,5.13 +65904,,,,,,,,0, +19220,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.91 +24263,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.73 +2461,94.0,10.0,9.0,10.0,10.0,10.0,10.0,54,2.47 +35419,,,,,,,,2,0.11 +42511,94.0,10.0,9.0,10.0,10.0,10.0,9.0,32,1.43 +56057,85.0,9.0,8.0,9.0,10.0,10.0,9.0,70,3.35 +70448,90.0,9.0,9.0,9.0,10.0,10.0,9.0,59,3.18 +7427,90.0,9.0,10.0,9.0,10.0,10.0,9.0,87,3.78 +55735,93.0,10.0,9.0,10.0,10.0,10.0,9.0,33,1.64 +2712,90.0,9.0,8.0,10.0,10.0,9.0,9.0,17,0.75 +34815,92.0,10.0,9.0,9.0,10.0,10.0,9.0,27,1.88 +41692,88.0,9.0,8.0,9.0,9.0,9.0,9.0,24,1.18 +36889,93.0,10.0,9.0,10.0,10.0,10.0,9.0,20,1.15 +57413,90.0,9.0,8.0,6.0,9.0,9.0,7.0,2,0.4 +73262,,,,,,,,0, +29452,91.0,9.0,9.0,10.0,9.0,10.0,9.0,42,1.95 +16891,73.0,7.0,7.0,7.0,7.0,9.0,7.0,3,0.13 +8361,,,,,,,,0, +18395,,,,,,,,0, +63717,100.0,10.0,10.0,10.0,10.0,10.0,10.0,26,1.19 +53156,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +30004,93.0,10.0,9.0,10.0,10.0,9.0,9.0,46,2.26 +22056,97.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.67 +34703,99.0,10.0,9.0,10.0,10.0,10.0,10.0,17,1.18 +68822,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.59 +48787,90.0,9.0,9.0,10.0,10.0,9.0,9.0,44,2.52 +3284,94.0,9.0,9.0,9.0,9.0,9.0,9.0,16,0.79 +48114,91.0,9.0,8.0,10.0,10.0,10.0,9.0,59,2.58 +44685,,,,,,,,0, +12865,95.0,9.0,9.0,10.0,10.0,9.0,9.0,26,1.84 +47878,91.0,9.0,10.0,9.0,10.0,9.0,9.0,51,2.35 +75008,,,,,,,,0, +74378,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +71425,93.0,10.0,9.0,10.0,10.0,9.0,9.0,26,1.85 +26889,89.0,9.0,8.0,9.0,10.0,10.0,9.0,33,1.91 +35599,94.0,10.0,9.0,10.0,10.0,10.0,10.0,70,3.23 +16390,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.12 +75273,,,,,,,,0, +4352,84.0,9.0,8.0,10.0,10.0,9.0,9.0,37,2.12 +53690,70.0,5.0,7.0,8.0,8.0,7.0,8.0,5,0.22 +52002,85.0,9.0,8.0,9.0,9.0,9.0,9.0,30,1.46 +2535,92.0,9.0,9.0,10.0,10.0,10.0,9.0,38,2.18 +57680,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.05 +18971,88.0,10.0,8.0,10.0,10.0,10.0,9.0,11,0.51 +61464,87.0,9.0,9.0,9.0,9.0,9.0,9.0,29,2.04 +32204,96.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.24 +76713,99.0,10.0,10.0,10.0,10.0,10.0,10.0,82,3.94 +56486,95.0,10.0,10.0,10.0,10.0,9.0,9.0,8,0.38 +28057,,,,,,,,0, +33456,87.0,9.0,9.0,9.0,9.0,9.0,9.0,36,1.62 +16652,,,,,,,,0, +9541,96.0,9.0,9.0,10.0,9.0,10.0,9.0,12,0.55 +24139,100.0,10.0,10.0,10.0,10.0,9.0,10.0,15,0.81 +20624,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.23 +77057,95.0,10.0,10.0,10.0,10.0,9.0,9.0,4,0.23 +2177,,,,,,,,0, +16704,,,,,,,,0, +4282,99.0,10.0,9.0,10.0,10.0,10.0,10.0,14,0.68 +31042,93.0,9.0,9.0,10.0,10.0,9.0,10.0,4,0.18 +52457,95.0,10.0,10.0,10.0,10.0,10.0,10.0,27,1.19 +19392,92.0,9.0,9.0,10.0,10.0,10.0,9.0,40,1.92 +42139,97.0,10.0,10.0,10.0,10.0,10.0,9.0,14,0.7 +121,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.4 +35941,73.0,8.0,6.0,9.0,9.0,9.0,9.0,9,0.4 +31632,96.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.49 +65644,97.0,10.0,10.0,10.0,10.0,10.0,9.0,19,0.97 +43115,,,,,,,,0, +28330,85.0,9.0,9.0,9.0,9.0,10.0,9.0,20,0.88 +65135,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.25 +51184,98.0,10.0,10.0,10.0,10.0,9.0,10.0,11,0.51 +27673,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +6912,96.0,10.0,10.0,10.0,10.0,10.0,10.0,70,3.12 +34138,83.0,9.0,9.0,9.0,10.0,9.0,9.0,14,0.66 +29942,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +52836,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.11 +74864,90.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.13 +38634,,,,,,,,0, +3439,86.0,9.0,8.0,9.0,9.0,10.0,9.0,23,1.03 +17925,,,,,,,,0, +69067,89.0,9.0,9.0,9.0,10.0,10.0,10.0,18,0.8 +25794,98.0,10.0,10.0,10.0,10.0,10.0,10.0,31,1.48 +12202,40.0,10.0,2.0,10.0,10.0,8.0,4.0,1,0.06 +74304,86.0,9.0,8.0,9.0,9.0,10.0,9.0,38,1.75 +65295,86.0,9.0,9.0,9.0,9.0,10.0,9.0,31,1.44 +71360,95.0,9.0,9.0,10.0,10.0,9.0,9.0,4,1.02 +28565,98.0,10.0,10.0,10.0,10.0,9.0,8.0,8,0.37 +14201,,,,,,,,0, +34812,93.0,10.0,10.0,9.0,9.0,10.0,10.0,3,0.13 +8430,96.0,10.0,9.0,9.0,10.0,10.0,10.0,6,0.27 +6759,98.0,10.0,10.0,10.0,10.0,10.0,10.0,22,1.04 +9275,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.09 +22237,,,,,,,,0, +76776,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +70576,,,,,,,,0, +33264,100.0,10.0,10.0,10.0,10.0,10.0,10.0,34,1.65 +69599,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.62 +57182,92.0,10.0,9.0,10.0,10.0,9.0,9.0,34,1.59 +43437,100.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.82 +29797,88.0,9.0,9.0,9.0,10.0,9.0,9.0,187,8.18 +24387,89.0,9.0,9.0,9.0,9.0,9.0,9.0,167,7.36 +46517,95.0,10.0,10.0,10.0,10.0,9.0,9.0,27,1.21 +76384,99.0,10.0,10.0,10.0,10.0,10.0,10.0,54,2.65 +70717,,,,,,,,0, +26578,91.0,9.0,10.0,9.0,10.0,10.0,8.0,21,0.97 +45610,83.0,7.0,8.0,10.0,10.0,9.0,8.0,6,0.31 +72564,95.0,10.0,10.0,10.0,10.0,10.0,9.0,120,5.37 +4768,85.0,8.0,9.0,9.0,9.0,10.0,8.0,29,1.31 +25420,84.0,9.0,9.0,9.0,10.0,8.0,8.0,5,0.29 +18903,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.56 +34539,89.0,10.0,9.0,10.0,10.0,9.0,9.0,11,0.53 +56181,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.14 +15330,88.0,9.0,9.0,8.0,8.0,9.0,8.0,10,0.45 +50033,100.0,10.0,10.0,9.0,10.0,10.0,9.0,2,0.11 +51014,,,,,,,,1,0.07 +19367,93.0,10.0,9.0,10.0,10.0,10.0,9.0,23,1.02 +61737,,,,,,,,0, +29284,95.0,9.0,9.0,10.0,9.0,10.0,10.0,17,0.79 +14634,94.0,9.0,9.0,9.0,10.0,10.0,9.0,19,2.04 +41281,97.0,10.0,10.0,10.0,10.0,9.0,10.0,177,7.76 +10007,100.0,10.0,10.0,10.0,9.0,10.0,10.0,7,0.32 +33946,,,,,,,,0, +32032,100.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.28 +11723,95.0,10.0,9.0,10.0,10.0,10.0,9.0,28,1.3 +25012,20.0,6.0,2.0,4.0,4.0,6.0,2.0,1,0.37 +33787,,,,,,,,0, +67654,99.0,10.0,10.0,10.0,10.0,9.0,10.0,28,1.24 +47150,100.0,10.0,10.0,9.0,10.0,9.0,10.0,2,0.1 +6710,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.38 +9677,87.0,9.0,9.0,10.0,9.0,9.0,9.0,32,1.77 +36966,94.0,9.0,10.0,10.0,10.0,10.0,10.0,105,4.65 +16699,93.0,9.0,9.0,10.0,10.0,10.0,9.0,22,1.08 +13220,100.0,10.0,10.0,10.0,10.0,9.0,10.0,11,0.71 +28027,93.0,10.0,10.0,10.0,10.0,10.0,9.0,97,4.33 +76784,75.0,9.0,9.0,8.0,10.0,7.0,9.0,8,0.35 +1761,93.0,10.0,9.0,10.0,10.0,10.0,9.0,111,5.06 +30661,89.0,9.0,9.0,10.0,9.0,10.0,9.0,122,5.43 +76695,87.0,9.0,9.0,9.0,9.0,9.0,9.0,51,2.49 +21485,90.0,9.0,9.0,10.0,10.0,10.0,9.0,138,6.16 +29586,89.0,9.0,10.0,9.0,10.0,9.0,10.0,21,1.67 +49834,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.36 +26752,99.0,10.0,10.0,10.0,10.0,9.0,10.0,20,1.15 +1471,97.0,10.0,10.0,10.0,10.0,10.0,10.0,23,1.03 +23095,96.0,10.0,10.0,10.0,10.0,9.0,10.0,17,0.75 +1704,99.0,10.0,10.0,10.0,10.0,9.0,10.0,25,1.1 +24945,,,,,,,,0, +64907,95.0,10.0,10.0,9.0,9.0,10.0,9.0,19,0.89 +21972,98.0,10.0,10.0,10.0,10.0,9.0,9.0,20,1.11 +855,93.0,10.0,10.0,10.0,10.0,10.0,9.0,123,5.48 +857,84.0,8.0,9.0,9.0,9.0,9.0,8.0,16,0.75 +49480,92.0,10.0,9.0,10.0,9.0,10.0,9.0,145,6.48 +25204,100.0,10.0,10.0,10.0,10.0,10.0,9.0,7,0.36 +45293,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +13950,,,,,,,,0, +39782,99.0,10.0,10.0,10.0,10.0,10.0,9.0,14,0.98 +21197,98.0,10.0,10.0,10.0,10.0,10.0,10.0,93,4.35 +60992,93.0,9.0,8.0,10.0,10.0,10.0,10.0,26,1.49 +13603,92.0,9.0,9.0,10.0,10.0,9.0,10.0,65,2.88 +59327,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.48 +72365,90.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.1 +61056,100.0,6.0,10.0,10.0,10.0,10.0,10.0,1,0.11 +10888,,,,,,,,0, +19508,,,,,,,,0, +36341,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.51 +36955,,,,,,,,1,0.04 +70777,79.0,9.0,9.0,9.0,9.0,10.0,8.0,137,6.09 +19378,100.0,10.0,10.0,10.0,10.0,10.0,10.0,41,1.81 +57928,87.0,9.0,10.0,9.0,9.0,8.0,9.0,9,0.4 +54451,91.0,10.0,9.0,9.0,9.0,9.0,9.0,16,0.77 +20504,100.0,10.0,10.0,10.0,10.0,9.0,10.0,16,0.72 +6580,100.0,10.0,10.0,10.0,10.0,10.0,10.0,62,2.76 +53426,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.34 +47624,86.0,9.0,9.0,10.0,9.0,10.0,9.0,35,1.61 +10403,81.0,9.0,9.0,9.0,9.0,9.0,8.0,15,0.7 +66128,81.0,9.0,9.0,10.0,10.0,10.0,8.0,148,6.54 +37217,83.0,9.0,10.0,10.0,10.0,9.0,9.0,36,1.78 +12335,89.0,9.0,9.0,10.0,10.0,9.0,9.0,30,1.36 +14405,86.0,10.0,9.0,10.0,10.0,9.0,9.0,32,1.59 +56203,79.0,9.0,9.0,9.0,9.0,10.0,9.0,24,1.2 +22552,87.0,9.0,9.0,9.0,10.0,9.0,9.0,45,2.2 +4356,83.0,9.0,8.0,9.0,9.0,9.0,8.0,33,1.52 +74514,87.0,9.0,9.0,10.0,10.0,10.0,9.0,24,1.11 +33336,95.0,9.0,10.0,10.0,10.0,10.0,9.0,35,1.67 +18331,85.0,10.0,9.0,9.0,9.0,9.0,9.0,19,0.88 +62066,80.0,9.0,9.0,9.0,9.0,9.0,9.0,30,1.56 +71293,80.0,9.0,9.0,9.0,9.0,9.0,8.0,32,1.49 +26296,92.0,10.0,9.0,10.0,10.0,10.0,9.0,48,2.31 +48505,88.0,10.0,10.0,10.0,10.0,9.0,9.0,30,1.44 +33081,96.0,10.0,10.0,10.0,10.0,10.0,10.0,54,2.44 +6400,90.0,9.0,9.0,10.0,10.0,10.0,9.0,36,1.68 +33049,95.0,10.0,10.0,10.0,10.0,10.0,9.0,32,1.5 +40340,92.0,9.0,10.0,10.0,10.0,9.0,9.0,17,1.26 +31452,76.0,9.0,7.0,7.0,8.0,9.0,8.0,9,0.43 +22756,97.0,10.0,9.0,10.0,10.0,10.0,10.0,7,0.32 +66092,100.0,10.0,10.0,10.0,10.0,10.0,10.0,19,0.92 +34176,93.0,9.0,10.0,10.0,10.0,9.0,9.0,33,1.46 +43197,99.0,10.0,10.0,10.0,10.0,10.0,10.0,32,1.45 +73701,,,,,,,,0, +12817,100.0,10.0,10.0,10.0,10.0,9.0,10.0,19,0.88 +3408,100.0,9.0,9.0,10.0,10.0,7.0,7.0,2,0.47 +233,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.15 +36190,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.51 +51562,94.0,9.0,9.0,10.0,10.0,9.0,9.0,60,2.64 +66303,95.0,10.0,10.0,10.0,10.0,9.0,10.0,55,2.44 +69178,90.0,9.0,9.0,9.0,9.0,10.0,9.0,37,1.64 +55116,97.0,10.0,9.0,10.0,10.0,9.0,10.0,54,2.45 +47634,95.0,10.0,10.0,10.0,10.0,9.0,9.0,56,2.7 +31255,100.0,10.0,10.0,10.0,9.0,10.0,10.0,4,0.19 +66253,,,,,,,,0, +48188,91.0,9.0,9.0,10.0,10.0,10.0,9.0,7,0.42 +68795,,,,,,,,1,1.0 +39575,100.0,10.0,10.0,10.0,8.0,10.0,10.0,2,0.11 +10784,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.23 +1695,86.0,9.0,8.0,8.0,9.0,10.0,9.0,18,0.8 +2969,98.0,10.0,10.0,10.0,10.0,9.0,10.0,38,1.68 +15119,,,,,,,,0, +71836,100.0,10.0,10.0,10.0,10.0,10.0,10.0,20,1.35 +48972,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.28 +30748,100.0,10.0,10.0,10.0,10.0,10.0,10.0,23,1.03 +21643,100.0,10.0,10.0,10.0,9.0,9.0,10.0,5,0.23 +18619,,,,,,,,0, +22642,97.0,10.0,10.0,10.0,10.0,10.0,10.0,69,3.2 +41631,80.0,10.0,10.0,10.0,10.0,6.0,10.0,2,0.09 +11457,60.0,4.0,4.0,8.0,8.0,10.0,6.0,1,0.05 +53734,92.0,10.0,9.0,9.0,9.0,10.0,9.0,32,1.52 +47766,100.0,10.0,10.0,10.0,10.0,10.0,10.0,82,3.7 +41827,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.34 +7510,90.0,10.0,9.0,10.0,10.0,9.0,9.0,25,2.76 +64345,99.0,10.0,10.0,10.0,10.0,10.0,10.0,50,2.25 +69458,98.0,9.0,10.0,10.0,10.0,10.0,9.0,11,0.84 +57715,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.45 +21837,94.0,10.0,9.0,10.0,10.0,10.0,10.0,77,3.59 +4518,99.0,10.0,10.0,10.0,10.0,10.0,10.0,30,1.35 +10883,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.66 +51015,95.0,10.0,9.0,10.0,10.0,10.0,10.0,18,1.35 +44272,97.0,10.0,9.0,10.0,10.0,9.0,10.0,8,0.35 +43662,88.0,9.0,9.0,10.0,10.0,10.0,9.0,60,3.0 +54463,97.0,10.0,10.0,10.0,10.0,9.0,10.0,12,0.81 +44950,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +34149,95.0,9.0,10.0,10.0,10.0,10.0,10.0,11,0.51 +5445,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.15 +41468,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +74303,,,,,,,,0, +52639,94.0,9.0,9.0,9.0,9.0,9.0,10.0,25,1.19 +19315,,,,,,,,0, +70071,73.0,8.0,6.0,9.0,9.0,8.0,8.0,18,0.81 +70130,86.0,9.0,9.0,9.0,10.0,10.0,9.0,26,1.19 +68736,69.0,8.0,7.0,8.0,8.0,8.0,7.0,23,1.03 +61356,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.17 +60439,100.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.75 +25802,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.33 +56514,88.0,10.0,9.0,10.0,10.0,9.0,9.0,12,0.56 +36977,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.38 +47410,99.0,10.0,10.0,10.0,10.0,10.0,10.0,21,0.95 +73600,94.0,10.0,9.0,9.0,10.0,10.0,9.0,7,0.38 +23799,,,,,,,,0, +29492,99.0,10.0,10.0,9.0,10.0,10.0,10.0,16,0.85 +25271,91.0,10.0,9.0,9.0,10.0,10.0,9.0,14,0.66 +11939,92.0,9.0,10.0,10.0,9.0,10.0,9.0,38,1.8 +12736,96.0,10.0,10.0,10.0,10.0,10.0,10.0,94,4.53 +38989,85.0,9.0,9.0,9.0,10.0,9.0,9.0,11,0.54 +58081,78.0,8.0,8.0,9.0,9.0,9.0,8.0,33,1.58 +70896,91.0,9.0,9.0,10.0,10.0,8.0,9.0,129,5.78 +37912,87.0,10.0,9.0,9.0,10.0,10.0,9.0,36,1.66 +4962,96.0,10.0,9.0,10.0,10.0,9.0,9.0,41,1.91 +40226,92.0,10.0,10.0,10.0,10.0,10.0,9.0,30,1.49 +44937,92.0,9.0,10.0,10.0,9.0,10.0,9.0,42,2.1 +28539,,,,,,,,0, +63291,,,,,,,,0, +68065,99.0,10.0,10.0,10.0,10.0,10.0,10.0,36,1.62 +40033,93.0,10.0,10.0,10.0,10.0,10.0,9.0,28,1.29 +31132,,,,,,,,0, +23337,91.0,10.0,9.0,9.0,9.0,10.0,9.0,28,1.43 +32363,95.0,10.0,9.0,10.0,10.0,9.0,9.0,30,1.51 +51623,87.0,10.0,9.0,9.0,10.0,8.0,9.0,6,0.27 +72427,91.0,10.0,9.0,10.0,10.0,10.0,9.0,37,1.8 +67758,99.0,10.0,10.0,10.0,10.0,10.0,10.0,75,3.4 +15576,95.0,10.0,10.0,10.0,10.0,10.0,10.0,33,1.59 +74144,94.0,10.0,9.0,10.0,10.0,9.0,9.0,13,0.59 +68808,100.0,10.0,8.0,8.0,10.0,10.0,10.0,2,0.13 +65344,,,,,,,,0, +52935,84.0,8.0,8.0,9.0,8.0,8.0,8.0,6,0.27 +75845,,,,,,,,0, +21333,95.0,9.0,10.0,10.0,10.0,10.0,9.0,40,1.79 +55324,79.0,7.0,8.0,8.0,8.0,8.0,7.0,15,0.73 +26904,93.0,10.0,9.0,10.0,10.0,9.0,9.0,16,0.8 +13709,96.0,10.0,9.0,9.0,10.0,9.0,9.0,18,0.81 +21144,88.0,9.0,9.0,10.0,10.0,9.0,9.0,5,0.24 +19252,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.43 +68501,92.0,10.0,10.0,10.0,10.0,10.0,9.0,38,1.84 +24752,,,,,,,,0, +12821,,,,,,,,0, +53255,94.0,10.0,9.0,9.0,10.0,9.0,9.0,7,0.43 +186,98.0,10.0,10.0,10.0,10.0,10.0,10.0,30,1.65 +28899,,,,,,,,0, +26935,90.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.36 +66564,96.0,10.0,10.0,10.0,10.0,8.0,10.0,21,0.96 +72350,93.0,10.0,9.0,10.0,10.0,10.0,10.0,21,0.93 +29801,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.13 +16294,84.0,9.0,8.0,9.0,9.0,10.0,9.0,25,1.18 +19828,90.0,8.0,9.0,10.0,10.0,9.0,10.0,2,0.13 +40717,85.0,9.0,7.0,9.0,9.0,9.0,9.0,103,4.67 +58009,,,,,,,,0, +66125,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.43 +67556,,,,,,,,0, +44251,90.0,10.0,10.0,10.0,10.0,9.0,9.0,24,1.25 +56832,71.0,7.0,6.0,9.0,9.0,8.0,8.0,36,1.61 +28174,,,,,,,,1,0.18 +68336,98.0,10.0,10.0,10.0,10.0,10.0,10.0,23,1.03 +75707,,,,,,,,0, +14177,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.08 +46239,96.0,9.0,10.0,10.0,10.0,9.0,9.0,34,1.57 +17261,,,,,,,,0, +58598,90.0,9.0,9.0,10.0,10.0,10.0,9.0,116,5.29 +66889,99.0,10.0,10.0,10.0,10.0,10.0,9.0,32,1.45 +38538,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.28 +9706,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.48 +33390,76.0,10.0,9.0,10.0,9.0,8.0,8.0,5,0.33 +1608,94.0,10.0,9.0,10.0,10.0,10.0,10.0,14,0.66 +35976,100.0,10.0,10.0,10.0,10.0,6.0,9.0,2,0.13 +68149,80.0,9.0,9.0,9.0,10.0,9.0,9.0,3,0.82 +74038,80.0,6.0,8.0,10.0,8.0,8.0,8.0,1,0.05 +7360,99.0,10.0,10.0,10.0,10.0,10.0,10.0,18,2.5 +32668,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.13 +36215,95.0,10.0,10.0,10.0,10.0,9.0,9.0,4,0.71 +49545,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.65 +29740,100.0,9.0,9.0,9.0,9.0,9.0,9.0,2,2.0 +15001,93.0,10.0,9.0,10.0,10.0,10.0,9.0,11,1.47 +763,,,,,,,,0, +13722,90.0,10.0,10.0,10.0,10.0,9.0,8.0,2,0.14 +30618,85.0,9.0,8.0,10.0,9.0,10.0,9.0,29,1.3 +20638,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +22732,80.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.12 +69674,95.0,10.0,10.0,10.0,10.0,10.0,10.0,40,1.88 +8229,91.0,10.0,10.0,10.0,10.0,10.0,9.0,50,2.23 +69509,95.0,10.0,10.0,10.0,10.0,10.0,10.0,50,2.46 +44783,91.0,9.0,9.0,9.0,10.0,10.0,9.0,50,2.3 +14762,93.0,10.0,10.0,10.0,10.0,10.0,9.0,9,0.43 +26032,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +21939,89.0,10.0,9.0,10.0,10.0,9.0,9.0,13,0.61 +794,97.0,10.0,10.0,10.0,10.0,10.0,10.0,32,1.45 +9090,94.0,10.0,9.0,10.0,10.0,10.0,10.0,66,4.2 +65986,99.0,10.0,10.0,10.0,10.0,10.0,10.0,26,1.15 +73363,98.0,10.0,9.0,10.0,10.0,10.0,9.0,31,1.39 +55429,98.0,10.0,10.0,10.0,10.0,9.0,10.0,20,1.1 +24609,90.0,9.0,10.0,10.0,10.0,9.0,9.0,25,1.25 +58241,89.0,9.0,9.0,10.0,10.0,9.0,9.0,21,0.98 +25296,96.0,10.0,9.0,10.0,10.0,9.0,10.0,108,4.78 +34389,96.0,10.0,10.0,9.0,9.0,10.0,9.0,22,0.99 +12371,98.0,10.0,10.0,10.0,10.0,10.0,10.0,38,1.7 +60050,96.0,10.0,9.0,10.0,10.0,10.0,9.0,44,2.21 +64291,95.0,10.0,10.0,10.0,10.0,9.0,10.0,22,0.97 +550,100.0,10.0,10.0,10.0,10.0,10.0,10.0,26,1.17 +51699,100.0,10.0,10.0,10.0,10.0,10.0,9.0,9,0.64 +23876,91.0,9.0,9.0,9.0,10.0,10.0,8.0,21,1.0 +59917,94.0,9.0,9.0,10.0,10.0,10.0,9.0,18,0.85 +65417,95.0,9.0,9.0,10.0,10.0,9.0,9.0,33,1.76 +76386,91.0,9.0,9.0,10.0,10.0,10.0,9.0,48,2.13 +48053,95.0,9.0,9.0,9.0,10.0,9.0,9.0,37,1.71 +42745,,,,,,,,0, +26786,,,,,,,,0, +46521,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.18 +3152,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.14 +45054,80.0,7.0,6.0,7.0,8.0,8.0,7.0,5,0.24 +2,86.0,9.0,8.0,10.0,10.0,9.0,9.0,31,1.49 +4836,,,,,,,,0, +818,80.0,8.0,7.0,9.0,8.0,7.0,6.0,5,0.34 +5346,,,,,,,,0, +24825,40.0,8.0,4.0,10.0,8.0,8.0,8.0,1,0.34 +1457,95.0,10.0,10.0,10.0,10.0,10.0,10.0,39,1.85 +7733,99.0,10.0,10.0,10.0,10.0,10.0,10.0,30,1.36 +39537,98.0,10.0,10.0,10.0,10.0,10.0,9.0,8,0.37 +910,,,,,,,,0, +15515,,,,,,,,0, +50374,,,,,,,,0, +24923,87.0,10.0,9.0,10.0,10.0,10.0,8.0,4,0.18 +50342,95.0,10.0,10.0,10.0,10.0,10.0,10.0,59,2.65 +54154,,,,,,,,0, +34843,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.36 +13190,98.0,10.0,10.0,10.0,10.0,9.0,10.0,27,1.21 +17916,87.0,9.0,9.0,10.0,9.0,10.0,9.0,3,0.21 +48355,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.09 +58129,98.0,10.0,9.0,10.0,10.0,10.0,9.0,27,1.25 +7082,95.0,9.0,9.0,10.0,10.0,10.0,9.0,20,0.96 +14798,88.0,9.0,8.0,10.0,9.0,10.0,9.0,11,0.53 +61657,93.0,10.0,9.0,10.0,10.0,9.0,10.0,55,2.53 +32478,84.0,9.0,9.0,10.0,8.0,10.0,8.0,22,0.98 +73382,97.0,10.0,10.0,10.0,10.0,10.0,10.0,51,2.27 +36531,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.4 +57131,91.0,9.0,9.0,10.0,10.0,10.0,9.0,13,0.58 +35125,90.0,10.0,10.0,10.0,9.0,9.0,9.0,2,0.09 +33822,,,,,,,,0, +44575,,,,,,,,0, +72668,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.18 +2330,,,,,,,,0, +30457,90.0,9.0,9.0,10.0,10.0,10.0,9.0,29,1.3 +63089,98.0,10.0,10.0,10.0,10.0,9.0,9.0,16,3.14 +40827,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.05 +69369,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +49794,,,,,,,,0, +30831,98.0,10.0,10.0,10.0,10.0,10.0,10.0,93,4.31 +5151,,,,,,,,0, +21273,,,,,,,,0, +50140,95.0,10.0,9.0,10.0,10.0,10.0,10.0,77,11.38 +67122,,,,,,,,0, +53126,96.0,10.0,10.0,9.0,9.0,10.0,9.0,27,1.2 +59402,98.0,10.0,10.0,10.0,10.0,10.0,10.0,84,3.74 +50900,80.0,9.0,7.0,10.0,10.0,9.0,9.0,9,0.4 +16076,,,,,,,,1,0.14 +20125,97.0,10.0,9.0,10.0,10.0,10.0,10.0,13,0.59 +27028,99.0,10.0,10.0,10.0,10.0,10.0,10.0,43,2.54 +55179,75.0,8.0,9.0,10.0,10.0,10.0,8.0,8,0.38 +25192,88.0,9.0,9.0,10.0,10.0,10.0,9.0,77,4.02 +51170,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.67 +72767,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.06 +3552,96.0,10.0,10.0,10.0,10.0,10.0,10.0,39,1.87 +56163,85.0,9.0,9.0,9.0,9.0,10.0,9.0,37,1.64 +68561,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.21 +48979,98.0,10.0,10.0,10.0,10.0,10.0,10.0,62,2.9 +43105,88.0,9.0,9.0,9.0,10.0,9.0,9.0,12,0.53 +27304,,,,,,,,0, +2522,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.19 +3495,100.0,10.0,10.0,10.0,10.0,9.0,10.0,11,0.51 +46570,96.0,10.0,9.0,10.0,10.0,9.0,9.0,11,0.58 +42073,87.0,10.0,8.0,10.0,10.0,9.0,9.0,17,0.92 +75159,,,,,,,,0, +54462,96.0,10.0,9.0,10.0,10.0,9.0,10.0,90,4.06 +52409,95.0,10.0,10.0,10.0,10.0,10.0,9.0,22,1.07 +58973,100.0,10.0,10.0,10.0,10.0,9.0,8.0,2,0.09 +58950,82.0,9.0,9.0,9.0,8.0,8.0,8.0,12,0.55 +11826,95.0,10.0,10.0,10.0,10.0,9.0,10.0,51,2.68 +74844,91.0,10.0,9.0,9.0,10.0,9.0,9.0,24,1.06 +73369,,,,,,,,0, +37307,97.0,10.0,9.0,10.0,10.0,9.0,10.0,14,0.65 +50168,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.18 +10128,97.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.38 +7212,,,,,,,,0, +75169,97.0,10.0,10.0,10.0,10.0,10.0,10.0,35,1.58 +56934,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.27 +63528,92.0,9.0,9.0,10.0,10.0,9.0,9.0,35,1.57 +4280,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.79 +74589,90.0,9.0,10.0,10.0,10.0,9.0,9.0,7,0.35 +16664,98.0,10.0,10.0,10.0,10.0,9.0,10.0,51,2.35 +59704,,,,,,,,0, +7981,85.0,9.0,9.0,9.0,10.0,9.0,8.0,24,1.27 +14234,96.0,10.0,10.0,10.0,10.0,9.0,9.0,38,1.75 +72409,87.0,9.0,8.0,9.0,9.0,9.0,9.0,126,5.58 +2062,,,,,,,,1,0.1 +44570,99.0,10.0,10.0,10.0,10.0,9.0,10.0,41,1.87 +41006,,,,,,,,1,0.04 +29673,92.0,9.0,9.0,10.0,10.0,9.0,9.0,23,1.15 +53615,100.0,10.0,9.0,10.0,10.0,9.0,9.0,2,0.12 +31106,100.0,10.0,10.0,9.0,10.0,10.0,10.0,8,0.4 +56232,89.0,9.0,8.0,9.0,9.0,9.0,9.0,113,4.99 +73100,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.11 +46100,88.0,9.0,8.0,10.0,10.0,9.0,9.0,22,1.04 +40026,95.0,10.0,9.0,10.0,10.0,10.0,9.0,20,0.93 +11456,,,,,,,,0, +43350,92.0,9.0,9.0,10.0,10.0,9.0,10.0,10,0.45 +59499,63.0,6.0,5.0,8.0,8.0,8.0,7.0,6,0.35 +73660,,,,,,,,1,0.05 +35559,96.0,10.0,10.0,10.0,10.0,10.0,10.0,25,1.25 +28830,97.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.37 +18517,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.15 +60105,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.4 +3941,,,,,,,,0, +28764,92.0,9.0,9.0,10.0,10.0,9.0,9.0,5,0.23 +31289,98.0,10.0,10.0,10.0,10.0,10.0,10.0,30,1.36 +70045,,,,,,,,0, +17879,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +30324,80.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.05 +25178,91.0,10.0,10.0,9.0,10.0,9.0,9.0,71,3.19 +8895,,,,,,,,0, +22146,73.0,10.0,8.0,9.0,10.0,10.0,8.0,3,0.15 +8630,95.0,10.0,9.0,10.0,10.0,10.0,9.0,11,0.85 +29008,88.0,8.0,9.0,9.0,9.0,8.0,10.0,5,2.63 +16027,87.0,9.0,7.0,10.0,10.0,9.0,9.0,4,0.5 +37614,95.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.3 +56680,,,,,,,,0, +35513,,,,,,,,0, +5482,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.61 +76311,100.0,10.0,10.0,,,,,1,0.06 +33105,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.31 +15836,100.0,10.0,9.0,10.0,9.0,10.0,10.0,3,0.23 +38290,,,,,,,,0, +65029,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.33 +48772,93.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.27 +2811,96.0,10.0,10.0,10.0,10.0,10.0,10.0,46,2.05 +45823,100.0,10.0,10.0,10.0,10.0,10.0,10.0,20,0.95 +41881,80.0,8.0,7.0,10.0,10.0,10.0,9.0,4,0.18 +20556,88.0,10.0,8.0,10.0,10.0,9.0,9.0,5,0.23 +72309,60.0,8.0,4.0,10.0,10.0,6.0,8.0,1,0.07 +63105,73.0,10.0,7.0,9.0,10.0,10.0,9.0,3,0.15 +45014,99.0,10.0,10.0,10.0,10.0,10.0,10.0,94,4.22 +4982,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.2 +34234,,,,,,,,0, +62089,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.28 +13028,99.0,10.0,10.0,10.0,10.0,10.0,10.0,30,1.36 +43220,100.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.27 +75575,,,,,,,,1,0.05 +624,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.93 +33668,97.0,10.0,9.0,10.0,10.0,10.0,9.0,26,1.21 +54923,92.0,10.0,9.0,10.0,10.0,10.0,9.0,13,0.62 +28854,20.0,6.0,6.0,2.0,4.0,10.0,2.0,1,0.08 +18205,81.0,9.0,9.0,9.0,8.0,10.0,9.0,32,1.43 +75207,91.0,9.0,9.0,9.0,10.0,9.0,9.0,25,1.2 +15507,93.0,9.0,10.0,10.0,10.0,10.0,10.0,3,0.14 +49609,99.0,10.0,10.0,10.0,10.0,9.0,10.0,44,1.98 +39823,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.44 +23392,86.0,9.0,9.0,10.0,10.0,8.0,8.0,50,2.44 +3333,92.0,10.0,10.0,10.0,10.0,10.0,9.0,26,1.18 +8871,96.0,10.0,10.0,10.0,10.0,10.0,9.0,66,2.97 +49086,,,,,,,,0, +57850,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.41 +76449,88.0,10.0,9.0,9.0,10.0,10.0,9.0,25,1.11 +59228,97.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.71 +57307,96.0,10.0,10.0,9.0,10.0,9.0,9.0,11,0.54 +3368,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +112,90.0,10.0,10.0,10.0,10.0,9.0,9.0,9,0.44 +4688,100.0,9.0,10.0,10.0,10.0,10.0,10.0,4,0.2 +76611,93.0,10.0,10.0,10.0,10.0,9.0,9.0,77,3.43 +76634,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.09 +19362,87.0,9.0,9.0,8.0,8.0,10.0,9.0,29,1.37 +17120,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +57818,100.0,10.0,10.0,10.0,10.0,10.0,10.0,32,1.44 +30604,95.0,10.0,10.0,10.0,10.0,9.0,10.0,21,0.99 +16071,90.0,9.0,9.0,9.0,10.0,10.0,9.0,6,0.3 +7528,98.0,10.0,10.0,10.0,10.0,10.0,10.0,31,1.57 +52794,97.0,10.0,10.0,10.0,9.0,10.0,9.0,14,0.67 +76871,100.0,10.0,10.0,10.0,10.0,9.0,10.0,22,1.03 +47339,100.0,10.0,10.0,10.0,10.0,10.0,10.0,27,1.22 +40162,100.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.11 +52566,98.0,10.0,10.0,10.0,10.0,9.0,10.0,11,0.5 +9340,82.0,9.0,8.0,8.0,9.0,10.0,8.0,28,1.29 +33232,94.0,10.0,9.0,9.0,10.0,10.0,9.0,16,0.72 +76808,,,,,,,,0, +68018,100.0,10.0,10.0,10.0,10.0,10.0,10.0,28,1.27 +60222,96.0,10.0,10.0,10.0,10.0,8.0,9.0,10,0.5 +13681,,,,,,,,0, +38195,96.0,10.0,10.0,10.0,10.0,8.0,10.0,49,2.2 +38562,85.0,9.0,9.0,9.0,9.0,8.0,9.0,42,1.92 +1139,80.0,8.0,8.0,10.0,10.0,10.0,8.0,1,0.05 +12999,,,,,,,,0, +31220,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.37 +21305,99.0,10.0,10.0,10.0,10.0,10.0,10.0,15,2.31 +2869,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.58 +1211,84.0,9.0,8.0,10.0,10.0,9.0,8.0,10,0.49 +5575,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.66 +7794,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.62 +48325,92.0,10.0,9.0,10.0,10.0,10.0,9.0,51,2.57 +5174,88.0,9.0,7.0,9.0,9.0,10.0,9.0,34,1.53 +52618,89.0,9.0,9.0,10.0,10.0,10.0,9.0,19,0.87 +44630,92.0,9.0,8.0,10.0,10.0,10.0,8.0,5,0.29 +26667,100.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.81 +19599,95.0,9.0,9.0,9.0,9.0,10.0,9.0,13,0.84 +54499,81.0,9.0,9.0,8.0,9.0,10.0,9.0,19,0.98 +24907,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.18 +56920,92.0,10.0,9.0,10.0,10.0,9.0,9.0,78,3.6 +47478,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.32 +61808,,,,,,,,0, +76296,97.0,10.0,10.0,10.0,10.0,9.0,9.0,15,0.81 +6364,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.24 +41754,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +6854,93.0,10.0,10.0,10.0,9.0,9.0,10.0,8,0.36 +46922,75.0,9.0,6.0,10.0,10.0,9.0,8.0,4,0.3 +67428,98.0,10.0,10.0,10.0,10.0,10.0,9.0,18,1.11 +66742,90.0,10.0,10.0,10.0,10.0,8.0,9.0,2,0.12 +39930,93.0,9.0,9.0,10.0,10.0,9.0,9.0,19,1.11 +74972,90.0,10.0,10.0,10.0,9.0,10.0,9.0,4,0.2 +63543,96.0,10.0,10.0,10.0,10.0,9.0,10.0,127,5.98 +61887,80.0,9.0,9.0,8.0,8.0,10.0,8.0,8,0.37 +10964,96.0,10.0,10.0,10.0,10.0,9.0,10.0,68,3.1 +37765,98.0,10.0,10.0,10.0,10.0,9.0,9.0,28,1.27 +51519,99.0,10.0,10.0,10.0,10.0,10.0,10.0,26,1.17 +76623,94.0,10.0,9.0,10.0,10.0,9.0,10.0,147,6.91 +36935,78.0,9.0,7.0,10.0,9.0,10.0,8.0,17,0.88 +65299,86.0,9.0,9.0,10.0,10.0,10.0,9.0,7,0.4 +38860,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.81 +39899,93.0,10.0,10.0,10.0,10.0,10.0,10.0,49,2.67 +55873,96.0,10.0,10.0,10.0,10.0,10.0,9.0,107,5.12 +65371,95.0,10.0,10.0,10.0,10.0,9.0,10.0,41,1.92 +53048,,,,,,,,0, +67418,94.0,10.0,9.0,10.0,10.0,10.0,10.0,22,1.07 +35805,87.0,10.0,7.0,10.0,9.0,9.0,9.0,6,0.29 +66599,93.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.15 +46064,100.0,10.0,10.0,,,,,1,0.06 +69321,,,,,,,,0, +37224,95.0,10.0,9.0,10.0,10.0,9.0,10.0,20,0.89 +2614,83.0,9.0,8.0,9.0,10.0,9.0,9.0,17,0.78 +2071,95.0,10.0,10.0,10.0,10.0,10.0,10.0,22,1.02 +52956,98.0,10.0,10.0,10.0,10.0,10.0,10.0,33,2.91 +56352,98.0,10.0,10.0,10.0,10.0,10.0,9.0,40,1.96 +66186,93.0,9.0,9.0,10.0,10.0,10.0,10.0,24,1.1 +45665,96.0,10.0,10.0,10.0,10.0,10.0,9.0,23,1.12 +2844,96.0,10.0,9.0,10.0,10.0,10.0,9.0,15,0.7 +11717,40.0,4.0,2.0,8.0,8.0,8.0,6.0,1,0.05 +72290,95.0,9.0,9.0,10.0,10.0,10.0,9.0,11,0.52 +41427,98.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.4 +18134,,,,,,,,1,0.04 +57381,73.0,7.0,7.0,7.0,7.0,7.0,7.0,3,1.18 +32689,99.0,10.0,10.0,10.0,10.0,10.0,10.0,32,1.51 +61774,100.0,10.0,10.0,10.0,10.0,8.0,10.0,5,1.01 +11477,100.0,10.0,9.0,10.0,10.0,9.0,10.0,3,0.13 +9183,88.0,9.0,9.0,10.0,9.0,10.0,9.0,29,1.43 +19485,83.0,9.0,9.0,9.0,9.0,9.0,8.0,7,0.42 +52359,84.0,8.0,8.0,9.0,9.0,9.0,8.0,10,0.48 +13177,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +13328,87.0,8.0,8.0,10.0,10.0,9.0,9.0,5,0.33 +43911,96.0,10.0,10.0,10.0,10.0,9.0,9.0,29,1.36 +21862,,,,,,,,0, +42099,84.0,9.0,7.0,9.0,9.0,10.0,8.0,5,0.23 +12967,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.21 +51418,,,,,,,,0, +43857,100.0,9.0,9.0,10.0,10.0,10.0,10.0,3,0.14 +38614,83.0,9.0,8.0,9.0,9.0,9.0,9.0,44,1.97 +6800,100.0,10.0,9.0,10.0,9.0,10.0,9.0,3,0.14 +3782,81.0,8.0,8.0,10.0,9.0,9.0,9.0,27,1.51 +27499,92.0,10.0,10.0,9.0,10.0,10.0,9.0,24,1.2 +2669,96.0,10.0,9.0,10.0,10.0,9.0,10.0,14,0.64 +1159,89.0,10.0,8.0,10.0,10.0,9.0,9.0,20,1.05 +62647,,,,,,,,0, +22007,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.19 +32157,,,,,,,,1,0.16 +23949,98.0,10.0,10.0,10.0,10.0,10.0,10.0,40,2.02 +52000,100.0,10.0,8.0,10.0,10.0,9.0,9.0,3,0.14 +63467,98.0,10.0,10.0,10.0,10.0,9.0,10.0,39,1.83 +51919,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.45 +26129,92.0,9.0,9.0,9.0,10.0,10.0,10.0,22,1.18 +4776,,,,,,,,0, +75542,98.0,10.0,10.0,10.0,10.0,10.0,10.0,22,1.09 +62168,95.0,10.0,8.0,10.0,10.0,10.0,9.0,4,0.18 +69166,85.0,9.0,9.0,10.0,10.0,10.0,9.0,13,0.75 +20544,93.0,9.0,9.0,10.0,9.0,9.0,9.0,12,0.57 +8970,98.0,10.0,10.0,9.0,9.0,10.0,10.0,10,0.47 +46794,95.0,10.0,10.0,10.0,10.0,10.0,10.0,36,1.84 +75249,,,,,,,,1,0.19 +23881,96.0,10.0,9.0,10.0,10.0,10.0,10.0,24,1.13 +3990,97.0,10.0,10.0,10.0,10.0,10.0,10.0,26,1.19 +44230,,,,,,,,0, +43901,92.0,9.0,9.0,10.0,10.0,10.0,9.0,29,1.31 +19243,99.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.85 +1905,96.0,10.0,10.0,10.0,10.0,10.0,10.0,99,4.6 +69441,84.0,9.0,9.0,8.0,8.0,10.0,9.0,11,0.53 +15369,90.0,9.0,8.0,9.0,9.0,9.0,9.0,14,0.77 +62743,98.0,10.0,10.0,10.0,10.0,10.0,10.0,37,1.81 +76387,98.0,10.0,10.0,10.0,10.0,10.0,10.0,86,3.9 +61405,97.0,10.0,9.0,10.0,10.0,10.0,9.0,15,0.72 +65835,96.0,10.0,10.0,10.0,10.0,10.0,10.0,27,1.39 +19456,,,,,,,,0, +22520,94.0,10.0,9.0,10.0,10.0,9.0,9.0,32,1.6 +66336,63.0,7.0,6.0,9.0,8.0,8.0,7.0,8,0.43 +24212,93.0,10.0,9.0,10.0,10.0,9.0,9.0,82,4.19 +34700,,,,,,,,1, +44809,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +261,81.0,9.0,7.0,9.0,9.0,10.0,8.0,73,3.32 +68705,81.0,9.0,8.0,9.0,9.0,9.0,8.0,15,0.92 +35336,,,,,,,,1,0.07 +18824,,,,,,,,0, +14389,95.0,10.0,10.0,10.0,10.0,9.0,9.0,26,1.98 +36951,91.0,9.0,10.0,10.0,10.0,10.0,9.0,29,1.31 +69471,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.14 +65958,99.0,10.0,10.0,10.0,10.0,10.0,10.0,82,3.76 +48620,95.0,10.0,10.0,10.0,10.0,10.0,10.0,27,1.25 +71057,73.0,9.0,3.0,10.0,9.0,10.0,7.0,5,0.26 +3998,98.0,10.0,10.0,10.0,10.0,10.0,10.0,63,2.83 +19962,,,,,,,,0, +55678,,,,,,,,0, +66362,,,,,,,,0, +53277,,,,,,,,0, +56360,73.0,8.0,9.0,7.0,8.0,9.0,8.0,8,0.38 +21445,,,,,,,,2,0.09 +66140,80.0,8.0,6.0,10.0,10.0,10.0,8.0,1,0.05 +24147,89.0,9.0,9.0,10.0,10.0,9.0,9.0,15,0.68 +14503,96.0,9.0,9.0,10.0,10.0,10.0,10.0,6,0.27 +69553,92.0,9.0,9.0,10.0,10.0,9.0,9.0,34,1.69 +69000,76.0,8.0,7.0,9.0,8.0,9.0,8.0,57,2.66 +26834,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +4538,93.0,9.0,10.0,10.0,10.0,10.0,10.0,4,0.19 +52989,89.0,9.0,9.0,9.0,9.0,9.0,9.0,25,1.17 +47609,96.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.61 +21017,,,,,,,,0, +65234,99.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.81 +25011,,,,,,,,0, +2279,96.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.47 +14174,92.0,10.0,10.0,10.0,10.0,10.0,9.0,36,1.63 +68015,96.0,10.0,10.0,10.0,10.0,9.0,10.0,28,1.94 +53254,,,,,,,,1,0.05 +73034,100.0,10.0,8.0,10.0,10.0,10.0,10.0,3,0.14 +6409,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +14369,96.0,10.0,9.0,10.0,10.0,9.0,9.0,11,0.5 +68839,,,,,,,,0, +21299,97.0,10.0,10.0,10.0,10.0,9.0,10.0,53,2.44 +35732,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.36 +60871,100.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +43391,99.0,10.0,10.0,10.0,10.0,10.0,10.0,87,4.11 +22643,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.14 +4266,75.0,8.0,9.0,8.0,8.0,8.0,7.0,5,0.23 +69863,98.0,10.0,10.0,10.0,10.0,9.0,10.0,27,1.22 +14673,99.0,10.0,10.0,10.0,10.0,9.0,10.0,14,0.65 +67959,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.24 +35280,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.23 +63364,98.0,10.0,10.0,10.0,10.0,9.0,10.0,92,4.42 +31154,99.0,10.0,10.0,10.0,10.0,10.0,10.0,40,1.82 +50376,,,,,,,,0, +50458,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.18 +75532,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +19861,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.18 +42421,93.0,9.0,10.0,10.0,10.0,9.0,9.0,32,1.58 +42255,97.0,10.0,10.0,10.0,10.0,10.0,10.0,62,2.8 +72455,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.11 +42499,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.36 +24140,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +56440,90.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.53 +39698,93.0,10.0,9.0,10.0,10.0,10.0,9.0,44,2.1 +36213,97.0,10.0,10.0,10.0,10.0,9.0,10.0,97,4.83 +61271,94.0,10.0,9.0,10.0,10.0,9.0,9.0,43,1.98 +38555,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.42 +60822,,,,,,,,0, +27151,96.0,10.0,9.0,9.0,10.0,10.0,10.0,24,1.12 +52850,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.64 +3233,82.0,9.0,9.0,9.0,9.0,7.0,8.0,20,0.91 +32852,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.09 +72961,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.28 +67714,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.09 +6537,,,,,,,,0, +23289,,,,,,,,0, +75176,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.17 +21510,97.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.41 +69983,100.0,10.0,9.0,10.0,10.0,9.0,10.0,5,0.22 +27639,,,,,,,,0, +54953,100.0,10.0,10.0,10.0,9.0,10.0,10.0,2,0.09 +42566,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.32 +28303,100.0,10.0,10.0,10.0,10.0,10.0,10.0,31,1.4 +54217,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.7 +67090,87.0,9.0,9.0,9.0,10.0,8.0,9.0,19,1.01 +7412,98.0,10.0,10.0,10.0,10.0,9.0,10.0,12,0.89 +74726,,,,,,,,0, +18086,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.57 +38070,100.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.3 +12684,,,,,,,,0, +46654,,,,,,,,0, +44611,100.0,10.0,10.0,9.0,10.0,10.0,10.0,4,0.18 +49043,96.0,10.0,10.0,10.0,10.0,10.0,10.0,56,2.76 +15946,,,,,,,,0, +20996,95.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.31 +16116,97.0,10.0,9.0,10.0,10.0,10.0,10.0,52,2.36 +18491,100.0,10.0,10.0,10.0,10.0,10.0,10.0,53,2.49 +16195,95.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.43 +49646,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.25 +8067,99.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.77 +35775,91.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.43 +8448,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.27 +42749,87.0,9.0,9.0,9.0,10.0,9.0,9.0,29,1.41 +30005,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.57 +27345,91.0,9.0,9.0,9.0,9.0,9.0,9.0,13,0.67 +46078,98.0,10.0,10.0,10.0,10.0,10.0,10.0,26,1.21 +7372,84.0,8.0,8.0,10.0,9.0,9.0,8.0,5,0.29 +677,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.43 +56002,,,,,,,,1,0.06 +1265,96.0,10.0,9.0,10.0,10.0,9.0,9.0,11,0.53 +37008,94.0,10.0,10.0,10.0,10.0,10.0,9.0,13,0.6 +9095,95.0,10.0,10.0,10.0,10.0,10.0,10.0,139,6.42 +52846,96.0,9.0,10.0,9.0,10.0,10.0,10.0,17,0.77 +44589,92.0,9.0,10.0,9.0,9.0,10.0,9.0,20,1.04 +47871,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +4843,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.12 +76023,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.46 +45264,91.0,9.0,8.0,10.0,9.0,9.0,9.0,9,0.45 +17448,86.0,9.0,7.0,9.0,9.0,9.0,10.0,22,0.99 +15702,81.0,9.0,7.0,9.0,10.0,10.0,8.0,26,1.18 +68176,80.0,8.0,6.0,6.0,10.0,8.0,10.0,1,0.09 +17263,93.0,9.0,9.0,9.0,10.0,10.0,10.0,9,0.41 +12980,,,,,,,,0, +52057,94.0,10.0,10.0,10.0,10.0,9.0,9.0,8,0.39 +63669,97.0,10.0,10.0,10.0,10.0,10.0,9.0,15,0.76 +56050,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.17 +14553,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.52 +69470,91.0,10.0,8.0,9.0,10.0,10.0,9.0,21,1.11 +68785,98.0,10.0,10.0,10.0,10.0,9.0,10.0,9,0.51 +52111,100.0,10.0,10.0,10.0,9.0,9.0,9.0,11,0.5 +51290,96.0,10.0,10.0,9.0,10.0,10.0,9.0,65,2.99 +65098,100.0,10.0,10.0,10.0,10.0,10.0,10.0,34,1.55 +26854,90.0,9.0,9.0,10.0,9.0,10.0,9.0,36,1.62 +46118,98.0,10.0,10.0,10.0,10.0,10.0,10.0,51,2.41 +13507,91.0,9.0,8.0,9.0,10.0,9.0,9.0,24,1.09 +9344,88.0,9.0,9.0,8.0,9.0,9.0,9.0,27,1.23 +56101,92.0,9.0,9.0,10.0,10.0,10.0,9.0,23,1.12 +62875,99.0,10.0,10.0,10.0,10.0,10.0,10.0,24,1.2 +26261,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.57 +1615,90.0,10.0,9.0,9.0,10.0,10.0,9.0,16,0.76 +6840,88.0,9.0,9.0,9.0,10.0,9.0,9.0,22,1.04 +12746,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +39789,96.0,10.0,10.0,10.0,9.0,10.0,9.0,5,0.29 +9975,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.19 +8166,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.09 +30517,97.0,10.0,9.0,10.0,10.0,10.0,9.0,25,1.19 +26613,,,,,,,,0, +4798,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.48 +35344,95.0,10.0,9.0,9.0,9.0,10.0,10.0,32,1.45 +72337,88.0,9.0,9.0,9.0,10.0,9.0,9.0,49,2.22 +68658,95.0,10.0,10.0,10.0,10.0,10.0,9.0,33,1.5 +2319,93.0,9.0,9.0,10.0,10.0,9.0,9.0,76,3.55 +6465,86.0,9.0,9.0,10.0,10.0,9.0,9.0,25,3.49 +29078,94.0,10.0,9.0,10.0,10.0,10.0,9.0,29,1.33 +6106,93.0,9.0,10.0,10.0,9.0,9.0,9.0,6,0.28 +36390,90.0,10.0,9.0,9.0,9.0,9.0,9.0,57,2.61 +6885,86.0,9.0,9.0,9.0,9.0,10.0,9.0,27,1.27 +12469,93.0,9.0,9.0,10.0,10.0,9.0,9.0,97,4.48 +56330,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.22 +24362,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.16 +10048,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.43 +19111,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,2.37 +52118,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.35 +52232,94.0,10.0,10.0,10.0,10.0,10.0,10.0,172,7.75 +20331,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.18 +8287,,,,,,,,0, +57759,98.0,10.0,10.0,10.0,10.0,10.0,10.0,21,0.99 +38759,99.0,10.0,10.0,10.0,10.0,10.0,10.0,95,4.27 +54622,98.0,10.0,10.0,10.0,10.0,10.0,9.0,24,1.35 +25970,91.0,9.0,9.0,10.0,10.0,9.0,9.0,19,0.89 +40354,100.0,8.0,6.0,6.0,10.0,10.0,10.0,1,0.21 +43678,93.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.15 +71251,,,,,,,,0, +2122,99.0,10.0,10.0,10.0,10.0,10.0,10.0,46,2.14 +35096,60.0,8.0,8.0,4.0,6.0,4.0,6.0,1,0.08 +64605,81.0,8.0,7.0,10.0,10.0,9.0,9.0,19,0.98 +12776,,,,,,,,0, +54270,94.0,10.0,10.0,10.0,10.0,10.0,9.0,27,1.3 +32790,100.0,9.0,9.0,10.0,10.0,9.0,10.0,3,0.14 +34420,95.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.23 +65195,94.0,10.0,10.0,10.0,10.0,9.0,9.0,28,1.31 +54539,89.0,9.0,9.0,9.0,10.0,9.0,8.0,34,1.59 +76233,,,,,,,,0, +41062,98.0,10.0,10.0,10.0,10.0,10.0,10.0,37,1.71 +5244,91.0,9.0,9.0,10.0,10.0,9.0,9.0,34,1.76 +60858,94.0,10.0,10.0,10.0,10.0,10.0,9.0,198,9.04 +49263,,,,,,,,0, +66484,93.0,10.0,9.0,10.0,10.0,10.0,9.0,170,7.66 +13894,97.0,10.0,10.0,9.0,10.0,10.0,10.0,13,4.87 +33043,94.0,10.0,10.0,10.0,10.0,10.0,9.0,192,8.77 +56204,93.0,10.0,9.0,10.0,10.0,10.0,9.0,147,6.67 +38680,100.0,10.0,10.0,10.0,10.0,10.0,10.0,28,1.29 +4526,95.0,10.0,10.0,10.0,10.0,9.0,10.0,59,3.07 +23549,98.0,9.0,9.0,10.0,10.0,9.0,9.0,10,0.51 +54434,96.0,10.0,9.0,10.0,10.0,9.0,10.0,139,6.27 +25075,93.0,10.0,10.0,10.0,10.0,8.0,10.0,3,0.2 +67440,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.23 +39527,96.0,10.0,10.0,10.0,10.0,10.0,9.0,15,0.77 +63703,,,,,,,,0, +59025,83.0,8.0,8.0,9.0,10.0,9.0,8.0,35,1.7 +17022,98.0,10.0,10.0,10.0,10.0,10.0,10.0,112,7.89 +15610,87.0,9.0,8.0,10.0,10.0,9.0,9.0,109,4.92 +59883,86.0,9.0,8.0,10.0,10.0,9.0,9.0,14,0.77 +38708,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.18 +50620,100.0,10.0,10.0,10.0,10.0,10.0,10.0,25,1.19 +62309,93.0,9.0,10.0,9.0,9.0,9.0,10.0,18,0.83 +23153,87.0,9.0,9.0,8.0,8.0,8.0,9.0,20,0.93 +19736,95.0,9.0,9.0,9.0,9.0,10.0,10.0,15,0.68 +23412,94.0,10.0,9.0,9.0,10.0,10.0,9.0,8,0.36 +62863,97.0,10.0,9.0,9.0,10.0,10.0,10.0,6,0.54 +36817,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.19 +2543,100.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.85 +44767,97.0,10.0,10.0,10.0,10.0,10.0,9.0,32,1.45 +45507,100.0,9.0,10.0,10.0,10.0,9.0,10.0,3,0.15 +12369,89.0,9.0,10.0,9.0,10.0,9.0,9.0,9,0.44 +4401,88.0,9.0,9.0,9.0,9.0,9.0,9.0,35,1.65 +19938,75.0,8.0,7.0,9.0,9.0,9.0,8.0,24,1.09 +43788,,,,,,,,0, +51026,,,,,,,,0, +59161,,,,,,,,0, +65758,100.0,10.0,10.0,10.0,10.0,8.0,10.0,2,0.1 +17062,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +15321,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +60277,,,,,,,,0, +29203,99.0,10.0,10.0,10.0,10.0,10.0,10.0,75,3.74 +12862,86.0,9.0,8.0,9.0,9.0,10.0,9.0,35,1.81 +43366,90.0,10.0,9.0,10.0,10.0,9.0,10.0,4,0.19 +29047,,,,,,,,0, +34957,90.0,10.0,8.0,10.0,10.0,8.0,8.0,2,0.79 +25353,83.0,9.0,9.0,10.0,9.0,9.0,9.0,101,4.6 +38427,99.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.9 +46954,98.0,10.0,10.0,10.0,10.0,10.0,9.0,35,1.62 +8299,100.0,10.0,9.0,10.0,10.0,10.0,9.0,9,0.5 +12988,89.0,10.0,9.0,10.0,9.0,9.0,9.0,72,3.26 +20890,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +57098,78.0,8.0,8.0,9.0,9.0,8.0,8.0,24,1.17 +53995,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.18 +13316,,,,,,,,0, +10805,90.0,10.0,8.0,10.0,10.0,10.0,10.0,3,0.14 +2693,,,,,,,,0, +9972,100.0,10.0,10.0,,10.0,,,2,0.09 +30701,94.0,10.0,9.0,10.0,10.0,9.0,10.0,8,0.39 +17781,92.0,10.0,9.0,10.0,10.0,10.0,9.0,88,4.38 +65710,95.0,10.0,10.0,10.0,10.0,10.0,10.0,45,2.05 +36807,99.0,10.0,10.0,10.0,10.0,10.0,10.0,23,1.08 +62852,90.0,9.0,10.0,9.0,9.0,10.0,9.0,9,0.49 +40625,,,,,,,,0, +56544,88.0,9.0,9.0,10.0,9.0,8.0,9.0,15,0.71 +30178,55.0,6.0,7.0,6.0,4.0,8.0,6.0,4,0.27 +54199,,,,,,,,0, +20240,90.0,9.0,10.0,10.0,10.0,10.0,9.0,39,1.93 +40624,92.0,9.0,9.0,9.0,9.0,10.0,9.0,18,0.88 +63983,95.0,10.0,10.0,10.0,10.0,8.0,9.0,53,2.46 +41386,95.0,10.0,9.0,10.0,10.0,10.0,10.0,17,1.21 +14445,95.0,10.0,9.0,10.0,10.0,10.0,9.0,25,1.16 +938,,,,,,,,0, +64976,88.0,9.0,9.0,10.0,9.0,10.0,9.0,12,0.55 +16724,89.0,9.0,10.0,10.0,10.0,10.0,9.0,24,1.23 +2999,89.0,9.0,9.0,9.0,10.0,10.0,9.0,33,1.58 +52349,99.0,10.0,10.0,10.0,10.0,9.0,10.0,55,2.56 +11895,94.0,10.0,10.0,10.0,10.0,10.0,10.0,26,1.49 +51806,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.2 +64899,,,,,,,,0, +17658,,,,,,,,0, +48715,94.0,10.0,9.0,10.0,10.0,10.0,9.0,29,1.62 +48209,88.0,9.0,9.0,10.0,10.0,9.0,9.0,8,0.46 +51574,90.0,9.0,10.0,10.0,10.0,10.0,9.0,2,0.11 +11848,95.0,10.0,10.0,10.0,10.0,10.0,9.0,24,2.52 +53419,,,,,,,,0, +14543,95.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.19 +2569,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.3 +75026,96.0,10.0,10.0,10.0,10.0,9.0,9.0,29,1.32 +48298,95.0,10.0,10.0,10.0,10.0,9.0,9.0,15,0.77 +34353,88.0,9.0,9.0,9.0,9.0,10.0,9.0,32,1.84 +44484,,,,,,,,0, +25030,100.0,10.0,10.0,9.0,10.0,9.0,10.0,5,0.24 +64370,100.0,,,,,,,2,0.09 +4650,100.0,10.0,10.0,10.0,10.0,10.0,10.0,20,0.96 +17558,93.0,10.0,10.0,10.0,9.0,9.0,10.0,9,0.43 +24009,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +69400,90.0,9.0,9.0,10.0,9.0,8.0,9.0,111,5.06 +75539,92.0,9.0,9.0,10.0,10.0,10.0,9.0,22,1.01 +21554,,,,,,,,1,0.08 +73208,,,,,,,,0, +59114,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.1 +4185,,,,,,,,0, +28545,100.0,10.0,10.0,9.0,10.0,10.0,10.0,6,0.28 +31656,100.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.37 +42485,99.0,10.0,10.0,10.0,10.0,10.0,10.0,26,1.28 +61694,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.09 +22801,100.0,10.0,8.0,10.0,10.0,10.0,8.0,3,0.14 +33840,92.0,10.0,9.0,10.0,10.0,10.0,9.0,70,3.17 +16331,,,,,,,,0, +48142,100.0,9.0,10.0,10.0,9.0,9.0,9.0,8,0.79 +4299,,,,,,,,0, +3705,92.0,10.0,10.0,10.0,10.0,9.0,9.0,18,0.84 +15681,90.0,9.0,10.0,10.0,10.0,10.0,10.0,4,0.22 +61070,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.1 +51086,86.0,8.0,8.0,10.0,10.0,10.0,8.0,15,0.68 +152,87.0,9.0,9.0,10.0,10.0,9.0,8.0,15,0.75 +46930,98.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.51 +27041,96.0,10.0,10.0,10.0,10.0,10.0,10.0,101,4.76 +12717,91.0,9.0,10.0,9.0,10.0,9.0,9.0,30,1.39 +55671,89.0,10.0,9.0,9.0,9.0,9.0,10.0,14,0.7 +39235,96.0,10.0,9.0,10.0,10.0,9.0,10.0,21,0.96 +33655,97.0,10.0,9.0,10.0,10.0,9.0,9.0,30,1.39 +54036,85.0,9.0,9.0,9.0,10.0,9.0,9.0,30,1.38 +55685,94.0,10.0,9.0,10.0,10.0,9.0,10.0,53,2.45 +63229,88.0,10.0,8.0,9.0,9.0,10.0,9.0,22,1.0 +6883,,,,,,,,0, +42300,,,,,,,,0, +27095,85.0,9.0,8.0,9.0,9.0,9.0,9.0,78,3.63 +1621,,,,,,,,0, +29511,91.0,9.0,9.0,10.0,10.0,9.0,9.0,30,5.77 +33920,96.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.78 +71029,97.0,10.0,10.0,10.0,10.0,9.0,10.0,46,2.21 +57780,95.0,10.0,10.0,10.0,10.0,10.0,10.0,114,5.38 +43625,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.47 +55705,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.33 +33677,89.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.46 +76947,,,,,,,,0, +43907,,,,,,,,0, +7531,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.09 +64842,,,,,,,,0, +19355,93.0,9.0,9.0,10.0,9.0,9.0,9.0,4,0.2 +2588,80.0,8.0,8.0,6.0,9.0,10.0,10.0,2,0.33 +65336,93.0,10.0,10.0,10.0,10.0,10.0,9.0,47,2.14 +75069,100.0,10.0,10.0,10.0,10.0,10.0,10.0,15,2.3 +56456,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.05 +4546,85.0,8.0,8.0,10.0,10.0,9.0,9.0,4,0.48 +62235,99.0,10.0,10.0,10.0,10.0,9.0,10.0,25,1.16 +59326,93.0,9.0,9.0,9.0,9.0,8.0,9.0,4,0.19 +13027,,,,,,,,0, +12864,100.0,9.0,9.0,10.0,10.0,8.0,9.0,3,0.15 +21869,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.38 +33838,99.0,10.0,10.0,10.0,10.0,10.0,10.0,39,1.83 +66640,93.0,10.0,9.0,10.0,10.0,9.0,9.0,12,0.59 +57515,98.0,10.0,10.0,10.0,10.0,10.0,10.0,30,1.39 +66450,96.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.89 +49649,99.0,10.0,10.0,10.0,10.0,10.0,10.0,54,2.6 +67038,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.29 +41571,,,,,,,,0, +8692,93.0,9.0,9.0,10.0,9.0,10.0,10.0,6,0.3 +48744,60.0,7.0,4.0,10.0,10.0,10.0,6.0,12,0.57 +44665,100.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.79 +36709,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.27 +50962,,,,,,,,0, +72406,,,,,,,,0, +7695,98.0,10.0,10.0,10.0,10.0,9.0,10.0,37,1.93 +38270,98.0,10.0,9.0,10.0,10.0,10.0,10.0,40,1.99 +57626,,,,,,,,0, +4956,100.0,10.0,10.0,8.0,10.0,10.0,10.0,2,0.09 +8303,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.14 +68220,89.0,9.0,9.0,10.0,10.0,10.0,9.0,26,1.2 +58616,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.68 +66502,,,,,,,,0, +20963,80.0,6.0,6.0,6.0,6.0,8.0,6.0,1,0.05 +69374,,,,,,,,0, +10096,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.61 +5543,93.0,9.0,8.0,10.0,10.0,9.0,9.0,3,0.14 +72575,98.0,10.0,10.0,10.0,10.0,9.0,9.0,29,1.4 +73440,83.0,9.0,8.0,10.0,10.0,9.0,9.0,21,0.97 +49292,96.0,10.0,9.0,10.0,10.0,9.0,9.0,9,0.42 +2705,99.0,10.0,10.0,10.0,10.0,10.0,10.0,75,3.42 +62778,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.09 +35252,99.0,10.0,10.0,10.0,10.0,10.0,10.0,56,2.58 +48507,94.0,10.0,10.0,10.0,10.0,10.0,9.0,29,1.48 +19607,,,,,,,,0, +75911,,,,,,,,0, +48714,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.23 +48440,97.0,10.0,10.0,9.0,10.0,9.0,9.0,6,0.37 +59257,96.0,10.0,10.0,10.0,10.0,10.0,10.0,30,1.87 +3385,97.0,10.0,10.0,10.0,10.0,10.0,10.0,24,1.09 +16846,,,,,,,,0, +66347,,,,,,,,0, +20378,100.0,10.0,8.0,10.0,10.0,8.0,8.0,1,0.05 +69259,93.0,10.0,10.0,10.0,10.0,9.0,10.0,12,0.55 +23113,91.0,9.0,9.0,10.0,10.0,10.0,9.0,9,0.41 +2199,82.0,9.0,8.0,10.0,10.0,10.0,9.0,97,4.81 +45097,95.0,9.0,9.0,10.0,10.0,9.0,10.0,13,0.64 +72653,98.0,10.0,9.0,10.0,10.0,10.0,10.0,25,1.27 +47593,,,,,,,,0, +75979,91.0,10.0,9.0,10.0,10.0,10.0,9.0,70,3.41 +58732,86.0,9.0,8.0,9.0,9.0,10.0,9.0,220,10.28 +63575,80.0,7.0,9.0,7.0,7.0,8.0,7.0,3,0.15 +25131,95.0,10.0,10.0,10.0,10.0,10.0,9.0,8,0.46 +67930,,,,,,,,0, +17303,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.36 +66191,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.47 +65249,,,,,,,,0, +60503,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.19 +53795,,,,,,,,0, +50968,96.0,10.0,10.0,10.0,10.0,9.0,10.0,100,4.68 +18296,94.0,10.0,10.0,10.0,10.0,9.0,9.0,89,4.1 +31146,93.0,10.0,8.0,10.0,10.0,10.0,9.0,18,0.89 +5796,91.0,9.0,8.0,10.0,10.0,8.0,8.0,12,0.55 +11449,94.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.81 +12262,97.0,10.0,10.0,10.0,10.0,10.0,10.0,25,1.28 +8628,99.0,10.0,10.0,10.0,10.0,10.0,10.0,34,1.56 +5953,91.0,9.0,9.0,10.0,10.0,10.0,9.0,22,1.08 +9363,99.0,10.0,10.0,10.0,10.0,10.0,10.0,21,1.11 +35819,,,,,,,,0, +11761,97.0,10.0,10.0,10.0,10.0,10.0,9.0,32,1.47 +34876,95.0,10.0,9.0,10.0,10.0,10.0,10.0,45,2.34 +46236,99.0,10.0,10.0,10.0,10.0,9.0,10.0,47,2.35 +55182,97.0,10.0,10.0,10.0,10.0,9.0,10.0,18,1.02 +54552,,,,,,,,0, +5252,98.0,10.0,10.0,10.0,10.0,9.0,10.0,23,1.13 +7206,91.0,9.0,9.0,9.0,10.0,8.0,9.0,23,1.06 +60195,,,,,,,,1,0.16 +68313,100.0,10.0,10.0,9.0,10.0,10.0,9.0,3,0.15 +11245,,,,,,,,0, +49569,,,,,,,,0, +28375,,,,,,,,0, +18131,98.0,10.0,10.0,9.0,10.0,9.0,10.0,25,1.38 +8411,97.0,10.0,10.0,10.0,10.0,10.0,10.0,22,1.12 +39302,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.39 +1656,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +39016,96.0,10.0,10.0,10.0,10.0,10.0,10.0,48,2.32 +25127,96.0,10.0,9.0,10.0,10.0,10.0,9.0,11,0.51 +53970,99.0,10.0,10.0,10.0,10.0,10.0,10.0,27,1.24 +15235,95.0,9.0,9.0,10.0,10.0,10.0,10.0,15,0.72 +50070,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.64 +60160,100.0,10.0,10.0,10.0,10.0,10.0,10.0,29,1.35 +4687,88.0,9.0,9.0,9.0,9.0,9.0,9.0,103,4.75 +9735,94.0,10.0,9.0,10.0,10.0,10.0,9.0,34,1.55 +75600,89.0,9.0,9.0,10.0,9.0,9.0,9.0,87,4.2 +59226,90.0,9.0,9.0,9.0,9.0,9.0,10.0,60,2.74 +21256,87.0,9.0,9.0,10.0,9.0,9.0,9.0,94,4.31 +52292,87.0,9.0,9.0,9.0,9.0,9.0,9.0,98,4.49 +31181,96.0,10.0,9.0,10.0,10.0,10.0,9.0,5,0.32 +56504,,,,,,,,0, +34841,96.0,9.0,10.0,10.0,10.0,10.0,10.0,10,0.49 +38034,,,,,,,,0, +74021,80.0,8.0,8.0,8.0,8.0,8.0,6.0,1,0.18 +22185,98.0,10.0,10.0,10.0,10.0,9.0,10.0,91,4.18 +7316,,,,,,,,0, +45777,94.0,10.0,9.0,10.0,9.0,10.0,9.0,32,1.47 +76021,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.05 +15744,,,,,,,,0, +2217,90.0,9.0,8.0,10.0,10.0,9.0,9.0,20,0.93 +38173,91.0,9.0,9.0,10.0,10.0,10.0,9.0,32,1.48 +8362,87.0,9.0,9.0,9.0,9.0,9.0,9.0,31,1.77 +45758,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.08 +34947,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.09 +75144,93.0,9.0,9.0,10.0,10.0,9.0,9.0,49,2.27 +61963,,,,,,,,0, +26421,83.0,9.0,8.0,9.0,9.0,10.0,9.0,29,1.34 +4659,,,,,,,,4,0.19 +63108,77.0,8.0,9.0,8.0,8.0,8.0,7.0,7,0.32 +18674,95.0,9.0,10.0,10.0,10.0,10.0,9.0,29,1.34 +58046,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.09 +23064,95.0,10.0,10.0,10.0,10.0,10.0,10.0,36,1.66 +9426,100.0,10.0,10.0,10.0,10.0,10.0,10.0,19,0.95 +30937,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.18 +74063,,,,,,,,0, +75729,90.0,9.0,8.0,9.0,9.0,9.0,10.0,2,0.1 +62879,,,,,,,,0, +58122,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.12 +62673,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.09 +76330,100.0,9.0,10.0,10.0,10.0,10.0,10.0,2,0.1 +25590,98.0,10.0,9.0,10.0,10.0,10.0,10.0,18,0.97 +20131,95.0,10.0,9.0,10.0,10.0,10.0,10.0,72,3.34 +1534,96.0,10.0,10.0,10.0,10.0,10.0,10.0,114,5.29 +8065,95.0,10.0,9.0,10.0,10.0,10.0,10.0,13,0.6 +24420,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.46 +33799,98.0,10.0,10.0,10.0,10.0,9.0,10.0,82,3.74 +31224,97.0,10.0,10.0,10.0,10.0,10.0,10.0,19,1.28 +64938,81.0,9.0,9.0,10.0,10.0,9.0,9.0,40,1.91 +22904,95.0,10.0,10.0,10.0,10.0,10.0,9.0,17,1.08 +17962,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.33 +9297,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.17 +61583,93.0,10.0,10.0,9.0,9.0,10.0,9.0,20,0.99 +65235,,,,,,,,0, +76034,,,,,,,,0, +69496,100.0,10.0,10.0,9.0,10.0,10.0,10.0,2,0.11 +61939,97.0,9.0,9.0,10.0,9.0,10.0,10.0,7,0.34 +6118,81.0,8.0,8.0,9.0,9.0,9.0,8.0,19,0.91 +18425,,,,,,,,0, +8965,,,,,,,,0, +19524,97.0,10.0,10.0,10.0,10.0,10.0,10.0,50,2.32 +73340,100.0,10.0,10.0,10.0,10.0,10.0,10.0,26,1.6 +33510,,,,,,,,0, +8102,93.0,10.0,9.0,10.0,10.0,9.0,9.0,17,0.81 +41846,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.06 +59611,,,,,,,,0, +30149,100.0,10.0,10.0,10.0,10.0,9.0,10.0,14,0.65 +17777,90.0,9.0,9.0,10.0,10.0,9.0,9.0,26,1.2 +41543,99.0,10.0,10.0,10.0,10.0,10.0,10.0,62,2.9 +37841,91.0,9.0,10.0,9.0,8.0,9.0,9.0,10,0.58 +9338,94.0,10.0,9.0,9.0,10.0,9.0,10.0,18,0.86 +13977,91.0,9.0,9.0,9.0,9.0,9.0,9.0,35,1.61 +53367,93.0,10.0,10.0,10.0,10.0,10.0,9.0,38,2.01 +51353,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.19 +9724,,,,,,,,1, +11665,98.0,10.0,10.0,10.0,10.0,10.0,9.0,18,0.9 +12771,,,,,,,,0, +13312,88.0,9.0,8.0,10.0,10.0,9.0,9.0,5,0.24 +73534,95.0,10.0,9.0,9.0,9.0,9.0,9.0,26,1.93 +6037,85.0,10.0,9.0,10.0,10.0,10.0,9.0,5,0.26 +19068,90.0,9.0,9.0,9.0,9.0,10.0,9.0,32,1.47 +7644,,,,,,,,0, +36116,89.0,9.0,9.0,9.0,9.0,9.0,9.0,7,0.38 +67921,,,,,,,,0, +4533,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.06 +69323,96.0,10.0,10.0,10.0,10.0,9.0,9.0,51,2.38 +10871,91.0,9.0,10.0,9.0,10.0,9.0,8.0,11,0.51 +26587,98.0,10.0,10.0,10.0,10.0,10.0,10.0,37,1.75 +4767,98.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.52 +72415,,,,,,,,0, +5686,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.38 +32580,86.0,9.0,8.0,9.0,9.0,8.0,8.0,21,1.08 +65444,82.0,9.0,9.0,10.0,10.0,9.0,9.0,14,0.65 +55796,90.0,9.0,10.0,10.0,10.0,9.0,8.0,2,0.09 +29931,98.0,10.0,10.0,9.0,10.0,10.0,10.0,46,2.11 +50755,80.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.19 +35762,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.15 +15703,85.0,9.0,9.0,9.0,9.0,9.0,9.0,19,0.99 +17025,93.0,10.0,10.0,10.0,10.0,9.0,10.0,44,2.02 +46331,,,,,,,,0, +28031,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.49 +20209,99.0,10.0,10.0,10.0,10.0,10.0,10.0,48,2.36 +4779,96.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.45 +40418,90.0,8.0,8.0,10.0,9.0,10.0,8.0,2,0.12 +10049,93.0,9.0,10.0,10.0,10.0,9.0,10.0,6,0.28 +12558,96.0,10.0,10.0,10.0,10.0,10.0,9.0,17,0.8 +50997,97.0,10.0,9.0,10.0,10.0,10.0,9.0,14,0.65 +41274,99.0,10.0,10.0,10.0,10.0,9.0,10.0,27,1.26 +39622,,,,,,,,0, +59938,99.0,10.0,10.0,10.0,10.0,9.0,10.0,33,1.64 +42164,98.0,10.0,10.0,10.0,10.0,9.0,10.0,40,1.86 +38895,20.0,2.0,2.0,10.0,2.0,2.0,2.0,1,0.05 +43123,96.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.49 +35549,99.0,10.0,10.0,10.0,10.0,10.0,10.0,30,1.5 +52094,78.0,7.0,8.0,9.0,8.0,8.0,8.0,13,0.6 +6325,96.0,10.0,10.0,10.0,10.0,10.0,10.0,77,3.55 +40403,90.0,10.0,10.0,10.0,10.0,9.0,9.0,2,0.1 +12303,85.0,8.0,9.0,9.0,9.0,9.0,8.0,24,1.12 +42918,95.0,9.0,9.0,10.0,10.0,10.0,9.0,33,1.64 +67587,95.0,10.0,9.0,10.0,10.0,10.0,10.0,8,0.86 +68902,,,,,,,,0, +19246,97.0,10.0,10.0,10.0,10.0,10.0,10.0,13,1.38 +73056,,,,,,,,0, +27101,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.11 +36837,89.0,9.0,10.0,10.0,10.0,10.0,9.0,13,0.71 +26502,100.0,10.0,10.0,10.0,10.0,9.0,10.0,10,1.28 +6102,97.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.7 +74749,93.0,9.0,9.0,10.0,10.0,10.0,9.0,18,0.9 +21461,,,,,,,,0, +22611,98.0,10.0,10.0,10.0,10.0,9.0,10.0,64,3.3 +9846,92.0,10.0,9.0,10.0,9.0,9.0,9.0,93,4.37 +35892,,,,,,,,0, +37351,95.0,10.0,10.0,10.0,10.0,10.0,10.0,139,6.38 +14132,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.22 +13014,97.0,10.0,10.0,10.0,10.0,10.0,10.0,42,2.05 +32907,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +71537,96.0,10.0,10.0,10.0,10.0,10.0,10.0,24,1.18 +10327,98.0,10.0,10.0,10.0,10.0,9.0,10.0,61,2.79 +63304,80.0,8.0,10.0,6.0,10.0,8.0,10.0,2,0.1 +46648,,,,,,,,0, +41331,96.0,10.0,9.0,10.0,10.0,10.0,10.0,11,0.57 +54317,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.12 +14675,97.0,10.0,10.0,10.0,10.0,9.0,10.0,16,1.22 +58932,93.0,9.0,10.0,10.0,10.0,10.0,10.0,4,2.55 +22660,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +60710,98.0,10.0,10.0,10.0,10.0,9.0,10.0,58,2.68 +76303,94.0,10.0,9.0,10.0,9.0,10.0,9.0,20,0.95 +74141,98.0,10.0,9.0,10.0,10.0,10.0,10.0,26,1.27 +25182,90.0,10.0,10.0,10.0,10.0,8.0,10.0,2,0.12 +25715,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.19 +54910,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.23 +57965,94.0,10.0,9.0,10.0,10.0,9.0,9.0,71,3.3 +72005,100.0,10.0,10.0,10.0,10.0,8.0,10.0,2,0.1 +72017,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +64758,91.0,9.0,9.0,9.0,10.0,9.0,9.0,7,0.33 +5986,97.0,10.0,10.0,10.0,10.0,10.0,10.0,47,2.25 +47221,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.78 +57008,100.0,9.0,9.0,10.0,9.0,9.0,10.0,6,0.34 +7729,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +67373,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +26530,97.0,10.0,9.0,10.0,10.0,10.0,10.0,35,1.63 +6632,96.0,10.0,10.0,10.0,10.0,9.0,10.0,11,0.68 +64594,,,,,,,,0, +43544,94.0,10.0,9.0,10.0,10.0,10.0,10.0,35,1.81 +11109,,,,,,,,0, +47589,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.65 +29798,100.0,10.0,10.0,8.0,9.0,10.0,9.0,2,0.09 +36608,96.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.23 +77053,92.0,9.0,9.0,10.0,10.0,9.0,9.0,21,0.99 +44585,80.0,8.0,8.0,8.0,8.0,8.0,8.0,1,0.05 +20423,96.0,10.0,10.0,10.0,10.0,9.0,9.0,9,0.44 +18145,,,,,,,,0, +15156,,,,,,,,0, +3596,90.0,9.0,9.0,8.0,8.0,10.0,8.0,2,0.11 +53460,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +19907,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.2 +26629,99.0,10.0,10.0,10.0,10.0,9.0,10.0,22,1.11 +13170,97.0,10.0,10.0,9.0,9.0,10.0,9.0,18,0.87 +58160,,,,,,,,0, +15521,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.24 +7615,80.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +1,97.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.4 +39708,67.0,8.0,7.0,9.0,8.0,9.0,8.0,6,0.29 +33035,94.0,10.0,10.0,10.0,10.0,9.0,9.0,31,1.48 +44046,91.0,10.0,9.0,10.0,10.0,9.0,9.0,37,1.81 +11605,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.1 +18018,96.0,9.0,9.0,10.0,10.0,10.0,9.0,5,0.23 +5035,100.0,10.0,10.0,10.0,10.0,10.0,9.0,7,0.34 +72134,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.26 +26062,98.0,10.0,10.0,10.0,10.0,9.0,9.0,28,1.33 +4778,87.0,9.0,10.0,10.0,10.0,10.0,9.0,19,0.88 +21409,,,,,,,,0, +16603,91.0,10.0,9.0,10.0,10.0,10.0,10.0,7,0.33 +73518,90.0,9.0,8.0,8.0,10.0,9.0,10.0,5,0.24 +75226,89.0,9.0,9.0,9.0,9.0,8.0,9.0,16,0.8 +4513,,,,,,,,0, +15596,98.0,10.0,10.0,10.0,10.0,9.0,10.0,32,1.69 +71531,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.37 +43885,98.0,10.0,10.0,10.0,10.0,9.0,10.0,76,3.5 +56457,99.0,10.0,10.0,10.0,10.0,10.0,10.0,25,9.04 +3243,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.56 +50763,98.0,10.0,9.0,10.0,10.0,10.0,10.0,72,3.41 +33890,99.0,10.0,10.0,10.0,10.0,10.0,10.0,91,4.23 +57117,92.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.24 +33189,95.0,10.0,9.0,9.0,10.0,9.0,9.0,4,0.25 +6813,86.0,9.0,8.0,9.0,9.0,9.0,8.0,14,0.68 +46445,86.0,9.0,9.0,10.0,10.0,9.0,9.0,44,2.03 +64381,90.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.2 +8188,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.15 +59873,97.0,10.0,10.0,10.0,10.0,9.0,10.0,20,0.94 +75677,89.0,9.0,9.0,9.0,9.0,9.0,9.0,26,1.2 +20518,99.0,10.0,10.0,10.0,10.0,9.0,10.0,27,1.27 +11188,98.0,10.0,9.0,10.0,10.0,10.0,9.0,9,0.43 +48869,92.0,9.0,9.0,10.0,10.0,10.0,10.0,16,0.74 +64380,99.0,10.0,10.0,10.0,10.0,10.0,10.0,72,4.19 +16568,95.0,10.0,9.0,10.0,10.0,9.0,9.0,33,1.55 +60188,,,,,,,,0, +56989,92.0,10.0,9.0,9.0,10.0,10.0,9.0,45,2.13 +58985,,,,,,,,0, +53289,97.0,10.0,10.0,10.0,10.0,10.0,10.0,23,1.75 +33166,91.0,9.0,10.0,9.0,9.0,9.0,9.0,9,0.43 +9662,,,,,,,,0, +76537,96.0,10.0,10.0,10.0,10.0,10.0,9.0,85,4.0 +53477,93.0,9.0,9.0,10.0,9.0,9.0,9.0,5,0.23 +8761,,,,,,,,0, +72759,98.0,10.0,10.0,10.0,10.0,10.0,10.0,60,2.77 +52133,90.0,10.0,9.0,10.0,10.0,9.0,9.0,3,0.16 +46829,93.0,9.0,10.0,9.0,9.0,10.0,9.0,55,2.63 +75423,95.0,10.0,10.0,10.0,10.0,10.0,9.0,30,1.54 +31564,91.0,9.0,10.0,10.0,10.0,9.0,9.0,7,0.94 +67464,94.0,10.0,9.0,10.0,10.0,9.0,9.0,34,1.79 +2294,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.43 +6779,60.0,6.0,5.0,6.0,7.0,9.0,4.0,2,0.13 +62331,92.0,9.0,10.0,10.0,10.0,10.0,9.0,20,1.06 +12936,,,,,,,,0, +75738,98.0,10.0,10.0,10.0,10.0,10.0,10.0,21,1.14 +37768,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.21 +3804,100.0,10.0,9.0,10.0,10.0,9.0,10.0,22,1.05 +40001,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,3.03 +1940,100.0,10.0,10.0,,10.0,,,2,0.12 +39222,,,,,,,,0, +20483,97.0,10.0,9.0,10.0,10.0,10.0,10.0,14,1.02 +39360,,,,,,,,0, +19923,,,,,,,,0, +23065,94.0,10.0,10.0,10.0,9.0,10.0,9.0,21,1.39 +20038,80.0,6.0,10.0,6.0,10.0,10.0,8.0,1,0.05 +12313,,,,,,,,0, +59854,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.21 +29688,89.0,10.0,9.0,10.0,10.0,9.0,9.0,32,1.66 +41404,96.0,9.0,10.0,9.0,9.0,10.0,9.0,17,0.86 +76781,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.53 +19511,,,,,,,,0, +53686,94.0,10.0,9.0,10.0,10.0,10.0,9.0,17,0.83 +55071,87.0,10.0,10.0,9.0,9.0,10.0,9.0,3,0.2 +9631,,,,,,,,0, +55917,95.0,10.0,10.0,10.0,10.0,10.0,9.0,12,0.57 +41644,90.0,9.0,9.0,9.0,9.0,10.0,9.0,30,1.47 +40669,93.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.15 +55619,98.0,10.0,10.0,10.0,10.0,9.0,10.0,43,2.0 +16641,97.0,10.0,9.0,10.0,10.0,9.0,10.0,36,1.79 +28717,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.43 +58544,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.11 +9826,91.0,9.0,9.0,10.0,10.0,9.0,9.0,46,2.16 +34650,92.0,9.0,9.0,10.0,10.0,10.0,9.0,24,1.21 +68116,85.0,9.0,9.0,10.0,10.0,10.0,10.0,4,0.19 +11152,,,,,,,,0, +58703,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.79 +34314,100.0,10.0,10.0,10.0,10.0,9.0,10.0,11,0.55 +3329,93.0,10.0,9.0,10.0,9.0,9.0,9.0,4,0.28 +13620,91.0,10.0,9.0,10.0,10.0,10.0,9.0,38,1.75 +46298,,,,,,,,0, +46224,96.0,10.0,9.0,10.0,10.0,10.0,9.0,6,0.28 +70830,93.0,10.0,10.0,10.0,10.0,8.0,9.0,37,1.72 +47001,95.0,10.0,10.0,10.0,10.0,10.0,9.0,44,2.29 +75816,,,,,,,,0, +33439,86.0,9.0,9.0,7.0,8.0,9.0,8.0,13,0.7 +72688,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +69991,89.0,9.0,9.0,9.0,9.0,9.0,9.0,41,1.91 +1031,94.0,9.0,9.0,10.0,10.0,9.0,9.0,47,2.21 +42358,92.0,9.0,10.0,10.0,10.0,10.0,9.0,6,0.35 +58400,,,,,,,,0, +46171,87.0,9.0,9.0,10.0,10.0,9.0,9.0,9,0.43 +11479,98.0,10.0,10.0,10.0,10.0,10.0,10.0,45,2.12 +45686,,,,,,,,0, +44276,99.0,10.0,10.0,10.0,10.0,9.0,10.0,38,1.78 +59878,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.46 +68970,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.38 +21582,,,,,,,,1,0.05 +58423,80.0,9.0,10.0,10.0,10.0,9.0,10.0,4,0.2 +9116,97.0,10.0,10.0,10.0,10.0,9.0,10.0,105,4.89 +17240,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +70459,,,,,,,,0, +2735,100.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.79 +4479,90.0,7.0,9.0,10.0,10.0,10.0,8.0,2,0.16 +4564,83.0,9.0,8.0,10.0,9.0,9.0,9.0,29,1.34 +22710,100.0,10.0,8.0,10.0,8.0,8.0,8.0,1,0.14 +10238,90.0,10.0,9.0,10.0,10.0,9.0,9.0,7,0.4 +59422,100.0,10.0,10.0,6.0,10.0,10.0,6.0,1,0.16 +1347,97.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.37 +51166,87.0,9.0,8.0,10.0,9.0,10.0,9.0,7,0.37 +57377,97.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.9 +60973,98.0,10.0,10.0,10.0,10.0,10.0,9.0,44,2.66 +5947,98.0,10.0,10.0,10.0,10.0,9.0,10.0,16,0.74 +20182,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.51 +26815,,,,,,,,0, +42360,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.76 +34758,,,,,,,,0, +12259,20.0,2.0,2.0,2.0,2.0,2.0,2.0,4,0.2 +49079,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.32 +14336,91.0,10.0,9.0,10.0,10.0,9.0,9.0,9,0.58 +28620,,,,,,,,0, +16738,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.19 +2777,89.0,9.0,9.0,10.0,9.0,9.0,9.0,46,2.12 +62498,95.0,10.0,10.0,10.0,10.0,10.0,10.0,16,1.07 +52395,87.0,9.0,10.0,10.0,10.0,10.0,9.0,4,0.21 +37098,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +41089,91.0,10.0,9.0,10.0,10.0,10.0,9.0,43,1.98 +4371,95.0,10.0,9.0,10.0,10.0,9.0,10.0,18,0.83 +24428,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.05 +46183,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.24 +29585,89.0,9.0,9.0,9.0,10.0,9.0,9.0,73,3.42 +32221,93.0,10.0,10.0,10.0,10.0,10.0,9.0,42,1.97 +30832,97.0,10.0,9.0,10.0,10.0,10.0,10.0,29,1.42 +7538,86.0,9.0,9.0,10.0,10.0,10.0,9.0,40,1.9 +64788,98.0,10.0,9.0,10.0,10.0,10.0,9.0,29,1.58 +35412,93.0,10.0,9.0,9.0,10.0,10.0,9.0,32,1.49 +75267,100.0,10.0,10.0,10.0,10.0,8.0,10.0,2,0.11 +30926,95.0,10.0,10.0,10.0,10.0,9.0,10.0,81,3.85 +25412,86.0,9.0,10.0,10.0,10.0,10.0,9.0,39,1.91 +69533,,,,,,,,0, +60552,82.0,9.0,8.0,9.0,9.0,9.0,9.0,11,0.71 +35139,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.48 +42062,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +43422,92.0,10.0,10.0,10.0,9.0,10.0,10.0,27,1.26 +27194,98.0,10.0,10.0,10.0,10.0,9.0,10.0,17,1.14 +50905,74.0,8.0,7.0,8.0,8.0,8.0,7.0,20,1.02 +25687,94.0,9.0,9.0,10.0,10.0,9.0,9.0,27,1.48 +46412,95.0,10.0,9.0,9.0,10.0,10.0,9.0,38,1.76 +14637,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.41 +52721,99.0,10.0,10.0,10.0,10.0,10.0,10.0,36,1.98 +25947,98.0,10.0,9.0,10.0,10.0,9.0,9.0,11,0.55 +76734,96.0,10.0,10.0,9.0,10.0,10.0,10.0,17,0.97 +64477,,,,,,,,0, +11545,90.0,9.0,9.0,9.0,9.0,9.0,9.0,35,1.67 +67978,65.0,8.0,7.0,9.0,10.0,7.0,7.0,4,0.22 +22765,91.0,9.0,9.0,9.0,9.0,9.0,9.0,9,0.47 +60717,83.0,9.0,8.0,10.0,10.0,9.0,9.0,36,1.76 +6334,,,,,,,,0, +54955,90.0,10.0,10.0,10.0,9.0,9.0,9.0,4,0.19 +14398,98.0,10.0,10.0,10.0,10.0,9.0,10.0,54,2.76 +10390,99.0,10.0,10.0,10.0,10.0,10.0,10.0,51,2.51 +41650,95.0,10.0,10.0,10.0,10.0,9.0,9.0,4,0.2 +29444,95.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.81 +50009,99.0,10.0,10.0,10.0,10.0,10.0,9.0,18,0.95 +31076,94.0,10.0,10.0,10.0,10.0,9.0,10.0,23,1.11 +6359,94.0,10.0,9.0,10.0,10.0,10.0,9.0,19,1.0 +859,,,,,,,,0, +32132,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.29 +24492,84.0,9.0,8.0,9.0,9.0,9.0,9.0,65,3.03 +28932,80.0,10.0,10.0,8.0,10.0,10.0,10.0,1,0.05 +46067,94.0,8.0,8.0,9.0,9.0,9.0,9.0,12,0.57 +40868,95.0,10.0,9.0,9.0,10.0,10.0,10.0,4,0.2 +37591,97.0,10.0,10.0,10.0,10.0,9.0,10.0,42,2.07 +44169,95.0,10.0,9.0,10.0,10.0,9.0,10.0,14,0.65 +9636,94.0,10.0,10.0,9.0,9.0,10.0,9.0,23,1.1 +18002,73.0,8.0,6.0,9.0,10.0,9.0,8.0,22,1.13 +20168,76.0,9.0,7.0,9.0,9.0,10.0,8.0,22,1.06 +68865,,,,,,,,0, +71275,86.0,9.0,9.0,9.0,10.0,9.0,9.0,44,2.04 +38191,97.0,10.0,10.0,10.0,9.0,10.0,9.0,25,1.16 +57826,96.0,10.0,9.0,10.0,10.0,9.0,10.0,110,5.15 +48966,99.0,10.0,9.0,10.0,10.0,10.0,10.0,14,0.68 +26684,,,,,,,,0, +34855,,,,,,,,0, +39989,70.0,8.0,8.0,6.0,8.0,8.0,6.0,2,0.16 +58500,79.0,9.0,9.0,9.0,9.0,10.0,8.0,28,1.36 +2847,99.0,10.0,10.0,10.0,10.0,10.0,10.0,39,1.83 +30794,81.0,8.0,8.0,9.0,9.0,9.0,8.0,19,1.08 +64735,96.0,9.0,10.0,10.0,10.0,10.0,10.0,10,0.49 +11732,99.0,10.0,10.0,10.0,10.0,10.0,10.0,16,1.25 +61696,100.0,9.0,9.0,10.0,10.0,10.0,9.0,5,0.24 +47646,,,,,,,,1,0.17 +60174,,,,,,,,1,0.07 +49596,98.0,10.0,10.0,10.0,10.0,9.0,10.0,11,0.53 +66404,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.47 +41438,100.0,10.0,10.0,9.0,9.0,7.0,10.0,2,0.1 +31568,100.0,10.0,10.0,9.0,10.0,10.0,10.0,2,0.22 +30578,99.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.75 +60090,93.0,8.0,9.0,10.0,9.0,8.0,8.0,7,0.36 +35251,83.0,9.0,8.0,9.0,9.0,8.0,8.0,7,0.34 +4424,97.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.58 +23381,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.1 +32932,97.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.73 +71775,88.0,9.0,9.0,10.0,10.0,9.0,9.0,34,1.6 +63454,99.0,10.0,10.0,10.0,10.0,9.0,10.0,20,1.1 +68791,60.0,,10.0,,,,,1,0.05 +30947,92.0,10.0,10.0,10.0,10.0,10.0,9.0,123,6.03 +38629,95.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.26 +64721,93.0,9.0,9.0,9.0,10.0,10.0,10.0,12,0.56 +51358,94.0,10.0,10.0,10.0,10.0,10.0,9.0,102,4.74 +60388,92.0,10.0,9.0,10.0,10.0,9.0,9.0,21,0.99 +76427,80.0,9.0,8.0,9.0,9.0,9.0,9.0,9,0.42 +17643,90.0,8.0,10.0,10.0,10.0,10.0,10.0,2,0.13 +23361,,,,,,,,0, +72205,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.08 +40458,,,,,,,,0, +21568,87.0,10.0,8.0,10.0,10.0,9.0,9.0,5,0.32 +40793,,,,,,,,0, +11771,97.0,10.0,9.0,10.0,10.0,10.0,10.0,6,0.29 +34072,99.0,10.0,10.0,10.0,10.0,10.0,10.0,37,1.76 +20783,82.0,10.0,9.0,8.0,8.0,9.0,9.0,28,1.31 +13724,99.0,10.0,10.0,10.0,10.0,9.0,10.0,27,1.35 +44676,94.0,10.0,10.0,10.0,10.0,9.0,10.0,20,1.19 +4930,,,,,,,,0, +41903,82.0,9.0,8.0,9.0,9.0,9.0,9.0,35,1.66 +43567,94.0,10.0,10.0,10.0,10.0,10.0,9.0,34,1.75 +22048,91.0,10.0,10.0,10.0,10.0,10.0,9.0,35,1.87 +16914,93.0,10.0,10.0,10.0,10.0,10.0,9.0,38,1.97 +51081,94.0,10.0,9.0,10.0,10.0,10.0,9.0,47,2.19 +8763,95.0,10.0,10.0,10.0,10.0,9.0,10.0,71,3.39 +11071,95.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.48 +20928,93.0,10.0,8.0,10.0,10.0,9.0,9.0,6,0.3 +35769,97.0,10.0,10.0,10.0,10.0,10.0,10.0,38,2.04 +59483,,,,,,,,0, +2356,95.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.77 +16844,94.0,9.0,10.0,9.0,8.0,9.0,9.0,18,0.86 +28577,,,,,,,,0, +34880,96.0,10.0,10.0,10.0,10.0,10.0,8.0,5,0.24 +56628,98.0,10.0,10.0,10.0,10.0,10.0,9.0,18,0.9 +29290,100.0,10.0,10.0,9.0,10.0,9.0,9.0,8,0.41 +21027,80.0,8.0,7.0,8.0,10.0,7.0,8.0,2,0.12 +17364,90.0,9.0,10.0,10.0,10.0,10.0,9.0,40,2.07 +6210,94.0,10.0,10.0,10.0,10.0,10.0,10.0,19,0.98 +32686,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.45 +57325,92.0,10.0,10.0,10.0,10.0,10.0,9.0,46,2.37 +9872,64.0,8.0,8.0,8.0,8.0,8.0,7.0,5,0.32 +38609,95.0,9.0,9.0,10.0,10.0,9.0,9.0,27,1.35 +25580,100.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.29 +48245,97.0,10.0,10.0,10.0,10.0,10.0,9.0,8,0.4 +29139,75.0,8.0,7.0,9.0,9.0,8.0,8.0,31,1.45 +68441,90.0,8.0,10.0,9.0,10.0,10.0,10.0,2,0.11 +28843,75.0,8.0,7.0,8.0,8.0,6.0,7.0,9,0.44 +19905,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.09 +17975,90.0,9.0,9.0,10.0,10.0,9.0,9.0,23,1.22 +41397,90.0,9.0,9.0,9.0,9.0,8.0,9.0,9,0.42 +57433,100.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.87 +71113,93.0,10.0,9.0,9.0,9.0,10.0,9.0,34,1.72 +55976,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +47155,98.0,10.0,9.0,10.0,10.0,10.0,10.0,16,0.84 +1154,,,,,,,,0, +41075,,,,,,,,0, +61979,96.0,10.0,10.0,10.0,10.0,9.0,10.0,31,1.44 +2476,90.0,9.0,9.0,9.0,10.0,10.0,9.0,4,0.24 +45084,100.0,9.0,9.0,9.0,9.0,7.0,8.0,2,0.09 +538,87.0,10.0,10.0,9.0,10.0,10.0,9.0,3,0.15 +42324,90.0,9.0,9.0,9.0,10.0,10.0,9.0,24,1.3 +9323,92.0,10.0,10.0,10.0,10.0,9.0,10.0,24,1.14 +5930,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.28 +11508,,,,,,,,0, +29753,,,,,,,,0, +76840,100.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.22 +75127,,,,,,,,0, +42844,80.0,8.0,9.0,8.0,7.0,9.0,8.0,11,0.57 +16296,96.0,10.0,9.0,10.0,10.0,10.0,10.0,39,1.84 +74904,94.0,10.0,9.0,9.0,9.0,10.0,9.0,7,0.39 +4203,96.0,10.0,10.0,10.0,10.0,9.0,9.0,53,2.76 +13771,97.0,10.0,10.0,10.0,10.0,10.0,10.0,53,2.48 +30237,88.0,9.0,9.0,9.0,10.0,9.0,9.0,33,1.63 +12058,100.0,10.0,10.0,10.0,10.0,9.0,10.0,6,5.45 +51425,,,,,,,,0, +10309,96.0,9.0,10.0,10.0,9.0,10.0,10.0,5,0.27 +52494,96.0,10.0,10.0,10.0,10.0,10.0,9.0,39,1.81 +2807,100.0,9.0,10.0,9.0,9.0,9.0,9.0,3,0.15 +40364,99.0,10.0,10.0,10.0,10.0,9.0,10.0,121,5.65 +33910,89.0,9.0,9.0,9.0,9.0,9.0,9.0,79,3.73 +18211,96.0,10.0,9.0,10.0,10.0,10.0,10.0,31,1.47 +27447,92.0,10.0,9.0,9.0,10.0,9.0,9.0,15,0.72 +31615,89.0,9.0,9.0,9.0,10.0,9.0,9.0,64,3.01 +46568,92.0,9.0,9.0,10.0,10.0,10.0,9.0,20,0.98 +5497,80.0,8.0,9.0,8.0,9.0,8.0,8.0,13,0.68 +26364,89.0,9.0,8.0,9.0,9.0,9.0,9.0,74,3.49 +48001,87.0,9.0,8.0,9.0,9.0,9.0,9.0,97,4.61 +13908,,,,,,,,0, +10596,92.0,9.0,9.0,10.0,10.0,9.0,9.0,33,1.68 +33359,95.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.2 +74067,94.0,9.0,10.0,10.0,10.0,10.0,9.0,28,1.35 +7921,81.0,9.0,7.0,10.0,9.0,9.0,9.0,24,1.36 +9061,89.0,9.0,9.0,10.0,10.0,10.0,9.0,33,1.98 +21743,87.0,9.0,9.0,9.0,9.0,9.0,9.0,98,4.59 +31406,98.0,10.0,10.0,9.0,10.0,9.0,9.0,20,1.05 +66849,98.0,10.0,10.0,10.0,10.0,10.0,10.0,26,1.24 +58737,90.0,9.0,9.0,10.0,10.0,10.0,9.0,2,0.33 +38407,,,,,,,,0, +64132,97.0,10.0,9.0,10.0,10.0,10.0,10.0,6,0.3 +33565,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +16378,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.25 +22682,90.0,9.0,9.0,10.0,10.0,10.0,10.0,3,0.14 +47888,,,,,,,,0, +17460,85.0,9.0,9.0,9.0,9.0,9.0,9.0,71,3.35 +57225,100.0,10.0,10.0,10.0,9.0,9.0,10.0,12,4.8 +48056,96.0,10.0,10.0,10.0,10.0,9.0,10.0,22,1.08 +48671,100.0,10.0,10.0,,10.0,,,1,0.06 +8638,91.0,9.0,10.0,9.0,9.0,9.0,9.0,49,2.31 +61577,96.0,10.0,9.0,10.0,10.0,10.0,10.0,9,0.42 +53183,99.0,10.0,10.0,10.0,10.0,10.0,10.0,84,3.96 +41434,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.29 +38228,97.0,9.0,10.0,10.0,10.0,10.0,10.0,36,2.4 +1243,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.51 +9057,90.0,10.0,9.0,10.0,10.0,10.0,9.0,21,1.04 +68711,93.0,10.0,10.0,10.0,10.0,9.0,9.0,24,1.17 +69313,,,,,,,,0, +39881,95.0,10.0,10.0,10.0,10.0,10.0,10.0,21,3.12 +49183,96.0,10.0,10.0,10.0,10.0,9.0,10.0,49,2.85 +67029,100.0,10.0,10.0,10.0,10.0,8.0,9.0,2,0.17 +37408,90.0,9.0,9.0,9.0,9.0,9.0,9.0,7,0.34 +64688,96.0,9.0,9.0,10.0,10.0,9.0,9.0,10,6.38 +37140,97.0,10.0,10.0,10.0,9.0,10.0,9.0,7,0.35 +32709,86.0,9.0,10.0,9.0,9.0,9.0,9.0,7,0.33 +58883,97.0,10.0,10.0,10.0,10.0,10.0,10.0,165,7.87 +29850,96.0,10.0,10.0,10.0,10.0,10.0,9.0,10,0.51 +10408,,,,,,,,0, +44502,92.0,9.0,9.0,10.0,10.0,9.0,9.0,19,0.93 +30013,20.0,2.0,2.0,2.0,2.0,2.0,2.0,1,0.07 +67362,92.0,10.0,9.0,10.0,10.0,9.0,9.0,29,1.37 +39724,,,,,,,,0, +21902,,,,,,,,1,0.05 +29713,99.0,10.0,10.0,10.0,10.0,10.0,10.0,24,1.34 +76485,100.0,10.0,6.0,10.0,10.0,10.0,10.0,1,0.05 +53849,96.0,10.0,10.0,10.0,10.0,10.0,9.0,27,2.81 +40370,90.0,9.0,10.0,10.0,9.0,10.0,9.0,5,0.25 +32893,97.0,10.0,10.0,10.0,10.0,10.0,10.0,102,4.76 +14151,,,,,,,,0, +20429,96.0,10.0,8.0,10.0,10.0,10.0,10.0,15,0.7 +76993,93.0,10.0,9.0,10.0,10.0,10.0,9.0,29,1.38 +18843,100.0,10.0,10.0,10.0,10.0,10.0,10.0,43,2.03 +17614,96.0,10.0,10.0,10.0,10.0,10.0,9.0,15,0.79 +65753,,,,,,,,0, +28147,83.0,9.0,9.0,9.0,9.0,9.0,8.0,34,1.59 +45,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.36 +33844,76.0,9.0,9.0,8.0,8.0,10.0,8.0,5,0.36 +53811,98.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.67 +75195,90.0,9.0,9.0,9.0,8.0,9.0,8.0,10,0.47 +49132,87.0,9.0,9.0,10.0,10.0,10.0,9.0,37,1.78 +28216,40.0,4.0,2.0,6.0,8.0,10.0,4.0,1,0.05 +43563,,,,,,,,0, +56663,99.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.77 +50775,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.16 +41191,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.11 +68345,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.3 +28439,86.0,9.0,8.0,10.0,9.0,9.0,8.0,19,0.95 +49960,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +71610,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.15 +22780,92.0,10.0,9.0,9.0,10.0,10.0,9.0,18,0.9 +55559,97.0,10.0,10.0,10.0,10.0,10.0,9.0,15,0.71 +23889,100.0,10.0,9.0,10.0,10.0,9.0,9.0,3,0.15 +77086,,,,,,,,0, +32910,91.0,10.0,9.0,10.0,10.0,8.0,10.0,8,0.39 +66447,93.0,9.0,9.0,10.0,10.0,10.0,9.0,30,1.58 +11711,90.0,9.0,10.0,10.0,10.0,10.0,10.0,7,0.33 +33225,89.0,9.0,9.0,10.0,10.0,9.0,8.0,17,0.82 +39984,85.0,9.0,8.0,9.0,9.0,10.0,8.0,38,1.82 +24078,72.0,8.0,7.0,10.0,9.0,9.0,8.0,6,0.28 +61725,94.0,10.0,9.0,10.0,10.0,9.0,9.0,49,2.34 +9453,90.0,9.0,9.0,10.0,10.0,9.0,8.0,6,0.31 +28782,93.0,10.0,9.0,10.0,10.0,10.0,10.0,12,0.56 +35966,100.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +46365,78.0,8.0,8.0,9.0,9.0,9.0,8.0,43,2.15 +3538,97.0,10.0,9.0,10.0,10.0,10.0,9.0,20,0.96 +23228,97.0,10.0,9.0,10.0,10.0,10.0,9.0,20,0.99 +26880,97.0,10.0,10.0,10.0,10.0,9.0,10.0,41,2.2 +15933,93.0,10.0,9.0,10.0,9.0,10.0,9.0,7,0.34 +22205,100.0,10.0,10.0,9.0,9.0,10.0,10.0,7,0.34 +17866,,,,,,,,0, +27617,93.0,9.0,10.0,9.0,10.0,10.0,9.0,64,3.79 +50425,99.0,10.0,10.0,10.0,10.0,10.0,10.0,22,1.06 +7217,,,,,,,,0, +56160,95.0,9.0,10.0,10.0,10.0,10.0,10.0,22,1.06 +38376,98.0,10.0,9.0,10.0,10.0,10.0,9.0,8,0.4 +11226,68.0,8.0,7.0,8.0,9.0,8.0,7.0,12,0.6 +144,98.0,10.0,10.0,10.0,10.0,10.0,10.0,46,2.19 +33121,100.0,10.0,10.0,10.0,10.0,8.0,10.0,2,0.14 +77030,95.0,10.0,10.0,10.0,10.0,9.0,10.0,21,1.0 +14713,,,,,,,,0, +55592,94.0,10.0,9.0,10.0,10.0,10.0,9.0,21,0.98 +22214,82.0,8.0,8.0,9.0,9.0,9.0,8.0,21,0.98 +34106,100.0,10.0,10.0,9.0,10.0,10.0,9.0,7,0.34 +936,97.0,10.0,10.0,9.0,9.0,9.0,10.0,25,1.22 +13473,90.0,9.0,8.0,9.0,9.0,9.0,9.0,4,0.2 +44841,,,,,,,,0, +5318,93.0,9.0,10.0,10.0,10.0,10.0,9.0,30,1.41 +72818,96.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.29 +70492,84.0,8.0,9.0,9.0,9.0,10.0,9.0,14,0.66 +60024,92.0,9.0,8.0,10.0,10.0,9.0,10.0,6,0.28 +64009,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.15 +39655,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +74230,87.0,9.0,9.0,9.0,9.0,9.0,9.0,30,1.48 +5548,89.0,9.0,8.0,8.0,8.0,9.0,9.0,9,0.43 +217,89.0,9.0,9.0,9.0,9.0,9.0,9.0,11,0.63 +69580,88.0,9.0,10.0,10.0,10.0,8.0,9.0,13,0.62 +57879,91.0,9.0,9.0,7.0,7.0,10.0,9.0,9,0.48 +76500,,,,,,,,0, +61823,,,,,,,,1,0.05 +43371,85.0,9.0,9.0,9.0,9.0,10.0,8.0,31,1.5 +47442,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.37 +44314,90.0,9.0,9.0,9.0,9.0,9.0,9.0,31,1.46 +19434,96.0,10.0,9.0,10.0,10.0,10.0,10.0,24,1.41 +25765,91.0,10.0,9.0,10.0,10.0,10.0,9.0,40,1.91 +35593,90.0,9.0,9.0,9.0,9.0,9.0,9.0,27,1.51 +56748,87.0,9.0,9.0,10.0,10.0,9.0,9.0,30,1.42 +64251,91.0,9.0,9.0,9.0,10.0,9.0,9.0,42,2.15 +2868,99.0,10.0,10.0,10.0,10.0,10.0,10.0,157,7.33 +73153,,,,,,,,0, +73659,,,,,,,,0, +64060,100.0,10.0,10.0,10.0,10.0,10.0,9.0,11,0.56 +8177,,,,,,,,1,0.05 +56095,,,,,,,,0, +73091,96.0,10.0,10.0,9.0,10.0,10.0,9.0,76,3.68 +35562,86.0,9.0,9.0,9.0,9.0,9.0,9.0,21,1.2 +67507,99.0,10.0,10.0,10.0,10.0,10.0,10.0,38,1.82 +55727,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.1 +56127,87.0,9.0,9.0,9.0,9.0,10.0,9.0,22,1.16 +39514,99.0,10.0,10.0,9.0,10.0,10.0,9.0,18,0.91 +26210,95.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.19 +71778,93.0,9.0,8.0,10.0,10.0,10.0,9.0,9,0.91 +24973,89.0,9.0,8.0,10.0,9.0,9.0,9.0,50,2.35 +20193,91.0,10.0,10.0,9.0,9.0,10.0,10.0,45,2.12 +32729,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.24 +56601,98.0,10.0,10.0,10.0,10.0,10.0,9.0,9,0.44 +7274,100.0,10.0,10.0,10.0,10.0,10.0,10.0,42,2.0 +19486,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +12799,98.0,10.0,10.0,10.0,10.0,9.0,10.0,22,1.04 +68626,90.0,9.0,9.0,10.0,10.0,10.0,9.0,8,0.38 +39972,97.0,10.0,10.0,10.0,10.0,10.0,9.0,19,0.95 +76877,90.0,10.0,9.0,10.0,10.0,10.0,9.0,23,1.11 +13330,99.0,10.0,10.0,10.0,10.0,10.0,10.0,20,1.03 +34716,,,,,,,,0, +42563,83.0,9.0,8.0,9.0,9.0,9.0,8.0,22,1.13 +65936,89.0,9.0,9.0,10.0,10.0,10.0,9.0,22,1.04 +37479,97.0,10.0,10.0,10.0,10.0,9.0,9.0,29,1.35 +50783,78.0,9.0,8.0,10.0,10.0,9.0,8.0,8,0.38 +61638,,,,,,,,0, +18024,,,,,,,,0, +35441,77.0,8.0,9.0,9.0,9.0,9.0,8.0,22,1.08 +727,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.15 +65533,83.0,9.0,8.0,10.0,9.0,9.0,8.0,6,0.36 +16953,97.0,9.0,10.0,9.0,10.0,9.0,8.0,6,0.34 +76262,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.05 +46386,96.0,10.0,10.0,10.0,10.0,10.0,10.0,37,1.72 +4559,96.0,10.0,10.0,10.0,10.0,9.0,9.0,48,2.35 +11172,82.0,9.0,8.0,9.0,9.0,9.0,8.0,13,0.78 +51943,86.0,9.0,8.0,10.0,9.0,9.0,8.0,24,1.14 +34518,94.0,10.0,8.0,10.0,10.0,10.0,9.0,14,0.68 +52744,93.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.46 +46306,96.0,10.0,9.0,9.0,10.0,10.0,9.0,15,0.9 +48852,94.0,9.0,9.0,10.0,10.0,10.0,10.0,133,6.64 +43771,91.0,10.0,8.0,9.0,9.0,10.0,9.0,14,0.69 +9526,,,,,,,,0, +61201,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +64085,95.0,10.0,10.0,10.0,9.0,10.0,10.0,4,0.68 +29705,87.0,9.0,9.0,9.0,9.0,10.0,9.0,27,1.32 +64886,96.0,10.0,9.0,10.0,10.0,10.0,9.0,11,0.53 +60118,95.0,9.0,9.0,10.0,10.0,10.0,9.0,20,1.1 +9309,60.0,10.0,6.0,10.0,10.0,8.0,4.0,2,0.09 +40231,93.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.15 +44095,88.0,9.0,10.0,9.0,10.0,9.0,9.0,17,0.82 +41355,85.0,9.0,9.0,10.0,9.0,9.0,9.0,11,0.52 +59734,100.0,9.0,8.0,9.0,10.0,9.0,9.0,2,0.1 +69310,84.0,9.0,8.0,9.0,9.0,9.0,9.0,22,1.04 +8297,90.0,9.0,10.0,10.0,10.0,10.0,8.0,2,0.12 +8070,87.0,9.0,8.0,9.0,9.0,10.0,9.0,16,0.91 +6235,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +23027,91.0,9.0,9.0,9.0,8.0,10.0,9.0,24,1.12 +14782,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.13 +50653,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.66 +43849,90.0,9.0,9.0,10.0,10.0,10.0,9.0,26,1.22 +55826,85.0,9.0,9.0,9.0,9.0,8.0,9.0,41,2.0 +27970,95.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.47 +20093,75.0,8.0,7.0,10.0,9.0,8.0,8.0,10,0.47 +11880,97.0,10.0,10.0,9.0,9.0,9.0,10.0,7,0.33 +62118,73.0,7.0,7.0,7.0,7.0,5.0,7.0,4,0.23 +44721,99.0,10.0,10.0,10.0,10.0,10.0,10.0,72,3.56 +549,81.0,8.0,8.0,9.0,9.0,9.0,8.0,21,1.04 +27919,97.0,10.0,10.0,10.0,10.0,9.0,10.0,82,3.96 +42883,,,,,,,,0, +40564,,,,,,,,0, +13708,96.0,10.0,10.0,10.0,10.0,9.0,10.0,20,0.95 +74674,81.0,9.0,9.0,9.0,8.0,8.0,8.0,30,1.41 +54013,100.0,9.0,9.0,10.0,9.0,10.0,9.0,3,0.26 +39745,97.0,10.0,10.0,10.0,10.0,9.0,10.0,35,1.92 +28087,100.0,10.0,10.0,9.0,10.0,10.0,10.0,18,0.9 +21695,91.0,10.0,9.0,9.0,10.0,10.0,9.0,30,1.55 +37378,80.0,8.0,9.0,8.0,9.0,8.0,9.0,5,0.25 +26270,99.0,10.0,10.0,10.0,10.0,10.0,10.0,70,3.27 +77007,89.0,9.0,9.0,10.0,10.0,9.0,9.0,29,1.37 +70618,94.0,9.0,9.0,10.0,10.0,9.0,9.0,26,1.24 +31128,100.0,10.0,10.0,10.0,10.0,10.0,10.0,69,3.26 +46104,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.14 +30132,93.0,9.0,9.0,10.0,10.0,9.0,9.0,15,0.74 +55884,93.0,10.0,9.0,10.0,10.0,9.0,9.0,16,1.03 +56168,95.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.25 +42854,93.0,9.0,9.0,9.0,9.0,9.0,9.0,45,2.12 +38384,97.0,9.0,9.0,10.0,10.0,10.0,9.0,7,0.34 +35632,80.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.05 +6486,,,,,,,,0, +69457,90.0,10.0,10.0,10.0,10.0,9.0,9.0,8,0.38 +38967,100.0,10.0,10.0,10.0,10.0,10.0,10.0,49,2.34 +20103,97.0,10.0,10.0,10.0,10.0,10.0,10.0,39,1.89 +9999,,,,,,,,0, +46221,,,,,,,,0, +17901,92.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.27 +4453,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.29 +21183,95.0,10.0,9.0,10.0,10.0,10.0,9.0,27,1.35 +64241,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.47 +55573,87.0,9.0,8.0,9.0,9.0,9.0,9.0,3,0.15 +7489,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.66 +24760,95.0,10.0,10.0,10.0,10.0,8.0,10.0,5,0.23 +9465,88.0,9.0,8.0,10.0,10.0,10.0,9.0,11,0.51 +58354,86.0,9.0,10.0,10.0,9.0,10.0,9.0,15,0.73 +51324,,,,,,,,0, +51585,78.0,8.0,9.0,8.0,8.0,10.0,8.0,10,0.51 +27826,,,,,,,,0, +41469,,,,,,,,0, +45026,98.0,10.0,10.0,10.0,10.0,10.0,9.0,10,0.54 +14774,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.19 +26452,,,,,,,,0, +42462,,,,,,,,0, +30551,95.0,10.0,9.0,10.0,10.0,10.0,9.0,29,1.46 +1758,98.0,10.0,10.0,10.0,10.0,9.0,10.0,70,3.41 +29952,93.0,9.0,10.0,10.0,10.0,9.0,10.0,25,1.25 +56710,80.0,9.0,9.0,9.0,9.0,8.0,10.0,2,0.09 +41026,93.0,10.0,9.0,10.0,10.0,10.0,9.0,17,0.81 +45830,95.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.2 +17063,97.0,10.0,10.0,10.0,10.0,9.0,10.0,38,1.84 +34306,,,,,,,,0, +9741,89.0,10.0,10.0,10.0,10.0,9.0,10.0,18,0.86 +21755,,,,,,,,0, +76213,99.0,10.0,10.0,10.0,10.0,10.0,10.0,117,5.49 +48761,93.0,10.0,10.0,10.0,10.0,9.0,9.0,9,0.44 +25230,90.0,10.0,9.0,9.0,10.0,10.0,9.0,32,1.71 +29728,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.2 +521,90.0,10.0,10.0,10.0,10.0,9.0,9.0,36,1.74 +61856,100.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.44 +62633,100.0,10.0,10.0,10.0,10.0,10.0,10.0,17,1.03 +4073,97.0,10.0,9.0,10.0,10.0,9.0,10.0,6,0.31 +17764,100.0,9.0,9.0,10.0,10.0,10.0,9.0,2,2.0 +42124,100.0,10.0,9.0,9.0,10.0,8.0,8.0,3,0.15 +16311,99.0,10.0,9.0,10.0,10.0,9.0,10.0,20,1.0 +73481,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +32883,88.0,9.0,8.0,8.0,9.0,10.0,9.0,15,2.56 +20607,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.19 +28574,95.0,10.0,10.0,10.0,10.0,9.0,9.0,22,1.04 +37056,83.0,9.0,8.0,10.0,9.0,9.0,8.0,24,1.19 +15355,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.48 +43529,100.0,10.0,10.0,10.0,10.0,10.0,10.0,15,2.09 +72612,96.0,10.0,10.0,10.0,10.0,10.0,9.0,57,2.69 +18753,97.0,10.0,10.0,10.0,10.0,9.0,10.0,46,2.19 +2036,95.0,10.0,9.0,10.0,10.0,10.0,9.0,15,0.74 +46233,100.0,10.0,10.0,10.0,10.0,10.0,10.0,18,1.98 +22573,100.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.77 +27680,98.0,10.0,10.0,10.0,10.0,10.0,10.0,53,2.5 +8120,96.0,10.0,9.0,10.0,10.0,10.0,10.0,21,1.01 +21225,95.0,10.0,9.0,10.0,10.0,9.0,10.0,12,0.59 +62549,73.0,9.0,9.0,8.0,8.0,9.0,9.0,3,0.14 +44866,91.0,9.0,10.0,9.0,10.0,9.0,10.0,9,0.42 +39541,100.0,10.0,10.0,10.0,10.0,9.0,10.0,18,0.86 +62141,92.0,10.0,9.0,10.0,10.0,10.0,9.0,20,0.99 +68011,95.0,10.0,10.0,10.0,10.0,10.0,9.0,31,1.63 +42560,92.0,9.0,9.0,9.0,9.0,9.0,9.0,29,1.37 +47048,97.0,10.0,9.0,10.0,10.0,10.0,10.0,29,1.37 +15942,93.0,10.0,10.0,9.0,9.0,10.0,10.0,14,0.77 +55173,93.0,9.0,10.0,10.0,10.0,9.0,10.0,16,0.79 +13519,,,,,,,,0, +9459,99.0,10.0,10.0,10.0,10.0,9.0,10.0,36,1.72 +29128,91.0,9.0,9.0,10.0,10.0,8.0,9.0,11,0.55 +60845,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.24 +13739,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +27800,,,,,,,,0, +36619,88.0,9.0,9.0,9.0,9.0,10.0,9.0,28,1.43 +72860,97.0,10.0,9.0,10.0,10.0,10.0,10.0,7,0.33 +2631,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.18 +32845,95.0,9.0,10.0,10.0,10.0,9.0,9.0,55,2.68 +51278,100.0,10.0,10.0,10.0,10.0,10.0,9.0,13,0.66 +26280,93.0,10.0,10.0,10.0,10.0,10.0,9.0,34,1.65 +3095,98.0,10.0,10.0,10.0,10.0,10.0,10.0,24,1.2 +23391,83.0,8.0,9.0,9.0,9.0,8.0,8.0,29,1.57 +44882,92.0,10.0,9.0,10.0,10.0,10.0,9.0,5,0.27 +5767,,,,,,,,0, +41139,93.0,9.0,10.0,10.0,9.0,10.0,10.0,3,0.15 +22335,98.0,10.0,9.0,10.0,10.0,10.0,10.0,9,0.5 +49300,,,,,,,,0, +66197,93.0,9.0,9.0,10.0,9.0,10.0,8.0,4,0.23 +36835,100.0,10.0,10.0,10.0,10.0,10.0,10.0,23,1.33 +74325,,,,,,,,0, +66512,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.57 +62894,93.0,10.0,9.0,10.0,10.0,9.0,9.0,23,1.41 +75862,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +6437,87.0,9.0,8.0,10.0,9.0,10.0,9.0,21,1.21 +4220,92.0,9.0,8.0,10.0,10.0,10.0,9.0,139,6.57 +13645,100.0,10.0,9.0,10.0,10.0,10.0,9.0,2,0.14 +4187,100.0,10.0,10.0,10.0,10.0,10.0,10.0,17,1.0 +35592,90.0,10.0,8.0,10.0,10.0,10.0,9.0,25,1.23 +14632,95.0,10.0,9.0,10.0,10.0,10.0,10.0,225,11.58 +23400,92.0,10.0,10.0,10.0,10.0,9.0,9.0,7,0.34 +9875,93.0,9.0,9.0,10.0,9.0,8.0,10.0,3,0.15 +10015,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.05 +75702,90.0,10.0,9.0,10.0,10.0,9.0,9.0,8,0.4 +59359,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.41 +43942,96.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.26 +73943,87.0,9.0,9.0,9.0,8.0,9.0,9.0,24,1.26 +22934,100.0,10.0,10.0,10.0,10.0,10.0,10.0,22,1.15 +46212,97.0,10.0,9.0,10.0,10.0,10.0,10.0,23,1.19 +36197,95.0,10.0,10.0,10.0,10.0,10.0,9.0,13,0.64 +40360,,,,,,,,0, +52374,100.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.06 +33660,97.0,9.0,9.0,10.0,10.0,10.0,10.0,13,0.62 +40214,90.0,9.0,9.0,9.0,10.0,9.0,10.0,34,1.62 +163,88.0,9.0,8.0,10.0,10.0,10.0,8.0,5,0.24 +68764,94.0,10.0,10.0,10.0,9.0,10.0,9.0,14,0.69 +20477,95.0,9.0,10.0,9.0,8.0,10.0,9.0,11,0.54 +18568,85.0,9.0,8.0,10.0,10.0,9.0,8.0,26,1.51 +54854,89.0,10.0,9.0,9.0,9.0,9.0,9.0,45,2.13 +35652,98.0,10.0,10.0,10.0,10.0,10.0,10.0,26,1.29 +65913,,,,,,,,0, +40944,97.0,10.0,9.0,10.0,10.0,9.0,9.0,7,0.35 +6179,,,,,,,,0, +74291,89.0,9.0,10.0,10.0,10.0,10.0,10.0,18,0.91 +176,93.0,8.0,9.0,9.0,9.0,9.0,9.0,3,0.14 +13291,92.0,10.0,10.0,9.0,9.0,9.0,9.0,52,2.45 +51044,,,,,,,,0, +28674,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.66 +9537,95.0,10.0,9.0,10.0,10.0,9.0,10.0,4,0.23 +57047,100.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.29 +18565,98.0,10.0,10.0,10.0,10.0,9.0,10.0,68,3.46 +36914,,,,,,,,0, +35459,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.05 +62195,86.0,9.0,9.0,9.0,9.0,9.0,9.0,77,3.63 +58886,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.15 +62542,97.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.39 +19096,98.0,10.0,10.0,10.0,10.0,10.0,10.0,26,1.3 +54950,73.0,8.0,7.0,7.0,7.0,8.0,8.0,32,1.56 +8624,100.0,10.0,10.0,10.0,10.0,8.0,10.0,3,0.15 +8216,86.0,9.0,10.0,10.0,10.0,8.0,9.0,7,0.33 +56211,86.0,8.0,9.0,8.0,9.0,10.0,8.0,20,1.02 +72982,96.0,9.0,10.0,10.0,10.0,9.0,9.0,28,1.34 +30103,97.0,10.0,10.0,9.0,10.0,10.0,10.0,34,1.63 +54567,93.0,9.0,9.0,10.0,10.0,10.0,9.0,82,3.87 +52610,97.0,10.0,9.0,10.0,10.0,10.0,9.0,12,0.6 +39143,96.0,10.0,9.0,10.0,10.0,10.0,9.0,17,0.86 +64967,97.0,10.0,9.0,10.0,10.0,9.0,10.0,23,1.59 +50848,88.0,9.0,9.0,10.0,10.0,9.0,9.0,9,0.46 +8701,98.0,10.0,10.0,10.0,10.0,9.0,10.0,78,3.68 +24179,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.27 +70997,89.0,9.0,9.0,10.0,10.0,10.0,9.0,23,1.26 +7456,,,,,,,,0, +29612,93.0,10.0,9.0,10.0,10.0,10.0,9.0,15,0.76 +48683,80.0,9.0,9.0,10.0,10.0,10.0,9.0,2,0.11 +905,,,,,,,,0, +47323,85.0,9.0,9.0,9.0,9.0,9.0,9.0,25,1.22 +21390,,,,,,,,0, +51844,98.0,10.0,10.0,10.0,9.0,10.0,10.0,9,0.46 +38875,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.19 +29195,82.0,9.0,9.0,10.0,10.0,9.0,9.0,10,0.48 +16558,80.0,9.0,9.0,9.0,9.0,9.0,9.0,14,0.69 +42647,92.0,9.0,9.0,9.0,10.0,9.0,9.0,12,0.59 +6377,87.0,9.0,8.0,10.0,9.0,10.0,9.0,11,0.57 +32313,,,,,,,,0, +56917,98.0,10.0,9.0,10.0,10.0,10.0,10.0,14,0.72 +14881,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.15 +47525,93.0,10.0,9.0,10.0,10.0,10.0,9.0,31,1.48 +55552,100.0,10.0,10.0,10.0,10.0,10.0,10.0,20,0.99 +570,92.0,9.0,9.0,10.0,10.0,10.0,9.0,41,2.0 +72043,90.0,9.0,9.0,10.0,10.0,10.0,10.0,2,0.1 +37914,93.0,9.0,10.0,10.0,10.0,10.0,9.0,28,1.35 +41384,92.0,9.0,8.0,10.0,10.0,9.0,9.0,23,1.12 +45837,92.0,10.0,10.0,10.0,10.0,9.0,9.0,21,1.15 +76794,80.0,9.0,9.0,9.0,10.0,8.0,8.0,3,0.17 +66357,100.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.3 +7526,100.0,9.0,10.0,10.0,10.0,10.0,10.0,4,0.24 +33972,93.0,9.0,10.0,9.0,9.0,10.0,9.0,3,0.15 +19522,,,,,,,,0, +39482,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.1 +52011,96.0,10.0,9.0,10.0,10.0,10.0,9.0,23,1.09 +40814,93.0,10.0,9.0,9.0,10.0,9.0,9.0,3,0.15 +59597,94.0,9.0,9.0,10.0,10.0,10.0,9.0,15,0.73 +58088,90.0,9.0,10.0,10.0,10.0,9.0,9.0,8,0.38 +50318,60.0,6.0,6.0,6.0,8.0,8.0,5.0,2,0.1 +54656,96.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.79 +58848,96.0,10.0,10.0,10.0,10.0,9.0,10.0,10,0.48 +34553,99.0,10.0,10.0,10.0,10.0,10.0,10.0,23,1.19 +72796,88.0,9.0,9.0,9.0,9.0,9.0,8.0,43,2.11 +19353,92.0,10.0,9.0,10.0,10.0,10.0,9.0,19,0.9 +1074,98.0,10.0,10.0,10.0,10.0,10.0,10.0,90,4.26 +21160,100.0,10.0,10.0,10.0,10.0,9.0,10.0,9,0.45 +64558,100.0,9.0,9.0,10.0,10.0,10.0,8.0,3,0.2 +65939,95.0,10.0,10.0,10.0,10.0,10.0,9.0,50,2.4 +51936,92.0,10.0,10.0,10.0,10.0,10.0,9.0,32,2.02 +21833,,,,,,,,0, +41475,98.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.71 +41101,88.0,9.0,9.0,9.0,9.0,10.0,8.0,24,1.39 +43494,97.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.29 +20508,100.0,10.0,10.0,10.0,10.0,10.0,8.0,2,0.1 +52932,88.0,9.0,9.0,9.0,10.0,9.0,9.0,114,5.45 +4363,100.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.29 +25289,100.0,10.0,9.0,10.0,10.0,10.0,10.0,20,1.08 +55423,,,,,,,,0, +53601,100.0,10.0,9.0,10.0,10.0,10.0,10.0,6,0.36 +59149,91.0,10.0,9.0,9.0,10.0,9.0,9.0,136,6.48 +49918,100.0,10.0,10.0,10.0,10.0,6.0,10.0,1,0.05 +71098,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.25 +42479,98.0,10.0,10.0,10.0,10.0,9.0,9.0,21,1.06 +39558,96.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.71 +44875,80.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.27 +12210,,,,,,,,0, +27619,90.0,8.0,8.0,7.0,8.0,9.0,8.0,2,0.22 +71850,96.0,10.0,10.0,10.0,10.0,10.0,9.0,29,1.7 +426,100.0,10.0,10.0,10.0,10.0,10.0,10.0,25,1.22 +12556,,,,,,,,0, +59321,87.0,9.0,7.0,9.0,9.0,10.0,9.0,3,0.18 +44689,90.0,9.0,10.0,9.0,9.0,9.0,9.0,31,1.56 +67327,87.0,10.0,8.0,6.0,10.0,10.0,9.0,3,0.15 +28365,,,,,,,,0, +25427,92.0,9.0,10.0,10.0,10.0,9.0,9.0,13,0.65 +56903,80.0,6.0,8.0,10.0,10.0,10.0,8.0,1,0.08 +55738,95.0,9.0,10.0,10.0,10.0,9.0,9.0,12,0.59 +63562,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.46 +52318,96.0,10.0,9.0,10.0,10.0,10.0,10.0,11,0.68 +22254,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.62 +47926,100.0,10.0,10.0,10.0,10.0,10.0,10.0,49,2.79 +51016,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.4 +55482,,,,,,,,0, +22850,70.0,8.0,5.0,9.0,9.0,9.0,8.0,2,0.09 +71123,91.0,10.0,9.0,10.0,10.0,10.0,9.0,8,0.41 +75064,,,,,,,,0, +57605,,,,,,,,0, +57976,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.17 +47502,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.16 +43580,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.3 +11145,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.59 +37329,99.0,10.0,10.0,10.0,10.0,10.0,10.0,32,1.66 +59423,91.0,9.0,9.0,10.0,10.0,10.0,8.0,17,0.88 +4601,97.0,10.0,10.0,10.0,10.0,10.0,10.0,20,1.07 +15506,81.0,8.0,8.0,9.0,9.0,10.0,8.0,39,2.26 +24270,86.0,9.0,9.0,9.0,10.0,10.0,9.0,18,0.99 +42928,72.0,8.0,7.0,9.0,8.0,9.0,8.0,28,1.4 +67869,91.0,9.0,9.0,9.0,9.0,9.0,9.0,45,2.24 +39089,84.0,9.0,8.0,9.0,9.0,8.0,9.0,62,2.97 +27853,91.0,9.0,9.0,10.0,10.0,9.0,10.0,7,0.33 +42957,,,,,,,,0, +53024,85.0,8.0,8.0,9.0,9.0,9.0,8.0,27,1.36 +57447,98.0,10.0,10.0,10.0,9.0,9.0,10.0,10,0.48 +31319,,,,,,,,0, +60461,100.0,10.0,10.0,10.0,10.0,10.0,10.0,20,0.95 +16441,94.0,10.0,10.0,10.0,9.0,10.0,9.0,37,1.74 +5481,60.0,5.0,5.0,6.0,7.0,8.0,6.0,2,0.13 +55406,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.25 +63597,,,,,,,,0, +60550,86.0,9.0,9.0,9.0,10.0,8.0,9.0,41,2.12 +34262,93.0,10.0,10.0,9.0,9.0,9.0,9.0,11,0.55 +55616,97.0,10.0,10.0,10.0,10.0,10.0,10.0,30,1.67 +6214,,,,,,,,0, +64674,96.0,10.0,9.0,9.0,10.0,10.0,10.0,22,1.13 +46816,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.46 +58583,93.0,9.0,10.0,8.0,9.0,9.0,9.0,19,0.93 +28619,,,,,,,,0, +39266,,,,,,,,0, +56093,,,,,,,,0, +30853,,,,,,,,0, +45812,95.0,10.0,10.0,10.0,10.0,10.0,9.0,29,1.37 +34948,87.0,9.0,9.0,10.0,9.0,9.0,9.0,63,3.02 +56136,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +37165,98.0,10.0,10.0,10.0,10.0,10.0,10.0,48,2.27 +40584,84.0,8.0,9.0,10.0,10.0,9.0,9.0,7,0.41 +69350,,,,,,,,0, +38542,94.0,9.0,10.0,9.0,10.0,10.0,9.0,27,1.31 +14420,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.3 +44716,98.0,10.0,10.0,10.0,10.0,10.0,10.0,24,1.18 +62794,87.0,9.0,7.0,9.0,10.0,9.0,10.0,5,0.32 +19,,,,,,,,0, +16085,84.0,9.0,10.0,10.0,9.0,9.0,9.0,19,0.94 +52033,99.0,10.0,10.0,10.0,10.0,10.0,10.0,52,2.58 +20539,95.0,10.0,9.0,9.0,10.0,10.0,9.0,17,0.85 +70300,,,,,,,,1,0.05 +59200,100.0,9.0,10.0,10.0,10.0,9.0,10.0,2,0.1 +32740,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.65 +72025,96.0,10.0,10.0,10.0,10.0,9.0,10.0,43,2.09 +51058,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.7 +24040,97.0,9.0,10.0,10.0,10.0,9.0,9.0,8,0.4 +41,95.0,9.0,9.0,9.0,10.0,9.0,9.0,39,1.97 +30155,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.17 +63508,100.0,10.0,10.0,10.0,10.0,9.0,10.0,99,4.88 +8370,96.0,10.0,10.0,10.0,10.0,10.0,9.0,40,1.94 +2479,98.0,10.0,10.0,10.0,10.0,10.0,10.0,53,2.79 +45089,96.0,10.0,9.0,10.0,10.0,10.0,9.0,11,0.53 +60644,100.0,9.0,10.0,10.0,10.0,9.0,9.0,6,0.36 +14787,95.0,9.0,9.0,10.0,10.0,10.0,10.0,11,0.59 +32624,,,,,,,,0, +59975,95.0,10.0,9.0,10.0,10.0,9.0,10.0,23,1.08 +58061,96.0,10.0,10.0,10.0,10.0,9.0,10.0,36,2.0 +70091,93.0,10.0,10.0,10.0,10.0,9.0,10.0,60,2.86 +53185,100.0,10.0,10.0,10.0,10.0,10.0,8.0,2,0.11 +28127,,,,,,,,0, +57221,94.0,9.0,9.0,10.0,10.0,9.0,10.0,7,0.34 +51778,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.12 +71887,92.0,10.0,9.0,10.0,10.0,9.0,9.0,10,0.56 +21243,100.0,10.0,9.0,10.0,10.0,9.0,10.0,3,0.15 +67529,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +290,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.05 +38826,78.0,9.0,8.0,9.0,9.0,8.0,8.0,22,1.05 +17938,98.0,10.0,10.0,10.0,10.0,9.0,10.0,20,0.96 +72732,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.65 +50751,87.0,9.0,8.0,9.0,9.0,10.0,9.0,15,0.74 +5709,100.0,10.0,10.0,8.0,10.0,8.0,10.0,2,0.11 +33974,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.65 +73140,96.0,10.0,9.0,10.0,10.0,9.0,10.0,15,0.72 +50952,89.0,9.0,10.0,9.0,9.0,8.0,9.0,12,0.68 +39620,97.0,10.0,10.0,10.0,10.0,9.0,10.0,33,1.62 +51481,86.0,9.0,8.0,9.0,9.0,10.0,9.0,32,1.56 +30321,93.0,9.0,9.0,10.0,10.0,10.0,9.0,56,2.72 +26540,92.0,10.0,9.0,10.0,10.0,10.0,9.0,10,0.51 +45714,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.54 +36035,,,,,,,,0, +56006,98.0,10.0,10.0,10.0,10.0,10.0,10.0,25,3.06 +39502,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.2 +2076,100.0,10.0,6.0,10.0,10.0,10.0,10.0,1,0.05 +43248,94.0,10.0,9.0,10.0,10.0,9.0,9.0,24,1.24 +68559,89.0,9.0,7.0,10.0,10.0,10.0,9.0,18,0.92 +20589,,,,,,,,0, +2877,,,,,,,,0, +55551,,,,,,,,0, +38238,100.0,10.0,8.0,10.0,10.0,9.0,10.0,2,0.1 +52303,,,,,,,,0, +73076,98.0,10.0,10.0,10.0,10.0,10.0,10.0,51,2.48 +9598,,,,,,,,0, +76964,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,1.44 +2378,,,,,,,,1,0.05 +31493,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.4 +1477,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.48 +52651,91.0,10.0,9.0,10.0,10.0,9.0,9.0,22,1.05 +37250,97.0,10.0,10.0,10.0,10.0,10.0,10.0,79,3.9 +26771,95.0,10.0,10.0,10.0,10.0,10.0,10.0,40,1.92 +26689,96.0,10.0,10.0,10.0,10.0,9.0,10.0,37,1.88 +50035,,,,,,,,0, +24860,100.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.05 +43622,100.0,10.0,9.0,10.0,10.0,10.0,9.0,3,0.15 +56485,90.0,10.0,6.0,10.0,10.0,10.0,10.0,2,0.1 +15339,90.0,9.0,9.0,10.0,10.0,10.0,9.0,2,0.1 +61930,99.0,10.0,10.0,10.0,10.0,10.0,9.0,42,2.19 +3429,91.0,9.0,9.0,10.0,9.0,9.0,9.0,31,1.59 +1637,95.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.31 +55680,91.0,9.0,9.0,9.0,9.0,9.0,9.0,10,0.48 +23903,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.55 +53242,96.0,10.0,10.0,10.0,10.0,10.0,9.0,18,0.88 +298,97.0,10.0,10.0,10.0,10.0,10.0,10.0,20,1.02 +28304,92.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.29 +57226,99.0,10.0,10.0,10.0,10.0,10.0,10.0,32,1.71 +49606,60.0,10.0,6.0,10.0,10.0,10.0,10.0,3,0.17 +5880,93.0,10.0,9.0,10.0,10.0,10.0,9.0,66,3.28 +75053,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.17 +26758,94.0,10.0,9.0,10.0,10.0,10.0,9.0,159,7.58 +34053,99.0,10.0,10.0,10.0,10.0,10.0,10.0,23,1.11 +48583,50.0,6.0,6.0,6.0,6.0,5.0,5.0,2,0.11 +19206,95.0,10.0,9.0,10.0,10.0,10.0,9.0,16,0.85 +30955,87.0,9.0,8.0,10.0,9.0,9.0,9.0,30,1.42 +57342,94.0,10.0,10.0,10.0,10.0,10.0,9.0,118,5.94 +30358,88.0,10.0,7.0,10.0,10.0,9.0,10.0,5,1.15 +47120,90.0,10.0,9.0,10.0,10.0,9.0,9.0,20,1.03 +57867,,,,,,,,0, +17316,86.0,9.0,8.0,10.0,10.0,9.0,9.0,30,1.51 +14986,,,,,,,,0, +14069,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.4 +52795,100.0,10.0,9.0,10.0,10.0,10.0,10.0,9,0.44 +44141,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.17 +75322,,,,,,,,0, +45806,95.0,10.0,9.0,10.0,10.0,10.0,9.0,40,1.97 +22443,87.0,8.0,9.0,9.0,9.0,9.0,9.0,3,0.15 +25537,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.11 +76380,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.35 +59493,,,,,,,,0, +72676,93.0,10.0,9.0,10.0,10.0,9.0,9.0,119,5.72 +36405,88.0,10.0,9.0,10.0,9.0,9.0,9.0,50,2.41 +62911,88.0,9.0,9.0,9.0,10.0,9.0,9.0,12,0.62 +75098,93.0,10.0,9.0,9.0,10.0,10.0,9.0,40,2.05 +45181,92.0,9.0,8.0,9.0,9.0,10.0,9.0,18,0.93 +16908,95.0,10.0,9.0,10.0,10.0,9.0,10.0,38,1.93 +54025,,,,,,,,2,0.1 +46622,84.0,9.0,8.0,9.0,9.0,9.0,8.0,21,1.08 +50514,,,,,,,,3,0.15 +67634,,,,,,,,0, +71513,97.0,10.0,10.0,10.0,10.0,8.0,10.0,42,2.17 +18106,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.05 +60968,98.0,10.0,10.0,10.0,10.0,10.0,10.0,40,1.91 +8492,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.12 +1100,100.0,10.0,8.0,10.0,10.0,8.0,10.0,2,0.1 +777,92.0,10.0,9.0,10.0,10.0,10.0,9.0,58,2.91 +30749,,,,,,,,1,0.05 +69920,90.0,9.0,9.0,10.0,10.0,10.0,9.0,40,2.34 +76079,96.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.78 +22952,88.0,9.0,9.0,9.0,10.0,10.0,9.0,71,3.55 +44903,80.0,10.0,8.0,10.0,10.0,8.0,10.0,1,0.05 +6081,100.0,10.0,10.0,10.0,10.0,10.0,6.0,1,0.05 +38044,50.0,6.0,4.0,6.0,7.0,5.0,5.0,2,0.1 +51071,94.0,9.0,9.0,10.0,10.0,9.0,9.0,20,0.99 +52435,92.0,10.0,10.0,9.0,8.0,10.0,8.0,5,0.25 +73399,100.0,10.0,9.0,9.0,10.0,10.0,9.0,6,0.38 +75257,70.0,5.0,9.0,8.0,8.0,8.0,7.0,10,0.51 +6414,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.5 +11238,87.0,9.0,10.0,10.0,9.0,8.0,9.0,6,0.29 +30651,91.0,10.0,9.0,10.0,10.0,9.0,9.0,10,0.51 +27837,100.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.29 +37395,94.0,9.0,9.0,10.0,10.0,9.0,10.0,17,0.84 +40532,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.1 +35257,93.0,9.0,9.0,10.0,10.0,9.0,9.0,46,2.64 +28767,,,,,,,,0, +13390,93.0,10.0,9.0,10.0,10.0,10.0,9.0,59,3.08 +24261,83.0,9.0,10.0,9.0,9.0,9.0,9.0,12,0.65 +46776,98.0,10.0,10.0,10.0,10.0,10.0,10.0,31,1.63 +20730,90.0,10.0,9.0,10.0,10.0,10.0,9.0,77,3.92 +16175,87.0,10.0,9.0,10.0,10.0,8.0,9.0,4,0.19 +19814,89.0,10.0,9.0,10.0,10.0,10.0,9.0,92,4.48 +14811,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.05 +30614,80.0,8.0,8.0,8.0,8.0,8.0,8.0,21,1.03 +51798,100.0,10.0,10.0,10.0,10.0,10.0,8.0,2,0.11 +29566,95.0,10.0,9.0,10.0,10.0,10.0,9.0,38,1.88 +68830,96.0,10.0,10.0,10.0,10.0,10.0,9.0,28,1.96 +19909,93.0,10.0,10.0,10.0,10.0,9.0,10.0,104,5.31 +46269,87.0,8.0,9.0,9.0,10.0,10.0,9.0,14,1.27 +6370,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.28 +76859,79.0,8.0,8.0,9.0,9.0,9.0,8.0,20,1.02 +33859,89.0,10.0,9.0,10.0,10.0,9.0,9.0,19,1.02 +5635,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.51 +66855,94.0,10.0,10.0,10.0,10.0,10.0,10.0,34,1.81 +57494,95.0,10.0,10.0,10.0,10.0,9.0,9.0,30,1.5 +60274,,,,,,,,0, +56829,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +62021,,,,,,,,0, +52661,89.0,10.0,9.0,10.0,9.0,10.0,9.0,21,1.05 +37995,87.0,10.0,8.0,10.0,10.0,9.0,9.0,3,0.2 +54606,,,,,,,,0, +45283,,,,,,,,1,0.05 +3900,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +14977,93.0,9.0,8.0,10.0,10.0,10.0,9.0,44,2.1 +7728,98.0,10.0,10.0,10.0,10.0,10.0,10.0,20,1.02 +43461,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.1 +71641,86.0,9.0,8.0,10.0,10.0,8.0,9.0,7,0.36 +63045,96.0,10.0,10.0,10.0,10.0,9.0,10.0,12,0.6 +58983,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.43 +72219,80.0,10.0,6.0,10.0,10.0,10.0,7.0,2,0.1 +19621,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.1 +30456,90.0,9.0,9.0,10.0,9.0,10.0,9.0,36,1.77 +9615,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +28606,98.0,10.0,10.0,10.0,10.0,10.0,9.0,91,4.39 +67725,94.0,10.0,10.0,10.0,10.0,10.0,9.0,22,1.06 +76150,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +76275,98.0,10.0,10.0,10.0,10.0,10.0,10.0,79,3.88 +48336,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.65 +22784,,,,,,,,0, +67612,,,,,,,,0, +1014,90.0,9.0,9.0,10.0,10.0,9.0,9.0,25,1.21 +61871,98.0,10.0,10.0,10.0,10.0,10.0,9.0,49,2.33 +70605,100.0,10.0,10.0,10.0,10.0,10.0,10.0,26,1.3 +71632,97.0,10.0,10.0,10.0,10.0,10.0,10.0,54,2.59 +72012,100.0,10.0,9.0,9.0,10.0,10.0,10.0,2,0.1 +45640,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.24 +4149,90.0,9.0,9.0,10.0,10.0,10.0,9.0,124,6.37 +25943,99.0,10.0,10.0,10.0,10.0,9.0,10.0,28,1.42 +9260,97.0,10.0,10.0,10.0,10.0,10.0,10.0,37,1.78 +32927,96.0,10.0,10.0,10.0,10.0,10.0,10.0,41,2.14 +31703,95.0,10.0,9.0,10.0,10.0,10.0,10.0,56,2.8 +39354,93.0,10.0,9.0,10.0,10.0,9.0,9.0,25,1.2 +23831,95.0,10.0,10.0,10.0,10.0,9.0,9.0,22,1.11 +44760,98.0,10.0,10.0,10.0,10.0,10.0,10.0,33,1.67 +43257,,,,,,,,0, +6398,100.0,10.0,10.0,10.0,10.0,10.0,9.0,10,0.51 +20708,96.0,10.0,10.0,10.0,10.0,10.0,9.0,42,2.03 +45292,,,,,,,,0, +48658,81.0,8.0,8.0,9.0,9.0,8.0,9.0,40,2.07 +68486,96.0,10.0,9.0,10.0,10.0,9.0,9.0,27,1.38 +27640,98.0,10.0,10.0,10.0,10.0,9.0,10.0,34,1.73 +54630,78.0,7.0,7.0,9.0,8.0,9.0,7.0,8,0.42 +20391,95.0,9.0,10.0,10.0,10.0,10.0,10.0,8,0.53 +60404,88.0,9.0,8.0,9.0,9.0,9.0,9.0,51,2.43 +49902,90.0,9.0,9.0,9.0,9.0,9.0,9.0,102,4.86 +43994,78.0,8.0,8.0,9.0,9.0,9.0,8.0,20,1.06 +15917,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.62 +1225,83.0,10.0,10.0,9.0,8.0,10.0,8.0,6,0.31 +52747,,,,,,,,1,0.05 +45136,,,,,,,,1,0.05 +48034,90.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.13 +21143,78.0,8.0,8.0,9.0,9.0,9.0,8.0,55,2.62 +40774,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.38 +50495,84.0,9.0,8.0,9.0,9.0,9.0,9.0,53,2.57 +10123,,,,,,,,0, +8608,100.0,10.0,10.0,9.0,10.0,10.0,9.0,3,0.16 +65020,,,,,,,,0, +10574,96.0,10.0,10.0,10.0,10.0,9.0,10.0,86,4.16 +70636,99.0,10.0,10.0,10.0,10.0,10.0,10.0,33,1.62 +55912,96.0,10.0,10.0,10.0,10.0,9.0,10.0,84,4.05 +63963,,,,,,,,0, +46876,98.0,10.0,10.0,10.0,10.0,10.0,10.0,67,3.23 +76299,94.0,9.0,9.0,10.0,10.0,10.0,10.0,101,5.29 +39978,97.0,10.0,10.0,10.0,10.0,10.0,10.0,20,0.98 +54493,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.43 +15671,92.0,9.0,10.0,10.0,10.0,9.0,10.0,19,0.98 +61376,,,,,,,,0, +37317,91.0,9.0,9.0,10.0,10.0,10.0,9.0,87,4.2 +24859,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.44 +8951,89.0,9.0,10.0,10.0,10.0,10.0,9.0,26,1.31 +32850,93.0,9.0,9.0,10.0,10.0,10.0,9.0,83,3.95 +71,88.0,9.0,9.0,10.0,10.0,9.0,9.0,107,5.11 +6426,68.0,8.0,7.0,9.0,7.0,9.0,7.0,13,0.63 +53860,92.0,10.0,9.0,9.0,10.0,9.0,9.0,31,1.61 +74410,95.0,10.0,9.0,10.0,10.0,10.0,9.0,104,4.99 +45072,96.0,10.0,9.0,10.0,10.0,9.0,9.0,15,0.76 +62867,92.0,9.0,9.0,9.0,10.0,10.0,9.0,150,7.14 +2304,91.0,9.0,9.0,10.0,10.0,10.0,9.0,13,0.63 +48126,90.0,9.0,9.0,10.0,9.0,10.0,9.0,20,0.99 +24927,87.0,9.0,9.0,9.0,10.0,9.0,9.0,115,5.49 +47043,,,,,,,,0, +32781,100.0,10.0,10.0,10.0,10.0,9.0,10.0,11,0.53 +33716,96.0,10.0,10.0,10.0,10.0,8.0,9.0,5,0.24 +15733,95.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.82 +73297,57.0,7.0,8.0,8.0,7.0,9.0,5.0,8,0.39 +2392,99.0,10.0,10.0,10.0,10.0,10.0,10.0,107,5.82 +73695,92.0,10.0,9.0,10.0,10.0,10.0,10.0,34,1.85 +13593,97.0,10.0,10.0,10.0,10.0,10.0,10.0,20,0.95 +24340,92.0,9.0,9.0,8.0,10.0,10.0,9.0,18,0.88 +63458,89.0,9.0,9.0,9.0,9.0,9.0,9.0,30,1.6 +66620,88.0,10.0,7.0,10.0,10.0,8.0,9.0,7,0.35 +8329,,,,,,,,0, +60076,95.0,10.0,10.0,8.0,10.0,8.0,9.0,8,0.4 +5127,100.0,10.0,10.0,10.0,10.0,9.0,10.0,19,1.12 +70351,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.11 +71035,87.0,8.0,6.0,9.0,8.0,8.0,8.0,3,0.15 +31812,93.0,9.0,8.0,10.0,10.0,9.0,9.0,3,0.15 +38763,96.0,10.0,9.0,10.0,10.0,9.0,10.0,16,0.79 +71455,,,,,,,,0, +9353,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.67 +35028,96.0,10.0,10.0,10.0,10.0,9.0,10.0,97,4.63 +33251,96.0,10.0,10.0,10.0,10.0,9.0,10.0,22,1.18 +12213,92.0,9.0,9.0,10.0,10.0,10.0,9.0,19,0.92 +49689,82.0,9.0,8.0,10.0,9.0,9.0,8.0,26,1.37 +52171,97.0,10.0,10.0,10.0,10.0,10.0,10.0,84,4.1 +47847,98.0,10.0,10.0,10.0,10.0,9.0,10.0,32,1.85 +5658,89.0,9.0,9.0,9.0,9.0,9.0,9.0,10,0.5 +20057,98.0,10.0,10.0,10.0,10.0,10.0,10.0,36,1.78 +49643,90.0,10.0,10.0,10.0,10.0,10.0,9.0,39,1.9 +60721,95.0,10.0,9.0,10.0,10.0,10.0,10.0,31,1.51 +72505,96.0,10.0,10.0,10.0,10.0,10.0,10.0,83,4.11 +49851,90.0,7.0,8.0,10.0,10.0,9.0,10.0,3,0.15 +31628,94.0,10.0,9.0,9.0,9.0,10.0,9.0,23,1.16 +22782,85.0,9.0,9.0,9.0,9.0,9.0,9.0,44,2.13 +71180,95.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.24 +2187,89.0,9.0,9.0,10.0,10.0,10.0,9.0,50,2.46 +58994,86.0,9.0,8.0,9.0,10.0,10.0,9.0,14,0.71 +22103,99.0,10.0,10.0,10.0,10.0,10.0,10.0,82,4.71 +4862,85.0,9.0,9.0,9.0,9.0,9.0,9.0,17,0.9 +40715,92.0,10.0,9.0,10.0,10.0,9.0,9.0,54,2.71 +23368,75.0,8.0,8.0,8.0,9.0,8.0,8.0,15,0.8 +48936,100.0,10.0,9.0,9.0,10.0,10.0,10.0,4,0.24 +28885,99.0,10.0,10.0,10.0,10.0,10.0,10.0,59,2.82 +61637,99.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.92 +76721,93.0,9.0,9.0,10.0,10.0,10.0,9.0,24,1.19 +15158,99.0,10.0,10.0,10.0,10.0,10.0,10.0,53,2.53 +37420,90.0,10.0,10.0,10.0,9.0,10.0,10.0,3,0.15 +9313,,,,,,,,0, +58607,94.0,10.0,8.0,10.0,10.0,10.0,10.0,16,0.88 +41277,79.0,8.0,8.0,9.0,9.0,9.0,9.0,17,0.82 +35330,80.0,9.0,7.0,10.0,10.0,10.0,9.0,5,0.24 +2260,93.0,10.0,8.0,9.0,9.0,9.0,9.0,9,0.44 +33515,88.0,10.0,9.0,9.0,10.0,10.0,9.0,41,2.0 +21829,,,,,,,,3,0.15 +43609,87.0,10.0,7.0,10.0,9.0,9.0,8.0,3,0.15 +54430,93.0,10.0,9.0,9.0,10.0,9.0,9.0,66,3.18 +46808,95.0,10.0,10.0,10.0,10.0,10.0,9.0,47,2.3 +59058,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.16 +52321,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.35 +190,84.0,9.0,9.0,9.0,9.0,10.0,9.0,19,1.06 +20397,95.0,10.0,10.0,10.0,10.0,10.0,10.0,81,3.9 +67067,83.0,10.0,8.0,8.0,10.0,10.0,8.0,8,0.41 +73223,86.0,9.0,8.0,10.0,10.0,9.0,8.0,10,0.51 +46804,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.28 +18740,100.0,10.0,10.0,10.0,10.0,9.0,10.0,17,0.85 +75905,92.0,10.0,10.0,9.0,9.0,9.0,8.0,5,0.3 +58757,96.0,9.0,8.0,8.0,10.0,10.0,9.0,6,0.3 +38664,100.0,10.0,9.0,10.0,10.0,9.0,9.0,2,0.1 +18610,99.0,10.0,9.0,10.0,10.0,10.0,10.0,18,0.86 +66733,91.0,9.0,8.0,10.0,10.0,10.0,10.0,23,1.11 +32254,94.0,10.0,9.0,10.0,10.0,10.0,9.0,51,2.81 +38247,78.0,9.0,7.0,9.0,9.0,9.0,8.0,31,1.55 +75737,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.67 +64601,70.0,7.0,7.0,9.0,9.0,8.0,8.0,21,1.02 +12392,98.0,10.0,9.0,10.0,10.0,10.0,9.0,24,1.16 +51451,96.0,10.0,10.0,10.0,10.0,10.0,9.0,16,0.8 +71585,,,,,,,,0, +42891,100.0,8.0,8.0,8.0,8.0,10.0,10.0,1,0.05 +20497,96.0,10.0,10.0,10.0,10.0,10.0,9.0,38,1.84 +22835,97.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.64 +34885,95.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.27 +15210,60.0,6.0,8.0,5.0,7.0,8.0,7.0,5,0.28 +47530,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.24 +74331,75.0,9.0,8.0,9.0,10.0,9.0,8.0,4,1.08 +8485,80.0,10.0,10.0,9.0,8.0,9.0,10.0,4,0.2 +23021,98.0,10.0,10.0,10.0,10.0,10.0,10.0,104,4.98 +66610,93.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.4 +62458,97.0,10.0,10.0,10.0,10.0,10.0,9.0,13,0.63 +44735,80.0,9.0,9.0,9.0,9.0,6.0,9.0,3,0.3 +46008,99.0,10.0,10.0,10.0,10.0,10.0,10.0,21,1.01 +64992,90.0,9.0,10.0,10.0,10.0,10.0,9.0,2,0.11 +58570,93.0,9.0,7.0,9.0,8.0,9.0,9.0,6,0.29 +76705,70.0,8.0,8.0,10.0,4.0,6.0,6.0,2,0.1 +64765,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.17 +37151,100.0,10.0,10.0,10.0,10.0,6.0,10.0,1,1.0 +35725,98.0,10.0,10.0,10.0,10.0,9.0,10.0,18,0.9 +14496,98.0,10.0,10.0,10.0,10.0,10.0,10.0,22,1.46 +37960,100.0,10.0,9.0,10.0,10.0,8.0,8.0,3,0.26 +7853,,,,,,,,0, +66454,,,,,,,,0, +62219,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.25 +71873,100.0,10.0,10.0,9.0,10.0,9.0,9.0,5,0.38 +61411,93.0,9.0,9.0,10.0,10.0,9.0,9.0,3,0.23 +6219,,,,,,,,0, +34955,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.15 +44446,89.0,9.0,9.0,10.0,10.0,10.0,9.0,42,2.02 +32432,,,,,,,,0, +74944,78.0,7.0,7.0,9.0,9.0,8.0,8.0,8,0.39 +9199,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.13 +45931,,,,,,,,0, +25344,,,,,,,,0, +55045,,,,,,,,0, +54928,96.0,10.0,10.0,9.0,10.0,10.0,10.0,5,0.32 +50956,99.0,10.0,10.0,10.0,10.0,10.0,10.0,54,2.83 +44445,93.0,9.0,10.0,10.0,9.0,9.0,9.0,24,1.29 +75894,90.0,9.0,9.0,10.0,10.0,10.0,9.0,31,1.68 +58609,100.0,10.0,10.0,10.0,10.0,9.0,9.0,7,0.37 +61301,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.46 +23498,,,,,,,,0, +45365,100.0,10.0,10.0,10.0,10.0,10.0,10.0,25,1.19 +64481,100.0,10.0,8.0,10.0,10.0,10.0,10.0,3,0.15 +24404,95.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.46 +872,90.0,10.0,9.0,10.0,10.0,9.0,10.0,2,0.11 +3073,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.1 +50351,96.0,10.0,10.0,10.0,10.0,10.0,10.0,19,0.94 +45156,,,,,,,,0, +44842,,,,,,,,0, +16189,97.0,10.0,10.0,10.0,10.0,8.0,9.0,8,0.42 +65448,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.36 +69883,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.48 +28335,97.0,10.0,9.0,10.0,10.0,9.0,10.0,9,0.45 +37893,97.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.64 +52611,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.14 +48858,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.56 +45998,100.0,10.0,10.0,10.0,10.0,9.0,10.0,16,0.82 +59189,99.0,10.0,10.0,10.0,10.0,10.0,10.0,36,1.78 +40812,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +53807,92.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.47 +59263,,,,,,,,0, +70471,95.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.25 +56599,,,,,,,,0, +19499,98.0,10.0,10.0,10.0,10.0,9.0,10.0,18,0.89 +21413,,,,,,,,0, +12355,97.0,10.0,10.0,10.0,10.0,10.0,10.0,86,4.19 +58380,100.0,10.0,9.0,10.0,10.0,8.0,9.0,2,0.17 +33171,97.0,10.0,10.0,10.0,10.0,10.0,9.0,14,0.72 +33042,,,,,,,,0, +46419,80.0,8.0,6.0,10.0,10.0,8.0,8.0,1,0.05 +2444,95.0,10.0,10.0,10.0,10.0,10.0,9.0,26,1.51 +52406,75.0,9.0,9.0,9.0,9.0,10.0,8.0,25,1.21 +34879,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.42 +7936,,,,,,,,0, +28393,93.0,9.0,10.0,10.0,10.0,8.0,10.0,34,2.41 +37108,97.0,10.0,9.0,10.0,10.0,10.0,10.0,36,1.77 +9718,,,,,,,,0, +63403,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.1 +50555,,,,,,,,0, +50612,97.0,10.0,10.0,10.0,10.0,10.0,10.0,25,1.22 +63214,,,,,,,,0, +63358,98.0,10.0,10.0,10.0,10.0,9.0,10.0,18,0.87 +10988,90.0,9.0,9.0,10.0,10.0,10.0,9.0,41,3.08 +13560,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +70372,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.24 +11609,98.0,10.0,10.0,10.0,10.0,9.0,10.0,25,1.21 +24872,93.0,9.0,9.0,9.0,9.0,10.0,9.0,3,0.15 +69003,93.0,9.0,9.0,8.0,7.0,8.0,8.0,6,0.3 +41309,95.0,10.0,9.0,10.0,10.0,9.0,10.0,9,0.43 +22779,90.0,9.0,9.0,10.0,10.0,10.0,9.0,49,2.39 +48889,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.54 +61109,95.0,10.0,9.0,10.0,10.0,9.0,10.0,53,2.56 +38654,93.0,9.0,10.0,10.0,10.0,10.0,9.0,22,1.1 +41675,,,,,,,,0, +29153,95.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.22 +63697,60.0,9.0,7.0,8.0,7.0,8.0,5.0,4,0.81 +73360,97.0,10.0,10.0,9.0,9.0,10.0,10.0,7,0.34 +34665,99.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.88 +15499,99.0,10.0,10.0,10.0,10.0,10.0,10.0,23,1.14 +45893,99.0,10.0,10.0,10.0,10.0,10.0,10.0,20,1.01 +22566,99.0,10.0,10.0,10.0,10.0,9.0,9.0,15,0.73 +6609,90.0,9.0,9.0,10.0,10.0,9.0,9.0,8,0.42 +3022,80.0,8.0,6.0,8.0,6.0,8.0,6.0,1,0.07 +1490,89.0,9.0,9.0,10.0,9.0,9.0,9.0,58,3.0 +40660,100.0,9.0,9.0,9.0,9.0,10.0,10.0,2,0.11 +7500,92.0,9.0,10.0,10.0,10.0,9.0,10.0,5,0.3 +60189,89.0,9.0,9.0,9.0,9.0,10.0,9.0,17,0.84 +62830,79.0,8.0,8.0,9.0,10.0,9.0,8.0,19,0.93 +9986,97.0,10.0,9.0,10.0,10.0,10.0,10.0,23,1.13 +3497,91.0,10.0,9.0,10.0,10.0,10.0,9.0,155,7.45 +36553,94.0,10.0,9.0,10.0,10.0,9.0,9.0,26,1.31 +73202,96.0,10.0,10.0,10.0,10.0,10.0,9.0,32,1.73 +41721,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.19 +42678,88.0,9.0,9.0,10.0,10.0,10.0,9.0,28,1.4 +60097,80.0,10.0,6.0,10.0,10.0,8.0,10.0,2,0.1 +22244,98.0,10.0,10.0,10.0,9.0,9.0,10.0,12,0.59 +16646,84.0,8.0,6.0,9.0,9.0,9.0,9.0,6,0.3 +1207,100.0,10.0,10.0,10.0,10.0,10.0,10.0,70,3.38 +18310,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.49 +13367,100.0,9.0,10.0,10.0,10.0,9.0,9.0,5,0.25 +19578,100.0,8.0,8.0,10.0,10.0,10.0,10.0,2,0.1 +24711,93.0,10.0,8.0,10.0,10.0,10.0,9.0,19,0.91 +19065,99.0,10.0,10.0,10.0,10.0,10.0,10.0,33,1.68 +42743,100.0,9.0,10.0,10.0,10.0,9.0,9.0,3,0.17 +58482,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +46147,88.0,9.0,9.0,10.0,9.0,9.0,9.0,135,6.6 +46451,87.0,9.0,9.0,9.0,9.0,9.0,9.0,77,3.71 +2323,,,,,,,,0, +68901,93.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.57 +51427,97.0,10.0,10.0,9.0,10.0,9.0,10.0,22,1.52 +44615,87.0,10.0,8.0,10.0,10.0,10.0,9.0,3,0.18 +65565,100.0,10.0,10.0,10.0,10.0,8.0,10.0,4,0.19 +47316,95.0,10.0,10.0,10.0,10.0,9.0,10.0,12,0.59 +23281,95.0,10.0,10.0,10.0,10.0,10.0,9.0,40,1.97 +31556,,,,,,,,0, +43305,93.0,9.0,9.0,9.0,9.0,9.0,9.0,15,0.92 +73176,94.0,10.0,10.0,9.0,10.0,10.0,9.0,10,0.5 +37010,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.15 +2612,96.0,10.0,9.0,10.0,10.0,9.0,10.0,128,6.32 +39676,95.0,10.0,10.0,9.0,10.0,9.0,9.0,15,0.92 +56555,75.0,8.0,8.0,7.0,9.0,10.0,7.0,4,0.23 +32559,89.0,9.0,8.0,9.0,9.0,9.0,9.0,58,2.81 +42759,91.0,9.0,9.0,10.0,9.0,9.0,9.0,7,0.36 +73280,90.0,9.0,9.0,9.0,10.0,10.0,9.0,14,1.06 +37464,100.0,10.0,10.0,10.0,10.0,9.0,10.0,10,0.5 +21929,60.0,2.0,10.0,8.0,6.0,10.0,6.0,1,0.05 +2150,95.0,10.0,9.0,10.0,10.0,9.0,10.0,129,6.37 +6547,93.0,9.0,10.0,10.0,10.0,10.0,9.0,8,0.38 +30420,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.69 +27762,,,,,,,,0, +47100,77.0,8.0,9.0,8.0,9.0,10.0,8.0,15,0.74 +44086,92.0,9.0,8.0,10.0,10.0,9.0,10.0,5,0.31 +42378,,,,,,,,0, +18245,,,,,,,,0, +17362,93.0,10.0,9.0,10.0,10.0,10.0,9.0,100,4.93 +13449,91.0,9.0,10.0,10.0,10.0,10.0,9.0,18,1.09 +21711,85.0,8.0,7.0,9.0,8.0,9.0,8.0,14,0.7 +21294,89.0,9.0,9.0,9.0,9.0,9.0,9.0,18,1.2 +57929,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.36 +35243,,,,,,,,0, +47497,100.0,10.0,8.0,9.0,9.0,10.0,9.0,2,0.11 +25072,100.0,10.0,10.0,10.0,10.0,9.0,9.0,4,0.23 +53321,91.0,10.0,10.0,10.0,10.0,9.0,10.0,9,0.48 +40308,98.0,10.0,10.0,10.0,10.0,9.0,10.0,23,1.14 +57880,82.0,8.0,8.0,9.0,9.0,9.0,8.0,18,0.94 +67569,75.0,9.0,6.0,8.0,9.0,10.0,7.0,5,0.81 +74860,,,,,,,,0, +51232,93.0,9.0,9.0,9.0,10.0,9.0,9.0,3,0.38 +51326,94.0,10.0,9.0,10.0,10.0,10.0,9.0,31,1.63 +26693,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.2 +52027,95.0,10.0,10.0,9.0,10.0,9.0,10.0,4,0.23 +56929,92.0,9.0,10.0,10.0,10.0,9.0,9.0,12,0.59 +43151,93.0,10.0,10.0,10.0,10.0,9.0,10.0,16,0.8 +64993,,,,,,,,0, +13628,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.16 +21857,100.0,10.0,10.0,10.0,10.0,10.0,10.0,22,1.07 +2206,96.0,10.0,10.0,10.0,10.0,10.0,9.0,22,1.08 +34302,97.0,9.0,9.0,10.0,10.0,10.0,9.0,18,1.11 +2942,97.0,10.0,10.0,10.0,10.0,10.0,10.0,30,1.5 +31903,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.63 +14708,95.0,10.0,7.0,10.0,9.0,10.0,10.0,4,0.2 +17659,94.0,9.0,10.0,10.0,10.0,9.0,8.0,173,8.52 +37240,,,,,,,,0, +8849,94.0,9.0,10.0,9.0,9.0,10.0,10.0,16,0.81 +57408,90.0,9.0,9.0,10.0,10.0,10.0,9.0,24,1.37 +1931,99.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.78 +32385,85.0,9.0,8.0,9.0,9.0,9.0,8.0,17,0.84 +65110,97.0,10.0,10.0,10.0,10.0,10.0,10.0,34,2.51 +30935,83.0,9.0,8.0,8.0,8.0,10.0,9.0,10,0.48 +22451,89.0,10.0,9.0,10.0,10.0,10.0,9.0,11,0.57 +27398,91.0,10.0,9.0,10.0,10.0,10.0,9.0,29,1.39 +59559,98.0,10.0,10.0,9.0,10.0,10.0,10.0,24,1.29 +47433,89.0,9.0,9.0,10.0,10.0,10.0,9.0,18,0.92 +44010,,,,,,,,0, +75665,,,,,,,,0, +23447,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +32235,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.52 +33932,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.2 +52979,86.0,9.0,9.0,10.0,9.0,10.0,8.0,17,0.85 +7971,88.0,9.0,9.0,10.0,10.0,9.0,9.0,26,1.26 +49882,97.0,10.0,10.0,10.0,10.0,10.0,9.0,22,1.34 +75545,,,,,,,,0, +76620,97.0,10.0,9.0,10.0,10.0,10.0,10.0,24,1.21 +49093,79.0,9.0,8.0,9.0,9.0,9.0,9.0,90,4.35 +18166,,,,,,,,0, +46824,,,,,,,,0, +28530,,,,,,,,0, +35032,,,,,,,,0, +68857,96.0,10.0,10.0,10.0,10.0,9.0,9.0,20,1.22 +51073,,,,,,,,0, +64297,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +67173,,,,,,,,0, +21054,98.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.86 +74221,96.0,10.0,10.0,10.0,10.0,10.0,10.0,39,2.35 +25135,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +15435,80.0,8.0,8.0,10.0,10.0,8.0,8.0,2,0.1 +37596,99.0,10.0,10.0,10.0,10.0,9.0,10.0,21,1.08 +3293,93.0,10.0,9.0,10.0,10.0,9.0,9.0,92,4.44 +16303,93.0,9.0,9.0,10.0,10.0,9.0,9.0,95,4.6 +2889,88.0,10.0,10.0,10.0,10.0,9.0,10.0,9,0.44 +44995,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.2 +28755,96.0,10.0,10.0,10.0,10.0,8.0,9.0,53,2.78 +40411,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +55112,94.0,10.0,10.0,10.0,10.0,9.0,9.0,22,1.13 +66805,96.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.8 +67177,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.17 +40356,97.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.31 +50634,80.0,9.0,10.0,7.0,10.0,10.0,9.0,4,0.22 +30294,,,,,,,,0, +55012,,,,,,,,0, +59009,,,,,,,,0, +36823,87.0,8.0,8.0,9.0,9.0,7.0,8.0,6,0.31 +12144,84.0,8.0,7.0,10.0,10.0,9.0,9.0,15,1.29 +59385,96.0,10.0,9.0,10.0,10.0,9.0,9.0,21,1.02 +58107,,,,,,,,0, +3437,,,,,,,,0, +72131,100.0,9.0,9.0,10.0,10.0,8.0,10.0,3,0.16 +27118,,,,,,,,0, +8979,,,,,,,,0, +70721,93.0,10.0,9.0,10.0,10.0,9.0,10.0,52,2.55 +31206,88.0,9.0,8.0,10.0,10.0,10.0,9.0,8,0.39 +76068,99.0,10.0,10.0,10.0,10.0,10.0,10.0,28,1.37 +5186,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +15545,88.0,9.0,9.0,10.0,10.0,10.0,9.0,37,1.82 +63797,82.0,10.0,9.0,10.0,10.0,9.0,9.0,11,0.54 +48303,90.0,9.0,9.0,10.0,10.0,10.0,9.0,20,0.97 +1722,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.39 +57710,95.0,10.0,10.0,10.0,10.0,10.0,9.0,139,6.98 +15994,,,,,,,,0, +16194,,,,,,,,0, +70186,,,,,,,,0, +62876,98.0,10.0,10.0,10.0,10.0,10.0,10.0,85,4.1 +39833,,,,,,,,0, +52702,94.0,10.0,10.0,10.0,10.0,9.0,10.0,17,1.17 +16455,,,,,,,,0, +2866,,,,,,,,0, +29667,90.0,9.0,10.0,9.0,10.0,10.0,9.0,25,1.23 +28769,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.08 +22951,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.15 +32410,94.0,10.0,9.0,10.0,9.0,10.0,10.0,25,1.47 +44549,96.0,10.0,9.0,9.0,10.0,9.0,10.0,5,0.25 +17667,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.36 +74457,95.0,9.0,10.0,10.0,10.0,9.0,9.0,30,1.53 +45321,,,,,,,,0, +29036,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +66790,,,,,,,,0, +29204,80.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.15 +70970,97.0,10.0,10.0,10.0,10.0,9.0,10.0,37,1.82 +26459,95.0,10.0,10.0,9.0,9.0,9.0,10.0,8,0.4 +69523,93.0,10.0,9.0,9.0,9.0,10.0,9.0,46,2.25 +516,80.0,8.0,8.0,10.0,10.0,6.0,8.0,1,0.05 +73683,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.15 +6519,87.0,9.0,7.0,9.0,9.0,9.0,8.0,3,0.15 +74065,91.0,10.0,10.0,9.0,10.0,9.0,9.0,31,1.53 +41616,98.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.79 +42028,98.0,10.0,10.0,10.0,10.0,9.0,9.0,25,1.26 +60534,90.0,9.0,9.0,9.0,9.0,10.0,8.0,8,0.45 +16205,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.31 +24815,,,,,,,,0, +70072,,,,,,,,0, +21589,,,,,,,,0, +49138,88.0,10.0,9.0,10.0,10.0,9.0,9.0,9,0.44 +59743,,,,,,,,0, +48757,95.0,9.0,8.0,10.0,10.0,9.0,9.0,4,0.2 +28237,95.0,10.0,10.0,10.0,10.0,10.0,9.0,13,0.75 +71317,84.0,9.0,8.0,10.0,9.0,10.0,9.0,14,0.7 +5749,90.0,9.0,9.0,10.0,10.0,9.0,9.0,10,0.51 +4246,93.0,10.0,9.0,10.0,10.0,10.0,10.0,7,0.35 +18516,100.0,10.0,10.0,10.0,10.0,,,1,0.06 +670,93.0,10.0,9.0,10.0,10.0,10.0,9.0,29,1.43 +58134,92.0,10.0,9.0,10.0,10.0,9.0,10.0,25,1.25 +12097,90.0,9.0,9.0,10.0,10.0,10.0,9.0,39,1.91 +37353,95.0,10.0,9.0,10.0,10.0,10.0,10.0,20,0.98 +52073,88.0,9.0,8.0,10.0,10.0,10.0,9.0,26,1.27 +36337,,,,,,,,1,0.05 +64176,90.0,9.0,9.0,9.0,9.0,9.0,9.0,48,2.38 +58772,,,,,,,,0, +15966,,,,,,,,0, +75180,85.0,8.0,9.0,8.0,8.0,9.0,9.0,26,1.34 +68291,100.0,10.0,9.0,10.0,10.0,9.0,10.0,3,0.16 +33928,,,,,,,,0, +13878,,,,,,,,0, +5600,,,,,,,,0, +46842,100.0,10.0,10.0,10.0,10.0,10.0,10.0,48,2.75 +36106,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +64487,88.0,9.0,9.0,10.0,9.0,9.0,9.0,33,1.67 +11380,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.1 +69134,,,,,,,,0, +30724,97.0,10.0,10.0,10.0,10.0,9.0,10.0,26,1.64 +15446,96.0,9.0,9.0,10.0,10.0,9.0,9.0,10,0.53 +44244,,,,,,,,1,0.07 +66675,,,,,,,,0, +10860,,,,,,,,0, +5425,73.0,7.0,6.0,9.0,7.0,9.0,7.0,9,0.66 +59942,,,,,,,,4,0.19 +39635,87.0,9.0,9.0,10.0,10.0,9.0,9.0,25,1.24 +48560,96.0,10.0,9.0,10.0,10.0,10.0,9.0,34,1.74 +19374,96.0,10.0,9.0,10.0,10.0,10.0,10.0,12,0.59 +17783,91.0,9.0,9.0,10.0,10.0,10.0,9.0,32,1.73 +19415,99.0,10.0,10.0,10.0,10.0,10.0,10.0,32,1.74 +75216,99.0,10.0,10.0,10.0,10.0,9.0,10.0,22,1.17 +16725,89.0,9.0,9.0,10.0,10.0,10.0,9.0,34,2.02 +21122,98.0,10.0,10.0,10.0,10.0,9.0,9.0,11,0.55 +29229,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.55 +65174,100.0,10.0,8.0,10.0,10.0,6.0,,2,0.1 +26656,,,,,,,,0, +14853,92.0,10.0,10.0,10.0,10.0,10.0,9.0,13,0.66 +50375,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.17 +21202,,,,,,,,0, +40469,97.0,10.0,9.0,10.0,10.0,9.0,10.0,8,0.43 +69748,100.0,10.0,8.0,10.0,10.0,10.0,10.0,6,0.36 +15098,100.0,10.0,10.0,10.0,10.0,9.0,10.0,13,0.65 +56393,93.0,10.0,9.0,9.0,10.0,9.0,9.0,93,4.52 +1643,98.0,10.0,10.0,10.0,10.0,10.0,10.0,26,1.36 +69304,97.0,10.0,10.0,10.0,10.0,9.0,9.0,14,0.81 +53704,98.0,10.0,10.0,10.0,10.0,10.0,10.0,30,1.46 +62989,96.0,10.0,10.0,10.0,10.0,10.0,10.0,65,3.62 +9870,70.0,6.0,5.0,9.0,10.0,10.0,6.0,2,0.1 +41306,,,,,,,,0, +19502,98.0,10.0,9.0,10.0,10.0,10.0,10.0,11,0.59 +690,94.0,10.0,8.0,9.0,9.0,10.0,10.0,11,0.54 +30784,85.0,9.0,9.0,9.0,10.0,9.0,9.0,15,0.75 +23468,,,,,,,,0, +30612,97.0,10.0,10.0,10.0,10.0,10.0,10.0,63,3.28 +39615,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.15 +60635,85.0,10.0,9.0,10.0,10.0,10.0,10.0,13,0.65 +63809,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.4 +56490,86.0,9.0,10.0,9.0,9.0,9.0,9.0,34,1.67 +30031,90.0,9.0,10.0,10.0,9.0,9.0,9.0,18,0.88 +70062,,,,,,,,0, +76863,80.0,9.0,9.0,10.0,10.0,10.0,9.0,3,0.15 +66538,91.0,9.0,9.0,10.0,10.0,9.0,9.0,32,1.6 +31060,99.0,10.0,10.0,10.0,10.0,10.0,10.0,32,1.59 +21967,,,,,,,,0, +67444,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.35 +35377,,,,,,,,0, +4367,98.0,10.0,9.0,10.0,10.0,10.0,10.0,10,0.7 +61484,86.0,9.0,9.0,10.0,10.0,9.0,9.0,54,2.65 +9869,93.0,10.0,9.0,10.0,10.0,8.0,10.0,98,4.79 +68777,90.0,9.0,9.0,10.0,10.0,10.0,10.0,4,0.2 +59700,96.0,10.0,10.0,10.0,10.0,10.0,9.0,19,1.03 +29476,,,,,,,,0, +39540,,,,,,,,0, +7891,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.12 +24965,100.0,10.0,8.0,8.0,8.0,10.0,8.0,2,0.1 +20375,90.0,9.0,9.0,9.0,9.0,9.0,9.0,2,0.13 +44404,85.0,9.0,8.0,9.0,9.0,9.0,9.0,59,2.92 +47989,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.66 +30138,100.0,10.0,10.0,10.0,10.0,10.0,9.0,9,0.47 +60935,100.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.22 +36878,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.29 +706,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +26626,96.0,10.0,9.0,10.0,10.0,10.0,9.0,18,0.89 +9965,97.0,10.0,10.0,10.0,10.0,10.0,9.0,7,0.34 +23070,93.0,10.0,9.0,10.0,10.0,10.0,10.0,3,2.65 +30809,96.0,10.0,10.0,10.0,10.0,10.0,9.0,11,0.55 +10141,97.0,10.0,10.0,10.0,10.0,10.0,10.0,69,3.4 +73574,,,,,,,,0, +19196,85.0,10.0,10.0,10.0,9.0,8.0,9.0,11,0.64 +62822,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.26 +31942,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.05 +64915,53.0,6.0,5.0,5.0,5.0,7.0,6.0,4,0.23 +50307,90.0,9.0,9.0,10.0,10.0,10.0,9.0,28,1.39 +23363,87.0,9.0,9.0,8.0,9.0,10.0,9.0,6,0.45 +5853,88.0,9.0,10.0,8.0,9.0,10.0,10.0,6,0.3 +25738,,,,,,,,0, +23548,98.0,9.0,10.0,10.0,10.0,10.0,10.0,8,0.46 +3314,,,,,,,,0, +73665,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.45 +38865,89.0,9.0,8.0,10.0,10.0,10.0,10.0,11,0.55 +3135,81.0,9.0,9.0,10.0,9.0,9.0,8.0,37,1.99 +62228,94.0,10.0,10.0,10.0,10.0,9.0,9.0,14,0.68 +48288,98.0,10.0,10.0,10.0,10.0,10.0,10.0,25,1.24 +7496,97.0,10.0,9.0,10.0,10.0,10.0,10.0,33,1.67 +30287,,,,,,,,0, +68799,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +15645,80.0,10.0,7.0,10.0,10.0,10.0,9.0,3,0.15 +3346,,,,,,,,0, +22585,95.0,10.0,10.0,10.0,10.0,9.0,10.0,17,0.85 +33445,99.0,10.0,10.0,10.0,10.0,10.0,10.0,43,2.11 +52218,,,,,,,,0, +25869,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.2 +42146,90.0,10.0,9.0,10.0,9.0,10.0,9.0,13,0.7 +73852,89.0,9.0,10.0,10.0,10.0,10.0,9.0,20,1.0 +59590,100.0,10.0,10.0,10.0,10.0,10.0,10.0,43,2.09 +50558,86.0,9.0,8.0,9.0,10.0,10.0,8.0,19,1.03 +54932,100.0,10.0,10.0,10.0,10.0,6.0,10.0,1,0.06 +19675,94.0,10.0,10.0,10.0,10.0,9.0,9.0,52,2.91 +6658,99.0,10.0,10.0,10.0,10.0,10.0,10.0,20,1.01 +17409,90.0,10.0,10.0,10.0,10.0,9.0,9.0,4,0.2 +8173,97.0,10.0,10.0,8.0,9.0,10.0,9.0,12,0.6 +49682,,,,,,,,0, +27431,75.0,9.0,7.0,10.0,9.0,9.0,9.0,4,0.21 +36933,75.0,8.0,8.0,10.0,8.0,10.0,8.0,4,0.71 +64032,92.0,9.0,9.0,10.0,10.0,9.0,9.0,103,5.35 +73910,87.0,9.0,9.0,10.0,10.0,10.0,9.0,3,0.15 +57631,,,,,,,,0, +28192,,,,,,,,0, +67186,,,,,,,,0, +37502,99.0,10.0,10.0,10.0,10.0,9.0,10.0,23,1.14 +59458,,,,,,,,0, +25900,,,,,,,,1,0.05 +8156,,,,,,,,0, +49455,90.0,9.0,6.0,10.0,10.0,9.0,9.0,5,0.25 +49623,95.0,9.0,10.0,10.0,10.0,9.0,9.0,26,1.59 +9226,100.0,10.0,8.0,10.0,8.0,10.0,10.0,2,0.1 +25288,97.0,10.0,10.0,10.0,10.0,10.0,9.0,77,3.81 +3895,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.4 +10431,80.0,10.0,10.0,,8.0,,,4,0.19 +34288,,,,,,,,0, +49866,95.0,10.0,9.0,10.0,10.0,10.0,9.0,40,2.0 +54187,97.0,10.0,10.0,10.0,10.0,10.0,10.0,22,1.26 +738,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.16 +32419,,,,,,,,0, +8474,,,,,,,,0, +3813,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.1 +44598,,,,,,,,0, +56263,99.0,10.0,10.0,10.0,10.0,10.0,9.0,36,1.78 +57269,96.0,10.0,9.0,10.0,10.0,9.0,10.0,20,1.24 +48779,96.0,10.0,10.0,10.0,10.0,9.0,9.0,45,2.22 +53331,85.0,9.0,9.0,10.0,9.0,10.0,9.0,23,1.11 +20276,98.0,10.0,10.0,10.0,10.0,10.0,10.0,148,7.28 +44696,99.0,10.0,10.0,10.0,10.0,10.0,10.0,31,1.67 +19458,93.0,9.0,9.0,10.0,10.0,9.0,9.0,6,0.3 +75509,90.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.2 +7677,90.0,9.0,9.0,10.0,9.0,10.0,9.0,12,0.62 +47042,80.0,10.0,10.0,6.0,6.0,10.0,8.0,1,0.06 +43891,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.1 +10334,93.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.19 +60841,90.0,9.0,9.0,10.0,10.0,10.0,9.0,14,0.75 +14910,99.0,10.0,10.0,10.0,10.0,10.0,10.0,54,2.83 +34264,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +53432,90.0,9.0,9.0,10.0,10.0,9.0,9.0,2,0.1 +15,91.0,9.0,9.0,10.0,10.0,10.0,9.0,91,4.53 +26166,97.0,10.0,10.0,10.0,10.0,9.0,10.0,14,0.77 +67896,,,,,,,,0, +12005,90.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.29 +39061,90.0,9.0,10.0,9.0,10.0,10.0,9.0,4,0.21 +59961,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.15 +53560,92.0,9.0,10.0,10.0,10.0,9.0,9.0,17,0.93 +14559,80.0,8.0,8.0,9.0,9.0,8.0,9.0,3,0.15 +10162,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.17 +41882,,,,,,,,0, +58856,98.0,10.0,10.0,10.0,10.0,10.0,10.0,73,3.58 +11516,93.0,10.0,10.0,10.0,10.0,10.0,10.0,59,2.91 +28419,100.0,10.0,8.0,10.0,10.0,10.0,10.0,3,0.15 +76374,90.0,8.0,9.0,9.0,9.0,9.0,9.0,3,0.17 +34503,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.53 +11693,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +18717,88.0,10.0,8.0,10.0,10.0,10.0,9.0,5,0.25 +19169,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +76395,92.0,10.0,10.0,9.0,9.0,10.0,9.0,57,2.85 +55963,90.0,9.0,9.0,10.0,10.0,9.0,9.0,7,0.35 +19133,97.0,10.0,10.0,10.0,10.0,10.0,10.0,38,1.92 +44507,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.21 +36735,99.0,10.0,10.0,10.0,10.0,10.0,10.0,110,5.59 +43303,98.0,10.0,10.0,10.0,10.0,9.0,10.0,19,0.97 +67226,87.0,8.0,9.0,9.0,9.0,10.0,9.0,11,0.55 +11102,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.61 +68373,,,,,,,,0, +61893,98.0,10.0,10.0,10.0,10.0,9.0,9.0,9,0.46 +19338,89.0,9.0,9.0,10.0,10.0,9.0,9.0,9,0.44 +1136,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.16 +67794,98.0,10.0,10.0,10.0,10.0,9.0,10.0,12,0.59 +64778,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.11 +44642,,,,,,,,0, +38674,89.0,9.0,9.0,9.0,9.0,9.0,9.0,30,1.49 +66689,80.0,6.0,8.0,6.0,6.0,10.0,5.0,2,0.11 +24518,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.24 +48939,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.23 +72133,90.0,9.0,10.0,10.0,9.0,9.0,9.0,8,0.44 +21283,90.0,10.0,9.0,10.0,10.0,10.0,9.0,49,2.41 +45923,60.0,6.0,7.0,8.0,7.0,7.0,7.0,3,0.18 +28538,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.73 +41666,99.0,10.0,10.0,10.0,10.0,10.0,10.0,30,1.49 +76703,98.0,10.0,10.0,10.0,10.0,9.0,9.0,14,0.68 +66236,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.25 +29274,97.0,10.0,10.0,10.0,10.0,9.0,9.0,20,1.02 +58256,90.0,8.0,7.0,6.0,6.0,8.0,8.0,2,0.1 +18256,100.0,10.0,10.0,10.0,10.0,10.0,10.0,47,2.32 +71402,92.0,10.0,8.0,10.0,10.0,10.0,9.0,6,0.33 +5390,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.65 +24291,100.0,10.0,10.0,10.0,9.0,10.0,9.0,4,0.2 +35342,100.0,10.0,10.0,,,,,1,0.05 +38851,90.0,9.0,10.0,9.0,10.0,9.0,9.0,24,1.19 +16819,88.0,9.0,9.0,9.0,9.0,10.0,9.0,55,2.79 +35616,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.12 +26878,96.0,10.0,9.0,9.0,10.0,10.0,9.0,15,0.86 +21532,100.0,8.0,8.0,8.0,8.0,8.0,8.0,1,0.06 +37644,90.0,10.0,10.0,10.0,9.0,9.0,10.0,2,0.1 +28570,97.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.81 +73221,100.0,10.0,10.0,10.0,10.0,10.0,10.0,21,1.05 +75907,96.0,10.0,10.0,10.0,10.0,10.0,10.0,33,1.64 +6841,99.0,10.0,10.0,10.0,10.0,10.0,10.0,28,1.47 +43753,,,,,,,,0, +12089,95.0,10.0,9.0,10.0,10.0,9.0,10.0,22,1.08 +10906,80.0,9.0,8.0,9.0,10.0,10.0,10.0,4,0.23 +22488,83.0,9.0,8.0,10.0,9.0,8.0,8.0,8,0.4 +32612,93.0,10.0,9.0,10.0,10.0,10.0,9.0,90,4.43 +4317,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.15 +33796,95.0,10.0,9.0,10.0,10.0,9.0,10.0,30,1.72 +22988,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.42 +4264,100.0,10.0,9.0,9.0,10.0,10.0,10.0,6,0.3 +69930,97.0,10.0,9.0,10.0,10.0,8.0,10.0,30,1.54 +19239,89.0,9.0,10.0,10.0,10.0,9.0,9.0,39,1.99 +27228,96.0,10.0,10.0,9.0,10.0,10.0,10.0,10,0.52 +836,,,,,,,,0, +55587,,,,,,,,0, +69078,98.0,10.0,10.0,10.0,10.0,10.0,10.0,25,1.24 +35785,60.0,6.0,10.0,4.0,2.0,8.0,8.0,1,0.05 +73402,,,,,,,,0, +25946,92.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.25 +23201,93.0,10.0,9.0,10.0,10.0,9.0,9.0,3,0.16 +52922,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.15 +11388,,,,,,,,0, +35865,50.0,5.0,4.0,8.0,8.0,8.0,6.0,4,0.2 +14650,80.0,9.0,10.0,10.0,9.0,10.0,10.0,4,0.2 +21376,97.0,10.0,9.0,10.0,10.0,9.0,10.0,36,1.81 +54846,93.0,10.0,9.0,10.0,10.0,10.0,9.0,30,1.48 +75056,85.0,9.0,9.0,9.0,10.0,9.0,8.0,19,1.0 +8913,88.0,9.0,9.0,9.0,9.0,8.0,8.0,31,1.62 +46006,91.0,10.0,10.0,10.0,9.0,10.0,9.0,81,4.08 +62612,100.0,10.0,9.0,10.0,10.0,9.0,9.0,4,0.32 +75301,,,,,,,,0, +46487,80.0,8.0,7.0,9.0,9.0,8.0,9.0,5,0.41 +65672,80.0,8.0,10.0,9.0,10.0,9.0,8.0,4,0.2 +54466,89.0,9.0,9.0,9.0,9.0,10.0,9.0,19,0.96 +44756,,,,,,,,0, +15552,92.0,9.0,8.0,7.0,9.0,10.0,8.0,5,0.64 +257,,,,,,,,0, +40775,90.0,9.0,8.0,9.0,9.0,9.0,9.0,29,1.44 +63416,100.0,10.0,7.0,8.0,7.0,9.0,10.0,3,0.15 +3451,80.0,9.0,9.0,10.0,9.0,10.0,9.0,3,0.15 +47966,,,,,,,,0, +66566,,,,,,,,0, +64225,82.0,9.0,8.0,9.0,9.0,9.0,8.0,53,2.61 +8435,99.0,10.0,9.0,10.0,10.0,9.0,10.0,23,1.2 +33590,94.0,10.0,10.0,10.0,10.0,10.0,9.0,104,5.25 +33757,,,,,,,,0, +67676,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.26 +21629,,,,,,,,0, +36237,98.0,10.0,10.0,10.0,10.0,10.0,9.0,11,0.58 +50757,,,,,,,,0, +2835,100.0,10.0,10.0,10.0,9.0,9.0,10.0,17,0.92 +7633,94.0,10.0,9.0,9.0,10.0,10.0,9.0,24,1.23 +33563,90.0,9.0,9.0,9.0,9.0,10.0,9.0,24,1.29 +21789,93.0,10.0,9.0,10.0,10.0,10.0,9.0,12,0.7 +29693,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.09 +36505,,,,,,,,0, +22659,93.0,10.0,10.0,10.0,10.0,9.0,9.0,8,0.45 +72044,80.0,10.0,8.0,10.0,6.0,10.0,10.0,1,0.06 +60157,,,,,,,,0, +14117,98.0,10.0,10.0,10.0,10.0,9.0,10.0,69,3.42 +71874,89.0,9.0,9.0,10.0,10.0,10.0,9.0,81,4.08 +69559,97.0,10.0,10.0,10.0,10.0,10.0,10.0,42,2.3 +74327,,,,,,,,0, +21716,80.0,8.0,7.0,10.0,10.0,10.0,8.0,6,0.34 +58321,90.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.16 +13579,84.0,9.0,9.0,10.0,10.0,10.0,9.0,16,0.87 +3480,98.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.92 +68309,91.0,10.0,9.0,10.0,10.0,10.0,9.0,37,1.91 +4180,92.0,9.0,8.0,10.0,10.0,10.0,10.0,6,0.29 +75143,90.0,9.0,9.0,10.0,10.0,10.0,9.0,4,0.23 +63350,,,,,,,,0, +73277,,,,,,,,7,0.34 +30071,97.0,10.0,10.0,10.0,10.0,10.0,10.0,21,1.15 +8084,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.25 +35304,84.0,8.0,9.0,9.0,10.0,9.0,8.0,10,0.51 +53593,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.91 +17884,80.0,9.0,8.0,8.0,10.0,9.0,8.0,3,0.15 +40275,91.0,10.0,10.0,10.0,9.0,9.0,9.0,51,2.54 +27236,98.0,10.0,10.0,9.0,10.0,10.0,10.0,10,0.51 +71001,80.0,9.0,9.0,9.0,8.0,9.0,9.0,7,0.36 +17795,98.0,10.0,10.0,10.0,10.0,9.0,10.0,13,0.87 +47834,,,,,,,,0, +22954,97.0,10.0,10.0,10.0,10.0,10.0,9.0,23,1.18 +63898,94.0,10.0,8.0,10.0,10.0,10.0,10.0,10,0.49 +23309,92.0,9.0,9.0,9.0,10.0,10.0,9.0,21,1.05 +31356,97.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.6 +73523,,,,,,,,0, +36714,98.0,10.0,10.0,10.0,10.0,10.0,10.0,40,1.99 +1202,,,,,,,,0, +34135,80.0,8.0,8.0,10.0,10.0,10.0,8.0,2,0.16 +19725,,,,,,,,0, +23520,,,,,,,,0, +47716,,,,,,,,0, +43624,99.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.82 +32817,87.0,9.0,7.0,8.0,9.0,9.0,9.0,6,0.59 +66523,80.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.06 +2562,99.0,10.0,10.0,10.0,10.0,10.0,10.0,27,1.38 +10156,,,,,,,,0, +39810,100.0,10.0,9.0,10.0,10.0,10.0,10.0,10,0.51 +49613,84.0,9.0,8.0,10.0,9.0,9.0,8.0,21,1.04 +60702,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.6 +32783,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +4235,90.0,9.0,10.0,10.0,10.0,10.0,8.0,2,0.14 +42824,89.0,9.0,10.0,8.0,10.0,10.0,9.0,25,1.57 +46402,99.0,10.0,10.0,10.0,10.0,10.0,10.0,29,1.63 +14347,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.37 +48452,97.0,10.0,10.0,10.0,10.0,9.0,9.0,18,0.98 +65061,93.0,9.0,9.0,8.0,8.0,9.0,7.0,3,0.17 +20239,,,,,,,,0, +40714,,,,,,,,0, +52192,90.0,9.0,9.0,9.0,10.0,10.0,8.0,2,0.13 +22591,,,,,,,,0, +63328,92.0,9.0,9.0,10.0,10.0,10.0,9.0,30,1.58 +24411,80.0,10.0,6.0,10.0,10.0,10.0,10.0,3,0.15 +4712,100.0,9.0,10.0,10.0,10.0,10.0,8.0,5,0.29 +40197,,,,,,,,0, +66952,,,,,,,,0, +10512,96.0,10.0,9.0,10.0,10.0,10.0,9.0,5,0.25 +14571,99.0,10.0,10.0,10.0,10.0,9.0,10.0,24,1.22 +64274,,,,,,,,0, +32181,98.0,10.0,10.0,10.0,10.0,9.0,10.0,56,2.77 +37136,,,,,,,,0, +2105,,,,,,,,0, +54023,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.3 +52500,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.49 +69177,,,,,,,,0, +14607,100.0,9.0,10.0,10.0,10.0,10.0,9.0,5,0.39 +41570,87.0,9.0,9.0,10.0,9.0,10.0,9.0,63,3.14 +34325,96.0,10.0,10.0,9.0,10.0,10.0,10.0,17,0.89 +33631,94.0,10.0,10.0,10.0,10.0,10.0,10.0,29,3.41 +20108,100.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.23 +51690,93.0,10.0,10.0,10.0,10.0,10.0,9.0,17,0.85 +48021,,,,,,,,0, +66562,93.0,9.0,9.0,9.0,10.0,9.0,10.0,5,0.24 +11432,93.0,9.0,9.0,9.0,10.0,10.0,9.0,3,0.15 +24998,84.0,8.0,9.0,9.0,8.0,9.0,8.0,27,1.32 +11345,80.0,9.0,9.0,8.0,9.0,9.0,9.0,7,0.36 +57624,98.0,10.0,10.0,10.0,10.0,9.0,10.0,101,5.32 +57452,93.0,10.0,9.0,10.0,10.0,9.0,9.0,6,0.94 +61380,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.3 +46342,95.0,10.0,10.0,10.0,10.0,9.0,10.0,29,1.52 +72177,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +5787,,,,,,,,0, +73609,,,,,,,,0, +4191,96.0,10.0,10.0,10.0,10.0,10.0,9.0,81,4.04 +4208,100.0,10.0,10.0,10.0,8.0,9.0,10.0,2,0.11 +47047,94.0,10.0,9.0,10.0,10.0,9.0,10.0,42,2.12 +46004,100.0,10.0,10.0,9.0,9.0,9.0,9.0,2,0.12 +56382,,,,,,,,0, +51706,90.0,10.0,9.0,10.0,9.0,10.0,9.0,17,0.97 +70560,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.69 +71658,98.0,10.0,10.0,10.0,10.0,10.0,9.0,26,1.3 +65426,99.0,10.0,10.0,10.0,10.0,10.0,10.0,21,1.07 +72729,95.0,10.0,10.0,10.0,10.0,9.0,9.0,60,2.12 +9777,98.0,10.0,10.0,10.0,10.0,9.0,10.0,37,1.84 +8869,100.0,9.0,10.0,9.0,10.0,10.0,8.0,3,0.22 +35056,91.0,9.0,9.0,10.0,10.0,9.0,9.0,114,5.73 +19112,95.0,9.0,9.0,10.0,10.0,9.0,9.0,39,1.99 +3723,88.0,10.0,8.0,10.0,10.0,10.0,10.0,6,0.37 +10292,91.0,9.0,10.0,9.0,9.0,10.0,9.0,33,1.63 +75264,97.0,10.0,10.0,10.0,10.0,10.0,9.0,16,0.79 +73555,100.0,10.0,6.0,10.0,10.0,10.0,8.0,2,0.12 +19618,,,,,,,,0, +76646,91.0,9.0,10.0,9.0,10.0,10.0,9.0,42,2.14 +30600,,,,,,,,0, +49177,84.0,8.0,10.0,8.0,8.0,10.0,8.0,5,0.27 +46774,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +3830,,,,,,,,0, +70163,84.0,9.0,9.0,9.0,9.0,9.0,9.0,15,0.74 +60072,80.0,9.0,7.0,10.0,10.0,8.0,8.0,4,0.2 +65425,,,,,,,,0, +17453,91.0,9.0,9.0,9.0,10.0,10.0,9.0,38,1.99 +25099,93.0,9.0,9.0,9.0,9.0,9.0,9.0,35,2.16 +71237,99.0,10.0,10.0,10.0,10.0,10.0,10.0,70,3.69 +76841,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.07 +44769,,,,,,,,2, +71487,,,,,,,,0, +4710,72.0,8.0,7.0,10.0,10.0,7.0,8.0,5,0.27 +61534,90.0,10.0,9.0,10.0,8.0,10.0,9.0,2,0.12 +66798,97.0,9.0,7.0,9.0,10.0,10.0,9.0,7,0.38 +8283,98.0,10.0,10.0,10.0,10.0,10.0,10.0,41,2.12 +33793,89.0,9.0,9.0,10.0,10.0,10.0,9.0,20,1.05 +32860,97.0,10.0,10.0,10.0,10.0,9.0,10.0,33,1.68 +6608,,,,,,,,0, +66501,97.0,10.0,9.0,10.0,10.0,9.0,9.0,16,0.81 +2956,,,,,,,,0, +15164,90.0,10.0,8.0,9.0,10.0,9.0,9.0,5,0.34 +377,98.0,10.0,10.0,10.0,10.0,10.0,10.0,22,1.32 +64819,99.0,10.0,10.0,10.0,10.0,10.0,10.0,32,1.58 +19314,98.0,10.0,10.0,10.0,10.0,9.0,10.0,26,1.3 +52429,98.0,10.0,10.0,10.0,10.0,10.0,10.0,29,1.54 +68147,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.21 +21020,88.0,10.0,8.0,10.0,10.0,10.0,9.0,10,0.56 +9318,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.39 +60752,100.0,10.0,10.0,10.0,10.0,6.0,10.0,1,0.07 +58250,97.0,10.0,10.0,10.0,10.0,9.0,9.0,30,1.54 +32093,100.0,10.0,10.0,9.0,10.0,9.0,10.0,3,0.15 +2240,74.0,8.0,8.0,9.0,9.0,9.0,7.0,29,1.44 +48109,99.0,10.0,10.0,10.0,10.0,9.0,9.0,43,2.1 +53143,93.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.2 +27814,100.0,10.0,10.0,10.0,10.0,9.0,10.0,6,1.25 +17082,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.25 +9470,97.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.71 +58825,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.45 +37809,98.0,10.0,10.0,10.0,10.0,10.0,10.0,74,3.72 +51443,96.0,10.0,9.0,9.0,10.0,10.0,10.0,6,0.32 +123,91.0,9.0,9.0,9.0,9.0,10.0,9.0,25,1.27 +56038,97.0,10.0,10.0,10.0,10.0,10.0,10.0,31,1.59 +19557,,,,,,,,0, +22813,,,,,,,,0, +37784,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.2 +49852,100.0,8.0,10.0,10.0,10.0,10.0,10.0,2,0.12 +53007,86.0,9.0,10.0,10.0,10.0,9.0,9.0,22,1.09 +46481,87.0,9.0,8.0,9.0,9.0,9.0,9.0,34,1.69 +58287,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +62270,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.27 +58069,80.0,9.0,9.0,9.0,10.0,10.0,8.0,3,0.15 +63801,92.0,9.0,9.0,9.0,9.0,10.0,9.0,28,1.43 +45702,98.0,10.0,9.0,10.0,10.0,10.0,10.0,9,0.46 +61529,93.0,10.0,9.0,10.0,10.0,10.0,10.0,23,1.52 +7453,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.25 +5140,93.0,10.0,9.0,10.0,10.0,9.0,9.0,24,1.19 +39123,,,,,,,,0, +30589,100.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.21 +68266,100.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.22 +3546,98.0,10.0,10.0,10.0,10.0,10.0,9.0,11,0.55 +22187,93.0,9.0,9.0,10.0,10.0,9.0,8.0,9,0.45 +76035,,,,,,,,0, +53021,100.0,10.0,10.0,10.0,10.0,10.0,10.0,42,2.12 +33427,98.0,10.0,9.0,10.0,10.0,9.0,10.0,22,1.1 +23350,,,,,,,,0, +57240,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +55880,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.14 +36124,88.0,9.0,8.0,10.0,10.0,10.0,9.0,7,0.35 +14860,100.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.86 +5850,87.0,9.0,9.0,10.0,10.0,9.0,9.0,39,2.0 +10211,80.0,9.0,8.0,9.0,9.0,9.0,9.0,25,1.27 +64590,100.0,10.0,10.0,10.0,10.0,10.0,10.0,94,4.68 +12837,86.0,9.0,9.0,9.0,9.0,9.0,9.0,14,0.7 +22634,,,,,,,,1,0.05 +46495,98.0,10.0,10.0,10.0,10.0,10.0,10.0,38,2.02 +43879,98.0,10.0,10.0,10.0,10.0,9.0,10.0,37,1.9 +12701,,,,,,,,0, +65663,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +10748,80.0,7.0,7.0,10.0,7.0,9.0,9.0,4,0.2 +12140,90.0,9.0,9.0,9.0,10.0,9.0,9.0,107,5.49 +22724,97.0,10.0,10.0,10.0,10.0,10.0,9.0,27,1.38 +36705,,,,,,,,0, +9000,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.24 +15793,99.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.88 +68760,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.18 +37434,,,,,,,,0, +73347,99.0,10.0,10.0,10.0,10.0,9.0,10.0,61,3.04 +23627,,,,,,,,1,0.06 +7621,97.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.91 +66983,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.09 +62111,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.6 +29083,86.0,10.0,8.0,10.0,10.0,10.0,9.0,7,0.73 +55299,79.0,8.0,9.0,9.0,9.0,10.0,8.0,27,1.45 +16721,84.0,9.0,9.0,10.0,9.0,10.0,8.0,14,0.76 +30073,88.0,9.0,10.0,10.0,10.0,10.0,9.0,5,0.49 +21894,84.0,9.0,9.0,9.0,10.0,10.0,9.0,27,1.43 +57663,100.0,10.0,10.0,10.0,10.0,10.0,10.0,23,1.16 +50724,,,,,,,,0, +44912,100.0,10.0,9.0,10.0,10.0,9.0,10.0,5,0.25 +28650,96.0,10.0,10.0,10.0,10.0,10.0,10.0,52,2.57 +22286,84.0,9.0,9.0,9.0,9.0,10.0,9.0,5,0.26 +55135,74.0,8.0,6.0,8.0,9.0,10.0,7.0,7,0.39 +52738,87.0,9.0,9.0,9.0,10.0,10.0,9.0,6,0.52 +70358,77.0,9.0,9.0,9.0,9.0,10.0,8.0,23,1.26 +4692,60.0,8.0,6.0,10.0,10.0,10.0,8.0,1,0.07 +48405,99.0,10.0,10.0,10.0,10.0,10.0,10.0,49,2.4 +61714,97.0,10.0,10.0,10.0,10.0,9.0,9.0,6,0.4 +37111,95.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.21 +63155,83.0,9.0,8.0,10.0,10.0,9.0,9.0,7,0.37 +11279,90.0,8.0,10.0,10.0,9.0,10.0,10.0,4,0.2 +52593,90.0,8.0,8.0,10.0,10.0,10.0,9.0,2,0.11 +43434,80.0,5.0,7.0,9.0,8.0,8.0,7.0,2,0.14 +39598,,,,,,,,0, +75523,,,,,,,,0, +27274,88.0,9.0,10.0,10.0,10.0,9.0,8.0,5,0.26 +16473,93.0,9.0,9.0,9.0,9.0,10.0,8.0,3,0.17 +69326,80.0,8.0,9.0,10.0,9.0,10.0,8.0,6,0.38 +4999,98.0,10.0,10.0,10.0,10.0,10.0,10.0,58,2.84 +56178,80.0,8.0,9.0,9.0,10.0,10.0,8.0,9,0.55 +57418,87.0,10.0,9.0,8.0,9.0,9.0,9.0,3,0.17 +15849,85.0,9.0,9.0,9.0,8.0,9.0,8.0,23,1.17 +39121,86.0,9.0,8.0,9.0,9.0,10.0,9.0,13,0.65 +19462,,,,,,,,1,0.07 +18268,96.0,10.0,10.0,10.0,10.0,10.0,9.0,25,1.26 +56292,89.0,9.0,10.0,9.0,10.0,9.0,8.0,14,0.77 +52858,95.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.25 +19424,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +74147,88.0,9.0,9.0,9.0,10.0,9.0,8.0,8,0.44 +38624,97.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.41 +27947,91.0,9.0,10.0,10.0,10.0,9.0,9.0,20,1.36 +8906,,,,,,,,1,0.12 +10203,97.0,10.0,10.0,10.0,10.0,9.0,10.0,137,6.95 +45267,97.0,10.0,10.0,10.0,10.0,10.0,10.0,18,1.05 +33853,92.0,9.0,9.0,9.0,10.0,9.0,9.0,59,2.91 +50225,90.0,10.0,8.0,10.0,10.0,10.0,10.0,5,0.26 +70664,86.0,9.0,9.0,9.0,9.0,9.0,8.0,7,0.35 +18750,90.0,9.0,9.0,10.0,10.0,9.0,9.0,4,0.21 +41939,96.0,10.0,9.0,10.0,10.0,9.0,9.0,19,1.02 +12346,97.0,10.0,10.0,10.0,10.0,10.0,10.0,32,1.68 +19467,95.0,10.0,9.0,10.0,10.0,10.0,9.0,12,0.76 +3446,94.0,10.0,9.0,9.0,9.0,10.0,9.0,38,1.99 +61865,91.0,9.0,9.0,10.0,10.0,10.0,9.0,35,1.72 +40885,95.0,10.0,9.0,10.0,10.0,10.0,10.0,14,0.7 +61178,,,,,,,,0, +20914,95.0,10.0,10.0,10.0,10.0,10.0,9.0,39,1.91 +1641,,,,,,,,0, +59401,,,,,,,,1,0.05 +8539,,,,,,,,0, +52782,91.0,9.0,10.0,10.0,10.0,10.0,9.0,36,1.82 +37571,90.0,9.0,9.0,9.0,10.0,10.0,10.0,2,0.11 +42840,89.0,9.0,9.0,10.0,10.0,10.0,9.0,41,2.11 +20479,95.0,9.0,9.0,10.0,10.0,9.0,9.0,22,1.1 +70685,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.55 +71657,92.0,9.0,9.0,9.0,10.0,9.0,9.0,29,1.48 +30253,99.0,10.0,10.0,10.0,10.0,10.0,10.0,77,3.85 +46371,80.0,8.0,8.0,10.0,10.0,10.0,8.0,1,0.05 +38768,93.0,10.0,10.0,10.0,9.0,10.0,9.0,6,0.34 +73279,,,,,,,,0, +5314,93.0,10.0,10.0,10.0,10.0,10.0,9.0,20,1.06 +23224,,,,,,,,0, +22745,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.17 +59583,88.0,9.0,8.0,10.0,9.0,8.0,9.0,6,0.3 +66804,96.0,10.0,9.0,9.0,10.0,9.0,10.0,27,1.41 +12541,94.0,10.0,9.0,10.0,10.0,9.0,10.0,33,1.68 +46691,,,,,,,,0, +53097,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.23 +50113,96.0,10.0,9.0,10.0,10.0,10.0,9.0,23,1.16 +14669,,,,,,,,0, +18330,97.0,10.0,10.0,10.0,10.0,9.0,10.0,30,1.53 +68452,,,,,,,,0, +41162,91.0,9.0,9.0,10.0,10.0,10.0,9.0,43,2.15 +49889,80.0,8.0,8.0,8.0,8.0,9.0,9.0,16,0.8 +5586,,,,,,,,0, +12631,100.0,10.0,10.0,10.0,10.0,9.0,10.0,15,0.77 +70250,90.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.11 +36461,95.0,9.0,9.0,10.0,10.0,10.0,10.0,30,1.63 +14840,53.0,10.0,10.0,10.0,7.0,8.0,8.0,3,0.2 +46607,90.0,9.0,9.0,9.0,9.0,10.0,8.0,2,0.14 +40567,85.0,9.0,8.0,9.0,9.0,10.0,9.0,4,0.21 +14775,,,,,,,,0, +54505,90.0,10.0,9.0,10.0,10.0,10.0,10.0,7,0.39 +2623,80.0,8.0,8.0,9.0,8.0,9.0,8.0,7,0.36 +61069,100.0,10.0,10.0,10.0,10.0,10.0,10.0,118,5.9 +31794,84.0,9.0,10.0,10.0,10.0,10.0,8.0,5,0.32 +76804,92.0,10.0,9.0,10.0,10.0,10.0,9.0,10,0.53 +28037,96.0,10.0,10.0,10.0,10.0,9.0,10.0,15,0.75 +24128,84.0,9.0,9.0,9.0,9.0,9.0,9.0,31,1.55 +29118,,,,,,,,0, +75922,100.0,10.0,10.0,,,,,1,0.06 +42189,93.0,10.0,9.0,9.0,8.0,10.0,9.0,6,0.31 +18384,100.0,10.0,10.0,10.0,10.0,10.0,10.0,52,2.58 +58863,91.0,8.0,9.0,8.0,9.0,9.0,8.0,8,0.41 +22523,85.0,9.0,9.0,9.0,9.0,10.0,9.0,11,0.62 +26477,80.0,9.0,9.0,7.0,8.0,9.0,7.0,3,0.16 +62074,89.0,8.0,9.0,9.0,10.0,10.0,9.0,9,0.47 +37791,91.0,9.0,9.0,9.0,9.0,10.0,9.0,52,2.74 +48423,95.0,9.0,10.0,9.0,10.0,8.0,9.0,28,1.52 +24382,96.0,10.0,9.0,9.0,9.0,8.0,9.0,6,0.31 +49614,98.0,10.0,10.0,10.0,10.0,10.0,10.0,27,1.41 +23536,80.0,8.0,9.0,10.0,10.0,10.0,8.0,2,0.1 +59758,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.11 +38958,83.0,9.0,8.0,9.0,10.0,10.0,8.0,12,0.64 +40709,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.11 +33177,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.2 +74621,90.0,10.0,8.0,10.0,10.0,10.0,10.0,3,0.15 +21933,,,,,,,,0, +43996,80.0,4.0,10.0,8.0,8.0,8.0,6.0,1,0.06 +23677,100.0,9.0,10.0,6.0,10.0,8.0,8.0,2,0.12 +22041,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.26 +38700,80.0,8.0,8.0,10.0,8.0,10.0,8.0,1,0.05 +38145,94.0,9.0,9.0,10.0,10.0,9.0,9.0,16,0.83 +26052,93.0,10.0,10.0,10.0,10.0,9.0,9.0,6,0.33 +56537,95.0,10.0,10.0,9.0,9.0,9.0,9.0,21,1.12 +37771,85.0,9.0,9.0,9.0,9.0,9.0,9.0,15,0.77 +58787,98.0,10.0,10.0,10.0,10.0,10.0,10.0,37,1.95 +69489,98.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.56 +6239,97.0,10.0,10.0,10.0,10.0,10.0,10.0,35,1.96 +21080,,,,,,,,0, +59817,92.0,9.0,10.0,10.0,10.0,10.0,9.0,28,1.41 +47375,80.0,8.0,8.0,7.0,8.0,8.0,8.0,5,0.26 +47566,88.0,9.0,9.0,10.0,9.0,9.0,9.0,10,0.72 +49594,100.0,10.0,9.0,9.0,10.0,9.0,10.0,3,0.15 +77031,96.0,10.0,10.0,10.0,10.0,10.0,9.0,43,2.19 +3195,88.0,8.0,9.0,9.0,10.0,10.0,8.0,5,0.27 +21928,47.0,4.0,7.0,6.0,5.0,7.0,5.0,4,0.27 +27541,96.0,10.0,10.0,10.0,10.0,10.0,10.0,50,2.48 +22985,89.0,9.0,9.0,10.0,10.0,9.0,10.0,7,0.36 +54894,,,,,,,,0, +9075,90.0,10.0,9.0,10.0,10.0,10.0,9.0,2,0.12 +42266,100.0,10.0,9.0,10.0,10.0,9.0,10.0,6,0.38 +44800,98.0,10.0,10.0,10.0,10.0,10.0,9.0,9,0.47 +46257,,,,,,,,0, +27565,83.0,9.0,8.0,10.0,10.0,10.0,8.0,14,0.7 +1343,89.0,9.0,9.0,9.0,9.0,8.0,9.0,25,1.23 +66794,95.0,10.0,10.0,10.0,10.0,10.0,9.0,27,1.35 +66845,,,,,,,,0, +46763,86.0,9.0,9.0,10.0,9.0,10.0,9.0,72,3.55 +36858,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.25 +44712,79.0,8.0,7.0,9.0,8.0,8.0,8.0,27,1.42 +65486,86.0,9.0,9.0,9.0,8.0,9.0,9.0,24,1.23 +50931,93.0,10.0,9.0,10.0,10.0,10.0,9.0,36,2.05 +11853,,,,,,,,0, +54711,92.0,10.0,9.0,10.0,10.0,9.0,9.0,34,1.91 +44568,86.0,9.0,8.0,10.0,10.0,10.0,9.0,10,0.52 +72897,93.0,9.0,9.0,9.0,10.0,10.0,9.0,45,2.25 +64934,,,,,,,,0, +18738,,,,,,,,0, +38004,96.0,10.0,9.0,10.0,10.0,9.0,10.0,27,1.35 +19248,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.32 +63732,87.0,7.0,8.0,7.0,9.0,10.0,8.0,3,0.24 +68371,90.0,9.0,10.0,10.0,10.0,10.0,9.0,46,2.33 +65930,96.0,10.0,10.0,10.0,10.0,10.0,10.0,32,1.68 +55237,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.04 +60351,87.0,9.0,9.0,9.0,9.0,9.0,9.0,3,0.18 +43672,93.0,9.0,10.0,10.0,10.0,10.0,9.0,18,0.77 +38243,93.0,10.0,10.0,10.0,10.0,10.0,9.0,12,0.5 +57368,85.0,9.0,8.0,9.0,9.0,10.0,9.0,5,0.25 +14334,93.0,10.0,9.0,10.0,10.0,9.0,10.0,102,5.13 +71851,68.0,7.0,6.0,7.0,8.0,10.0,8.0,7,0.35 +8616,80.0,8.0,8.0,10.0,10.0,10.0,8.0,6,0.34 +14539,80.0,8.0,10.0,10.0,10.0,10.0,10.0,2,0.1 +54022,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +31547,96.0,10.0,9.0,10.0,10.0,10.0,9.0,27,1.34 +52785,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +18972,84.0,9.0,7.0,10.0,10.0,9.0,9.0,11,0.57 +30210,87.0,9.0,9.0,9.0,9.0,9.0,9.0,5,0.25 +12557,,,,,,,,0, +20503,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.77 +64326,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.15 +12038,93.0,9.0,9.0,10.0,10.0,9.0,9.0,39,1.92 +64329,93.0,10.0,9.0,10.0,10.0,9.0,9.0,32,1.66 +72641,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.6 +63024,,,,,,,,0, +23427,100.0,10.0,9.0,10.0,10.0,10.0,9.0,5,0.26 +1972,100.0,10.0,10.0,10.0,10.0,9.0,10.0,12,0.68 +59087,,,,,,,,0, +3851,99.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.84 +9681,99.0,10.0,10.0,10.0,10.0,10.0,10.0,30,1.6 +45319,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.9 +26027,,,,,,,,0, +55216,,,,,,,,0, +67614,100.0,10.0,10.0,9.0,10.0,10.0,10.0,2,0.1 +32124,98.0,10.0,10.0,10.0,10.0,10.0,9.0,9,0.45 +56679,98.0,10.0,10.0,10.0,10.0,10.0,10.0,26,1.31 +9565,,,,,,,,0, +50949,100.0,10.0,10.0,10.0,10.0,6.0,10.0,3,0.18 +56289,60.0,10.0,6.0,10.0,10.0,10.0,8.0,1,0.05 +71111,98.0,10.0,10.0,10.0,10.0,10.0,10.0,54,2.75 +55295,,,,,,,,0, +26222,84.0,9.0,8.0,10.0,10.0,9.0,9.0,48,2.38 +37852,99.0,10.0,10.0,10.0,10.0,10.0,10.0,42,2.15 +42321,20.0,2.0,2.0,2.0,2.0,2.0,2.0,2,0.19 +32228,93.0,9.0,9.0,10.0,10.0,9.0,9.0,3,0.15 +12721,93.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.8 +22937,98.0,10.0,10.0,10.0,10.0,8.0,10.0,50,2.49 +19879,94.0,10.0,9.0,10.0,10.0,10.0,10.0,53,3.0 +52058,97.0,10.0,10.0,10.0,10.0,10.0,9.0,38,2.02 +64664,91.0,10.0,10.0,10.0,10.0,10.0,9.0,26,1.72 +17867,,,,,,,,0, +54804,95.0,10.0,10.0,10.0,10.0,10.0,9.0,52,2.82 +37517,99.0,10.0,10.0,10.0,10.0,9.0,10.0,15,0.77 +15587,72.0,8.0,7.0,9.0,8.0,10.0,8.0,16,0.81 +41048,,,,,,,,0, +51469,,,,,,,,0, +63686,100.0,10.0,10.0,10.0,10.0,9.0,10.0,10,0.5 +71720,100.0,10.0,10.0,10.0,10.0,9.0,10.0,10,0.49 +31321,,,,,,,,0, +57926,98.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.95 +36090,93.0,9.0,8.0,9.0,10.0,9.0,9.0,3,0.15 +28649,100.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.98 +35488,93.0,10.0,10.0,10.0,10.0,10.0,10.0,43,2.17 +49665,,,,,,,,0, +49313,95.0,10.0,10.0,9.0,10.0,10.0,9.0,16,0.86 +13377,,,,,,,,0, +21769,,,,,,,,0, +47270,85.0,9.0,10.0,10.0,9.0,10.0,9.0,43,2.18 +15770,90.0,10.0,9.0,10.0,10.0,10.0,9.0,31,1.63 +72762,85.0,8.0,8.0,7.0,7.0,8.0,8.0,5,0.26 +73643,96.0,10.0,10.0,10.0,10.0,8.0,9.0,16,0.8 +28713,76.0,8.0,6.0,10.0,9.0,8.0,7.0,5,1.09 +67228,85.0,9.0,9.0,10.0,9.0,9.0,8.0,11,0.55 +32328,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.5 +25584,84.0,10.0,9.0,9.0,9.0,9.0,9.0,17,0.84 +69121,65.0,8.0,5.0,10.0,10.0,10.0,8.0,5,0.25 +51820,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +27731,100.0,9.0,8.0,10.0,10.0,10.0,10.0,2,0.11 +33187,90.0,10.0,9.0,10.0,9.0,10.0,9.0,24,1.19 +75781,100.0,10.0,9.0,10.0,10.0,10.0,9.0,3,0.16 +26262,93.0,10.0,10.0,10.0,10.0,9.0,9.0,14,0.74 +76282,84.0,8.0,9.0,9.0,8.0,10.0,9.0,12,0.6 +400,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +43395,100.0,10.0,10.0,,,,,2,0.11 +60079,80.0,10.0,8.0,10.0,10.0,8.0,10.0,2,0.25 +63846,92.0,9.0,9.0,10.0,10.0,10.0,8.0,5,0.26 +11254,76.0,8.0,7.0,10.0,9.0,10.0,7.0,5,0.28 +38726,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.48 +15845,70.0,8.0,7.0,8.0,8.0,9.0,8.0,5,0.3 +935,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +37758,98.0,10.0,9.0,10.0,10.0,10.0,10.0,13,0.76 +62004,97.0,10.0,9.0,10.0,10.0,9.0,10.0,20,1.12 +21714,98.0,10.0,10.0,10.0,10.0,9.0,10.0,33,1.75 +40297,98.0,10.0,10.0,10.0,10.0,10.0,10.0,35,1.85 +12196,93.0,9.0,9.0,10.0,10.0,9.0,10.0,24,1.46 +74194,86.0,9.0,8.0,9.0,9.0,9.0,9.0,7,0.35 +18302,94.0,10.0,9.0,10.0,10.0,9.0,10.0,7,0.37 +48372,96.0,10.0,9.0,10.0,10.0,9.0,10.0,22,1.18 +11611,,,,,,,,0, +15660,93.0,10.0,9.0,10.0,10.0,10.0,10.0,25,1.33 +15754,,,,,,,,1,0.12 +34570,99.0,10.0,10.0,10.0,10.0,10.0,10.0,91,4.83 +15809,,,,,,,,0, +29326,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.45 +51136,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.11 +72009,97.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.46 +58179,,,,,,,,0, +25220,,,,,,,,0, +68794,100.0,10.0,10.0,10.0,10.0,9.0,9.0,2,0.11 +7746,91.0,9.0,9.0,9.0,9.0,10.0,8.0,9,0.51 +72969,,,,,,,,0, +3004,72.0,8.0,9.0,7.0,7.0,9.0,8.0,19,1.04 +80,80.0,9.0,9.0,9.0,8.0,9.0,9.0,7,0.37 +6175,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +28045,80.0,8.0,9.0,7.0,6.0,9.0,8.0,6,0.33 +54439,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.18 +45803,60.0,7.0,5.0,7.0,7.0,9.0,6.0,3,0.19 +18059,73.0,9.0,9.0,5.0,7.0,9.0,8.0,3,0.16 +61323,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.11 +57090,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.41 +10388,69.0,7.0,8.0,8.0,7.0,9.0,7.0,29,1.48 +70516,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +67157,63.0,8.0,8.0,7.0,7.0,9.0,7.0,7,0.35 +95,,,,,,,,0, +21059,97.0,10.0,9.0,10.0,10.0,10.0,9.0,35,1.82 +57671,100.0,10.0,10.0,10.0,10.0,9.0,10.0,110,5.51 +13931,92.0,9.0,10.0,9.0,9.0,9.0,9.0,13,0.64 +60725,97.0,10.0,10.0,10.0,10.0,10.0,10.0,21,1.06 +38885,,,,,,,,1,0.2 +68328,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.21 +38640,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.22 +75150,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +64143,90.0,9.0,9.0,10.0,10.0,10.0,9.0,8,0.4 +74891,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +34361,94.0,9.0,10.0,10.0,10.0,10.0,10.0,45,2.64 +5116,87.0,8.0,9.0,10.0,10.0,10.0,9.0,3,0.16 +36290,,,,,,,,0, +57801,99.0,10.0,10.0,10.0,10.0,10.0,10.0,26,1.32 +6193,,,,,,,,0, +66710,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.1 +61225,,,,,,,,0, +50170,90.0,10.0,9.0,9.0,9.0,10.0,10.0,11,0.61 +71119,96.0,9.0,10.0,10.0,10.0,9.0,9.0,15,1.2 +55763,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.69 +21468,93.0,9.0,9.0,9.0,9.0,9.0,9.0,19,0.97 +628,,,,,,,,0, +27423,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +33001,,,,,,,,0, +63782,98.0,10.0,10.0,10.0,10.0,10.0,10.0,50,2.69 +37624,,,,,,,,0, +15473,100.0,10.0,6.0,10.0,10.0,10.0,6.0,2,0.1 +63673,97.0,10.0,10.0,10.0,10.0,10.0,9.0,7,0.41 +52674,91.0,10.0,9.0,10.0,10.0,9.0,9.0,11,0.62 +61720,100.0,10.0,10.0,10.0,10.0,9.0,9.0,5,0.26 +35229,90.0,10.0,9.0,10.0,10.0,10.0,9.0,21,1.08 +58968,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.06 +46782,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.37 +50314,97.0,10.0,10.0,10.0,10.0,10.0,10.0,54,2.9 +59592,94.0,10.0,9.0,10.0,10.0,10.0,9.0,44,2.22 +28454,68.0,9.0,8.0,8.0,9.0,10.0,8.0,5,0.28 +41853,80.0,8.0,8.0,9.0,9.0,10.0,8.0,6,0.31 +13017,,,,,,,,0, +52898,98.0,10.0,10.0,10.0,10.0,10.0,10.0,61,3.1 +63017,77.0,7.0,8.0,8.0,9.0,9.0,8.0,6,0.3 +70322,98.0,10.0,10.0,10.0,10.0,10.0,10.0,92,4.73 +6402,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.36 +4535,97.0,10.0,10.0,10.0,10.0,10.0,9.0,8,0.44 +11572,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.05 +75000,93.0,9.0,9.0,9.0,10.0,9.0,9.0,73,4.61 +51067,,,,,,,,0, +75298,97.0,10.0,10.0,10.0,10.0,10.0,10.0,31,1.57 +47578,98.0,10.0,10.0,10.0,10.0,10.0,10.0,62,3.16 +6275,70.0,8.0,9.0,10.0,10.0,9.0,7.0,2,0.27 +16103,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.21 +63223,98.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.8 +55421,95.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.21 +44504,100.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.32 +71156,89.0,10.0,9.0,10.0,9.0,9.0,9.0,23,1.18 +43845,,,,,,,,0, +21687,96.0,10.0,9.0,9.0,10.0,10.0,9.0,18,0.92 +2302,,,,,,,,0, +31490,90.0,9.0,9.0,9.0,9.0,10.0,10.0,2,0.11 +34659,96.0,10.0,9.0,10.0,10.0,10.0,10.0,38,1.95 +48924,93.0,9.0,9.0,10.0,10.0,10.0,9.0,10,0.5 +15567,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +15078,94.0,9.0,10.0,10.0,10.0,10.0,10.0,16,0.79 +23841,89.0,10.0,9.0,9.0,10.0,9.0,9.0,9,0.46 +43144,86.0,9.0,9.0,8.0,8.0,8.0,9.0,10,0.5 +65078,,,,,,,,0, +61065,98.0,10.0,10.0,10.0,10.0,10.0,10.0,48,2.42 +54252,90.0,9.0,9.0,10.0,9.0,8.0,9.0,29,1.48 +76333,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +38956,98.0,10.0,10.0,10.0,10.0,10.0,9.0,40,2.05 +6775,,,,,,,,0, +58733,,,,,,,,0, +48773,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +61593,95.0,10.0,9.0,10.0,10.0,9.0,10.0,20,1.07 +47616,90.0,9.0,8.0,7.0,8.0,9.0,8.0,3,0.21 +47476,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.37 +28666,100.0,10.0,10.0,9.0,9.0,10.0,10.0,2,0.1 +42804,93.0,10.0,9.0,9.0,9.0,9.0,9.0,118,6.4 +57610,98.0,10.0,10.0,10.0,10.0,10.0,10.0,38,2.9 +19114,97.0,10.0,9.0,10.0,10.0,10.0,10.0,83,4.15 +11272,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +1357,,,,,,,,0, +56806,98.0,10.0,10.0,10.0,10.0,10.0,10.0,20,1.0 +30036,92.0,9.0,9.0,10.0,10.0,8.0,9.0,30,1.52 +43243,97.0,10.0,10.0,10.0,10.0,10.0,10.0,85,4.28 +13919,94.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.72 +72709,97.0,10.0,10.0,10.0,10.0,10.0,10.0,85,4.27 +38902,95.0,10.0,10.0,10.0,9.0,9.0,10.0,8,0.42 +24380,,,,,,,,0, +59669,88.0,9.0,9.0,10.0,10.0,10.0,9.0,25,1.26 +61129,65.0,7.0,7.0,10.0,9.0,9.0,7.0,4,0.23 +42818,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.7 +3521,,,,,,,,0, +55175,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.1 +50837,99.0,10.0,10.0,10.0,10.0,10.0,10.0,20,1.02 +46710,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.26 +12437,99.0,10.0,10.0,10.0,10.0,10.0,10.0,35,1.75 +31474,,,,,,,,0, +36758,100.0,10.0,10.0,10.0,10.0,9.0,9.0,2,0.22 +209,,,,,,,,0, +8319,93.0,9.0,10.0,10.0,10.0,10.0,10.0,4,0.2 +55478,,,,,,,,0, +61023,,,,,,,,0, +70916,94.0,10.0,10.0,10.0,10.0,10.0,9.0,32,1.75 +50679,,,,,,,,0, +69973,,,,,,,,0, +47756,,,,,,,,0, +38783,96.0,9.0,10.0,10.0,10.0,10.0,10.0,9,0.55 +21462,92.0,9.0,9.0,9.0,10.0,9.0,9.0,17,0.84 +43750,,,,,,,,0, +41491,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.81 +60610,98.0,10.0,10.0,10.0,10.0,10.0,10.0,26,1.34 +13814,95.0,10.0,10.0,10.0,10.0,10.0,10.0,92,4.71 +25568,98.0,10.0,10.0,10.0,10.0,9.0,10.0,10,0.51 +33103,,,,,,,,0, +36373,92.0,10.0,10.0,10.0,10.0,9.0,9.0,28,1.44 +12648,,,,,,,,0, +61298,95.0,10.0,10.0,10.0,9.0,9.0,10.0,30,1.59 +33128,,,,,,,,0, +7118,,,,,,,,0, +70124,,,,,,,,0, +74333,90.0,10.0,8.0,10.0,10.0,10.0,9.0,8,0.4 +35116,99.0,10.0,10.0,10.0,10.0,10.0,10.0,27,1.35 +29366,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.3 +70534,,,,,,,,0, +73073,,,,,,,,0, +13208,94.0,9.0,10.0,10.0,10.0,9.0,9.0,25,1.26 +47500,,,,,,,,0, +65852,,,,,,,,0, +40554,88.0,10.0,9.0,6.0,10.0,9.0,9.0,5,0.26 +9094,,,,,,,,0, +75667,80.0,8.0,10.0,10.0,10.0,6.0,8.0,1,0.05 +23428,91.0,9.0,9.0,9.0,10.0,9.0,10.0,39,2.0 +37989,,,,,,,,0, +67768,,,,,,,,0, +34563,,,,,,,,0, +6704,94.0,9.0,9.0,9.0,9.0,10.0,9.0,19,0.95 +15291,95.0,10.0,10.0,9.0,10.0,10.0,10.0,25,1.36 +49911,,,,,,,,0, +39134,97.0,10.0,10.0,10.0,10.0,9.0,9.0,35,1.81 +69724,,,,,,,,0, +17937,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.21 +56691,,,,,,,,0, +70978,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.26 +37864,100.0,10.0,10.0,10.0,10.0,9.0,10.0,9,0.53 +9786,99.0,10.0,10.0,10.0,10.0,9.0,10.0,133,6.77 +24012,98.0,10.0,10.0,10.0,10.0,10.0,10.0,24,1.27 +41717,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.19 +9380,96.0,9.0,10.0,10.0,10.0,9.0,10.0,11,0.56 +61663,,,,,,,,0, +73315,,,,,,,,0, +916,99.0,10.0,10.0,10.0,10.0,10.0,10.0,27,1.36 +58845,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.16 +60176,,,,,,,,0, +57862,,,,,,,,0, +50647,94.0,9.0,9.0,10.0,10.0,9.0,10.0,23,1.48 +15193,97.0,10.0,10.0,10.0,10.0,10.0,9.0,30,1.58 +2146,100.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.1 +1392,,,,,,,,0, +50146,92.0,10.0,9.0,10.0,10.0,10.0,9.0,32,1.76 +30677,96.0,10.0,10.0,10.0,10.0,9.0,9.0,5,0.26 +19313,,,,,,,,0, +67224,94.0,10.0,10.0,10.0,10.0,10.0,9.0,28,1.58 +66995,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.16 +41748,20.0,2.0,2.0,6.0,8.0,10.0,4.0,2,0.1 +56446,80.0,8.0,8.0,8.0,8.0,6.0,8.0,1,0.05 +39796,,,,,,,,0, +35700,93.0,10.0,10.0,9.0,9.0,10.0,9.0,15,0.76 +43185,93.0,9.0,9.0,10.0,10.0,9.0,9.0,31,1.54 +3097,93.0,9.0,10.0,10.0,10.0,9.0,9.0,12,0.61 +75350,86.0,9.0,9.0,9.0,9.0,10.0,9.0,20,1.11 +12500,90.0,9.0,9.0,9.0,9.0,9.0,9.0,27,1.48 +74824,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.05 +9479,,,,,,,,0, +17159,90.0,10.0,9.0,9.0,10.0,10.0,9.0,48,2.44 +52959,98.0,10.0,10.0,10.0,10.0,10.0,10.0,54,2.72 +15570,96.0,10.0,10.0,10.0,10.0,9.0,9.0,62,3.2 +46733,,,,,,,,0, +31449,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.5 +66732,80.0,8.0,8.0,9.0,9.0,9.0,8.0,9,0.46 +18269,97.0,10.0,10.0,10.0,10.0,9.0,10.0,16,0.85 +45235,100.0,9.0,9.0,10.0,10.0,10.0,9.0,4,0.2 +69004,,,,,,,,0, +65285,93.0,10.0,9.0,10.0,10.0,10.0,9.0,94,4.68 +35259,99.0,10.0,10.0,10.0,10.0,9.0,10.0,16,0.81 +4607,83.0,9.0,10.0,10.0,10.0,8.0,8.0,9,0.47 +74423,93.0,10.0,10.0,9.0,10.0,10.0,9.0,3,0.52 +17504,93.0,9.0,9.0,9.0,10.0,10.0,9.0,27,1.51 +58106,100.0,10.0,9.0,10.0,10.0,10.0,9.0,4,0.48 +33925,,,,,,,,0, +11897,80.0,8.0,10.0,10.0,8.0,10.0,6.0,1,0.06 +6734,93.0,9.0,9.0,8.0,9.0,10.0,9.0,8,0.48 +66817,99.0,10.0,10.0,10.0,10.0,10.0,10.0,22,1.1 +68242,100.0,10.0,8.0,10.0,10.0,8.0,10.0,1,0.07 +14089,60.0,8.0,8.0,10.0,10.0,10.0,8.0,1,0.37 +4253,70.0,6.0,7.0,7.0,7.0,6.0,6.0,2,0.32 +20170,78.0,9.0,8.0,10.0,10.0,10.0,8.0,104,5.31 +12713,92.0,9.0,10.0,10.0,10.0,9.0,9.0,20,1.08 +52498,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.36 +70063,96.0,10.0,9.0,10.0,10.0,9.0,10.0,14,0.71 +44743,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.49 +26490,97.0,10.0,10.0,10.0,10.0,9.0,9.0,37,3.78 +40371,,,,,,,,0, +7215,,,,,,,,0, +8714,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.32 +65232,,,,,,,,0, +37815,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +48680,89.0,9.0,9.0,10.0,10.0,8.0,9.0,13,0.68 +54517,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.15 +60676,100.0,10.0,10.0,,,,,1,0.06 +6162,82.0,9.0,9.0,9.0,9.0,9.0,8.0,51,2.64 +54308,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.05 +57523,94.0,10.0,10.0,10.0,10.0,10.0,9.0,60,3.01 +11696,100.0,10.0,10.0,10.0,10.0,10.0,10.0,24,1.23 +31618,93.0,10.0,9.0,10.0,10.0,9.0,8.0,3,0.17 +69555,97.0,9.0,10.0,10.0,9.0,10.0,10.0,7,0.35 +5295,,,,,,,,0, +72995,80.0,8.0,7.0,9.0,9.0,9.0,8.0,2,0.12 +76956,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.56 +75253,96.0,10.0,9.0,10.0,10.0,9.0,10.0,10,0.57 +76675,95.0,9.0,9.0,10.0,10.0,10.0,10.0,4,0.22 +63598,100.0,10.0,10.0,10.0,10.0,10.0,6.0,1,0.07 +35717,,,,,,,,0, +74459,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.28 +29172,93.0,9.0,9.0,10.0,10.0,9.0,10.0,7,0.36 +61001,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +28167,100.0,10.0,9.0,10.0,10.0,9.0,10.0,2,0.1 +74699,92.0,9.0,10.0,9.0,10.0,9.0,9.0,10,0.65 +75055,94.0,9.0,10.0,10.0,10.0,10.0,9.0,17,0.95 +58035,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.33 +9791,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.33 +42813,90.0,9.0,10.0,9.0,9.0,9.0,9.0,42,2.09 +24692,98.0,10.0,9.0,10.0,10.0,10.0,10.0,11,0.57 +34214,,,,,,,,0, +74677,100.0,8.0,10.0,10.0,10.0,10.0,8.0,1,0.06 +73724,86.0,9.0,9.0,9.0,9.0,9.0,8.0,23,1.19 +60738,100.0,10.0,10.0,10.0,10.0,9.0,10.0,27,1.46 +25764,100.0,10.0,9.0,10.0,10.0,9.0,10.0,3,0.15 +46354,98.0,10.0,10.0,10.0,10.0,9.0,10.0,13,0.68 +4385,99.0,10.0,10.0,10.0,10.0,10.0,10.0,25,1.34 +47501,78.0,8.0,8.0,9.0,9.0,8.0,7.0,10,0.54 +70879,,,,,,,,0, +15687,,,,,,,,0, +37894,,,,,,,,0, +75955,95.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.2 +32249,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.5 +58719,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.2 +27317,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.29 +42065,40.0,2.0,2.0,8.0,6.0,8.0,2.0,1,0.07 +7294,60.0,10.0,10.0,10.0,2.0,10.0,10.0,1,0.23 +6035,94.0,10.0,9.0,10.0,10.0,10.0,10.0,10,0.79 +16998,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.21 +16099,90.0,10.0,10.0,10.0,9.0,9.0,8.0,6,0.34 +71542,93.0,10.0,9.0,10.0,10.0,10.0,9.0,40,2.11 +1358,100.0,10.0,10.0,10.0,10.0,8.0,10.0,2,0.12 +61661,95.0,10.0,10.0,9.0,10.0,10.0,10.0,38,1.96 +58080,96.0,10.0,10.0,10.0,10.0,9.0,10.0,39,1.99 +64233,77.0,7.0,8.0,8.0,8.0,8.0,8.0,6,0.31 +54276,95.0,10.0,9.0,10.0,10.0,10.0,9.0,18,0.9 +34317,95.0,10.0,9.0,10.0,10.0,10.0,10.0,35,1.79 +72831,,,,,,,,0, +57392,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +28245,,,,,,,,0, +51028,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.2 +4566,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.13 +33299,,,,,,,,0, +48422,93.0,10.0,10.0,10.0,10.0,10.0,9.0,13,0.66 +29810,99.0,10.0,10.0,10.0,10.0,10.0,10.0,27,1.38 +56483,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.51 +36771,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.46 +15579,98.0,10.0,10.0,10.0,10.0,10.0,10.0,32,1.64 +30966,,,,,,,,1,0.05 +74093,92.0,9.0,9.0,10.0,10.0,9.0,9.0,41,2.12 +7593,92.0,9.0,9.0,10.0,10.0,9.0,9.0,67,3.38 +48841,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +52741,100.0,10.0,10.0,10.0,10.0,9.0,9.0,11,0.87 +22709,96.0,9.0,9.0,10.0,8.0,9.0,9.0,6,0.32 +25828,100.0,10.0,10.0,10.0,10.0,9.0,9.0,7,0.38 +61814,98.0,10.0,10.0,9.0,10.0,10.0,10.0,9,0.46 +1819,96.0,10.0,9.0,9.0,10.0,9.0,9.0,10,0.65 +75992,88.0,9.0,9.0,9.0,10.0,10.0,9.0,12,0.61 +27956,80.0,8.0,8.0,9.0,8.0,10.0,8.0,8,0.42 +4177,93.0,9.0,9.0,9.0,10.0,9.0,9.0,66,3.45 +61535,85.0,9.0,9.0,9.0,9.0,10.0,9.0,28,1.49 +57535,98.0,10.0,10.0,10.0,10.0,9.0,10.0,13,0.67 +63378,92.0,10.0,10.0,10.0,10.0,9.0,9.0,31,1.61 +71949,86.0,8.0,8.0,9.0,9.0,9.0,8.0,10,0.79 +50765,98.0,10.0,10.0,10.0,10.0,9.0,10.0,23,2.3 +55276,96.0,10.0,9.0,10.0,10.0,10.0,10.0,25,1.26 +4571,100.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.38 +44705,93.0,9.0,9.0,10.0,10.0,9.0,9.0,73,3.82 +47413,96.0,10.0,10.0,10.0,9.0,10.0,9.0,5,0.54 +42398,97.0,10.0,10.0,10.0,10.0,9.0,10.0,30,1.54 +64500,,,,,,,,0, +66994,98.0,10.0,10.0,10.0,10.0,9.0,9.0,12,0.63 +73041,98.0,10.0,9.0,10.0,10.0,10.0,10.0,38,1.94 +15647,98.0,10.0,10.0,10.0,10.0,10.0,9.0,34,1.73 +57311,,,,,,,,0, +17133,88.0,9.0,9.0,10.0,10.0,9.0,9.0,49,2.66 +26725,87.0,10.0,7.0,10.0,10.0,9.0,9.0,3,0.84 +75758,,,,,,,,1,0.13 +70095,,,,,,,,0, +68546,86.0,9.0,9.0,10.0,9.0,10.0,9.0,58,2.92 +59518,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.29 +29928,94.0,10.0,9.0,9.0,9.0,10.0,9.0,33,1.69 +42161,98.0,10.0,10.0,10.0,10.0,9.0,10.0,16,0.82 +56344,99.0,10.0,10.0,10.0,10.0,10.0,10.0,38,2.21 +35625,94.0,10.0,9.0,10.0,10.0,9.0,10.0,42,2.12 +49457,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.5 +3685,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +75743,,,,,,,,0, +31090,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.54 +54103,84.0,8.0,8.0,9.0,9.0,9.0,8.0,27,1.45 +24866,78.0,8.0,8.0,8.0,8.0,10.0,7.0,11,0.59 +2370,,,,,,,,0, +69809,27.0,4.0,5.0,3.0,2.0,4.0,3.0,3,0.23 +64999,93.0,10.0,9.0,9.0,10.0,10.0,9.0,25,1.28 +50055,93.0,10.0,9.0,9.0,10.0,9.0,9.0,21,1.09 +29378,89.0,9.0,8.0,9.0,9.0,9.0,9.0,44,2.3 +59459,99.0,10.0,10.0,10.0,10.0,9.0,10.0,41,2.19 +44971,,,,,,,,0, +74526,98.0,10.0,10.0,10.0,10.0,10.0,10.0,50,2.56 +11525,80.0,8.0,8.0,8.0,9.0,9.0,8.0,2,0.35 +65269,94.0,10.0,9.0,10.0,10.0,10.0,10.0,17,0.86 +2234,,,,,,,,0, +39411,100.0,10.0,10.0,10.0,10.0,9.0,9.0,2,0.54 +44429,,,,,,,,0, +21416,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.06 +18776,,,,,,,,2,0.12 +18108,99.0,10.0,10.0,10.0,10.0,10.0,10.0,115,5.94 +41150,100.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.88 +36327,87.0,9.0,9.0,9.0,9.0,10.0,9.0,144,7.27 +37072,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.31 +75637,90.0,9.0,8.0,9.0,10.0,10.0,9.0,92,4.98 +51671,,,,,,,,0, +58176,96.0,10.0,10.0,10.0,10.0,10.0,10.0,29,1.51 +34979,,,,,,,,1,0.07 +35321,92.0,9.0,9.0,10.0,9.0,9.0,9.0,18,0.96 +20971,100.0,10.0,10.0,10.0,9.0,10.0,10.0,5,0.25 +11051,100.0,10.0,9.0,10.0,9.0,10.0,10.0,5,0.44 +56901,,,,,,,,0, +59916,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +56167,96.0,10.0,10.0,10.0,10.0,9.0,10.0,10,0.54 +30707,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.15 +66928,100.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.94 +8423,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.21 +44914,80.0,8.0,8.0,8.0,8.0,9.0,8.0,7,0.39 +26705,100.0,10.0,10.0,10.0,10.0,10.0,10.0,32,1.7 +9317,94.0,9.0,9.0,10.0,10.0,10.0,9.0,38,1.98 +19541,95.0,10.0,9.0,10.0,10.0,10.0,10.0,15,0.81 +7814,73.0,7.0,7.0,7.0,7.0,7.0,7.0,3,0.28 +68723,80.0,8.0,8.0,8.0,7.0,8.0,8.0,10,0.52 +54087,100.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +23172,,,,,,,,0, +11096,93.0,10.0,10.0,9.0,10.0,10.0,9.0,23,1.18 +2101,89.0,10.0,9.0,10.0,10.0,9.0,9.0,16,0.84 +61566,98.0,10.0,10.0,10.0,10.0,10.0,9.0,10,0.51 +18837,99.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.82 +40348,77.0,8.0,7.0,9.0,9.0,9.0,8.0,25,1.28 +56823,99.0,10.0,10.0,10.0,10.0,10.0,10.0,34,1.85 +74323,96.0,10.0,10.0,10.0,10.0,9.0,9.0,16,0.82 +29029,96.0,10.0,10.0,10.0,10.0,10.0,9.0,48,2.59 +6458,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.05 +56800,98.0,10.0,10.0,10.0,10.0,9.0,10.0,19,1.04 +53369,98.0,10.0,10.0,10.0,10.0,10.0,10.0,98,5.11 +52377,98.0,10.0,10.0,10.0,10.0,10.0,10.0,38,1.98 +69503,96.0,9.0,10.0,10.0,10.0,10.0,9.0,51,2.63 +33976,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.66 +3014,82.0,9.0,9.0,9.0,9.0,8.0,8.0,31,1.8 +15133,93.0,10.0,9.0,10.0,10.0,10.0,10.0,6,0.31 +8060,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.43 +20869,95.0,10.0,9.0,10.0,10.0,10.0,10.0,8,0.57 +1586,93.0,10.0,10.0,10.0,10.0,10.0,10.0,30,1.59 +73992,100.0,9.0,9.0,10.0,10.0,10.0,9.0,6,0.32 +40517,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +59889,,,,,,,,0, +61360,,,,,,,,1,0.07 +34625,98.0,10.0,10.0,10.0,10.0,10.0,9.0,16,0.89 +654,87.0,10.0,8.0,9.0,9.0,9.0,8.0,6,0.32 +70876,,,,,,,,0, +72212,83.0,9.0,9.0,10.0,9.0,10.0,8.0,114,5.89 +23801,89.0,9.0,9.0,10.0,9.0,10.0,9.0,41,2.12 +36731,,,,,,,,0, +37941,,,,,,,,1,0.05 +72681,,,,,,,,0, +35843,94.0,10.0,10.0,10.0,9.0,10.0,10.0,10,0.51 +40736,92.0,10.0,10.0,9.0,8.0,9.0,9.0,24,1.37 +56106,,,,,,,,0, +4349,,,,,,,,0, +71792,88.0,8.0,9.0,7.0,8.0,10.0,8.0,5,0.29 +49743,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.16 +22068,99.0,10.0,10.0,10.0,10.0,10.0,10.0,28,1.43 +36687,87.0,9.0,8.0,9.0,9.0,10.0,9.0,33,1.67 +10927,93.0,10.0,9.0,9.0,10.0,9.0,9.0,8,0.43 +69517,,,,,,,,0, +50261,,,,,,,,0, +21638,98.0,10.0,10.0,10.0,10.0,9.0,10.0,10,0.55 +68982,90.0,9.0,9.0,8.0,9.0,9.0,8.0,14,0.78 +20685,81.0,9.0,8.0,10.0,9.0,10.0,8.0,17,1.01 +941,,,,,,,,0, +34311,90.0,10.0,9.0,10.0,10.0,10.0,9.0,12,0.61 +61590,87.0,9.0,9.0,9.0,9.0,9.0,9.0,5,0.25 +58631,,,,,,,,0, +41954,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +71570,89.0,9.0,9.0,9.0,9.0,10.0,8.0,20,1.02 +24106,68.0,7.0,8.0,8.0,8.0,8.0,6.0,5,0.28 +26097,,,,,,,,0, +37759,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.31 +42803,100.0,9.0,9.0,10.0,10.0,9.0,10.0,7,0.36 +76797,,,,,,,,0, +66332,100.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.31 +61937,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +37766,85.0,8.0,8.0,8.0,9.0,10.0,9.0,32,1.72 +8987,100.0,10.0,10.0,10.0,10.0,10.0,8.0,2,0.11 +71716,90.0,9.0,7.0,10.0,10.0,8.0,8.0,3,0.15 +21511,93.0,10.0,10.0,10.0,10.0,9.0,9.0,15,0.84 +53960,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.67 +14121,89.0,9.0,8.0,10.0,10.0,9.0,9.0,42,2.11 +52983,71.0,8.0,9.0,7.0,7.0,8.0,8.0,16,1.12 +68641,97.0,9.0,9.0,9.0,9.0,9.0,9.0,7,0.38 +48052,,,,,,,,0, +63806,98.0,10.0,10.0,9.0,10.0,9.0,10.0,19,2.1 +71748,,,,,,,,0, +26141,94.0,10.0,10.0,10.0,10.0,10.0,10.0,77,3.91 +56279,93.0,9.0,9.0,9.0,9.0,10.0,9.0,20,1.02 +1137,99.0,10.0,10.0,10.0,10.0,9.0,10.0,76,3.96 +71077,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.56 +29481,,,,,,,,0, +54522,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.66 +564,63.0,5.0,4.0,7.0,7.0,7.0,6.0,9,0.46 +43736,100.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.89 +63505,95.0,10.0,10.0,10.0,10.0,10.0,9.0,15,0.8 +64387,95.0,10.0,10.0,9.0,10.0,10.0,9.0,5,0.44 +52414,100.0,10.0,7.0,10.0,10.0,10.0,9.0,3,0.45 +62706,98.0,10.0,10.0,10.0,10.0,9.0,10.0,86,4.92 +7511,99.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.93 +41116,95.0,10.0,9.0,10.0,9.0,9.0,9.0,13,0.67 +56207,,,,,,,,0, +7545,100.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.57 +76361,80.0,8.0,8.0,9.0,9.0,9.0,8.0,2,0.11 +24540,,,,,,,,0, +54412,,,,,,,,0, +53171,97.0,10.0,10.0,10.0,10.0,10.0,10.0,23,1.19 +9613,91.0,9.0,9.0,10.0,10.0,9.0,9.0,7,0.41 +51909,93.0,10.0,9.0,10.0,10.0,10.0,10.0,6,0.33 +11690,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.12 +25952,86.0,9.0,8.0,9.0,9.0,10.0,9.0,24,1.39 +62262,,,,,,,,2,0.11 +75935,96.0,10.0,10.0,10.0,10.0,10.0,9.0,28,1.44 +70661,92.0,9.0,9.0,10.0,9.0,10.0,9.0,29,1.57 +69921,94.0,9.0,9.0,10.0,10.0,9.0,9.0,30,1.52 +56986,94.0,10.0,10.0,10.0,10.0,10.0,9.0,13,0.67 +11149,70.0,9.0,7.0,10.0,10.0,10.0,10.0,2,0.52 +73317,98.0,10.0,10.0,10.0,10.0,9.0,9.0,25,1.31 +62096,90.0,10.0,9.0,10.0,10.0,10.0,9.0,8,0.45 +71691,89.0,9.0,8.0,9.0,9.0,9.0,9.0,9,0.46 +68863,92.0,9.0,9.0,10.0,9.0,9.0,9.0,41,2.08 +52908,93.0,10.0,8.0,10.0,10.0,10.0,10.0,4,0.22 +49711,91.0,9.0,10.0,10.0,10.0,9.0,10.0,24,1.38 +27952,100.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.93 +24199,87.0,10.0,9.0,9.0,9.0,9.0,9.0,62,3.14 +33353,98.0,10.0,9.0,10.0,10.0,10.0,9.0,28,3.77 +76452,84.0,9.0,9.0,9.0,9.0,9.0,8.0,15,0.77 +66929,,,,,,,,0, +14156,96.0,10.0,10.0,10.0,10.0,10.0,10.0,24,1.37 +41435,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +21062,87.0,9.0,8.0,10.0,10.0,8.0,8.0,30,1.72 +43387,,,,,,,,0, +69648,80.0,9.0,8.0,9.0,9.0,9.0,8.0,29,1.48 +34439,100.0,10.0,10.0,9.0,8.0,10.0,8.0,2,0.11 +7003,96.0,10.0,10.0,10.0,10.0,10.0,10.0,73,3.92 +76001,99.0,10.0,10.0,10.0,10.0,10.0,10.0,36,1.83 +44295,80.0,6.0,10.0,8.0,8.0,6.0,6.0,1,0.06 +61522,88.0,9.0,9.0,10.0,9.0,9.0,9.0,17,0.87 +43950,85.0,9.0,9.0,9.0,9.0,9.0,9.0,39,2.03 +15334,,,,,,,,0, +42252,,,,,,,,0, +44330,95.0,10.0,9.0,10.0,10.0,9.0,10.0,57,3.11 +45787,97.0,10.0,9.0,10.0,10.0,10.0,9.0,34,1.95 +46447,,,,,,,,0, +17021,97.0,10.0,10.0,10.0,10.0,10.0,10.0,23,1.19 +16833,93.0,10.0,9.0,10.0,10.0,10.0,9.0,27,1.45 +71575,93.0,10.0,10.0,10.0,9.0,10.0,9.0,3,0.18 +970,98.0,10.0,10.0,10.0,10.0,10.0,10.0,44,2.4 +6677,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.1 +43745,,,,,,,,0, +74812,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +4938,,,,,,,,0, +2961,98.0,10.0,9.0,10.0,10.0,10.0,10.0,9,0.56 +48015,72.0,7.0,7.0,9.0,9.0,7.0,7.0,6,0.34 +65391,97.0,10.0,10.0,10.0,10.0,10.0,10.0,23,1.25 +20217,,,,,,,,3,0.17 +68879,97.0,10.0,10.0,9.0,10.0,9.0,9.0,7,0.36 +39077,94.0,10.0,10.0,10.0,10.0,10.0,9.0,131,6.71 +42846,97.0,9.0,8.0,10.0,10.0,9.0,10.0,7,0.36 +40496,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.05 +44319,100.0,10.0,10.0,10.0,10.0,10.0,10.0,41,2.08 +43803,,,,,,,,0, +23374,96.0,10.0,9.0,10.0,10.0,10.0,10.0,67,3.42 +50427,100.0,10.0,10.0,10.0,10.0,10.0,10.0,36,1.88 +35526,95.0,10.0,10.0,10.0,10.0,10.0,9.0,17,0.92 +46407,,,,,,,,0, +40767,99.0,10.0,10.0,10.0,10.0,10.0,10.0,54,2.75 +60729,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.67 +16620,,,,,,,,0, +56565,97.0,10.0,10.0,10.0,10.0,10.0,10.0,22,1.11 +6408,91.0,10.0,10.0,9.0,10.0,9.0,9.0,37,1.97 +59643,93.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.45 +11085,,,,,,,,0, +71661,98.0,10.0,10.0,10.0,10.0,10.0,10.0,29,1.6 +34178,96.0,10.0,10.0,10.0,10.0,9.0,9.0,5,0.27 +11929,90.0,10.0,9.0,9.0,10.0,9.0,9.0,4,0.2 +43428,89.0,9.0,9.0,10.0,10.0,10.0,9.0,131,6.75 +53182,100.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.45 +9277,100.0,9.0,10.0,10.0,10.0,10.0,10.0,4,0.2 +34561,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.26 +41892,98.0,10.0,9.0,10.0,10.0,10.0,10.0,11,0.63 +54283,83.0,9.0,9.0,9.0,8.0,9.0,9.0,8,0.41 +70698,,,,,,,,0, +75855,,,,,,,,0, +38434,40.0,6.0,10.0,4.0,6.0,10.0,4.0,1,0.05 +29516,,,,,,,,0, +6728,97.0,10.0,10.0,10.0,10.0,10.0,10.0,30,1.67 +50692,,,,,,,,0, +10775,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.16 +43351,,,,,,,,0, +22441,100.0,10.0,10.0,10.0,10.0,9.0,9.0,9,0.53 +44168,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.17 +66412,,,,,,,,0, +18783,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.11 +5828,96.0,10.0,9.0,10.0,10.0,10.0,9.0,22,1.13 +47261,80.0,8.0,10.0,10.0,10.0,10.0,8.0,1,0.06 +37428,93.0,10.0,10.0,10.0,10.0,9.0,9.0,32,1.69 +35433,,,,,,,,0, +72588,,,,,,,,0, +7702,,,,,,,,0, +3713,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.71 +18265,89.0,9.0,9.0,10.0,9.0,9.0,9.0,29,1.52 +41457,98.0,10.0,9.0,10.0,10.0,10.0,10.0,25,1.94 +48352,93.0,10.0,8.0,9.0,9.0,9.0,9.0,9,0.47 +8099,,,,,,,,0, +43154,,,,,,,,0, +18453,87.0,9.0,9.0,9.0,9.0,9.0,9.0,37,1.88 +63049,83.0,9.0,9.0,9.0,9.0,10.0,8.0,33,1.72 +32942,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.54 +39190,88.0,10.0,8.0,8.0,9.0,8.0,9.0,8,0.43 +28611,97.0,10.0,9.0,10.0,10.0,9.0,9.0,7,0.43 +67048,93.0,10.0,10.0,10.0,10.0,9.0,9.0,48,2.49 +23218,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.13 +72465,93.0,10.0,10.0,10.0,10.0,9.0,9.0,36,1.95 +18159,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.21 +70911,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.19 +55009,91.0,10.0,9.0,10.0,10.0,10.0,9.0,7,0.41 +53518,,,,,,,,0, +38633,98.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.61 +9549,,,,,,,,0, +76627,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.24 +27996,98.0,10.0,10.0,10.0,10.0,9.0,10.0,12,0.62 +6611,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.32 +71428,97.0,10.0,10.0,10.0,9.0,9.0,10.0,19,1.07 +22219,92.0,9.0,9.0,9.0,10.0,10.0,9.0,36,1.94 +26362,73.0,8.0,8.0,9.0,8.0,10.0,8.0,15,0.78 +57539,,,,,,,,0, +32634,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.29 +8935,,,,,,,,0, +9629,97.0,10.0,10.0,10.0,10.0,10.0,10.0,34,1.74 +61299,98.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.82 +61218,87.0,9.0,9.0,9.0,9.0,8.0,8.0,26,1.48 +58872,,,,,,,,0, +20138,95.0,10.0,9.0,10.0,9.0,10.0,10.0,15,0.81 +38547,80.0,10.0,7.0,10.0,10.0,10.0,10.0,3,0.15 +44724,76.0,9.0,8.0,9.0,10.0,8.0,8.0,5,0.25 +56621,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.27 +71068,,,,,,,,0, +41868,88.0,9.0,9.0,9.0,9.0,10.0,9.0,31,2.02 +14741,98.0,10.0,10.0,10.0,10.0,9.0,9.0,8,0.41 +26091,,,,,,,,0, +30535,93.0,10.0,10.0,10.0,10.0,9.0,9.0,107,5.49 +29233,92.0,10.0,9.0,10.0,10.0,10.0,9.0,13,0.67 +26191,93.0,10.0,9.0,10.0,10.0,9.0,9.0,6,0.38 +76777,95.0,10.0,10.0,9.0,10.0,9.0,9.0,15,0.76 +18472,99.0,10.0,10.0,10.0,10.0,10.0,10.0,26,1.32 +22888,88.0,9.0,9.0,9.0,9.0,9.0,9.0,13,0.67 +53515,90.0,10.0,9.0,9.0,10.0,9.0,9.0,41,4.64 +9494,77.0,8.0,8.0,9.0,9.0,9.0,8.0,16,0.82 +32887,95.0,10.0,9.0,10.0,10.0,10.0,10.0,26,1.34 +52203,,,,,,,,0, +56666,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.06 +43062,,,,,,,,0, +20069,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.42 +70147,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.27 +68539,80.0,10.0,6.0,4.0,10.0,,,1,0.05 +19765,94.0,10.0,10.0,9.0,10.0,10.0,9.0,31,1.69 +13819,92.0,10.0,9.0,10.0,10.0,10.0,9.0,53,2.69 +15076,97.0,9.0,10.0,10.0,10.0,10.0,9.0,6,0.35 +5662,97.0,9.0,9.0,10.0,10.0,10.0,9.0,9,0.46 +5061,83.0,9.0,8.0,10.0,10.0,9.0,9.0,70,3.58 +2065,98.0,10.0,10.0,10.0,10.0,9.0,10.0,32,1.87 +31940,91.0,10.0,9.0,10.0,10.0,9.0,9.0,16,0.82 +49084,87.0,8.0,9.0,9.0,9.0,9.0,8.0,46,2.35 +5800,94.0,9.0,9.0,9.0,9.0,9.0,9.0,7,0.39 +51960,92.0,10.0,9.0,10.0,10.0,10.0,9.0,21,1.29 +40066,,,,,,,,0, +30371,95.0,10.0,10.0,10.0,10.0,10.0,9.0,43,2.32 +46982,80.0,10.0,4.0,10.0,10.0,10.0,10.0,1,0.05 +15196,94.0,9.0,10.0,10.0,10.0,9.0,9.0,7,0.36 +51634,92.0,10.0,9.0,10.0,10.0,9.0,9.0,14,0.79 +74611,91.0,9.0,9.0,10.0,10.0,10.0,9.0,47,2.52 +40529,98.0,10.0,10.0,10.0,10.0,9.0,10.0,16,0.83 +43612,93.0,10.0,10.0,9.0,10.0,9.0,9.0,11,0.58 +12503,,,,,,,,0, +39756,80.0,8.0,10.0,10.0,10.0,8.0,10.0,1,0.05 +64922,93.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.16 +55986,,,,,,,,0, +35371,,,,,,,,0, +55402,100.0,10.0,10.0,10.0,10.0,9.0,10.0,13,0.66 +4309,,,,,,,,0, +48552,,,,,,,,0, +66507,90.0,9.0,10.0,9.0,10.0,10.0,9.0,27,1.43 +61224,60.0,10.0,8.0,10.0,10.0,6.0,4.0,1,0.05 +71498,96.0,10.0,9.0,10.0,10.0,9.0,9.0,10,0.51 +5873,77.0,8.0,8.0,8.0,8.0,9.0,9.0,6,0.31 +52700,82.0,9.0,8.0,9.0,9.0,10.0,8.0,14,0.79 +32011,90.0,9.0,9.0,9.0,10.0,9.0,9.0,24,1.34 +19757,100.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.55 +60929,,,,,,,,0, +2472,94.0,10.0,9.0,10.0,10.0,10.0,9.0,18,0.92 +9757,,,,,,,,0, +7465,82.0,8.0,8.0,9.0,9.0,9.0,9.0,12,0.66 +48790,80.0,8.0,10.0,10.0,10.0,8.0,6.0,1,0.05 +6607,,,,,,,,1,0.05 +35457,,,,,,,,0, +50150,,,,,,,,0, +42514,,,,,,,,0, +35668,86.0,9.0,8.0,10.0,10.0,10.0,9.0,70,3.67 +14290,87.0,9.0,9.0,10.0,10.0,8.0,9.0,4,0.38 +64829,90.0,10.0,8.0,10.0,10.0,10.0,9.0,13,0.68 +32366,89.0,9.0,9.0,10.0,10.0,10.0,9.0,13,0.74 +17381,99.0,10.0,10.0,10.0,10.0,9.0,10.0,30,1.6 +31453,100.0,10.0,10.0,,10.0,,,1,0.06 +37197,99.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.83 +8518,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.16 +51700,97.0,10.0,10.0,9.0,10.0,9.0,10.0,30,1.55 +56138,97.0,10.0,9.0,10.0,10.0,10.0,9.0,26,1.36 +15437,,,,,,,,0, +36617,89.0,9.0,10.0,8.0,9.0,10.0,9.0,51,2.63 +34652,100.0,10.0,10.0,10.0,10.0,10.0,10.0,92,4.87 +21088,98.0,10.0,10.0,10.0,10.0,10.0,10.0,20,1.04 +57665,96.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.26 +9783,98.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.83 +3943,91.0,9.0,9.0,10.0,9.0,10.0,9.0,14,0.72 +43779,100.0,10.0,10.0,10.0,10.0,10.0,10.0,37,2.0 +3477,87.0,9.0,7.0,10.0,10.0,10.0,10.0,3,0.15 +14104,,,,,,,,0, +63933,87.0,9.0,8.0,10.0,10.0,9.0,9.0,11,0.56 +24586,100.0,10.0,10.0,9.0,10.0,9.0,10.0,4,0.2 +7127,,,,,,,,0, +9225,99.0,10.0,10.0,10.0,10.0,9.0,10.0,90,4.66 +19997,94.0,10.0,10.0,10.0,10.0,9.0,10.0,58,2.97 +63835,100.0,10.0,10.0,10.0,10.0,10.0,4.0,1,0.05 +15625,,,,,,,,0, +49511,,,,,,,,0, +32916,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.56 +74454,90.0,10.0,9.0,10.0,10.0,9.0,9.0,3,0.17 +39589,100.0,10.0,8.0,10.0,10.0,10.0,9.0,5,0.26 +25788,100.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.97 +67188,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +4456,93.0,9.0,9.0,10.0,10.0,10.0,9.0,3,0.15 +6302,96.0,10.0,9.0,10.0,10.0,9.0,10.0,6,0.36 +33709,100.0,10.0,10.0,10.0,10.0,10.0,10.0,38,1.99 +65355,100.0,10.0,9.0,10.0,10.0,10.0,10.0,7,0.37 +44883,95.0,10.0,10.0,10.0,10.0,10.0,9.0,53,2.69 +27401,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +41922,86.0,8.0,9.0,10.0,10.0,9.0,8.0,12,0.63 +34257,92.0,9.0,9.0,10.0,10.0,9.0,9.0,13,0.76 +23569,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.65 +63334,,,,,,,,0, +26254,,,,,,,,3,0.15 +58545,81.0,9.0,9.0,9.0,9.0,9.0,8.0,16,1.19 +48496,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.49 +61454,85.0,9.0,7.0,10.0,10.0,10.0,9.0,5,0.32 +40936,98.0,10.0,9.0,9.0,10.0,10.0,10.0,30,1.53 +34980,100.0,10.0,10.0,10.0,9.0,10.0,10.0,6,0.38 +63807,96.0,10.0,10.0,10.0,10.0,10.0,10.0,29,1.68 +47446,97.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.43 +64030,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.14 +39697,94.0,10.0,10.0,10.0,10.0,10.0,9.0,8,0.54 +23326,,,,,,,,0, +38035,95.0,9.0,9.0,10.0,10.0,10.0,9.0,8,0.41 +57093,98.0,10.0,10.0,10.0,10.0,10.0,10.0,46,2.37 +68460,98.0,10.0,10.0,10.0,10.0,10.0,10.0,25,1.33 +17454,100.0,10.0,10.0,10.0,10.0,9.0,10.0,44,2.25 +60849,98.0,10.0,9.0,10.0,10.0,9.0,10.0,12,0.77 +59358,92.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.35 +43228,80.0,9.0,10.0,10.0,10.0,8.0,7.0,5,0.27 +41146,88.0,9.0,9.0,9.0,9.0,9.0,9.0,26,1.38 +13494,100.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.23 +22076,100.0,10.0,10.0,10.0,10.0,10.0,9.0,20,1.04 +31694,95.0,10.0,10.0,10.0,10.0,9.0,10.0,11,0.57 +42725,98.0,10.0,9.0,10.0,10.0,9.0,10.0,26,1.33 +32851,88.0,9.0,9.0,9.0,10.0,8.0,9.0,6,0.32 +26276,93.0,9.0,9.0,10.0,9.0,10.0,9.0,36,1.88 +24443,,,,,,,,0, +35177,98.0,10.0,10.0,10.0,10.0,10.0,10.0,30,1.64 +33024,,,,,,,,0, +35661,90.0,10.0,8.0,10.0,10.0,9.0,9.0,2,0.1 +68955,98.0,10.0,10.0,10.0,10.0,10.0,9.0,34,2.24 +31727,99.0,10.0,10.0,10.0,10.0,10.0,10.0,19,1.08 +41878,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +17371,88.0,9.0,9.0,10.0,10.0,9.0,9.0,17,1.07 +58865,100.0,10.0,10.0,10.0,10.0,8.0,10.0,2,0.12 +67980,97.0,10.0,9.0,10.0,10.0,10.0,9.0,38,1.95 +35368,,,,,,,,0, +21073,94.0,9.0,9.0,10.0,10.0,9.0,9.0,66,3.4 +37924,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.33 +52245,88.0,9.0,9.0,10.0,10.0,8.0,9.0,66,3.46 +30988,100.0,10.0,10.0,10.0,10.0,10.0,10.0,36,1.94 +31957,97.0,10.0,10.0,10.0,10.0,9.0,10.0,62,3.37 +31007,80.0,10.0,6.0,10.0,8.0,8.0,8.0,1,0.05 +66906,92.0,9.0,9.0,9.0,10.0,10.0,9.0,32,1.71 +61523,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.36 +76226,80.0,10.0,6.0,10.0,10.0,10.0,10.0,1,0.05 +1007,,,,,,,,0, +32279,80.0,9.0,9.0,10.0,10.0,10.0,10.0,2,0.11 +49676,90.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.16 +75932,60.0,6.0,8.0,6.0,6.0,8.0,6.0,2,0.1 +19821,,,,,,,,0, +66244,,,,,,,,0, +17869,90.0,9.0,8.0,10.0,10.0,9.0,9.0,6,0.31 +61459,,,,,,,,0, +64196,85.0,8.0,9.0,8.0,9.0,8.0,9.0,32,1.67 +65168,86.0,8.0,8.0,8.0,8.0,9.0,9.0,26,1.35 +4519,95.0,10.0,10.0,10.0,10.0,10.0,10.0,42,2.18 +49482,93.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.16 +65157,97.0,10.0,10.0,10.0,10.0,10.0,10.0,77,4.23 +56870,,,,,,,,0, +15327,,,,,,,,0, +50909,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.33 +63147,97.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.81 +43290,99.0,10.0,10.0,10.0,10.0,10.0,10.0,19,1.1 +71695,96.0,10.0,10.0,10.0,10.0,10.0,9.0,31,1.64 +22096,91.0,9.0,9.0,9.0,10.0,10.0,9.0,26,0.66 +63475,94.0,10.0,10.0,10.0,9.0,9.0,9.0,17,0.42 +6996,94.0,10.0,10.0,10.0,10.0,10.0,10.0,26,1.2 +58776,98.0,10.0,10.0,9.0,9.0,9.0,10.0,9,0.61 +36094,97.0,10.0,9.0,10.0,10.0,10.0,10.0,12,0.61 +44324,98.0,9.0,10.0,9.0,10.0,10.0,9.0,13,0.88 +18078,98.0,10.0,9.0,10.0,10.0,10.0,9.0,26,1.33 +27885,89.0,10.0,9.0,10.0,10.0,10.0,9.0,15,0.8 +39453,91.0,10.0,9.0,9.0,9.0,10.0,9.0,16,0.86 +43196,98.0,10.0,9.0,10.0,10.0,9.0,9.0,8,0.45 +75460,90.0,10.0,10.0,10.0,10.0,7.0,9.0,2,0.12 +39811,,,,,,,,0, +49757,,,,,,,,0, +21009,,,,,,,,0, +62864,80.0,10.0,10.0,10.0,10.0,8.0,6.0,1,0.06 +45044,83.0,8.0,9.0,9.0,9.0,10.0,9.0,7,0.37 +48859,93.0,9.0,9.0,9.0,10.0,10.0,9.0,32,1.72 +60677,,,,,,,,0, +74381,100.0,9.0,9.0,10.0,10.0,10.0,9.0,4,0.24 +35539,97.0,10.0,9.0,10.0,10.0,10.0,10.0,35,1.95 +28858,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.74 +40925,,,,,,,,0, +49991,99.0,10.0,10.0,10.0,10.0,10.0,10.0,34,1.81 +29237,93.0,10.0,9.0,9.0,9.0,9.0,9.0,23,1.21 +77060,93.0,9.0,9.0,10.0,10.0,9.0,10.0,20,1.06 +57318,100.0,10.0,10.0,9.0,10.0,10.0,10.0,8,0.42 +56669,96.0,9.0,9.0,9.0,10.0,10.0,8.0,9,0.48 +12056,93.0,9.0,9.0,9.0,9.0,9.0,10.0,6,0.33 +28829,100.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.95 +6133,76.0,9.0,9.0,9.0,8.0,9.0,8.0,15,0.78 +12316,99.0,10.0,10.0,10.0,10.0,9.0,10.0,23,1.19 +19966,98.0,10.0,10.0,10.0,10.0,10.0,10.0,32,1.76 +42672,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,2.73 +40146,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +66043,60.0,6.0,4.0,6.0,6.0,4.0,4.0,1,0.05 +55668,,,,,,,,0, +29027,94.0,9.0,9.0,10.0,9.0,10.0,10.0,7,0.38 +28738,100.0,10.0,9.0,10.0,10.0,10.0,9.0,9,0.48 +58023,99.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.88 +69880,96.0,10.0,10.0,10.0,10.0,10.0,10.0,27,1.66 +4864,93.0,9.0,10.0,10.0,10.0,10.0,10.0,16,0.85 +41928,96.0,9.0,10.0,9.0,9.0,9.0,10.0,5,0.28 +49657,,,,,,,,0, +23020,99.0,10.0,10.0,9.0,10.0,10.0,10.0,21,1.1 +55335,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.59 +12709,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.16 +34513,91.0,9.0,9.0,9.0,10.0,9.0,9.0,9,0.67 +69206,90.0,9.0,9.0,9.0,10.0,9.0,9.0,28,1.47 +61641,100.0,10.0,10.0,10.0,10.0,9.0,9.0,6,0.32 +73731,88.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.29 +60953,92.0,10.0,9.0,10.0,10.0,10.0,10.0,6,0.32 +4360,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +33052,,,,,,,,0, +44056,97.0,10.0,10.0,10.0,10.0,10.0,10.0,43,2.35 +32185,,,,,,,,0, +74698,100.0,9.0,10.0,9.0,10.0,7.0,10.0,3,0.16 +72633,93.0,10.0,9.0,9.0,10.0,10.0,9.0,7,0.38 +29448,,,,,,,,0, +30553,,,,,,,,0, +39673,,,,,,,,0, +37309,,,,,,,,0, +13280,99.0,10.0,10.0,10.0,10.0,10.0,10.0,40,2.11 +56711,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.17 +58593,98.0,10.0,10.0,10.0,10.0,10.0,9.0,36,2.21 +9797,89.0,10.0,9.0,9.0,9.0,9.0,9.0,25,1.3 +67014,,,,,,,,0, +13285,85.0,9.0,9.0,9.0,9.0,9.0,9.0,22,1.21 +40745,100.0,6.0,6.0,2.0,4.0,6.0,6.0,1,0.08 +20432,,,,,,,,0, +72071,96.0,10.0,9.0,9.0,10.0,10.0,9.0,34,1.88 +7761,96.0,10.0,10.0,10.0,10.0,10.0,10.0,20,1.03 +9101,97.0,10.0,10.0,10.0,10.0,10.0,10.0,43,2.19 +75625,,,,,,,,0, +54833,100.0,10.0,10.0,10.0,10.0,9.0,10.0,9,0.53 +50329,99.0,10.0,10.0,10.0,10.0,9.0,10.0,24,1.24 +58624,90.0,9.0,9.0,10.0,10.0,10.0,10.0,4,0.26 +5205,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.2 +53603,100.0,10.0,9.0,10.0,10.0,10.0,10.0,10,0.52 +31311,85.0,9.0,9.0,10.0,9.0,10.0,8.0,38,1.96 +1187,,,,,,,,0, +52328,100.0,10.0,10.0,8.0,10.0,10.0,10.0,4,0.21 +74823,98.0,10.0,10.0,10.0,10.0,10.0,10.0,40,2.05 +6870,92.0,9.0,10.0,10.0,10.0,10.0,10.0,6,0.31 +47812,97.0,10.0,9.0,10.0,10.0,10.0,10.0,8,0.47 +2989,97.0,10.0,10.0,10.0,10.0,10.0,10.0,30,1.54 +61332,100.0,10.0,10.0,10.0,10.0,9.0,9.0,18,0.98 +38626,80.0,9.0,7.0,10.0,9.0,9.0,9.0,14,0.73 +21758,98.0,10.0,10.0,9.0,10.0,10.0,9.0,13,0.68 +57304,,,,,,,,0, +54934,100.0,10.0,10.0,10.0,10.0,10.0,9.0,18,1.02 +8478,99.0,10.0,10.0,10.0,10.0,10.0,10.0,68,3.54 +14878,93.0,9.0,9.0,10.0,10.0,9.0,9.0,3,0.17 +7233,100.0,10.0,10.0,10.0,10.0,9.0,9.0,21,1.09 +71694,92.0,9.0,9.0,10.0,10.0,9.0,10.0,62,3.44 +72297,79.0,8.0,6.0,9.0,9.0,10.0,8.0,23,1.18 +19810,99.0,10.0,10.0,10.0,10.0,9.0,10.0,20,1.02 +75244,100.0,10.0,10.0,10.0,10.0,9.0,9.0,4,0.24 +11110,86.0,9.0,9.0,8.0,10.0,10.0,8.0,34,1.79 +35671,93.0,10.0,9.0,10.0,10.0,10.0,9.0,148,7.91 +3212,94.0,10.0,9.0,10.0,10.0,10.0,9.0,29,1.52 +8637,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.75 +1737,97.0,10.0,10.0,10.0,10.0,10.0,10.0,40,2.15 +55595,,,,,,,,0, +10258,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +65499,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.12 +36609,100.0,8.0,10.0,10.0,10.0,10.0,10.0,6,0.31 +4909,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.58 +76750,,,,,,,,0, +8633,60.0,10.0,10.0,8.0,10.0,10.0,8.0,1,0.24 +37103,87.0,9.0,9.0,9.0,9.0,9.0,9.0,31,1.6 +54756,96.0,10.0,10.0,10.0,10.0,10.0,9.0,23,1.18 +53599,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.28 +37146,,,,,,,,0, +3649,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.06 +61852,,,,,,,,0, +65304,96.0,10.0,10.0,10.0,10.0,9.0,9.0,75,4.05 +7871,97.0,10.0,10.0,10.0,10.0,10.0,9.0,27,1.4 +22980,,,,,,,,0, +61086,,,,,,,,0, +72422,,,,,,,,0, +17946,,,,,,,,0, +2237,,,,,,,,0, +8385,,,,,,,,0, +22847,90.0,9.0,9.0,10.0,10.0,9.0,9.0,101,5.18 +71780,,,,,,,,0, +17726,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +5322,100.0,10.0,10.0,,10.0,,,1,0.05 +4676,100.0,10.0,10.0,10.0,10.0,8.0,10.0,2,0.12 +31013,89.0,10.0,9.0,10.0,9.0,10.0,9.0,9,0.52 +42240,95.0,10.0,9.0,10.0,10.0,10.0,10.0,11,0.83 +61008,99.0,10.0,10.0,10.0,10.0,10.0,10.0,29,1.58 +51205,90.0,9.0,8.0,9.0,9.0,9.0,9.0,2,0.14 +72095,,,,,,,,0, +75214,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.55 +5152,93.0,10.0,9.0,10.0,10.0,10.0,10.0,18,0.94 +75105,89.0,9.0,9.0,10.0,10.0,9.0,9.0,74,3.87 +71580,95.0,10.0,10.0,10.0,10.0,9.0,9.0,23,1.35 +27051,97.0,10.0,10.0,10.0,10.0,10.0,10.0,38,2.04 +40687,87.0,10.0,10.0,9.0,10.0,10.0,10.0,9,0.47 +19975,97.0,9.0,10.0,10.0,10.0,10.0,10.0,20,1.04 +36956,88.0,9.0,9.0,8.0,9.0,10.0,10.0,6,0.35 +26665,94.0,10.0,9.0,10.0,10.0,9.0,9.0,28,1.61 +71032,,,,,,,,0, +72011,95.0,9.0,10.0,10.0,10.0,10.0,9.0,12,0.85 +29699,,,,,,,,0, +784,100.0,10.0,10.0,10.0,8.0,8.0,8.0,1,0.05 +71326,86.0,9.0,8.0,9.0,9.0,10.0,9.0,99,5.27 +54126,85.0,10.0,8.0,10.0,9.0,9.0,8.0,9,0.48 +62221,,,,,,,,0, +65165,92.0,10.0,10.0,10.0,10.0,9.0,9.0,36,1.88 +13443,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +52164,,,,,,,,0, +33673,98.0,10.0,10.0,10.0,10.0,10.0,10.0,45,2.36 +66185,99.0,10.0,10.0,10.0,10.0,10.0,10.0,30,1.57 +41440,97.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.32 +63184,93.0,10.0,8.0,10.0,10.0,10.0,9.0,4,0.22 +29590,95.0,9.0,10.0,9.0,10.0,10.0,9.0,9,0.49 +58705,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.14 +16944,,,,,,,,0, +51001,,,,,,,,0, +18910,,,,,,,,0, +63234,97.0,10.0,10.0,10.0,10.0,10.0,9.0,13,0.76 +12928,100.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.06 +12744,100.0,9.0,10.0,10.0,10.0,10.0,10.0,3,0.18 +46793,87.0,9.0,9.0,9.0,10.0,10.0,9.0,84,4.4 +36349,,,,,,,,0, +64658,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.1 +41700,93.0,9.0,10.0,10.0,10.0,9.0,9.0,3,0.16 +44620,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.22 +76074,,,,,,,,0, +42582,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +71161,95.0,9.0,10.0,10.0,10.0,8.0,9.0,4,0.22 +32061,,,,,,,,0, +27822,70.0,9.0,9.0,10.0,10.0,10.0,9.0,2,0.12 +68507,100.0,10.0,10.0,10.0,10.0,10.0,9.0,7,1.06 +62139,95.0,10.0,10.0,9.0,9.0,10.0,9.0,27,1.45 +14307,,,,,,,,0, +60493,92.0,9.0,10.0,9.0,9.0,10.0,8.0,17,1.04 +44514,92.0,9.0,10.0,10.0,10.0,9.0,9.0,174,9.06 +51664,94.0,9.0,10.0,10.0,10.0,9.0,10.0,20,1.05 +64743,60.0,10.0,2.0,8.0,10.0,6.0,6.0,2,0.13 +28214,96.0,10.0,10.0,10.0,10.0,10.0,9.0,52,2.9 +34454,97.0,10.0,10.0,10.0,10.0,10.0,9.0,25,1.29 +75889,,,,,,,,0, +29834,90.0,9.0,9.0,9.0,10.0,10.0,9.0,63,3.3 +8516,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.1 +45497,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.32 +30263,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.18 +32660,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.1 +5347,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.41 +76212,90.0,9.0,9.0,10.0,10.0,9.0,9.0,34,1.8 +20641,90.0,9.0,9.0,9.0,9.0,9.0,9.0,16,0.93 +32169,94.0,10.0,10.0,10.0,10.0,10.0,9.0,90,4.86 +42945,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.23 +72882,98.0,10.0,10.0,10.0,10.0,10.0,10.0,28,1.48 +10555,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.54 +4883,100.0,10.0,10.0,9.0,10.0,10.0,10.0,4,0.22 +12838,98.0,10.0,10.0,10.0,10.0,9.0,10.0,13,0.71 +49580,,,,,,,,0, +23846,87.0,9.0,9.0,9.0,9.0,9.0,9.0,139,7.55 +10198,90.0,9.0,10.0,7.0,8.0,9.0,9.0,5,0.27 +7578,97.0,10.0,10.0,10.0,10.0,10.0,10.0,62,3.56 +20956,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.13 +9341,98.0,10.0,10.0,10.0,10.0,9.0,9.0,13,0.72 +20362,90.0,9.0,9.0,10.0,10.0,9.0,9.0,4,0.24 +64682,95.0,10.0,10.0,10.0,9.0,9.0,10.0,11,0.57 +24911,80.0,8.0,8.0,10.0,10.0,10.0,10.0,1,0.06 +4895,92.0,9.0,9.0,10.0,10.0,9.0,9.0,27,1.4 +22923,,,,,,,,1,1.0 +30390,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.16 +46274,,,,,,,,0, +74084,95.0,10.0,10.0,10.0,10.0,10.0,9.0,25,1.37 +38147,79.0,9.0,8.0,9.0,9.0,10.0,8.0,17,0.91 +14658,81.0,9.0,8.0,9.0,10.0,10.0,8.0,20,1.05 +40533,87.0,9.0,9.0,9.0,9.0,10.0,8.0,20,1.06 +21387,94.0,10.0,9.0,10.0,10.0,10.0,10.0,14,0.73 +40963,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.34 +75786,93.0,10.0,9.0,10.0,10.0,9.0,9.0,8,0.51 +11463,83.0,9.0,8.0,9.0,9.0,9.0,9.0,15,0.79 +12086,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.18 +21067,92.0,10.0,9.0,10.0,10.0,9.0,9.0,5,0.98 +18149,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +51746,,,,,,,,0, +57781,94.0,10.0,9.0,10.0,10.0,10.0,10.0,72,3.73 +56064,99.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.83 +34783,92.0,9.0,9.0,10.0,10.0,9.0,10.0,14,0.81 +66273,74.0,8.0,8.0,8.0,9.0,8.0,8.0,25,1.33 +64933,97.0,10.0,10.0,10.0,10.0,10.0,10.0,21,1.09 +750,,,,,,,,0, +61879,95.0,10.0,10.0,10.0,10.0,10.0,9.0,26,1.45 +40179,98.0,10.0,10.0,10.0,10.0,10.0,9.0,10,0.52 +70064,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.43 +7821,98.0,10.0,10.0,10.0,10.0,10.0,10.0,36,1.93 +74680,,,,,,,,0, +13401,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.21 +11329,96.0,10.0,10.0,10.0,10.0,10.0,10.0,29,1.72 +11982,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.15 +26668,,,,,,,,0, +28203,99.0,10.0,10.0,10.0,10.0,10.0,10.0,22,1.25 +50287,98.0,10.0,10.0,10.0,10.0,9.0,10.0,16,1.11 +63742,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.64 +51075,85.0,9.0,9.0,9.0,9.0,9.0,8.0,30,1.67 +44341,,,,,,,,0, +72155,95.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.21 +16960,94.0,9.0,10.0,10.0,10.0,10.0,9.0,8,1.08 +70616,95.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.74 +43658,91.0,10.0,10.0,10.0,10.0,10.0,9.0,11,0.56 +13048,,,,,,,,0, +65883,92.0,9.0,8.0,10.0,10.0,9.0,9.0,30,1.58 +39294,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.89 +47263,96.0,10.0,9.0,10.0,10.0,10.0,10.0,39,2.06 +31253,89.0,10.0,9.0,10.0,10.0,10.0,10.0,10,0.56 +58424,95.0,10.0,9.0,10.0,10.0,10.0,10.0,48,2.5 +57332,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +16089,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.6 +65362,98.0,10.0,10.0,10.0,10.0,10.0,9.0,10,0.53 +58673,96.0,10.0,10.0,10.0,10.0,10.0,10.0,34,1.9 +52405,99.0,10.0,10.0,10.0,10.0,10.0,10.0,31,1.92 +69792,96.0,10.0,10.0,10.0,10.0,9.0,9.0,40,2.09 +59737,95.0,10.0,9.0,10.0,10.0,9.0,9.0,4,0.23 +54872,,,,,,,,0, +24119,99.0,10.0,10.0,10.0,10.0,10.0,9.0,24,1.29 +27204,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.16 +39205,92.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.29 +32806,95.0,9.0,10.0,10.0,10.0,10.0,10.0,4,0.22 +13465,100.0,10.0,9.0,10.0,10.0,10.0,10.0,7,0.37 +44997,,,,,,,,0, +35498,89.0,9.0,10.0,10.0,10.0,9.0,9.0,13,0.77 +48447,,,,,,,,0, +4298,,,,,,,,0, +41011,,,,,,,,0, +73428,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.11 +2752,97.0,10.0,10.0,10.0,10.0,10.0,10.0,21,1.08 +15512,,,,,,,,0, +10392,,,,,,,,0, +38589,93.0,10.0,9.0,10.0,10.0,9.0,9.0,27,1.44 +73030,,,,,,,,0, +13463,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.7 +74110,,,,,,,,0, +19544,,,,,,,,0, +21596,,,,,,,,0, +71329,100.0,10.0,10.0,10.0,8.0,10.0,10.0,2,0.1 +2179,,,,,,,,0, +53537,98.0,10.0,10.0,10.0,10.0,10.0,10.0,26,1.36 +62311,80.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.16 +30080,100.0,10.0,10.0,10.0,10.0,10.0,10.0,43,2.28 +48605,88.0,9.0,9.0,9.0,9.0,9.0,9.0,14,0.79 +7995,80.0,10.0,10.0,10.0,8.0,10.0,10.0,5,0.27 +68495,93.0,9.0,10.0,9.0,10.0,10.0,10.0,3,0.17 +28222,93.0,9.0,10.0,10.0,10.0,10.0,10.0,8,0.42 +74829,,,,,,,,0, +10766,93.0,10.0,10.0,9.0,10.0,9.0,9.0,12,0.65 +21187,100.0,10.0,10.0,,,,,1,0.05 +67781,98.0,10.0,10.0,9.0,10.0,10.0,10.0,11,0.73 +76161,100.0,10.0,10.0,10.0,10.0,9.0,10.0,14,0.92 +5912,,,,,,,,0, +30372,89.0,9.0,9.0,10.0,10.0,9.0,9.0,31,1.77 +6700,98.0,10.0,10.0,10.0,10.0,10.0,10.0,67,3.63 +48771,100.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.34 +32429,100.0,10.0,10.0,9.0,10.0,10.0,10.0,14,0.77 +62624,96.0,10.0,10.0,10.0,10.0,10.0,10.0,53,3.24 +77051,98.0,10.0,10.0,10.0,10.0,10.0,9.0,18,0.96 +51398,92.0,9.0,9.0,10.0,10.0,10.0,9.0,18,0.96 +8121,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.48 +60382,,,,,,,,0, +76566,91.0,10.0,10.0,10.0,10.0,9.0,9.0,73,3.97 +7149,94.0,10.0,10.0,9.0,9.0,9.0,9.0,14,0.97 +54504,,,,,,,,0, +27903,99.0,10.0,10.0,10.0,10.0,9.0,10.0,34,1.76 +60225,,,,,,,,0, +59329,87.0,9.0,8.0,9.0,10.0,10.0,9.0,6,0.35 +50169,94.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.43 +52037,94.0,10.0,9.0,10.0,10.0,9.0,9.0,8,0.42 +24164,,,,,,,,0, +53208,98.0,10.0,10.0,10.0,10.0,10.0,10.0,36,1.9 +55499,90.0,9.0,9.0,10.0,9.0,8.0,9.0,93,4.84 +6563,88.0,9.0,9.0,9.0,10.0,10.0,9.0,62,3.27 +57204,90.0,9.0,9.0,9.0,9.0,9.0,9.0,145,7.49 +8207,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.16 +74435,88.0,9.0,8.0,9.0,9.0,9.0,9.0,5,0.26 +2232,88.0,9.0,9.0,9.0,10.0,9.0,9.0,135,6.99 +56210,98.0,10.0,10.0,10.0,10.0,10.0,10.0,33,1.79 +60653,97.0,10.0,10.0,10.0,10.0,9.0,10.0,20,1.12 +72923,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.61 +61255,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.23 +46177,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +37256,96.0,10.0,9.0,10.0,10.0,9.0,9.0,5,0.29 +30940,98.0,10.0,10.0,10.0,10.0,9.0,10.0,37,1.95 +74322,97.0,10.0,10.0,10.0,10.0,10.0,10.0,48,3.22 +55609,93.0,9.0,9.0,9.0,9.0,9.0,9.0,14,0.72 +29012,97.0,10.0,10.0,10.0,10.0,10.0,10.0,132,6.83 +36538,87.0,9.0,9.0,9.0,10.0,10.0,8.0,18,1.25 +24790,80.0,10.0,8.0,9.0,10.0,9.0,9.0,3,0.16 +44441,85.0,9.0,10.0,9.0,9.0,10.0,8.0,8,0.43 +18356,97.0,10.0,10.0,10.0,10.0,10.0,9.0,19,1.01 +4561,93.0,10.0,9.0,10.0,10.0,10.0,10.0,7,0.39 +52550,100.0,10.0,10.0,10.0,10.0,10.0,10.0,38,2.14 +2506,85.0,9.0,10.0,10.0,10.0,10.0,9.0,11,0.61 +57524,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.38 +9482,,,,,,,,0, +7669,80.0,8.0,9.0,10.0,9.0,10.0,9.0,3,0.17 +50271,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.47 +38075,96.0,10.0,10.0,10.0,10.0,9.0,9.0,41,2.18 +70566,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +9480,68.0,8.0,6.0,8.0,8.0,7.0,7.0,8,0.45 +38986,89.0,9.0,9.0,10.0,9.0,9.0,9.0,9,0.48 +1652,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +68903,98.0,10.0,10.0,10.0,10.0,10.0,9.0,10,0.65 +48062,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +13957,100.0,10.0,10.0,,10.0,,,1,0.06 +20915,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.21 +44698,90.0,9.0,7.0,9.0,10.0,10.0,9.0,2,0.1 +57948,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +11354,96.0,10.0,10.0,9.0,10.0,9.0,10.0,10,0.54 +13558,90.0,9.0,9.0,10.0,10.0,10.0,9.0,10,1.45 +55756,,,,,,,,0, +24202,98.0,10.0,10.0,10.0,10.0,9.0,9.0,13,0.69 +57809,93.0,10.0,10.0,9.0,9.0,9.0,9.0,31,1.61 +3106,91.0,10.0,10.0,10.0,10.0,10.0,9.0,15,0.82 +32785,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.12 +45579,97.0,9.0,10.0,10.0,10.0,10.0,9.0,16,0.85 +39728,100.0,10.0,10.0,9.0,10.0,10.0,10.0,7,0.38 +32934,99.0,10.0,10.0,10.0,9.0,10.0,10.0,14,0.75 +41124,100.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.97 +46032,83.0,9.0,8.0,9.0,10.0,10.0,9.0,17,0.9 +62055,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.1 +37735,84.0,9.0,9.0,9.0,9.0,9.0,8.0,33,1.77 +48735,,,,,,,,0, +28730,,,,,,,,0, +310,89.0,9.0,10.0,9.0,9.0,10.0,9.0,17,0.9 +73969,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.29 +55453,93.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.65 +37773,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.72 +25062,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.16 +17630,99.0,10.0,10.0,10.0,10.0,10.0,9.0,15,0.8 +69831,70.0,7.0,7.0,7.0,7.0,8.0,7.0,4,0.22 +39961,92.0,9.0,10.0,10.0,10.0,10.0,9.0,10,0.59 +24296,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.11 +68047,97.0,10.0,10.0,10.0,10.0,9.0,9.0,18,0.96 +17735,87.0,9.0,8.0,9.0,9.0,10.0,9.0,19,1.06 +604,96.0,10.0,9.0,10.0,10.0,9.0,10.0,43,2.26 +54307,87.0,10.0,9.0,10.0,10.0,9.0,10.0,4,0.24 +7198,99.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.84 +25916,97.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.7 +20359,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +12137,92.0,10.0,9.0,10.0,10.0,10.0,9.0,45,2.35 +38502,97.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.87 +7502,80.0,9.0,7.0,9.0,8.0,9.0,7.0,3,0.59 +68803,96.0,10.0,10.0,10.0,10.0,10.0,10.0,42,2.24 +36869,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.11 +51752,76.0,8.0,9.0,9.0,9.0,9.0,8.0,24,1.25 +20757,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.17 +30310,,,,,,,,0, +43520,97.0,9.0,10.0,10.0,10.0,10.0,10.0,30,1.8 +8316,99.0,10.0,10.0,10.0,10.0,10.0,10.0,20,1.06 +29981,99.0,10.0,10.0,10.0,10.0,9.0,10.0,33,3.82 +36719,99.0,10.0,10.0,10.0,10.0,10.0,10.0,30,1.78 +12680,87.0,9.0,8.0,10.0,10.0,8.0,9.0,12,0.72 +41804,91.0,9.0,9.0,10.0,10.0,9.0,9.0,17,0.93 +75554,,,,,,,,0, +5311,,,,,,,,0, +73946,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.14 +22156,76.0,9.0,8.0,8.0,8.0,10.0,8.0,14,0.75 +53610,89.0,9.0,9.0,9.0,10.0,9.0,9.0,24,1.34 +20454,96.0,10.0,10.0,10.0,10.0,10.0,9.0,33,1.74 +7801,89.0,9.0,10.0,10.0,10.0,9.0,9.0,69,3.58 +6333,93.0,9.0,9.0,10.0,10.0,10.0,9.0,8,0.46 +73236,100.0,10.0,10.0,10.0,10.0,10.0,10.0,27,1.86 +55003,89.0,9.0,9.0,10.0,10.0,9.0,9.0,106,5.48 +55362,98.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.9 +26391,,,,,,,,0, +75339,,,,,,,,0, +59432,83.0,9.0,8.0,9.0,9.0,9.0,9.0,36,1.94 +42994,90.0,9.0,9.0,10.0,10.0,10.0,9.0,8,0.42 +26924,83.0,10.0,8.0,10.0,10.0,9.0,9.0,9,0.47 +834,70.0,8.0,7.0,8.0,10.0,10.0,9.0,2,0.79 +46227,94.0,10.0,10.0,10.0,10.0,9.0,9.0,33,1.82 +32357,93.0,9.0,9.0,9.0,9.0,10.0,10.0,11,0.57 +1908,80.0,9.0,8.0,7.0,7.0,8.0,8.0,19,1.01 +18580,93.0,9.0,9.0,9.0,9.0,9.0,9.0,27,2.75 +9778,100.0,10.0,10.0,10.0,10.0,8.0,9.0,2,0.11 +13860,89.0,10.0,9.0,10.0,10.0,10.0,9.0,16,0.85 +71490,97.0,10.0,10.0,10.0,10.0,9.0,10.0,50,2.68 +51737,97.0,9.0,9.0,10.0,10.0,10.0,10.0,7,0.39 +17865,100.0,10.0,10.0,10.0,10.0,10.0,10.0,23,1.39 +21585,95.0,9.0,9.0,10.0,10.0,9.0,9.0,37,2.05 +66638,80.0,7.0,10.0,10.0,10.0,5.0,8.0,2,0.12 +69057,,,,,,,,0, +22188,85.0,9.0,8.0,9.0,9.0,9.0,9.0,35,1.93 +70142,,,,,,,,0, +26598,94.0,9.0,9.0,10.0,10.0,10.0,9.0,40,2.07 +29122,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.3 +54629,100.0,9.0,9.0,10.0,9.0,8.0,9.0,3,0.24 +45993,85.0,9.0,8.0,9.0,9.0,9.0,8.0,15,0.84 +46429,100.0,10.0,10.0,10.0,10.0,10.0,10.0,52,2.72 +66159,96.0,10.0,10.0,10.0,10.0,9.0,10.0,25,4.49 +32291,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.11 +26887,97.0,10.0,9.0,10.0,10.0,9.0,10.0,13,1.13 +26015,94.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.53 +46844,100.0,9.0,9.0,10.0,10.0,9.0,10.0,7,0.38 +22446,,,,,,,,3,0.16 +53957,,,,,,,,0, +10491,92.0,10.0,8.0,10.0,10.0,10.0,9.0,6,0.34 +69257,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.09 +39610,78.0,7.0,9.0,7.0,7.0,9.0,8.0,31,1.93 +47152,80.0,10.0,10.0,,10.0,10.0,10.0,2,0.12 +51647,95.0,10.0,10.0,9.0,10.0,9.0,9.0,19,1.05 +62902,80.0,10.0,8.0,10.0,10.0,8.0,10.0,2,0.1 +70268,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +14372,96.0,10.0,10.0,10.0,10.0,10.0,9.0,28,1.47 +41275,96.0,9.0,9.0,10.0,10.0,10.0,9.0,28,1.45 +36872,93.0,9.0,10.0,10.0,10.0,10.0,9.0,15,0.97 +68110,80.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.06 +2730,80.0,7.0,7.0,10.0,7.0,10.0,7.0,3,0.17 +9203,50.0,6.0,6.0,5.0,6.0,5.0,6.0,2,0.44 +13830,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.13 +68611,100.0,10.0,10.0,10.0,10.0,10.0,10.0,18,0.96 +57792,,,,,,,,0, +4255,93.0,9.0,10.0,9.0,9.0,9.0,9.0,3,0.17 +46173,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.22 +30537,,,,,,,,0, +75950,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.71 +28432,,,,,,,,0, +76411,96.0,10.0,10.0,10.0,10.0,10.0,10.0,29,1.54 +40396,94.0,10.0,9.0,10.0,10.0,10.0,10.0,66,3.61 +19286,100.0,10.0,10.0,10.0,10.0,10.0,10.0,48,2.51 +60269,,,,,,,,0, +7058,92.0,10.0,9.0,10.0,10.0,9.0,9.0,20,1.07 +56128,86.0,9.0,9.0,9.0,9.0,10.0,9.0,35,1.85 +32420,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +69181,91.0,10.0,9.0,10.0,9.0,9.0,10.0,19,1.13 +16279,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.29 +16135,,,,,,,,0, +56170,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.5 +33085,95.0,9.0,10.0,9.0,10.0,9.0,10.0,5,0.31 +70025,,,,,,,,0, +10866,100.0,10.0,10.0,8.0,10.0,8.0,10.0,1,0.05 +21201,93.0,10.0,9.0,10.0,10.0,9.0,9.0,43,2.37 +49745,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.49 +42070,,,,,,,,0, +20919,98.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.84 +26695,90.0,9.0,8.0,9.0,10.0,9.0,9.0,2,0.11 +11941,,,,,,,,1,0.05 +1563,99.0,10.0,10.0,10.0,10.0,10.0,10.0,30,1.61 +44217,85.0,9.0,8.0,10.0,9.0,9.0,8.0,4,0.25 +35084,,,,,,,,0, +68414,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +25500,100.0,10.0,10.0,10.0,10.0,9.0,10.0,14,0.75 +41084,,,,,,,,0, +37199,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.35 +9355,97.0,9.0,9.0,9.0,9.0,9.0,9.0,14,0.74 +5365,,,,,,,,0, +7631,92.0,9.0,9.0,10.0,10.0,9.0,9.0,35,1.83 +13386,96.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.65 +43683,100.0,10.0,10.0,10.0,10.0,9.0,10.0,10,0.63 +50698,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.22 +17380,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.64 +37654,,,,,,,,0, +49283,,,,,,,,0, +61565,75.0,7.0,8.0,8.0,9.0,9.0,7.0,4,0.21 +60650,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.13 +42006,99.0,10.0,10.0,10.0,10.0,10.0,10.0,29,1.53 +54715,80.0,8.0,7.0,9.0,8.0,10.0,8.0,6,0.34 +20623,96.0,10.0,10.0,10.0,10.0,10.0,10.0,28,1.51 +63242,98.0,10.0,10.0,10.0,10.0,9.0,10.0,11,0.63 +62200,90.0,9.0,9.0,9.0,9.0,10.0,9.0,8,0.47 +13257,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.13 +66233,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.13 +35499,92.0,10.0,9.0,10.0,10.0,9.0,10.0,5,0.26 +17239,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.49 +48427,94.0,10.0,9.0,10.0,10.0,9.0,9.0,80,4.2 +64854,,,,,,,,0, +63631,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.42 +16404,98.0,10.0,10.0,10.0,10.0,10.0,9.0,28,2.28 +71962,90.0,9.0,10.0,9.0,10.0,9.0,9.0,2,0.41 +16257,,,,,,,,0, +629,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.34 +18343,92.0,9.0,9.0,9.0,9.0,9.0,9.0,36,2.02 +10619,85.0,9.0,9.0,9.0,9.0,9.0,8.0,25,1.32 +52415,100.0,9.0,10.0,9.0,10.0,9.0,9.0,4,0.21 +45565,94.0,10.0,9.0,10.0,10.0,10.0,10.0,10,1.84 +71633,94.0,9.0,9.0,9.0,10.0,9.0,9.0,98,5.1 +66361,100.0,8.0,10.0,8.0,4.0,10.0,10.0,1,0.06 +55611,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.32 +13584,96.0,10.0,9.0,10.0,10.0,10.0,9.0,10,0.58 +14517,88.0,9.0,9.0,9.0,10.0,9.0,9.0,74,3.92 +42097,96.0,10.0,10.0,10.0,10.0,10.0,9.0,32,1.66 +23861,95.0,10.0,10.0,10.0,10.0,10.0,9.0,8,0.46 +34371,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.19 +4727,,,,,,,,0, +18283,94.0,10.0,9.0,10.0,10.0,10.0,9.0,24,1.3 +1011,,,,,,,,1,0.06 +36261,100.0,10.0,10.0,10.0,10.0,9.0,9.0,2,0.11 +59879,,,,,,,,0, +73454,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.48 +73256,100.0,10.0,10.0,10.0,10.0,10.0,10.0,25,1.42 +75928,86.0,9.0,9.0,10.0,10.0,10.0,8.0,34,1.76 +24354,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.71 +4653,97.0,10.0,9.0,10.0,10.0,10.0,10.0,31,1.66 +65692,,,,,,,,0, +68283,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.73 +26144,100.0,10.0,10.0,8.0,10.0,10.0,10.0,1,0.19 +25423,92.0,9.0,10.0,10.0,10.0,9.0,9.0,13,0.68 +8296,91.0,9.0,9.0,9.0,9.0,10.0,9.0,15,0.87 +59428,95.0,10.0,10.0,10.0,10.0,9.0,10.0,95,5.04 +13760,91.0,9.0,9.0,10.0,10.0,9.0,9.0,35,1.98 +74866,80.0,8.0,10.0,8.0,8.0,8.0,8.0,1,0.06 +37416,99.0,10.0,10.0,10.0,10.0,9.0,10.0,30,1.6 +41499,97.0,10.0,10.0,10.0,10.0,10.0,10.0,31,1.66 +46538,96.0,10.0,10.0,10.0,10.0,9.0,10.0,26,1.36 +14172,96.0,10.0,9.0,10.0,10.0,10.0,10.0,78,4.24 +8556,96.0,10.0,9.0,10.0,10.0,10.0,10.0,10,0.55 +10199,98.0,10.0,10.0,10.0,10.0,10.0,10.0,51,2.67 +76596,96.0,10.0,9.0,10.0,10.0,10.0,9.0,14,0.75 +60098,97.0,10.0,10.0,9.0,10.0,8.0,10.0,11,0.6 +9716,,,,,,,,0, +26837,80.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +14842,86.0,9.0,9.0,9.0,9.0,9.0,9.0,52,2.71 +2247,84.0,9.0,8.0,10.0,10.0,10.0,8.0,5,0.27 +14955,,,,,,,,0, +75466,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.64 +49653,98.0,10.0,9.0,10.0,10.0,9.0,10.0,53,2.96 +73292,,,,,,,,0, +40950,97.0,10.0,10.0,10.0,10.0,10.0,10.0,32,1.68 +50806,90.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.26 +25768,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.64 +22481,95.0,10.0,9.0,9.0,10.0,9.0,9.0,25,1.31 +1515,,,,,,,,0, +41471,96.0,10.0,10.0,10.0,10.0,10.0,10.0,24,1.26 +75997,95.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.48 +33727,86.0,9.0,9.0,8.0,9.0,9.0,9.0,21,1.1 +43800,80.0,10.0,10.0,10.0,10.0,6.0,8.0,1,0.05 +15365,96.0,9.0,10.0,10.0,10.0,10.0,10.0,12,0.68 +43805,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.41 +14575,95.0,10.0,9.0,9.0,10.0,8.0,9.0,5,0.26 +36756,97.0,10.0,9.0,10.0,10.0,9.0,9.0,9,0.49 +15123,80.0,9.0,7.0,10.0,8.0,10.0,8.0,5,0.28 +8003,,,,,,,,0, +61723,94.0,9.0,10.0,9.0,10.0,10.0,9.0,20,1.11 +52557,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.12 +67072,,,,,,,,0, +28721,,,,,,,,0, +50604,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +62001,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.23 +4072,90.0,10.0,10.0,10.0,10.0,9.0,9.0,5,0.27 +58487,91.0,9.0,9.0,9.0,10.0,9.0,9.0,14,0.74 +14659,97.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.75 +75270,90.0,9.0,8.0,10.0,10.0,10.0,9.0,13,0.7 +54954,89.0,9.0,9.0,9.0,9.0,9.0,9.0,23,1.23 +50713,93.0,10.0,9.0,10.0,10.0,10.0,8.0,3,0.2 +53966,91.0,9.0,9.0,9.0,9.0,9.0,9.0,44,2.33 +67597,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +74427,99.0,10.0,10.0,10.0,10.0,9.0,10.0,27,1.47 +9373,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +2593,96.0,10.0,10.0,10.0,9.0,9.0,10.0,11,0.59 +50510,96.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.32 +54678,100.0,8.0,8.0,10.0,10.0,10.0,10.0,1,0.05 +25719,80.0,8.0,7.0,9.0,10.0,8.0,7.0,16,0.97 +21188,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +5816,,,,,,,,1,0.12 +24476,97.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.64 +38882,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.6 +74242,100.0,10.0,10.0,9.0,10.0,10.0,10.0,3,0.16 +1535,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.32 +36193,98.0,10.0,10.0,10.0,10.0,10.0,9.0,39,2.06 +43175,93.0,10.0,9.0,9.0,10.0,9.0,9.0,4,0.23 +46566,100.0,10.0,10.0,10.0,10.0,10.0,10.0,68,3.59 +14287,93.0,9.0,10.0,10.0,10.0,10.0,9.0,3,0.29 +72349,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.06 +31339,94.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.75 +71508,93.0,9.0,9.0,10.0,9.0,10.0,9.0,4,0.21 +54620,100.0,10.0,10.0,10.0,10.0,8.0,10.0,10,0.54 +70347,98.0,10.0,10.0,10.0,10.0,10.0,10.0,91,5.14 +74061,,,,,,,,0, +22664,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +68138,95.0,10.0,9.0,10.0,10.0,10.0,9.0,23,1.21 +28855,94.0,10.0,9.0,10.0,10.0,9.0,10.0,28,1.52 +47079,94.0,10.0,9.0,10.0,10.0,10.0,9.0,15,1.07 +16181,99.0,10.0,10.0,10.0,10.0,9.0,10.0,17,0.95 +32289,93.0,10.0,9.0,10.0,10.0,10.0,9.0,22,1.24 +22386,86.0,9.0,9.0,9.0,9.0,9.0,9.0,87,4.85 +22674,92.0,10.0,10.0,9.0,9.0,9.0,10.0,23,1.25 +41810,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.11 +52616,95.0,10.0,9.0,9.0,10.0,8.0,9.0,11,0.58 +15874,89.0,10.0,10.0,10.0,9.0,9.0,9.0,28,1.54 +60507,92.0,10.0,9.0,10.0,10.0,10.0,9.0,17,1.83 +37213,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.12 +5476,70.0,8.0,4.0,10.0,10.0,10.0,10.0,2,0.11 +68717,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.21 +63704,,,,,,,,0, +27320,100.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.69 +39703,,,,,,,,0, +54132,,,,,,,,0, +53626,,,,,,,,0, +9430,99.0,10.0,10.0,10.0,10.0,10.0,10.0,45,2.42 +9004,,,,,,,,0, +266,99.0,10.0,10.0,10.0,10.0,10.0,9.0,25,1.46 +37330,,,,,,,,0, +57372,,,,,,,,0, +57003,73.0,7.0,7.0,7.0,7.0,10.0,7.0,3,0.25 +18413,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.75 +70021,,,,,,,,0, +8373,85.0,9.0,8.0,10.0,9.0,9.0,9.0,36,1.99 +58225,95.0,9.0,9.0,10.0,10.0,8.0,9.0,5,0.27 +58232,98.0,10.0,10.0,10.0,10.0,10.0,9.0,35,1.91 +71787,88.0,10.0,9.0,9.0,9.0,9.0,9.0,19,1.0 +31872,99.0,10.0,10.0,10.0,10.0,10.0,10.0,93,5.01 +8055,96.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.29 +76559,97.0,10.0,10.0,10.0,10.0,10.0,10.0,46,2.47 +51656,,,,,,,,0, +46058,87.0,9.0,9.0,10.0,9.0,9.0,10.0,14,0.91 +26714,100.0,10.0,10.0,10.0,10.0,10.0,7.0,4,0.21 +57599,,,,,,,,0, +40374,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.14 +44845,92.0,10.0,9.0,10.0,10.0,10.0,10.0,6,0.35 +55065,97.0,10.0,10.0,10.0,10.0,10.0,10.0,19,1.01 +43733,94.0,10.0,10.0,10.0,10.0,10.0,9.0,22,1.24 +21114,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.09 +6659,91.0,10.0,9.0,9.0,9.0,10.0,9.0,14,0.8 +61678,93.0,10.0,9.0,9.0,9.0,10.0,9.0,14,0.88 +9622,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.3 +46787,100.0,10.0,10.0,10.0,10.0,8.0,10.0,8,0.45 +61794,60.0,6.0,5.0,8.0,7.0,7.0,6.0,3,0.16 +32337,99.0,10.0,10.0,10.0,10.0,10.0,10.0,20,1.07 +40099,93.0,9.0,10.0,10.0,9.0,9.0,9.0,3,0.21 +56355,90.0,10.0,10.0,10.0,8.0,10.0,9.0,5,0.27 +31937,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.19 +53211,96.0,10.0,10.0,10.0,10.0,10.0,9.0,16,0.92 +41411,90.0,10.0,9.0,9.0,10.0,9.0,9.0,64,3.52 +3532,93.0,10.0,9.0,9.0,10.0,10.0,9.0,20,1.15 +11641,86.0,9.0,9.0,9.0,9.0,9.0,9.0,8,0.46 +45849,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.57 +73224,73.0,10.0,7.0,10.0,10.0,8.0,10.0,3,0.19 +42349,87.0,9.0,8.0,9.0,9.0,9.0,8.0,90,4.76 +34493,93.0,9.0,9.0,10.0,10.0,10.0,10.0,18,0.95 +50966,96.0,10.0,9.0,10.0,10.0,10.0,10.0,11,0.58 +67468,90.0,10.0,9.0,9.0,9.0,10.0,9.0,22,1.22 +60130,100.0,10.0,10.0,9.0,10.0,10.0,10.0,5,0.3 +59620,,,,,,,,0, +61409,,,,,,,,0, +10755,97.0,10.0,10.0,10.0,10.0,9.0,10.0,20,1.29 +44757,96.0,10.0,10.0,10.0,10.0,10.0,9.0,44,2.35 +35166,90.0,9.0,9.0,10.0,9.0,9.0,9.0,6,0.34 +62998,94.0,10.0,9.0,10.0,10.0,9.0,9.0,33,1.79 +25867,99.0,10.0,10.0,10.0,10.0,10.0,10.0,197,10.3 +51996,,,,,,,,0, +61281,,,,,,,,0, +53500,97.0,10.0,10.0,10.0,10.0,10.0,9.0,14,0.76 +63437,87.0,9.0,9.0,9.0,9.0,9.0,9.0,11,3.3 +19197,80.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.23 +25659,96.0,10.0,10.0,10.0,9.0,9.0,10.0,5,0.29 +32353,,,,,,,,0, +64442,100.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.25 +70383,93.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.16 +45987,90.0,9.0,9.0,10.0,10.0,9.0,10.0,2,0.22 +70327,99.0,10.0,10.0,10.0,10.0,9.0,9.0,15,0.86 +49756,97.0,9.0,8.0,10.0,10.0,9.0,10.0,7,0.4 +35907,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.29 +23159,,,,,,,,0, +14953,93.0,9.0,10.0,10.0,10.0,8.0,9.0,27,1.44 +70415,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.33 +4157,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.32 +59979,99.0,10.0,10.0,10.0,10.0,10.0,10.0,89,4.72 +40769,,,,,,,,0, +50622,96.0,10.0,10.0,10.0,10.0,9.0,10.0,24,1.27 +48476,98.0,10.0,10.0,10.0,10.0,10.0,10.0,34,1.85 +27435,,,,,,,,0, +60267,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.29 +19326,85.0,9.0,9.0,10.0,9.0,9.0,9.0,66,4.47 +67214,100.0,10.0,10.0,9.0,10.0,10.0,10.0,3,0.17 +8447,87.0,9.0,8.0,10.0,10.0,9.0,9.0,5,0.26 +44126,89.0,9.0,9.0,9.0,9.0,9.0,9.0,25,1.3 +504,76.0,7.0,9.0,7.0,8.0,9.0,8.0,12,0.64 +64917,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.53 +73702,94.0,10.0,10.0,10.0,10.0,10.0,10.0,40,2.12 +40102,99.0,10.0,10.0,10.0,10.0,10.0,10.0,93,4.94 +14249,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.76 +17361,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.43 +69150,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +13781,,,,,,,,0, +55550,96.0,9.0,10.0,10.0,10.0,10.0,9.0,11,0.77 +48497,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.44 +19824,67.0,7.0,9.0,9.0,9.0,10.0,7.0,3,0.17 +22049,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.47 +50398,70.0,10.0,5.0,10.0,10.0,9.0,8.0,2,0.12 +20422,93.0,9.0,10.0,10.0,10.0,10.0,10.0,3,0.22 +46458,88.0,9.0,9.0,8.0,10.0,9.0,9.0,24,1.3 +20960,90.0,9.0,10.0,8.0,9.0,10.0,8.0,2,0.59 +35263,85.0,8.0,9.0,8.0,9.0,9.0,8.0,26,1.41 +5580,90.0,9.0,9.0,9.0,9.0,10.0,9.0,21,1.23 +14126,94.0,10.0,10.0,10.0,10.0,10.0,9.0,24,1.38 +41381,60.0,6.0,7.0,8.0,6.0,10.0,10.0,2,0.11 +44888,98.0,10.0,10.0,10.0,10.0,9.0,10.0,18,1.0 +15350,80.0,9.0,8.0,9.0,9.0,10.0,8.0,9,0.7 +6401,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.28 +54383,,,,,,,,0, +36297,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.21 +65745,93.0,10.0,9.0,10.0,10.0,10.0,9.0,11,0.59 +50640,90.0,10.0,9.0,9.0,9.0,9.0,9.0,128,6.73 +63216,,,,,,,,0, +20762,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.24 +48072,96.0,10.0,10.0,10.0,10.0,9.0,10.0,33,1.74 +17980,87.0,9.0,9.0,10.0,10.0,10.0,9.0,39,2.22 +70424,100.0,10.0,10.0,,,,,1,0.05 +10366,100.0,10.0,10.0,10.0,10.0,10.0,10.0,18,1.04 +61734,98.0,10.0,10.0,10.0,10.0,8.0,10.0,14,0.77 +23053,91.0,10.0,9.0,10.0,10.0,8.0,9.0,28,1.51 +25330,,,,,,,,0, +40938,99.0,10.0,10.0,10.0,10.0,9.0,9.0,20,1.12 +12070,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.19 +54001,80.0,8.0,3.0,6.0,7.0,7.0,8.0,3,0.16 +69467,94.0,10.0,10.0,10.0,10.0,10.0,10.0,28,1.48 +67398,,,,,,,,0, +47582,96.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.31 +6553,,,,,,,,0, +58082,95.0,10.0,10.0,10.0,10.0,9.0,9.0,12,0.66 +70873,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.11 +66341,89.0,9.0,8.0,9.0,10.0,8.0,10.0,12,1.94 +22641,,,,,,,,0, +68259,93.0,9.0,10.0,9.0,10.0,10.0,9.0,13,0.73 +76759,100.0,10.0,10.0,10.0,10.0,10.0,10.0,18,1.17 +48808,97.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.82 +5780,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.66 +14694,99.0,10.0,10.0,10.0,10.0,10.0,10.0,39,2.05 +73064,97.0,9.0,10.0,10.0,10.0,10.0,9.0,12,0.7 +22047,97.0,10.0,10.0,10.0,10.0,9.0,10.0,13,0.71 +1385,,,,,,,,0, +24948,84.0,9.0,8.0,9.0,9.0,9.0,9.0,21,1.16 +25063,82.0,8.0,9.0,9.0,9.0,9.0,9.0,13,0.84 +43540,86.0,9.0,9.0,9.0,10.0,10.0,9.0,7,0.41 +46904,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.82 +34602,90.0,9.0,10.0,10.0,9.0,9.0,9.0,39,2.09 +36120,,,,,,,,0, +76248,86.0,9.0,9.0,8.0,8.0,9.0,9.0,17,0.93 +65002,83.0,9.0,8.0,9.0,8.0,9.0,8.0,7,0.45 +45587,90.0,9.0,9.0,10.0,10.0,10.0,9.0,28,1.48 +1910,91.0,10.0,9.0,10.0,10.0,9.0,9.0,53,2.84 +71316,99.0,10.0,10.0,10.0,10.0,10.0,10.0,32,1.95 +10364,95.0,9.0,9.0,10.0,10.0,10.0,10.0,33,1.75 +40408,93.0,10.0,9.0,10.0,9.0,10.0,9.0,20,1.3 +20088,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.12 +4960,,,,,,,,0, +22917,,,,,,,,0, +45707,,,,,,,,0, +22955,91.0,10.0,10.0,10.0,9.0,10.0,9.0,16,0.87 +30293,99.0,10.0,10.0,10.0,10.0,10.0,10.0,50,2.72 +70688,90.0,10.0,10.0,9.0,9.0,10.0,9.0,68,3.6 +29280,,,,,,,,0, +61959,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.42 +38248,95.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.81 +64052,87.0,9.0,9.0,9.0,9.0,10.0,9.0,32,1.81 +43460,90.0,9.0,9.0,9.0,9.0,10.0,9.0,8,0.43 +68450,85.0,9.0,9.0,9.0,9.0,10.0,8.0,23,1.23 +66285,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.45 +45519,,,,,,,,0, +73413,87.0,9.0,9.0,10.0,10.0,10.0,9.0,33,1.91 +1080,,,,,,,,0, +10703,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.12 +17859,91.0,9.0,10.0,10.0,9.0,10.0,9.0,50,2.78 +18327,97.0,10.0,10.0,10.0,10.0,9.0,9.0,12,0.69 +51033,,,,,,,,0, +36569,90.0,9.0,9.0,10.0,10.0,9.0,9.0,37,2.32 +9796,100.0,10.0,10.0,10.0,10.0,10.0,8.0,5,0.29 +43858,98.0,10.0,10.0,10.0,10.0,10.0,10.0,26,1.4 +71089,82.0,9.0,8.0,9.0,9.0,10.0,8.0,22,1.17 +7800,99.0,10.0,10.0,10.0,10.0,10.0,10.0,50,2.79 +38120,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +2047,97.0,9.0,10.0,10.0,9.0,10.0,9.0,18,1.11 +76057,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.59 +37060,,,,,,,,0, +73592,81.0,9.0,8.0,10.0,10.0,10.0,8.0,16,0.86 +42268,,,,,,,,0, +42648,,,,,,,,1,0.14 +37227,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.21 +69253,74.0,8.0,8.0,9.0,8.0,9.0,8.0,7,0.38 +36458,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.27 +47174,90.0,9.0,9.0,9.0,9.0,10.0,9.0,7,0.39 +18641,97.0,10.0,9.0,10.0,10.0,9.0,10.0,13,0.79 +10823,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +26508,100.0,10.0,10.0,10.0,10.0,10.0,10.0,16,3.18 +24584,88.0,9.0,9.0,10.0,10.0,10.0,9.0,22,1.46 +75192,,,,,,,,0, +24543,93.0,10.0,9.0,10.0,10.0,9.0,10.0,4,0.21 +26866,60.0,7.0,7.0,8.0,8.0,8.0,7.0,9,0.51 +35993,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.11 +39398,99.0,10.0,10.0,10.0,10.0,10.0,10.0,20,1.17 +74253,91.0,10.0,9.0,10.0,10.0,9.0,10.0,22,1.39 +48775,93.0,9.0,9.0,10.0,10.0,9.0,10.0,3,0.19 +47514,93.0,10.0,9.0,10.0,9.0,10.0,10.0,74,3.94 +51617,80.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.06 +13404,,,,,,,,0, +55582,92.0,9.0,10.0,10.0,10.0,9.0,9.0,21,1.16 +74183,94.0,10.0,9.0,10.0,10.0,10.0,9.0,10,0.63 +41889,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.23 +30483,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.38 +43363,87.0,9.0,10.0,9.0,9.0,9.0,9.0,6,0.32 +60137,,,,,,,,0, +43463,96.0,10.0,10.0,10.0,10.0,9.0,10.0,56,3.01 +11221,96.0,9.0,9.0,10.0,10.0,9.0,9.0,15,0.86 +71446,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +74132,,,,,,,,0, +12457,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +668,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.22 +10624,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +13035,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.16 +36662,95.0,9.0,10.0,10.0,10.0,10.0,10.0,8,0.45 +13318,88.0,9.0,9.0,7.0,9.0,10.0,9.0,12,0.64 +72717,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +12628,92.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.72 +45698,93.0,10.0,9.0,10.0,10.0,9.0,10.0,6,0.35 +76767,85.0,8.0,8.0,8.0,7.0,10.0,8.0,13,0.71 +22114,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.12 +33926,93.0,9.0,9.0,10.0,9.0,9.0,9.0,6,0.33 +5950,,,,,,,,0, +42404,93.0,9.0,10.0,10.0,9.0,10.0,10.0,8,0.57 +50721,97.0,10.0,10.0,10.0,10.0,10.0,9.0,13,0.7 +47677,100.0,10.0,10.0,10.0,10.0,10.0,10.0,18,1.2 +74466,80.0,10.0,6.0,10.0,10.0,10.0,8.0,2,0.24 +30835,,,,,,,,0, +30261,96.0,10.0,8.0,10.0,10.0,10.0,10.0,6,0.32 +20946,99.0,10.0,10.0,10.0,10.0,9.0,10.0,14,0.8 +73866,97.0,10.0,10.0,10.0,10.0,10.0,10.0,39,2.17 +67719,,,,,,,,0, +68840,88.0,10.0,9.0,10.0,10.0,10.0,9.0,16,0.87 +59168,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.33 +43502,93.0,10.0,10.0,10.0,10.0,9.0,9.0,13,0.75 +6493,,,,,,,,0, +47083,80.0,8.0,8.0,10.0,10.0,10.0,6.0,1,0.05 +42322,100.0,10.0,10.0,10.0,10.0,8.0,9.0,6,0.33 +75684,89.0,9.0,9.0,10.0,10.0,10.0,9.0,40,2.18 +74124,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +3166,87.0,10.0,10.0,9.0,9.0,10.0,10.0,10,0.54 +23124,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.41 +53627,94.0,10.0,9.0,10.0,10.0,9.0,9.0,28,1.67 +41563,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.21 +42338,100.0,10.0,10.0,,10.0,,,3,0.16 +18107,100.0,10.0,10.0,10.0,10.0,10.0,10.0,26,1.4 +36284,85.0,8.0,9.0,10.0,9.0,10.0,9.0,9,0.56 +76523,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.75 +36678,95.0,10.0,9.0,10.0,10.0,10.0,9.0,30,1.7 +25984,,,,,,,,0, +70969,77.0,8.0,8.0,8.0,8.0,8.0,8.0,6,0.39 +25037,94.0,10.0,9.0,10.0,10.0,10.0,9.0,44,2.39 +20554,90.0,9.0,9.0,9.0,9.0,9.0,9.0,8,0.44 +1199,80.0,8.0,10.0,10.0,8.0,9.0,8.0,10,0.64 +62372,70.0,6.0,9.0,9.0,8.0,8.0,8.0,8,0.44 +32870,94.0,10.0,10.0,10.0,10.0,10.0,10.0,18,1.13 +33449,92.0,10.0,10.0,9.0,9.0,10.0,9.0,21,1.14 +25547,,,,,,,,0, +2643,,,,,,,,0, +30915,100.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.35 +60666,,,,,,,,2,0.11 +55055,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.26 +13921,90.0,9.0,9.0,10.0,10.0,9.0,9.0,2,0.11 +22846,99.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.94 +74631,100.0,10.0,10.0,10.0,10.0,10.0,10.0,84,4.52 +6624,93.0,10.0,9.0,10.0,10.0,9.0,10.0,6,0.33 +43694,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.1 +13975,95.0,9.0,9.0,9.0,9.0,9.0,9.0,11,0.58 +30012,,,,,,,,0, +61921,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.22 +12589,93.0,10.0,10.0,10.0,10.0,9.0,10.0,9,0.58 +45957,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.39 +6525,98.0,10.0,10.0,10.0,10.0,9.0,9.0,36,2.19 +34296,,,,,,,,0, +17076,91.0,9.0,9.0,10.0,10.0,10.0,9.0,14,0.75 +73493,100.0,6.0,10.0,10.0,10.0,6.0,6.0,2,0.11 +494,96.0,10.0,10.0,10.0,10.0,10.0,10.0,92,5.26 +2580,80.0,8.0,8.0,7.0,7.0,9.0,6.0,3,0.17 +65991,,,,,,,,0, +31851,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.16 +30361,97.0,10.0,10.0,10.0,10.0,10.0,10.0,22,1.25 +41834,67.0,8.0,8.0,9.0,8.0,9.0,7.0,3,0.19 +54331,97.0,10.0,9.0,10.0,10.0,9.0,10.0,16,0.85 +76990,95.0,10.0,10.0,9.0,9.0,10.0,10.0,8,0.44 +25440,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.51 +52259,100.0,10.0,10.0,10.0,10.0,10.0,10.0,27,1.55 +71195,92.0,10.0,10.0,9.0,10.0,10.0,9.0,19,1.07 +17992,93.0,10.0,9.0,10.0,10.0,10.0,9.0,35,2.13 +38276,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.05 +65225,95.0,10.0,10.0,10.0,10.0,9.0,10.0,14,0.8 +32867,93.0,10.0,10.0,9.0,9.0,9.0,9.0,17,0.96 +5877,96.0,10.0,8.0,10.0,10.0,10.0,10.0,5,0.31 +4222,88.0,9.0,9.0,9.0,10.0,9.0,9.0,17,0.93 +3442,,,,,,,,0, +71414,,,,,,,,0, +3447,98.0,10.0,9.0,10.0,10.0,9.0,9.0,11,0.77 +9162,,,,,,,,0, +22359,97.0,10.0,10.0,10.0,10.0,10.0,9.0,6,1.15 +9118,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.43 +23485,97.0,10.0,10.0,10.0,9.0,9.0,9.0,14,0.76 +13363,94.0,9.0,10.0,10.0,10.0,10.0,9.0,15,0.86 +26549,73.0,8.0,8.0,8.0,7.0,9.0,8.0,3,0.17 +13219,80.0,9.0,6.0,10.0,10.0,10.0,9.0,2,0.11 +71645,,,,,,,,0, +31180,80.0,8.0,8.0,9.0,9.0,9.0,8.0,9,0.48 +71313,80.0,10.0,6.0,10.0,10.0,10.0,9.0,2,0.11 +45980,91.0,9.0,9.0,9.0,10.0,9.0,9.0,9,0.49 +45322,96.0,10.0,9.0,10.0,10.0,9.0,9.0,23,1.22 +63600,,,,,,,,0, +2886,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.39 +36623,100.0,9.0,10.0,10.0,10.0,10.0,10.0,4,0.29 +64349,,,,,,,,0, +41004,95.0,9.0,10.0,10.0,10.0,10.0,9.0,17,0.91 +56324,,,,,,,,0, +36552,98.0,10.0,10.0,10.0,10.0,9.0,10.0,17,1.05 +17032,,,,,,,,0, +67106,,,,,,,,0, +23910,86.0,9.0,9.0,9.0,9.0,10.0,9.0,7,0.4 +6749,,,,,,,,0, +2417,93.0,10.0,9.0,9.0,9.0,10.0,9.0,25,1.59 +36468,100.0,10.0,10.0,10.0,8.0,10.0,10.0,1,0.3 +25658,,,,,,,,0, +13916,100.0,10.0,10.0,10.0,9.0,10.0,10.0,3,0.16 +20089,80.0,8.0,8.0,10.0,10.0,10.0,8.0,1,0.07 +73327,88.0,9.0,8.0,9.0,10.0,9.0,9.0,27,1.57 +67208,,,,,,,,1,0.51 +76496,94.0,9.0,10.0,10.0,10.0,10.0,9.0,11,0.96 +73568,94.0,10.0,9.0,10.0,10.0,10.0,10.0,75,4.13 +62648,80.0,9.0,10.0,9.0,10.0,9.0,9.0,2,0.11 +6311,98.0,10.0,10.0,10.0,10.0,10.0,10.0,34,1.88 +20501,100.0,10.0,10.0,10.0,10.0,10.0,10.0,52,2.93 +45636,90.0,9.0,10.0,9.0,9.0,10.0,9.0,24,1.29 +41873,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.5 +10024,80.0,8.0,9.0,9.0,9.0,9.0,8.0,11,0.61 +2007,100.0,10.0,6.0,10.0,10.0,10.0,10.0,2,0.11 +46136,98.0,10.0,10.0,10.0,10.0,10.0,9.0,24,1.38 +50042,80.0,9.0,7.0,8.0,9.0,9.0,8.0,9,0.52 +3153,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.28 +66000,90.0,9.0,9.0,9.0,9.0,10.0,9.0,20,1.05 +8432,87.0,10.0,9.0,10.0,10.0,9.0,9.0,3,0.17 +50218,91.0,9.0,9.0,10.0,9.0,10.0,10.0,14,0.77 +24881,86.0,9.0,9.0,9.0,10.0,10.0,9.0,27,1.44 +37333,98.0,10.0,10.0,9.0,10.0,10.0,9.0,28,1.48 +63727,82.0,9.0,9.0,9.0,9.0,10.0,8.0,37,2.01 +28492,90.0,9.0,9.0,10.0,10.0,10.0,10.0,39,2.08 +58585,98.0,10.0,10.0,10.0,10.0,9.0,10.0,11,0.64 +72099,100.0,10.0,10.0,10.0,9.0,10.0,9.0,2,0.42 +19002,93.0,10.0,9.0,10.0,10.0,10.0,10.0,35,1.94 +13417,91.0,10.0,9.0,10.0,10.0,10.0,9.0,57,3.04 +20881,92.0,10.0,9.0,10.0,10.0,10.0,9.0,36,1.98 +45229,96.0,10.0,9.0,10.0,10.0,9.0,10.0,13,0.69 +69380,,,,,,,,0, +19222,,,,,,,,0, +71071,95.0,10.0,10.0,10.0,10.0,10.0,10.0,20,1.08 +23572,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.14 +52742,80.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.25 +4696,,,,,,,,0, +29256,96.0,10.0,9.0,10.0,10.0,10.0,10.0,16,1.14 +35942,98.0,10.0,9.0,10.0,10.0,10.0,10.0,11,0.59 +57724,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.22 +3232,95.0,10.0,9.0,10.0,10.0,10.0,10.0,62,3.46 +45041,,,,,,,,0, +9393,84.0,9.0,8.0,10.0,9.0,10.0,8.0,29,1.61 +10671,100.0,10.0,9.0,10.0,10.0,9.0,10.0,5,0.27 +58627,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.44 +44962,100.0,10.0,10.0,9.0,10.0,10.0,10.0,3,0.27 +46551,64.0,8.0,9.0,9.0,7.0,8.0,7.0,6,0.34 +60257,83.0,9.0,9.0,10.0,9.0,10.0,8.0,7,1.31 +7385,,,,,,,,0, +16475,100.0,10.0,10.0,9.0,9.0,10.0,10.0,3,0.2 +26475,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.78 +11766,100.0,10.0,10.0,,,,,1,0.05 +11739,87.0,9.0,8.0,10.0,10.0,10.0,10.0,6,0.33 +72080,98.0,10.0,9.0,10.0,10.0,9.0,9.0,32,1.91 +11636,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.27 +54321,96.0,10.0,10.0,10.0,10.0,9.0,10.0,62,3.38 +52626,99.0,10.0,10.0,10.0,10.0,9.0,10.0,47,2.5 +26983,73.0,7.0,8.0,9.0,10.0,7.0,7.0,3,0.18 +64948,73.0,6.0,8.0,10.0,10.0,10.0,7.0,3,0.17 +67953,,,,,,,,0, +39611,98.0,10.0,10.0,10.0,10.0,10.0,9.0,11,0.63 +6673,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.11 +14320,88.0,9.0,9.0,9.0,9.0,10.0,9.0,58,3.23 +27299,96.0,10.0,10.0,10.0,10.0,10.0,10.0,21,1.24 +75199,98.0,10.0,10.0,10.0,10.0,9.0,10.0,24,1.29 +52714,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.05 +57434,91.0,9.0,9.0,9.0,9.0,10.0,9.0,17,0.97 +62145,92.0,10.0,10.0,10.0,9.0,10.0,9.0,10,0.56 +9592,100.0,10.0,9.0,10.0,10.0,10.0,9.0,7,0.39 +59106,93.0,10.0,10.0,9.0,9.0,9.0,9.0,14,0.96 +65466,92.0,9.0,9.0,10.0,10.0,9.0,10.0,12,0.66 +50232,95.0,10.0,10.0,9.0,10.0,10.0,9.0,13,0.74 +29691,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.63 +4840,96.0,10.0,10.0,10.0,10.0,9.0,9.0,28,1.48 +64062,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.72 +76499,100.0,10.0,10.0,10.0,10.0,10.0,10.0,20,1.24 +21969,99.0,10.0,10.0,10.0,10.0,10.0,10.0,74,3.93 +2525,,,,,,,,0, +4148,80.0,9.0,8.0,9.0,9.0,10.0,9.0,54,2.85 +3264,97.0,10.0,10.0,10.0,10.0,10.0,10.0,121,6.58 +18180,93.0,7.0,9.0,9.0,10.0,9.0,10.0,3,0.2 +12028,95.0,10.0,10.0,9.0,10.0,9.0,9.0,8,0.63 +48955,89.0,9.0,8.0,10.0,9.0,10.0,9.0,7,0.38 +73725,,,,,,,,0, +45615,,,,,,,,1,0.05 +72389,80.0,8.0,8.0,8.0,8.0,8.0,8.0,1,0.06 +16941,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.13 +24742,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.74 +24269,,,,,,,,0, +40518,91.0,10.0,9.0,10.0,10.0,10.0,9.0,29,1.55 +74789,,,,,,,,0, +38306,100.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.34 +55958,93.0,10.0,9.0,9.0,10.0,10.0,10.0,6,0.34 +76454,96.0,10.0,10.0,10.0,10.0,10.0,10.0,89,7.81 +62724,75.0,8.0,9.0,9.0,8.0,8.0,8.0,4,0.23 +73078,80.0,8.0,8.0,8.0,10.0,9.0,7.0,2,0.14 +57491,91.0,10.0,10.0,10.0,10.0,10.0,9.0,7,0.41 +59368,,,,,,,,0, +51062,98.0,10.0,10.0,10.0,10.0,10.0,10.0,31,1.7 +29182,94.0,10.0,10.0,10.0,10.0,8.0,9.0,8,0.46 +33192,,,,,,,,0, +23636,99.0,10.0,10.0,10.0,10.0,10.0,10.0,19,1.0 +43143,83.0,9.0,9.0,10.0,9.0,9.0,9.0,7,0.47 +9211,89.0,9.0,9.0,9.0,9.0,10.0,9.0,29,1.61 +42730,97.0,9.0,9.0,10.0,10.0,9.0,9.0,6,0.32 +73789,82.0,9.0,8.0,9.0,9.0,10.0,9.0,30,1.6 +21232,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.43 +75099,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +42967,,,,,,,,0, +40960,99.0,10.0,10.0,10.0,10.0,9.0,10.0,28,1.69 +52339,,,,,,,,0, +52363,93.0,9.0,9.0,9.0,10.0,10.0,9.0,7,0.37 +43711,100.0,10.0,10.0,10.0,10.0,10.0,10.0,59,3.16 +15595,,,,,,,,0, +24791,90.0,9.0,10.0,10.0,10.0,10.0,10.0,8,0.45 +22233,90.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.37 +3908,,,,,,,,0, +34010,78.0,8.0,7.0,8.0,7.0,9.0,8.0,68,3.7 +64125,84.0,10.0,9.0,9.0,9.0,10.0,8.0,11,0.7 +14033,92.0,10.0,9.0,10.0,10.0,9.0,10.0,20,1.07 +14402,97.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.53 +27063,,,,,,,,0, +68167,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.11 +48902,93.0,9.0,10.0,10.0,10.0,10.0,9.0,10,0.53 +1653,95.0,10.0,10.0,10.0,10.0,10.0,9.0,110,5.9 +20268,89.0,9.0,9.0,10.0,10.0,9.0,10.0,7,0.53 +28662,98.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.6 +53856,,,,,,,,0, +9968,88.0,9.0,7.0,9.0,10.0,9.0,9.0,5,0.27 +68851,,,,,,,,1, +35864,,,,,,,,0, +34936,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.39 +25799,95.0,10.0,9.0,10.0,10.0,10.0,10.0,59,3.12 +41864,73.0,7.0,7.0,9.0,8.0,7.0,7.0,8,0.45 +50583,,,,,,,,2,0.43 +59345,100.0,10.0,10.0,9.0,10.0,10.0,9.0,3,0.17 +3486,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +32496,96.0,10.0,9.0,10.0,10.0,9.0,9.0,10,0.59 +18404,,,,,,,,0, +5659,70.0,6.0,8.0,9.0,8.0,8.0,5.0,2,0.45 +11919,99.0,10.0,9.0,10.0,10.0,10.0,9.0,15,0.91 +10257,100.0,8.0,8.0,10.0,8.0,10.0,10.0,1,0.27 +1526,100.0,9.0,10.0,10.0,10.0,10.0,10.0,2,0.12 +62025,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.17 +12740,99.0,10.0,10.0,10.0,10.0,10.0,10.0,35,1.91 +12364,99.0,10.0,10.0,10.0,10.0,10.0,10.0,53,2.89 +41994,100.0,10.0,10.0,10.0,10.0,10.0,10.0,25,1.34 +11870,93.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.33 +7560,97.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.45 +27372,99.0,10.0,10.0,10.0,10.0,10.0,9.0,17,0.93 +11512,98.0,10.0,10.0,10.0,10.0,9.0,10.0,36,1.93 +23475,100.0,10.0,9.0,10.0,10.0,9.0,10.0,7,0.49 +68910,98.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.61 +52183,,,,,,,,0, +37845,70.0,4.0,8.0,7.0,7.0,8.0,8.0,3,0.17 +26640,97.0,10.0,10.0,9.0,9.0,10.0,10.0,38,2.07 +6198,,,,,,,,0, +47464,94.0,9.0,10.0,9.0,9.0,10.0,9.0,20,1.1 +71788,,,,,,,,0, +28263,91.0,9.0,10.0,10.0,10.0,9.0,9.0,8,0.46 +40768,,,,,,,,0, +62588,96.0,10.0,9.0,9.0,9.0,10.0,10.0,28,1.61 +40419,,,,,,,,0, +20424,100.0,10.0,10.0,10.0,9.0,9.0,10.0,3,0.2 +17702,93.0,9.0,10.0,10.0,10.0,9.0,9.0,3,0.16 +20273,,,,,,,,0, +13085,97.0,10.0,10.0,10.0,10.0,10.0,10.0,7,6.36 +56690,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.36 +39263,80.0,9.0,6.0,10.0,10.0,10.0,7.0,2,0.11 +50538,97.0,10.0,10.0,10.0,10.0,9.0,9.0,19,1.03 +55356,91.0,9.0,10.0,10.0,10.0,9.0,10.0,20,1.54 +29570,100.0,10.0,10.0,9.0,10.0,9.0,10.0,3,0.16 +51056,100.0,9.0,9.0,9.0,9.0,9.0,9.0,3,0.16 +8011,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.01 +39784,100.0,9.0,10.0,10.0,10.0,9.0,10.0,3,0.17 +52464,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.19 +52369,90.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.11 +35543,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.23 +58934,98.0,10.0,9.0,10.0,10.0,9.0,10.0,18,0.98 +40961,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.56 +74876,,,,,,,,3,0.18 +18195,100.0,10.0,10.0,10.0,10.0,7.0,6.0,3,0.17 +27771,100.0,10.0,10.0,10.0,10.0,9.0,10.0,47,2.66 +70460,99.0,10.0,10.0,10.0,10.0,10.0,10.0,32,1.72 +39296,90.0,10.0,9.0,10.0,10.0,10.0,9.0,2,0.12 +30165,96.0,10.0,9.0,10.0,10.0,10.0,9.0,11,0.61 +18015,92.0,10.0,10.0,10.0,10.0,9.0,9.0,13,0.7 +37867,95.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.22 +52330,85.0,8.0,9.0,7.0,8.0,10.0,8.0,4,0.28 +76823,95.0,10.0,10.0,10.0,10.0,10.0,9.0,12,0.7 +58376,90.0,10.0,10.0,9.0,9.0,9.0,9.0,4,0.29 +22686,98.0,10.0,9.0,10.0,10.0,9.0,10.0,43,2.88 +42683,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.11 +75342,95.0,10.0,10.0,10.0,10.0,10.0,9.0,13,1.51 +2550,93.0,9.0,10.0,9.0,9.0,10.0,10.0,11,0.6 +68878,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.62 +55575,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +57747,80.0,9.0,7.0,10.0,9.0,9.0,8.0,3,0.16 +26234,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.06 +67506,96.0,10.0,9.0,10.0,10.0,10.0,10.0,31,1.67 +17495,96.0,10.0,10.0,9.0,10.0,10.0,10.0,15,0.81 +48707,90.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.34 +43874,,,,,,,,0, +1427,98.0,10.0,10.0,10.0,10.0,10.0,10.0,25,1.34 +67709,83.0,9.0,9.0,9.0,9.0,8.0,8.0,70,3.72 +60476,92.0,9.0,10.0,10.0,10.0,10.0,9.0,49,2.98 +54758,90.0,9.0,9.0,9.0,9.0,10.0,9.0,51,2.71 +49724,93.0,10.0,9.0,9.0,9.0,10.0,9.0,24,1.39 +76878,89.0,9.0,10.0,10.0,10.0,10.0,9.0,56,3.44 +55250,88.0,9.0,9.0,9.0,9.0,9.0,8.0,15,0.82 +51161,96.0,9.0,10.0,10.0,10.0,10.0,10.0,17,0.93 +44248,95.0,10.0,9.0,9.0,9.0,9.0,10.0,15,0.81 +66783,95.0,10.0,10.0,10.0,9.0,10.0,10.0,8,0.43 +21318,93.0,9.0,9.0,10.0,10.0,10.0,9.0,14,0.76 +11573,,,,,,,,0, +42032,98.0,10.0,10.0,10.0,10.0,10.0,10.0,41,2.33 +12081,96.0,10.0,9.0,10.0,10.0,9.0,10.0,18,1.06 +23496,89.0,10.0,9.0,9.0,9.0,9.0,9.0,15,0.8 +17259,97.0,10.0,9.0,10.0,10.0,10.0,10.0,31,1.68 +28243,,,,,,,,0, +20474,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.82 +67727,89.0,9.0,10.0,9.0,9.0,10.0,9.0,7,0.38 +3420,50.0,6.0,6.0,8.0,6.0,7.0,6.0,3,0.16 +262,100.0,8.0,8.0,10.0,10.0,9.0,10.0,4,0.22 +64492,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.38 +65207,91.0,9.0,10.0,10.0,10.0,9.0,9.0,23,1.23 +62144,90.0,9.0,9.0,10.0,10.0,10.0,9.0,2,0.11 +65122,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.12 +44784,89.0,9.0,9.0,10.0,10.0,9.0,9.0,15,0.8 +23125,99.0,10.0,10.0,10.0,10.0,10.0,10.0,22,1.22 +6898,93.0,9.0,9.0,10.0,10.0,9.0,9.0,3,0.16 +48220,93.0,10.0,7.0,10.0,10.0,10.0,9.0,4,0.23 +72673,73.0,7.0,9.0,7.0,8.0,7.0,7.0,3,0.18 +70753,,,,,,,,0, +20875,100.0,10.0,10.0,10.0,9.0,10.0,10.0,3,0.16 +68122,90.0,10.0,10.0,9.0,10.0,10.0,10.0,2,0.11 +20404,90.0,9.0,9.0,9.0,10.0,10.0,9.0,12,0.64 +39311,100.0,10.0,8.0,10.0,10.0,8.0,10.0,1,0.05 +65691,98.0,10.0,10.0,10.0,10.0,10.0,10.0,36,1.95 +53907,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.17 +60917,100.0,10.0,10.0,10.0,10.0,9.0,10.0,12,0.67 +55867,67.0,9.0,7.0,9.0,8.0,10.0,6.0,3,0.17 +66087,96.0,10.0,10.0,10.0,10.0,9.0,10.0,33,1.82 +74893,,,,,,,,0, +26634,,,,,,,,0, +11398,,,,,,,,0, +26486,88.0,9.0,9.0,9.0,10.0,10.0,9.0,41,2.23 +55941,87.0,9.0,10.0,9.0,8.0,10.0,9.0,3,0.18 +52226,94.0,10.0,10.0,10.0,9.0,9.0,9.0,20,1.09 +167,,,,,,,,0, +14038,95.0,10.0,9.0,10.0,10.0,10.0,10.0,15,2.09 +14195,100.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.9 +8863,96.0,10.0,9.0,10.0,10.0,10.0,9.0,11,0.67 +55900,97.0,10.0,10.0,10.0,10.0,10.0,9.0,14,1.54 +47991,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.37 +42288,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.05 +72151,,,,,,,,0, +72553,,,,,,,,0, +56864,95.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.43 +29757,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.16 +10135,100.0,10.0,10.0,10.0,9.0,10.0,10.0,8,0.43 +31434,94.0,10.0,7.0,10.0,10.0,9.0,9.0,7,0.38 +49701,80.0,10.0,7.0,10.0,10.0,9.0,9.0,3,0.17 +48590,95.0,10.0,10.0,10.0,10.0,9.0,9.0,33,2.05 +33426,,,,,,,,0, +10864,96.0,10.0,10.0,10.0,10.0,10.0,9.0,26,1.45 +16093,96.0,10.0,10.0,10.0,10.0,9.0,10.0,11,0.6 +61438,98.0,10.0,10.0,10.0,10.0,9.0,10.0,12,0.74 +8395,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.5 +38135,98.0,10.0,10.0,10.0,10.0,10.0,9.0,11,0.63 +47462,90.0,9.0,9.0,9.0,10.0,9.0,9.0,23,1.23 +48122,80.0,8.0,9.0,10.0,9.0,9.0,8.0,7,0.4 +56051,93.0,10.0,9.0,10.0,10.0,10.0,9.0,8,0.44 +71038,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.25 +65543,96.0,10.0,10.0,10.0,10.0,9.0,10.0,36,2.1 +39378,68.0,6.0,8.0,8.0,6.0,10.0,6.0,5,0.27 +43830,,,,,,,,0, +65658,,,,,,,,0, +68425,100.0,10.0,10.0,10.0,10.0,9.0,9.0,5,0.28 +35898,90.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.11 +30142,98.0,10.0,10.0,10.0,10.0,10.0,10.0,20,1.14 +36053,98.0,10.0,10.0,10.0,10.0,10.0,10.0,26,1.43 +24066,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.87 +44165,97.0,10.0,10.0,10.0,10.0,9.0,10.0,13,0.7 +20018,,,,,,,,0, +32522,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.16 +7269,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.23 +60296,92.0,10.0,8.0,10.0,10.0,10.0,9.0,17,0.97 +18652,93.0,10.0,10.0,10.0,10.0,10.0,9.0,9,0.74 +61633,100.0,10.0,9.0,9.0,9.0,10.0,10.0,7,0.42 +61170,,,,,,,,0, +2863,90.0,10.0,9.0,10.0,10.0,10.0,9.0,2,0.13 +68048,,,,,,,,0, +1397,99.0,10.0,10.0,10.0,10.0,9.0,9.0,18,0.99 +54575,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.26 +15875,,,,,,,,0, +2018,,,,,,,,0, +31396,99.0,10.0,10.0,10.0,10.0,10.0,9.0,18,1.02 +54077,91.0,10.0,8.0,10.0,10.0,10.0,9.0,13,0.7 +46630,,,,,,,,0, +61958,75.0,8.0,8.0,10.0,9.0,10.0,7.0,4,0.22 +24874,,,,,,,,0, +49666,,,,,,,,1,0.06 +2375,99.0,10.0,10.0,10.0,10.0,9.0,10.0,68,3.88 +61520,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.23 +24084,,,,,,,,0, +12300,97.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.54 +67632,88.0,9.0,9.0,10.0,10.0,9.0,10.0,14,0.76 +50476,80.0,9.0,9.0,9.0,9.0,9.0,7.0,4,0.24 +27915,90.0,10.0,10.0,10.0,8.0,8.0,9.0,4,0.25 +25613,93.0,9.0,9.0,10.0,10.0,10.0,10.0,3,0.17 +69109,97.0,10.0,9.0,10.0,10.0,10.0,10.0,42,2.3 +46974,80.0,8.0,8.0,9.0,9.0,10.0,9.0,3,0.16 +64578,100.0,10.0,10.0,9.0,10.0,9.0,10.0,3,0.17 +56116,76.0,8.0,8.0,9.0,9.0,8.0,8.0,11,0.7 +11531,,,,,,,,0, +25638,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.11 +1902,100.0,10.0,10.0,9.0,9.0,10.0,9.0,5,0.29 +21593,91.0,9.0,8.0,9.0,9.0,9.0,9.0,16,0.88 +68610,100.0,9.0,10.0,10.0,10.0,10.0,10.0,5,0.42 +10499,87.0,9.0,9.0,9.0,10.0,8.0,9.0,6,0.36 +35466,100.0,10.0,10.0,10.0,10.0,8.0,10.0,2,0.18 +30283,95.0,10.0,10.0,10.0,9.0,9.0,10.0,4,0.23 +15144,98.0,10.0,10.0,10.0,10.0,10.0,10.0,19,1.04 +74419,76.0,8.0,8.0,7.0,7.0,9.0,8.0,9,0.48 +61092,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.33 +74957,95.0,10.0,10.0,10.0,10.0,10.0,9.0,58,3.15 +62301,92.0,10.0,9.0,9.0,10.0,9.0,9.0,11,0.75 +22243,94.0,10.0,9.0,10.0,10.0,10.0,9.0,38,2.16 +32838,90.0,10.0,10.0,10.0,10.0,9.0,9.0,4,0.22 +66533,,,,,,,,0, +45253,100.0,10.0,9.0,10.0,10.0,10.0,9.0,6,0.33 +18992,96.0,10.0,10.0,10.0,10.0,8.0,10.0,5,0.27 +62153,94.0,10.0,10.0,10.0,10.0,9.0,9.0,11,0.59 +63551,99.0,10.0,10.0,10.0,10.0,9.0,10.0,31,1.73 +33605,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.27 +11576,,,,,,,,0, +66583,99.0,10.0,10.0,10.0,10.0,10.0,9.0,27,1.58 +21214,92.0,9.0,10.0,10.0,10.0,8.0,10.0,6,0.34 +49542,91.0,9.0,9.0,10.0,10.0,10.0,9.0,15,0.97 +39996,,,,,,,,0, +55142,97.0,10.0,9.0,10.0,10.0,10.0,10.0,13,1.33 +15697,95.0,10.0,10.0,9.0,9.0,10.0,10.0,5,0.28 +61524,90.0,10.0,9.0,9.0,10.0,8.0,10.0,87,4.81 +24177,98.0,10.0,10.0,10.0,10.0,10.0,10.0,88,4.77 +53327,,,,,,,,0, +57393,94.0,9.0,9.0,10.0,10.0,9.0,10.0,7,0.42 +8402,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,1.68 +10253,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.17 +4967,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.25 +13893,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,2.16 +73836,91.0,9.0,8.0,10.0,10.0,9.0,8.0,12,0.69 +69090,98.0,10.0,10.0,10.0,10.0,10.0,10.0,104,5.65 +75654,98.0,10.0,10.0,10.0,10.0,10.0,9.0,13,0.82 +30144,98.0,10.0,10.0,10.0,10.0,9.0,10.0,69,3.7 +57676,69.0,8.0,7.0,8.0,8.0,7.0,7.0,12,0.65 +43888,90.0,10.0,10.0,10.0,10.0,7.0,9.0,2,0.25 +18378,87.0,9.0,9.0,9.0,9.0,8.0,9.0,30,1.66 +60764,94.0,10.0,9.0,10.0,10.0,10.0,9.0,42,2.47 +62562,96.0,10.0,10.0,10.0,10.0,10.0,9.0,14,0.82 +5148,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.06 +60030,97.0,10.0,10.0,10.0,10.0,10.0,10.0,41,2.24 +44282,100.0,10.0,10.0,9.0,10.0,10.0,10.0,5,0.31 +60489,84.0,8.0,9.0,9.0,9.0,9.0,8.0,31,1.68 +71285,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.09 +25257,100.0,10.0,10.0,10.0,8.0,10.0,10.0,1,1.0 +56610,97.0,10.0,10.0,10.0,9.0,10.0,9.0,7,0.44 +40877,90.0,10.0,10.0,10.0,10.0,9.0,8.0,6,0.38 +21655,,,,,,,,0, +53444,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.56 +19038,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.58 +32311,87.0,9.0,10.0,10.0,10.0,10.0,9.0,11,0.61 +66183,,,,,,,,0, +13476,,,,,,,,0, +4466,87.0,9.0,9.0,9.0,9.0,9.0,9.0,25,1.39 +51304,98.0,10.0,10.0,10.0,10.0,10.0,9.0,24,1.43 +56451,,,,,,,,0, +53597,,,,,,,,0, +5350,,,,,,,,0, +59853,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.29 +62808,,,,,,,,0, +42496,,,,,,,,0, +30869,,,,,,,,0, +35556,96.0,10.0,10.0,9.0,9.0,10.0,9.0,10,0.61 +33975,,,,,,,,1,0.06 +3281,97.0,10.0,10.0,10.0,10.0,10.0,10.0,29,1.66 +65534,87.0,9.0,10.0,8.0,7.0,9.0,9.0,9,0.54 +46041,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.31 +32156,92.0,10.0,9.0,10.0,10.0,10.0,9.0,26,1.42 +57958,,,,,,,,0, +33236,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.49 +75082,40.0,6.0,6.0,4.0,6.0,10.0,6.0,1,0.12 +62380,,,,,,,,0, +351,,,,,,,,0, +18133,60.0,5.0,7.0,5.0,5.0,5.0,6.0,4,0.22 +42963,96.0,9.0,10.0,10.0,10.0,9.0,10.0,33,1.92 +60876,98.0,10.0,10.0,10.0,10.0,9.0,10.0,14,0.77 +3724,,,,,,,,0, +69808,,,,,,,,1,0.07 +25835,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +5814,,,,,,,,0, +49700,94.0,10.0,10.0,10.0,10.0,9.0,10.0,22,1.21 +57268,78.0,9.0,8.0,7.0,9.0,9.0,9.0,11,0.6 +12222,93.0,10.0,10.0,9.0,10.0,10.0,10.0,53,2.84 +57749,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.43 +4166,,,,,,,,0, +60732,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +15688,97.0,10.0,10.0,10.0,10.0,9.0,10.0,38,2.07 +40122,,,,,,,,0, +60409,93.0,9.0,9.0,10.0,10.0,10.0,9.0,3,0.17 +70922,90.0,9.0,10.0,9.0,9.0,9.0,9.0,42,2.27 +72707,80.0,10.0,9.0,9.0,10.0,9.0,7.0,3,0.17 +76327,92.0,10.0,10.0,10.0,9.0,9.0,10.0,58,3.12 +72950,95.0,10.0,10.0,10.0,10.0,10.0,10.0,135,7.32 +4471,87.0,10.0,10.0,9.0,8.0,10.0,10.0,11,0.6 +15338,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.33 +15504,99.0,10.0,10.0,10.0,10.0,10.0,10.0,31,1.65 +1319,,,,,,,,0, +23817,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.11 +26326,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.46 +1161,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.5 +51957,60.0,6.0,6.0,10.0,10.0,10.0,8.0,2,0.11 +67152,67.0,7.0,5.0,10.0,9.0,9.0,9.0,4,0.22 +27544,91.0,9.0,9.0,10.0,10.0,9.0,9.0,20,1.17 +59474,99.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.87 +16235,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.11 +70887,92.0,10.0,9.0,10.0,10.0,9.0,10.0,191,10.23 +51331,93.0,10.0,9.0,10.0,10.0,10.0,9.0,12,0.69 +15054,80.0,8.0,6.0,10.0,10.0,6.0,6.0,1,0.06 +62316,96.0,10.0,10.0,10.0,10.0,10.0,10.0,25,1.42 +52718,88.0,9.0,9.0,9.0,10.0,10.0,9.0,34,1.85 +7877,98.0,10.0,10.0,10.0,10.0,10.0,9.0,9,0.52 +8650,92.0,10.0,10.0,9.0,9.0,9.0,9.0,50,2.75 +51420,93.0,9.0,9.0,9.0,8.0,9.0,8.0,3,0.16 +9421,92.0,10.0,10.0,9.0,9.0,10.0,9.0,13,0.73 +75661,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.39 +30515,,,,,,,,0, +18547,70.0,8.0,8.0,9.0,9.0,8.0,8.0,9,0.53 +69327,95.0,10.0,10.0,10.0,9.0,10.0,9.0,12,0.67 +59433,94.0,9.0,9.0,9.0,8.0,10.0,9.0,7,0.4 +65620,100.0,10.0,10.0,10.0,4.0,10.0,10.0,1,0.06 +67903,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +66657,100.0,10.0,10.0,9.0,9.0,10.0,9.0,7,0.4 +46047,82.0,9.0,10.0,8.0,8.0,8.0,8.0,11,0.6 +69900,,,,,,,,0, +48830,100.0,10.0,10.0,10.0,9.0,10.0,10.0,3,0.16 +13477,85.0,9.0,9.0,9.0,10.0,9.0,9.0,4,0.22 +22511,87.0,10.0,9.0,9.0,9.0,9.0,9.0,12,0.65 +27174,81.0,8.0,7.0,10.0,10.0,9.0,8.0,41,2.37 +9759,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.53 +51558,100.0,10.0,10.0,10.0,10.0,9.0,10.0,20,1.2 +39907,,,,,,,,0, +28043,99.0,10.0,10.0,10.0,10.0,10.0,10.0,24,1.29 +50995,89.0,9.0,9.0,9.0,9.0,9.0,9.0,23,1.31 +52654,97.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.41 +33967,95.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.26 +27594,80.0,8.0,7.0,10.0,9.0,10.0,9.0,4,0.23 +512,93.0,10.0,9.0,9.0,9.0,9.0,9.0,29,1.64 +34437,,,,,,,,0, +60008,94.0,10.0,10.0,10.0,10.0,10.0,9.0,13,0.72 +51384,91.0,10.0,10.0,9.0,9.0,9.0,9.0,7,0.42 +2132,99.0,10.0,10.0,10.0,10.0,10.0,10.0,69,3.7 +65108,,,,,,,,0, +76478,93.0,10.0,8.0,9.0,10.0,10.0,9.0,12,0.71 +72675,97.0,10.0,9.0,10.0,10.0,9.0,10.0,18,1.0 +9742,80.0,9.0,9.0,9.0,9.0,10.0,8.0,4,0.22 +26735,86.0,9.0,9.0,10.0,10.0,9.0,9.0,19,1.27 +46492,98.0,9.0,10.0,10.0,10.0,9.0,10.0,9,0.5 +13267,95.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.22 +10609,97.0,10.0,10.0,10.0,10.0,9.0,10.0,81,4.65 +17369,94.0,9.0,9.0,10.0,10.0,9.0,9.0,8,0.44 +60426,100.0,10.0,10.0,10.0,10.0,8.0,10.0,2,0.12 +63905,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.11 +1370,,,,,,,,0, +9987,,,,,,,,0, +18235,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.5 +45201,100.0,10.0,10.0,10.0,10.0,10.0,10.0,27,1.64 +69033,100.0,10.0,10.0,9.0,9.0,10.0,10.0,3,0.24 +12517,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.4 +24820,95.0,10.0,10.0,9.0,10.0,10.0,9.0,60,3.33 +24201,100.0,9.0,9.0,9.0,9.0,9.0,8.0,2,0.12 +72636,80.0,10.0,6.0,10.0,10.0,10.0,9.0,5,0.29 +40402,90.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.11 +36514,100.0,10.0,10.0,10.0,10.0,10.0,8.0,2,0.11 +15295,,,,,,,,0, +29165,82.0,9.0,9.0,9.0,9.0,10.0,9.0,14,0.75 +36816,80.0,10.0,8.0,8.0,9.0,10.0,8.0,2,0.16 +1774,96.0,10.0,9.0,10.0,10.0,10.0,10.0,11,0.77 +59538,,,,,,,,0, +75718,95.0,9.0,10.0,10.0,10.0,9.0,9.0,5,0.28 +62065,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.23 +3214,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.33 +37126,87.0,9.0,9.0,10.0,10.0,10.0,8.0,26,1.45 +39161,98.0,10.0,10.0,9.0,10.0,9.0,9.0,17,0.93 +11532,97.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.83 +51354,100.0,10.0,10.0,10.0,10.0,9.0,9.0,10,0.56 +71130,96.0,10.0,10.0,10.0,10.0,9.0,9.0,22,1.32 +6834,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.06 +58116,,,,,,,,0, +6166,100.0,10.0,10.0,10.0,8.0,10.0,10.0,1,0.09 +20754,85.0,10.0,10.0,9.0,9.0,10.0,10.0,4,0.26 +43808,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.11 +21788,,,,,,,,0, +5510,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.37 +63580,,,,,,,,2,0.11 +54992,,,,,,,,0, +72259,100.0,10.0,10.0,9.0,10.0,9.0,10.0,3,0.16 +35066,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +215,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.21 +69201,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +31543,88.0,9.0,10.0,9.0,9.0,9.0,9.0,25,1.36 +71681,100.0,10.0,10.0,10.0,10.0,9.0,9.0,2,0.11 +52074,96.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.34 +25539,92.0,10.0,9.0,10.0,10.0,10.0,9.0,86,4.78 +52986,,,,,,,,0, +49340,85.0,10.0,9.0,9.0,10.0,9.0,9.0,4,0.22 +17486,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.11 +10216,75.0,8.0,7.0,10.0,10.0,10.0,9.0,4,0.23 +24276,,,,,,,,0, +31424,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +45819,60.0,2.0,10.0,10.0,8.0,10.0,10.0,1,0.09 +31222,,,,,,,,0, +34515,,,,,,,,0, +62555,96.0,10.0,10.0,10.0,10.0,9.0,9.0,28,1.54 +16984,97.0,10.0,9.0,10.0,10.0,9.0,9.0,8,0.44 +3445,96.0,10.0,10.0,10.0,10.0,9.0,10.0,28,1.53 +33101,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.48 +46839,69.0,8.0,6.0,9.0,8.0,8.0,8.0,20,1.08 +15979,,,,,,,,0, +43468,83.0,9.0,9.0,9.0,8.0,10.0,9.0,8,0.49 +72627,73.0,9.0,10.0,7.0,7.0,10.0,8.0,3,0.41 +64355,91.0,9.0,9.0,10.0,10.0,9.0,9.0,10,0.55 +30574,90.0,10.0,10.0,8.0,10.0,8.0,10.0,3,0.16 +60416,93.0,10.0,9.0,10.0,10.0,9.0,10.0,6,0.33 +20080,,,,,,,,0, +53341,91.0,10.0,9.0,10.0,10.0,10.0,9.0,16,0.9 +50184,,,,,,,,0, +37374,87.0,9.0,9.0,9.0,9.0,10.0,8.0,17,0.96 +64785,,,,,,,,0, +36958,95.0,10.0,10.0,10.0,10.0,9.0,9.0,15,0.91 +57460,63.0,7.0,6.0,9.0,8.0,9.0,7.0,6,0.32 +75356,100.0,10.0,10.0,10.0,10.0,10.0,9.0,10,0.62 +58359,80.0,8.0,9.0,10.0,10.0,10.0,8.0,2,0.15 +60873,81.0,8.0,8.0,9.0,9.0,10.0,8.0,18,1.18 +48861,73.0,9.0,7.0,10.0,10.0,10.0,9.0,3,0.16 +38316,,,,,,,,0, +21637,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +21470,,,,,,,,0, +26405,95.0,10.0,9.0,10.0,10.0,10.0,9.0,42,2.38 +19430,,,,,,,,0, +61819,91.0,10.0,9.0,10.0,10.0,8.0,9.0,35,1.93 +25058,,,,,,,,0, +13304,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.22 +70779,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.06 +29987,87.0,9.0,10.0,10.0,9.0,10.0,9.0,9,0.74 +77081,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.35 +67024,85.0,9.0,8.0,9.0,9.0,10.0,9.0,25,1.36 +59918,90.0,9.0,9.0,9.0,9.0,9.0,9.0,8,0.45 +484,80.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.07 +11931,99.0,10.0,10.0,10.0,10.0,10.0,10.0,28,1.54 +58439,93.0,9.0,10.0,9.0,9.0,10.0,9.0,16,0.88 +18222,94.0,10.0,9.0,10.0,10.0,10.0,9.0,27,1.47 +75412,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.05 +18219,90.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.22 +32542,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +11480,94.0,10.0,9.0,10.0,10.0,10.0,9.0,24,1.3 +38322,83.0,10.0,8.0,9.0,10.0,9.0,9.0,7,0.39 +3473,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.11 +66771,99.0,10.0,10.0,10.0,10.0,10.0,10.0,31,1.71 +51243,90.0,10.0,9.0,10.0,10.0,10.0,8.0,2,0.13 +46442,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.45 +29357,93.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.2 +51203,93.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.35 +25598,100.0,9.0,10.0,10.0,10.0,9.0,9.0,6,0.37 +71133,88.0,9.0,9.0,10.0,9.0,10.0,9.0,32,1.73 +12686,100.0,10.0,9.0,10.0,10.0,10.0,9.0,7,0.4 +29038,100.0,10.0,9.0,10.0,10.0,9.0,10.0,7,0.4 +33829,96.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.28 +32274,80.0,9.0,9.0,9.0,9.0,10.0,8.0,27,1.45 +11173,87.0,9.0,9.0,9.0,10.0,8.0,9.0,3,0.19 +71654,90.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.12 +17996,96.0,10.0,10.0,10.0,10.0,8.0,10.0,9,0.49 +3012,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +45591,91.0,9.0,10.0,10.0,10.0,9.0,9.0,15,0.84 +33597,97.0,10.0,10.0,10.0,10.0,10.0,10.0,32,1.76 +14919,92.0,10.0,9.0,10.0,10.0,10.0,10.0,6,1.49 +48064,93.0,10.0,9.0,10.0,10.0,10.0,9.0,67,3.64 +61509,80.0,9.0,8.0,8.0,10.0,9.0,8.0,9,0.53 +5189,,,,,,,,0, +61110,94.0,10.0,10.0,9.0,10.0,10.0,9.0,49,2.75 +53134,,,,,,,,0, +30148,92.0,9.0,8.0,10.0,10.0,10.0,10.0,5,0.28 +54287,96.0,10.0,10.0,10.0,10.0,10.0,9.0,22,1.2 +8700,100.0,8.0,8.0,10.0,10.0,10.0,10.0,1,0.06 +63036,94.0,10.0,10.0,10.0,10.0,10.0,10.0,30,1.67 +106,86.0,9.0,8.0,10.0,10.0,9.0,8.0,19,1.14 +9238,,,,,,,,0, +8674,96.0,10.0,10.0,10.0,10.0,10.0,10.0,45,2.49 +66086,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.19 +66464,100.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.42 +475,90.0,9.0,9.0,9.0,10.0,10.0,8.0,7,0.4 +53562,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +13370,94.0,10.0,9.0,10.0,10.0,10.0,9.0,32,2.04 +13663,94.0,10.0,9.0,9.0,9.0,10.0,9.0,24,1.35 +473,97.0,10.0,9.0,10.0,10.0,10.0,9.0,6,1.14 +753,85.0,9.0,9.0,10.0,10.0,10.0,9.0,25,1.49 +58813,98.0,10.0,10.0,10.0,10.0,9.0,10.0,14,0.78 +8270,96.0,10.0,9.0,10.0,10.0,9.0,10.0,71,3.89 +26882,90.0,9.0,9.0,10.0,10.0,8.0,9.0,21,1.2 +12889,100.0,10.0,9.0,10.0,10.0,10.0,10.0,6,0.32 +75733,,,,,,,,0, +8611,96.0,10.0,9.0,10.0,10.0,10.0,9.0,10,0.56 +47711,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +38490,94.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.72 +36031,,,,,,,,0, +14015,95.0,9.0,10.0,10.0,10.0,9.0,10.0,48,2.88 +69466,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.5 +68651,91.0,9.0,10.0,10.0,10.0,9.0,9.0,24,1.3 +63996,92.0,10.0,10.0,10.0,10.0,9.0,9.0,13,0.79 +28397,93.0,9.0,10.0,10.0,10.0,9.0,9.0,13,0.72 +21770,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.17 +50391,93.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.17 +37200,97.0,10.0,10.0,10.0,10.0,10.0,10.0,23,1.76 +13372,95.0,10.0,9.0,9.0,10.0,10.0,9.0,33,2.15 +43474,80.0,9.0,8.0,8.0,8.0,8.0,8.0,5,0.27 +75330,65.0,7.0,8.0,8.0,8.0,7.0,8.0,4,0.23 +8709,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.58 +23554,80.0,9.0,7.0,9.0,9.0,8.0,9.0,2,0.11 +48394,90.0,9.0,9.0,10.0,10.0,8.0,10.0,3,0.18 +12438,92.0,10.0,10.0,10.0,10.0,10.0,9.0,14,0.8 +27629,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +15304,98.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.47 +31630,80.0,9.0,8.0,8.0,9.0,8.0,9.0,2,1.5 +64478,89.0,9.0,8.0,9.0,9.0,9.0,9.0,10,0.57 +31805,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.23 +63226,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.44 +71081,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.06 +16127,,,,,,,,0, +42583,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.18 +2533,91.0,9.0,9.0,10.0,10.0,9.0,9.0,30,1.66 +61517,84.0,9.0,8.0,10.0,9.0,10.0,9.0,5,0.28 +27841,,,,,,,,0, +31217,88.0,10.0,10.0,9.0,10.0,10.0,10.0,22,1.54 +24622,90.0,9.0,9.0,9.0,10.0,9.0,9.0,22,1.34 +50500,90.0,8.0,10.0,10.0,10.0,10.0,8.0,2,0.12 +24328,97.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.76 +61551,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.22 +62749,100.0,10.0,10.0,10.0,10.0,10.0,10.0,23,1.24 +44409,88.0,10.0,9.0,10.0,10.0,9.0,9.0,8,0.44 +31409,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.67 +47496,92.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.28 +26272,67.0,7.0,9.0,7.0,6.0,10.0,8.0,3,0.19 +24544,99.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.8 +30484,97.0,10.0,10.0,10.0,10.0,10.0,10.0,52,3.11 +12011,96.0,9.0,10.0,10.0,10.0,9.0,10.0,11,0.6 +71760,98.0,10.0,10.0,10.0,10.0,10.0,10.0,44,2.41 +59484,80.0,8.0,8.0,10.0,10.0,10.0,10.0,2,0.12 +81,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.69 +61612,,,,,,,,0, +39898,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.25 +39616,97.0,10.0,10.0,10.0,10.0,9.0,10.0,37,2.03 +7268,86.0,8.0,8.0,9.0,8.0,9.0,8.0,20,1.14 +69034,,,,,,,,0, +59738,96.0,10.0,10.0,10.0,10.0,8.0,10.0,34,2.06 +45227,100.0,10.0,10.0,10.0,10.0,10.0,10.0,18,1.06 +2910,80.0,8.0,8.0,8.0,8.0,10.0,8.0,1,0.06 +36948,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.27 +31028,96.0,10.0,10.0,9.0,10.0,10.0,10.0,18,0.97 +75535,95.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.29 +66116,85.0,9.0,8.0,9.0,9.0,10.0,9.0,46,2.67 +1073,95.0,10.0,10.0,10.0,10.0,10.0,9.0,31,1.69 +37853,,,,,,,,0, +71675,97.0,10.0,9.0,10.0,10.0,10.0,10.0,13,0.7 +18611,,,,,,,,0, +74171,80.0,9.0,9.0,9.0,9.0,9.0,9.0,18,1.16 +42983,95.0,10.0,9.0,10.0,10.0,10.0,9.0,5,0.31 +32250,100.0,10.0,9.0,10.0,10.0,10.0,10.0,8,0.45 +60620,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.26 +64059,100.0,10.0,10.0,10.0,10.0,10.0,6.0,1,0.21 +42104,,,,,,,,0, +31706,,,,,,,,0, +48723,100.0,10.0,10.0,,10.0,,,1,0.06 +39006,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.16 +66915,91.0,10.0,9.0,10.0,10.0,10.0,10.0,15,0.97 +67515,93.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.18 +30129,95.0,10.0,10.0,10.0,10.0,10.0,9.0,44,2.46 +53464,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.78 +33028,100.0,10.0,6.0,10.0,10.0,10.0,10.0,2,0.13 +53571,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.23 +18023,96.0,10.0,10.0,10.0,10.0,10.0,10.0,42,2.37 +20841,,,,,,,,0, +12190,97.0,10.0,10.0,10.0,10.0,10.0,10.0,35,1.92 +9829,80.0,8.0,6.0,10.0,10.0,10.0,10.0,1,0.06 +12250,,,,,,,,0, +18681,93.0,9.0,9.0,8.0,9.0,9.0,8.0,3,0.22 +38978,95.0,10.0,10.0,10.0,10.0,9.0,10.0,15,0.89 +70609,90.0,10.0,9.0,10.0,10.0,8.0,10.0,3,0.16 +54497,100.0,10.0,10.0,10.0,10.0,9.0,10.0,42,2.35 +44749,,,,,,,,0, +12619,90.0,9.0,8.0,8.0,8.0,8.0,8.0,2,0.13 +53459,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.12 +65885,70.0,8.0,9.0,7.0,8.0,7.0,9.0,4,0.24 +59563,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.44 +2107,93.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.34 +30757,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,1.11 +1431,100.0,10.0,10.0,10.0,10.0,10.0,10.0,29,1.59 +24286,95.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.27 +31509,73.0,9.0,7.0,7.0,7.0,7.0,7.0,4,0.24 +7565,98.0,10.0,10.0,10.0,10.0,9.0,10.0,11,0.65 +71369,92.0,10.0,9.0,9.0,9.0,9.0,10.0,7,0.38 +25573,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.16 +53337,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.12 +49841,97.0,10.0,10.0,10.0,10.0,9.0,10.0,15,0.84 +46464,82.0,9.0,9.0,10.0,9.0,10.0,8.0,54,2.96 +16094,,,,,,,,0, +73129,96.0,10.0,9.0,10.0,10.0,9.0,10.0,5,0.36 +60038,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.7 +39759,87.0,7.0,8.0,9.0,10.0,10.0,10.0,4,0.27 +32881,,,,,,,,2,0.11 +68836,94.0,10.0,10.0,10.0,9.0,10.0,10.0,13,0.71 +22179,90.0,9.0,9.0,7.0,10.0,10.0,9.0,4,0.23 +9314,94.0,10.0,10.0,10.0,9.0,9.0,9.0,86,4.67 +49548,100.0,10.0,10.0,10.0,9.0,9.0,9.0,2,1.25 +920,87.0,9.0,8.0,9.0,10.0,10.0,9.0,27,1.5 +76629,80.0,6.0,8.0,8.0,10.0,8.0,5.0,3,0.17 +56700,94.0,10.0,10.0,10.0,9.0,9.0,9.0,73,3.95 +71749,,,,,,,,0, +17669,90.0,10.0,9.0,9.0,10.0,10.0,9.0,6,0.34 +44167,78.0,9.0,9.0,9.0,9.0,9.0,8.0,23,1.25 +66378,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.06 +26140,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +35956,,,,,,,,0, +6602,97.0,9.0,9.0,10.0,10.0,10.0,10.0,59,3.48 +61839,89.0,9.0,9.0,10.0,9.0,10.0,9.0,23,1.31 +50124,92.0,10.0,10.0,10.0,10.0,10.0,9.0,36,2.01 +33684,94.0,10.0,9.0,10.0,10.0,10.0,10.0,8,1.55 +33307,,,,,,,,0, +24187,92.0,10.0,9.0,10.0,10.0,10.0,9.0,28,1.76 +44467,80.0,9.0,8.0,10.0,10.0,9.0,9.0,3,0.17 +16310,80.0,10.0,6.0,10.0,8.0,8.0,10.0,1,0.05 +62166,93.0,9.0,9.0,9.0,10.0,9.0,9.0,3,0.17 +31585,94.0,10.0,10.0,10.0,10.0,10.0,9.0,76,4.18 +27230,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.38 +76598,80.0,10.0,10.0,2.0,8.0,6.0,10.0,1,0.29 +22270,92.0,9.0,9.0,9.0,9.0,9.0,9.0,26,1.51 +28821,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.12 +18774,95.0,10.0,10.0,10.0,10.0,10.0,10.0,76,4.12 +5286,99.0,10.0,10.0,10.0,10.0,10.0,10.0,18,1.01 +28893,99.0,10.0,10.0,10.0,10.0,10.0,10.0,52,3.58 +76151,99.0,10.0,10.0,10.0,10.0,10.0,10.0,22,1.22 +33969,,,,,,,,0, +65378,100.0,10.0,10.0,8.0,10.0,10.0,10.0,1,0.09 +45189,94.0,10.0,10.0,10.0,10.0,10.0,9.0,65,3.51 +5144,96.0,9.0,9.0,9.0,9.0,10.0,9.0,10,1.54 +64817,90.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.56 +5999,100.0,10.0,9.0,10.0,10.0,9.0,10.0,2,0.11 +19204,91.0,9.0,9.0,9.0,9.0,9.0,9.0,19,1.12 +39629,93.0,7.0,9.0,10.0,9.0,10.0,9.0,3,0.16 +23615,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.29 +44360,94.0,10.0,10.0,9.0,10.0,9.0,9.0,17,0.97 +33487,93.0,10.0,9.0,10.0,9.0,9.0,9.0,45,2.55 +55638,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +13805,94.0,10.0,10.0,10.0,10.0,10.0,9.0,10,0.7 +76603,97.0,9.0,9.0,10.0,10.0,9.0,9.0,6,0.33 +15826,99.0,10.0,10.0,10.0,10.0,10.0,10.0,36,2.0 +22176,80.0,8.0,8.0,10.0,9.0,9.0,9.0,3,0.27 +75382,,,,,,,,0, +18381,100.0,10.0,10.0,10.0,10.0,8.0,10.0,2,0.12 +17189,100.0,10.0,10.0,10.0,10.0,9.0,10.0,9,0.51 +55044,97.0,10.0,10.0,10.0,10.0,10.0,10.0,23,1.39 +70040,,,,,,,,0, +67037,97.0,10.0,10.0,10.0,10.0,9.0,9.0,23,1.48 +47781,90.0,9.0,9.0,10.0,10.0,10.0,9.0,10,2.78 +5773,97.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.39 +18312,80.0,9.0,8.0,9.0,9.0,9.0,9.0,90,4.89 +32669,95.0,10.0,10.0,10.0,10.0,9.0,9.0,21,1.17 +44391,86.0,9.0,7.0,10.0,10.0,10.0,9.0,28,3.73 +40703,,,,,,,,1,0.06 +75227,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.06 +24755,95.0,10.0,9.0,10.0,10.0,10.0,10.0,8,0.46 +38182,91.0,9.0,9.0,9.0,9.0,9.0,9.0,55,2.97 +31176,94.0,10.0,9.0,10.0,9.0,10.0,9.0,23,1.28 +56736,94.0,9.0,10.0,10.0,10.0,9.0,9.0,47,2.68 +26407,100.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.23 +28632,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.17 +12662,,,,,,,,0, +25184,,,,,,,,0, +37280,96.0,10.0,10.0,10.0,10.0,10.0,9.0,29,1.59 +46762,,,,,,,,0, +14648,90.0,10.0,8.0,9.0,9.0,10.0,10.0,2,0.12 +76137,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +4816,70.0,6.0,9.0,9.0,10.0,9.0,7.0,2,0.11 +56238,87.0,10.0,7.0,10.0,10.0,10.0,8.0,4,0.24 +60227,90.0,10.0,9.0,8.0,10.0,10.0,10.0,4,0.24 +1540,96.0,10.0,10.0,10.0,10.0,10.0,10.0,72,4.08 +59792,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +71207,20.0,2.0,2.0,2.0,2.0,8.0,2.0,1,0.07 +16705,90.0,10.0,10.0,10.0,9.0,8.0,8.0,6,0.37 +54254,96.0,10.0,9.0,10.0,9.0,10.0,9.0,11,0.6 +75060,85.0,9.0,9.0,10.0,9.0,9.0,9.0,91,5.08 +3418,99.0,10.0,10.0,10.0,10.0,10.0,10.0,29,1.65 +67193,99.0,10.0,10.0,10.0,10.0,9.0,10.0,20,1.23 +39597,,,,,,,,0, +23130,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.16 +317,,,,,,,,0, +14300,97.0,10.0,9.0,10.0,10.0,10.0,10.0,7,0.39 +36112,98.0,10.0,10.0,10.0,10.0,10.0,10.0,34,1.97 +73149,97.0,10.0,10.0,10.0,10.0,10.0,10.0,111,6.57 +75079,97.0,10.0,9.0,10.0,10.0,9.0,9.0,32,1.78 +33298,95.0,10.0,9.0,10.0,10.0,10.0,10.0,20,1.3 +38420,96.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.29 +68772,95.0,10.0,9.0,10.0,10.0,9.0,9.0,4,0.23 +37074,90.0,10.0,8.0,9.0,9.0,9.0,9.0,11,0.61 +21707,100.0,9.0,10.0,10.0,10.0,10.0,10.0,2,0.12 +7264,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.22 +19844,91.0,9.0,9.0,10.0,9.0,8.0,9.0,69,3.75 +11519,100.0,9.0,9.0,10.0,10.0,9.0,9.0,4,0.26 +3598,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.29 +9992,97.0,10.0,10.0,10.0,10.0,9.0,10.0,29,1.6 +66524,96.0,10.0,8.0,10.0,10.0,10.0,10.0,6,0.32 +18348,,,,,,,,1,0.06 +65181,,,,,,,,0, +51891,89.0,8.0,9.0,9.0,10.0,8.0,9.0,9,0.49 +58308,,,,,,,,0, +55561,85.0,9.0,8.0,9.0,9.0,8.0,8.0,23,1.81 +12234,,,,,,,,0, +9202,93.0,10.0,9.0,10.0,10.0,10.0,10.0,38,2.06 +67030,100.0,9.0,10.0,8.0,6.0,10.0,10.0,3,0.18 +15120,90.0,10.0,10.0,9.0,9.0,8.0,8.0,4,0.23 +18249,83.0,9.0,9.0,9.0,9.0,8.0,8.0,8,0.43 +23180,77.0,9.0,9.0,7.0,7.0,9.0,8.0,7,0.5 +61853,80.0,9.0,4.0,10.0,8.0,9.0,7.0,2,0.12 +40052,93.0,9.0,9.0,10.0,10.0,9.0,9.0,14,0.76 +28379,,,,,,,,0, +2931,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.22 +16370,100.0,10.0,10.0,9.0,10.0,10.0,10.0,5,0.3 +75285,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.06 +56120,100.0,8.0,8.0,8.0,8.0,10.0,8.0,1,0.06 +4552,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.06 +74440,,,,,,,,0, +24005,80.0,8.0,8.0,9.0,9.0,9.0,8.0,14,0.79 +5483,,,,,,,,0, +25108,,,,,,,,0, +38558,96.0,10.0,10.0,10.0,10.0,10.0,10.0,20,1.09 +35404,80.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.06 +5068,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.35 +13597,98.0,10.0,9.0,10.0,10.0,10.0,9.0,19,1.08 +13536,,,,,,,,0, +5801,,,,,,,,0, +49196,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +60467,99.0,10.0,10.0,10.0,10.0,10.0,10.0,32,3.22 +23696,85.0,9.0,9.0,10.0,10.0,9.0,9.0,4,0.26 +9237,97.0,10.0,9.0,10.0,10.0,10.0,9.0,7,0.41 +11176,,,,,,,,0, +63795,93.0,10.0,8.0,10.0,10.0,10.0,10.0,9,0.54 +76783,,,,,,,,0, +46126,99.0,10.0,10.0,10.0,10.0,10.0,10.0,35,1.98 +30981,92.0,10.0,9.0,10.0,10.0,10.0,10.0,19,1.05 +3549,90.0,9.0,10.0,9.0,10.0,10.0,8.0,4,0.22 +26237,98.0,10.0,10.0,10.0,10.0,10.0,10.0,52,2.86 +46560,90.0,10.0,10.0,9.0,9.0,9.0,10.0,2,0.15 +16590,88.0,10.0,10.0,10.0,9.0,8.0,9.0,5,0.28 +76167,,,,,,,,0, +69011,94.0,10.0,10.0,10.0,10.0,10.0,9.0,8,0.47 +36117,60.0,5.0,6.0,9.0,8.0,7.0,8.0,4,0.24 +8794,88.0,10.0,9.0,10.0,10.0,9.0,9.0,12,0.68 +64166,80.0,8.0,10.0,8.0,10.0,8.0,8.0,1,0.06 +33638,,,,,,,,0, +70298,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.1 +36707,,,,,,,,0, +65623,92.0,10.0,8.0,9.0,9.0,10.0,9.0,7,0.4 +54059,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.28 +54111,100.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.23 +58186,96.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.28 +5022,,,,,,,,0, +68895,,,,,,,,0, +69392,90.0,10.0,9.0,10.0,9.0,9.0,9.0,20,3.03 +70325,99.0,10.0,10.0,10.0,10.0,10.0,10.0,86,5.18 +28658,95.0,9.0,10.0,8.0,10.0,10.0,9.0,5,0.27 +60675,91.0,9.0,9.0,9.0,9.0,10.0,9.0,44,1.25 +36307,84.0,8.0,9.0,8.0,8.0,10.0,9.0,10,0.6 +2619,86.0,9.0,9.0,7.0,9.0,10.0,9.0,14,1.08 +38505,94.0,9.0,9.0,10.0,10.0,9.0,9.0,37,2.11 +40125,96.0,9.0,10.0,10.0,10.0,10.0,9.0,10,1.05 +46440,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.52 +16545,,,,,,,,0, +47257,90.0,9.0,8.0,9.0,10.0,10.0,9.0,5,0.31 +5940,92.0,10.0,9.0,10.0,10.0,9.0,9.0,58,3.19 +1876,100.0,10.0,10.0,10.0,10.0,10.0,10.0,16,1.07 +26192,92.0,9.0,9.0,9.0,9.0,9.0,9.0,63,3.66 +70629,94.0,10.0,10.0,10.0,10.0,10.0,9.0,10,0.64 +69332,89.0,9.0,9.0,10.0,10.0,9.0,10.0,16,0.9 +31721,96.0,10.0,10.0,10.0,10.0,10.0,10.0,41,2.29 +51707,97.0,10.0,10.0,10.0,10.0,10.0,10.0,75,4.21 +1403,96.0,10.0,10.0,10.0,10.0,10.0,10.0,90,5.02 +17870,,,,,,,,0, +2888,95.0,10.0,9.0,9.0,10.0,10.0,9.0,38,2.15 +39363,,,,,,,,0, +25164,88.0,9.0,9.0,9.0,9.0,9.0,9.0,22,1.25 +70150,93.0,10.0,10.0,10.0,8.0,10.0,8.0,3,0.19 +2539,89.0,10.0,9.0,10.0,10.0,9.0,10.0,17,0.93 +44234,95.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.34 +16436,80.0,8.0,7.0,9.0,10.0,9.0,8.0,6,0.33 +28689,,,,,,,,1,0.07 +51651,,,,,,,,0, +42796,98.0,10.0,10.0,10.0,10.0,9.0,9.0,16,0.93 +72534,94.0,9.0,9.0,10.0,10.0,10.0,10.0,7,0.4 +71043,,,,,,,,0, +14157,100.0,10.0,10.0,8.0,10.0,10.0,10.0,1,0.06 +74241,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.22 +30568,80.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.06 +76317,96.0,10.0,9.0,10.0,10.0,9.0,10.0,30,1.91 +46030,86.0,9.0,9.0,10.0,10.0,10.0,9.0,56,3.15 +32902,86.0,9.0,8.0,9.0,9.0,10.0,8.0,17,0.96 +7737,97.0,10.0,10.0,10.0,10.0,9.0,10.0,81,4.46 +6009,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.37 +14031,96.0,10.0,10.0,10.0,10.0,9.0,9.0,41,2.27 +39624,80.0,9.0,7.0,10.0,9.0,9.0,9.0,4,0.22 +70743,99.0,10.0,10.0,10.0,10.0,10.0,10.0,21,1.22 +55256,98.0,10.0,10.0,10.0,10.0,9.0,9.0,13,0.71 +51295,,,,,,,,0, +58657,,,,,,,,0, +9078,96.0,10.0,9.0,10.0,10.0,10.0,9.0,18,1.03 +14519,99.0,10.0,10.0,10.0,10.0,9.0,10.0,16,0.95 +8654,,,,,,,,0, +33652,80.0,,,,,,,1,0.06 +25634,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.28 +24462,94.0,10.0,10.0,10.0,10.0,10.0,9.0,16,1.12 +14746,,,,,,,,0, +37980,100.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.33 +54608,100.0,10.0,10.0,8.0,10.0,10.0,8.0,1,0.06 +64744,80.0,10.0,7.0,10.0,10.0,9.0,8.0,2,0.12 +62748,97.0,10.0,10.0,10.0,9.0,10.0,10.0,39,2.28 +1040,,,,,,,,1,0.18 +45096,,,,,,,,1,0.13 +55515,,,,,,,,0, +72138,96.0,10.0,10.0,10.0,10.0,10.0,10.0,21,1.18 +41479,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.35 +13203,92.0,10.0,9.0,10.0,10.0,9.0,10.0,5,0.28 +12905,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.34 +30362,100.0,10.0,9.0,9.0,10.0,10.0,10.0,3,0.17 +14678,96.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.65 +10947,100.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.86 +63514,96.0,10.0,10.0,10.0,10.0,9.0,10.0,78,4.31 +39158,90.0,9.0,10.0,10.0,10.0,10.0,9.0,3,0.17 +18403,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.11 +19408,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.12 +70344,87.0,8.0,8.0,8.0,8.0,10.0,9.0,7,0.39 +2548,91.0,10.0,9.0,10.0,10.0,9.0,9.0,19,1.05 +60352,96.0,10.0,10.0,10.0,10.0,9.0,10.0,9,0.49 +62191,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.17 +29343,,,,,,,,0, +75530,98.0,10.0,10.0,10.0,10.0,9.0,9.0,11,0.64 +36851,99.0,10.0,10.0,10.0,10.0,10.0,10.0,36,2.12 +62959,95.0,10.0,10.0,10.0,10.0,9.0,9.0,27,1.5 +47864,100.0,10.0,10.0,10.0,10.0,,,1,0.06 +58234,,,,,,,,0, +48178,87.0,9.0,9.0,9.0,9.0,10.0,10.0,3,0.19 +680,,,,,,,,0, +40385,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.45 +27471,,,,,,,,0, +61362,,,,,,,,0, +61757,91.0,10.0,9.0,9.0,10.0,10.0,9.0,9,0.61 +46723,94.0,10.0,9.0,10.0,10.0,9.0,10.0,7,0.42 +23253,96.0,9.0,10.0,9.0,10.0,9.0,9.0,10,0.68 +68081,,,,,,,,0, +14588,,,,,,,,0, +7452,98.0,10.0,9.0,10.0,10.0,9.0,9.0,25,1.46 +20482,,,,,,,,0, +6160,,,,,,,,0, +28794,94.0,10.0,10.0,10.0,10.0,8.0,10.0,24,1.37 +49241,93.0,9.0,9.0,10.0,9.0,9.0,9.0,67,3.87 +64692,,,,,,,,0, +65910,99.0,10.0,10.0,10.0,10.0,10.0,10.0,39,2.17 +61171,98.0,10.0,10.0,10.0,10.0,9.0,10.0,70,4.61 +7967,97.0,10.0,10.0,9.0,10.0,9.0,10.0,23,1.31 +68260,90.0,10.0,10.0,9.0,10.0,9.0,10.0,3,0.17 +30381,98.0,10.0,10.0,10.0,10.0,10.0,10.0,34,1.94 +412,99.0,10.0,10.0,10.0,10.0,10.0,10.0,18,1.13 +8418,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.23 +4050,,,,,,,,0, +1203,,,,,,,,0, +5434,90.0,9.0,9.0,10.0,9.0,9.0,9.0,14,0.78 +34434,97.0,10.0,10.0,10.0,10.0,9.0,10.0,35,1.93 +4394,100.0,10.0,10.0,10.0,8.0,8.0,10.0,1,0.06 +40480,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.53 +65652,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.46 +37505,80.0,9.0,7.0,9.0,9.0,9.0,9.0,4,0.22 +5710,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +66528,97.0,10.0,10.0,10.0,10.0,10.0,10.0,83,4.6 +2747,,,,,,,,0, +20360,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.06 +63129,95.0,10.0,10.0,10.0,10.0,9.0,9.0,26,1.45 +26811,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +54774,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.13 +59808,98.0,10.0,10.0,10.0,10.0,9.0,10.0,26,1.48 +53035,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.55 +47222,95.0,10.0,9.0,9.0,10.0,10.0,10.0,16,0.9 +18288,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.12 +73527,93.0,10.0,10.0,10.0,10.0,9.0,9.0,15,0.94 +20024,,,,,,,,0, +51456,94.0,9.0,10.0,10.0,9.0,10.0,9.0,14,0.88 +11011,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.67 +43195,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.53 +14435,,,,,,,,0, +52088,96.0,10.0,9.0,10.0,10.0,10.0,10.0,10,0.56 +26561,,,,,,,,0, +22531,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.38 +12399,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.12 +20854,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.45 +31950,95.0,9.0,9.0,10.0,10.0,9.0,9.0,15,0.92 +11597,99.0,10.0,10.0,10.0,10.0,10.0,10.0,85,5.37 +40205,,,,,,,,0, +44412,,,,,,,,0, +13099,94.0,10.0,9.0,9.0,10.0,10.0,9.0,39,2.13 +19247,,,,,,,,0, +16557,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.28 +29467,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.61 +12669,,,,,,,,1,0.06 +50483,100.0,8.0,9.0,10.0,9.0,9.0,9.0,3,0.18 +10966,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.12 +44368,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.18 +40555,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.25 +57757,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.21 +21885,96.0,10.0,10.0,10.0,10.0,10.0,10.0,36,1.97 +35854,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.5 +20961,100.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.99 +1978,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.55 +18821,100.0,10.0,10.0,9.0,10.0,9.0,10.0,7,0.41 +7203,99.0,10.0,10.0,10.0,10.0,10.0,10.0,31,1.8 +43372,75.0,8.0,9.0,9.0,9.0,9.0,7.0,5,0.28 +31468,95.0,9.0,10.0,10.0,10.0,10.0,9.0,20,1.19 +61470,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +10884,,,,,,,,0, +64314,98.0,10.0,10.0,10.0,10.0,10.0,9.0,18,1.03 +44755,93.0,10.0,9.0,9.0,10.0,10.0,10.0,18,0.98 +43010,94.0,9.0,10.0,10.0,9.0,10.0,10.0,8,0.46 +47735,,,,,,,,0, +38559,,,,,,,,0, +72970,100.0,10.0,10.0,10.0,10.0,8.0,9.0,3,0.18 +36739,94.0,9.0,9.0,10.0,10.0,10.0,9.0,14,0.8 +70803,90.0,9.0,9.0,10.0,9.0,9.0,9.0,41,2.39 +36575,87.0,9.0,8.0,10.0,9.0,10.0,9.0,24,1.52 +71353,93.0,10.0,10.0,10.0,10.0,10.0,9.0,21,1.29 +19928,,,,,,,,0, +3228,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +50493,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +29720,83.0,9.0,9.0,10.0,10.0,9.0,8.0,13,0.8 +22283,99.0,10.0,10.0,10.0,10.0,10.0,10.0,27,1.49 +54712,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.39 +44977,100.0,10.0,10.0,10.0,10.0,10.0,6.0,2,0.12 +67114,93.0,9.0,9.0,9.0,9.0,9.0,9.0,17,0.95 +58198,,,,,,,,0, +75753,100.0,10.0,9.0,10.0,10.0,9.0,9.0,13,0.72 +39208,95.0,9.0,10.0,10.0,10.0,9.0,9.0,26,1.46 +13658,90.0,9.0,10.0,9.0,10.0,10.0,9.0,23,1.45 +62886,95.0,10.0,10.0,10.0,10.0,9.0,9.0,52,2.98 +66833,,,,,,,,0, +14624,90.0,9.0,9.0,10.0,9.0,10.0,10.0,2,0.11 +32788,88.0,9.0,10.0,9.0,9.0,10.0,9.0,36,1.97 +70558,98.0,10.0,10.0,10.0,10.0,10.0,9.0,22,1.24 +9804,91.0,9.0,9.0,10.0,10.0,10.0,10.0,22,1.22 +68411,97.0,10.0,9.0,10.0,10.0,9.0,9.0,7,0.4 +50431,90.0,9.0,10.0,10.0,10.0,10.0,9.0,2,0.11 +35826,92.0,10.0,10.0,10.0,9.0,9.0,9.0,54,3.09 +33567,93.0,9.0,9.0,9.0,9.0,9.0,9.0,13,0.73 +68924,87.0,9.0,9.0,9.0,10.0,9.0,7.0,3,0.17 +10971,,,,,,,,0, +75789,80.0,8.0,10.0,10.0,8.0,8.0,10.0,1,0.06 +31496,92.0,9.0,9.0,10.0,10.0,9.0,9.0,10,0.55 +6363,94.0,10.0,9.0,9.0,10.0,10.0,9.0,13,0.72 +76024,99.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.92 +20382,83.0,9.0,8.0,9.0,9.0,8.0,8.0,6,0.45 +10952,100.0,10.0,10.0,10.0,10.0,8.0,10.0,2,0.11 +73914,100.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.46 +68871,100.0,10.0,10.0,10.0,10.0,9.0,9.0,6,0.36 +35171,,,,,,,,0, +32725,,,,,,,,0, +42669,84.0,9.0,8.0,9.0,9.0,10.0,9.0,101,5.75 +33743,99.0,10.0,10.0,10.0,10.0,10.0,10.0,35,1.94 +61150,,,,,,,,0, +10339,96.0,10.0,10.0,10.0,10.0,10.0,10.0,45,2.5 +71279,97.0,10.0,10.0,10.0,10.0,9.0,10.0,143,7.94 +5802,83.0,9.0,9.0,9.0,9.0,9.0,9.0,20,1.15 +62813,100.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.06 +48293,80.0,8.0,8.0,8.0,9.0,9.0,9.0,3,0.17 +38054,80.0,8.0,8.0,10.0,10.0,9.0,9.0,4,0.28 +66989,94.0,9.0,9.0,10.0,10.0,10.0,9.0,10,0.56 +35090,93.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.17 +12830,99.0,10.0,10.0,10.0,10.0,10.0,9.0,15,0.82 +7923,,,,,,,,0, +4900,95.0,10.0,10.0,10.0,10.0,8.0,10.0,4,0.27 +14442,92.0,10.0,9.0,9.0,10.0,9.0,9.0,15,0.87 +49216,97.0,10.0,9.0,10.0,10.0,9.0,10.0,48,2.79 +69731,99.0,10.0,10.0,10.0,10.0,10.0,10.0,28,1.6 +72084,96.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.27 +23223,96.0,10.0,9.0,10.0,10.0,10.0,10.0,32,1.83 +69231,97.0,10.0,10.0,10.0,10.0,10.0,10.0,62,3.54 +66895,,,,,,,,0, +5971,98.0,10.0,10.0,10.0,10.0,10.0,10.0,41,2.29 +37155,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.12 +5738,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.18 +55539,100.0,10.0,8.0,10.0,10.0,8.0,10.0,1,0.54 +42608,95.0,10.0,10.0,10.0,10.0,9.0,9.0,30,1.74 +43973,89.0,9.0,9.0,9.0,9.0,9.0,9.0,32,2.06 +70103,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.17 +75772,,,,,,,,0, +62171,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +12030,85.0,9.0,8.0,9.0,9.0,9.0,9.0,49,2.88 +62772,,,,,,,,0, +21962,100.0,10.0,10.0,10.0,10.0,10.0,6.0,1,0.1 +64661,96.0,10.0,10.0,9.0,10.0,9.0,10.0,25,1.38 +48795,,,,,,,,0, +20614,87.0,9.0,9.0,9.0,9.0,10.0,9.0,52,2.98 +13810,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.12 +54670,,,,,,,,0, +29283,100.0,10.0,10.0,9.0,10.0,10.0,10.0,4,0.28 +60906,80.0,4.0,4.0,6.0,4.0,4.0,4.0,1,0.09 +34441,95.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.23 +40282,93.0,10.0,10.0,9.0,10.0,9.0,9.0,12,0.68 +51108,99.0,10.0,10.0,10.0,10.0,10.0,10.0,22,1.31 +3855,60.0,8.0,6.0,10.0,10.0,10.0,8.0,1,0.07 +45839,,,,,,,,0, +40271,,,,,,,,0, +40435,,,,,,,,0, +22304,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.46 +55090,,,,,,,,0, +59038,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.3 +29082,,,,,,,,0, +75080,99.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.84 +55426,92.0,10.0,10.0,10.0,10.0,10.0,9.0,112,6.49 +35397,,,,,,,,0, +14777,,,,,,,,0, +48555,85.0,9.0,8.0,10.0,9.0,10.0,9.0,34,1.89 +17818,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.34 +27208,96.0,10.0,10.0,10.0,10.0,9.0,10.0,18,1.03 +42108,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.06 +52070,,,,,,,,0, +53062,100.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.35 +35752,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.47 +30400,,,,,,,,0, +41474,84.0,10.0,8.0,10.0,10.0,10.0,9.0,11,0.63 +54256,70.0,7.0,6.0,8.0,8.0,7.0,6.0,3,0.16 +11393,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.17 +8917,85.0,9.0,8.0,9.0,9.0,10.0,9.0,15,0.88 +22570,,,,,,,,0, +48048,60.0,10.0,8.0,10.0,10.0,6.0,6.0,1,0.38 +4545,87.0,10.0,9.0,10.0,9.0,9.0,10.0,6,0.35 +39556,,,,,,,,0, +70801,20.0,2.0,2.0,2.0,2.0,4.0,2.0,1,0.23 +38200,99.0,10.0,10.0,10.0,10.0,10.0,9.0,19,1.07 +60173,,,,,,,,0, +43665,93.0,9.0,10.0,10.0,10.0,9.0,9.0,3,0.2 +61692,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.46 +66291,86.0,9.0,8.0,9.0,9.0,9.0,9.0,45,3.1 +22627,96.0,10.0,10.0,10.0,10.0,9.0,9.0,23,1.51 +66947,84.0,8.0,6.0,8.0,9.0,9.0,10.0,6,0.35 +41430,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.16 +52289,100.0,10.0,10.0,10.0,10.0,10.0,10.0,21,1.18 +73786,75.0,10.0,8.0,8.0,9.0,9.0,8.0,4,0.34 +40790,,,,,,,,0, +51049,83.0,9.0,9.0,9.0,9.0,7.0,9.0,9,0.53 +58443,,,,,,,,0, +64691,,,,,,,,0, +46394,60.0,7.0,5.0,8.0,8.0,7.0,6.0,7,0.5 +70933,96.0,10.0,10.0,9.0,10.0,10.0,10.0,9,0.52 +76111,91.0,9.0,9.0,10.0,10.0,10.0,9.0,14,0.79 +20732,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.17 +26226,,,,,,,,0, +10885,97.0,10.0,9.0,10.0,10.0,10.0,10.0,14,1.24 +38975,80.0,10.0,10.0,8.0,10.0,6.0,10.0,1,0.06 +55046,88.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.29 +4789,95.0,10.0,10.0,10.0,10.0,9.0,9.0,8,0.45 +30285,91.0,10.0,9.0,10.0,10.0,10.0,9.0,9,0.84 +566,93.0,10.0,9.0,9.0,10.0,10.0,9.0,14,1.19 +57436,80.0,10.0,8.0,8.0,9.0,9.0,9.0,2,0.13 +34408,88.0,10.0,8.0,10.0,9.0,10.0,9.0,16,3.38 +15147,98.0,10.0,9.0,10.0,10.0,10.0,10.0,8,0.49 +74263,92.0,9.0,10.0,10.0,10.0,10.0,9.0,13,0.74 +58123,95.0,10.0,10.0,10.0,10.0,9.0,10.0,64,3.57 +1123,85.0,9.0,10.0,10.0,10.0,9.0,8.0,8,0.46 +65364,87.0,9.0,9.0,10.0,10.0,9.0,9.0,6,0.33 +68556,93.0,9.0,9.0,9.0,10.0,7.0,9.0,3,0.18 +17770,96.0,10.0,10.0,10.0,10.0,9.0,10.0,78,4.35 +50377,81.0,8.0,8.0,9.0,9.0,9.0,8.0,15,0.92 +59473,91.0,10.0,9.0,9.0,10.0,9.0,9.0,41,2.24 +650,89.0,9.0,9.0,10.0,10.0,9.0,10.0,9,0.5 +49901,,,,,,,,0, +52139,95.0,10.0,9.0,10.0,9.0,10.0,10.0,13,0.75 +15058,87.0,9.0,9.0,10.0,10.0,10.0,9.0,61,3.54 +74804,94.0,10.0,10.0,10.0,10.0,8.0,10.0,69,3.85 +57551,92.0,10.0,9.0,10.0,10.0,10.0,9.0,24,1.51 +75415,100.0,10.0,9.0,10.0,10.0,9.0,10.0,2,0.14 +63485,97.0,10.0,10.0,10.0,10.0,9.0,10.0,43,2.4 +67091,,,,,,,,0, +36568,97.0,10.0,10.0,10.0,10.0,10.0,10.0,19,1.1 +13662,96.0,10.0,10.0,10.0,10.0,9.0,10.0,9,0.51 +64425,95.0,10.0,10.0,10.0,10.0,9.0,10.0,62,3.47 +1247,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.23 +49109,94.0,10.0,10.0,10.0,9.0,10.0,9.0,19,1.09 +64400,94.0,10.0,10.0,10.0,10.0,9.0,10.0,83,4.76 +32722,80.0,9.0,7.0,10.0,9.0,7.0,8.0,3,0.17 +34271,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.22 +33722,100.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.25 +30979,100.0,10.0,9.0,9.0,9.0,9.0,9.0,2,0.12 +14313,88.0,10.0,9.0,10.0,10.0,10.0,9.0,21,1.21 +56928,,,,,,,,0, +26323,,,,,,,,0, +40565,86.0,9.0,9.0,9.0,9.0,10.0,8.0,19,1.09 +62658,96.0,10.0,10.0,10.0,10.0,10.0,10.0,24,2.22 +40627,78.0,8.0,8.0,7.0,8.0,7.0,8.0,18,1.11 +4964,96.0,10.0,10.0,10.0,10.0,10.0,10.0,48,2.63 +46189,80.0,10.0,8.0,10.0,10.0,8.0,10.0,1,0.06 +64408,,,,,,,,0, +17545,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.18 +25036,80.0,9.0,7.0,9.0,10.0,10.0,9.0,5,0.29 +61864,92.0,9.0,9.0,10.0,10.0,10.0,9.0,25,1.4 +70639,96.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.62 +42112,100.0,10.0,10.0,10.0,10.0,9.0,9.0,7,1.56 +41664,100.0,10.0,10.0,8.0,10.0,8.0,10.0,2,0.14 +21563,80.0,9.0,8.0,8.0,9.0,9.0,8.0,8,0.44 +64391,96.0,10.0,9.0,10.0,10.0,10.0,9.0,5,0.3 +25112,,,,,,,,0, +28840,,,,,,,,0, +42497,,,,,,,,0, +71584,96.0,10.0,10.0,10.0,9.0,10.0,9.0,10,0.6 +62310,100.0,10.0,10.0,10.0,10.0,8.0,10.0,2,0.12 +63778,96.0,10.0,10.0,10.0,10.0,9.0,10.0,79,4.72 +33720,97.0,10.0,10.0,10.0,10.0,9.0,10.0,73,4.07 +6153,95.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.29 +39172,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.77 +44094,96.0,10.0,10.0,10.0,10.0,10.0,9.0,41,2.33 +5797,98.0,10.0,10.0,10.0,10.0,10.0,10.0,26,1.45 +40746,66.0,8.0,7.0,9.0,8.0,9.0,6.0,18,1.02 +31170,98.0,10.0,10.0,10.0,10.0,9.0,9.0,10,0.59 +13482,100.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.57 +39729,95.0,10.0,10.0,10.0,10.0,9.0,10.0,14,0.86 +22615,99.0,10.0,10.0,10.0,10.0,10.0,10.0,42,2.32 +17573,97.0,10.0,10.0,10.0,10.0,10.0,9.0,22,1.43 +47861,91.0,9.0,9.0,9.0,10.0,9.0,9.0,17,1.0 +5154,95.0,10.0,10.0,10.0,10.0,9.0,10.0,40,2.63 +27066,,,,,,,,0, +6090,,,,,,,,0, +3107,95.0,10.0,10.0,10.0,10.0,9.0,10.0,24,1.33 +50829,90.0,9.0,9.0,10.0,10.0,10.0,10.0,4,0.23 +21358,90.0,10.0,9.0,10.0,10.0,9.0,9.0,4,0.35 +41839,87.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.28 +40398,94.0,9.0,9.0,10.0,10.0,10.0,10.0,8,0.61 +65091,88.0,9.0,8.0,9.0,9.0,9.0,9.0,8,0.46 +17576,98.0,10.0,10.0,10.0,10.0,10.0,9.0,18,1.2 +28470,,,,,,,,0, +9385,100.0,10.0,10.0,10.0,8.0,10.0,10.0,1,0.06 +9223,98.0,10.0,10.0,10.0,10.0,10.0,10.0,67,3.76 +57018,,,,,,,,2,0.11 +12815,,,,,,,,0, +16280,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.06 +49510,97.0,10.0,10.0,10.0,10.0,10.0,9.0,19,1.07 +43704,60.0,7.0,9.0,10.0,10.0,9.0,9.0,2,0.11 +6864,,,,,,,,0, +48970,87.0,9.0,8.0,9.0,9.0,9.0,7.0,3,0.18 +6830,90.0,9.0,8.0,10.0,10.0,8.0,9.0,2,0.11 +53118,79.0,9.0,8.0,10.0,9.0,9.0,9.0,31,1.7 +55241,95.0,10.0,10.0,10.0,10.0,10.0,9.0,32,1.76 +22086,94.0,10.0,9.0,10.0,10.0,10.0,9.0,19,1.15 +31113,97.0,10.0,10.0,10.0,10.0,10.0,10.0,58,3.25 +27145,90.0,9.0,9.0,10.0,9.0,10.0,9.0,24,1.39 +33286,98.0,10.0,9.0,10.0,10.0,10.0,10.0,29,1.64 +56180,97.0,10.0,9.0,10.0,10.0,10.0,10.0,21,1.22 +6860,73.0,7.0,7.0,8.0,8.0,9.0,7.0,11,0.64 +76642,97.0,10.0,7.0,10.0,10.0,10.0,10.0,6,0.35 +62169,96.0,10.0,9.0,10.0,10.0,10.0,10.0,57,3.2 +75066,90.0,9.0,9.0,9.0,10.0,9.0,9.0,71,4.29 +1616,70.0,10.0,9.0,10.0,10.0,9.0,10.0,2,0.23 +36325,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.57 +14965,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.67 +54520,60.0,6.0,4.0,4.0,4.0,6.0,6.0,1,0.06 +12693,,,,,,,,0, +45053,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.69 +55602,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +40557,80.0,9.0,7.0,9.0,9.0,8.0,9.0,4,0.23 +702,,,,,,,,0, +49288,,,,,,,,0, +75358,90.0,9.0,9.0,10.0,10.0,10.0,9.0,55,3.2 +14785,,,,,,,,1,0.16 +70925,89.0,10.0,9.0,10.0,10.0,9.0,9.0,60,3.3 +33441,100.0,8.0,10.0,10.0,10.0,10.0,8.0,1,0.06 +18869,70.0,6.0,7.0,6.0,6.0,10.0,8.0,2,0.12 +24374,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.12 +31031,90.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.35 +60252,,,,,,,,0, +26707,90.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.12 +42484,80.0,10.0,6.0,10.0,8.0,10.0,8.0,1,0.06 +4532,98.0,10.0,10.0,10.0,10.0,10.0,10.0,39,2.16 +1270,84.0,9.0,8.0,10.0,10.0,10.0,9.0,18,1.06 +13002,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.18 +51285,94.0,10.0,10.0,9.0,9.0,9.0,10.0,27,1.54 +1579,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.4 +62802,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +29924,,,,,,,,0, +63435,,,,,,,,0, +65291,77.0,9.0,8.0,8.0,8.0,9.0,7.0,7,0.39 +38780,96.0,10.0,9.0,10.0,10.0,9.0,10.0,61,3.64 +27611,96.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.7 +22209,20.0,2.0,2.0,2.0,2.0,6.0,4.0,1,0.07 +28156,95.0,10.0,10.0,9.0,10.0,9.0,9.0,22,1.26 +33622,100.0,9.0,9.0,10.0,10.0,9.0,10.0,2,0.17 +42313,,,,,,,,0, +54580,87.0,9.0,8.0,10.0,10.0,10.0,9.0,27,1.52 +36340,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.17 +73141,100.0,10.0,10.0,10.0,10.0,9.0,10.0,15,0.88 +1554,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.12 +12333,,,,,,,,0, +75957,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.06 +509,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.13 +5594,99.0,10.0,10.0,10.0,10.0,10.0,10.0,46,2.55 +60547,90.0,9.0,9.0,10.0,10.0,10.0,9.0,51,2.85 +36093,100.0,10.0,10.0,10.0,10.0,10.0,10.0,69,4.06 +69209,95.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.35 +39443,100.0,10.0,10.0,10.0,10.0,9.0,10.0,21,1.41 +22357,,,,,,,,0, +28661,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.11 +64044,90.0,9.0,8.0,10.0,9.0,9.0,9.0,10,0.64 +5906,87.0,9.0,8.0,9.0,9.0,8.0,9.0,4,0.23 +38729,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.39 +28799,98.0,10.0,10.0,10.0,10.0,9.0,10.0,33,1.85 +75286,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.68 +37407,,,,,,,,1,0.08 +10993,,,,,,,,0, +39026,98.0,10.0,10.0,10.0,10.0,9.0,9.0,10,0.62 +51533,86.0,10.0,8.0,10.0,10.0,10.0,9.0,11,0.63 +70742,100.0,10.0,10.0,10.0,9.0,10.0,10.0,6,0.34 +43267,80.0,8.0,8.0,10.0,10.0,10.0,8.0,2,0.12 +53503,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +33151,,,,,,,,1,0.11 +8388,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.13 +73244,,,,,,,,0, +56131,99.0,10.0,10.0,10.0,10.0,9.0,10.0,18,1.04 +37575,99.0,10.0,10.0,10.0,10.0,10.0,10.0,48,2.86 +64767,100.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.11 +23830,92.0,9.0,9.0,9.0,10.0,10.0,9.0,15,1.0 +27962,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.35 +60415,83.0,8.0,7.0,9.0,10.0,9.0,9.0,7,0.39 +3041,95.0,10.0,10.0,10.0,10.0,9.0,8.0,11,1.43 +61450,97.0,10.0,10.0,10.0,10.0,9.0,10.0,19,1.07 +35788,93.0,10.0,10.0,10.0,9.0,10.0,10.0,21,1.18 +22186,96.0,9.0,9.0,10.0,10.0,10.0,10.0,36,2.03 +11759,90.0,10.0,9.0,8.0,10.0,10.0,10.0,3,0.27 +56687,89.0,9.0,9.0,9.0,9.0,10.0,9.0,48,2.72 +15146,86.0,9.0,8.0,9.0,9.0,9.0,9.0,78,4.29 +7309,99.0,10.0,10.0,10.0,10.0,9.0,10.0,29,1.66 +18520,92.0,10.0,9.0,10.0,10.0,9.0,9.0,22,1.27 +71276,100.0,10.0,9.0,10.0,10.0,9.0,9.0,3,0.19 +55157,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.39 +60149,,,,,,,,0, +71624,,,,,,,,0, +15763,100.0,9.0,9.0,10.0,9.0,10.0,10.0,5,0.65 +4955,,,,,,,,0, +62241,,,,,,,,1,0.09 +74979,90.0,9.0,10.0,7.0,8.0,10.0,10.0,2,0.12 +22700,100.0,10.0,9.0,10.0,9.0,10.0,8.0,3,0.17 +66578,100.0,10.0,9.0,10.0,10.0,10.0,9.0,3,0.19 +40425,,,,,,,,0, +5718,99.0,10.0,10.0,10.0,10.0,9.0,10.0,73,4.09 +75219,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.17 +56331,92.0,10.0,9.0,10.0,9.0,10.0,10.0,5,0.29 +51870,75.0,8.0,9.0,9.0,9.0,9.0,8.0,11,0.62 +68722,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.12 +37083,95.0,10.0,9.0,10.0,10.0,9.0,10.0,22,1.3 +62826,,,,,,,,1,0.13 +18778,,,,,,,,0, +33337,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.12 +60843,,,,,,,,0, +35073,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.34 +20412,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.41 +25274,95.0,10.0,10.0,10.0,10.0,9.0,9.0,22,1.23 +39905,93.0,10.0,9.0,10.0,10.0,9.0,9.0,36,2.09 +45098,95.0,10.0,8.0,10.0,10.0,10.0,10.0,5,0.29 +56674,,,,,,,,0, +59452,,,,,,,,0, +57189,98.0,10.0,10.0,10.0,10.0,9.0,10.0,23,1.33 +63538,,,,,,,,0, +15380,,,,,,,,0, +69785,,,,,,,,0, +21042,,,,,,,,0, +23207,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.23 +29129,98.0,10.0,10.0,10.0,10.0,10.0,10.0,29,1.69 +49473,,,,,,,,0, +64341,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.06 +6148,96.0,10.0,10.0,10.0,10.0,9.0,10.0,39,2.19 +2431,100.0,10.0,10.0,10.0,10.0,9.0,10.0,46,2.63 +4716,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.71 +17055,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.34 +44444,,,,,,,,1,0.06 +28916,,,,,,,,0, +12666,100.0,10.0,10.0,,,,,2,0.11 +40176,,,,,,,,0, +51565,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.25 +49881,100.0,10.0,10.0,10.0,10.0,9.0,10.0,6,1.46 +45800,87.0,9.0,8.0,10.0,9.0,9.0,9.0,7,0.57 +28894,,,,,,,,0, +890,100.0,10.0,9.0,10.0,10.0,9.0,10.0,3,0.19 +35952,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.11 +59821,,,,,,,,0, +56150,98.0,10.0,10.0,10.0,10.0,9.0,10.0,10,0.56 +72076,93.0,9.0,9.0,9.0,9.0,9.0,9.0,3,1.17 +13323,100.0,10.0,9.0,10.0,10.0,10.0,10.0,7,0.39 +53667,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.27 +51831,99.0,10.0,10.0,10.0,10.0,10.0,10.0,103,5.87 +74603,,,,,,,,0, +16713,,,,,,,,0, +49938,96.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.81 +19121,98.0,10.0,10.0,10.0,10.0,10.0,10.0,40,2.32 +45750,,,,,,,,0, +69339,100.0,10.0,10.0,10.0,10.0,10.0,9.0,9,0.55 +76685,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.27 +28299,88.0,9.0,9.0,10.0,10.0,10.0,9.0,59,3.63 +36315,85.0,9.0,8.0,10.0,10.0,8.0,8.0,5,0.29 +66927,96.0,10.0,9.0,10.0,10.0,10.0,9.0,9,0.53 +26774,91.0,10.0,9.0,10.0,10.0,10.0,9.0,42,2.6 +62781,73.0,9.0,8.0,10.0,10.0,6.0,7.0,3,0.17 +76730,100.0,10.0,9.0,10.0,10.0,9.0,9.0,2,0.12 +33643,83.0,10.0,8.0,10.0,10.0,9.0,8.0,15,0.84 +24637,97.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.92 +47772,85.0,9.0,10.0,10.0,10.0,10.0,9.0,8,0.5 +9775,88.0,9.0,9.0,9.0,10.0,9.0,9.0,71,4.06 +33790,80.0,9.0,9.0,10.0,10.0,10.0,8.0,3,0.58 +5568,99.0,10.0,10.0,10.0,10.0,10.0,10.0,20,1.12 +11777,,,,,,,,0, +52385,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.06 +45597,98.0,10.0,10.0,10.0,10.0,9.0,9.0,17,1.0 +57293,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.13 +17676,86.0,9.0,9.0,9.0,9.0,10.0,9.0,56,3.64 +17309,98.0,10.0,9.0,10.0,10.0,10.0,10.0,42,2.34 +56521,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.15 +64249,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.91 +2947,100.0,9.0,9.0,10.0,10.0,10.0,10.0,2,0.11 +72214,85.0,9.0,9.0,9.0,9.0,10.0,10.0,5,0.3 +47182,96.0,10.0,10.0,10.0,10.0,10.0,10.0,17,0.96 +47590,,,,,,,,1,0.06 +53993,98.0,10.0,10.0,10.0,10.0,9.0,10.0,11,0.62 +25254,,,,,,,,0, +42219,82.0,8.0,8.0,10.0,9.0,10.0,9.0,11,0.62 +72375,95.0,10.0,9.0,10.0,10.0,9.0,9.0,11,0.63 +30818,95.0,10.0,10.0,10.0,10.0,10.0,9.0,106,5.93 +55433,93.0,9.0,9.0,9.0,9.0,10.0,9.0,31,1.77 +10310,93.0,10.0,9.0,10.0,10.0,10.0,9.0,24,1.36 +37258,80.0,8.0,6.0,7.0,7.0,9.0,8.0,3,0.18 +65322,93.0,9.0,9.0,9.0,10.0,9.0,9.0,9,0.5 +75383,98.0,10.0,10.0,10.0,10.0,9.0,10.0,118,6.73 +37131,90.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.49 +876,98.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.89 +3520,84.0,8.0,8.0,10.0,10.0,10.0,8.0,11,0.91 +75586,88.0,9.0,9.0,10.0,10.0,10.0,9.0,28,1.63 +13806,100.0,9.0,10.0,10.0,10.0,10.0,10.0,2,0.12 +32951,99.0,10.0,10.0,10.0,10.0,10.0,10.0,30,1.7 +50728,,,,,,,,0, +65141,80.0,9.0,8.0,10.0,9.0,10.0,9.0,12,0.68 +10998,100.0,10.0,9.0,10.0,10.0,9.0,9.0,6,0.35 +30094,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.28 +8327,,,,,,,,0, +16847,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.15 +63609,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +69819,94.0,10.0,10.0,10.0,10.0,9.0,10.0,21,1.49 +63230,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.76 +12288,100.0,10.0,9.0,10.0,10.0,9.0,10.0,2,0.12 +60397,100.0,10.0,10.0,8.0,10.0,10.0,9.0,2,0.4 +45047,92.0,10.0,9.0,10.0,10.0,10.0,10.0,11,0.61 +58715,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.74 +57875,94.0,10.0,10.0,10.0,10.0,9.0,9.0,35,2.09 +50731,87.0,9.0,8.0,9.0,9.0,9.0,9.0,9,0.51 +60516,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.17 +50394,97.0,10.0,10.0,10.0,10.0,10.0,10.0,24,1.34 +29420,94.0,10.0,10.0,9.0,10.0,10.0,9.0,113,6.47 +49750,,,,,,,,1,0.09 +4609,95.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.62 +58873,,,,,,,,0, +15421,97.0,10.0,10.0,10.0,10.0,10.0,10.0,45,2.68 +60673,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.56 +13003,93.0,9.0,10.0,10.0,10.0,9.0,8.0,3,0.17 +64816,,,,,,,,0, +36201,,,,,,,,0, +74030,100.0,9.0,9.0,9.0,10.0,9.0,9.0,3,0.19 +65942,95.0,10.0,9.0,10.0,10.0,9.0,9.0,15,0.99 +65126,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +9138,,,,,,,,0, +55333,,,,,,,,0, +38198,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.29 +3784,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.09 +53644,96.0,10.0,9.0,10.0,10.0,10.0,10.0,19,3.39 +22910,95.0,10.0,10.0,10.0,10.0,10.0,9.0,55,3.17 +68381,81.0,9.0,9.0,9.0,9.0,8.0,9.0,20,1.13 +853,80.0,9.0,9.0,9.0,10.0,8.0,9.0,3,0.17 +22461,95.0,10.0,10.0,10.0,10.0,9.0,9.0,17,1.02 +588,88.0,8.0,8.0,10.0,10.0,10.0,9.0,10,0.58 +18412,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.29 +4057,98.0,10.0,10.0,10.0,10.0,10.0,9.0,17,0.97 +31341,96.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.29 +73974,96.0,10.0,10.0,10.0,10.0,9.0,9.0,16,1.0 +28012,98.0,10.0,10.0,10.0,10.0,9.0,10.0,41,2.34 +57432,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.06 +34603,,,,,,,,0, +55274,86.0,9.0,9.0,10.0,10.0,9.0,9.0,20,1.13 +44232,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +61581,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.42 +45508,100.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.86 +20473,94.0,9.0,8.0,9.0,9.0,9.0,9.0,7,0.39 +3019,97.0,10.0,10.0,10.0,10.0,9.0,10.0,13,0.73 +3978,,,,,,,,0, +3138,96.0,8.0,10.0,9.0,10.0,10.0,9.0,9,0.54 +23808,99.0,10.0,10.0,10.0,10.0,10.0,10.0,25,1.74 +41872,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.21 +75869,95.0,10.0,10.0,10.0,10.0,8.0,10.0,4,0.22 +48472,,,,,,,,0, +6127,100.0,10.0,9.0,9.0,10.0,9.0,10.0,2,0.11 +19565,93.0,10.0,9.0,10.0,10.0,10.0,9.0,65,3.67 +43380,,,,,,,,0, +5316,,,,,,,,0, +49044,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.29 +29756,95.0,10.0,10.0,10.0,10.0,10.0,9.0,11,0.64 +28200,92.0,9.0,8.0,9.0,10.0,10.0,9.0,13,0.76 +3086,84.0,9.0,9.0,10.0,9.0,10.0,9.0,35,1.95 +5578,100.0,10.0,10.0,10.0,10.0,9.0,9.0,2,0.13 +55836,89.0,9.0,10.0,10.0,9.0,10.0,9.0,21,0.63 +43019,90.0,10.0,8.0,9.0,10.0,9.0,9.0,7,0.53 +14120,89.0,9.0,8.0,9.0,10.0,9.0,9.0,17,0.99 +46875,85.0,9.0,9.0,10.0,10.0,10.0,9.0,37,2.06 +34165,,,,,,,,0, +31883,92.0,9.0,9.0,10.0,10.0,9.0,9.0,16,0.93 +1715,70.0,8.0,8.0,7.0,6.0,8.0,8.0,6,0.35 +56370,86.0,9.0,9.0,9.0,9.0,9.0,9.0,22,1.3 +3457,,,,,,,,0, +57207,86.0,10.0,9.0,9.0,9.0,10.0,9.0,10,0.94 +57815,93.0,9.0,7.0,9.0,9.0,9.0,9.0,4,0.23 +39288,90.0,10.0,8.0,10.0,10.0,10.0,10.0,5,0.28 +76365,95.0,9.0,10.0,10.0,10.0,10.0,10.0,13,0.88 +14691,70.0,7.0,7.0,8.0,8.0,8.0,7.0,10,0.56 +56755,,,,,,,,0, +72981,90.0,10.0,9.0,10.0,10.0,10.0,9.0,39,2.21 +4502,99.0,10.0,10.0,10.0,10.0,10.0,10.0,30,1.71 +39839,,,,,,,,0, +24280,82.0,9.0,9.0,9.0,9.0,9.0,9.0,17,0.99 +35293,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.06 +61994,94.0,9.0,10.0,10.0,10.0,10.0,9.0,17,0.95 +31093,97.0,10.0,10.0,9.0,10.0,10.0,9.0,23,1.57 +15034,,,,,,,,0, +4463,95.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.23 +34436,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.52 +25541,80.0,10.0,6.0,10.0,10.0,10.0,6.0,1,0.06 +21108,97.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.69 +34340,100.0,10.0,10.0,10.0,10.0,8.0,10.0,5,0.29 +33290,,,,,,,,0, +59809,98.0,10.0,10.0,10.0,10.0,10.0,10.0,84,4.81 +41160,,,,,,,,1,0.57 +62501,90.0,10.0,9.0,10.0,9.0,10.0,9.0,4,0.27 +10429,94.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.63 +74629,98.0,10.0,10.0,10.0,10.0,10.0,10.0,33,1.84 +14724,100.0,9.0,9.0,10.0,10.0,10.0,9.0,4,0.49 +62005,93.0,9.0,9.0,10.0,10.0,9.0,9.0,62,3.82 +34108,80.0,8.0,8.0,8.0,8.0,8.0,8.0,4,0.24 +51620,98.0,10.0,10.0,10.0,10.0,10.0,9.0,19,2.28 +18437,97.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.45 +50987,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.13 +48117,80.0,8.0,8.0,9.0,8.0,7.0,9.0,4,0.23 +43728,,,,,,,,0, +15923,99.0,10.0,10.0,10.0,10.0,10.0,10.0,37,2.13 +10923,96.0,10.0,10.0,10.0,10.0,10.0,10.0,198,11.23 +2468,,,,,,,,1,0.09 +49633,80.0,8.0,8.0,8.0,8.0,9.0,8.0,17,0.97 +19689,,,,,,,,0, +30844,92.0,10.0,10.0,10.0,10.0,8.0,10.0,5,1.43 +15825,97.0,10.0,10.0,10.0,10.0,9.0,10.0,16,1.05 +39713,,,,,,,,0, +53567,91.0,10.0,9.0,10.0,10.0,9.0,9.0,68,3.89 +40526,82.0,9.0,8.0,9.0,9.0,10.0,9.0,9,1.24 +45344,98.0,10.0,10.0,10.0,10.0,9.0,10.0,10,0.56 +30715,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.44 +75290,88.0,9.0,9.0,9.0,9.0,9.0,9.0,52,2.97 +41950,70.0,8.0,9.0,8.0,8.0,10.0,8.0,4,0.23 +51877,96.0,10.0,9.0,9.0,10.0,9.0,10.0,14,0.8 +29837,,,,,,,,0, +8175,100.0,10.0,8.0,8.0,8.0,8.0,10.0,1,0.06 +34290,80.0,9.0,6.0,10.0,10.0,8.0,6.0,2,0.15 +46046,92.0,10.0,10.0,10.0,10.0,10.0,9.0,13,0.95 +21253,81.0,9.0,8.0,9.0,9.0,10.0,9.0,25,1.49 +21322,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.31 +55398,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.06 +50591,80.0,9.0,9.0,10.0,10.0,8.0,9.0,4,0.26 +16075,,,,,,,,0, +66192,95.0,10.0,9.0,10.0,10.0,10.0,9.0,11,1.63 +25395,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.28 +43499,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.46 +2871,76.0,9.0,9.0,8.0,9.0,8.0,8.0,11,0.97 +17003,80.0,10.0,8.0,10.0,10.0,8.0,10.0,1,0.06 +64936,94.0,10.0,9.0,9.0,9.0,10.0,9.0,16,0.94 +52023,96.0,10.0,9.0,10.0,10.0,9.0,10.0,49,2.76 +7778,100.0,10.0,10.0,10.0,10.0,9.0,10.0,21,1.23 +26002,98.0,10.0,10.0,10.0,10.0,9.0,10.0,13,0.74 +20502,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +25417,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.14 +58266,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.24 +48886,95.0,10.0,10.0,9.0,9.0,9.0,10.0,4,0.22 +40854,60.0,8.0,2.0,8.0,8.0,10.0,4.0,1,0.06 +23505,81.0,9.0,8.0,9.0,10.0,10.0,9.0,60,3.35 +57882,96.0,10.0,10.0,9.0,10.0,9.0,10.0,28,2.02 +74214,,,,,,,,0, +71234,,,,,,,,0, +13407,85.0,9.0,10.0,9.0,10.0,8.0,9.0,17,1.13 +26808,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.06 +5074,,,,,,,,0, +11730,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.06 +37080,56.0,6.0,8.0,6.0,8.0,10.0,7.0,6,0.35 +57553,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.24 +12173,,,,,,,,0, +43188,96.0,10.0,9.0,10.0,9.0,10.0,9.0,23,1.53 +74046,89.0,9.0,8.0,9.0,10.0,9.0,8.0,11,0.62 +46229,,,,,,,,0, +69665,99.0,10.0,10.0,10.0,10.0,10.0,10.0,27,1.74 +65220,98.0,10.0,10.0,10.0,10.0,10.0,10.0,45,2.61 +75761,82.0,9.0,8.0,9.0,9.0,9.0,8.0,41,2.48 +22823,83.0,9.0,8.0,9.0,10.0,10.0,9.0,43,2.43 +13694,,,,,,,,0, +38758,92.0,10.0,9.0,9.0,9.0,10.0,9.0,35,2.24 +33991,,,,,,,,0, +41002,89.0,9.0,8.0,10.0,9.0,10.0,9.0,24,1.33 +40355,90.0,9.0,10.0,10.0,10.0,9.0,9.0,4,0.48 +16287,,,,,,,,0, +25620,,,,,,,,0, +40295,94.0,10.0,9.0,10.0,10.0,10.0,9.0,37,2.12 +45412,94.0,10.0,10.0,10.0,10.0,10.0,9.0,21,1.2 +29618,97.0,10.0,10.0,10.0,10.0,10.0,10.0,33,1.9 +64479,89.0,9.0,8.0,9.0,9.0,8.0,9.0,11,0.63 +53688,,,,,,,,0, +28715,100.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.93 +22514,92.0,10.0,9.0,9.0,9.0,9.0,9.0,12,0.68 +35587,100.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.47 +4684,91.0,10.0,9.0,10.0,10.0,9.0,9.0,13,0.75 +24896,97.0,9.0,9.0,9.0,9.0,8.0,9.0,7,1.35 +30215,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.17 +28453,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +9743,90.0,10.0,9.0,9.0,9.0,10.0,8.0,2,0.14 +25028,82.0,9.0,8.0,9.0,9.0,10.0,8.0,13,0.84 +28165,100.0,10.0,10.0,10.0,10.0,8.0,10.0,4,0.24 +897,97.0,10.0,9.0,10.0,10.0,9.0,10.0,23,1.29 +74601,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.28 +42631,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.74 +66438,,,,,,,,2,0.13 +61557,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.34 +71820,84.0,8.0,8.0,8.0,8.0,8.0,8.0,6,0.34 +56003,94.0,9.0,9.0,10.0,10.0,9.0,9.0,45,2.54 +49057,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.06 +6756,97.0,10.0,10.0,10.0,10.0,9.0,10.0,20,1.14 +75895,97.0,10.0,10.0,10.0,10.0,9.0,10.0,24,1.45 +26542,85.0,9.0,9.0,8.0,8.0,10.0,9.0,6,0.37 +34989,,,,,,,,0, +4390,,,,,,,,0, +31193,100.0,9.0,8.0,10.0,10.0,10.0,10.0,4,0.57 +4097,93.0,9.0,8.0,10.0,10.0,10.0,9.0,12,0.71 +1437,80.0,9.0,9.0,7.0,8.0,10.0,7.0,6,0.35 +64550,92.0,10.0,10.0,10.0,10.0,8.0,9.0,5,0.29 +49468,,,,,,,,0, +67873,,,,,,,,0, +57251,,,,,,,,0, +1345,96.0,9.0,10.0,10.0,10.0,9.0,9.0,14,0.8 +48838,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.06 +36242,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.58 +63629,82.0,9.0,8.0,9.0,9.0,9.0,8.0,12,0.84 +64911,88.0,9.0,9.0,9.0,9.0,9.0,9.0,21,1.58 +20571,90.0,9.0,9.0,10.0,10.0,10.0,9.0,14,0.79 +51828,,,,,,,,0, +31887,100.0,10.0,9.0,10.0,10.0,9.0,9.0,4,0.36 +43133,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.25 +70416,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.25 +26251,60.0,6.0,6.0,10.0,8.0,10.0,8.0,1,0.06 +39849,80.0,9.0,8.0,10.0,10.0,10.0,8.0,19,1.13 +66791,100.0,10.0,8.0,10.0,10.0,8.0,10.0,3,0.45 +46199,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +19153,98.0,10.0,10.0,10.0,10.0,10.0,10.0,19,1.1 +4742,20.0,2.0,2.0,2.0,2.0,2.0,2.0,1,0.08 +70986,,,,,,,,0, +68363,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +62130,74.0,8.0,6.0,10.0,9.0,9.0,8.0,32,1.85 +2035,80.0,9.0,9.0,9.0,9.0,10.0,9.0,6,0.34 +36455,,,,,,,,0, +75447,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.23 +60311,87.0,10.0,9.0,10.0,10.0,9.0,9.0,3,0.17 +33980,96.0,10.0,10.0,10.0,10.0,8.0,9.0,6,0.36 +35871,89.0,9.0,9.0,10.0,10.0,9.0,9.0,9,0.51 +70034,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.17 +5829,,,,,,,,0, +73700,98.0,10.0,10.0,10.0,10.0,10.0,10.0,34,1.97 +6234,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +50467,,,,,,,,0, +49165,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +64253,93.0,10.0,9.0,10.0,10.0,10.0,10.0,33,2.18 +76414,100.0,10.0,8.0,10.0,10.0,9.0,10.0,2,0.12 +66827,91.0,10.0,9.0,10.0,10.0,10.0,10.0,21,1.2 +19346,40.0,8.0,8.0,10.0,8.0,6.0,6.0,1,0.41 +33172,,,,,,,,0, +73730,100.0,9.0,10.0,10.0,10.0,10.0,10.0,10,0.59 +70162,87.0,9.0,8.0,10.0,9.0,9.0,9.0,9,0.52 +41016,95.0,10.0,9.0,9.0,10.0,9.0,9.0,15,0.85 +11030,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +10721,77.0,9.0,7.0,9.0,9.0,9.0,9.0,7,0.61 +31599,90.0,9.0,9.0,9.0,10.0,9.0,9.0,3,0.18 +50928,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.26 +10585,100.0,10.0,10.0,9.0,10.0,10.0,10.0,3,0.17 +20327,,,,,,,,0, +8588,97.0,10.0,10.0,10.0,10.0,9.0,9.0,15,0.87 +18867,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.32 +26980,95.0,10.0,8.0,10.0,10.0,9.0,10.0,24,1.98 +5920,100.0,10.0,10.0,8.0,10.0,8.0,8.0,1,0.06 +21868,98.0,10.0,10.0,10.0,10.0,10.0,10.0,193,10.95 +74697,96.0,10.0,10.0,10.0,10.0,9.0,10.0,17,1.03 +53569,80.0,10.0,8.0,10.0,8.0,8.0,8.0,2,0.13 +37442,90.0,10.0,9.0,10.0,10.0,10.0,9.0,18,1.03 +19380,96.0,10.0,10.0,10.0,10.0,10.0,9.0,26,1.48 +49430,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.17 +39308,99.0,10.0,10.0,10.0,10.0,10.0,10.0,94,5.84 +54788,95.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.35 +66646,91.0,10.0,8.0,10.0,10.0,9.0,9.0,9,0.51 +26121,,,,,,,,1,0.06 +39252,100.0,10.0,8.0,10.0,10.0,8.0,10.0,2,0.12 +62245,96.0,10.0,9.0,10.0,10.0,10.0,10.0,10,0.6 +45312,83.0,8.0,9.0,9.0,8.0,9.0,9.0,16,0.91 +35838,98.0,10.0,10.0,10.0,10.0,9.0,10.0,13,0.87 +15460,99.0,10.0,10.0,10.0,10.0,9.0,10.0,42,2.35 +51744,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.49 +36255,91.0,10.0,10.0,9.0,10.0,10.0,9.0,40,2.47 +71381,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.11 +46631,,,,,,,,0, +6670,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +21839,93.0,9.0,9.0,9.0,9.0,10.0,9.0,20,1.21 +15344,100.0,10.0,10.0,10.0,10.0,10.0,10.0,26,1.45 +61796,88.0,9.0,10.0,9.0,10.0,9.0,9.0,57,3.53 +22883,87.0,9.0,9.0,10.0,10.0,10.0,8.0,39,2.43 +10059,91.0,10.0,10.0,9.0,9.0,10.0,9.0,59,3.32 +16237,93.0,10.0,10.0,9.0,10.0,9.0,10.0,97,5.45 +41815,,,,,,,,0, +24435,95.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.25 +16467,97.0,10.0,10.0,10.0,10.0,9.0,10.0,14,0.85 +11832,99.0,10.0,10.0,10.0,10.0,10.0,10.0,18,1.02 +45400,90.0,10.0,8.0,10.0,10.0,10.0,10.0,3,0.17 +66346,,,,,,,,1,0.06 +23155,90.0,9.0,9.0,10.0,10.0,9.0,9.0,22,1.48 +52255,100.0,10.0,10.0,4.0,4.0,10.0,8.0,1,0.18 +9195,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.29 +27163,96.0,10.0,8.0,10.0,10.0,10.0,9.0,6,0.34 +70013,90.0,9.0,10.0,9.0,9.0,10.0,10.0,10,0.57 +14457,,,,,,,,1,0.08 +23759,97.0,10.0,10.0,9.0,9.0,10.0,9.0,7,0.41 +18140,,,,,,,,0, +37647,,,,,,,,0, +38574,,,,,,,,0, +50040,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.39 +33678,,,,,,,,0, +71139,,,,,,,,0, +34701,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +35037,100.0,10.0,10.0,10.0,10.0,9.0,10.0,15,0.89 +22333,92.0,9.0,9.0,9.0,9.0,8.0,9.0,5,0.28 +5102,91.0,9.0,9.0,10.0,10.0,10.0,10.0,7,0.41 +10819,97.0,10.0,10.0,10.0,10.0,9.0,10.0,27,1.61 +25512,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.48 +3406,,,,,,,,0, +33988,93.0,9.0,9.0,10.0,10.0,10.0,10.0,3,0.28 +300,90.0,10.0,10.0,9.0,9.0,8.0,9.0,2,0.12 +23573,,,,,,,,0, +48657,97.0,10.0,9.0,10.0,10.0,9.0,10.0,7,0.43 +26425,84.0,10.0,7.0,10.0,10.0,10.0,9.0,6,0.36 +26955,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +68700,90.0,8.0,8.0,10.0,8.0,10.0,9.0,2,0.28 +1920,91.0,10.0,9.0,10.0,10.0,9.0,10.0,10,0.56 +55806,89.0,9.0,9.0,9.0,9.0,10.0,9.0,12,0.7 +55359,97.0,10.0,10.0,9.0,10.0,9.0,9.0,15,1.06 +37009,91.0,9.0,9.0,8.0,9.0,9.0,9.0,19,1.3 +27266,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.62 +27883,,,,,,,,0, +38757,93.0,10.0,9.0,10.0,10.0,10.0,9.0,108,6.63 +72405,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.13 +31920,,,,,,,,0, +22977,100.0,9.0,6.0,10.0,10.0,10.0,10.0,2,0.41 +6850,80.0,8.0,6.0,8.0,6.0,8.0,8.0,2,0.12 +6046,99.0,10.0,10.0,10.0,10.0,10.0,10.0,58,3.29 +5564,79.0,8.0,9.0,8.0,8.0,9.0,8.0,27,1.54 +55380,100.0,8.0,8.0,8.0,8.0,10.0,10.0,1,0.07 +62947,,,,,,,,0, +61164,93.0,9.0,9.0,10.0,10.0,10.0,9.0,6,0.34 +63207,,,,,,,,0, +15252,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.63 +24999,93.0,9.0,10.0,10.0,10.0,10.0,9.0,57,3.28 +30234,87.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.17 +60649,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.33 +31359,89.0,9.0,9.0,9.0,9.0,9.0,9.0,90,5.08 +22863,85.0,9.0,10.0,9.0,9.0,9.0,9.0,4,0.35 +38767,80.0,8.0,4.0,6.0,10.0,8.0,8.0,1,0.06 +73746,98.0,10.0,9.0,10.0,10.0,9.0,9.0,8,0.47 +10219,,,,,,,,0, +62521,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.46 +69185,80.0,10.0,8.0,4.0,4.0,10.0,8.0,1,0.06 +50803,100.0,8.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +10335,100.0,10.0,10.0,10.0,10.0,8.0,10.0,2,0.11 +54487,98.0,10.0,10.0,10.0,10.0,10.0,10.0,48,2.86 +8708,70.0,7.0,6.0,9.0,8.0,9.0,8.0,6,0.39 +23270,,,,,,,,0, +2268,100.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.93 +56450,95.0,10.0,10.0,10.0,10.0,10.0,9.0,11,0.63 +61971,93.0,10.0,9.0,9.0,10.0,9.0,9.0,25,1.74 +72068,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.39 +13184,93.0,10.0,10.0,9.0,10.0,10.0,9.0,35,2.07 +69595,85.0,9.0,8.0,9.0,9.0,9.0,9.0,40,2.33 +33155,,,,,,,,0, +8094,98.0,10.0,9.0,10.0,10.0,10.0,10.0,47,2.68 +11577,90.0,10.0,9.0,9.0,10.0,9.0,9.0,9,0.52 +45039,91.0,10.0,9.0,9.0,10.0,8.0,9.0,16,0.92 +6992,92.0,9.0,9.0,10.0,10.0,10.0,9.0,17,1.21 +30145,93.0,9.0,9.0,10.0,10.0,10.0,9.0,40,2.26 +23203,,,,,,,,0, +25944,93.0,10.0,9.0,10.0,10.0,10.0,10.0,6,0.36 +23577,97.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.79 +21923,93.0,10.0,9.0,10.0,10.0,9.0,9.0,14,0.86 +21129,,,,,,,,0, +31418,95.0,9.0,9.0,10.0,10.0,10.0,9.0,15,1.02 +21496,93.0,9.0,9.0,9.0,9.0,10.0,9.0,6,0.41 +53457,99.0,10.0,9.0,10.0,10.0,10.0,9.0,28,1.64 +23495,80.0,10.0,9.0,10.0,9.0,10.0,10.0,2,0.12 +68287,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.24 +74481,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.06 +391,96.0,9.0,10.0,10.0,9.0,9.0,9.0,19,1.15 +75581,97.0,10.0,9.0,10.0,9.0,9.0,9.0,13,1.09 +70511,94.0,10.0,9.0,10.0,10.0,10.0,10.0,101,6.2 +12888,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.25 +38267,80.0,8.0,10.0,10.0,10.0,10.0,8.0,1,0.06 +54753,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.18 +31890,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.19 +3144,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.35 +30780,93.0,10.0,9.0,10.0,10.0,10.0,9.0,14,0.82 +6189,95.0,10.0,10.0,10.0,10.0,10.0,9.0,12,0.74 +62220,,,,,,,,0, +25415,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.17 +33066,93.0,9.0,9.0,10.0,10.0,10.0,10.0,3,0.17 +49621,99.0,10.0,10.0,10.0,10.0,10.0,10.0,28,1.71 +74462,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.42 +17484,90.0,10.0,9.0,10.0,10.0,10.0,10.0,9,0.54 +63440,89.0,8.0,9.0,9.0,9.0,9.0,9.0,7,0.4 +14152,97.0,10.0,9.0,10.0,10.0,10.0,9.0,37,2.12 +20713,81.0,9.0,7.0,10.0,10.0,9.0,8.0,18,1.51 +43558,93.0,9.0,9.0,10.0,10.0,7.0,9.0,3,0.19 +61144,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +37159,96.0,10.0,10.0,10.0,10.0,10.0,9.0,11,0.74 +38209,,,,,,,,0, +58860,94.0,9.0,9.0,10.0,10.0,10.0,9.0,44,2.49 +62523,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.31 +25669,,,,,,,,0, +32882,94.0,10.0,9.0,10.0,10.0,9.0,9.0,18,1.08 +40920,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.67 +75032,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.06 +45209,,,,,,,,0, +63913,78.0,8.0,8.0,7.0,8.0,9.0,7.0,8,0.47 +45410,100.0,10.0,10.0,10.0,10.0,9.0,10.0,15,0.86 +33702,89.0,9.0,9.0,10.0,10.0,9.0,9.0,60,3.42 +62688,,,,,,,,0, +32625,93.0,10.0,9.0,10.0,10.0,9.0,9.0,150,8.43 +24600,88.0,9.0,9.0,10.0,10.0,9.0,9.0,5,0.29 +53005,100.0,10.0,10.0,10.0,10.0,10.0,10.0,23,1.4 +38947,80.0,10.0,8.0,10.0,10.0,8.0,10.0,1,0.07 +66173,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.12 +52847,96.0,10.0,9.0,10.0,10.0,9.0,10.0,26,1.59 +43587,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.23 +45531,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.06 +34526,83.0,9.0,8.0,9.0,9.0,9.0,9.0,8,0.54 +22943,98.0,10.0,10.0,10.0,10.0,10.0,10.0,19,1.09 +26119,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.14 +46014,60.0,6.0,6.0,4.0,6.0,8.0,,1,0.06 +24481,,,,,,,,0, +16639,,,,,,,,0, +34161,,,,,,,,0, +9770,79.0,9.0,8.0,9.0,9.0,8.0,8.0,29,1.64 +49878,85.0,9.0,9.0,9.0,9.0,10.0,8.0,27,1.76 +11142,85.0,10.0,10.0,9.0,10.0,10.0,9.0,12,0.7 +47665,100.0,10.0,10.0,9.0,10.0,10.0,10.0,2,0.17 +76746,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.42 +9372,85.0,9.0,9.0,9.0,9.0,9.0,9.0,81,4.9 +34599,80.0,8.0,7.0,10.0,9.0,7.0,8.0,2,0.13 +21116,96.0,9.0,9.0,9.0,10.0,10.0,9.0,5,0.32 +66975,87.0,9.0,8.0,9.0,10.0,9.0,9.0,61,3.57 +68191,92.0,10.0,9.0,10.0,10.0,9.0,9.0,75,4.28 +8622,92.0,10.0,9.0,10.0,10.0,9.0,9.0,137,7.77 +65863,86.0,9.0,9.0,9.0,9.0,9.0,9.0,71,4.32 +15798,90.0,9.0,9.0,10.0,10.0,9.0,9.0,49,2.89 +59382,94.0,9.0,9.0,10.0,10.0,10.0,9.0,7,0.4 +31775,83.0,9.0,8.0,9.0,9.0,10.0,8.0,8,0.49 +55384,84.0,9.0,9.0,10.0,10.0,9.0,9.0,57,3.48 +53675,92.0,9.0,10.0,9.0,9.0,10.0,9.0,28,1.66 +3198,89.0,9.0,9.0,10.0,10.0,9.0,9.0,142,8.02 +10435,88.0,9.0,8.0,10.0,10.0,9.0,9.0,43,2.48 +26827,80.0,8.0,10.0,8.0,10.0,10.0,10.0,1,0.07 +4236,77.0,8.0,8.0,10.0,10.0,9.0,9.0,7,0.74 +44191,87.0,9.0,9.0,10.0,10.0,9.0,9.0,110,6.21 +33291,93.0,9.0,9.0,10.0,10.0,9.0,9.0,8,0.45 +9412,95.0,10.0,9.0,10.0,10.0,9.0,10.0,151,8.6 +72623,92.0,9.0,9.0,10.0,10.0,10.0,9.0,33,1.86 +66343,91.0,10.0,9.0,10.0,10.0,9.0,9.0,162,9.29 +71655,90.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.26 +68491,,,,,,,,1,0.07 +54269,,,,,,,,0, +1256,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +3789,67.0,8.0,7.0,9.0,9.0,8.0,8.0,3,0.17 +28989,89.0,9.0,9.0,10.0,10.0,10.0,10.0,9,0.51 +18435,85.0,9.0,8.0,10.0,10.0,9.0,9.0,37,2.12 +40859,86.0,9.0,8.0,10.0,10.0,9.0,9.0,44,2.55 +39709,86.0,9.0,8.0,10.0,10.0,9.0,9.0,50,3.04 +20062,93.0,9.0,9.0,10.0,10.0,10.0,10.0,38,2.54 +71789,90.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.11 +69308,100.0,10.0,10.0,10.0,10.0,10.0,10.0,22,1.26 +15466,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.12 +24846,,,,,,,,0, +31479,98.0,10.0,10.0,10.0,10.0,9.0,10.0,49,2.82 +56496,96.0,10.0,10.0,10.0,10.0,9.0,10.0,17,1.07 +59196,80.0,10.0,6.0,10.0,10.0,10.0,10.0,2,0.11 +17148,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.17 +54073,93.0,10.0,9.0,10.0,10.0,9.0,9.0,12,0.73 +13727,73.0,8.0,7.0,8.0,5.0,10.0,7.0,3,0.19 +21303,95.0,10.0,9.0,9.0,10.0,10.0,10.0,11,0.67 +48766,91.0,9.0,9.0,10.0,10.0,9.0,9.0,14,0.94 +63453,,,,,,,,0, +1933,,,,,,,,0, +24667,,,,,,,,0, +42505,86.0,9.0,9.0,9.0,9.0,9.0,9.0,8,0.55 +72649,93.0,9.0,10.0,10.0,10.0,10.0,9.0,21,1.32 +5891,78.0,8.0,8.0,9.0,10.0,10.0,8.0,13,0.75 +74687,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +26699,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +4286,91.0,10.0,8.0,10.0,10.0,10.0,9.0,9,0.55 +10818,99.0,10.0,10.0,10.0,10.0,10.0,10.0,24,5.76 +8185,,,,,,,,0, +74821,,,,,,,,0, +63957,100.0,9.0,8.0,10.0,10.0,10.0,10.0,2,0.11 +58686,80.0,10.0,8.0,8.0,10.0,8.0,10.0,1,0.06 +21794,80.0,9.0,10.0,10.0,10.0,10.0,10.0,2,0.12 +58470,91.0,10.0,9.0,10.0,10.0,9.0,9.0,138,7.83 +10532,97.0,10.0,10.0,10.0,9.0,8.0,10.0,6,0.35 +499,80.0,8.0,6.0,10.0,10.0,10.0,8.0,1,0.06 +28271,94.0,10.0,9.0,10.0,10.0,10.0,9.0,7,0.44 +71411,64.0,8.0,6.0,7.0,7.0,8.0,6.0,9,0.58 +58897,100.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.28 +70666,83.0,9.0,9.0,9.0,9.0,10.0,9.0,24,1.4 +38476,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.17 +41921,,,,,,,,0, +42693,,,,,,,,0, +10206,95.0,10.0,10.0,10.0,10.0,10.0,9.0,83,4.87 +58761,93.0,9.0,9.0,10.0,10.0,10.0,9.0,10,0.59 +44483,97.0,10.0,8.0,9.0,10.0,9.0,10.0,6,0.37 +67713,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.38 +36406,,,,,,,,0, +49399,90.0,10.0,9.0,10.0,10.0,9.0,8.0,10,0.57 +58636,98.0,10.0,10.0,10.0,10.0,10.0,10.0,33,1.89 +72172,93.0,10.0,10.0,9.0,9.0,9.0,9.0,20,1.14 +32989,95.0,10.0,10.0,10.0,10.0,10.0,10.0,64,3.69 +60903,,,,,,,,0, +41574,98.0,10.0,10.0,10.0,10.0,9.0,10.0,9,0.57 +73515,,,,,,,,0, +52879,67.0,6.0,6.0,6.0,6.0,8.0,7.0,3,0.18 +50876,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.11 +32804,98.0,10.0,9.0,10.0,10.0,9.0,10.0,11,0.8 +70008,75.0,9.0,7.0,10.0,8.0,10.0,9.0,4,0.42 +75388,,,,,,,,0, +64991,97.0,9.0,10.0,10.0,9.0,9.0,10.0,7,0.43 +65555,80.0,8.0,8.0,10.0,10.0,10.0,8.0,1,0.21 +25290,,,,,,,,0, +40548,100.0,10.0,10.0,10.0,9.0,9.0,10.0,3,0.18 +22463,98.0,10.0,10.0,10.0,10.0,10.0,9.0,12,0.72 +70007,94.0,10.0,9.0,10.0,10.0,10.0,10.0,21,1.21 +48950,86.0,9.0,9.0,10.0,9.0,9.0,9.0,37,2.35 +36800,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.52 +47274,93.0,9.0,9.0,10.0,10.0,9.0,9.0,40,2.29 +33054,,,,,,,,0, +28421,94.0,9.0,8.0,9.0,10.0,9.0,10.0,11,0.68 +26402,96.0,10.0,9.0,9.0,9.0,9.0,10.0,22,1.26 +52897,85.0,9.0,9.0,9.0,9.0,8.0,9.0,44,2.49 +10472,95.0,10.0,9.0,10.0,10.0,10.0,10.0,37,2.11 +21832,93.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.34 +16119,,,,,,,,0, +4835,88.0,10.0,9.0,10.0,10.0,9.0,9.0,13,0.77 +32264,87.0,10.0,9.0,8.0,9.0,10.0,9.0,5,0.29 +17936,87.0,9.0,9.0,10.0,9.0,10.0,8.0,17,1.0 +38883,99.0,10.0,10.0,10.0,10.0,10.0,10.0,26,1.49 +67308,97.0,10.0,10.0,10.0,10.0,9.0,9.0,20,1.2 +38287,,,,,,,,0, +21221,,,,,,,,0, +38815,85.0,9.0,9.0,9.0,9.0,10.0,9.0,4,0.29 +77092,,,,,,,,0, +60776,95.0,10.0,9.0,10.0,10.0,10.0,9.0,26,1.56 +26876,98.0,10.0,10.0,10.0,10.0,10.0,10.0,23,1.35 +4984,,,,,,,,0, +14326,92.0,10.0,9.0,10.0,10.0,10.0,8.0,11,0.64 +25742,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.12 +71150,97.0,10.0,9.0,10.0,10.0,10.0,9.0,6,0.35 +46071,,,,,,,,0, +37649,100.0,10.0,10.0,10.0,10.0,9.0,9.0,5,0.29 +65323,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.23 +58807,93.0,10.0,9.0,10.0,10.0,10.0,9.0,33,1.96 +25304,97.0,10.0,9.0,10.0,9.0,10.0,9.0,6,0.38 +10765,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.13 +2478,100.0,9.0,9.0,10.0,10.0,10.0,10.0,2,0.12 +7313,100.0,10.0,9.0,10.0,10.0,9.0,10.0,3,0.34 +17194,,,,,,,,0, +48825,95.0,10.0,10.0,10.0,10.0,9.0,9.0,4,0.23 +14541,82.0,9.0,9.0,9.0,10.0,10.0,9.0,13,0.78 +11474,90.0,10.0,9.0,10.0,10.0,10.0,9.0,43,2.53 +43591,97.0,10.0,10.0,10.0,10.0,10.0,10.0,100,5.81 +39770,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.67 +6901,80.0,10.0,9.0,10.0,10.0,9.0,9.0,3,0.17 +46392,100.0,10.0,10.0,10.0,10.0,10.0,8.0,2,0.37 +40410,,,,,,,,0, +70790,,,,,,,,0, +39228,,,,,,,,0, +54939,,,,,,,,0, +38481,,,,,,,,0, +13701,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +48818,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.62 +62053,90.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.12 +12794,99.0,10.0,10.0,10.0,10.0,10.0,10.0,21,1.2 +59386,,,,,,,,0, +20825,100.0,10.0,10.0,10.0,10.0,8.0,10.0,7,0.42 +49808,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +40022,,,,,,,,0, +31991,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.29 +40368,,,,,,,,0, +23858,97.0,10.0,10.0,10.0,10.0,10.0,10.0,46,2.74 +28275,90.0,9.0,10.0,10.0,10.0,10.0,10.0,4,0.24 +75582,,,,,,,,0, +6397,93.0,8.0,9.0,9.0,9.0,10.0,10.0,4,0.23 +20566,,,,,,,,0, +42263,,,,,,,,0, +61764,99.0,10.0,10.0,10.0,10.0,10.0,9.0,25,2.11 +26325,100.0,10.0,10.0,10.0,10.0,10.0,10.0,121,9.28 +49107,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +71917,,,,,,,,0, +25511,100.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.95 +27819,90.0,9.0,9.0,10.0,10.0,9.0,9.0,35,2.17 +971,98.0,10.0,10.0,10.0,10.0,10.0,10.0,14,1.03 +3517,,,,,,,,0, +5791,100.0,8.0,10.0,10.0,10.0,8.0,10.0,2,0.11 +62455,93.0,9.0,8.0,9.0,9.0,10.0,10.0,11,0.67 +38399,87.0,9.0,9.0,9.0,10.0,10.0,9.0,26,1.6 +4435,97.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.93 +58018,95.0,9.0,10.0,10.0,10.0,9.0,9.0,12,0.73 +48482,78.0,9.0,8.0,9.0,9.0,9.0,8.0,77,4.46 +16826,99.0,10.0,10.0,10.0,10.0,10.0,10.0,38,2.37 +43364,96.0,10.0,9.0,10.0,10.0,10.0,9.0,19,1.1 +29830,91.0,9.0,9.0,10.0,10.0,10.0,9.0,22,1.28 +73095,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.54 +22155,95.0,10.0,9.0,10.0,10.0,10.0,9.0,128,7.33 +62391,98.0,10.0,10.0,10.0,10.0,9.0,10.0,24,1.43 +24402,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.23 +46350,92.0,9.0,9.0,10.0,10.0,10.0,9.0,36,2.11 +54617,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.19 +75471,96.0,10.0,10.0,8.0,10.0,9.0,10.0,5,0.28 +31689,96.0,10.0,9.0,10.0,10.0,10.0,9.0,19,1.11 +70043,84.0,8.0,8.0,8.0,9.0,8.0,8.0,5,0.29 +13115,71.0,7.0,7.0,9.0,8.0,9.0,7.0,18,1.02 +38378,80.0,8.0,7.0,9.0,8.0,9.0,9.0,3,0.39 +8459,97.0,10.0,10.0,10.0,10.0,10.0,10.0,44,2.54 +59289,80.0,8.0,8.0,7.0,7.0,9.0,7.0,3,0.18 +38437,89.0,9.0,9.0,10.0,10.0,10.0,9.0,37,2.59 +65897,100.0,10.0,8.0,10.0,10.0,10.0,10.0,5,0.29 +4260,88.0,9.0,8.0,9.0,9.0,9.0,9.0,50,2.86 +10912,87.0,9.0,9.0,10.0,10.0,9.0,9.0,22,1.27 +37904,,,,,,,,0, +41369,89.0,9.0,10.0,10.0,10.0,10.0,9.0,34,2.3 +62753,100.0,10.0,10.0,9.0,10.0,10.0,10.0,4,0.25 +10011,91.0,9.0,9.0,9.0,10.0,10.0,9.0,55,3.16 +32354,,,,,,,,0, +8687,86.0,9.0,10.0,9.0,9.0,9.0,9.0,34,2.17 +50298,,,,,,,,0, +32203,97.0,10.0,10.0,10.0,10.0,10.0,10.0,62,3.58 +40578,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +73160,75.0,8.0,7.0,8.0,9.0,9.0,8.0,19,1.12 +34245,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.31 +56729,98.0,10.0,10.0,10.0,10.0,10.0,9.0,17,0.98 +64129,95.0,10.0,9.0,10.0,10.0,10.0,9.0,27,1.55 +10138,92.0,10.0,10.0,9.0,10.0,9.0,9.0,10,0.58 +10513,96.0,10.0,10.0,10.0,10.0,10.0,10.0,44,2.53 +51437,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.12 +15787,,,,,,,,0, +58918,87.0,9.0,9.0,10.0,8.0,9.0,8.0,3,1.05 +31307,,,,,,,,0, +55510,98.0,10.0,9.0,10.0,10.0,10.0,10.0,34,1.91 +67100,,,,,,,,1,0.06 +29636,92.0,9.0,9.0,10.0,10.0,9.0,9.0,25,1.82 +1246,20.0,2.0,2.0,2.0,2.0,2.0,2.0,3,0.17 +14187,86.0,9.0,8.0,10.0,10.0,8.0,9.0,10,0.59 +74363,80.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.11 +66870,97.0,10.0,10.0,10.0,10.0,10.0,10.0,29,1.66 +27017,60.0,6.0,6.0,8.0,6.0,8.0,6.0,1,0.06 +42946,80.0,10.0,8.0,10.0,10.0,8.0,8.0,2,0.17 +301,92.0,10.0,9.0,10.0,10.0,9.0,9.0,49,3.01 +6692,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.12 +52206,100.0,10.0,8.0,10.0,10.0,8.0,10.0,1,0.06 +68606,85.0,9.0,9.0,9.0,9.0,8.0,9.0,34,2.12 +70070,97.0,10.0,9.0,10.0,10.0,9.0,10.0,115,6.56 +70967,,,,,,,,0, +38122,,,,,,,,0, +12843,91.0,9.0,9.0,10.0,10.0,10.0,10.0,26,1.49 +49784,,,,,,,,0, +29192,,,,,,,,0, +187,96.0,10.0,10.0,10.0,10.0,9.0,10.0,25,1.53 +2860,96.0,10.0,10.0,10.0,10.0,10.0,9.0,36,2.29 +17968,93.0,10.0,10.0,10.0,10.0,10.0,9.0,38,2.3 +16684,100.0,10.0,10.0,10.0,10.0,9.0,10.0,22,1.43 +3189,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +49867,,,,,,,,0, +56854,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.45 +30606,97.0,10.0,10.0,10.0,10.0,10.0,10.0,18,1.04 +57789,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.19 +47499,93.0,9.0,10.0,10.0,10.0,10.0,10.0,4,0.24 +72657,93.0,10.0,9.0,10.0,10.0,9.0,9.0,16,2.87 +58388,95.0,10.0,10.0,9.0,10.0,10.0,9.0,4,0.35 +8178,90.0,8.0,10.0,10.0,10.0,10.0,8.0,2,0.12 +62546,76.0,8.0,8.0,8.0,8.0,9.0,8.0,9,1.03 +5799,86.0,9.0,7.0,9.0,9.0,9.0,10.0,7,0.4 +44751,90.0,9.0,9.0,9.0,9.0,9.0,9.0,2,0.12 +4773,,,,,,,,0, +11970,95.0,10.0,9.0,10.0,10.0,10.0,10.0,13,0.75 +67906,,,,,,,,0, +14224,94.0,10.0,9.0,10.0,10.0,10.0,10.0,7,0.41 +71340,,,,,,,,0, +47986,95.0,10.0,10.0,10.0,10.0,9.0,10.0,20,1.15 +52236,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.23 +7807,92.0,10.0,9.0,10.0,10.0,10.0,9.0,49,2.97 +22525,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +29888,,,,,,,,0, +14522,,,,,,,,0, +15735,90.0,9.0,9.0,10.0,10.0,10.0,9.0,3,0.78 +72635,85.0,9.0,8.0,9.0,10.0,9.0,8.0,57,3.35 +19008,90.0,9.0,8.0,9.0,9.0,9.0,8.0,8,0.54 +62076,,,,,,,,0, +42610,98.0,10.0,10.0,10.0,10.0,9.0,9.0,24,1.47 +3903,,,,,,,,0, +34811,50.0,6.0,6.0,9.0,7.0,7.0,7.0,2,0.11 +76318,97.0,10.0,10.0,10.0,10.0,9.0,10.0,26,1.74 +75118,100.0,10.0,10.0,10.0,10.0,10.0,10.0,29,2.64 +2418,95.0,10.0,10.0,10.0,10.0,10.0,9.0,30,1.81 +42333,93.0,10.0,9.0,10.0,10.0,9.0,9.0,28,2.14 +1248,90.0,10.0,9.0,10.0,10.0,10.0,9.0,2,0.15 +4565,98.0,9.0,10.0,10.0,10.0,10.0,10.0,11,0.64 +44941,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.21 +71772,97.0,10.0,10.0,10.0,10.0,10.0,9.0,19,1.11 +39286,,,,,,,,0, +47598,96.0,10.0,9.0,10.0,10.0,10.0,10.0,10,0.58 +39804,85.0,9.0,9.0,9.0,10.0,10.0,9.0,49,2.83 +5026,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.12 +28548,,,,,,,,0, +10704,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +68211,98.0,10.0,10.0,10.0,10.0,10.0,10.0,24,1.47 +59207,92.0,10.0,9.0,10.0,10.0,8.0,10.0,5,0.3 +55280,88.0,10.0,8.0,10.0,10.0,9.0,9.0,8,0.46 +29899,95.0,10.0,9.0,10.0,10.0,9.0,9.0,27,1.54 +9542,,,,,,,,0, +70739,80.0,8.0,8.0,10.0,10.0,6.0,8.0,1,0.48 +32113,94.0,10.0,10.0,10.0,10.0,10.0,9.0,14,0.8 +29278,96.0,10.0,9.0,10.0,10.0,10.0,10.0,9,0.52 +27052,95.0,9.0,10.0,10.0,10.0,10.0,9.0,21,1.25 +6145,,,,,,,,0, +65385,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.55 +33361,95.0,10.0,9.0,10.0,10.0,9.0,9.0,4,0.48 +2393,,,,,,,,1,0.06 +22515,92.0,9.0,8.0,10.0,10.0,9.0,9.0,5,0.29 +13427,100.0,9.0,10.0,10.0,10.0,9.0,10.0,5,0.3 +9915,82.0,8.0,8.0,9.0,9.0,10.0,9.0,13,0.85 +48055,90.0,9.0,9.0,9.0,9.0,10.0,9.0,12,0.69 +32466,99.0,10.0,10.0,10.0,10.0,9.0,10.0,14,0.86 +66446,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +57655,,,,,,,,0, +52532,80.0,10.0,6.0,10.0,10.0,10.0,8.0,5,0.29 +47352,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.36 +64703,98.0,10.0,10.0,10.0,10.0,9.0,10.0,9,0.52 +52144,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.54 +28529,,,,,,,,0, +48509,100.0,10.0,10.0,10.0,10.0,10.0,10.0,27,1.53 +3645,100.0,10.0,10.0,10.0,10.0,9.0,10.0,24,1.39 +61184,100.0,10.0,10.0,10.0,10.0,9.0,10.0,24,1.63 +76488,88.0,9.0,9.0,10.0,10.0,9.0,9.0,33,1.91 +63319,92.0,9.0,10.0,10.0,10.0,8.0,10.0,5,0.29 +37047,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.52 +47362,99.0,10.0,10.0,10.0,10.0,9.0,10.0,22,1.38 +12018,100.0,10.0,10.0,,10.0,,,1,0.06 +26934,98.0,10.0,10.0,10.0,10.0,9.0,10.0,65,3.77 +60497,100.0,10.0,8.0,10.0,10.0,8.0,10.0,1,0.06 +19683,,,,,,,,1,0.06 +12522,100.0,10.0,10.0,10.0,10.0,10.0,10.0,40,2.34 +68249,96.0,10.0,9.0,10.0,10.0,10.0,10.0,10,0.6 +59509,,,,,,,,0, +2061,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +813,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.27 +10708,,,,,,,,0, +48081,100.0,10.0,10.0,10.0,10.0,9.0,10.0,13,0.79 +24789,,,,,,,,0, +59093,,,,,,,,0, +25559,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.35 +61784,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.12 +16028,,,,,,,,0, +15839,,,,,,,,0, +9268,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.48 +74906,100.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.24 +3829,89.0,9.0,10.0,10.0,10.0,10.0,9.0,31,1.83 +40095,91.0,10.0,9.0,9.0,10.0,9.0,9.0,9,0.57 +62234,100.0,10.0,9.0,7.0,7.0,10.0,10.0,3,0.18 +58623,97.0,10.0,10.0,10.0,10.0,10.0,10.0,30,1.73 +4602,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +22450,94.0,10.0,9.0,10.0,10.0,10.0,10.0,10,0.57 +73558,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.17 +73536,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.08 +37622,,,,,,,,0, +35417,60.0,10.0,10.0,2.0,2.0,10.0,6.0,2,0.12 +32998,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +8619,97.0,10.0,9.0,10.0,10.0,9.0,9.0,33,1.89 +42993,99.0,10.0,10.0,10.0,10.0,10.0,10.0,28,1.63 +5324,96.0,10.0,9.0,10.0,10.0,9.0,9.0,17,1.06 +47622,,,,,,,,0, +24776,89.0,9.0,9.0,10.0,10.0,9.0,9.0,145,8.27 +9374,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.06 +11624,100.0,10.0,10.0,10.0,10.0,9.0,10.0,13,1.0 +70134,98.0,10.0,10.0,10.0,10.0,10.0,10.0,38,2.33 +56013,80.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.06 +30594,,,,,,,,0, +20918,93.0,10.0,9.0,10.0,10.0,9.0,9.0,7,0.41 +39601,97.0,10.0,9.0,10.0,10.0,9.0,10.0,135,7.7 +26985,98.0,10.0,10.0,10.0,10.0,9.0,10.0,44,2.52 +7613,73.0,7.0,5.0,6.0,7.0,7.0,7.0,3,0.17 +34417,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.12 +35081,100.0,10.0,10.0,10.0,10.0,10.0,10.0,78,4.56 +68078,84.0,10.0,9.0,10.0,10.0,10.0,8.0,6,0.59 +3812,84.0,9.0,9.0,9.0,9.0,9.0,9.0,42,2.43 +22498,92.0,10.0,10.0,9.0,9.0,10.0,9.0,19,1.25 +72039,100.0,10.0,10.0,10.0,10.0,9.0,10.0,30,2.18 +16751,87.0,9.0,9.0,9.0,9.0,10.0,9.0,44,2.55 +18264,,,,,,,,0, +5916,92.0,10.0,9.0,10.0,10.0,10.0,9.0,26,1.51 +32815,92.0,10.0,10.0,9.0,9.0,10.0,9.0,67,3.84 +12796,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,2.05 +60748,91.0,10.0,10.0,10.0,10.0,9.0,9.0,25,1.46 +22798,96.0,9.0,10.0,10.0,10.0,9.0,10.0,5,0.29 +49395,,,,,,,,0, +73601,80.0,8.0,10.0,8.0,8.0,10.0,10.0,1,0.06 +31578,100.0,10.0,10.0,10.0,9.0,10.0,9.0,2,0.74 +34265,99.0,10.0,10.0,10.0,10.0,9.0,10.0,69,3.94 +17920,99.0,10.0,10.0,10.0,10.0,9.0,9.0,16,0.95 +28656,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.23 +69603,89.0,10.0,9.0,9.0,9.0,9.0,9.0,19,1.2 +11360,92.0,10.0,8.0,10.0,10.0,10.0,8.0,5,0.29 +57069,99.0,10.0,10.0,10.0,10.0,10.0,10.0,16,1.36 +52976,100.0,8.0,10.0,10.0,8.0,10.0,10.0,2,0.12 +16157,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.06 +58370,80.0,8.0,8.0,10.0,10.0,10.0,8.0,1,0.06 +74952,,,,,,,,0, +41462,92.0,10.0,10.0,10.0,10.0,10.0,9.0,18,1.23 +12585,95.0,9.0,9.0,9.0,9.0,9.0,9.0,12,0.85 +7196,99.0,10.0,10.0,10.0,10.0,9.0,10.0,26,2.07 +72501,,,,,,,,0, +53258,100.0,10.0,10.0,10.0,10.0,9.0,10.0,9,0.54 +13033,100.0,10.0,10.0,10.0,9.0,10.0,10.0,2,0.12 +32525,89.0,9.0,9.0,10.0,9.0,9.0,9.0,28,1.65 +27910,100.0,10.0,10.0,9.0,9.0,9.0,10.0,5,0.36 +14523,97.0,10.0,10.0,10.0,10.0,10.0,10.0,19,1.31 +74489,91.0,9.0,9.0,10.0,9.0,9.0,9.0,21,1.2 +18481,86.0,9.0,9.0,9.0,9.0,9.0,9.0,13,0.79 +21446,,,,,,,,0, +37788,87.0,9.0,8.0,10.0,10.0,8.0,9.0,5,0.46 +148,,,,,,,,0, +11075,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +25387,73.0,7.0,8.0,10.0,8.0,10.0,7.0,6,0.34 +23109,87.0,10.0,9.0,9.0,10.0,10.0,10.0,4,0.24 +54350,94.0,10.0,9.0,10.0,10.0,10.0,9.0,21,1.3 +34866,88.0,9.0,9.0,10.0,10.0,10.0,9.0,5,0.35 +52574,94.0,10.0,10.0,10.0,10.0,9.0,9.0,22,1.28 +75622,93.0,10.0,8.0,10.0,10.0,10.0,10.0,12,0.68 +33343,,,,,,,,1,0.06 +39017,89.0,10.0,9.0,9.0,9.0,10.0,9.0,32,2.04 +55037,99.0,10.0,10.0,10.0,10.0,10.0,9.0,20,1.14 +5755,90.0,10.0,9.0,9.0,10.0,10.0,10.0,3,0.17 +34923,80.0,,8.0,,,,,1,0.06 +15276,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.31 +12176,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.13 +64781,80.0,10.0,6.0,10.0,10.0,8.0,10.0,1,0.06 +45145,,,,,,,,0, +27538,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.42 +65588,93.0,9.0,9.0,10.0,9.0,10.0,9.0,19,1.21 +51665,89.0,9.0,9.0,10.0,9.0,9.0,9.0,13,1.04 +69048,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.06 +25305,,,,,,,,0, +45856,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.12 +43104,,,,,,,,0, +28122,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.35 +51219,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.29 +59647,,,,,,,,0, +45477,,,,,,,,0, +44726,98.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.87 +47254,98.0,10.0,10.0,10.0,10.0,10.0,10.0,22,1.37 +49193,82.0,9.0,9.0,10.0,10.0,10.0,8.0,26,1.88 +66213,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.48 +48524,96.0,10.0,10.0,10.0,10.0,10.0,9.0,53,3.55 +31470,92.0,9.0,9.0,10.0,9.0,9.0,8.0,5,0.29 +15343,100.0,10.0,10.0,10.0,10.0,10.0,6.0,1,0.07 +4337,97.0,10.0,10.0,10.0,10.0,10.0,10.0,58,3.37 +20939,60.0,6.0,5.0,6.0,6.0,9.0,6.0,2,0.14 +7239,,,,,,,,0, +72513,,,,,,,,0, +9483,,,,,,,,0, +50403,,,,,,,,0, +450,70.0,8.0,7.0,9.0,10.0,10.0,8.0,2,0.11 +24262,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.17 +72752,,,,,,,,1,0.24 +12496,94.0,10.0,10.0,10.0,10.0,10.0,9.0,33,2.58 +33017,94.0,9.0,10.0,9.0,10.0,9.0,9.0,13,1.65 +38527,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.3 +16015,100.0,9.0,8.0,10.0,10.0,10.0,9.0,3,0.2 +9602,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.82 +36338,96.0,10.0,10.0,10.0,10.0,9.0,9.0,12,0.71 +36313,81.0,9.0,8.0,9.0,9.0,9.0,8.0,34,1.94 +66299,,,,,,,,0, +40569,,,,,,,,0, +31567,100.0,10.0,10.0,10.0,10.0,6.0,10.0,1,0.26 +64598,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.58 +54334,100.0,9.0,10.0,10.0,10.0,10.0,10.0,3,0.17 +9468,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +11643,80.0,8.0,10.0,8.0,8.0,8.0,8.0,2,0.14 +7748,98.0,10.0,10.0,9.0,9.0,10.0,10.0,17,0.99 +33732,,,,,,,,0, +38623,86.0,9.0,8.0,9.0,9.0,9.0,9.0,13,0.86 +12779,,,,,,,,0, +61268,100.0,10.0,10.0,10.0,10.0,9.0,9.0,2,0.39 +36822,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.13 +67720,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.19 +30617,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.15 +47805,,,,,,,,0, +37806,95.0,10.0,9.0,10.0,10.0,10.0,10.0,118,7.47 +12687,98.0,10.0,10.0,10.0,10.0,9.0,10.0,46,2.79 +58405,95.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.81 +19769,,,,,,,,0, +59111,,,,,,,,0, +58779,,,,,,,,0, +18361,95.0,10.0,9.0,10.0,10.0,10.0,9.0,16,0.96 +58783,,,,,,,,1,0.06 +10566,80.0,8.0,9.0,10.0,9.0,9.0,8.0,6,0.36 +1045,92.0,9.0,10.0,10.0,10.0,9.0,9.0,13,0.75 +48398,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +49874,94.0,9.0,10.0,10.0,10.0,10.0,10.0,30,1.78 +7739,96.0,10.0,10.0,9.0,10.0,10.0,9.0,32,1.98 +42377,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.11 +8884,99.0,10.0,10.0,10.0,10.0,9.0,10.0,30,1.84 +20621,100.0,10.0,10.0,10.0,10.0,10.0,10.0,29,1.75 +8145,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.44 +38999,91.0,10.0,9.0,10.0,10.0,9.0,9.0,115,6.56 +34953,100.0,9.0,8.0,10.0,10.0,8.0,10.0,7,0.43 +12591,60.0,8.0,6.0,4.0,6.0,8.0,4.0,1,0.06 +23883,90.0,9.0,9.0,10.0,9.0,8.0,9.0,29,1.82 +70285,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.56 +18981,,,,,,,,0, +43207,97.0,10.0,9.0,10.0,10.0,9.0,10.0,15,0.89 +25728,,,,,,,,0, +5998,88.0,9.0,9.0,9.0,10.0,9.0,9.0,43,2.5 +1244,,,,,,,,0, +31813,100.0,6.0,10.0,10.0,10.0,10.0,8.0,1,0.2 +34447,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.31 +23308,,,,,,,,0, +973,,,,,,,,0, +58084,,,,,,,,0, +67314,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.2 +24992,91.0,10.0,10.0,10.0,9.0,10.0,9.0,13,0.76 +24196,99.0,10.0,10.0,10.0,10.0,10.0,10.0,56,3.28 +16485,93.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.35 +39788,93.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.41 +70827,79.0,9.0,8.0,10.0,9.0,9.0,8.0,20,1.18 +71337,,,,,,,,0, +40314,85.0,10.0,7.0,10.0,10.0,9.0,10.0,5,0.33 +75238,99.0,10.0,10.0,10.0,10.0,9.0,10.0,52,3.0 +62663,,,,,,,,0, +35471,92.0,9.0,9.0,10.0,10.0,10.0,9.0,13,0.84 +71997,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +15561,80.0,8.0,8.0,6.0,8.0,10.0,8.0,1,0.06 +4504,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +37120,100.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.11 +58954,97.0,10.0,10.0,10.0,10.0,10.0,10.0,35,2.06 +2874,,,,,,,,0, +28209,,,,,,,,0, +40945,91.0,10.0,9.0,10.0,10.0,10.0,9.0,13,0.77 +38814,,,,,,,,0, +52224,,,,,,,,0, +56169,92.0,8.0,10.0,10.0,10.0,9.0,9.0,5,0.3 +56083,94.0,10.0,9.0,10.0,10.0,9.0,10.0,23,1.4 +39206,,,,,,,,0, +44139,92.0,10.0,9.0,10.0,10.0,10.0,9.0,18,1.04 +62510,83.0,10.0,9.0,8.0,8.0,10.0,9.0,6,0.44 +29709,100.0,10.0,10.0,10.0,10.0,10.0,10.0,21,1.2 +18309,100.0,9.0,10.0,10.0,10.0,10.0,10.0,2,0.12 +24802,93.0,10.0,9.0,10.0,10.0,10.0,10.0,6,0.35 +25060,92.0,9.0,10.0,9.0,10.0,10.0,9.0,22,1.39 +8463,,,,,,,,0, +68196,82.0,9.0,8.0,10.0,10.0,10.0,8.0,9,0.64 +12770,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +36125,,,,,,,,0, +13384,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.06 +31207,98.0,10.0,9.0,10.0,10.0,10.0,10.0,18,1.11 +46249,,,,,,,,0, +74612,100.0,10.0,10.0,10.0,10.0,8.0,10.0,7,0.43 +62390,100.0,9.0,10.0,10.0,10.0,10.0,10.0,9,0.6 +23319,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +57379,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.44 +4851,,,,,,,,0, +16327,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.17 +12546,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.43 +72974,96.0,10.0,9.0,10.0,10.0,10.0,10.0,60,3.44 +50845,,,,,,,,0, +40780,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.12 +195,,,,,,,,0, +15995,,,,,,,,0, +63365,,,,,,,,0, +46738,,,,,,,,0, +73132,,,,,,,,0, +48089,100.0,10.0,10.0,10.0,10.0,10.0,,1,0.06 +69925,,,,,,,,0, +74075,86.0,9.0,9.0,9.0,10.0,10.0,9.0,13,0.86 +22131,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.11 +2616,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +15036,99.0,10.0,10.0,10.0,10.0,10.0,10.0,25,1.44 +34738,,,,,,,,0, +39802,100.0,10.0,9.0,10.0,10.0,9.0,9.0,2,0.29 +21184,84.0,9.0,9.0,9.0,9.0,8.0,8.0,20,1.17 +9599,94.0,9.0,10.0,10.0,10.0,10.0,9.0,33,2.02 +8491,90.0,10.0,8.0,9.0,10.0,9.0,9.0,7,0.4 +47807,93.0,10.0,10.0,10.0,10.0,10.0,9.0,15,0.86 +31314,97.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.47 +21298,80.0,10.0,6.0,10.0,10.0,8.0,8.0,1,0.06 +6872,98.0,10.0,10.0,9.0,10.0,9.0,10.0,8,0.48 +36163,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.06 +12336,99.0,10.0,10.0,10.0,10.0,10.0,10.0,65,4.28 +50119,,,,,,,,0, +13197,,,,,,,,0, +45676,98.0,10.0,10.0,10.0,10.0,10.0,10.0,94,5.79 +30993,80.0,9.0,9.0,5.0,7.0,9.0,7.0,2,0.12 +65609,,,,,,,,0, +71845,80.0,9.0,9.0,9.0,9.0,9.0,8.0,39,2.48 +43204,87.0,9.0,8.0,9.0,9.0,10.0,9.0,49,2.9 +30198,93.0,10.0,9.0,10.0,10.0,10.0,10.0,13,0.74 +15524,95.0,10.0,10.0,10.0,10.0,9.0,10.0,17,1.46 +29093,96.0,10.0,9.0,10.0,10.0,10.0,10.0,19,1.14 +54333,,,,,,,,0, +1314,92.0,9.0,10.0,9.0,9.0,9.0,9.0,14,0.94 +53250,93.0,10.0,10.0,9.0,10.0,9.0,10.0,8,0.48 +66287,,,,,,,,0, +18433,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.7 +23098,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.24 +27441,90.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.33 +19044,81.0,8.0,8.0,9.0,10.0,10.0,8.0,27,1.75 +20277,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.23 +68906,93.0,9.0,9.0,10.0,10.0,9.0,9.0,48,2.78 +62519,,,,,,,,0, +73062,78.0,8.0,9.0,9.0,9.0,9.0,8.0,22,1.32 +27082,,,,,,,,1,0.13 +15366,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.84 +33760,97.0,10.0,10.0,10.0,10.0,9.0,10.0,31,1.77 +34433,70.0,6.0,5.0,9.0,7.0,10.0,7.0,2,0.12 +19854,100.0,10.0,10.0,10.0,10.0,9.0,10.0,44,2.59 +53855,93.0,9.0,9.0,10.0,9.0,10.0,9.0,15,1.12 +1218,,,,,,,,0, +7516,94.0,9.0,9.0,10.0,9.0,10.0,9.0,20,1.17 +62271,93.0,10.0,10.0,10.0,10.0,9.0,9.0,29,1.67 +62784,,,,,,,,1,0.06 +68613,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.23 +44838,60.0,6.0,9.0,6.0,6.0,9.0,9.0,2,0.12 +35850,100.0,10.0,10.0,10.0,10.0,9.0,10.0,14,0.82 +33541,92.0,8.0,10.0,10.0,10.0,10.0,9.0,6,0.35 +18749,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.12 +14865,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.35 +61156,99.0,10.0,10.0,10.0,10.0,10.0,10.0,49,2.8 +13842,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.13 +49011,,,,,,,,1,0.21 +60085,88.0,9.0,8.0,9.0,9.0,10.0,9.0,10,0.58 +30767,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.18 +72848,94.0,10.0,9.0,9.0,10.0,10.0,10.0,31,1.76 +47633,,,,,,,,0, +14943,97.0,10.0,10.0,9.0,10.0,10.0,9.0,44,2.56 +32265,93.0,10.0,7.0,10.0,7.0,9.0,10.0,3,0.17 +75520,100.0,10.0,10.0,9.0,10.0,9.0,9.0,3,0.17 +53059,89.0,9.0,10.0,10.0,10.0,10.0,9.0,30,1.77 +40550,94.0,10.0,10.0,10.0,10.0,10.0,9.0,16,2.18 +45623,,,,,,,,0, +48550,88.0,9.0,9.0,9.0,9.0,10.0,9.0,14,0.8 +44016,,,,,,,,0, +37087,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.61 +5091,90.0,9.0,9.0,9.0,10.0,10.0,9.0,44,2.54 +64160,90.0,9.0,9.0,10.0,9.0,9.0,10.0,3,0.17 +25827,98.0,10.0,10.0,10.0,10.0,10.0,10.0,24,1.77 +53027,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +69852,94.0,10.0,10.0,10.0,10.0,8.0,9.0,38,2.33 +58896,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.29 +34002,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.12 +76812,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +48616,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.31 +4275,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.75 +74012,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.12 +61057,84.0,8.0,8.0,7.0,10.0,9.0,8.0,5,0.29 +67424,89.0,9.0,9.0,8.0,10.0,9.0,9.0,11,0.83 +9244,97.0,10.0,9.0,10.0,10.0,10.0,10.0,43,2.5 +28316,92.0,9.0,9.0,10.0,10.0,9.0,9.0,42,2.73 +54735,80.0,9.0,7.0,7.0,7.0,9.0,8.0,4,0.25 +51928,,,,,,,,0, +47351,95.0,10.0,8.0,10.0,10.0,10.0,10.0,4,4.0 +46841,93.0,10.0,10.0,10.0,8.0,10.0,9.0,3,0.18 +42171,,,,,,,,0, +55805,100.0,10.0,10.0,6.0,9.0,10.0,10.0,2,0.13 +46545,80.0,8.0,9.0,8.0,8.0,8.0,8.0,4,0.39 +70832,100.0,10.0,9.0,10.0,10.0,9.0,10.0,13,0.75 +59364,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.26 +26221,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.31 +13124,86.0,9.0,9.0,8.0,8.0,10.0,9.0,29,1.71 +8778,,,,,,,,0, +9977,100.0,10.0,9.0,10.0,10.0,9.0,10.0,2,0.13 +29842,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.18 +39063,,,,,,,,0, +70417,94.0,10.0,10.0,10.0,10.0,10.0,10.0,17,1.14 +10640,,,,,,,,0, +51704,,,,,,,,0, +43231,92.0,9.0,9.0,10.0,9.0,10.0,8.0,10,0.58 +6309,,,,,,,,0, +48063,100.0,9.0,10.0,9.0,9.0,10.0,10.0,5,0.29 +6520,,,,,,,,0, +73268,,,,,,,,0, +39393,100.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.29 +25684,95.0,10.0,9.0,10.0,10.0,9.0,10.0,30,1.84 +59966,100.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.3 +59239,,,,,,,,0, +3475,99.0,10.0,10.0,9.0,9.0,10.0,10.0,14,0.81 +61363,,,,,,,,0, +74627,99.0,10.0,10.0,10.0,10.0,9.0,10.0,26,4.04 +21427,90.0,9.0,9.0,8.0,9.0,9.0,9.0,2,0.12 +17326,100.0,10.0,10.0,10.0,10.0,9.0,10.0,9,0.52 +18961,88.0,9.0,8.0,10.0,10.0,10.0,9.0,27,1.93 +24772,98.0,10.0,10.0,10.0,10.0,10.0,10.0,43,2.59 +42845,,,,,,,,0, +3018,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.26 +3555,,,,,,,,0, +64186,96.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.95 +27625,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.61 +73282,,,,,,,,0, +59897,100.0,10.0,10.0,10.0,10.0,10.0,10.0,17,1.1 +69188,93.0,9.0,9.0,10.0,10.0,10.0,10.0,38,2.2 +1672,100.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.39 +45934,90.0,9.0,10.0,10.0,10.0,9.0,10.0,10,0.87 +16588,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.06 +56494,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.12 +74630,98.0,9.0,10.0,10.0,10.0,9.0,10.0,37,2.19 +12463,,,,,,,,0, +47666,100.0,10.0,9.0,10.0,10.0,9.0,9.0,6,0.37 +68816,,,,,,,,0, +54248,100.0,10.0,10.0,10.0,10.0,10.0,10.0,26,1.51 +46716,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.23 +50916,80.0,10.0,8.0,10.0,10.0,9.0,9.0,4,0.23 +6405,88.0,9.0,9.0,9.0,9.0,9.0,9.0,11,0.65 +38347,80.0,8.0,5.0,10.0,10.0,8.0,8.0,3,0.18 +23772,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.97 +36203,60.0,8.0,6.0,10.0,10.0,6.0,8.0,1,0.06 +57621,100.0,10.0,9.0,10.0,10.0,10.0,10.0,8,0.5 +8113,80.0,7.0,9.0,9.0,9.0,9.0,8.0,3,0.17 +11289,84.0,9.0,9.0,9.0,9.0,8.0,9.0,19,1.09 +36111,98.0,10.0,10.0,10.0,10.0,9.0,9.0,41,2.49 +46752,99.0,10.0,10.0,10.0,10.0,10.0,10.0,22,1.27 +59619,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.18 +12401,,,,,,,,0, +74039,79.0,8.0,8.0,8.0,8.0,9.0,9.0,19,1.12 +42809,,,,,,,,0, +20629,,,,,,,,0, +39955,,,,,,,,0, +16096,97.0,10.0,10.0,9.0,9.0,10.0,10.0,14,0.8 +46343,80.0,10.0,10.0,10.0,8.0,8.0,10.0,1,0.06 +29780,,,,,,,,0, +24935,92.0,10.0,9.0,10.0,10.0,10.0,9.0,31,1.92 +42791,100.0,10.0,10.0,10.0,8.0,8.0,10.0,1,0.06 +72832,95.0,9.0,9.0,10.0,10.0,10.0,9.0,30,1.74 +53913,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +67533,,,,,,,,0, +63724,,,,,,,,0, +46320,,,,,,,,0, +25200,,,,,,,,0, +55246,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.55 +58895,90.0,8.0,9.0,9.0,10.0,8.0,8.0,6,0.54 +74887,,,,,,,,0, +69568,80.0,9.0,8.0,9.0,8.0,8.0,9.0,6,0.35 +33943,100.0,10.0,10.0,10.0,10.0,10.0,10.0,18,1.08 +57595,90.0,8.0,9.0,10.0,10.0,10.0,9.0,4,0.31 +38341,99.0,10.0,10.0,10.0,10.0,10.0,9.0,15,1.06 +22869,88.0,10.0,8.0,10.0,10.0,8.0,10.0,5,0.3 +34462,96.0,10.0,10.0,10.0,10.0,10.0,10.0,30,2.05 +48531,98.0,10.0,10.0,9.0,10.0,10.0,10.0,20,1.19 +7879,98.0,10.0,10.0,10.0,10.0,9.0,9.0,9,0.55 +45158,86.0,9.0,10.0,9.0,10.0,9.0,9.0,7,0.54 +28056,91.0,10.0,9.0,9.0,10.0,9.0,9.0,21,1.25 +19363,96.0,10.0,10.0,10.0,10.0,10.0,9.0,53,3.24 +13515,99.0,10.0,10.0,10.0,10.0,9.0,10.0,44,2.63 +19004,93.0,10.0,10.0,10.0,10.0,10.0,9.0,24,1.61 +25498,100.0,10.0,10.0,10.0,10.0,9.0,10.0,15,0.88 +50388,,,,,,,,0, +55774,96.0,10.0,10.0,10.0,10.0,10.0,10.0,47,2.76 +60,98.0,10.0,10.0,10.0,10.0,10.0,10.0,21,1.23 +36525,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.22 +42711,,,,,,,,0, +57282,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.17 +14477,91.0,9.0,10.0,10.0,10.0,10.0,9.0,39,2.61 +12342,93.0,10.0,10.0,10.0,9.0,10.0,9.0,6,0.44 +26059,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.06 +32742,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.16 +69454,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +21081,91.0,10.0,9.0,9.0,10.0,10.0,10.0,10,0.58 +74700,,,,,,,,0, +66800,96.0,10.0,10.0,10.0,10.0,9.0,10.0,22,1.95 +60584,72.0,9.0,9.0,8.0,8.0,9.0,7.0,10,0.98 +46709,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.41 +14807,87.0,9.0,9.0,9.0,9.0,10.0,9.0,27,1.68 +39647,96.0,9.0,10.0,9.0,9.0,10.0,9.0,15,0.87 +33078,98.0,10.0,10.0,10.0,10.0,10.0,10.0,18,1.17 +10071,,,,,,,,0, +16855,92.0,10.0,10.0,9.0,10.0,9.0,10.0,18,1.03 +10230,,,,,,,,0, +26773,100.0,10.0,10.0,10.0,10.0,10.0,10.0,29,1.81 +70248,97.0,9.0,9.0,10.0,10.0,10.0,9.0,20,1.32 +54374,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.18 +17546,,,,,,,,0, +74578,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +66342,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.36 +49208,98.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.84 +17900,98.0,10.0,10.0,10.0,10.0,9.0,10.0,74,4.29 +14510,80.0,10.0,6.0,10.0,10.0,6.0,8.0,1,0.06 +24635,,,,,,,,0, +54679,98.0,10.0,9.0,10.0,10.0,9.0,9.0,21,1.44 +68485,,,,,,,,0, +10459,98.0,10.0,10.0,10.0,10.0,10.0,10.0,26,1.75 +13901,96.0,10.0,8.0,10.0,10.0,9.0,9.0,5,0.33 +59414,100.0,10.0,10.0,,10.0,,,2,0.12 +7638,89.0,9.0,8.0,9.0,10.0,10.0,10.0,11,0.64 +1190,97.0,9.0,9.0,10.0,10.0,9.0,9.0,6,0.37 +27993,96.0,10.0,10.0,10.0,10.0,10.0,9.0,124,7.25 +57529,95.0,10.0,10.0,10.0,10.0,9.0,9.0,4,0.23 +51395,90.0,10.0,10.0,8.0,9.0,9.0,9.0,2,0.13 +47652,,,,,,,,1,0.06 +41588,,,,,,,,0, +29561,100.0,9.0,6.0,10.0,10.0,10.0,10.0,2,0.12 +36588,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +33530,87.0,9.0,9.0,9.0,9.0,10.0,9.0,112,6.49 +25725,99.0,10.0,10.0,10.0,10.0,10.0,10.0,17,1.09 +68685,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.24 +14792,94.0,10.0,10.0,10.0,10.0,10.0,9.0,30,1.76 +47321,95.0,10.0,10.0,10.0,10.0,10.0,10.0,39,2.25 +21937,,,,,,,,0, +29404,,,,,,,,0, +40071,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.19 +40596,80.0,10.0,8.0,10.0,10.0,10.0,9.0,5,0.29 +1594,93.0,10.0,10.0,9.0,9.0,9.0,9.0,9,0.53 +7647,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.36 +19802,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.25 +58109,90.0,10.0,10.0,7.0,9.0,10.0,8.0,2,0.88 +61338,,,,,,,,0, +48342,97.0,10.0,10.0,10.0,10.0,10.0,10.0,7,6.0 +7960,90.0,9.0,8.0,10.0,10.0,10.0,9.0,3,0.17 +68532,93.0,10.0,10.0,9.0,9.0,10.0,10.0,3,0.18 +17330,100.0,10.0,10.0,4.0,6.0,10.0,10.0,2,0.12 +35264,100.0,10.0,9.0,10.0,10.0,10.0,10.0,6,0.47 +1708,,,,,,,,1,0.17 +7450,100.0,10.0,10.0,10.0,10.0,8.0,9.0,2,0.12 +15302,91.0,9.0,9.0,10.0,10.0,10.0,9.0,30,1.76 +55296,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.3 +15221,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.06 +74742,96.0,10.0,9.0,10.0,10.0,10.0,10.0,18,1.11 +56967,88.0,9.0,8.0,10.0,10.0,10.0,10.0,5,0.29 +50182,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +59892,100.0,10.0,10.0,10.0,10.0,10.0,10.0,67,4.05 +39825,100.0,9.0,8.0,10.0,10.0,9.0,9.0,2,0.56 +59863,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +57419,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.32 +37133,70.0,10.0,8.0,2.0,8.0,6.0,6.0,2,0.12 +32184,84.0,9.0,9.0,10.0,9.0,10.0,9.0,38,2.43 +2523,,,,,,,,0, +8855,97.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.81 +61087,,,,,,,,0, +61580,98.0,10.0,10.0,10.0,10.0,10.0,10.0,27,1.56 +16647,,,,,,,,0, +7081,,,,,,,,0, +41110,,,,,,,,0, +72654,97.0,10.0,9.0,10.0,10.0,10.0,10.0,6,0.37 +63511,,,,,,,,0, +75798,93.0,10.0,9.0,10.0,10.0,10.0,10.0,17,0.99 +49236,,,,,,,,0, +2176,90.0,9.0,8.0,10.0,10.0,9.0,9.0,7,0.41 +11995,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.07 +35376,97.0,10.0,10.0,10.0,10.0,10.0,10.0,64,3.9 +10804,96.0,10.0,9.0,10.0,10.0,10.0,10.0,39,2.25 +56228,100.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +52867,93.0,10.0,10.0,10.0,10.0,9.0,9.0,23,1.35 +8748,95.0,10.0,9.0,10.0,10.0,10.0,10.0,30,2.0 +11406,100.0,10.0,9.0,10.0,10.0,8.0,10.0,2,0.46 +64197,,,,,,,,0, +21092,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.27 +72384,95.0,9.0,9.0,10.0,10.0,10.0,10.0,27,1.73 +4496,100.0,10.0,6.0,10.0,10.0,10.0,10.0,1,0.23 +38129,,,,,,,,0, +68954,86.0,9.0,8.0,10.0,10.0,9.0,9.0,21,1.22 +33245,96.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.55 +60554,,,,,,,,3,0.18 +4076,99.0,10.0,10.0,10.0,10.0,10.0,10.0,29,1.78 +57464,,,,,,,,0, +58385,,,,,,,,0, +34398,,,,,,,,0, +19730,90.0,9.0,9.0,10.0,10.0,10.0,9.0,18,1.09 +35742,98.0,10.0,9.0,10.0,10.0,10.0,10.0,42,2.44 +69016,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.96 +48137,93.0,10.0,10.0,9.0,9.0,10.0,9.0,29,1.75 +56947,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.31 +25156,93.0,10.0,10.0,10.0,9.0,10.0,10.0,3,0.18 +68380,98.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.49 +64636,94.0,10.0,9.0,10.0,10.0,10.0,10.0,7,0.42 +65442,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.29 +48205,,,,,,,,0, +56227,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.43 +74031,,,,,,,,0, +63178,95.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.3 +71011,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +76888,97.0,10.0,9.0,10.0,10.0,10.0,10.0,27,1.72 +70880,93.0,10.0,10.0,10.0,10.0,10.0,10.0,21,1.22 +73200,93.0,9.0,9.0,10.0,10.0,10.0,9.0,12,0.71 +77015,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.81 +4664,98.0,10.0,10.0,10.0,10.0,10.0,10.0,50,2.99 +18160,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.58 +20202,,,,,,,,0, +56478,60.0,6.0,6.0,6.0,6.0,6.0,4.0,1,0.06 +9559,99.0,10.0,10.0,10.0,10.0,10.0,10.0,83,4.82 +56835,93.0,10.0,9.0,10.0,10.0,10.0,9.0,25,1.75 +75769,,,,,,,,0, +17568,,,,,,,,0, +12643,,,,,,,,0, +45060,100.0,10.0,9.0,10.0,10.0,9.0,10.0,3,0.18 +28566,94.0,10.0,9.0,10.0,9.0,9.0,10.0,9,0.55 +57913,,,,,,,,0, +69965,95.0,10.0,9.0,10.0,10.0,9.0,10.0,43,2.53 +19156,97.0,10.0,10.0,10.0,10.0,10.0,9.0,12,0.74 +30621,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.35 +8551,84.0,9.0,9.0,10.0,10.0,10.0,9.0,98,5.9 +65096,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.06 +27392,,,,,,,,0, +68548,97.0,10.0,10.0,10.0,10.0,9.0,9.0,26,1.61 +63718,93.0,10.0,10.0,10.0,10.0,10.0,9.0,21,1.39 +57986,95.0,10.0,9.0,10.0,10.0,10.0,10.0,23,1.43 +75982,93.0,10.0,10.0,10.0,9.0,9.0,9.0,16,0.93 +53470,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +16692,,,,,,,,0, +32233,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.41 +36133,90.0,9.0,9.0,10.0,9.0,9.0,9.0,4,0.24 +71619,94.0,10.0,10.0,10.0,10.0,10.0,9.0,26,1.59 +54856,98.0,10.0,10.0,10.0,10.0,9.0,10.0,66,4.3 +6575,95.0,9.0,10.0,10.0,10.0,9.0,9.0,63,4.16 +36,96.0,10.0,9.0,10.0,10.0,9.0,10.0,119,7.32 +7533,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.38 +67033,,,,,,,,0, +72129,100.0,8.0,8.0,10.0,8.0,8.0,10.0,2,0.12 +61414,,,,,,,,0, +70931,95.0,10.0,9.0,10.0,10.0,10.0,10.0,27,3.16 +14509,97.0,10.0,10.0,10.0,10.0,10.0,10.0,49,3.29 +70198,80.0,8.0,10.0,10.0,10.0,10.0,7.0,2,0.22 +44748,,,,,,,,0, +66881,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.14 +24610,100.0,9.0,9.0,8.0,10.0,7.0,9.0,3,0.19 +57957,,,,,,,,1,0.11 +37754,86.0,9.0,9.0,9.0,10.0,9.0,9.0,24,1.4 +9290,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.13 +44030,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.18 +61246,,,,,,,,0, +46532,,,,,,,,1,0.17 +70280,97.0,10.0,9.0,10.0,10.0,10.0,10.0,15,1.3 +42361,,,,,,,,0, +32833,90.0,9.0,9.0,10.0,10.0,10.0,9.0,7,0.41 +47543,,,,,,,,0, +11171,,,,,,,,0, +76037,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.12 +21152,95.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.23 +54000,,,,,,,,0, +16129,97.0,10.0,10.0,10.0,10.0,10.0,10.0,20,1.23 +35,,,,,,,,0, +14108,,,,,,,,0, +23349,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +65390,94.0,10.0,9.0,10.0,9.0,9.0,9.0,19,1.19 +4708,94.0,10.0,9.0,9.0,9.0,9.0,9.0,7,0.41 +44856,,,,,,,,0, +37744,78.0,8.0,7.0,9.0,8.0,9.0,7.0,8,0.48 +35352,98.0,10.0,10.0,10.0,10.0,10.0,9.0,9,0.57 +48894,98.0,10.0,10.0,10.0,10.0,10.0,9.0,24,1.39 +47055,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.24 +69182,94.0,10.0,10.0,10.0,10.0,10.0,9.0,7,0.47 +63449,,,,,,,,0, +34464,95.0,10.0,10.0,9.0,10.0,10.0,9.0,30,1.74 +40577,96.0,10.0,10.0,9.0,9.0,9.0,9.0,18,1.03 +6061,90.0,10.0,10.0,10.0,10.0,9.0,9.0,4,1.88 +17878,95.0,9.0,9.0,10.0,10.0,10.0,9.0,8,0.49 +42299,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +36703,83.0,9.0,9.0,10.0,9.0,9.0,9.0,15,1.03 +43401,,,,,,,,0, +73902,95.0,10.0,8.0,10.0,10.0,10.0,10.0,4,0.23 +41860,80.0,8.0,7.0,8.0,8.0,9.0,8.0,6,0.36 +56239,,,,,,,,0, +23017,,,,,,,,0, +35187,93.0,10.0,10.0,10.0,9.0,10.0,10.0,7,0.43 +52597,99.0,10.0,10.0,10.0,10.0,10.0,10.0,25,1.54 +5382,,,,,,,,0, +62537,89.0,10.0,9.0,9.0,9.0,9.0,9.0,29,2.19 +68020,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +57055,86.0,9.0,9.0,10.0,10.0,10.0,9.0,34,2.34 +67078,92.0,10.0,9.0,10.0,10.0,10.0,10.0,16,0.92 +67594,,,,,,,,0, +60284,100.0,10.0,10.0,10.0,10.0,9.0,9.0,7,0.41 +9645,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.6 +41962,92.0,9.0,9.0,10.0,9.0,10.0,9.0,14,0.86 +45709,98.0,10.0,10.0,10.0,10.0,10.0,10.0,17,1.01 +51797,99.0,10.0,10.0,10.0,10.0,10.0,10.0,20,1.17 +15273,,,,,,,,1,0.06 +19151,100.0,10.0,10.0,10.0,10.0,10.0,10.0,19,1.3 +36028,,,,,,,,0, +24858,96.0,10.0,9.0,10.0,10.0,10.0,10.0,16,0.99 +31032,96.0,10.0,9.0,10.0,9.0,9.0,10.0,15,0.87 +50615,96.0,10.0,9.0,10.0,10.0,9.0,9.0,19,1.18 +22057,75.0,9.0,9.0,7.0,8.0,8.0,8.0,4,1.13 +8679,53.0,5.0,5.0,7.0,7.0,9.0,5.0,4,0.25 +10,,,,,,,,0, +3969,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.53 +3755,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.13 +46587,99.0,10.0,10.0,10.0,10.0,9.0,10.0,18,1.07 +44089,97.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.41 +49433,98.0,10.0,9.0,10.0,10.0,10.0,10.0,32,2.13 +66852,100.0,9.0,10.0,10.0,10.0,9.0,9.0,5,0.29 +61046,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +37446,98.0,10.0,9.0,10.0,10.0,10.0,10.0,11,0.65 +9581,,,,,,,,1,0.08 +49178,92.0,10.0,10.0,10.0,10.0,9.0,10.0,12,0.84 +6206,100.0,,,,,10.0,10.0,2,0.13 +19531,98.0,10.0,10.0,10.0,10.0,10.0,10.0,108,6.71 +27287,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.12 +7374,86.0,9.0,8.0,10.0,10.0,10.0,8.0,58,3.4 +60970,84.0,9.0,8.0,10.0,9.0,10.0,9.0,22,1.58 +34123,73.0,8.0,7.0,9.0,9.0,10.0,8.0,6,0.36 +64568,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +35546,98.0,10.0,10.0,10.0,10.0,10.0,10.0,24,1.4 +54112,,,,,,,,0, +10536,,,,,,,,0, +61900,92.0,9.0,9.0,10.0,9.0,10.0,10.0,26,1.52 +41484,,,,,,,,0, +67845,40.0,8.0,2.0,10.0,6.0,8.0,4.0,1,0.35 +52553,96.0,10.0,10.0,9.0,10.0,10.0,9.0,35,2.06 +42884,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.19 +10430,89.0,9.0,9.0,8.0,8.0,9.0,9.0,26,1.53 +46658,,,,,,,,0, +3093,95.0,10.0,9.0,9.0,10.0,10.0,9.0,20,1.17 +45755,84.0,9.0,9.0,9.0,9.0,9.0,9.0,24,1.41 +41875,85.0,9.0,8.0,9.0,9.0,9.0,9.0,38,2.23 +40,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +73918,90.0,10.0,9.0,10.0,10.0,9.0,9.0,7,0.42 +39265,89.0,9.0,9.0,9.0,9.0,9.0,9.0,36,2.15 +4098,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.13 +29169,91.0,9.0,9.0,9.0,10.0,10.0,9.0,11,0.69 +21653,86.0,9.0,9.0,9.0,10.0,9.0,9.0,51,2.98 +8922,,,,,,,,0, +32290,,,,,,,,0, +69317,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.61 +30482,98.0,10.0,10.0,10.0,10.0,10.0,10.0,92,5.31 +76190,95.0,10.0,8.0,10.0,10.0,9.0,10.0,12,0.72 +37577,98.0,10.0,9.0,10.0,10.0,9.0,10.0,18,1.08 +295,100.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.35 +62587,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +32047,82.0,9.0,8.0,10.0,9.0,10.0,8.0,9,0.55 +71311,92.0,10.0,10.0,10.0,10.0,10.0,9.0,10,0.61 +65247,,,,,,,,0, +59998,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.46 +2839,99.0,10.0,10.0,10.0,10.0,9.0,9.0,15,0.99 +27851,97.0,10.0,8.0,9.0,10.0,10.0,9.0,6,0.4 +360,,,,,,,,0, +32911,,,,,,,,0, +51990,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.18 +75639,40.0,6.0,8.0,10.0,10.0,4.0,4.0,1,0.08 +15574,86.0,9.0,8.0,10.0,9.0,10.0,9.0,24,1.61 +74605,,,,,,,,0, +20233,,,,,,,,0, +69298,86.0,9.0,9.0,9.0,9.0,10.0,9.0,25,1.45 +13513,92.0,9.0,9.0,10.0,10.0,9.0,9.0,19,1.16 +28651,,,,,,,,0, +25101,86.0,9.0,9.0,9.0,9.0,10.0,9.0,26,1.51 +7742,,,,,,,,0, +64066,83.0,9.0,9.0,9.0,10.0,9.0,9.0,44,2.6 +53751,100.0,10.0,10.0,9.0,10.0,9.0,10.0,10,0.6 +63716,96.0,10.0,9.0,10.0,10.0,10.0,10.0,29,1.71 +59922,,,,,,,,0, +37034,91.0,9.0,9.0,10.0,10.0,10.0,9.0,69,4.02 +25402,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +6867,,,,,,,,0, +11656,,,,,,,,0, +61084,93.0,9.0,9.0,10.0,10.0,10.0,10.0,3,0.18 +9229,85.0,9.0,8.0,9.0,9.0,9.0,9.0,29,1.7 +74832,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.12 +52889,100.0,10.0,10.0,10.0,10.0,9.0,9.0,4,0.23 +53034,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.09 +34606,88.0,9.0,8.0,9.0,10.0,9.0,9.0,10,0.58 +59786,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.2 +26617,92.0,10.0,8.0,10.0,10.0,10.0,9.0,5,0.32 +32022,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.18 +63841,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +2919,,,,,,,,0, +16268,,,,,,,,0, +28959,93.0,9.0,9.0,10.0,10.0,10.0,10.0,4,0.23 +46431,67.0,7.0,5.0,9.0,7.0,9.0,7.0,3,0.18 +11998,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.81 +22290,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.72 +55555,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.18 +54301,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.29 +55548,92.0,10.0,9.0,10.0,8.0,10.0,9.0,5,0.33 +601,97.0,10.0,10.0,10.0,10.0,10.0,10.0,22,1.33 +50228,88.0,10.0,9.0,9.0,9.0,9.0,9.0,46,2.69 +38622,,,,,,,,1,0.09 +18016,,,,,,,,0, +53536,,,,,,,,0, +10040,100.0,10.0,10.0,10.0,10.0,10.0,9.0,6,1.37 +15753,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.52 +6406,20.0,2.0,2.0,2.0,2.0,,2.0,1,0.19 +75366,,,,,,,,0, +33092,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.65 +12775,100.0,10.0,10.0,10.0,10.0,8.0,10.0,7,0.48 +73882,84.0,9.0,8.0,8.0,9.0,10.0,8.0,5,0.31 +19664,90.0,10.0,9.0,10.0,10.0,10.0,9.0,2,0.54 +47293,87.0,9.0,9.0,10.0,9.0,10.0,9.0,85,4.94 +72953,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.18 +5831,98.0,10.0,9.0,10.0,10.0,10.0,10.0,24,1.52 +42231,,,,,,,,0, +72312,85.0,9.0,9.0,9.0,9.0,9.0,9.0,25,1.48 +61115,,,,,,,,0, +54542,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.12 +70889,88.0,9.0,8.0,9.0,9.0,9.0,9.0,118,7.28 +1907,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +33096,96.0,10.0,9.0,10.0,10.0,10.0,9.0,5,1.16 +15007,,,,,,,,0, +54544,96.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.3 +44383,93.0,10.0,10.0,10.0,10.0,10.0,9.0,62,3.88 +20911,99.0,10.0,10.0,10.0,10.0,9.0,10.0,35,2.27 +26250,87.0,9.0,8.0,9.0,9.0,9.0,9.0,140,8.5 +47013,100.0,10.0,10.0,,10.0,,,2,0.12 +58887,97.0,10.0,10.0,9.0,10.0,9.0,10.0,6,0.36 +61538,82.0,9.0,8.0,9.0,9.0,10.0,9.0,9,0.72 +72545,86.0,9.0,8.0,9.0,9.0,9.0,9.0,117,7.15 +58059,73.0,9.0,6.0,10.0,10.0,7.0,7.0,3,0.19 +35604,60.0,10.0,10.0,10.0,10.0,8.0,8.0,2,0.12 +17155,,,,,,,,0, +28410,,,,,,,,0, +27718,100.0,10.0,10.0,10.0,10.0,10.0,10.0,55,3.33 +73811,,,,,,,,0, +66064,89.0,9.0,9.0,9.0,10.0,9.0,9.0,94,5.73 +22800,,,,,,,,0, +56614,,,,,,,,0, +47790,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.26 +64838,100.0,10.0,8.0,10.0,10.0,8.0,10.0,2,0.12 +47575,100.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.24 +20401,,,,,,,,0, +42309,80.0,8.0,6.0,10.0,10.0,10.0,8.0,1,0.12 +76527,83.0,9.0,8.0,9.0,9.0,8.0,8.0,52,3.03 +73186,100.0,10.0,10.0,10.0,10.0,9.0,9.0,19,1.11 +40156,,,,,,,,0, +16999,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.12 +27309,99.0,10.0,10.0,10.0,10.0,9.0,9.0,44,2.59 +955,96.0,10.0,10.0,10.0,10.0,10.0,10.0,19,1.33 +40310,,,,,,,,0, +76736,91.0,10.0,8.0,9.0,10.0,10.0,9.0,11,0.93 +49921,,,,,,,,0, +13755,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.26 +1673,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.12 +62286,,,,,,,,0, +7349,93.0,9.0,9.0,10.0,10.0,9.0,9.0,46,2.67 +47238,100.0,9.0,6.0,10.0,10.0,10.0,9.0,2,0.18 +1334,98.0,10.0,10.0,10.0,10.0,10.0,10.0,30,1.92 +23721,91.0,10.0,9.0,10.0,9.0,9.0,9.0,35,2.1 +59360,72.0,8.0,7.0,9.0,9.0,8.0,8.0,11,0.65 +21865,,,,,,,,0, +13284,91.0,9.0,8.0,9.0,9.0,10.0,10.0,19,1.12 +64462,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.12 +31674,60.0,10.0,4.0,10.0,10.0,10.0,10.0,2,0.12 +74922,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.17 +32772,99.0,10.0,10.0,10.0,10.0,10.0,10.0,42,2.55 +31261,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.06 +19842,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.3 +76666,96.0,10.0,10.0,10.0,10.0,10.0,9.0,16,0.97 +38300,,,,,,,,0, +8825,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +27862,,,,,,,,0, +59794,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +57898,,,,,,,,0, +234,,,,,,,,0, +10690,81.0,8.0,7.0,9.0,9.0,9.0,8.0,19,1.16 +7541,100.0,10.0,10.0,10.0,10.0,10.0,10.0,21,1.24 +10510,98.0,9.0,10.0,10.0,10.0,10.0,9.0,10,3.66 +61275,100.0,9.0,9.0,10.0,10.0,10.0,9.0,2,0.17 +9769,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.24 +20867,100.0,10.0,9.0,9.0,10.0,9.0,9.0,3,0.6 +68509,,,,,,,,0, +13612,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.32 +61502,94.0,9.0,10.0,10.0,10.0,9.0,10.0,13,0.86 +44678,94.0,10.0,10.0,10.0,10.0,9.0,9.0,17,4.32 +10454,,,,,,,,0, +15432,96.0,10.0,10.0,10.0,10.0,10.0,10.0,80,4.71 +340,89.0,9.0,9.0,9.0,9.0,8.0,9.0,25,1.54 +7779,,,,,,,,0, +58353,97.0,10.0,9.0,10.0,10.0,10.0,10.0,88,5.32 +34790,99.0,10.0,10.0,10.0,10.0,10.0,10.0,52,3.05 +65265,100.0,10.0,10.0,10.0,10.0,10.0,10.0,107,6.6 +587,97.0,10.0,10.0,10.0,10.0,10.0,9.0,7,0.41 +12749,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.24 +28808,,,,,,,,0, +1918,,,,,,,,0, +18993,,,,,,,,0, +8227,86.0,10.0,9.0,10.0,10.0,10.0,9.0,36,2.13 +12839,97.0,10.0,10.0,10.0,10.0,8.0,9.0,18,1.1 +62880,,,,,,,,0, +37183,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.26 +66276,80.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.12 +44107,,,,,,,,0, +61831,100.0,10.0,9.0,10.0,10.0,10.0,9.0,3,0.36 +72963,95.0,10.0,9.0,10.0,10.0,10.0,9.0,5,0.29 +32657,93.0,10.0,10.0,9.0,9.0,10.0,9.0,35,2.09 +8105,100.0,10.0,9.0,10.0,10.0,9.0,10.0,2,0.8 +18873,,,,,,,,1,0.09 +21696,80.0,8.0,9.0,10.0,8.0,10.0,8.0,3,0.19 +2920,100.0,10.0,10.0,,,,,1,0.06 +73310,,,,,,,,0, +54709,,,,,,,,0, +4829,,,,,,,,0, +13478,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.29 +8740,99.0,10.0,10.0,10.0,10.0,10.0,9.0,16,0.98 +21198,91.0,10.0,9.0,10.0,10.0,10.0,9.0,68,4.04 +13452,96.0,10.0,10.0,10.0,10.0,9.0,10.0,17,1.19 +51364,93.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.45 +14605,,,,,,,,0, +67406,91.0,9.0,9.0,10.0,9.0,10.0,9.0,12,0.7 +56149,91.0,10.0,9.0,9.0,10.0,9.0,9.0,14,0.87 +72837,100.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.21 +17910,,,,,,,,0, +41689,,,,,,,,0, +18138,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.47 +22761,93.0,10.0,10.0,9.0,10.0,10.0,9.0,3,0.38 +16798,76.0,8.0,7.0,10.0,9.0,9.0,8.0,5,1.42 +64234,,,,,,,,0, +11390,93.0,9.0,9.0,9.0,9.0,8.0,9.0,7,0.41 +62750,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.43 +36366,,,,,,,,0, +74082,,,,,,,,0, +47821,93.0,9.0,9.0,9.0,9.0,9.0,9.0,3,0.19 +19507,93.0,9.0,9.0,10.0,10.0,9.0,9.0,3,0.18 +54360,96.0,9.0,9.0,10.0,10.0,9.0,10.0,22,1.32 +43232,,,,,,,,0, +62022,94.0,10.0,10.0,10.0,10.0,10.0,9.0,50,2.96 +25397,98.0,10.0,10.0,10.0,10.0,9.0,10.0,9,0.53 +67785,96.0,10.0,10.0,10.0,10.0,10.0,10.0,23,1.43 +56273,95.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.48 +20885,98.0,10.0,10.0,10.0,10.0,10.0,10.0,23,1.41 +20930,,,,,,,,0, +45836,100.0,10.0,10.0,10.0,10.0,10.0,10.0,61,3.65 +42436,,,,,,,,0, +54125,,,,,,,,0, +52696,75.0,8.0,10.0,8.0,8.0,10.0,9.0,5,0.3 +55701,94.0,10.0,9.0,10.0,10.0,10.0,10.0,36,2.25 +48446,99.0,10.0,10.0,10.0,10.0,10.0,10.0,29,1.75 +24886,92.0,9.0,10.0,9.0,10.0,9.0,9.0,42,2.45 +68517,95.0,10.0,9.0,10.0,10.0,9.0,9.0,5,0.3 +38718,71.0,8.0,7.0,7.0,7.0,9.0,8.0,24,1.41 +57274,80.0,10.0,6.0,10.0,10.0,10.0,10.0,1,0.06 +51431,,,,,,,,0, +34695,92.0,10.0,9.0,10.0,10.0,9.0,9.0,12,0.87 +3966,96.0,10.0,10.0,10.0,10.0,9.0,10.0,68,4.04 +24008,92.0,10.0,9.0,10.0,10.0,9.0,9.0,45,2.97 +58222,100.0,10.0,9.0,10.0,10.0,9.0,10.0,2,0.13 +49772,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.06 +4043,89.0,9.0,9.0,10.0,10.0,9.0,9.0,16,0.99 +22938,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.24 +50178,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.24 +933,,,,,,,,0, +4699,85.0,9.0,9.0,9.0,10.0,9.0,9.0,32,2.27 +24547,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +13991,96.0,10.0,10.0,10.0,10.0,10.0,9.0,38,2.35 +71328,91.0,9.0,9.0,9.0,10.0,9.0,8.0,13,0.76 +57425,96.0,10.0,10.0,10.0,10.0,9.0,10.0,31,1.82 +49217,100.0,10.0,10.0,,10.0,,,1,0.06 +14348,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.07 +63698,96.0,10.0,9.0,10.0,10.0,9.0,10.0,25,1.57 +159,90.0,8.0,8.0,9.0,9.0,10.0,9.0,2,0.15 +9916,95.0,10.0,9.0,10.0,10.0,9.0,10.0,16,0.98 +74703,83.0,9.0,8.0,9.0,8.0,9.0,9.0,14,0.81 +54625,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +46834,,,,,,,,0, +68480,97.0,10.0,10.0,9.0,9.0,9.0,10.0,23,1.36 +31391,20.0,2.0,10.0,2.0,2.0,10.0,2.0,1,0.16 +38110,83.0,9.0,7.0,9.0,9.0,10.0,9.0,7,1.07 +56219,94.0,10.0,9.0,10.0,10.0,10.0,9.0,20,1.19 +14383,,,,,,,,0, +12400,96.0,10.0,10.0,10.0,10.0,9.0,10.0,11,0.64 +73648,88.0,9.0,9.0,9.0,10.0,9.0,8.0,12,0.98 +58281,91.0,9.0,8.0,10.0,10.0,9.0,9.0,32,2.03 +16961,90.0,10.0,10.0,10.0,10.0,9.0,9.0,4,0.24 +43222,20.0,2.0,2.0,2.0,2.0,2.0,2.0,1,0.07 +28407,96.0,10.0,10.0,10.0,10.0,10.0,10.0,27,1.59 +64997,88.0,9.0,8.0,10.0,10.0,9.0,8.0,5,0.91 +5222,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +20418,77.0,9.0,8.0,10.0,10.0,9.0,9.0,13,0.97 +52492,99.0,10.0,10.0,10.0,10.0,10.0,10.0,31,1.83 +72121,96.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.43 +18548,96.0,10.0,9.0,10.0,10.0,10.0,9.0,23,1.35 +1516,,,,,,,,0, +25544,85.0,9.0,8.0,9.0,9.0,8.0,9.0,29,1.85 +30895,,,,,,,,0, +18050,,,,,,,,0, +72313,100.0,10.0,8.0,10.0,10.0,9.0,10.0,2,0.12 +52716,80.0,8.0,8.0,8.0,8.0,8.0,8.0,2,0.18 +29179,,,,,,,,0, +73638,100.0,10.0,10.0,10.0,10.0,10.0,10.0,36,2.4 +40265,,,,,,,,0, +68518,91.0,10.0,8.0,9.0,10.0,9.0,9.0,7,0.49 +8244,,,,,,,,0, +21521,97.0,10.0,10.0,10.0,10.0,10.0,9.0,54,3.35 +40131,96.0,9.0,9.0,9.0,9.0,10.0,10.0,10,0.6 +55434,80.0,8.0,8.0,8.0,10.0,8.0,6.0,1,0.06 +29432,,,,,,,,1,0.56 +58667,83.0,9.0,7.0,9.0,9.0,10.0,9.0,28,2.24 +12924,90.0,9.0,10.0,9.0,10.0,9.0,9.0,3,0.18 +21838,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.3 +5261,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.19 +24186,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +27622,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.13 +61355,96.0,10.0,9.0,10.0,10.0,9.0,10.0,32,1.9 +66529,67.0,7.0,6.0,6.0,9.0,9.0,6.0,3,0.2 +68466,,,,,,,,0, +2808,100.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.54 +68376,95.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.56 +26859,90.0,9.0,8.0,10.0,10.0,10.0,9.0,5,0.3 +75881,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.12 +70998,,,,,,,,0, +59707,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.38 +28981,98.0,10.0,10.0,10.0,10.0,10.0,10.0,60,3.51 +16781,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.06 +22459,87.0,10.0,8.0,8.0,8.0,7.0,8.0,3,0.19 +11744,,,,,,,,0, +18519,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.2 +18342,100.0,10.0,10.0,10.0,10.0,10.0,10.0,17,1.09 +37289,90.0,9.0,9.0,10.0,9.0,9.0,10.0,3,0.21 +21652,,,,,,,,0, +55902,99.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.88 +65903,90.0,9.0,8.0,10.0,10.0,9.0,9.0,8,0.52 +39429,100.0,10.0,10.0,10.0,10.0,10.0,10.0,22,1.5 +70122,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.18 +73915,96.0,10.0,9.0,10.0,10.0,9.0,10.0,38,2.23 +17287,100.0,9.0,9.0,10.0,10.0,10.0,10.0,2,0.14 +61546,100.0,10.0,10.0,10.0,10.0,10.0,10.0,22,1.37 +28479,83.0,8.0,8.0,9.0,9.0,10.0,8.0,18,1.33 +34617,95.0,10.0,10.0,10.0,10.0,10.0,10.0,42,2.79 +42151,100.0,10.0,10.0,10.0,10.0,9.0,10.0,42,2.9 +6238,,,,,,,,0, +31868,,,,,,,,0, +8169,98.0,10.0,10.0,10.0,10.0,10.0,9.0,22,1.32 +66824,,,,,,,,0, +75510,98.0,10.0,10.0,10.0,10.0,10.0,10.0,61,3.71 +55903,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.85 +59730,85.0,9.0,7.0,9.0,9.0,9.0,9.0,4,0.24 +73658,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +69716,83.0,9.0,8.0,10.0,9.0,9.0,9.0,8,0.48 +76844,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.46 +74483,,,,,,,,0, +19092,92.0,10.0,9.0,10.0,10.0,10.0,9.0,13,0.77 +18761,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.14 +63462,,,,,,,,0, +3772,83.0,8.0,6.0,9.0,9.0,8.0,9.0,7,0.62 +50566,,,,,,,,0, +11548,96.0,9.0,10.0,10.0,10.0,9.0,10.0,66,4.62 +32868,,,,,,,,1,0.07 +31138,97.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.97 +75983,100.0,10.0,10.0,9.0,10.0,10.0,10.0,6,0.4 +43317,91.0,9.0,9.0,10.0,10.0,10.0,9.0,38,2.32 +35496,,,,,,,,0, +12734,,,,,,,,0, +66025,98.0,10.0,10.0,10.0,10.0,10.0,10.0,24,1.46 +12548,90.0,10.0,9.0,10.0,10.0,10.0,8.0,2,0.13 +27772,83.0,10.0,7.0,10.0,10.0,10.0,8.0,7,0.43 +15341,83.0,8.0,8.0,9.0,8.0,10.0,9.0,10,0.61 +33770,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +416,100.0,10.0,10.0,10.0,10.0,10.0,4.0,1,0.06 +68016,,,,,,,,0, +74167,96.0,10.0,9.0,10.0,10.0,10.0,10.0,36,2.12 +58399,60.0,8.0,6.0,5.0,8.0,10.0,7.0,2,0.12 +36965,95.0,10.0,9.0,10.0,10.0,9.0,10.0,5,0.33 +34213,,,,,,,,0, +33784,95.0,10.0,9.0,10.0,10.0,9.0,10.0,9,0.52 +12170,100.0,10.0,10.0,,,,,1,0.06 +71187,93.0,10.0,9.0,9.0,9.0,9.0,9.0,14,0.83 +18363,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.08 +3490,100.0,10.0,10.0,9.0,10.0,10.0,10.0,5,0.29 +37263,98.0,10.0,10.0,10.0,10.0,10.0,10.0,17,1.03 +71377,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.29 +22230,100.0,9.0,8.0,8.0,9.0,7.0,7.0,2,0.13 +14318,95.0,10.0,10.0,10.0,10.0,10.0,10.0,86,5.4 +24293,100.0,10.0,10.0,10.0,10.0,10.0,9.0,15,0.91 +56433,100.0,10.0,9.0,10.0,10.0,9.0,10.0,5,0.3 +45865,,,,,,,,0, +72889,85.0,9.0,7.0,7.0,8.0,10.0,10.0,4,0.24 +40075,92.0,9.0,9.0,9.0,9.0,10.0,9.0,60,3.57 +38006,,,,,,,,0, +64004,80.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.06 +14770,93.0,10.0,9.0,9.0,10.0,10.0,9.0,21,1.38 +44583,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +28967,91.0,10.0,10.0,9.0,9.0,10.0,10.0,21,1.33 +28979,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.12 +24995,100.0,10.0,10.0,10.0,10.0,8.0,9.0,2,2.0 +71549,,,,,,,,0, +37252,100.0,10.0,9.0,10.0,10.0,10.0,9.0,4,0.37 +43071,,,,,,,,0, +10306,96.0,10.0,9.0,9.0,10.0,10.0,10.0,18,1.05 +9734,85.0,10.0,8.0,10.0,10.0,10.0,10.0,4,0.24 +37682,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,2.07 +39481,87.0,9.0,8.0,8.0,9.0,9.0,9.0,6,0.35 +42317,98.0,10.0,10.0,10.0,10.0,9.0,10.0,20,1.19 +11038,84.0,9.0,8.0,9.0,8.0,9.0,9.0,29,1.73 +68172,100.0,10.0,10.0,10.0,10.0,8.0,10.0,2,0.12 +61891,100.0,10.0,10.0,10.0,10.0,9.0,9.0,4,0.24 +58735,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +47745,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.63 +54747,83.0,9.0,8.0,10.0,10.0,9.0,8.0,10,0.65 +7869,87.0,9.0,9.0,10.0,10.0,10.0,9.0,38,2.24 +50466,95.0,10.0,8.0,10.0,10.0,10.0,9.0,4,0.25 +2647,100.0,10.0,10.0,10.0,8.0,10.0,8.0,1,0.06 +54427,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.12 +23205,100.0,10.0,9.0,10.0,10.0,9.0,10.0,13,1.13 +57946,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.43 +3092,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.43 +10916,93.0,9.0,9.0,9.0,9.0,9.0,9.0,3,0.18 +26058,93.0,8.0,8.0,9.0,9.0,7.0,9.0,4,0.24 +52831,95.0,10.0,10.0,9.0,10.0,10.0,10.0,34,2.66 +59283,93.0,10.0,9.0,10.0,10.0,9.0,9.0,24,1.46 +7356,,,,,,,,0, +27038,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.12 +30300,99.0,10.0,10.0,10.0,10.0,10.0,10.0,30,1.78 +74851,,,,,,,,0, +32056,,,,,,,,0, +57273,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.3 +47803,99.0,10.0,9.0,10.0,10.0,10.0,10.0,17,3.81 +54993,83.0,9.0,9.0,9.0,10.0,9.0,9.0,37,2.64 +5504,97.0,10.0,10.0,10.0,10.0,10.0,10.0,107,6.47 +21400,60.0,6.0,2.0,8.0,10.0,10.0,6.0,1,0.06 +26683,,,,,,,,0, +46375,,,,,,,,0, +18359,80.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.06 +14916,96.0,10.0,10.0,10.0,10.0,9.0,10.0,30,1.77 +7094,80.0,7.0,8.0,7.0,8.0,9.0,9.0,9,0.59 +3415,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.12 +76426,,,,,,,,0, +59124,98.0,10.0,10.0,10.0,10.0,10.0,10.0,34,2.0 +72464,86.0,8.0,9.0,9.0,9.0,9.0,8.0,52,3.06 +40497,99.0,10.0,10.0,10.0,10.0,10.0,10.0,88,5.81 +22358,100.0,10.0,10.0,10.0,10.0,10.0,10.0,21,2.32 +35012,84.0,9.0,9.0,9.0,10.0,9.0,8.0,32,2.14 +12671,93.0,9.0,9.0,10.0,10.0,10.0,9.0,14,0.85 +56362,,,,,,,,0, +71559,95.0,10.0,10.0,10.0,10.0,9.0,10.0,57,3.42 +7566,100.0,9.0,9.0,10.0,10.0,9.0,10.0,3,0.32 +65915,96.0,10.0,10.0,10.0,10.0,10.0,10.0,66,3.95 +23333,94.0,10.0,9.0,10.0,10.0,10.0,9.0,15,0.96 +1173,,,,,,,,1,0.14 +57145,,,,,,,,0, +34159,100.0,10.0,10.0,8.0,6.0,8.0,10.0,1,0.06 +21463,92.0,9.0,10.0,10.0,9.0,9.0,9.0,5,0.31 +17541,93.0,9.0,10.0,10.0,10.0,10.0,10.0,10,0.58 +45782,84.0,9.0,8.0,10.0,10.0,9.0,8.0,17,1.05 +48568,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +11655,,,,,,,,0, +40132,97.0,10.0,10.0,10.0,10.0,10.0,9.0,22,1.29 +71801,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.43 +12560,100.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.25 +25534,,,,,,,,0, +67266,100.0,10.0,10.0,,10.0,,,1,0.06 +48007,96.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.67 +48069,90.0,9.0,9.0,9.0,9.0,9.0,9.0,4,0.24 +47970,100.0,10.0,9.0,9.0,10.0,9.0,10.0,3,0.18 +64800,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.55 +38785,98.0,10.0,9.0,10.0,10.0,10.0,10.0,11,0.66 +44121,90.0,9.0,9.0,10.0,10.0,10.0,9.0,6,0.36 +58937,95.0,10.0,9.0,10.0,10.0,10.0,10.0,16,0.95 +52601,,,,,,,,1,0.21 +62031,,,,,,,,0, +58440,,,,,,,,0, +36384,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +35403,,,,,,,,0, +33347,80.0,8.0,7.0,8.0,7.0,7.0,7.0,5,0.3 +38057,80.0,8.0,10.0,10.0,10.0,6.0,8.0,1,0.06 +60121,,,,,,,,0, +48172,,,,,,,,0, +42204,,,,,,,,0, +25103,,,,,,,,0, +24558,,,,,,,,0, +54771,,,,,,,,0, +21825,94.0,10.0,9.0,10.0,10.0,9.0,9.0,13,0.89 +35349,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.12 +69255,93.0,9.0,9.0,10.0,10.0,9.0,9.0,5,0.33 +55414,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.18 +23266,,,,,,,,0, +26512,100.0,8.0,8.0,10.0,10.0,10.0,10.0,2,0.45 +42004,90.0,9.0,10.0,9.0,9.0,8.0,10.0,2,0.12 +56498,,,,,,,,0, +7548,96.0,10.0,9.0,10.0,10.0,10.0,10.0,40,2.65 +58008,93.0,10.0,9.0,9.0,9.0,10.0,9.0,18,1.18 +12995,98.0,10.0,10.0,10.0,10.0,9.0,9.0,42,2.59 +42947,83.0,8.0,10.0,8.0,8.0,10.0,9.0,12,0.72 +53012,99.0,10.0,10.0,10.0,10.0,10.0,10.0,72,4.2 +53842,85.0,9.0,9.0,10.0,9.0,9.0,9.0,19,1.15 +66647,,,,,,,,0, +28802,94.0,10.0,9.0,10.0,10.0,9.0,9.0,21,1.27 +50295,99.0,10.0,10.0,10.0,10.0,10.0,10.0,31,2.1 +43706,94.0,10.0,9.0,10.0,10.0,10.0,10.0,17,1.13 +27192,100.0,10.0,10.0,10.0,10.0,9.0,10.0,11,0.67 +34088,98.0,10.0,10.0,10.0,10.0,10.0,10.0,144,8.94 +62856,,,,,,,,0, +45305,,,,,,,,0, +37533,100.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.38 +2529,87.0,10.0,9.0,9.0,9.0,10.0,10.0,3,0.2 +5325,95.0,10.0,10.0,10.0,10.0,9.0,9.0,22,1.37 +35170,91.0,9.0,9.0,10.0,10.0,9.0,9.0,7,0.49 +18297,80.0,8.0,8.0,10.0,10.0,10.0,10.0,1,0.06 +49324,90.0,8.0,7.0,9.0,9.0,9.0,9.0,2,0.13 +71684,98.0,10.0,9.0,10.0,10.0,10.0,9.0,24,1.43 +48127,,,,,,,,0, +39221,94.0,10.0,10.0,10.0,10.0,10.0,9.0,25,1.61 +11682,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.12 +2074,99.0,10.0,10.0,10.0,10.0,9.0,10.0,28,1.71 +48515,100.0,10.0,10.0,10.0,10.0,10.0,9.0,7,1.09 +58408,98.0,10.0,10.0,10.0,10.0,10.0,9.0,32,1.87 +68133,97.0,10.0,10.0,10.0,10.0,10.0,10.0,31,1.86 +22503,90.0,9.0,9.0,10.0,10.0,10.0,9.0,4,0.25 +9076,,,,,,,,0, +21523,85.0,9.0,8.0,9.0,10.0,8.0,9.0,51,3.14 +13300,91.0,9.0,10.0,10.0,10.0,9.0,9.0,18,1.09 +50436,,,,,,,,0, +16939,,,,,,,,0, +6496,100.0,10.0,10.0,10.0,10.0,10.0,10.0,29,1.74 +32530,,,,,,,,0, +36023,88.0,9.0,9.0,9.0,9.0,10.0,9.0,10,0.63 +7168,,,,,,,,0, +29312,89.0,9.0,8.0,10.0,10.0,10.0,9.0,9,0.65 +72402,78.0,8.0,6.0,8.0,9.0,9.0,8.0,15,0.89 +54361,85.0,9.0,9.0,10.0,10.0,9.0,9.0,47,2.81 +27147,76.0,8.0,7.0,8.0,8.0,9.0,8.0,11,0.66 +25859,97.0,10.0,10.0,10.0,9.0,10.0,10.0,12,0.8 +54449,80.0,9.0,8.0,9.0,9.0,8.0,8.0,47,2.81 +21583,81.0,8.0,8.0,9.0,9.0,8.0,8.0,49,2.89 +58505,86.0,9.0,8.0,9.0,9.0,9.0,9.0,42,2.64 +28698,93.0,10.0,10.0,10.0,10.0,10.0,9.0,18,1.07 +63196,,,,,,,,0, +33624,,,,,,,,0, +68706,87.0,9.0,9.0,9.0,9.0,10.0,9.0,32,1.97 +12395,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.67 +55318,85.0,8.0,8.0,9.0,9.0,10.0,9.0,19,1.24 +1311,89.0,9.0,9.0,9.0,9.0,9.0,8.0,7,0.42 +8656,,,,,,,,0, +46129,20.0,,,2.0,2.0,2.0,2.0,1,0.19 +48272,92.0,10.0,9.0,10.0,9.0,10.0,9.0,20,1.23 +43298,40.0,2.0,4.0,2.0,4.0,2.0,2.0,1,0.06 +5590,98.0,10.0,10.0,10.0,10.0,10.0,10.0,37,2.36 +67752,100.0,9.0,9.0,10.0,10.0,10.0,10.0,3,0.19 +76925,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.12 +29883,95.0,10.0,9.0,10.0,10.0,10.0,10.0,12,0.73 +50193,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +53524,99.0,10.0,10.0,10.0,10.0,10.0,10.0,34,2.21 +57200,92.0,8.0,10.0,10.0,10.0,10.0,10.0,5,0.3 +791,,,,,,,,1,0.06 +5786,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.28 +46272,99.0,10.0,10.0,10.0,10.0,10.0,10.0,34,2.04 +40121,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +9256,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.78 +68519,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +24346,90.0,9.0,9.0,10.0,10.0,9.0,9.0,4,0.35 +48558,96.0,10.0,10.0,9.0,10.0,10.0,9.0,15,1.02 +41225,95.0,10.0,10.0,10.0,10.0,10.0,9.0,71,4.35 +40313,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.62 +21065,90.0,9.0,10.0,10.0,10.0,10.0,10.0,4,0.24 +562,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.18 +73130,,,,,,,,0, +37729,,,,,,,,0, +12620,98.0,10.0,8.0,10.0,9.0,10.0,9.0,9,0.54 +463,,,,,,,,0, +61942,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.12 +14292,90.0,9.0,10.0,10.0,10.0,10.0,9.0,2,0.13 +50859,,,,,,,,0, +74965,88.0,9.0,9.0,10.0,10.0,9.0,9.0,58,3.41 +75028,100.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.94 +40494,98.0,10.0,10.0,10.0,10.0,10.0,10.0,62,3.74 +38817,98.0,10.0,9.0,10.0,10.0,9.0,9.0,10,0.74 +72997,89.0,9.0,9.0,9.0,9.0,10.0,9.0,26,1.58 +70528,88.0,9.0,9.0,8.0,10.0,10.0,9.0,18,1.06 +18071,,,,,,,,0, +47929,93.0,9.0,9.0,9.0,9.0,10.0,10.0,9,0.53 +13596,,,,,,,,0, +21712,94.0,10.0,10.0,10.0,9.0,9.0,10.0,61,3.65 +51293,,,,,,,,0, +70725,91.0,10.0,8.0,9.0,10.0,9.0,9.0,14,0.82 +74911,,,,,,,,0, +42415,80.0,8.0,7.0,9.0,9.0,10.0,9.0,3,0.18 +31065,92.0,10.0,9.0,10.0,10.0,9.0,9.0,13,0.8 +37187,93.0,10.0,10.0,9.0,10.0,9.0,9.0,30,1.96 +37340,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.13 +44257,83.0,9.0,10.0,9.0,9.0,10.0,9.0,6,0.38 +30641,100.0,9.0,7.0,10.0,9.0,10.0,9.0,3,0.76 +38368,,,,,,,,0, +46277,94.0,10.0,10.0,10.0,10.0,10.0,9.0,20,1.2 +19826,80.0,10.0,4.0,10.0,10.0,10.0,10.0,1,0.06 +18139,,,,,,,,0, +15429,91.0,9.0,9.0,9.0,9.0,10.0,9.0,37,2.45 +34475,81.0,8.0,8.0,9.0,9.0,9.0,9.0,51,3.23 +43818,96.0,10.0,10.0,10.0,10.0,10.0,10.0,41,2.48 +72380,97.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.58 +23312,99.0,10.0,10.0,10.0,10.0,9.0,10.0,29,1.75 +23123,87.0,9.0,9.0,9.0,10.0,9.0,9.0,40,2.45 +40222,100.0,10.0,10.0,6.0,10.0,10.0,10.0,2,0.41 +4774,89.0,10.0,8.0,10.0,9.0,10.0,9.0,11,0.67 +59388,88.0,9.0,9.0,10.0,9.0,9.0,9.0,34,2.05 +72118,,,,,,,,0, +19009,87.0,10.0,7.0,10.0,10.0,9.0,10.0,3,0.18 +7550,76.0,8.0,8.0,9.0,10.0,9.0,8.0,17,1.01 +71319,92.0,9.0,8.0,10.0,10.0,10.0,9.0,5,0.33 +68386,100.0,10.0,9.0,10.0,10.0,10.0,10.0,7,0.41 +28361,93.0,10.0,10.0,10.0,9.0,9.0,9.0,93,5.59 +74437,96.0,10.0,10.0,9.0,9.0,9.0,10.0,5,0.43 +29862,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.43 +42323,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.6 +20440,80.0,8.0,8.0,9.0,9.0,8.0,8.0,6,0.38 +6416,94.0,10.0,10.0,10.0,10.0,9.0,9.0,89,5.28 +68608,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.24 +67746,,,,,,,,0, +62105,82.0,8.0,8.0,9.0,10.0,9.0,8.0,21,1.33 +57914,98.0,10.0,10.0,10.0,10.0,10.0,10.0,25,1.73 +75397,97.0,10.0,9.0,10.0,10.0,10.0,10.0,21,1.25 +52581,,,,,,,,0, +1893,93.0,10.0,10.0,10.0,10.0,9.0,9.0,74,4.36 +74420,,,,,,,,0, +53247,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.12 +73053,,,,,,,,0, +38769,96.0,10.0,10.0,10.0,10.0,10.0,10.0,121,7.52 +6174,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.09 +18484,100.0,8.0,8.0,9.0,10.0,8.0,10.0,2,0.12 +54868,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.06 +20364,93.0,10.0,10.0,10.0,10.0,10.0,8.0,3,0.18 +45573,97.0,10.0,10.0,10.0,10.0,10.0,9.0,7,0.62 +45012,95.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.3 +32214,,,,,,,,0, +71024,100.0,10.0,9.0,9.0,10.0,10.0,10.0,2,0.13 +45929,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +14621,75.0,10.0,7.0,9.0,8.0,10.0,9.0,7,0.42 +9180,77.0,9.0,8.0,9.0,8.0,9.0,8.0,57,3.53 +30184,87.0,9.0,9.0,10.0,10.0,10.0,8.0,6,0.36 +34868,,,,,,,,0, +69438,,,,,,,,0, +73629,,,,,,,,0, +53200,90.0,9.0,8.0,10.0,10.0,9.0,10.0,6,0.85 +75551,,,,,,,,0, +15008,80.0,8.0,8.0,8.0,8.0,10.0,8.0,4,0.25 +36164,96.0,10.0,10.0,10.0,10.0,10.0,10.0,95,5.76 +49847,95.0,10.0,9.0,10.0,10.0,10.0,9.0,17,1.04 +45954,96.0,10.0,10.0,10.0,10.0,10.0,10.0,113,7.64 +65772,88.0,9.0,9.0,9.0,10.0,10.0,9.0,40,2.58 +59685,60.0,10.0,10.0,8.0,10.0,8.0,8.0,1,0.23 +11836,,,,,,,,0, +26101,,,,,,,,0, +41712,,,,,,,,0, +25013,,,,,,,,0, +6651,94.0,9.0,9.0,10.0,10.0,8.0,9.0,25,2.15 +53174,99.0,10.0,10.0,10.0,10.0,10.0,10.0,41,2.59 +71839,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.87 +38610,88.0,9.0,9.0,9.0,9.0,10.0,9.0,22,1.36 +72352,95.0,9.0,8.0,9.0,10.0,9.0,9.0,8,0.49 +59618,53.0,7.0,5.0,8.0,9.0,7.0,5.0,3,0.18 +5292,91.0,10.0,9.0,10.0,10.0,10.0,9.0,71,4.24 +9481,96.0,10.0,9.0,10.0,9.0,10.0,9.0,10,0.69 +21037,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.13 +62990,99.0,10.0,10.0,10.0,10.0,10.0,10.0,67,4.08 +72684,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.13 +45887,,,,,,,,0, +64063,,,,,,,,0, +11728,,,,,,,,0, +23954,80.0,9.0,9.0,9.0,9.0,9.0,8.0,15,1.05 +19442,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.54 +75655,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.5 +31646,90.0,9.0,9.0,9.0,9.0,9.0,9.0,44,2.66 +50957,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.18 +12789,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.12 +7840,93.0,9.0,9.0,9.0,10.0,10.0,9.0,8,0.5 +60931,,,,,,,,1,0.16 +44617,100.0,10.0,10.0,10.0,10.0,6.0,10.0,1,0.06 +30008,,,,,,,,0, +34111,100.0,10.0,9.0,10.0,10.0,10.0,10.0,22,1.38 +28892,80.0,6.0,10.0,8.0,10.0,8.0,8.0,1,1.0 +40786,94.0,10.0,9.0,10.0,10.0,10.0,9.0,28,1.71 +73196,91.0,9.0,10.0,9.0,8.0,10.0,10.0,7,0.43 +36656,,,,,,,,0, +18290,95.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.24 +74246,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.38 +2964,,,,,,,,0, +51685,98.0,10.0,9.0,10.0,10.0,10.0,10.0,11,0.65 +44524,100.0,10.0,10.0,,10.0,,,2,0.12 +19377,,,,,,,,0, +20190,96.0,10.0,10.0,10.0,10.0,10.0,10.0,17,1.0 +59642,91.0,10.0,9.0,9.0,10.0,9.0,9.0,52,3.39 +72948,,,,,,,,0, +28711,99.0,10.0,10.0,10.0,10.0,10.0,10.0,29,1.71 +7522,,,,,,,,0, +5188,,,,,,,,1, +77035,96.0,10.0,9.0,10.0,10.0,10.0,9.0,25,1.6 +5278,,,,,,,,0, +29695,89.0,9.0,8.0,9.0,10.0,8.0,9.0,13,0.76 +45984,90.0,10.0,9.0,10.0,10.0,10.0,10.0,12,0.86 +23436,91.0,10.0,9.0,10.0,10.0,9.0,9.0,57,3.37 +27860,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.18 +51397,86.0,9.0,9.0,10.0,9.0,10.0,9.0,10,0.6 +898,88.0,10.0,9.0,9.0,10.0,8.0,9.0,17,1.09 +3964,91.0,10.0,9.0,10.0,10.0,9.0,9.0,11,0.69 +65639,100.0,10.0,10.0,2.0,2.0,10.0,10.0,1,0.09 +2045,40.0,4.0,2.0,10.0,10.0,6.0,4.0,1,0.06 +58971,76.0,9.0,10.0,10.0,8.0,10.0,10.0,5,0.32 +9112,100.0,10.0,10.0,,10.0,,,1,0.06 +1716,,,,,,,,0, +7765,83.0,9.0,8.0,10.0,10.0,9.0,9.0,7,0.46 +21550,95.0,10.0,10.0,10.0,10.0,10.0,9.0,86,5.13 +76543,94.0,10.0,9.0,9.0,10.0,10.0,9.0,35,2.15 +60868,95.0,10.0,10.0,10.0,10.0,10.0,9.0,49,2.96 +30805,94.0,10.0,10.0,10.0,10.0,10.0,9.0,136,8.06 +440,100.0,10.0,10.0,10.0,10.0,10.0,10.0,20,1.2 +3319,90.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.18 +37238,98.0,10.0,9.0,9.0,9.0,10.0,10.0,11,0.69 +58648,,,,,,,,0, +14376,,,,,,,,0, +8669,80.0,8.0,10.0,8.0,8.0,8.0,8.0,2,0.14 +60833,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.42 +42370,88.0,9.0,9.0,10.0,10.0,9.0,9.0,38,2.34 +5622,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.3 +3788,,,,,,,,0, +40830,98.0,10.0,10.0,10.0,10.0,10.0,10.0,47,3.2 +37245,,,,,,,,0, +26916,,,,,,,,0, +70075,,,,,,,,0, +6763,95.0,10.0,10.0,9.0,9.0,9.0,10.0,77,5.02 +75929,,,,,,,,0, +26835,98.0,10.0,10.0,10.0,10.0,10.0,10.0,35,2.09 +28827,60.0,8.0,6.0,8.0,8.0,8.0,6.0,1,0.41 +23737,,,,,,,,0, +72050,73.0,8.0,10.0,8.0,8.0,9.0,8.0,6,0.5 +18011,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +41448,60.0,8.0,2.0,10.0,8.0,10.0,8.0,1,0.06 +26648,81.0,9.0,8.0,9.0,9.0,10.0,9.0,16,1.0 +9478,97.0,10.0,10.0,10.0,10.0,9.0,9.0,12,1.82 +62942,,,,,,,,0, +37364,86.0,9.0,9.0,9.0,10.0,9.0,9.0,24,1.72 +58445,90.0,10.0,8.0,10.0,10.0,9.0,9.0,11,0.68 +12602,,,,,,,,0, +50786,73.0,8.0,8.0,9.0,9.0,10.0,8.0,3,0.18 +2227,89.0,10.0,9.0,9.0,9.0,8.0,8.0,11,0.66 +70190,96.0,10.0,9.0,10.0,10.0,10.0,10.0,10,0.6 +37930,91.0,9.0,9.0,10.0,10.0,9.0,9.0,44,2.7 +57005,,,,,,,,0, +60398,,,,,,,,0, +20140,100.0,10.0,8.0,8.0,10.0,10.0,8.0,1,0.94 +71127,,,,,,,,0, +17375,96.0,10.0,10.0,10.0,10.0,9.0,10.0,21,1.3 +24855,,,,,,,,0, +12846,89.0,9.0,9.0,9.0,10.0,10.0,9.0,15,0.95 +51320,,,,,,,,1,0.07 +71296,,,,,,,,0, +28148,93.0,9.0,10.0,10.0,10.0,9.0,9.0,8,0.49 +19634,93.0,9.0,9.0,10.0,10.0,10.0,9.0,24,1.45 +70028,,,,,,,,0, +71261,,,,,,,,0, +41040,,,,,,,,0, +53838,,,,,,,,0, +21793,100.0,10.0,9.0,10.0,10.0,9.0,9.0,2,0.13 +29275,100.0,10.0,10.0,10.0,10.0,8.0,10.0,3,0.18 +57333,,,,,,,,0, +70868,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +71131,,,,,,,,0, +37661,76.0,9.0,9.0,8.0,9.0,9.0,8.0,15,0.91 +7571,79.0,9.0,8.0,9.0,9.0,9.0,8.0,70,4.21 +15530,96.0,10.0,10.0,9.0,10.0,10.0,10.0,5,0.3 +34231,82.0,9.0,10.0,10.0,10.0,10.0,8.0,13,0.78 +29512,85.0,9.0,8.0,9.0,9.0,9.0,9.0,46,2.73 +45654,91.0,9.0,9.0,10.0,9.0,10.0,9.0,30,2.17 +40951,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.36 +60836,90.0,9.0,9.0,10.0,10.0,9.0,10.0,32,1.89 +64728,76.0,9.0,7.0,8.0,9.0,9.0,8.0,17,1.01 +12527,84.0,8.0,8.0,10.0,9.0,9.0,9.0,5,0.3 +27493,94.0,10.0,9.0,10.0,10.0,10.0,9.0,10,0.63 +926,76.0,8.0,8.0,9.0,9.0,9.0,8.0,65,3.85 +65882,83.0,10.0,9.0,9.0,10.0,8.0,9.0,8,0.65 +52608,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.77 +55038,100.0,8.0,10.0,10.0,10.0,8.0,8.0,2,0.16 +14460,100.0,8.0,10.0,,,,,3,0.18 +25940,90.0,9.0,8.0,10.0,10.0,9.0,8.0,2,0.12 +9375,90.0,9.0,9.0,10.0,10.0,9.0,9.0,29,1.8 +23697,96.0,10.0,9.0,10.0,10.0,10.0,10.0,6,0.36 +28950,,,,,,,,0, +35572,87.0,8.0,8.0,10.0,9.0,9.0,8.0,10,0.63 +5550,97.0,10.0,9.0,10.0,10.0,10.0,9.0,26,1.56 +39003,,,,,,,,0, +39389,94.0,10.0,10.0,10.0,10.0,10.0,10.0,49,2.94 +60689,93.0,10.0,9.0,10.0,10.0,9.0,9.0,29,1.85 +16006,,,,,,,,0, +27375,100.0,10.0,10.0,10.0,10.0,9.0,10.0,11,0.65 +52515,90.0,9.0,9.0,9.0,9.0,10.0,9.0,21,1.32 +61291,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.1 +20299,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.26 +37097,100.0,10.0,9.0,10.0,10.0,9.0,9.0,2,0.13 +22845,85.0,9.0,9.0,9.0,9.0,9.0,9.0,55,3.27 +21662,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.15 +54076,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.18 +69845,80.0,8.0,8.0,8.0,8.0,8.0,8.0,1,0.06 +54381,74.0,8.0,6.0,9.0,9.0,9.0,8.0,8,0.48 +19591,,,,,,,,0, +8994,99.0,10.0,10.0,10.0,10.0,10.0,10.0,29,1.76 +30000,,,,,,,,0, +41509,100.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.26 +8394,,,,,,,,0, +43937,92.0,9.0,10.0,10.0,10.0,10.0,9.0,11,0.73 +31587,97.0,10.0,10.0,10.0,10.0,9.0,9.0,13,0.79 +76640,,,,,,,,0, +51228,88.0,9.0,8.0,10.0,9.0,10.0,9.0,12,0.73 +34452,90.0,10.0,8.0,10.0,10.0,6.0,10.0,2,0.12 +56531,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.3 +26437,70.0,7.0,8.0,10.0,10.0,10.0,8.0,2,0.13 +15509,92.0,10.0,10.0,9.0,10.0,10.0,9.0,17,1.23 +9104,90.0,9.0,8.0,10.0,10.0,10.0,9.0,2,0.13 +42152,97.0,9.0,10.0,9.0,10.0,9.0,9.0,7,0.44 +38701,,,,,,,,0, +285,93.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.18 +1371,,,,,,,,0, +69862,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.31 +22260,87.0,9.0,9.0,9.0,9.0,10.0,9.0,22,1.58 +45453,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.73 +19774,,,,,,,,0, +11018,,,,,,,,0, +56749,99.0,10.0,10.0,10.0,10.0,10.0,10.0,80,6.54 +3221,100.0,10.0,10.0,10.0,7.0,10.0,10.0,5,0.44 +76733,98.0,10.0,9.0,10.0,10.0,10.0,10.0,53,3.23 +64953,,,,,,,,0, +68564,90.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.26 +31331,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.09 +52749,98.0,10.0,9.0,10.0,10.0,10.0,10.0,48,2.9 +30728,97.0,10.0,10.0,10.0,10.0,9.0,10.0,115,7.57 +54114,,,,,,,,0, +13759,89.0,9.0,9.0,10.0,9.0,9.0,10.0,8,0.5 +51553,87.0,10.0,9.0,10.0,9.0,10.0,9.0,12,0.73 +21454,100.0,10.0,8.0,10.0,8.0,10.0,8.0,2,0.12 +14674,98.0,10.0,9.0,10.0,10.0,9.0,10.0,11,0.73 +37065,,,,,,,,0, +11200,95.0,10.0,10.0,10.0,10.0,10.0,9.0,32,1.9 +42806,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +35693,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.25 +44070,90.0,9.0,10.0,10.0,10.0,10.0,9.0,4,0.79 +33751,98.0,10.0,10.0,10.0,10.0,9.0,10.0,9,0.54 +51233,,,,,,,,0, +34020,,,,,,,,0, +71286,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.32 +66851,64.0,6.0,5.0,8.0,8.0,9.0,7.0,5,0.32 +49718,94.0,10.0,10.0,10.0,10.0,10.0,9.0,74,4.59 +72416,98.0,10.0,10.0,10.0,10.0,10.0,10.0,24,1.52 +17184,92.0,10.0,9.0,10.0,10.0,9.0,9.0,12,0.74 +8621,100.0,10.0,10.0,10.0,9.0,10.0,10.0,3,0.19 +30885,,,,,,,,0, +52701,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.24 +30401,97.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.83 +76829,100.0,9.0,10.0,9.0,10.0,9.0,9.0,3,0.26 +54913,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +65250,,,,,,,,1,0.08 +62218,97.0,10.0,10.0,10.0,10.0,9.0,10.0,30,2.08 +50548,100.0,8.0,10.0,10.0,10.0,8.0,10.0,1,0.06 +54423,90.0,9.0,9.0,10.0,10.0,9.0,10.0,15,0.9 +52632,40.0,2.0,2.0,10.0,10.0,8.0,2.0,1,0.07 +45524,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.61 +24809,99.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.97 +2563,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.88 +76378,89.0,9.0,9.0,10.0,9.0,9.0,9.0,16,1.06 +73121,,,,,,,,0, +36301,88.0,9.0,10.0,10.0,10.0,10.0,9.0,21,1.54 +14753,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.08 +76966,100.0,10.0,10.0,10.0,10.0,10.0,10.0,27,1.65 +1877,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.24 +35971,,,,,,,,0, +47180,96.0,10.0,10.0,10.0,10.0,10.0,10.0,24,1.58 +55842,92.0,9.0,9.0,9.0,9.0,9.0,9.0,21,1.26 +22592,96.0,10.0,9.0,10.0,10.0,10.0,10.0,9,0.54 +39211,100.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.92 +70791,,,,,,,,0, +9936,89.0,9.0,9.0,9.0,10.0,10.0,9.0,17,1.04 +69940,100.0,10.0,10.0,10.0,10.0,10.0,10.0,51,3.08 +52480,100.0,10.0,9.0,9.0,10.0,10.0,10.0,5,0.29 +75719,67.0,9.0,4.0,9.0,9.0,9.0,8.0,4,1.45 +16954,,,,,,,,0, +26583,90.0,9.0,9.0,9.0,9.0,9.0,9.0,8,0.51 +62689,,,,,,,,0, +9582,,,,,,,,0, +32101,99.0,10.0,10.0,10.0,10.0,9.0,10.0,55,3.44 +5207,94.0,9.0,9.0,10.0,10.0,10.0,9.0,28,1.72 +58611,,,,,,,,0, +55841,95.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.74 +26154,98.0,10.0,10.0,9.0,9.0,10.0,10.0,28,1.9 +9448,95.0,10.0,9.0,10.0,10.0,9.0,9.0,26,1.58 +10672,100.0,9.0,9.0,9.0,10.0,9.0,10.0,3,0.21 +3109,99.0,10.0,10.0,9.0,10.0,10.0,10.0,18,1.15 +19051,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.49 +74802,95.0,10.0,9.0,10.0,10.0,9.0,9.0,19,1.36 +54147,100.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.25 +36072,95.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.68 +15495,98.0,10.0,9.0,10.0,10.0,10.0,10.0,14,0.87 +21764,,,,,,,,0, +65203,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +35301,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +47062,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.55 +8357,100.0,10.0,10.0,10.0,10.0,10.0,9.0,8,0.47 +69359,96.0,10.0,10.0,10.0,10.0,10.0,9.0,11,0.66 +18965,95.0,9.0,10.0,10.0,10.0,9.0,10.0,25,1.51 +22541,98.0,10.0,10.0,10.0,10.0,9.0,10.0,23,1.73 +3564,88.0,8.0,9.0,10.0,10.0,9.0,10.0,16,1.08 +61154,95.0,10.0,10.0,10.0,10.0,9.0,9.0,5,0.32 +40129,100.0,9.0,9.0,9.0,10.0,9.0,10.0,3,0.18 +1194,88.0,10.0,7.0,9.0,10.0,9.0,9.0,11,0.97 +56661,97.0,10.0,10.0,10.0,10.0,10.0,10.0,29,2.31 +25576,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.81 +70589,100.0,10.0,10.0,10.0,10.0,9.0,9.0,9,0.57 +48148,,,,,,,,1,0.06 +64970,,,,,,,,0, +40477,92.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.3 +41226,,,,,,,,0, +13866,,,,,,,,0, +65799,88.0,9.0,9.0,10.0,9.0,10.0,9.0,25,1.61 +68029,70.0,9.0,4.0,9.0,10.0,6.0,10.0,2,0.14 +12264,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.54 +69001,97.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.41 +31986,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.26 +22522,20.0,2.0,2.0,2.0,2.0,6.0,4.0,1,0.07 +60193,81.0,9.0,9.0,8.0,9.0,9.0,9.0,66,3.92 +27695,90.0,9.0,9.0,9.0,10.0,9.0,9.0,8,0.49 +128,,,,,,,,0, +12417,87.0,9.0,8.0,10.0,9.0,9.0,9.0,15,0.94 +53770,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.53 +50273,,,,,,,,0, +557,90.0,10.0,10.0,8.0,9.0,10.0,10.0,2,0.18 +22079,92.0,10.0,8.0,10.0,9.0,10.0,10.0,5,0.33 +26090,90.0,9.0,9.0,10.0,9.0,9.0,8.0,6,0.5 +9339,,,,,,,,0, +74306,93.0,10.0,10.0,9.0,9.0,10.0,9.0,6,0.46 +49705,100.0,10.0,8.0,8.0,10.0,10.0,10.0,1,0.06 +7056,,,,,,,,0, +24956,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.2 +8468,99.0,10.0,10.0,10.0,10.0,10.0,10.0,24,1.52 +27895,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +31254,93.0,9.0,10.0,10.0,10.0,10.0,9.0,38,2.79 +34904,96.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.3 +33131,,,,,,,,0, +4094,100.0,10.0,9.0,10.0,10.0,10.0,10.0,8,0.5 +40249,100.0,10.0,10.0,10.0,10.0,9.0,9.0,11,0.67 +44072,60.0,8.0,8.0,10.0,10.0,8.0,6.0,1,0.08 +28809,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.37 +31854,80.0,9.0,9.0,9.0,9.0,10.0,8.0,14,0.95 +35063,94.0,9.0,9.0,10.0,10.0,10.0,10.0,25,1.84 +76039,100.0,10.0,10.0,10.0,10.0,10.0,9.0,10,0.63 +17965,100.0,10.0,8.0,8.0,10.0,10.0,6.0,1,0.08 +31067,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +67902,,,,,,,,0, +31232,85.0,9.0,9.0,9.0,9.0,9.0,8.0,33,1.96 +13643,,,,,,,,0, +11522,60.0,6.0,6.0,8.0,6.0,10.0,8.0,1,0.06 +54054,84.0,9.0,9.0,10.0,9.0,9.0,9.0,33,1.97 +46717,,,,,,,,0, +27221,100.0,10.0,10.0,10.0,10.0,9.0,10.0,9,0.78 +55825,,,,,,,,0, +44519,87.0,9.0,9.0,10.0,10.0,10.0,9.0,37,2.79 +57790,,,,,,,,0, +46131,98.0,10.0,10.0,9.0,10.0,9.0,9.0,20,1.2 +72906,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.45 +28374,94.0,9.0,9.0,10.0,10.0,10.0,9.0,24,1.83 +40173,88.0,9.0,8.0,8.0,9.0,9.0,9.0,15,0.96 +63042,,,,,,,,0, +48581,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.54 +12600,98.0,10.0,10.0,10.0,10.0,9.0,9.0,37,2.41 +54535,99.0,10.0,10.0,10.0,10.0,10.0,10.0,30,1.98 +26260,,,,,,,,0, +45167,,,,,,,,0, +16283,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.18 +39437,98.0,10.0,10.0,10.0,10.0,10.0,10.0,55,3.28 +3430,97.0,10.0,10.0,10.0,9.0,10.0,10.0,12,0.96 +73299,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.18 +7485,,,,,,,,0, +9666,89.0,9.0,8.0,10.0,10.0,10.0,9.0,7,0.57 +27535,96.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.31 +2980,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.12 +20232,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.79 +74835,91.0,10.0,10.0,9.0,9.0,10.0,10.0,10,0.63 +58694,97.0,10.0,9.0,10.0,10.0,10.0,10.0,30,2.27 +28784,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.12 +4468,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +56278,95.0,10.0,9.0,10.0,9.0,10.0,9.0,13,0.86 +56041,100.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.32 +30153,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.33 +13547,,,,,,,,0, +29266,92.0,10.0,9.0,10.0,10.0,10.0,9.0,85,5.2 +59043,92.0,10.0,9.0,10.0,10.0,8.0,9.0,20,1.24 +32540,83.0,8.0,7.0,10.0,9.0,8.0,9.0,25,1.51 +14676,60.0,6.0,4.0,10.0,10.0,4.0,6.0,1,0.61 +39545,90.0,9.0,9.0,10.0,9.0,8.0,9.0,39,2.41 +909,80.0,8.0,6.0,8.0,6.0,8.0,6.0,1,0.06 +71239,100.0,9.0,10.0,10.0,10.0,9.0,9.0,3,0.48 +39990,87.0,10.0,8.0,10.0,10.0,10.0,9.0,7,0.43 +47984,,,,,,,,0, +73676,96.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.32 +68752,,,,,,,,0, +8334,40.0,4.0,2.0,8.0,8.0,8.0,4.0,2,0.13 +57428,,,,,,,,0, +11878,93.0,10.0,8.0,10.0,10.0,10.0,10.0,3,0.22 +47783,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.13 +18074,95.0,10.0,8.0,10.0,10.0,10.0,10.0,5,0.3 +7141,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.21 +74150,96.0,10.0,10.0,10.0,10.0,10.0,9.0,11,0.76 +53647,80.0,8.0,8.0,9.0,9.0,9.0,8.0,31,1.95 +66089,98.0,10.0,9.0,10.0,10.0,10.0,9.0,13,1.0 +54796,99.0,10.0,10.0,10.0,10.0,10.0,10.0,30,1.79 +16673,99.0,10.0,10.0,10.0,10.0,10.0,10.0,22,1.33 +63655,93.0,9.0,9.0,10.0,10.0,10.0,9.0,31,1.95 +74138,,,,,,,,0, +3976,92.0,9.0,10.0,9.0,9.0,9.0,9.0,5,0.34 +56979,99.0,10.0,10.0,10.0,10.0,9.0,10.0,65,4.19 +74816,,,,,,,,0, +23343,86.0,9.0,9.0,9.0,9.0,9.0,9.0,32,2.41 +73802,,,,,,,,0, +36779,94.0,10.0,10.0,10.0,10.0,10.0,9.0,17,1.15 +47073,74.0,8.0,7.0,9.0,8.0,9.0,8.0,28,1.66 +66813,,,,,,,,0, +21258,91.0,9.0,9.0,10.0,10.0,9.0,9.0,28,1.69 +375,92.0,10.0,10.0,10.0,10.0,9.0,9.0,6,0.36 +19993,73.0,9.0,9.0,9.0,9.0,10.0,9.0,4,0.29 +40634,,,,,,,,0, +72254,85.0,9.0,10.0,8.0,10.0,10.0,9.0,4,0.48 +72360,100.0,10.0,9.0,10.0,10.0,10.0,9.0,2,0.4 +48448,,,,,,,,0, +6987,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.38 +1421,86.0,8.0,8.0,9.0,9.0,9.0,9.0,40,2.46 +27728,96.0,10.0,10.0,10.0,10.0,10.0,10.0,25,1.55 +10534,96.0,10.0,10.0,10.0,10.0,10.0,10.0,17,1.38 +53189,85.0,9.0,10.0,9.0,10.0,9.0,9.0,8,0.52 +70069,81.0,9.0,9.0,9.0,9.0,9.0,9.0,36,2.14 +19933,100.0,10.0,10.0,10.0,6.0,10.0,10.0,1,0.45 +47213,75.0,9.0,7.0,10.0,8.0,10.0,9.0,4,0.25 +33149,81.0,9.0,8.0,9.0,10.0,9.0,8.0,27,1.74 +56403,100.0,10.0,8.0,10.0,8.0,10.0,8.0,1,0.23 +62233,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.12 +47845,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.43 +67084,83.0,9.0,8.0,10.0,10.0,9.0,8.0,21,1.35 +28785,94.0,10.0,9.0,10.0,10.0,9.0,9.0,50,3.26 +53732,50.0,4.0,4.0,10.0,9.0,8.0,6.0,2,0.12 +29419,95.0,10.0,9.0,10.0,10.0,10.0,9.0,13,0.77 +42986,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.19 +30752,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.93 +37372,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.73 +66506,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.18 +61295,92.0,9.0,9.0,8.0,9.0,9.0,9.0,14,0.84 +60941,99.0,10.0,10.0,10.0,10.0,10.0,10.0,35,2.08 +55554,100.0,10.0,9.0,10.0,10.0,9.0,10.0,2,0.12 +60025,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.18 +40200,,,,,,,,0, +38802,98.0,10.0,10.0,10.0,10.0,10.0,10.0,122,7.45 +31276,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.19 +26455,92.0,9.0,9.0,10.0,10.0,9.0,9.0,26,1.59 +68710,100.0,10.0,8.0,10.0,10.0,8.0,8.0,1,0.06 +31351,92.0,10.0,10.0,10.0,10.0,10.0,10.0,21,1.26 +28623,93.0,9.0,10.0,10.0,10.0,9.0,9.0,3,0.19 +25956,95.0,10.0,9.0,10.0,10.0,10.0,9.0,47,2.93 +59193,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.08 +58684,88.0,9.0,9.0,9.0,9.0,10.0,9.0,19,1.25 +18934,97.0,10.0,10.0,10.0,10.0,10.0,10.0,59,4.02 +53761,91.0,10.0,9.0,10.0,10.0,9.0,9.0,9,0.55 +35305,94.0,10.0,10.0,10.0,10.0,9.0,9.0,20,1.2 +7462,80.0,10.0,8.0,10.0,10.0,10.0,6.0,1,0.07 +54885,87.0,9.0,9.0,9.0,9.0,8.0,9.0,3,0.18 +62199,,,,,,,,0, +45168,,,,,,,,0, +75241,97.0,10.0,10.0,10.0,10.0,9.0,9.0,14,0.88 +35356,95.0,9.0,9.0,10.0,9.0,10.0,9.0,4,0.26 +30871,87.0,10.0,8.0,10.0,10.0,10.0,9.0,6,0.41 +73488,90.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.39 +68132,20.0,6.0,6.0,6.0,2.0,6.0,6.0,1,0.06 +70049,87.0,9.0,9.0,10.0,10.0,9.0,9.0,19,1.46 +208,87.0,9.0,9.0,9.0,9.0,9.0,9.0,3,0.46 +10737,,,,,,,,0, +20376,,,,,,,,0, +49281,88.0,9.0,9.0,10.0,9.0,9.0,9.0,19,1.45 +36892,94.0,10.0,10.0,10.0,10.0,10.0,9.0,16,1.04 +23691,97.0,10.0,10.0,10.0,10.0,10.0,9.0,15,0.93 +53441,100.0,10.0,10.0,,10.0,,,2,0.13 +38282,88.0,10.0,10.0,9.0,10.0,10.0,9.0,12,0.73 +54648,,,,,,,,0, +64147,100.0,10.0,9.0,9.0,10.0,9.0,10.0,9,0.55 +64203,83.0,9.0,8.0,9.0,9.0,9.0,8.0,57,3.46 +26278,,,,,,,,3,0.18 +46005,,,,,,,,0, +46472,,,,,,,,0, +9585,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.3 +66916,94.0,10.0,9.0,10.0,10.0,9.0,10.0,9,0.56 +40742,72.0,8.0,8.0,9.0,9.0,10.0,8.0,5,0.31 +74041,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.31 +12695,40.0,4.0,2.0,4.0,4.0,4.0,4.0,1,0.07 +72240,93.0,9.0,10.0,10.0,10.0,9.0,9.0,12,1.0 +61093,100.0,8.0,10.0,10.0,10.0,10.0,8.0,1,0.06 +33480,100.0,10.0,8.0,10.0,10.0,10.0,8.0,2,0.35 +12177,20.0,2.0,6.0,10.0,2.0,4.0,4.0,1,0.13 +30825,98.0,10.0,9.0,10.0,10.0,10.0,10.0,34,2.09 +8460,81.0,8.0,9.0,9.0,9.0,8.0,8.0,17,1.06 +23791,96.0,10.0,10.0,9.0,10.0,10.0,9.0,11,0.68 +55983,73.0,9.0,9.0,7.0,7.0,7.0,7.0,3,0.73 +6287,98.0,10.0,10.0,10.0,10.0,10.0,10.0,35,2.29 +19745,82.0,9.0,8.0,9.0,9.0,8.0,9.0,55,3.29 +491,,,,,,,,0, +65321,80.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.12 +5911,88.0,9.0,9.0,9.0,9.0,8.0,8.0,17,1.06 +38206,75.0,8.0,6.0,8.0,10.0,9.0,8.0,4,0.25 +1680,80.0,10.0,8.0,10.0,10.0,8.0,10.0,1,0.07 +46785,,,,,,,,0, +18098,93.0,10.0,9.0,10.0,10.0,10.0,9.0,17,1.18 +45068,20.0,2.0,2.0,2.0,2.0,2.0,2.0,1,0.08 +48484,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.12 +19701,87.0,7.0,7.0,9.0,9.0,9.0,8.0,3,0.19 +19285,78.0,8.0,8.0,9.0,9.0,8.0,8.0,62,3.71 +14105,60.0,8.0,2.0,10.0,10.0,10.0,4.0,2,0.13 +18540,96.0,10.0,10.0,10.0,10.0,9.0,10.0,9,0.55 +62069,79.0,8.0,8.0,10.0,10.0,9.0,8.0,57,3.45 +49415,81.0,8.0,9.0,8.0,8.0,8.0,8.0,16,1.01 +65053,87.0,9.0,8.0,9.0,10.0,9.0,9.0,77,4.64 +4022,,,,,,,,0, +28093,87.0,10.0,9.0,9.0,9.0,9.0,9.0,61,3.67 +63159,,,,,,,,0, +67722,80.0,8.0,8.0,10.0,10.0,8.0,8.0,7,0.44 +47194,92.0,10.0,9.0,10.0,10.0,10.0,10.0,5,2.42 +5699,84.0,9.0,10.0,10.0,8.0,8.0,9.0,5,0.32 +33141,100.0,10.0,10.0,,,,,1,0.06 +74504,88.0,10.0,9.0,10.0,9.0,9.0,9.0,29,1.83 +60563,,,,,,,,0, +22005,91.0,9.0,8.0,9.0,10.0,9.0,9.0,42,2.66 +55797,85.0,9.0,9.0,9.0,9.0,9.0,9.0,12,0.94 +18400,98.0,10.0,10.0,10.0,10.0,9.0,10.0,72,4.35 +12211,96.0,10.0,9.0,10.0,10.0,9.0,9.0,5,0.3 +20850,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.18 +63564,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +56055,,,,,,,,0, +22289,97.0,10.0,10.0,9.0,9.0,9.0,10.0,45,2.73 +27156,94.0,9.0,10.0,10.0,10.0,9.0,9.0,30,1.98 +34865,,,,,,,,0, +10711,,,,,,,,1,0.06 +44520,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.07 +9332,,,,,,,,1,0.34 +44127,93.0,9.0,9.0,10.0,9.0,9.0,9.0,3,0.19 +49819,98.0,10.0,10.0,10.0,10.0,10.0,9.0,9,0.54 +50545,97.0,10.0,9.0,10.0,10.0,10.0,9.0,13,0.8 +10899,93.0,9.0,9.0,10.0,10.0,9.0,10.0,3,1.02 +10270,98.0,9.0,9.0,9.0,9.0,9.0,10.0,9,0.66 +59255,,,,,,,,0, +48085,,,,,,,,0, +58143,89.0,9.0,9.0,9.0,9.0,10.0,9.0,39,2.37 +42697,100.0,8.0,8.0,8.0,8.0,8.0,10.0,1,0.2 +50406,99.0,10.0,10.0,10.0,10.0,10.0,10.0,38,2.51 +68201,,,,,,,,0, +29749,,,,,,,,0, +18473,98.0,10.0,10.0,10.0,10.0,8.0,9.0,11,0.93 +72092,93.0,10.0,9.0,10.0,9.0,10.0,10.0,3,0.19 +63060,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.08 +50872,88.0,9.0,9.0,9.0,9.0,9.0,9.0,70,4.21 +42254,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.37 +14093,80.0,8.0,9.0,10.0,10.0,10.0,9.0,5,0.3 +32606,,,,,,,,0, +7306,93.0,10.0,10.0,10.0,10.0,9.0,9.0,8,0.53 +2595,90.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.12 +24307,94.0,10.0,9.0,10.0,10.0,9.0,9.0,18,1.12 +58755,94.0,9.0,9.0,9.0,9.0,9.0,9.0,7,0.47 +14236,94.0,9.0,9.0,10.0,10.0,10.0,9.0,34,2.28 +17754,94.0,10.0,10.0,9.0,9.0,10.0,9.0,24,1.47 +43708,95.0,10.0,9.0,10.0,10.0,10.0,9.0,5,0.32 +31204,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.56 +21609,,,,,,,,0, +49778,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.25 +1861,89.0,9.0,9.0,9.0,10.0,9.0,9.0,52,3.23 +24972,100.0,10.0,8.0,10.0,10.0,10.0,10.0,5,0.31 +9192,94.0,10.0,9.0,10.0,10.0,9.0,9.0,10,0.6 +58363,85.0,9.0,9.0,10.0,10.0,9.0,9.0,46,2.77 +75492,89.0,9.0,9.0,9.0,10.0,9.0,9.0,95,5.85 +61983,,,,,,,,0, +24143,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.07 +11510,82.0,9.0,9.0,9.0,9.0,9.0,8.0,44,2.73 +73079,83.0,9.0,8.0,9.0,9.0,10.0,8.0,39,2.46 +30514,86.0,9.0,9.0,9.0,9.0,9.0,9.0,73,4.42 +59847,84.0,9.0,9.0,9.0,10.0,9.0,9.0,43,2.64 +73872,,,,,,,,0, +58261,100.0,10.0,10.0,10.0,10.0,9.0,10.0,13,0.79 +74503,91.0,10.0,10.0,9.0,10.0,9.0,9.0,9,0.69 +76409,94.0,10.0,10.0,10.0,10.0,9.0,9.0,26,2.05 +63169,100.0,10.0,10.0,10.0,10.0,10.0,8.0,2,0.13 +68746,100.0,9.0,10.0,10.0,10.0,10.0,9.0,2,0.12 +9669,92.0,10.0,10.0,10.0,10.0,9.0,9.0,20,1.59 +9628,84.0,9.0,9.0,9.0,9.0,9.0,9.0,56,3.41 +48694,74.0,8.0,8.0,6.0,9.0,10.0,8.0,7,0.62 +22974,99.0,10.0,10.0,10.0,10.0,9.0,9.0,20,1.32 +71950,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.16 +47203,93.0,10.0,10.0,10.0,10.0,10.0,10.0,29,1.74 +38197,,,,,,,,0, +51260,89.0,9.0,9.0,9.0,9.0,9.0,9.0,23,1.83 +12362,,,,,,,,0, +65077,98.0,10.0,10.0,10.0,10.0,10.0,9.0,40,2.44 +34166,,,,,,,,0, +12786,80.0,10.0,5.0,10.0,10.0,8.0,9.0,3,0.19 +41223,100.0,10.0,9.0,10.0,10.0,9.0,10.0,3,0.22 +50978,,,,,,,,0, +58357,,,,,,,,0, +48783,96.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.33 +7209,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.43 +68987,98.0,10.0,10.0,10.0,9.0,10.0,10.0,12,0.78 +37690,,,,,,,,0, +59280,,,,,,,,0, +43701,,,,,,,,0, +61026,,,,,,,,0, +73973,95.0,10.0,9.0,9.0,10.0,10.0,10.0,23,1.42 +45820,99.0,10.0,10.0,10.0,10.0,10.0,10.0,35,2.12 +71601,94.0,9.0,9.0,10.0,10.0,9.0,9.0,18,1.14 +55538,98.0,10.0,10.0,10.0,10.0,9.0,10.0,18,1.07 +4291,,,,,,,,1,0.18 +50165,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,2.31 +52341,96.0,10.0,10.0,10.0,10.0,9.0,10.0,28,1.69 +9799,,,,,,,,0, +49355,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +34804,,,,,,,,0, +51611,94.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.56 +58483,,,,,,,,0, +74570,,,,,,,,2,0.19 +16840,97.0,10.0,10.0,10.0,10.0,10.0,10.0,71,4.41 +20267,98.0,10.0,10.0,10.0,10.0,10.0,10.0,72,4.4 +54780,,,,,,,,0, +60741,88.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.35 +64317,,,,,,,,0, +42363,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +76860,98.0,10.0,10.0,10.0,10.0,10.0,9.0,33,2.01 +58066,88.0,9.0,9.0,9.0,9.0,9.0,8.0,6,0.36 +17119,96.0,10.0,10.0,10.0,10.0,10.0,9.0,24,1.58 +69765,100.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.56 +49521,94.0,10.0,9.0,10.0,9.0,9.0,9.0,27,1.66 +23561,86.0,9.0,9.0,10.0,9.0,9.0,9.0,28,1.76 +19080,87.0,9.0,9.0,10.0,10.0,9.0,9.0,49,3.01 +54945,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.19 +8977,,,,,,,,0, +53434,87.0,9.0,9.0,10.0,9.0,9.0,9.0,54,3.33 +33625,80.0,8.0,10.0,10.0,10.0,10.0,8.0,1,0.06 +26657,90.0,10.0,9.0,9.0,10.0,9.0,10.0,6,0.37 +16592,67.0,5.0,9.0,7.0,7.0,8.0,6.0,3,1.22 +33424,90.0,9.0,9.0,10.0,9.0,9.0,9.0,54,3.33 +69081,100.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.25 +39126,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +38877,93.0,9.0,9.0,9.0,9.0,8.0,9.0,3,0.22 +75518,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.13 +56654,80.0,10.0,10.0,10.0,10.0,10.0,6.0,1,0.23 +69975,95.0,9.0,9.0,10.0,10.0,9.0,9.0,38,2.29 +9814,83.0,9.0,9.0,8.0,8.0,8.0,8.0,6,0.37 +21169,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.38 +24146,87.0,9.0,9.0,10.0,10.0,9.0,9.0,49,3.14 +24849,96.0,10.0,9.0,10.0,10.0,9.0,10.0,16,1.07 +39507,86.0,9.0,9.0,9.0,9.0,10.0,9.0,31,1.95 +53078,86.0,9.0,9.0,9.0,9.0,8.0,9.0,51,3.12 +76717,76.0,8.0,8.0,9.0,9.0,8.0,8.0,63,4.08 +43319,95.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.3 +38526,90.0,9.0,9.0,9.0,10.0,9.0,9.0,58,3.48 +5115,90.0,9.0,9.0,9.0,10.0,9.0,9.0,70,4.38 +6356,88.0,10.0,9.0,9.0,10.0,9.0,9.0,55,3.33 +11863,,,,,,,,0, +59962,96.0,10.0,9.0,9.0,10.0,10.0,10.0,5,0.37 +47110,97.0,10.0,10.0,10.0,10.0,9.0,9.0,13,1.36 +57321,80.0,8.0,10.0,6.0,8.0,8.0,8.0,5,0.31 +11297,86.0,9.0,9.0,10.0,10.0,8.0,9.0,43,2.57 +73529,,,,,,,,0, +39584,80.0,9.0,8.0,10.0,10.0,10.0,8.0,2,0.13 +316,88.0,8.0,9.0,10.0,10.0,8.0,9.0,65,3.88 +12549,86.0,9.0,9.0,9.0,9.0,9.0,9.0,32,1.99 +16554,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.88 +44024,88.0,9.0,9.0,9.0,10.0,8.0,9.0,67,4.32 +57658,94.0,10.0,10.0,9.0,9.0,10.0,10.0,24,1.48 +25677,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.37 +49252,95.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.5 +29679,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.53 +2774,91.0,9.0,9.0,9.0,10.0,9.0,9.0,62,3.79 +8298,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.85 +52630,100.0,9.0,10.0,10.0,10.0,9.0,8.0,4,0.25 +37167,90.0,10.0,9.0,10.0,9.0,10.0,10.0,4,0.28 +35917,91.0,9.0,9.0,10.0,9.0,9.0,9.0,8,0.54 +67696,94.0,9.0,9.0,10.0,10.0,9.0,10.0,18,1.18 +63625,100.0,10.0,10.0,8.0,10.0,8.0,8.0,1,0.06 +54245,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.18 +59240,94.0,10.0,10.0,10.0,10.0,10.0,9.0,51,3.46 +75899,98.0,10.0,10.0,10.0,10.0,10.0,9.0,26,1.6 +63967,95.0,10.0,10.0,9.0,10.0,10.0,10.0,4,0.48 +52509,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +51670,90.0,8.0,9.0,6.0,9.0,8.0,10.0,2,0.13 +52064,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.25 +71756,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +35227,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +62400,96.0,9.0,8.0,9.0,10.0,9.0,9.0,12,0.75 +53550,73.0,8.0,6.0,9.0,8.0,8.0,7.0,6,0.37 +9691,,,,,,,,0, +70841,,,,,,,,0, +23313,100.0,10.0,10.0,8.0,10.0,10.0,10.0,4,0.24 +15816,87.0,9.0,9.0,9.0,9.0,8.0,9.0,61,3.67 +13575,,,,,,,,0, +14816,82.0,9.0,9.0,10.0,10.0,8.0,8.0,50,3.01 +62365,100.0,10.0,10.0,10.0,10.0,6.0,10.0,1,0.14 +14269,85.0,9.0,9.0,10.0,9.0,8.0,9.0,75,4.55 +21945,88.0,9.0,9.0,9.0,10.0,9.0,10.0,24,1.48 +35779,100.0,10.0,10.0,10.0,10.0,9.0,9.0,4,0.26 +76229,97.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.61 +54867,86.0,9.0,8.0,10.0,10.0,9.0,9.0,69,4.16 +72983,90.0,10.0,10.0,10.0,10.0,9.0,9.0,4,0.27 +1578,95.0,10.0,10.0,10.0,10.0,10.0,9.0,61,3.7 +47887,93.0,10.0,9.0,10.0,10.0,9.0,9.0,6,0.4 +785,89.0,9.0,9.0,10.0,10.0,9.0,9.0,71,4.35 +26291,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +66685,,,,,,,,0, +39282,100.0,10.0,10.0,10.0,10.0,10.0,10.0,23,1.41 +8236,100.0,10.0,9.0,10.0,10.0,10.0,9.0,4,0.25 +38632,100.0,,,,,,,3,0.18 +28837,84.0,9.0,8.0,10.0,10.0,9.0,8.0,67,4.06 +60579,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +15865,92.0,10.0,8.0,10.0,10.0,9.0,10.0,5,0.33 +1537,,,,,,,,0, +24829,99.0,10.0,10.0,10.0,10.0,10.0,10.0,35,2.36 +591,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.13 +47002,85.0,9.0,8.0,9.0,10.0,9.0,9.0,61,3.7 +35085,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.12 +17093,96.0,10.0,10.0,10.0,10.0,10.0,9.0,10,0.86 +35297,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +65684,,,,,,,,0, +75024,,,,,,,,0, +21897,92.0,9.0,9.0,10.0,10.0,10.0,9.0,42,2.58 +4350,71.0,7.0,8.0,7.0,8.0,7.0,7.0,7,0.42 +50317,97.0,10.0,10.0,10.0,10.0,10.0,10.0,26,1.62 +42842,84.0,7.0,9.0,9.0,8.0,9.0,8.0,5,0.32 +45661,75.0,7.0,9.0,8.0,9.0,9.0,7.0,8,0.52 +8387,85.0,10.0,9.0,9.0,10.0,10.0,9.0,11,0.68 +72522,,,,,,,,0, +55516,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.15 +17305,,,,,,,,0, +27084,86.0,9.0,9.0,10.0,10.0,9.0,9.0,57,3.42 +14931,,,,,,,,0, +67471,93.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.22 +34386,100.0,10.0,10.0,10.0,10.0,10.0,9.0,7,0.43 +36231,60.0,4.0,6.0,8.0,8.0,4.0,6.0,1,0.06 +492,97.0,10.0,10.0,10.0,10.0,9.0,9.0,7,0.55 +58459,,,,,,,,0, +33782,89.0,9.0,9.0,10.0,10.0,9.0,9.0,90,5.45 +3810,100.0,10.0,10.0,10.0,10.0,9.0,9.0,4,0.25 +62858,89.0,9.0,9.0,10.0,10.0,9.0,9.0,71,4.47 +60936,75.0,8.0,8.0,9.0,9.0,8.0,8.0,51,3.09 +33861,,,,,,,,0, +32944,86.0,9.0,9.0,9.0,9.0,9.0,9.0,74,4.58 +77039,72.0,8.0,7.0,9.0,8.0,9.0,7.0,15,1.0 +40861,82.0,9.0,8.0,9.0,9.0,8.0,9.0,67,4.03 +29565,20.0,,,2.0,2.0,,,1,0.06 +58747,87.0,8.0,8.0,8.0,7.0,9.0,9.0,3,0.61 +60410,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.14 +6379,,,,,,,,1,0.07 +24521,,,,,,,,0, +3167,93.0,9.0,9.0,9.0,9.0,9.0,9.0,11,0.76 +68184,,,,,,,,0, +74941,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.08 +3570,,,,,,,,0, +41565,,,,,,,,0, +69564,97.0,10.0,10.0,10.0,10.0,10.0,10.0,37,2.26 +15245,,,,,,,,0, +19646,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +7037,94.0,10.0,10.0,9.0,9.0,9.0,10.0,18,1.16 +44497,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.32 +34581,,,,,,,,0, +29063,100.0,10.0,8.0,10.0,10.0,8.0,10.0,1,0.07 +73514,87.0,10.0,9.0,10.0,10.0,8.0,9.0,4,0.25 +34689,99.0,10.0,10.0,10.0,10.0,9.0,10.0,29,1.75 +62291,,,,,,,,1,0.88 +9614,20.0,6.0,8.0,2.0,4.0,8.0,8.0,2,0.12 +64585,,,,,,,,1,0.06 +32255,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +1140,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +23464,90.0,9.0,9.0,10.0,10.0,9.0,9.0,59,3.54 +1980,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.17 +69189,100.0,8.0,8.0,10.0,8.0,10.0,10.0,1,0.06 +71931,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.19 +26622,93.0,9.0,9.0,7.0,9.0,9.0,9.0,3,0.18 +62008,96.0,10.0,10.0,10.0,10.0,10.0,9.0,10,0.67 +28041,100.0,10.0,9.0,10.0,9.0,10.0,10.0,4,0.24 +27610,93.0,9.0,10.0,10.0,10.0,9.0,9.0,4,0.24 +63434,100.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.13 +48363,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.12 +17198,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.73 +5460,,,,,,,,0, +56961,87.0,10.0,8.0,10.0,10.0,9.0,9.0,4,0.24 +67273,100.0,10.0,10.0,10.0,10.0,10.0,10.0,21,1.35 +60474,95.0,10.0,10.0,10.0,10.0,9.0,10.0,23,1.4 +44066,20.0,2.0,2.0,2.0,2.0,2.0,2.0,1,0.07 +68137,100.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.4 +26603,,,,,,,,0, +32041,,,,,,,,0, +10777,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.62 +27648,91.0,9.0,9.0,10.0,10.0,10.0,9.0,13,0.82 +67782,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.2 +5037,95.0,10.0,8.0,10.0,10.0,9.0,10.0,13,0.8 +6342,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +63658,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.85 +51846,,,,,,,,0, +31298,100.0,8.0,10.0,10.0,10.0,9.0,9.0,2,0.12 +23502,80.0,8.0,6.0,10.0,10.0,10.0,9.0,5,0.3 +50822,,,,,,,,0, +37601,99.0,10.0,10.0,10.0,10.0,10.0,9.0,18,1.09 +71649,86.0,9.0,9.0,9.0,9.0,9.0,9.0,51,3.1 +20148,87.0,10.0,9.0,10.0,10.0,10.0,9.0,55,3.33 +73191,78.0,8.0,8.0,9.0,9.0,9.0,8.0,71,4.31 +26829,84.0,9.0,8.0,9.0,9.0,9.0,8.0,60,3.85 +21942,79.0,8.0,8.0,9.0,9.0,9.0,8.0,55,3.31 +11659,,,,,,,,0, +17550,97.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.85 +34596,,,,,,,,0, +39921,98.0,10.0,10.0,10.0,10.0,9.0,10.0,11,0.7 +62530,96.0,10.0,10.0,10.0,10.0,10.0,10.0,30,1.88 +42232,98.0,10.0,10.0,10.0,10.0,10.0,10.0,56,3.42 +28868,100.0,10.0,10.0,8.0,10.0,10.0,8.0,1,0.07 +54532,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.13 +39327,80.0,6.0,4.0,10.0,10.0,10.0,10.0,1,0.06 +23743,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.67 +28832,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +33803,40.0,6.0,6.0,5.0,4.0,6.0,5.0,2,0.12 +19911,,,,,,,,1,0.08 +48224,100.0,10.0,10.0,10.0,10.0,10.0,10.0,30,2.05 +27964,,,,,,,,0, +14898,94.0,10.0,9.0,9.0,9.0,9.0,10.0,26,1.59 +75799,96.0,10.0,9.0,10.0,10.0,10.0,9.0,9,0.76 +3791,96.0,9.0,9.0,10.0,10.0,8.0,8.0,5,0.31 +14066,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +54817,,,,,,,,0, +50871,98.0,10.0,10.0,10.0,10.0,9.0,9.0,10,0.61 +74604,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.13 +33137,,,,,,,,0, +33184,90.0,9.0,9.0,10.0,10.0,10.0,9.0,6,0.37 +72867,90.0,9.0,9.0,10.0,10.0,9.0,9.0,63,3.85 +73288,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.77 +14284,85.0,9.0,8.0,9.0,10.0,9.0,9.0,63,3.81 +70499,80.0,8.0,8.0,6.0,8.0,10.0,8.0,1,0.06 +70808,100.0,10.0,10.0,10.0,9.0,10.0,10.0,3,0.2 +70901,82.0,9.0,8.0,9.0,9.0,9.0,9.0,40,2.41 +21835,,,,,,,,0, +10276,,,,,,,,0, +1743,60.0,4.0,4.0,4.0,4.0,4.0,4.0,1,0.1 +13008,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.5 +729,88.0,9.0,7.0,9.0,9.0,10.0,9.0,8,0.49 +12533,,,,,,,,0, +2318,,,,,,,,0, +71417,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.26 +40680,100.0,10.0,10.0,10.0,10.0,10.0,10.0,16,0.98 +40391,95.0,10.0,10.0,8.0,8.0,10.0,9.0,4,1.79 +5416,75.0,8.0,9.0,9.0,9.0,9.0,9.0,4,0.28 +18100,84.0,9.0,8.0,10.0,10.0,10.0,9.0,6,0.37 +47056,,,,,,,,0, +35289,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.32 +10185,,,,,,,,0, +7585,78.0,9.0,8.0,9.0,9.0,9.0,8.0,66,4.07 +41196,93.0,10.0,9.0,10.0,10.0,10.0,9.0,28,1.83 +49411,96.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.37 +50791,96.0,9.0,9.0,10.0,10.0,10.0,10.0,5,0.31 +63537,,,,,,,,0, +28686,85.0,9.0,9.0,10.0,9.0,9.0,9.0,59,3.55 +9885,93.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.19 +24302,,,,,,,,0, +1521,84.0,8.0,9.0,10.0,10.0,10.0,8.0,11,0.73 +73099,98.0,10.0,10.0,10.0,10.0,10.0,10.0,86,5.35 +11426,,,,,,,,0, +58292,91.0,9.0,8.0,10.0,10.0,9.0,9.0,7,0.43 +56722,85.0,9.0,9.0,9.0,8.0,10.0,8.0,4,0.25 +20259,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.13 +76410,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.13 +47115,100.0,10.0,4.0,10.0,10.0,10.0,10.0,2,0.12 +35691,,,,,,,,0, +58695,,,,,,,,0, +15707,97.0,10.0,10.0,9.0,10.0,10.0,9.0,7,0.44 +70145,95.0,9.0,10.0,10.0,9.0,10.0,10.0,4,0.26 +29427,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.14 +44442,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.44 +56346,93.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.92 +74774,88.0,9.0,8.0,10.0,10.0,10.0,9.0,6,0.37 +2696,100.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.24 +22825,,,,,,,,0, +20751,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.08 +1584,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +31389,88.0,9.0,10.0,9.0,10.0,10.0,10.0,5,0.33 +31189,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.12 +72443,,,,,,,,0, +22213,,,,,,,,0, +40523,98.0,10.0,10.0,10.0,10.0,10.0,10.0,24,1.51 +65472,80.0,9.0,9.0,9.0,9.0,10.0,9.0,3,0.18 +23103,94.0,10.0,9.0,10.0,10.0,10.0,10.0,7,0.42 +76999,87.0,9.0,9.0,9.0,9.0,10.0,9.0,47,2.94 +14322,100.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.14 +25186,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.07 +24805,93.0,9.0,9.0,9.0,9.0,10.0,9.0,19,1.29 +14459,90.0,9.0,8.0,10.0,10.0,10.0,9.0,4,0.24 +75002,91.0,9.0,9.0,9.0,9.0,10.0,9.0,16,1.0 +24093,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.25 +38293,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.58 +31777,98.0,10.0,10.0,10.0,10.0,10.0,10.0,35,2.32 +60321,87.0,9.0,9.0,9.0,9.0,9.0,9.0,14,0.98 +22616,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.13 +39967,,,,,,,,0, +60794,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +45449,,,,,,,,0, +59373,,,,,,,,0, +41657,,,,,,,,0, +66575,,,,,,,,0, +50029,100.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.25 +249,91.0,10.0,9.0,9.0,10.0,9.0,9.0,9,0.56 +71060,98.0,10.0,10.0,10.0,10.0,10.0,9.0,23,1.64 +58527,,,,,,,,0, +45917,,,,,,,,0, +55683,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +6613,95.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.55 +24709,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.13 +41916,93.0,10.0,9.0,9.0,10.0,9.0,9.0,15,0.96 +8772,100.0,10.0,8.0,10.0,10.0,10.0,9.0,3,0.18 +73734,99.0,10.0,10.0,10.0,10.0,10.0,10.0,45,2.78 +52390,94.0,10.0,9.0,10.0,9.0,10.0,9.0,27,1.74 +49793,90.0,10.0,9.0,9.0,10.0,10.0,8.0,4,0.25 +73691,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.33 +75084,97.0,10.0,9.0,9.0,10.0,9.0,10.0,15,1.04 +66980,,,,,,,,0, +37485,82.0,9.0,8.0,8.0,8.0,8.0,9.0,32,1.94 +38375,,,,,,,,1,0.06 +5317,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.39 +48514,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.62 +69739,,,,,,,,0, +66165,,,,,,,,0, +44673,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +16322,98.0,10.0,10.0,10.0,10.0,9.0,9.0,24,1.63 +57638,,,,,,,,0, +74086,100.0,10.0,10.0,10.0,9.0,8.0,9.0,5,0.32 +52792,,,,,,,,0, +61758,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +58620,95.0,9.0,8.0,10.0,10.0,10.0,10.0,4,0.25 +70852,,,,,,,,0, +37863,88.0,10.0,9.0,10.0,10.0,9.0,9.0,8,0.54 +54486,,,,,,,,0, +46516,97.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.55 +8775,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.37 +33407,97.0,10.0,10.0,10.0,10.0,9.0,10.0,16,1.43 +31781,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.08 +42588,98.0,10.0,10.0,10.0,10.0,10.0,9.0,18,1.12 +31678,99.0,10.0,10.0,10.0,10.0,9.0,10.0,17,1.09 +76762,98.0,10.0,10.0,10.0,10.0,10.0,10.0,18,2.48 +76355,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.19 +69859,,,,,,,,0, +56317,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,1.03 +36952,96.0,9.0,9.0,10.0,10.0,9.0,9.0,27,1.66 +31030,90.0,10.0,10.0,10.0,9.0,9.0,9.0,31,1.91 +45916,98.0,10.0,10.0,10.0,10.0,10.0,9.0,17,1.1 +40055,65.0,7.0,8.0,9.0,10.0,9.0,7.0,4,0.4 +20220,,,,,,,,0, +12459,77.0,9.0,7.0,10.0,9.0,9.0,9.0,14,0.9 +1932,100.0,10.0,10.0,,10.0,,,4,0.24 +70255,96.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.56 +62532,99.0,10.0,10.0,10.0,10.0,10.0,10.0,18,2.35 +9611,96.0,10.0,10.0,10.0,10.0,10.0,10.0,17,1.04 +25078,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.19 +53159,88.0,9.0,9.0,9.0,9.0,10.0,9.0,39,2.39 +42208,81.0,9.0,8.0,10.0,10.0,9.0,9.0,29,4.75 +31737,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.12 +40347,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.07 +38065,,,,,,,,0, +8938,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.19 +519,91.0,9.0,9.0,10.0,9.0,9.0,9.0,39,2.34 +21509,100.0,10.0,10.0,10.0,10.0,8.0,9.0,4,0.25 +71599,90.0,10.0,8.0,8.0,9.0,10.0,10.0,6,0.36 +12664,99.0,10.0,10.0,10.0,10.0,10.0,10.0,31,1.93 +57388,91.0,9.0,9.0,10.0,9.0,10.0,9.0,36,2.37 +28647,80.0,9.0,8.0,9.0,9.0,10.0,8.0,7,0.44 +26645,94.0,9.0,9.0,9.0,10.0,9.0,9.0,17,1.09 +29344,80.0,9.0,9.0,7.0,6.0,9.0,8.0,2,0.12 +60154,,,,,,,,1,0.13 +42050,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.4 +45108,,,,,,,,0, +37890,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.14 +35770,88.0,9.0,10.0,10.0,10.0,10.0,9.0,18,1.19 +71124,88.0,10.0,10.0,10.0,9.0,10.0,9.0,12,0.87 +23209,,,,,,,,0, +9170,95.0,10.0,10.0,10.0,10.0,10.0,10.0,35,2.17 +5573,,,,,,,,0, +46348,92.0,10.0,10.0,10.0,10.0,9.0,9.0,58,3.86 +14197,85.0,9.0,9.0,10.0,10.0,10.0,9.0,25,1.56 +13953,93.0,10.0,10.0,10.0,9.0,10.0,9.0,9,2.05 +42568,100.0,10.0,10.0,10.0,9.0,10.0,9.0,10,0.63 +66481,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.24 +12833,,,,,,,,0, +33987,85.0,9.0,8.0,9.0,10.0,9.0,9.0,4,0.73 +558,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +64188,97.0,10.0,10.0,10.0,10.0,10.0,9.0,6,1.24 +74314,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.3 +71263,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.12 +55748,80.0,4.0,4.0,10.0,10.0,10.0,6.0,1,0.06 +1924,100.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.37 +43914,100.0,10.0,8.0,10.0,10.0,8.0,10.0,1,1.0 +40133,100.0,10.0,10.0,10.0,10.0,9.0,10.0,9,0.55 +2342,,,,,,,,0, +41557,,,,,,,,0, +54038,100.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.48 +5648,96.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.79 +39285,,,,,,,,0, +31219,89.0,9.0,9.0,9.0,10.0,9.0,9.0,55,3.47 +45629,90.0,9.0,10.0,9.0,9.0,10.0,10.0,2,0.12 +46361,60.0,10.0,10.0,5.0,10.0,10.0,10.0,2,0.13 +15518,90.0,9.0,8.0,10.0,10.0,9.0,9.0,26,1.88 +10961,93.0,9.0,8.0,10.0,9.0,10.0,9.0,3,0.33 +17800,20.0,2.0,2.0,6.0,6.0,6.0,2.0,1,0.06 +20458,,,,,,,,0, +74566,,,,,,,,0, +33868,92.0,9.0,9.0,9.0,10.0,9.0,9.0,12,0.75 +64898,,,,,,,,0, +67478,97.0,10.0,10.0,10.0,10.0,9.0,9.0,6,3.75 +77036,90.0,9.0,9.0,9.0,10.0,9.0,9.0,2,0.26 +34006,67.0,8.0,8.0,9.0,8.0,9.0,9.0,3,0.18 +11743,96.0,10.0,10.0,10.0,10.0,9.0,9.0,29,1.88 +4623,93.0,10.0,10.0,10.0,10.0,10.0,9.0,8,0.52 +43359,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.25 +24630,,,,,,,,0, +41743,,,,,,,,0, +35041,97.0,10.0,9.0,10.0,10.0,10.0,10.0,101,6.17 +22840,,,,,,,,0, +43984,,,,,,,,0, +30260,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,1.52 +55860,60.0,8.0,6.0,10.0,8.0,8.0,6.0,1,0.06 +10110,99.0,10.0,10.0,10.0,10.0,10.0,10.0,34,2.09 +29904,85.0,10.0,9.0,10.0,10.0,10.0,9.0,5,0.31 +53938,,,,,,,,0, +40661,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.07 +53532,80.0,9.0,7.0,10.0,10.0,8.0,7.0,2,0.33 +41221,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.24 +64202,76.0,8.0,6.0,10.0,10.0,8.0,8.0,7,0.44 +23173,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.07 +57656,,,,,,,,0, +60631,,,,,,,,0, +68978,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.08 +25320,92.0,10.0,10.0,10.0,10.0,9.0,9.0,31,2.08 +49117,,,,,,,,0, +18969,93.0,10.0,9.0,10.0,10.0,10.0,9.0,8,0.54 +41971,92.0,10.0,8.0,10.0,10.0,8.0,9.0,89,5.56 +76347,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.31 +68994,100.0,10.0,8.0,9.0,9.0,10.0,9.0,2,0.12 +48232,99.0,10.0,9.0,10.0,10.0,10.0,10.0,22,1.43 +37089,74.0,7.0,7.0,7.0,7.0,8.0,8.0,19,1.21 +26865,,,,,,,,0, +30271,,,,,,,,0, +6826,93.0,10.0,10.0,9.0,10.0,9.0,10.0,4,0.25 +52558,,,,,,,,0, +60254,,,,,,,,0, +39912,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.13 +66577,80.0,10.0,8.0,10.0,10.0,9.0,9.0,3,0.22 +13445,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.17 +43058,60.0,7.0,8.0,9.0,8.0,10.0,7.0,2,0.22 +40158,,,,,,,,0, +46304,87.0,9.0,9.0,10.0,10.0,10.0,9.0,3,0.19 +31521,90.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.37 +2278,90.0,9.0,9.0,10.0,10.0,10.0,9.0,8,0.61 +21215,72.0,8.0,8.0,9.0,6.0,10.0,7.0,5,0.33 +46292,91.0,9.0,9.0,9.0,10.0,10.0,9.0,11,0.73 +54441,90.0,9.0,8.0,9.0,9.0,10.0,8.0,4,0.52 +11731,96.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.31 +17833,67.0,7.0,7.0,9.0,9.0,9.0,6.0,3,0.2 +43386,,,,,,,,0, +76208,84.0,9.0,9.0,9.0,10.0,10.0,9.0,5,0.35 +62506,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +11197,,,,,,,,0, +22307,95.0,10.0,10.0,10.0,10.0,9.0,9.0,13,0.81 +18236,86.0,9.0,10.0,9.0,9.0,9.0,9.0,13,0.84 +43903,80.0,6.0,4.0,10.0,10.0,8.0,8.0,1,0.07 +12863,100.0,10.0,10.0,10.0,10.0,10.0,10.0,80,5.1 +60207,98.0,10.0,10.0,10.0,10.0,10.0,10.0,26,1.81 +47226,100.0,10.0,9.0,9.0,10.0,10.0,10.0,2,0.18 +12982,70.0,9.0,10.0,10.0,8.0,10.0,7.0,2,0.32 +74921,81.0,9.0,7.0,9.0,10.0,10.0,8.0,58,3.56 +30359,96.0,10.0,10.0,10.0,10.0,8.0,9.0,9,0.55 +51299,96.0,10.0,10.0,10.0,10.0,9.0,10.0,20,1.21 +74043,86.0,9.0,9.0,8.0,8.0,10.0,8.0,14,0.9 +24869,100.0,10.0,8.0,10.0,10.0,8.0,10.0,2,0.14 +75081,80.0,9.0,9.0,10.0,9.0,10.0,8.0,14,0.89 +73085,97.0,10.0,10.0,10.0,10.0,9.0,9.0,15,0.94 +645,89.0,9.0,10.0,10.0,10.0,10.0,9.0,7,1.01 +30768,95.0,10.0,10.0,10.0,10.0,9.0,10.0,20,1.38 +39570,99.0,10.0,10.0,10.0,10.0,10.0,10.0,34,3.38 +70287,,,,,,,,0, +33539,,,,,,,,0, +74365,96.0,10.0,10.0,10.0,10.0,9.0,10.0,16,0.98 +50323,85.0,10.0,7.0,10.0,10.0,9.0,8.0,5,0.32 +54699,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.14 +25656,100.0,10.0,10.0,10.0,10.0,9.0,10.0,10,0.66 +28082,,,,,,,,0, +63000,,,,,,,,0, +3872,90.0,10.0,9.0,9.0,10.0,9.0,10.0,4,0.25 +11892,80.0,9.0,9.0,9.0,9.0,8.0,8.0,10,0.62 +35013,,,,,,,,0, +956,,,,,,,,0, +15663,60.0,10.0,10.0,10.0,2.0,10.0,10.0,2,0.13 +58577,100.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.26 +27216,,,,,,,,0, +58053,94.0,10.0,10.0,10.0,10.0,10.0,9.0,7,0.44 +38199,98.0,10.0,10.0,10.0,10.0,10.0,10.0,51,3.19 +55601,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.31 +38528,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +11350,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.65 +46779,,,,,,,,0, +47694,,,,,,,,0, +72199,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +72027,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.11 +26762,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.07 +9315,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.08 +75759,88.0,10.0,8.0,10.0,10.0,10.0,10.0,5,0.31 +60781,,,,,,,,0, +17308,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.37 +62371,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +944,100.0,10.0,10.0,10.0,10.0,10.0,9.0,9,0.56 +74934,,,,,,,,0, +20032,93.0,10.0,9.0,10.0,10.0,9.0,10.0,6,0.38 +12294,100.0,10.0,7.0,10.0,9.0,10.0,9.0,3,0.19 +19261,92.0,10.0,10.0,10.0,10.0,10.0,9.0,27,1.75 +18258,94.0,9.0,10.0,10.0,10.0,10.0,9.0,57,3.48 +20593,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.19 +57821,74.0,8.0,8.0,9.0,8.0,8.0,8.0,39,2.45 +73169,93.0,9.0,10.0,9.0,9.0,10.0,10.0,9,0.75 +50209,77.0,9.0,8.0,9.0,9.0,8.0,8.0,76,4.59 +69142,,,,,,,,0, +44096,91.0,9.0,9.0,10.0,10.0,10.0,9.0,7,0.45 +47908,100.0,10.0,9.0,8.0,10.0,10.0,8.0,2,0.14 +34910,93.0,9.0,9.0,10.0,10.0,8.0,9.0,3,0.2 +10693,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.34 +62185,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.13 +62429,,,,,,,,0, +32110,98.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.68 +40243,92.0,10.0,9.0,10.0,10.0,10.0,9.0,33,2.18 +21631,,,,,,,,0, +23448,,,,,,,,0, +69430,,,,,,,,0, +7941,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.12 +28783,84.0,9.0,8.0,9.0,9.0,9.0,9.0,5,0.51 +6155,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.06 +19611,95.0,9.0,10.0,10.0,10.0,9.0,9.0,15,1.0 +30669,,,,,,,,0, +44728,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.32 +12426,89.0,9.0,9.0,9.0,9.0,9.0,9.0,25,1.54 +9041,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.14 +60392,,,,,,,,1,0.17 +56365,99.0,10.0,10.0,10.0,10.0,10.0,10.0,38,2.52 +51865,76.0,8.0,9.0,8.0,9.0,8.0,7.0,10,0.62 +45965,,,,,,,,0, +47029,90.0,9.0,10.0,10.0,10.0,9.0,9.0,4,0.25 +2314,,,,,,,,0, +46414,90.0,10.0,9.0,9.0,10.0,10.0,9.0,10,0.79 +76592,80.0,10.0,4.0,6.0,10.0,10.0,8.0,1,0.14 +49980,93.0,9.0,8.0,7.0,9.0,9.0,9.0,3,0.21 +7475,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.41 +66031,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.79 +22353,91.0,9.0,9.0,10.0,9.0,8.0,9.0,26,1.62 +11893,80.0,8.0,8.0,9.0,10.0,9.0,8.0,2,0.22 +8453,,,,,,,,0, +46062,85.0,9.0,10.0,10.0,10.0,10.0,10.0,4,0.26 +10969,80.0,8.0,6.0,8.0,6.0,10.0,8.0,1,0.06 +28934,,,,,,,,0, +22419,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.27 +8882,100.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.23 +44108,,,,,,,,0, +22019,93.0,10.0,10.0,10.0,9.0,9.0,9.0,6,0.44 +63424,,,,,,,,0, +74923,93.0,10.0,10.0,10.0,10.0,9.0,9.0,8,0.55 +67659,90.0,10.0,10.0,10.0,9.0,10.0,9.0,2,0.13 +9376,86.0,9.0,9.0,9.0,9.0,9.0,9.0,7,0.45 +69964,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.19 +34967,92.0,9.0,9.0,9.0,10.0,9.0,10.0,13,0.86 +67850,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.19 +51046,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.09 +46770,80.0,10.0,10.0,10.0,10.0,8.0,8.0,1,1.0 +29449,95.0,9.0,10.0,10.0,10.0,9.0,9.0,8,0.59 +25886,,,,,,,,0, +22265,,,,,,,,0, +14412,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.2 +12676,,,,,,,,0, +9130,,,,,,,,0, +21473,92.0,10.0,9.0,10.0,10.0,10.0,10.0,6,0.38 +33584,,,,,,,,0, +19897,89.0,9.0,9.0,9.0,9.0,9.0,9.0,11,0.88 +3187,,,,,,,,0, +13882,80.0,8.0,8.0,8.0,8.0,8.0,8.0,1,0.34 +18925,80.0,10.0,8.0,10.0,8.0,8.0,8.0,1,0.06 +31062,,,,,,,,0, +66715,82.0,9.0,8.0,9.0,9.0,10.0,8.0,63,3.85 +1593,99.0,10.0,10.0,10.0,10.0,10.0,10.0,51,3.14 +9812,97.0,10.0,10.0,10.0,10.0,9.0,10.0,28,1.75 +38232,80.0,8.0,8.0,6.0,10.0,8.0,10.0,2,0.13 +49952,,,,,,,,0, +22373,98.0,10.0,10.0,10.0,10.0,10.0,9.0,57,3.48 +32284,87.0,9.0,9.0,9.0,9.0,10.0,9.0,18,1.12 +25686,87.0,9.0,8.0,10.0,10.0,10.0,8.0,9,0.57 +45389,,,,,,,,1,0.06 +31537,96.0,10.0,9.0,10.0,10.0,10.0,10.0,21,1.48 +7611,91.0,9.0,9.0,9.0,9.0,9.0,9.0,17,1.12 +1900,,,,,,,,1,0.07 +56028,96.0,10.0,9.0,9.0,10.0,10.0,9.0,49,3.07 +4005,92.0,10.0,10.0,9.0,9.0,10.0,10.0,6,0.38 +43322,89.0,9.0,9.0,10.0,10.0,10.0,9.0,30,1.87 +4491,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.76 +52440,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.22 +55489,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +9874,100.0,10.0,10.0,10.0,10.0,10.0,10.0,30,1.86 +55955,,,,,,,,0, +40175,95.0,10.0,9.0,10.0,10.0,10.0,9.0,29,1.78 +26206,90.0,9.0,9.0,10.0,10.0,9.0,9.0,90,5.53 +71725,90.0,9.0,9.0,10.0,10.0,9.0,9.0,27,1.67 +69697,,,,,,,,0, +25413,86.0,9.0,9.0,10.0,10.0,10.0,9.0,18,1.1 +34105,100.0,10.0,10.0,10.0,10.0,8.0,10.0,2,0.12 +73996,80.0,8.0,8.0,10.0,10.0,7.0,8.0,4,0.24 +54890,,,,,,,,0, +36401,,,,,,,,1, +50237,96.0,10.0,10.0,10.0,10.0,9.0,10.0,57,3.64 +41569,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.46 +27430,,,,,,,,1,0.11 +45869,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.3 +76590,90.0,10.0,8.0,10.0,10.0,8.0,8.0,2,0.13 +49087,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +65989,100.0,10.0,10.0,10.0,10.0,9.0,9.0,4,0.49 +70972,,,,,,,,0, +38825,100.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.28 +39479,,,,,,,,0, +8377,97.0,10.0,10.0,10.0,10.0,9.0,10.0,90,5.49 +50030,90.0,9.0,9.0,10.0,9.0,10.0,9.0,52,3.21 +14606,85.0,10.0,8.0,10.0,10.0,10.0,10.0,5,0.31 +20453,86.0,9.0,8.0,9.0,10.0,10.0,9.0,70,4.52 +26180,83.0,10.0,8.0,10.0,10.0,9.0,9.0,9,0.57 +31840,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +49046,,,,,,,,0, +38261,95.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.34 +14247,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +36273,96.0,10.0,9.0,10.0,10.0,9.0,9.0,9,0.62 +20672,,,,,,,,0, +37646,100.0,10.0,10.0,10.0,10.0,7.0,10.0,3,0.21 +57896,,,,,,,,0, +24378,95.0,9.0,9.0,9.0,9.0,9.0,9.0,12,0.76 +14613,90.0,9.0,8.0,10.0,10.0,10.0,10.0,2,0.13 +15511,88.0,10.0,9.0,9.0,10.0,9.0,9.0,5,0.33 +19556,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.31 +45208,90.0,10.0,10.0,10.0,9.0,10.0,10.0,2,0.4 +39813,96.0,10.0,10.0,10.0,10.0,10.0,10.0,27,1.66 +13721,,,,,,,,0, +9665,,,,,,,,1, +30542,100.0,10.0,10.0,9.0,10.0,9.0,10.0,6,0.47 +75248,,,,,,,,0, +42927,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.36 +6583,,,,,,,,0, +67463,98.0,10.0,10.0,10.0,10.0,10.0,9.0,11,0.74 +47242,100.0,9.0,9.0,10.0,10.0,8.0,9.0,2,0.15 +55006,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.16 +4492,86.0,9.0,8.0,9.0,10.0,10.0,9.0,19,1.86 +75405,,,,,,,,0, +64404,,,,,,,,0, +19331,,,,,,,,0, +15732,93.0,10.0,9.0,10.0,10.0,9.0,8.0,7,0.84 +49719,,,,,,,,0, +12681,91.0,10.0,9.0,10.0,10.0,10.0,9.0,70,4.39 +52975,80.0,9.0,8.0,10.0,9.0,9.0,8.0,6,0.4 +52762,100.0,10.0,10.0,10.0,10.0,10.0,8.0,2,0.28 +3972,80.0,8.0,8.0,10.0,10.0,10.0,10.0,2,0.12 +75578,94.0,10.0,9.0,10.0,10.0,9.0,9.0,8,0.5 +11790,99.0,10.0,10.0,10.0,10.0,10.0,10.0,29,1.95 +9946,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.3 +19411,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +9246,,,,,,,,0, +37379,87.0,9.0,9.0,9.0,10.0,10.0,10.0,3,0.73 +28150,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.52 +44031,,,,,,,,0, +69847,96.0,10.0,9.0,10.0,10.0,10.0,10.0,9,0.56 +41538,93.0,10.0,9.0,9.0,10.0,10.0,9.0,10,0.62 +5063,,,,,,,,0, +401,95.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.31 +11658,,,,,,,,0, +41009,95.0,10.0,10.0,9.0,10.0,10.0,9.0,22,1.52 +74575,,,,,,,,0, +70716,99.0,10.0,10.0,10.0,10.0,9.0,10.0,41,2.56 +51906,80.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.07 +53829,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.33 +4204,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.79 +18073,,,,,,,,0, +50201,,,,,,,,0, +59899,,,,,,,,0, +57574,73.0,7.0,8.0,8.0,9.0,10.0,8.0,12,0.74 +59377,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.65 +28887,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.14 +7029,,,,,,,,0, +30927,100.0,10.0,8.0,8.0,8.0,8.0,8.0,1,0.06 +71522,,,,,,,,0, +20365,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.59 +74625,,,,,,,,0, +17154,97.0,10.0,10.0,10.0,10.0,9.0,10.0,28,1.77 +6362,93.0,10.0,9.0,10.0,10.0,10.0,10.0,191,11.67 +73848,99.0,10.0,10.0,10.0,10.0,10.0,10.0,40,2.73 +22815,96.0,10.0,9.0,10.0,10.0,10.0,9.0,34,2.12 +18692,,,,,,,,0, +69974,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +71829,95.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.67 +47734,,,,,,,,0, +37022,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +24576,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.42 +74609,97.0,10.0,9.0,9.0,10.0,9.0,9.0,21,1.31 +19734,96.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.71 +21760,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +5170,83.0,9.0,9.0,9.0,9.0,10.0,8.0,32,2.13 +67670,98.0,10.0,10.0,10.0,10.0,10.0,10.0,18,1.15 +29668,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.61 +37469,80.0,8.0,8.0,8.0,8.0,8.0,8.0,2,0.13 +57944,99.0,10.0,10.0,10.0,10.0,10.0,10.0,26,1.71 +58218,91.0,9.0,9.0,10.0,10.0,9.0,9.0,51,3.15 +65923,100.0,10.0,10.0,9.0,10.0,10.0,9.0,6,0.48 +44231,93.0,10.0,10.0,10.0,9.0,10.0,10.0,4,0.25 +27312,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.49 +6695,,,,,,,,0, +76558,,,,,,,,0, +24653,88.0,9.0,9.0,9.0,10.0,9.0,9.0,54,3.33 +64542,87.0,10.0,8.0,10.0,10.0,10.0,9.0,11,0.67 +10060,88.0,10.0,9.0,10.0,9.0,9.0,9.0,55,3.45 +52832,88.0,9.0,9.0,10.0,10.0,9.0,9.0,66,4.07 +51694,89.0,9.0,9.0,10.0,9.0,9.0,9.0,41,2.51 +69938,96.0,10.0,9.0,10.0,10.0,10.0,10.0,34,2.13 +58371,92.0,9.0,9.0,10.0,10.0,9.0,9.0,20,1.24 +69300,,,,,,,,0, +53096,87.0,9.0,9.0,10.0,10.0,9.0,9.0,40,2.71 +25934,60.0,6.0,6.0,10.0,10.0,8.0,6.0,1,0.06 +38843,,,,,,,,0, +59050,96.0,10.0,9.0,10.0,10.0,9.0,10.0,5,0.31 +20033,,,,,,,,0, +16221,98.0,10.0,9.0,10.0,10.0,9.0,9.0,11,1.69 +20285,90.0,9.0,9.0,10.0,10.0,9.0,9.0,64,3.91 +19562,89.0,9.0,9.0,10.0,10.0,9.0,9.0,48,3.04 +53841,100.0,10.0,10.0,10.0,10.0,10.0,9.0,9,0.55 +44074,88.0,9.0,9.0,9.0,9.0,9.0,9.0,13,0.81 +11292,93.0,10.0,9.0,10.0,9.0,9.0,10.0,33,2.3 +63705,,,,,,,,1,0.07 +9606,84.0,9.0,8.0,10.0,9.0,10.0,8.0,5,0.38 +65015,,,,,,,,0, +6298,95.0,10.0,9.0,10.0,10.0,10.0,10.0,9,0.56 +37028,99.0,10.0,10.0,10.0,10.0,10.0,9.0,20,1.26 +53929,96.0,10.0,10.0,10.0,10.0,9.0,9.0,60,3.68 +647,98.0,10.0,9.0,10.0,10.0,9.0,9.0,13,0.89 +31730,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.25 +3917,94.0,10.0,9.0,10.0,9.0,10.0,9.0,14,0.88 +29604,,,,,,,,0, +11079,94.0,10.0,10.0,10.0,10.0,9.0,9.0,51,3.27 +29462,95.0,10.0,10.0,10.0,10.0,10.0,9.0,23,1.51 +5821,97.0,10.0,10.0,10.0,10.0,10.0,10.0,19,10.18 +75407,97.0,10.0,9.0,10.0,10.0,9.0,10.0,24,1.58 +6729,97.0,10.0,9.0,10.0,10.0,9.0,10.0,65,4.0 +38876,87.0,9.0,9.0,10.0,10.0,7.0,9.0,3,0.2 +7662,100.0,10.0,10.0,8.0,10.0,10.0,10.0,1,0.06 +55119,,,,,,,,0, +20562,90.0,9.0,7.0,8.0,9.0,10.0,8.0,8,0.55 +72258,95.0,10.0,9.0,10.0,10.0,10.0,9.0,26,1.87 +50108,83.0,9.0,8.0,9.0,9.0,9.0,9.0,47,2.9 +2253,,,,,,,,0, +76399,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.13 +67962,90.0,9.0,9.0,9.0,9.0,9.0,9.0,2,0.17 +57788,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.28 +61347,98.0,10.0,9.0,10.0,10.0,10.0,9.0,32,2.19 +48813,80.0,10.0,8.0,8.0,8.0,10.0,10.0,1,0.06 +51060,80.0,9.0,8.0,9.0,9.0,8.0,7.0,8,0.84 +68160,80.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.06 +21804,99.0,10.0,10.0,10.0,10.0,10.0,10.0,19,1.24 +10458,80.0,10.0,8.0,10.0,10.0,8.0,10.0,1,0.06 +25173,100.0,10.0,10.0,9.0,10.0,9.0,10.0,2,0.14 +41653,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.17 +76945,,,,,,,,0, +23777,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +62152,100.0,10.0,10.0,9.0,10.0,10.0,10.0,3,0.2 +21912,100.0,10.0,8.0,10.0,10.0,10.0,8.0,2,0.16 +10271,94.0,9.0,10.0,10.0,10.0,9.0,9.0,8,0.5 +26763,,,,,,,,0, +73097,97.0,10.0,9.0,10.0,10.0,9.0,10.0,7,0.43 +54484,93.0,10.0,9.0,10.0,10.0,10.0,9.0,52,3.33 +69045,80.0,8.0,8.0,8.0,8.0,10.0,10.0,5,0.3 +63502,100.0,9.0,9.0,10.0,10.0,9.0,10.0,4,0.25 +51927,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.66 +66344,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.19 +40545,94.0,10.0,10.0,10.0,10.0,9.0,10.0,29,5.4 +14063,87.0,9.0,9.0,9.0,9.0,10.0,9.0,108,6.56 +53642,98.0,10.0,10.0,10.0,10.0,10.0,9.0,22,1.76 +10718,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.19 +62206,70.0,9.0,6.0,6.0,9.0,10.0,8.0,2,0.16 +35651,73.0,7.0,7.0,7.0,7.0,8.0,7.0,3,0.5 +55889,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.22 +39775,100.0,10.0,10.0,10.0,10.0,8.0,10.0,3,0.26 +4752,78.0,9.0,9.0,10.0,9.0,10.0,8.0,9,0.56 +68619,76.0,8.0,8.0,9.0,8.0,9.0,7.0,9,0.62 +27406,75.0,7.0,8.0,9.0,9.0,10.0,8.0,21,1.43 +26386,98.0,10.0,10.0,10.0,10.0,10.0,9.0,29,1.9 +36663,99.0,10.0,10.0,10.0,10.0,9.0,10.0,16,1.06 +74638,90.0,9.0,9.0,10.0,10.0,10.0,10.0,4,0.27 +26931,92.0,10.0,8.0,10.0,10.0,10.0,10.0,21,1.31 +15191,,,,,,,,0, +49573,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.19 +61075,97.0,10.0,10.0,10.0,10.0,10.0,9.0,30,1.88 +26012,,,,,,,,0, +65792,98.0,10.0,10.0,10.0,10.0,10.0,10.0,38,2.52 +27789,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.19 +25394,99.0,10.0,10.0,10.0,10.0,10.0,10.0,19,1.29 +55537,92.0,9.0,9.0,10.0,10.0,9.0,9.0,70,4.36 +2744,96.0,10.0,10.0,10.0,10.0,10.0,10.0,37,2.3 +47146,,,,,,,,0, +64145,87.0,9.0,9.0,9.0,9.0,8.0,9.0,63,3.89 +62257,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.45 +40989,,,,,,,,0, +21731,100.0,,,,,,,1,0.06 +51143,97.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.75 +72047,100.0,10.0,10.0,10.0,10.0,10.0,10.0,18,1.13 +15288,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.27 +15583,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +67311,80.0,8.0,10.0,,,,,1,0.06 +32862,20.0,,,,,,,1,0.06 +42736,87.0,9.0,9.0,10.0,9.0,9.0,9.0,9,0.61 +25332,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.14 +7974,70.0,9.0,8.0,8.0,6.0,8.0,7.0,3,0.21 +34651,,,,,,,,0, +59278,72.0,9.0,6.0,10.0,9.0,8.0,8.0,5,0.36 +46163,100.0,10.0,10.0,10.0,10.0,10.0,10.0,22,1.46 +50071,100.0,8.0,10.0,10.0,10.0,10.0,8.0,2,0.12 +70692,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.77 +23717,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +69986,95.0,10.0,10.0,10.0,10.0,9.0,9.0,42,2.61 +38772,,,,,,,,0, +53651,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.35 +40220,88.0,10.0,10.0,9.0,9.0,10.0,9.0,8,0.82 +17964,,,,,,,,0, +276,100.0,10.0,9.0,10.0,10.0,10.0,9.0,11,0.68 +4537,,,,,,,,0, +51355,90.0,10.0,9.0,10.0,10.0,9.0,10.0,6,0.37 +73747,97.0,9.0,10.0,10.0,10.0,10.0,9.0,7,0.63 +4464,,,,,,,,0, +65843,90.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.12 +16668,91.0,9.0,9.0,9.0,10.0,9.0,9.0,20,1.22 +9607,100.0,10.0,10.0,10.0,10.0,9.0,9.0,2,0.27 +24966,,,,,,,,0, +32285,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.37 +56087,,,,,,,,0, +46074,100.0,10.0,9.0,10.0,10.0,9.0,10.0,3,0.19 +19567,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +29929,85.0,9.0,9.0,9.0,8.0,9.0,8.0,19,1.23 +75472,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.98 +4923,70.0,9.0,10.0,10.0,10.0,10.0,8.0,2,0.12 +41057,60.0,6.0,8.0,8.0,4.0,10.0,6.0,1,0.06 +14302,99.0,10.0,10.0,9.0,10.0,10.0,9.0,22,1.66 +22907,96.0,10.0,10.0,10.0,10.0,10.0,9.0,49,3.21 +29439,100.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.37 +61375,,,,,,,,0, +41647,91.0,9.0,10.0,9.0,10.0,10.0,10.0,9,0.66 +60709,100.0,10.0,10.0,10.0,10.0,9.0,9.0,2,0.31 +14628,,,,,,,,0, +69825,98.0,10.0,10.0,10.0,10.0,10.0,10.0,30,2.09 +40321,85.0,10.0,10.0,9.0,9.0,10.0,9.0,5,0.38 +67798,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.35 +69933,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +45533,84.0,8.0,8.0,9.0,9.0,10.0,9.0,13,0.98 +8904,90.0,10.0,10.0,9.0,10.0,9.0,10.0,5,0.32 +49671,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.19 +34616,,,,,,,,0, +4661,97.0,10.0,10.0,10.0,10.0,10.0,10.0,21,1.4 +51153,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.94 +62940,85.0,9.0,9.0,9.0,9.0,9.0,9.0,8,0.49 +19717,,,,,,,,0, +48018,98.0,10.0,10.0,10.0,10.0,9.0,10.0,43,2.79 +17828,88.0,9.0,8.0,10.0,10.0,9.0,9.0,10,0.88 +33058,,,,,,,,0, +29356,,,,,,,,0, +59807,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.39 +72140,,,,,,,,0, +48451,40.0,2.0,2.0,8.0,2.0,8.0,4.0,1,0.06 +46536,85.0,9.0,9.0,9.0,10.0,10.0,9.0,4,0.65 +26739,99.0,10.0,9.0,10.0,10.0,10.0,9.0,16,1.06 +49389,,,,,,,,0, +68889,,,,,,,,0, +67650,93.0,10.0,10.0,10.0,9.0,10.0,9.0,6,0.47 +9289,96.0,9.0,10.0,10.0,10.0,10.0,9.0,26,1.71 +1746,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.06 +43667,95.0,9.0,9.0,10.0,10.0,10.0,10.0,20,1.24 +7625,97.0,9.0,9.0,10.0,10.0,9.0,9.0,22,1.37 +33330,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.39 +74579,97.0,10.0,10.0,10.0,10.0,9.0,10.0,44,2.75 +73948,,,,,,,,0, +12945,99.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.93 +57932,,,,,,,,0, +6879,93.0,10.0,10.0,10.0,10.0,10.0,9.0,14,1.13 +11443,82.0,8.0,8.0,9.0,10.0,9.0,9.0,11,0.73 +7449,90.0,10.0,9.0,10.0,9.0,9.0,9.0,9,0.69 +62463,86.0,9.0,9.0,9.0,9.0,9.0,8.0,19,1.26 +60235,94.0,10.0,10.0,10.0,10.0,9.0,10.0,41,2.69 +26030,96.0,10.0,9.0,10.0,10.0,10.0,10.0,11,0.7 +62702,98.0,10.0,10.0,10.0,10.0,10.0,10.0,44,2.7 +7863,93.0,9.0,9.0,9.0,10.0,9.0,9.0,4,0.24 +47266,97.0,10.0,10.0,10.0,10.0,9.0,10.0,16,1.39 +54850,92.0,10.0,9.0,10.0,10.0,9.0,10.0,13,0.8 +6470,93.0,9.0,9.0,10.0,10.0,10.0,9.0,8,0.64 +27226,,,,,,,,0, +52687,97.0,10.0,9.0,10.0,9.0,8.0,10.0,13,0.93 +57625,87.0,9.0,9.0,10.0,10.0,10.0,8.0,3,0.88 +19384,90.0,9.0,9.0,8.0,9.0,9.0,8.0,5,0.65 +26993,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.38 +64011,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.09 +3721,87.0,9.0,8.0,8.0,9.0,8.0,8.0,9,1.0 +38498,97.0,10.0,10.0,9.0,10.0,10.0,9.0,12,0.85 +29875,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +13660,96.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.61 +34009,,,,,,,,0, +7781,90.0,9.0,9.0,10.0,10.0,10.0,9.0,65,4.47 +14022,,,,,,,,0, +66468,100.0,10.0,10.0,10.0,10.0,9.0,10.0,42,2.6 +57576,93.0,9.0,9.0,10.0,10.0,8.0,10.0,20,1.43 +1498,90.0,10.0,8.0,8.0,10.0,10.0,10.0,3,0.18 +41285,,,,,,,,0, +21204,95.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.26 +66634,91.0,10.0,9.0,10.0,10.0,10.0,10.0,14,0.94 +8332,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.12 +21667,91.0,9.0,9.0,10.0,10.0,9.0,9.0,8,0.57 +69135,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +8349,90.0,10.0,10.0,10.0,9.0,10.0,10.0,3,0.4 +51209,,,,,,,,0, +8158,,,,,,,,1,0.07 +20756,94.0,9.0,9.0,10.0,10.0,10.0,9.0,10,0.62 +4983,,,,,,,,1,0.12 +29202,93.0,9.0,9.0,8.0,9.0,9.0,9.0,10,0.7 +63626,,,,,,,,0, +55269,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +28905,100.0,10.0,10.0,10.0,10.0,10.0,10.0,87,5.58 +53463,,,,,,,,0, +59812,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.56 +60485,92.0,10.0,10.0,9.0,10.0,10.0,10.0,6,0.41 +13538,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.11 +25165,93.0,9.0,9.0,10.0,10.0,10.0,9.0,23,1.9 +14365,,,,,,,,0, +64183,72.0,8.0,7.0,9.0,9.0,10.0,8.0,10,0.66 +13891,,,,,,,,0, +58473,,,,,,,,0, +52731,60.0,6.0,6.0,8.0,8.0,7.0,6.0,2,0.14 +30899,90.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.27 +21949,70.0,7.0,7.0,9.0,9.0,10.0,8.0,2,0.2 +30676,80.0,10.0,9.0,10.0,9.0,10.0,9.0,3,0.37 +43470,89.0,9.0,9.0,10.0,9.0,9.0,9.0,29,1.92 +41200,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.26 +35007,95.0,9.0,9.0,10.0,10.0,10.0,9.0,8,0.64 +20379,,,,,,,,0, +6490,99.0,10.0,10.0,10.0,10.0,10.0,10.0,54,3.57 +69790,88.0,9.0,9.0,9.0,10.0,9.0,9.0,33,2.08 +4882,97.0,10.0,10.0,10.0,10.0,9.0,9.0,8,0.55 +70981,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.48 +56808,94.0,9.0,9.0,10.0,10.0,10.0,9.0,39,2.45 +27732,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.13 +76321,,,,,,,,0, +39093,,,,,,,,0, +39432,83.0,9.0,9.0,9.0,9.0,9.0,9.0,54,3.46 +35623,89.0,10.0,9.0,9.0,10.0,10.0,9.0,16,1.01 +23912,,,,,,,,0, +67857,93.0,10.0,9.0,10.0,9.0,10.0,9.0,33,2.2 +72642,,,,,,,,0, +14497,92.0,9.0,10.0,10.0,10.0,9.0,10.0,10,0.67 +76810,99.0,10.0,10.0,10.0,10.0,10.0,10.0,31,2.15 +73424,95.0,10.0,10.0,10.0,10.0,9.0,10.0,13,1.95 +18871,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.27 +13644,95.0,10.0,10.0,10.0,10.0,9.0,10.0,8,1.08 +42861,99.0,10.0,10.0,10.0,10.0,10.0,10.0,20,1.3 +6280,78.0,8.0,7.0,8.0,9.0,9.0,8.0,13,0.89 +38412,90.0,10.0,9.0,10.0,10.0,10.0,9.0,2,1.62 +61859,,,,,,,,0, +75937,,,,,,,,0, +66188,97.0,10.0,9.0,9.0,9.0,10.0,10.0,36,2.25 +35667,95.0,10.0,10.0,10.0,10.0,10.0,9.0,17,1.52 +9942,,,,,,,,0, +25471,,,,,,,,0, +10031,94.0,10.0,9.0,10.0,10.0,9.0,9.0,28,1.81 +28813,90.0,10.0,10.0,9.0,10.0,8.0,9.0,8,0.49 +27690,,,,,,,,0, +62090,87.0,9.0,8.0,9.0,8.0,9.0,8.0,11,0.81 +56876,92.0,10.0,10.0,9.0,9.0,10.0,9.0,40,2.8 +39588,93.0,10.0,10.0,9.0,9.0,9.0,9.0,51,3.36 +18436,96.0,10.0,10.0,10.0,10.0,9.0,10.0,31,2.28 +2473,88.0,10.0,9.0,10.0,10.0,9.0,9.0,26,1.6 +22100,80.0,6.0,6.0,8.0,10.0,10.0,6.0,1,0.07 +32167,93.0,10.0,10.0,10.0,10.0,10.0,10.0,41,2.74 +70230,100.0,10.0,10.0,10.0,10.0,9.0,9.0,5,0.32 +16963,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.62 +5584,97.0,10.0,10.0,9.0,10.0,10.0,10.0,25,1.58 +46094,99.0,10.0,10.0,10.0,10.0,9.0,10.0,14,0.87 +1965,96.0,10.0,10.0,10.0,10.0,10.0,10.0,37,2.35 +54244,98.0,10.0,10.0,10.0,10.0,10.0,10.0,19,1.25 +20937,87.0,9.0,9.0,9.0,9.0,9.0,9.0,36,2.31 +39046,,,,,,,,0, +52286,94.0,10.0,9.0,10.0,10.0,10.0,9.0,20,1.41 +32513,96.0,10.0,8.0,10.0,10.0,10.0,10.0,6,0.38 +16117,96.0,10.0,10.0,10.0,10.0,9.0,9.0,21,1.33 +39865,89.0,9.0,9.0,10.0,10.0,9.0,9.0,15,0.95 +14781,90.0,9.0,9.0,9.0,9.0,9.0,9.0,2,0.13 +60744,,,,,,,,0, +21930,95.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.94 +52078,,,,,,,,0, +20496,,,,,,,,0, +57980,100.0,10.0,9.0,10.0,10.0,10.0,9.0,2,0.22 +31591,97.0,10.0,10.0,10.0,10.0,10.0,10.0,55,3.47 +70628,97.0,10.0,10.0,10.0,10.0,9.0,10.0,6,1.13 +26155,96.0,10.0,10.0,10.0,10.0,10.0,10.0,37,2.29 +61257,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.25 +57245,,,,,,,,0, +60892,83.0,9.0,8.0,8.0,9.0,9.0,8.0,22,1.46 +56541,100.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.97 +53778,76.0,8.0,8.0,9.0,9.0,9.0,8.0,20,1.26 +24253,,,,,,,,0, +42550,,,,,,,,0, +24444,99.0,10.0,10.0,10.0,10.0,10.0,10.0,27,3.03 +55623,,,,,,,,3,0.22 +2598,100.0,9.0,7.0,9.0,10.0,10.0,9.0,2,0.18 +58102,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.13 +66695,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.15 +33164,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +53548,88.0,9.0,9.0,9.0,10.0,9.0,8.0,13,0.84 +42048,96.0,10.0,9.0,10.0,10.0,10.0,9.0,11,0.68 +27227,100.0,10.0,10.0,10.0,10.0,9.0,10.0,11,0.69 +25123,,,,,,,,0, +17163,95.0,10.0,10.0,10.0,9.0,9.0,10.0,8,0.51 +29429,95.0,9.0,9.0,10.0,10.0,9.0,9.0,16,0.99 +17078,98.0,10.0,9.0,10.0,10.0,10.0,9.0,19,1.41 +49343,99.0,10.0,10.0,10.0,10.0,10.0,10.0,34,3.85 +41198,78.0,9.0,8.0,9.0,8.0,9.0,9.0,10,2.78 +170,94.0,10.0,10.0,10.0,10.0,10.0,9.0,36,2.27 +38170,97.0,10.0,9.0,10.0,10.0,10.0,10.0,21,1.6 +38645,100.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.12 +38599,,,,,,,,0, +2685,91.0,10.0,9.0,10.0,10.0,9.0,9.0,15,0.92 +27254,,,,,,,,0, +12677,89.0,9.0,9.0,10.0,9.0,10.0,9.0,33,2.13 +65559,87.0,9.0,9.0,10.0,9.0,10.0,9.0,37,2.3 +28966,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.1 +30834,97.0,10.0,10.0,10.0,10.0,10.0,10.0,44,2.99 +46039,100.0,10.0,9.0,10.0,10.0,9.0,10.0,8,0.53 +25357,93.0,10.0,9.0,10.0,10.0,9.0,9.0,8,0.55 +52179,79.0,9.0,7.0,9.0,9.0,10.0,9.0,50,3.12 +3708,,,,,,,,0, +32629,86.0,9.0,9.0,9.0,9.0,9.0,9.0,116,7.12 +73305,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.81 +20817,96.0,10.0,10.0,10.0,10.0,10.0,9.0,20,1.32 +55213,93.0,9.0,9.0,10.0,10.0,9.0,9.0,13,0.8 +74991,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +29921,,,,,,,,0, +35635,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +8891,84.0,9.0,7.0,9.0,10.0,9.0,9.0,30,1.98 +23301,,,,,,,,0, +72378,,,,,,,,0, +32595,99.0,10.0,10.0,10.0,10.0,10.0,10.0,37,2.32 +5489,90.0,9.0,9.0,10.0,10.0,9.0,9.0,48,2.96 +67081,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.76 +38139,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +35744,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +57183,96.0,10.0,10.0,10.0,10.0,10.0,9.0,24,1.56 +64649,99.0,10.0,10.0,10.0,10.0,9.0,10.0,25,1.54 +50784,80.0,6.0,10.0,10.0,10.0,10.0,8.0,2,0.13 +74258,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,1.71 +72856,96.0,10.0,9.0,10.0,10.0,9.0,10.0,38,2.33 +3985,,,,,,,,0, +12289,,,,,,,,0, +59541,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.12 +73633,97.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.78 +7909,94.0,10.0,10.0,10.0,10.0,10.0,10.0,51,3.28 +5464,50.0,5.0,6.0,5.0,5.0,7.0,5.0,4,0.25 +50588,,,,,,,,0, +70822,88.0,9.0,10.0,10.0,10.0,10.0,9.0,16,1.03 +10563,,,,,,,,0, +21886,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.34 +54519,100.0,10.0,10.0,10.0,10.0,10.0,9.0,14,0.94 +59999,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.13 +57622,97.0,10.0,10.0,9.0,9.0,9.0,9.0,6,0.45 +73510,,,,,,,,0, +7787,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.13 +10266,,,,,,,,0, +35149,86.0,9.0,9.0,10.0,10.0,9.0,9.0,50,3.25 +34250,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.41 +10478,,,,,,,,0, +50415,100.0,10.0,9.0,10.0,10.0,9.0,9.0,3,0.19 +29214,97.0,10.0,10.0,10.0,10.0,9.0,10.0,47,3.04 +8688,98.0,10.0,10.0,10.0,10.0,10.0,9.0,48,3.07 +40103,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.29 +27558,93.0,9.0,9.0,10.0,10.0,9.0,9.0,153,9.43 +66335,87.0,9.0,8.0,9.0,10.0,9.0,9.0,3,0.19 +63394,93.0,9.0,9.0,10.0,10.0,9.0,9.0,3,0.2 +31009,100.0,10.0,9.0,9.0,10.0,10.0,10.0,3,0.19 +42046,100.0,9.0,9.0,10.0,10.0,10.0,10.0,2,2.0 +51743,,,,,,,,0, +71963,94.0,10.0,9.0,10.0,10.0,10.0,10.0,21,1.4 +60167,92.0,10.0,10.0,10.0,10.0,10.0,9.0,74,4.67 +53549,97.0,10.0,10.0,9.0,10.0,9.0,9.0,39,2.59 +14183,,,,,,,,1,0.07 +76792,88.0,10.0,8.0,10.0,10.0,9.0,9.0,13,0.81 +72238,100.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.47 +32799,94.0,10.0,9.0,10.0,10.0,10.0,10.0,15,0.95 +70812,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.55 +30338,90.0,10.0,9.0,10.0,10.0,7.0,8.0,2,0.13 +48728,90.0,10.0,10.0,10.0,9.0,9.0,9.0,6,0.91 +11855,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,4.5 +36109,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.25 +61032,80.0,10.0,10.0,10.0,10.0,10.0,4.0,1,0.06 +54203,60.0,10.0,4.0,10.0,10.0,10.0,6.0,1,0.06 +65054,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +52786,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +29091,,,,,,,,0, +42827,93.0,10.0,9.0,9.0,10.0,10.0,9.0,22,1.45 +1324,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.53 +36281,100.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.4 +527,80.0,9.0,9.0,9.0,9.0,10.0,9.0,11,0.7 +18830,,,,,,,,0, +5539,92.0,9.0,10.0,10.0,10.0,9.0,10.0,37,2.74 +47640,,,,,,,,0, +35910,97.0,10.0,10.0,10.0,10.0,10.0,9.0,90,5.64 +74658,90.0,9.0,9.0,10.0,8.0,9.0,9.0,10,0.66 +40657,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.4 +42144,,,,,,,,0, +20013,99.0,10.0,10.0,10.0,10.0,10.0,10.0,37,2.83 +47204,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.48 +42951,90.0,10.0,8.0,10.0,10.0,10.0,10.0,9,0.56 +21900,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +10065,97.0,10.0,10.0,10.0,10.0,10.0,9.0,22,1.39 +76938,84.0,9.0,10.0,10.0,9.0,10.0,10.0,10,0.85 +58221,95.0,10.0,10.0,10.0,10.0,10.0,10.0,29,2.19 +21665,,,,,,,,0, +43990,,,,,,,,1,0.1 +9835,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.7 +2792,96.0,10.0,10.0,10.0,10.0,10.0,9.0,28,1.78 +22435,99.0,10.0,10.0,10.0,10.0,10.0,10.0,16,1.08 +13697,100.0,10.0,10.0,10.0,10.0,10.0,9.0,9,0.61 +22964,,,,,,,,0, +16667,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.13 +68173,95.0,10.0,10.0,10.0,10.0,10.0,9.0,12,0.85 +30286,80.0,10.0,8.0,10.0,10.0,10.0,9.0,3,0.19 +24517,,,,,,,,0, +71241,,,,,,,,0, +37110,100.0,10.0,9.0,10.0,10.0,10.0,9.0,3,0.19 +27290,98.0,9.0,10.0,10.0,10.0,10.0,10.0,10,0.66 +4804,,,,,,,,0, +35909,93.0,10.0,9.0,10.0,10.0,9.0,9.0,37,2.3 +1706,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.13 +41311,99.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.96 +10578,88.0,10.0,9.0,10.0,10.0,9.0,9.0,62,3.92 +17131,98.0,10.0,10.0,10.0,10.0,9.0,10.0,74,4.74 +16942,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.66 +50115,,,,,,,,0, +67417,70.0,9.0,7.0,10.0,9.0,9.0,10.0,2,0.32 +76985,87.0,9.0,9.0,10.0,10.0,8.0,9.0,36,2.48 +38849,84.0,8.0,9.0,8.0,9.0,10.0,8.0,5,0.32 +75588,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.27 +34627,98.0,10.0,10.0,10.0,10.0,9.0,10.0,10,0.62 +70991,,,,,,,,0, +48665,97.0,10.0,10.0,10.0,10.0,10.0,10.0,25,1.62 +6217,76.0,9.0,8.0,9.0,9.0,9.0,8.0,10,0.62 +41216,75.0,8.0,6.0,9.0,10.0,10.0,8.0,13,2.15 +25082,94.0,10.0,10.0,9.0,10.0,10.0,10.0,18,1.21 +25663,95.0,10.0,9.0,9.0,10.0,10.0,9.0,14,0.92 +7187,,,,,,,,0, +19327,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.33 +14557,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.27 +48632,,,,,,,,0, +15740,91.0,9.0,10.0,9.0,9.0,9.0,9.0,28,1.78 +76987,100.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.37 +31923,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.13 +47285,95.0,10.0,10.0,10.0,10.0,9.0,10.0,32,2.0 +29613,98.0,10.0,10.0,10.0,10.0,10.0,10.0,85,5.64 +38889,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.14 +76448,97.0,10.0,10.0,10.0,10.0,10.0,10.0,27,2.07 +48287,100.0,10.0,10.0,4.0,2.0,10.0,10.0,2,0.15 +62693,,,,,,,,0, +73484,98.0,10.0,9.0,9.0,9.0,10.0,10.0,8,0.62 +75987,97.0,10.0,10.0,10.0,10.0,10.0,9.0,14,0.89 +69727,85.0,8.0,8.0,10.0,9.0,9.0,8.0,4,0.29 +68682,98.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.52 +59859,95.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.96 +72493,94.0,10.0,9.0,10.0,10.0,9.0,10.0,22,1.39 +11792,93.0,10.0,9.0,10.0,10.0,9.0,9.0,14,1.1 +49126,,,,,,,,0, +50919,100.0,10.0,10.0,10.0,10.0,9.0,9.0,10,0.62 +43262,100.0,10.0,10.0,9.0,10.0,10.0,10.0,3,0.47 +51863,90.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.43 +59591,86.0,9.0,9.0,9.0,9.0,9.0,9.0,29,2.02 +65727,89.0,9.0,9.0,8.0,9.0,10.0,9.0,27,1.76 +16459,89.0,9.0,9.0,8.0,10.0,9.0,8.0,18,1.15 +23681,83.0,9.0,9.0,8.0,9.0,9.0,8.0,23,1.45 +34917,,,,,,,,0, +1896,94.0,10.0,10.0,8.0,9.0,9.0,10.0,16,1.03 +4951,85.0,9.0,9.0,9.0,9.0,10.0,8.0,16,1.07 +66088,87.0,9.0,9.0,9.0,10.0,10.0,9.0,14,0.93 +10078,92.0,10.0,9.0,10.0,10.0,9.0,9.0,43,2.84 +35240,96.0,10.0,9.0,10.0,10.0,10.0,10.0,28,1.76 +37251,,,,,,,,0, +56972,100.0,10.0,9.0,10.0,10.0,10.0,10.0,6,0.39 +10348,87.0,9.0,9.0,8.0,9.0,10.0,9.0,4,0.27 +25838,88.0,9.0,9.0,10.0,10.0,10.0,9.0,25,1.63 +21388,99.0,10.0,10.0,10.0,10.0,10.0,9.0,19,1.21 +40783,80.0,8.0,6.0,9.0,9.0,9.0,7.0,4,0.28 +42490,81.0,7.0,8.0,7.0,8.0,9.0,8.0,15,0.93 +44355,,,,,,,,0, +39738,80.0,10.0,6.0,10.0,10.0,10.0,10.0,1,0.07 +6410,94.0,9.0,10.0,10.0,10.0,9.0,9.0,19,1.29 +18173,98.0,10.0,10.0,10.0,10.0,10.0,10.0,36,2.77 +3285,,,,,,,,0, +68579,96.0,10.0,10.0,10.0,10.0,10.0,10.0,75,4.66 +36562,94.0,10.0,9.0,10.0,10.0,9.0,9.0,18,1.13 +63202,,,,,,,,0, +6627,98.0,10.0,10.0,10.0,10.0,10.0,10.0,49,3.18 +5868,99.0,10.0,10.0,10.0,10.0,10.0,10.0,31,2.03 +1642,91.0,10.0,9.0,10.0,10.0,9.0,9.0,11,0.7 +33613,,,,,,,,0, +23188,,,,,,,,0, +12164,95.0,9.0,10.0,10.0,10.0,10.0,9.0,17,1.16 +50738,100.0,9.0,10.0,9.0,10.0,9.0,9.0,2,0.13 +64790,93.0,9.0,9.0,10.0,10.0,10.0,9.0,3,0.2 +30243,92.0,9.0,9.0,9.0,9.0,9.0,9.0,14,0.96 +19397,,,,,,,,0, +20400,60.0,10.0,10.0,8.0,8.0,8.0,6.0,1,0.06 +22477,,,,,,,,0, +23367,94.0,9.0,10.0,10.0,10.0,10.0,9.0,76,4.77 +37041,80.0,10.0,10.0,10.0,10.0,10.0,8.0,2,0.14 +11034,90.0,9.0,8.0,9.0,10.0,9.0,7.0,2,0.14 +16586,92.0,10.0,9.0,10.0,10.0,10.0,9.0,7,0.43 +69598,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.35 +63978,,,,,,,,0, +11383,80.0,10.0,8.0,10.0,10.0,6.0,8.0,1,0.09 +37067,,,,,,,,0, +67721,99.0,10.0,10.0,10.0,10.0,10.0,10.0,44,3.6 +17567,,,,,,,,0, +23860,,,,,,,,0, +40681,96.0,10.0,10.0,9.0,10.0,10.0,9.0,36,2.26 +76026,85.0,8.0,8.0,8.0,9.0,10.0,8.0,8,0.52 +17513,95.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.59 +67688,80.0,8.0,8.0,10.0,10.0,10.0,8.0,1,0.06 +32935,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.59 +25203,,,,,,,,0, +14323,91.0,9.0,10.0,9.0,10.0,9.0,9.0,21,1.71 +12803,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +36867,96.0,10.0,9.0,10.0,10.0,10.0,10.0,48,3.07 +71236,100.0,10.0,10.0,,,,,2,0.12 +28091,,,,,,,,0, +44958,99.0,10.0,10.0,10.0,10.0,10.0,9.0,15,0.96 +60616,100.0,10.0,10.0,10.0,10.0,10.0,10.0,28,1.86 +12908,88.0,9.0,9.0,9.0,9.0,10.0,9.0,50,3.18 +32820,80.0,8.0,6.0,10.0,8.0,10.0,8.0,1,0.07 +73032,,,,,,,,0, +61264,93.0,10.0,9.0,10.0,10.0,10.0,9.0,58,3.69 +44671,95.0,10.0,10.0,10.0,10.0,9.0,9.0,4,0.26 +1275,100.0,10.0,10.0,10.0,10.0,10.0,10.0,17,1.18 +31549,,,,,,,,0, +12716,100.0,9.0,9.0,10.0,10.0,10.0,10.0,3,0.19 +3525,80.0,8.0,8.0,10.0,10.0,8.0,8.0,1,0.08 +26177,97.0,10.0,9.0,10.0,9.0,10.0,9.0,20,1.31 +37268,,,,,,,,0, +29362,80.0,6.0,5.0,9.0,10.0,9.0,8.0,2,0.13 +68401,92.0,10.0,10.0,10.0,10.0,10.0,9.0,10,0.66 +26333,,,,,,,,0, +44135,100.0,9.0,10.0,10.0,10.0,10.0,10.0,3,0.19 +5784,,,,,,,,0, +72449,85.0,9.0,9.0,10.0,9.0,9.0,9.0,9,1.65 +50082,89.0,9.0,10.0,9.0,9.0,9.0,9.0,42,2.74 +59325,88.0,10.0,8.0,10.0,10.0,9.0,9.0,35,2.53 +2265,89.0,9.0,9.0,10.0,10.0,9.0,9.0,16,1.02 +63090,,,,,,,,0, +44245,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.13 +44529,,,,,,,,0, +57556,82.0,8.0,9.0,10.0,10.0,9.0,8.0,22,1.38 +70458,92.0,10.0,10.0,9.0,10.0,10.0,10.0,6,0.38 +71405,96.0,10.0,9.0,9.0,10.0,10.0,10.0,5,0.56 +54751,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +55863,,,,,,,,0, +43917,96.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.94 +58464,96.0,10.0,8.0,10.0,10.0,9.0,9.0,5,0.99 +44921,90.0,10.0,9.0,9.0,10.0,9.0,10.0,14,0.9 +54937,93.0,9.0,9.0,10.0,10.0,9.0,10.0,14,0.91 +75179,100.0,10.0,10.0,8.0,10.0,8.0,10.0,2,0.13 +1035,98.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.71 +33019,,,,,,,,0, +889,,,,,,,,0, +4986,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.77 +24464,80.0,8.0,10.0,10.0,10.0,10.0,10.0,2,0.13 +50333,92.0,10.0,10.0,10.0,9.0,9.0,9.0,43,2.89 +26275,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.41 +32726,91.0,10.0,9.0,10.0,10.0,10.0,8.0,9,0.77 +43923,,,,,,,,0, +36963,93.0,9.0,9.0,9.0,9.0,10.0,10.0,6,0.4 +48208,,,,,,,,0, +45185,100.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.43 +23598,90.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.91 +41645,,,,,,,,0, +68934,,,,,,,,0, +18388,96.0,10.0,10.0,10.0,10.0,9.0,9.0,23,1.52 +12454,92.0,10.0,9.0,10.0,9.0,9.0,9.0,5,0.31 +61132,99.0,10.0,10.0,10.0,10.0,9.0,10.0,57,3.73 +1109,92.0,9.0,9.0,10.0,10.0,9.0,9.0,31,2.05 +10072,100.0,10.0,9.0,10.0,10.0,10.0,9.0,8,0.67 +64729,94.0,10.0,9.0,10.0,9.0,9.0,9.0,13,0.9 +14813,,,,,,,,1,0.07 +40248,70.0,7.0,8.0,10.0,10.0,10.0,8.0,5,0.31 +58010,96.0,10.0,10.0,10.0,9.0,10.0,10.0,5,0.33 +22210,,,,,,,,0, +30863,100.0,10.0,10.0,10.0,8.0,8.0,10.0,2,0.13 +65698,,,,,,,,0, +21726,,,,,,,,0, +16965,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.2 +73336,100.0,10.0,8.0,10.0,10.0,8.0,6.0,2,0.18 +21749,,,,,,,,0, +38994,,,,,,,,0, +39834,100.0,10.0,9.0,10.0,10.0,10.0,9.0,2,0.13 +42009,90.0,8.0,10.0,10.0,10.0,10.0,10.0,2,0.14 +18899,96.0,9.0,10.0,9.0,10.0,10.0,9.0,9,0.64 +36877,,,,,,,,0, +29654,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.32 +43060,,,,,,,,0, +76691,100.0,10.0,10.0,10.0,10.0,10.0,10.0,23,1.52 +32321,98.0,10.0,10.0,10.0,10.0,9.0,10.0,12,0.78 +31988,,,,,,,,0, +14129,95.0,10.0,9.0,10.0,10.0,9.0,9.0,26,1.65 +33998,95.0,10.0,10.0,10.0,10.0,10.0,9.0,102,6.4 +24450,,,,,,,,0, +48174,,,,,,,,1,0.07 +63584,90.0,10.0,9.0,10.0,10.0,9.0,10.0,7,0.45 +65427,94.0,10.0,10.0,9.0,10.0,10.0,9.0,81,5.18 +28189,,,,,,,,0, +72868,,,,,,,,0, +11315,,,,,,,,0, +71052,90.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.14 +75418,94.0,10.0,9.0,10.0,10.0,9.0,9.0,55,3.53 +1681,84.0,9.0,9.0,9.0,9.0,8.0,9.0,52,3.29 +42016,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.08 +16701,90.0,8.0,10.0,10.0,10.0,10.0,9.0,2,0.13 +64456,,,,,,,,0, +43182,87.0,9.0,9.0,10.0,10.0,7.0,7.0,5,0.33 +62232,,,,,,,,0, +52944,,,,,,,,0, +74617,100.0,10.0,10.0,10.0,10.0,10.0,10.0,41,2.59 +51372,92.0,9.0,9.0,9.0,9.0,9.0,9.0,5,0.32 +44663,,,,,,,,0, +22976,97.0,10.0,10.0,10.0,10.0,10.0,10.0,25,1.64 +189,,,,,,,,0, +4530,97.0,10.0,9.0,10.0,10.0,9.0,9.0,12,0.96 +47000,,,,,,,,0, +52886,98.0,10.0,9.0,10.0,10.0,9.0,9.0,8,0.84 +10506,93.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.23 +70964,,,,,,,,0, +22415,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.38 +28842,93.0,9.0,9.0,9.0,9.0,9.0,9.0,22,1.39 +36761,94.0,9.0,10.0,10.0,10.0,10.0,9.0,23,1.66 +47909,90.0,10.0,10.0,9.0,9.0,10.0,9.0,6,0.51 +43861,100.0,9.0,10.0,10.0,9.0,9.0,8.0,2,0.33 +53566,90.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.13 +29908,,,,,,,,0, +32078,80.0,10.0,6.0,10.0,10.0,10.0,8.0,1,0.06 +10368,96.0,10.0,9.0,10.0,10.0,10.0,9.0,11,0.7 +1623,,,,,,,,0, +35158,90.0,10.0,8.0,10.0,10.0,9.0,10.0,2,0.12 +12219,,,,,,,,0, +6346,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.2 +5167,98.0,10.0,10.0,9.0,9.0,10.0,10.0,16,1.07 +67340,100.0,10.0,10.0,10.0,10.0,10.0,8.0,2,0.13 +8798,,,,,,,,0, +49917,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +32208,100.0,10.0,10.0,10.0,10.0,10.0,10.0,18,1.98 +28569,,,,,,,,0, +46322,95.0,10.0,10.0,10.0,10.0,10.0,9.0,10,0.68 +57276,99.0,10.0,10.0,10.0,10.0,9.0,10.0,35,2.34 +57206,98.0,10.0,10.0,10.0,10.0,10.0,9.0,11,0.89 +9792,100.0,10.0,9.0,9.0,10.0,10.0,10.0,3,0.23 +57938,,,,,,,,0, +2030,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.84 +18252,94.0,9.0,10.0,9.0,10.0,10.0,9.0,19,1.67 +18431,,,,,,,,0, +7258,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.31 +27961,100.0,10.0,6.0,10.0,10.0,10.0,10.0,1,0.06 +70377,,,,,,,,0, +22931,100.0,10.0,10.0,,,,,1,0.06 +3250,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.38 +60643,100.0,10.0,10.0,10.0,10.0,9.0,10.0,15,0.95 +26209,95.0,10.0,10.0,9.0,10.0,10.0,10.0,21,1.38 +24723,60.0,7.0,6.0,9.0,8.0,6.0,6.0,3,0.2 +8039,73.0,10.0,7.0,6.0,10.0,7.0,9.0,3,0.2 +11307,98.0,10.0,10.0,10.0,10.0,9.0,10.0,17,1.1 +74000,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.59 +55540,,,,,,,,0, +5957,85.0,10.0,9.0,10.0,10.0,10.0,9.0,4,0.26 +24195,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +35654,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.13 +61339,,,,,,,,0, +9418,90.0,9.0,10.0,9.0,9.0,10.0,10.0,2,0.13 +23411,93.0,9.0,9.0,10.0,10.0,10.0,9.0,31,1.95 +2606,94.0,10.0,9.0,10.0,10.0,9.0,9.0,22,1.91 +8187,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.15 +40543,94.0,10.0,9.0,10.0,9.0,9.0,9.0,7,0.57 +34741,,,,,,,,0, +13393,,,,,,,,0, +67840,94.0,9.0,9.0,9.0,9.0,9.0,9.0,7,0.48 +71253,88.0,9.0,9.0,9.0,9.0,10.0,9.0,19,1.25 +21192,,,,,,,,0, +52241,,,,,,,,0, +3619,82.0,10.0,8.0,9.0,9.0,9.0,9.0,12,0.81 +34277,93.0,9.0,9.0,10.0,9.0,9.0,9.0,3,0.19 +13732,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.13 +45383,87.0,9.0,9.0,10.0,9.0,8.0,9.0,4,0.25 +51374,100.0,9.0,10.0,10.0,10.0,7.0,10.0,3,0.2 +27319,96.0,10.0,10.0,10.0,10.0,10.0,10.0,34,2.21 +72453,,,,,,,,0, +14886,100.0,10.0,10.0,10.0,10.0,9.0,10.0,11,0.73 +73622,100.0,10.0,10.0,10.0,10.0,10.0,10.0,38,4.3 +46595,,,,,,,,1,0.07 +62944,91.0,9.0,9.0,10.0,9.0,9.0,9.0,7,0.45 +3762,80.0,8.0,8.0,10.0,10.0,10.0,8.0,5,0.42 +1797,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +66414,,,,,,,,0, +20843,100.0,10.0,9.0,10.0,10.0,10.0,9.0,10,0.69 +67884,100.0,10.0,10.0,10.0,10.0,6.0,10.0,1,0.07 +68348,,,,,,,,0, +69571,,,,,,,,0, +32477,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.86 +72394,,,,,,,,0, +19372,93.0,9.0,9.0,10.0,9.0,8.0,10.0,3,0.21 +32988,40.0,4.0,4.0,4.0,4.0,6.0,4.0,1,0.06 +36439,90.0,9.0,9.0,10.0,10.0,9.0,10.0,22,1.48 +52166,93.0,9.0,9.0,9.0,10.0,10.0,9.0,40,2.63 +68131,20.0,6.0,6.0,2.0,2.0,6.0,4.0,1,0.1 +8386,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +11049,90.0,9.0,9.0,10.0,10.0,10.0,9.0,14,0.92 +7193,81.0,9.0,10.0,8.0,9.0,8.0,8.0,14,0.92 +61556,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.21 +39387,91.0,9.0,9.0,10.0,10.0,10.0,9.0,35,2.33 +71936,82.0,9.0,8.0,9.0,9.0,10.0,9.0,33,2.08 +63067,100.0,9.0,9.0,10.0,10.0,9.0,9.0,2,0.18 +51407,100.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +46818,95.0,10.0,9.0,10.0,10.0,10.0,10.0,17,1.1 +69129,93.0,10.0,9.0,9.0,10.0,10.0,9.0,16,1.03 +7312,83.0,9.0,9.0,9.0,9.0,10.0,9.0,12,0.87 +9044,,,,,,,,0, +40450,97.0,10.0,10.0,10.0,10.0,9.0,10.0,22,1.41 +61270,,,,,,,,1,0.07 +50378,94.0,9.0,9.0,10.0,10.0,9.0,9.0,24,1.63 +60571,95.0,10.0,10.0,9.0,10.0,9.0,10.0,23,1.52 +56617,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +54855,96.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.32 +53113,96.0,10.0,9.0,10.0,10.0,10.0,10.0,9,0.56 +767,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.26 +9667,96.0,10.0,10.0,10.0,10.0,10.0,9.0,10,0.67 +65153,94.0,10.0,10.0,9.0,10.0,8.0,9.0,20,1.28 +26204,100.0,10.0,10.0,9.0,10.0,9.0,10.0,2,0.39 +57916,83.0,9.0,8.0,9.0,10.0,8.0,9.0,66,4.63 +61022,84.0,9.0,8.0,9.0,10.0,9.0,9.0,60,3.78 +30488,84.0,9.0,9.0,9.0,9.0,9.0,9.0,56,3.84 +18203,85.0,9.0,9.0,9.0,10.0,8.0,9.0,62,3.93 +73239,90.0,9.0,10.0,9.0,10.0,10.0,9.0,12,0.81 +36254,92.0,10.0,9.0,9.0,10.0,10.0,9.0,46,3.27 +72283,,,,,,,,1,0.07 +40272,,,,,,,,0, +4945,,,,,,,,0, +34966,79.0,9.0,8.0,10.0,10.0,10.0,8.0,111,6.88 +51137,,,,,,,,0, +48100,86.0,9.0,9.0,9.0,9.0,8.0,9.0,22,1.47 +27653,96.0,10.0,10.0,10.0,10.0,9.0,10.0,15,0.98 +50279,100.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.31 +2354,100.0,10.0,10.0,9.0,10.0,9.0,10.0,2,0.13 +28683,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.07 +42455,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.08 +74152,,,,,,,,0, +3015,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +26313,93.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.53 +70209,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.41 +18152,,,,,,,,0, +29065,99.0,10.0,10.0,10.0,10.0,10.0,10.0,42,2.82 +37296,99.0,10.0,10.0,10.0,10.0,10.0,10.0,65,4.32 +25228,84.0,9.0,9.0,10.0,9.0,10.0,8.0,10,0.65 +15177,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.4 +75119,80.0,8.0,7.0,5.0,9.0,8.0,6.0,3,0.19 +53329,92.0,10.0,9.0,10.0,10.0,10.0,9.0,25,1.62 +12085,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.47 +14037,94.0,10.0,9.0,10.0,10.0,9.0,9.0,7,0.44 +27581,90.0,9.0,8.0,9.0,10.0,9.0,8.0,6,0.4 +65045,,,,,,,,0, +50994,75.0,8.0,8.0,7.0,7.0,8.0,8.0,8,0.53 +34207,80.0,6.0,6.0,8.0,10.0,9.0,6.0,2,0.13 +75217,81.0,8.0,8.0,8.0,9.0,10.0,9.0,23,1.49 +11178,97.0,10.0,10.0,10.0,10.0,9.0,9.0,6,0.41 +12255,88.0,8.0,8.0,9.0,9.0,9.0,9.0,16,1.16 +49765,,,,,,,,0, +16021,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.67 +45731,,,,,,,,0, +41395,100.0,10.0,10.0,10.0,10.0,9.0,10.0,20,1.3 +40074,97.0,10.0,10.0,10.0,10.0,10.0,10.0,16,1.02 +1353,,,,,,,,0, +9316,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.06 +9843,,,,,,,,0, +60598,88.0,9.0,8.0,9.0,9.0,10.0,9.0,17,1.31 +5922,97.0,10.0,10.0,10.0,10.0,10.0,9.0,35,2.39 +1374,93.0,10.0,9.0,10.0,10.0,9.0,10.0,6,0.38 +36517,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.32 +20687,97.0,10.0,10.0,10.0,10.0,9.0,9.0,21,1.39 +52068,99.0,10.0,10.0,10.0,10.0,10.0,10.0,17,1.17 +9505,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.7 +19128,,,,,,,,0, +10881,97.0,10.0,9.0,10.0,10.0,10.0,10.0,14,0.9 +19055,97.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.4 +35407,95.0,10.0,10.0,10.0,10.0,9.0,10.0,13,0.89 +62820,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +28526,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.69 +3412,78.0,8.0,8.0,9.0,8.0,8.0,8.0,19,1.33 +29246,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.38 +16306,,,,,,,,0, +48462,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.32 +42364,,,,,,,,0, +43700,98.0,10.0,10.0,10.0,10.0,10.0,10.0,26,1.67 +25095,96.0,8.0,10.0,10.0,10.0,10.0,10.0,5,0.4 +3080,90.0,9.0,9.0,9.0,9.0,10.0,9.0,11,0.74 +75140,91.0,10.0,10.0,10.0,10.0,9.0,9.0,9,0.6 +66624,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.46 +50788,,,,,,,,0, +56234,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.31 +24511,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.13 +62987,98.0,10.0,9.0,10.0,10.0,9.0,10.0,9,0.62 +71637,100.0,10.0,10.0,9.0,10.0,10.0,9.0,10,0.66 +7696,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.26 +13142,100.0,10.0,10.0,10.0,9.0,9.0,9.0,5,0.33 +70125,92.0,10.0,9.0,10.0,10.0,10.0,9.0,30,1.93 +1958,100.0,10.0,10.0,10.0,10.0,10.0,10.0,24,3.06 +48386,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,6.0 +20715,91.0,9.0,9.0,9.0,10.0,10.0,9.0,54,3.55 +55708,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.06 +32757,100.0,10.0,9.0,10.0,10.0,10.0,10.0,6,0.39 +74743,100.0,10.0,10.0,10.0,10.0,10.0,10.0,19,1.32 +75138,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +52437,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.73 +59270,99.0,10.0,10.0,10.0,10.0,10.0,10.0,32,2.12 +26802,,,,,,,,0, +45110,100.0,9.0,10.0,10.0,10.0,10.0,9.0,5,0.6 +25903,78.0,8.0,7.0,7.0,8.0,8.0,6.0,9,0.66 +18530,97.0,10.0,9.0,10.0,10.0,10.0,10.0,38,2.44 +61826,,,,,,,,0, +4792,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.15 +75152,92.0,10.0,10.0,10.0,9.0,10.0,9.0,17,1.1 +29743,,,,,,,,0, +4695,,,,,,,,0, +47294,70.0,8.0,5.0,7.0,8.0,9.0,9.0,3,0.19 +10588,100.0,9.0,9.0,9.0,9.0,9.0,9.0,2,0.15 +946,97.0,10.0,10.0,10.0,10.0,10.0,9.0,28,1.88 +17634,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,1.18 +54966,87.0,9.0,8.0,9.0,10.0,9.0,9.0,21,1.42 +7861,,,,,,,,1,0.07 +9177,96.0,10.0,10.0,10.0,10.0,9.0,9.0,24,1.58 +6637,100.0,10.0,10.0,10.0,10.0,10.0,9.0,7,0.56 +30997,,,,,,,,0, +50057,,,,,,,,0, +38595,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.06 +21736,86.0,8.0,9.0,9.0,9.0,10.0,9.0,19,1.27 +51155,96.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.38 +58274,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.13 +13011,99.0,10.0,10.0,10.0,10.0,10.0,10.0,162,10.21 +1222,93.0,10.0,9.0,10.0,10.0,9.0,10.0,8,0.59 +4968,90.0,10.0,10.0,8.0,10.0,8.0,10.0,3,0.19 +651,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +43059,,,,,,,,0, +49727,98.0,10.0,9.0,10.0,10.0,9.0,9.0,24,1.52 +47233,,,,,,,,0, +73850,87.0,9.0,9.0,9.0,9.0,9.0,9.0,23,1.71 +50808,100.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.35 +70651,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,1.42 +23364,80.0,8.0,8.0,10.0,10.0,9.0,9.0,3,0.68 +52662,96.0,10.0,10.0,10.0,10.0,10.0,9.0,63,4.29 +63944,,,,,,,,0, +75802,,,,,,,,0, +74719,93.0,10.0,10.0,10.0,9.0,9.0,9.0,6,0.65 +53023,100.0,10.0,10.0,10.0,10.0,9.0,10.0,19,1.42 +17666,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.07 +66223,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +12986,,,,,,,,0, +20219,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.19 +27271,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.88 +12390,100.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.39 +51178,93.0,10.0,9.0,9.0,10.0,10.0,9.0,14,0.97 +200,,,,,,,,0, +28901,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.72 +13262,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +51579,100.0,10.0,10.0,10.0,10.0,10.0,10.0,15,0.97 +31955,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.61 +66513,93.0,10.0,9.0,10.0,10.0,10.0,9.0,31,2.06 +30550,81.0,9.0,9.0,10.0,9.0,9.0,8.0,19,1.25 +75533,82.0,8.0,8.0,9.0,9.0,9.0,8.0,13,0.86 +8162,,,,,,,,0, +68858,,,,,,,,0, +58748,80.0,9.0,7.0,9.0,9.0,10.0,8.0,55,3.59 +15436,97.0,10.0,10.0,9.0,10.0,9.0,9.0,6,0.4 +56190,,,,,,,,0, +56275,100.0,10.0,6.0,10.0,10.0,10.0,10.0,1,0.07 +28712,87.0,9.0,9.0,10.0,10.0,9.0,9.0,14,1.0 +1763,88.0,9.0,9.0,10.0,8.0,10.0,9.0,13,0.9 +69336,83.0,8.0,9.0,9.0,9.0,8.0,9.0,9,0.6 +67599,98.0,10.0,10.0,10.0,10.0,10.0,10.0,56,3.64 +16276,97.0,10.0,9.0,10.0,10.0,10.0,10.0,13,2.45 +48512,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +52977,90.0,8.0,10.0,10.0,10.0,9.0,9.0,70,4.63 +3992,88.0,9.0,9.0,9.0,9.0,9.0,9.0,19,1.24 +6863,93.0,9.0,10.0,9.0,9.0,9.0,10.0,17,1.1 +74224,97.0,10.0,10.0,10.0,10.0,10.0,10.0,34,2.39 +9143,83.0,8.0,9.0,8.0,9.0,8.0,8.0,9,0.61 +17691,77.0,8.0,9.0,9.0,9.0,8.0,8.0,6,0.4 +45381,100.0,10.0,9.0,10.0,10.0,10.0,9.0,8,0.67 +43599,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.16 +68464,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.27 +14552,93.0,9.0,9.0,10.0,10.0,10.0,9.0,42,2.74 +60879,98.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.89 +13079,93.0,10.0,10.0,10.0,10.0,10.0,10.0,16,1.18 +68867,91.0,9.0,9.0,9.0,10.0,9.0,9.0,14,1.31 +27135,80.0,9.0,8.0,10.0,10.0,9.0,10.0,2,0.16 +38005,95.0,10.0,9.0,10.0,10.0,10.0,9.0,15,1.08 +10738,,,,,,,,0, +10653,100.0,10.0,9.0,10.0,10.0,10.0,10.0,7,0.84 +50221,93.0,10.0,10.0,10.0,10.0,10.0,10.0,19,1.33 +45015,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.06 +40924,,,,,,,,0, +16618,100.0,10.0,10.0,10.0,10.0,10.0,9.0,9,0.58 +29975,90.0,10.0,10.0,9.0,9.0,9.0,9.0,24,1.6 +53478,84.0,9.0,9.0,9.0,9.0,10.0,8.0,23,1.56 +8997,100.0,8.0,8.0,10.0,10.0,8.0,10.0,1,0.07 +55381,80.0,6.0,4.0,8.0,10.0,8.0,10.0,1,0.06 +7425,96.0,10.0,10.0,10.0,10.0,10.0,10.0,37,2.61 +20633,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +6442,,,,,,,,0, +70750,80.0,9.0,7.0,8.0,9.0,8.0,9.0,2,0.21 +4887,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.42 +45760,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,2.11 +1667,,,,,,,,0, +2965,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.13 +20451,100.0,10.0,10.0,10.0,10.0,9.0,10.0,12,0.89 +64534,,,,,,,,0, +18690,89.0,10.0,9.0,10.0,10.0,10.0,9.0,32,6.11 +58711,100.0,10.0,10.0,10.0,10.0,10.0,10.0,18,1.21 +27888,,,,,,,,2,0.15 +6622,100.0,10.0,10.0,10.0,8.0,8.0,10.0,2,0.13 +38459,91.0,10.0,9.0,9.0,10.0,10.0,10.0,9,0.58 +71957,,,,,,,,0, +37909,91.0,9.0,9.0,9.0,10.0,9.0,9.0,44,2.83 +40343,90.0,9.0,9.0,9.0,9.0,10.0,9.0,57,3.65 +15349,97.0,10.0,10.0,10.0,10.0,9.0,9.0,18,1.16 +42656,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.15 +23635,90.0,9.0,9.0,9.0,9.0,9.0,9.0,34,2.21 +62946,,,,,,,,0, +74234,,,,,,,,0, +75331,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.13 +39658,,,,,,,,0, +11905,96.0,10.0,10.0,10.0,10.0,10.0,10.0,65,4.16 +6740,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.26 +30269,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.27 +3087,,,,,,,,0, +72727,,,,,,,,0, +32122,88.0,9.0,9.0,9.0,9.0,9.0,9.0,29,1.97 +74296,91.0,9.0,9.0,10.0,10.0,9.0,9.0,19,1.31 +53058,98.0,10.0,10.0,10.0,10.0,10.0,10.0,48,3.43 +19680,96.0,9.0,10.0,10.0,10.0,9.0,9.0,10,0.64 +6755,,,,,,,,0, +75728,89.0,9.0,9.0,10.0,10.0,10.0,9.0,8,0.54 +19207,,,,,,,,0, +26894,98.0,10.0,9.0,9.0,9.0,10.0,10.0,8,0.57 +54694,97.0,10.0,10.0,10.0,10.0,10.0,10.0,14,1.09 +21167,88.0,9.0,8.0,10.0,10.0,9.0,9.0,26,1.94 +70905,100.0,10.0,9.0,10.0,10.0,10.0,9.0,6,0.4 +14577,93.0,9.0,8.0,9.0,10.0,8.0,9.0,18,1.24 +23610,84.0,9.0,7.0,10.0,10.0,10.0,9.0,56,3.65 +16155,91.0,9.0,9.0,10.0,10.0,9.0,9.0,7,0.48 +68374,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.85 +3051,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +56032,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +35334,100.0,10.0,10.0,10.0,10.0,10.0,10.0,18,1.29 +50210,90.0,9.0,9.0,9.0,9.0,8.0,9.0,33,2.27 +33550,100.0,10.0,10.0,10.0,10.0,10.0,10.0,16,1.04 +32523,97.0,10.0,10.0,9.0,10.0,10.0,10.0,42,2.78 +41183,,,,,,,,0, +67283,90.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.28 +71126,91.0,9.0,10.0,9.0,10.0,10.0,9.0,30,1.98 +38224,97.0,10.0,8.0,9.0,10.0,9.0,9.0,7,0.48 +27856,79.0,8.0,8.0,8.0,8.0,9.0,8.0,69,4.54 +28193,,,,,,,,0, +47549,100.0,10.0,10.0,6.0,10.0,10.0,10.0,1,0.08 +72125,83.0,9.0,9.0,10.0,9.0,9.0,9.0,25,1.76 +25624,81.0,9.0,8.0,9.0,8.0,9.0,8.0,22,1.66 +71178,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.26 +5935,60.0,6.0,4.0,10.0,6.0,6.0,6.0,1,0.08 +24359,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +61604,98.0,10.0,10.0,10.0,10.0,10.0,10.0,36,2.33 +73206,,,,,,,,0, +57437,93.0,9.0,9.0,10.0,10.0,10.0,9.0,6,0.42 +25323,84.0,9.0,8.0,10.0,10.0,10.0,8.0,75,4.78 +33248,84.0,10.0,9.0,10.0,9.0,10.0,9.0,14,0.89 +19970,,,,,,,,0, +4375,100.0,10.0,9.0,10.0,10.0,10.0,10.0,11,0.72 +71824,,,,,,,,0, +60654,80.0,8.0,8.0,8.0,10.0,8.0,8.0,2,0.16 +75493,91.0,9.0,8.0,10.0,10.0,10.0,9.0,30,2.11 +65074,,,,,,,,0, +19998,80.0,10.0,6.0,6.0,10.0,8.0,6.0,2,0.18 +46153,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.08 +24782,85.0,9.0,9.0,9.0,10.0,8.0,9.0,43,2.72 +31871,92.0,9.0,9.0,9.0,9.0,10.0,9.0,12,0.8 +65789,83.0,9.0,8.0,10.0,10.0,8.0,8.0,6,0.4 +12103,100.0,10.0,9.0,10.0,10.0,8.0,10.0,6,0.42 +69607,80.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.06 +22665,,,,,,,,0, +34411,97.0,10.0,10.0,10.0,10.0,10.0,10.0,40,2.54 +48152,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.24 +27859,,,,,,,,0, +31761,,,,,,,,0, +37763,100.0,10.0,10.0,10.0,10.0,9.0,9.0,7,0.45 +58608,80.0,8.0,8.0,8.0,9.0,8.0,8.0,4,0.26 +8744,80.0,8.0,8.0,8.0,8.0,8.0,8.0,2,0.21 +73252,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.27 +66758,,,,,,,,0, +45260,93.0,9.0,9.0,9.0,9.0,9.0,9.0,8,0.54 +50129,93.0,10.0,10.0,10.0,10.0,9.0,9.0,37,2.46 +6822,94.0,10.0,9.0,10.0,10.0,10.0,10.0,40,2.7 +59396,96.0,10.0,9.0,10.0,10.0,10.0,9.0,10,0.73 +34836,77.0,8.0,7.0,8.0,9.0,9.0,8.0,6,0.43 +16718,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.13 +7497,,,,,,,,0, +5595,89.0,9.0,10.0,9.0,9.0,10.0,9.0,57,3.81 +10546,,,,,,,,0, +5781,89.0,9.0,10.0,9.0,9.0,10.0,9.0,19,1.38 +50752,,,,,,,,0, +50350,91.0,9.0,9.0,9.0,10.0,10.0,9.0,9,0.6 +65932,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.25 +60989,100.0,8.0,9.0,7.0,10.0,10.0,7.0,2,0.17 +11411,97.0,9.0,10.0,9.0,9.0,9.0,10.0,8,0.75 +39666,90.0,9.0,8.0,9.0,10.0,10.0,9.0,2,0.51 +28517,,,,,,,,0, +21250,97.0,10.0,9.0,10.0,10.0,9.0,10.0,65,4.14 +45262,95.0,10.0,10.0,10.0,10.0,10.0,10.0,35,2.22 +50121,100.0,10.0,10.0,10.0,10.0,9.0,9.0,2,0.14 +72746,,,,,,,,0, +31221,80.0,8.0,8.0,8.0,8.0,9.0,8.0,9,0.59 +23325,96.0,10.0,9.0,10.0,10.0,10.0,10.0,14,0.97 +3937,85.0,9.0,9.0,10.0,10.0,9.0,9.0,8,0.52 +2856,93.0,10.0,10.0,10.0,9.0,9.0,10.0,6,0.42 +11346,,,,,,,,0, +44443,,,,,,,,0, +62364,,,,,,,,0, +53900,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.15 +36386,94.0,10.0,10.0,10.0,10.0,10.0,9.0,25,1.59 +38866,91.0,10.0,9.0,10.0,10.0,10.0,9.0,33,2.14 +46420,,,,,,,,0, +67985,,,,,,,,0, +5329,73.0,7.0,7.0,8.0,8.0,10.0,7.0,19,1.26 +49535,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.2 +52093,96.0,10.0,9.0,9.0,9.0,10.0,9.0,28,5.28 +68051,,,,,,,,0, +43325,94.0,10.0,9.0,10.0,10.0,10.0,9.0,18,1.21 +71643,86.0,9.0,8.0,9.0,9.0,10.0,8.0,18,1.19 +28903,95.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.93 +25053,,,,,,,,0, +22986,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.26 +27534,,,,,,,,0, +8776,84.0,8.0,9.0,8.0,10.0,10.0,9.0,10,2.13 +48631,83.0,10.0,10.0,10.0,9.0,9.0,9.0,6,0.45 +9122,86.0,9.0,8.0,8.0,8.0,9.0,9.0,8,0.54 +34415,,,,,,,,0, +54529,90.0,10.0,7.0,10.0,8.0,10.0,9.0,2,0.37 +43671,100.0,9.0,9.0,10.0,10.0,10.0,10.0,4,0.26 +62746,,,,,,,,0, +67789,,,,,,,,0, +47312,100.0,10.0,10.0,9.0,10.0,10.0,10.0,2,1.18 +66681,80.0,8.0,8.0,10.0,10.0,10.0,10.0,1,0.16 +34023,94.0,9.0,9.0,10.0,9.0,10.0,9.0,48,3.06 +55096,100.0,10.0,10.0,10.0,10.0,8.0,10.0,9,0.64 +70626,,,,,,,,0, +7342,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +75254,92.0,10.0,9.0,10.0,10.0,9.0,9.0,20,1.53 +33156,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.41 +49248,91.0,10.0,9.0,10.0,10.0,10.0,10.0,22,1.46 +57805,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.28 +14733,98.0,10.0,10.0,10.0,10.0,9.0,10.0,49,3.09 +13967,84.0,8.0,7.0,9.0,9.0,10.0,8.0,21,1.35 +59399,95.0,10.0,10.0,10.0,10.0,9.0,9.0,54,3.65 +76389,,,,,,,,0, +9220,,,,,,,,0, +24437,99.0,10.0,10.0,10.0,10.0,10.0,10.0,25,1.71 +14941,,,,,,,,0, +52678,,,,,,,,0, +16638,98.0,10.0,10.0,10.0,10.0,10.0,10.0,25,1.67 +19110,98.0,10.0,10.0,10.0,10.0,10.0,10.0,25,1.66 +9990,99.0,10.0,10.0,10.0,10.0,9.0,10.0,28,1.78 +3358,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +64526,,,,,,,,0, +14109,,,,,,,,0, +52778,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.81 +76228,99.0,10.0,10.0,10.0,10.0,10.0,10.0,22,1.65 +48295,100.0,10.0,10.0,10.0,9.0,10.0,9.0,2,0.14 +63153,40.0,8.0,8.0,10.0,10.0,10.0,6.0,1,0.07 +18842,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.57 +12332,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +71493,99.0,10.0,10.0,10.0,10.0,10.0,10.0,21,1.48 +7012,,,,,,,,0, +71203,,,,,,,,0, +71588,94.0,9.0,9.0,9.0,9.0,9.0,9.0,10,0.64 +33415,98.0,10.0,10.0,10.0,10.0,9.0,10.0,33,2.08 +50387,,,,,,,,0, +55202,94.0,10.0,9.0,10.0,9.0,9.0,10.0,22,1.47 +20994,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +21263,89.0,10.0,9.0,10.0,10.0,10.0,9.0,40,2.95 +36621,100.0,6.0,8.0,10.0,8.0,10.0,8.0,1,0.07 +44736,98.0,10.0,10.0,10.0,10.0,10.0,10.0,24,1.53 +25637,98.0,10.0,10.0,10.0,10.0,10.0,9.0,10,0.72 +59357,82.0,8.0,9.0,9.0,9.0,10.0,8.0,13,0.88 +76171,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.2 +67322,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.12 +3735,,,,,,,,0, +63012,84.0,8.0,9.0,10.0,10.0,9.0,8.0,9,0.82 +56971,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.64 +1817,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +68758,,,,,,,,0, +65014,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.26 +30042,,,,,,,,1,0.07 +41240,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +4550,,,,,,,,0, +29434,87.0,9.0,7.0,10.0,10.0,9.0,8.0,32,2.18 +76016,93.0,10.0,9.0,10.0,10.0,10.0,9.0,105,6.75 +60153,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.32 +24658,98.0,10.0,10.0,10.0,10.0,10.0,9.0,16,1.43 +71264,40.0,8.0,2.0,6.0,10.0,10.0,4.0,1,0.07 +66554,98.0,10.0,10.0,10.0,10.0,10.0,10.0,37,2.39 +26361,94.0,10.0,10.0,10.0,10.0,10.0,9.0,7,0.45 +72656,98.0,9.0,10.0,10.0,10.0,10.0,9.0,9,0.63 +29630,94.0,10.0,10.0,10.0,10.0,9.0,9.0,14,0.92 +34049,98.0,10.0,10.0,9.0,10.0,10.0,9.0,8,0.51 +32541,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.77 +8626,94.0,10.0,9.0,10.0,10.0,10.0,9.0,13,0.86 +75283,95.0,10.0,9.0,10.0,10.0,10.0,9.0,27,1.75 +13416,75.0,8.0,8.0,9.0,9.0,7.0,7.0,20,1.26 +43343,100.0,10.0,7.0,10.0,10.0,9.0,10.0,3,0.56 +14123,91.0,10.0,9.0,9.0,10.0,9.0,9.0,19,1.26 +28349,88.0,9.0,9.0,9.0,10.0,9.0,9.0,46,2.91 +54002,,,,,,,,0, +13440,93.0,9.0,9.0,7.0,9.0,9.0,9.0,4,0.26 +33501,88.0,9.0,8.0,10.0,10.0,9.0,9.0,13,0.86 +60488,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.36 +55133,96.0,10.0,9.0,10.0,10.0,9.0,10.0,62,3.96 +46439,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.19 +58850,91.0,10.0,9.0,9.0,10.0,10.0,10.0,20,1.42 +75205,93.0,10.0,9.0,9.0,10.0,9.0,10.0,17,1.49 +49301,93.0,9.0,10.0,9.0,10.0,9.0,9.0,3,0.2 +50293,,,,,,,,0, +52322,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.33 +29977,100.0,9.0,9.0,9.0,10.0,10.0,10.0,6,0.39 +32091,,,,,,,,0, +28917,97.0,10.0,8.0,8.0,10.0,10.0,9.0,7,0.83 +48627,90.0,10.0,6.0,10.0,10.0,9.0,9.0,3,0.21 +19770,93.0,10.0,10.0,9.0,9.0,9.0,9.0,23,1.49 +70289,,,,,,,,0, +64850,95.0,9.0,10.0,10.0,10.0,10.0,9.0,17,0.7 +44474,,10.0,10.0,10.0,10.0,10.0,10.0,1,0.13 +2021,,,,,,,,1,0.06 +38520,91.0,10.0,7.0,10.0,10.0,10.0,9.0,10,0.66 +20987,97.0,10.0,10.0,9.0,10.0,10.0,10.0,21,1.83 +25285,89.0,10.0,10.0,9.0,9.0,9.0,9.0,27,1.88 +13551,100.0,10.0,10.0,8.0,10.0,6.0,10.0,2,0.14 +74733,99.0,10.0,10.0,10.0,10.0,10.0,10.0,32,2.12 +36724,,,,,,,,0, +52829,100.0,10.0,10.0,10.0,10.0,10.0,10.0,17,1.1 +21110,95.0,10.0,10.0,10.0,10.0,10.0,9.0,31,2.08 +35487,89.0,9.0,9.0,10.0,10.0,9.0,9.0,30,1.98 +4646,,,,,,,,0, +49305,80.0,8.0,10.0,10.0,10.0,10.0,8.0,1,0.08 +45647,85.0,10.0,10.0,9.0,10.0,10.0,10.0,4,0.62 +22125,96.0,10.0,10.0,10.0,10.0,9.0,10.0,23,1.45 +40728,90.0,9.0,9.0,10.0,9.0,10.0,9.0,27,1.82 +41444,,,,,,,,0, +5211,90.0,7.0,8.0,10.0,10.0,10.0,10.0,2,0.13 +50043,100.0,10.0,10.0,10.0,10.0,10.0,8.0,2,0.14 +39626,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.27 +43310,,,,,,,,0, +34182,97.0,10.0,9.0,10.0,9.0,10.0,10.0,13,0.83 +49950,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.14 +36684,98.0,10.0,10.0,10.0,10.0,9.0,10.0,95,6.16 +48385,100.0,10.0,9.0,10.0,10.0,9.0,10.0,2,0.14 +44310,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.4 +71540,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.27 +24377,99.0,10.0,10.0,10.0,10.0,10.0,10.0,47,2.96 +60203,99.0,10.0,10.0,10.0,10.0,10.0,10.0,77,5.09 +40666,80.0,9.0,9.0,8.0,9.0,9.0,9.0,6,0.4 +10729,,,,,,,,0, +10867,,,,,,,,1,0.11 +49372,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.77 +1462,93.0,10.0,9.0,9.0,9.0,9.0,9.0,43,2.8 +49403,98.0,10.0,10.0,10.0,10.0,9.0,10.0,72,5.0 +46831,91.0,9.0,9.0,10.0,10.0,9.0,9.0,46,3.06 +17850,,,,,,,,0, +55445,97.0,10.0,9.0,8.0,10.0,10.0,10.0,6,0.39 +66759,,,,,,,,0, +2579,96.0,10.0,10.0,10.0,10.0,9.0,10.0,69,4.43 +34693,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.14 +17282,97.0,10.0,10.0,10.0,10.0,9.0,10.0,17,1.09 +17868,100.0,8.0,10.0,8.0,10.0,10.0,10.0,1,0.09 +3737,98.0,10.0,10.0,10.0,10.0,10.0,10.0,58,3.72 +47341,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +44651,97.0,10.0,10.0,10.0,10.0,10.0,10.0,25,1.61 +55741,95.0,10.0,9.0,10.0,10.0,10.0,9.0,65,4.11 +15266,,,,,,,,0, +35612,100.0,9.0,10.0,10.0,10.0,10.0,10.0,14,0.94 +67275,87.0,8.0,9.0,10.0,8.0,9.0,9.0,6,0.41 +50162,93.0,10.0,9.0,10.0,10.0,9.0,10.0,12,0.76 +24577,,,,,,,,0, +18571,97.0,10.0,10.0,10.0,10.0,10.0,10.0,41,2.67 +67832,83.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.53 +31285,93.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.63 +48610,,,,,,,,0, +51120,92.0,9.0,9.0,10.0,10.0,10.0,9.0,12,0.84 +22467,,,,,,,,0, +53899,96.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.58 +58086,83.0,9.0,8.0,10.0,10.0,10.0,9.0,36,2.3 +30591,99.0,10.0,10.0,10.0,10.0,10.0,10.0,23,1.59 +57085,80.0,9.0,8.0,10.0,9.0,10.0,9.0,10,0.63 +15368,90.0,9.0,10.0,9.0,10.0,10.0,9.0,6,0.4 +67835,95.0,10.0,10.0,10.0,10.0,10.0,10.0,15,1.17 +50001,83.0,8.0,9.0,8.0,8.0,8.0,7.0,14,0.99 +48435,97.0,10.0,9.0,10.0,10.0,10.0,10.0,12,0.79 +29058,91.0,9.0,9.0,9.0,10.0,10.0,10.0,11,0.71 +25696,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.79 +62939,45.0,4.0,4.0,10.0,5.0,7.0,5.0,4,0.27 +46803,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.14 +57613,,,,,,,,0, +76855,,,,,,,,0, +14440,,,,,,,,0, +50137,98.0,10.0,10.0,10.0,10.0,10.0,10.0,16,1.1 +51593,100.0,9.0,10.0,10.0,10.0,10.0,10.0,3,0.2 +16606,100.0,10.0,10.0,10.0,10.0,10.0,10.0,16,1.27 +67018,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.55 +50817,,,,,,,,3, +29867,99.0,10.0,10.0,10.0,10.0,9.0,10.0,53,3.53 +39148,,,,,,,,1,0.07 +14526,,,,,,,,1,0.06 +25019,,,,,,,,0, +27828,99.0,10.0,10.0,10.0,10.0,9.0,10.0,68,4.52 +45703,97.0,10.0,10.0,10.0,10.0,9.0,10.0,61,4.03 +30405,,,,,,,,0, +28234,,,,,,,,0, +60527,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.52 +23566,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.62 +48217,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.76 +54362,98.0,10.0,10.0,10.0,10.0,9.0,10.0,24,1.55 +12758,,,,,,,,0, +71730,,,,,,,,0, +38948,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.42 +56084,100.0,10.0,10.0,10.0,10.0,9.0,9.0,8,0.53 +8840,99.0,10.0,9.0,10.0,10.0,10.0,10.0,16,1.13 +47784,,,,,,,,0, +41506,95.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.33 +63131,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.26 +51609,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +76929,100.0,10.0,8.0,10.0,10.0,10.0,10.0,3,0.22 +13571,76.0,8.0,8.0,8.0,9.0,8.0,8.0,27,1.78 +30353,,,,,,,,0, +76348,93.0,10.0,9.0,10.0,10.0,10.0,9.0,25,1.63 +29716,97.0,10.0,10.0,10.0,10.0,9.0,10.0,28,1.9 +26075,94.0,10.0,10.0,10.0,10.0,9.0,10.0,17,1.16 +1260,100.0,10.0,10.0,10.0,10.0,10.0,10.0,45,2.93 +60270,90.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.41 +67261,97.0,10.0,10.0,10.0,10.0,10.0,10.0,27,2.96 +63297,,,,,,,,0, +23478,90.0,10.0,10.0,8.0,10.0,10.0,10.0,2,0.13 +62745,100.0,10.0,10.0,10.0,10.0,10.0,10.0,31,2.12 +20550,,,,,,,,0, +56256,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.2 +9184,100.0,10.0,10.0,10.0,9.0,10.0,9.0,3,0.19 +52028,,,,,,,,0, +44381,91.0,9.0,9.0,10.0,10.0,10.0,10.0,10,0.67 +16728,96.0,9.0,9.0,10.0,10.0,8.0,9.0,5,0.39 +73737,96.0,10.0,10.0,10.0,10.0,10.0,10.0,18,2.36 +48547,100.0,10.0,10.0,10.0,10.0,10.0,10.0,46,3.11 +10353,100.0,10.0,10.0,10.0,10.0,10.0,10.0,17,1.13 +27811,,,,,,,,0, +63018,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.92 +11969,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.16 +11242,97.0,10.0,10.0,10.0,10.0,10.0,10.0,100,6.44 +40932,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.99 +61951,85.0,9.0,9.0,8.0,9.0,9.0,9.0,63,4.03 +63404,98.0,10.0,10.0,10.0,10.0,10.0,10.0,21,1.58 +62036,97.0,10.0,9.0,10.0,10.0,10.0,10.0,49,3.45 +38314,,,,,,,,1,0.08 +67256,100.0,10.0,9.0,10.0,10.0,10.0,10.0,6,0.4 +52222,98.0,10.0,10.0,10.0,10.0,10.0,10.0,89,5.96 +62831,98.0,10.0,10.0,10.0,10.0,10.0,10.0,74,4.79 +58906,100.0,10.0,10.0,10.0,8.0,8.0,10.0,1,0.07 +54429,85.0,9.0,10.0,9.0,9.0,8.0,9.0,4,0.27 +19454,87.0,9.0,8.0,10.0,10.0,8.0,9.0,6,0.41 +72855,76.0,10.0,10.0,9.0,8.0,10.0,9.0,6,0.4 +70884,,,,,,,,0, +42304,93.0,10.0,9.0,9.0,10.0,9.0,9.0,17,1.12 +29548,98.0,10.0,10.0,10.0,10.0,10.0,10.0,17,1.36 +8610,89.0,10.0,10.0,9.0,9.0,8.0,9.0,25,1.62 +26183,91.0,9.0,10.0,10.0,10.0,10.0,9.0,23,1.54 +53930,100.0,10.0,10.0,10.0,10.0,10.0,10.0,23,1.52 +66776,97.0,10.0,10.0,10.0,10.0,10.0,10.0,94,6.27 +71770,98.0,10.0,10.0,9.0,10.0,10.0,10.0,8,1.45 +30737,93.0,10.0,9.0,10.0,10.0,10.0,9.0,44,2.9 +14592,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.99 +40600,,,,,,,,0, +47250,100.0,10.0,9.0,10.0,10.0,8.0,8.0,2,0.14 +70899,89.0,10.0,9.0,10.0,10.0,10.0,8.0,7,0.5 +27904,,,,,,,,0, +20818,93.0,9.0,10.0,9.0,9.0,10.0,9.0,40,2.55 +4141,98.0,10.0,10.0,10.0,10.0,9.0,9.0,9,0.58 +14199,90.0,9.0,9.0,9.0,9.0,10.0,9.0,29,1.95 +33119,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.18 +28058,,,,,,,,0, +25671,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.81 +15704,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,1.55 +35705,86.0,9.0,9.0,9.0,10.0,8.0,9.0,29,1.92 +67945,96.0,10.0,10.0,10.0,10.0,10.0,10.0,18,1.24 +74894,80.0,10.0,7.0,7.0,8.0,10.0,10.0,3,2.37 +53402,93.0,10.0,9.0,10.0,10.0,9.0,9.0,32,2.11 +41814,88.0,8.0,9.0,10.0,9.0,9.0,8.0,6,0.39 +69473,83.0,9.0,8.0,10.0,9.0,8.0,8.0,26,1.77 +43657,100.0,8.0,10.0,10.0,10.0,10.0,6.0,1,0.86 +16142,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.34 +31277,97.0,10.0,9.0,10.0,10.0,10.0,10.0,6,0.41 +48284,84.0,9.0,9.0,9.0,9.0,8.0,9.0,33,2.17 +49048,100.0,10.0,10.0,10.0,9.0,10.0,9.0,3,1.53 +68922,81.0,9.0,9.0,9.0,8.0,8.0,9.0,14,1.3 +40921,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.94 +18955,95.0,10.0,9.0,9.0,10.0,10.0,10.0,30,2.01 +26001,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +23467,94.0,10.0,9.0,10.0,10.0,10.0,9.0,19,1.26 +46318,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.28 +64475,100.0,10.0,10.0,10.0,10.0,9.0,10.0,15,0.96 +50409,99.0,10.0,10.0,10.0,10.0,9.0,10.0,14,1.17 +49523,99.0,10.0,10.0,9.0,10.0,9.0,9.0,14,0.92 +22376,88.0,8.0,9.0,10.0,10.0,10.0,9.0,18,1.17 +72478,83.0,9.0,9.0,9.0,10.0,9.0,9.0,16,1.03 +60139,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.08 +46948,95.0,10.0,10.0,10.0,10.0,10.0,9.0,25,1.63 +9840,90.0,10.0,9.0,10.0,10.0,9.0,10.0,2,2.0 +40224,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.33 +65022,,,,,,,,0, +12385,91.0,9.0,10.0,9.0,9.0,9.0,9.0,14,0.97 +8942,97.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.46 +4794,96.0,9.0,9.0,9.0,10.0,9.0,9.0,25,1.61 +8900,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.2 +12003,,,,,,,,0, +34472,95.0,10.0,10.0,10.0,9.0,10.0,10.0,13,0.91 +68782,20.0,2.0,10.0,4.0,2.0,2.0,2.0,1,0.07 +38833,,,,,,,,0, +49201,96.0,10.0,9.0,10.0,10.0,10.0,9.0,14,0.91 +44198,80.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.11 +3763,20.0,,,2.0,2.0,,,1,0.07 +39074,,,,,,,,0, +29609,,,,,,,,0, +47463,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.13 +74673,99.0,10.0,10.0,10.0,10.0,10.0,10.0,18,1.18 +70100,93.0,9.0,9.0,10.0,10.0,10.0,9.0,16,1.07 +73853,100.0,10.0,9.0,10.0,10.0,9.0,9.0,12,0.77 +17182,99.0,10.0,10.0,10.0,10.0,9.0,10.0,15,1.08 +18102,100.0,10.0,9.0,10.0,10.0,10.0,9.0,2,0.76 +44776,,,,,,,,0, +50371,85.0,9.0,9.0,10.0,10.0,10.0,9.0,34,2.23 +67315,96.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.41 +74596,93.0,10.0,10.0,10.0,10.0,10.0,9.0,22,1.45 +24392,86.0,10.0,9.0,9.0,9.0,9.0,9.0,13,1.07 +20639,77.0,8.0,9.0,9.0,7.0,8.0,7.0,7,0.52 +49010,94.0,9.0,9.0,10.0,10.0,10.0,10.0,41,2.71 +55733,91.0,9.0,10.0,9.0,9.0,10.0,9.0,7,0.51 +56295,93.0,10.0,9.0,9.0,9.0,9.0,9.0,33,2.16 +50185,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.14 +17888,,,,,,,,0, +29379,90.0,9.0,9.0,10.0,10.0,9.0,9.0,24,1.7 +52900,96.0,10.0,9.0,9.0,10.0,10.0,9.0,29,2.05 +43755,100.0,10.0,10.0,10.0,10.0,7.0,8.0,3,0.2 +292,99.0,10.0,10.0,9.0,10.0,10.0,9.0,32,2.15 +15232,100.0,10.0,10.0,10.0,10.0,10.0,10.0,54,3.85 +28478,30.0,4.0,3.0,3.0,5.0,9.0,4.0,2,0.32 +44606,87.0,10.0,10.0,10.0,10.0,9.0,9.0,11,0.71 +42980,,,,,,,,0, +48123,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.26 +33203,95.0,10.0,10.0,9.0,9.0,10.0,9.0,12,0.81 +47607,,,,,,,,0, +17271,80.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.13 +31969,80.0,9.0,9.0,10.0,10.0,9.0,7.0,3,0.46 +4880,70.0,6.0,9.0,10.0,10.0,8.0,6.0,2,0.17 +65144,90.0,10.0,9.0,10.0,10.0,10.0,9.0,29,2.09 +48237,,,,,,,,0, +23295,,,,,,,,0, +25538,100.0,10.0,10.0,10.0,10.0,10.0,10.0,21,1.41 +34632,100.0,10.0,9.0,10.0,10.0,9.0,10.0,4,0.26 +47519,98.0,10.0,10.0,10.0,10.0,10.0,10.0,27,1.78 +18093,,,,,,,,0, +31118,86.0,9.0,9.0,8.0,9.0,8.0,8.0,7,0.49 +31380,93.0,10.0,9.0,10.0,10.0,9.0,9.0,3,0.32 +59199,93.0,10.0,10.0,9.0,10.0,10.0,9.0,15,1.08 +46203,94.0,10.0,9.0,10.0,10.0,9.0,10.0,25,1.68 +49543,95.0,9.0,7.0,9.0,9.0,10.0,10.0,4,0.33 +24506,,,,,,,,0, +13690,87.0,9.0,9.0,9.0,10.0,10.0,9.0,14,1.22 +27998,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.06 +47064,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.74 +29973,,,,,,,,1,0.07 +9121,100.0,10.0,10.0,10.0,10.0,9.0,9.0,11,0.72 +40498,,,,,,,,0, +16623,88.0,9.0,9.0,9.0,9.0,10.0,9.0,27,1.73 +47959,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +66543,,,,,,,,0, +69747,87.0,9.0,9.0,10.0,10.0,10.0,10.0,3,0.2 +31550,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.13 +39466,,,,,,,,0, +4528,97.0,10.0,9.0,10.0,10.0,9.0,9.0,6,0.39 +41413,100.0,10.0,9.0,10.0,10.0,10.0,9.0,4,0.26 +9451,90.0,9.0,7.0,10.0,10.0,10.0,9.0,4,0.27 +56164,99.0,10.0,10.0,10.0,10.0,10.0,10.0,58,3.83 +42418,98.0,10.0,10.0,10.0,10.0,10.0,10.0,78,5.14 +38717,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.28 +34933,100.0,9.0,9.0,10.0,9.0,9.0,9.0,3,0.43 +36861,,,,,,,,0, +11163,89.0,10.0,9.0,10.0,10.0,9.0,10.0,13,0.91 +60394,,,,,,,,0, +30278,85.0,9.0,9.0,9.0,10.0,9.0,9.0,9,1.29 +12559,100.0,10.0,8.0,10.0,10.0,9.0,10.0,4,0.26 +33135,92.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.35 +16990,,,,,,,,0, +17790,98.0,10.0,10.0,10.0,10.0,10.0,10.0,91,6.07 +23526,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.07 +63497,100.0,8.0,8.0,8.0,8.0,8.0,8.0,1,0.07 +52533,,,,,,,,0, +51931,97.0,10.0,9.0,10.0,10.0,10.0,9.0,7,2.08 +71491,90.0,10.0,10.0,8.0,10.0,10.0,10.0,2,0.14 +43314,,,,,,,,0, +50494,,,,,,,,0, +56965,97.0,10.0,10.0,10.0,10.0,9.0,10.0,18,1.19 +61213,100.0,10.0,10.0,10.0,10.0,10.0,10.0,39,2.5 +58543,93.0,9.0,10.0,9.0,10.0,10.0,10.0,8,0.54 +16012,100.0,10.0,10.0,10.0,10.0,10.0,10.0,19,1.44 +30595,,,,,,,,1, +32434,96.0,10.0,9.0,10.0,10.0,9.0,10.0,25,1.66 +63993,99.0,10.0,9.0,10.0,10.0,9.0,10.0,23,1.79 +71154,93.0,10.0,9.0,9.0,9.0,8.0,9.0,6,0.39 +54072,,,,,,,,1,0.07 +21670,100.0,10.0,10.0,10.0,10.0,9.0,10.0,13,1.05 +46076,94.0,10.0,9.0,10.0,10.0,10.0,9.0,29,1.88 +18883,96.0,10.0,9.0,10.0,10.0,10.0,9.0,45,2.99 +8677,95.0,9.0,10.0,10.0,10.0,10.0,10.0,19,1.21 +35609,96.0,10.0,9.0,10.0,10.0,10.0,10.0,37,2.37 +36542,,,,,,,,1,0.14 +6183,,,,,,,,2,0.14 +35234,,,,,,,,0, +34776,,,,,,,,0, +62127,,,,,,,,1, +74540,88.0,9.0,9.0,9.0,9.0,9.0,9.0,40,2.62 +69544,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.87 +39828,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.14 +2102,91.0,10.0,10.0,9.0,10.0,10.0,9.0,32,2.22 +34558,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.08 +45641,,,,,,,,0, +76602,,,,,,,,0, +35619,90.0,10.0,9.0,10.0,10.0,10.0,9.0,5,0.51 +7730,96.0,10.0,10.0,10.0,10.0,9.0,10.0,20,1.34 +38569,97.0,10.0,10.0,9.0,10.0,9.0,10.0,7,0.67 +32687,91.0,10.0,10.0,9.0,9.0,10.0,9.0,34,2.25 +4423,94.0,9.0,9.0,10.0,10.0,10.0,9.0,13,0.85 +22933,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.29 +59561,100.0,10.0,10.0,8.0,10.0,10.0,10.0,1,0.08 +11644,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.07 +73421,100.0,9.0,9.0,9.0,10.0,10.0,10.0,2,0.13 +36643,84.0,9.0,8.0,9.0,9.0,9.0,8.0,5,0.33 +53868,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.19 +274,75.0,8.0,7.0,8.0,9.0,8.0,8.0,4,1.07 +16399,97.0,10.0,10.0,10.0,10.0,10.0,9.0,29,4.24 +20612,83.0,9.0,9.0,9.0,9.0,9.0,9.0,6,0.69 +56066,,,,,,,,0, +18246,94.0,10.0,10.0,10.0,10.0,10.0,9.0,64,4.25 +74964,,,,,,,,0, +67303,95.0,9.0,10.0,10.0,10.0,10.0,10.0,4,0.26 +55017,,,,,,,,0, +37473,92.0,10.0,9.0,10.0,9.0,10.0,9.0,35,2.27 +66581,100.0,10.0,10.0,10.0,10.0,10.0,10.0,15,1.09 +70740,96.0,10.0,9.0,9.0,10.0,9.0,9.0,18,1.17 +57793,100.0,10.0,9.0,10.0,10.0,8.0,9.0,2,0.13 +73341,71.0,8.0,7.0,8.0,9.0,10.0,7.0,8,0.58 +31640,92.0,10.0,9.0,10.0,10.0,9.0,10.0,29,1.97 +56570,93.0,10.0,9.0,10.0,9.0,9.0,9.0,27,1.8 +4842,80.0,9.0,8.0,9.0,9.0,8.0,9.0,91,5.92 +49981,100.0,10.0,10.0,10.0,10.0,9.0,10.0,20,1.34 +56720,,,,,,,,0, +43120,97.0,10.0,10.0,10.0,10.0,10.0,10.0,133,8.75 +30861,,,,,,,,0, +7841,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.59 +52248,,,,,,,,0, +7956,98.0,10.0,9.0,10.0,10.0,10.0,9.0,30,2.0 +4161,96.0,10.0,10.0,10.0,10.0,9.0,9.0,17,1.15 +39280,96.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.32 +4858,,,,,,,,0, +46194,,,,,,,,0, +43584,,,,,,,,0, +56912,91.0,9.0,9.0,8.0,9.0,10.0,9.0,30,1.99 +51918,87.0,9.0,9.0,9.0,9.0,9.0,9.0,25,1.65 +4040,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.41 +60805,93.0,10.0,9.0,9.0,10.0,10.0,10.0,3,0.2 +3766,100.0,10.0,10.0,10.0,9.0,10.0,10.0,5,0.42 +16060,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.2 +75763,,,,,,,,0, +62694,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.82 +2650,,,,,,,,0, +10922,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.15 +37982,,,,,,,,0, +36511,,,,,,,,0, +24045,90.0,9.0,8.0,9.0,10.0,10.0,9.0,12,0.85 +45086,88.0,9.0,9.0,9.0,8.0,9.0,9.0,13,0.87 +67093,80.0,8.0,9.0,8.0,9.0,9.0,9.0,25,1.66 +3769,95.0,10.0,9.0,10.0,10.0,9.0,9.0,22,1.5 +55480,95.0,10.0,10.0,10.0,10.0,10.0,9.0,52,3.36 +42029,100.0,10.0,10.0,10.0,10.0,10.0,10.0,31,2.37 +4269,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.73 +68357,,,,,,,,0, +1015,89.0,9.0,9.0,9.0,9.0,10.0,9.0,37,2.43 +13421,97.0,10.0,10.0,10.0,10.0,10.0,9.0,13,0.87 +60539,96.0,10.0,9.0,10.0,10.0,10.0,10.0,23,1.65 +7838,84.0,9.0,8.0,8.0,9.0,9.0,9.0,15,1.05 +21517,80.0,9.0,8.0,9.0,9.0,8.0,9.0,83,5.4 +44635,,,,,,,,0, +8268,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.32 +69357,97.0,10.0,10.0,10.0,10.0,9.0,9.0,6,0.48 +58291,,,,,,,,0, +70813,94.0,9.0,10.0,10.0,10.0,10.0,9.0,11,0.73 +63130,100.0,8.0,10.0,10.0,10.0,10.0,10.0,2,0.13 +15881,98.0,10.0,10.0,10.0,10.0,9.0,10.0,32,2.14 +18876,96.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.41 +1725,100.0,10.0,10.0,10.0,10.0,9.0,10.0,9,0.61 +207,,,,,,,,0, +26760,100.0,9.0,9.0,10.0,9.0,9.0,9.0,2,0.13 +14728,95.0,10.0,10.0,10.0,10.0,10.0,9.0,12,0.78 +76547,98.0,10.0,10.0,10.0,10.0,10.0,10.0,20,1.28 +72705,88.0,10.0,10.0,8.0,8.0,10.0,9.0,21,1.67 +54407,,,,,,,,0, +26871,100.0,10.0,10.0,9.0,10.0,6.0,8.0,2,0.34 +23424,97.0,10.0,10.0,10.0,10.0,9.0,10.0,50,3.21 +63874,,,,,,,,0, +20894,96.0,10.0,10.0,9.0,9.0,10.0,9.0,28,1.94 +19479,83.0,9.0,9.0,9.0,9.0,8.0,8.0,8,0.65 +71525,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.16 +49257,94.0,9.0,10.0,10.0,10.0,10.0,9.0,10,0.66 +62434,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.53 +25964,,,,,,,,0, +35067,90.0,10.0,9.0,8.0,9.0,10.0,10.0,5,0.33 +57308,100.0,10.0,10.0,10.0,10.0,10.0,10.0,29,1.87 +59950,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.64 +10840,99.0,10.0,10.0,10.0,10.0,10.0,10.0,48,3.32 +72387,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,3.16 +36034,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.13 +7598,100.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.13 +26594,98.0,10.0,10.0,10.0,10.0,10.0,10.0,46,3.26 +35934,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.07 +55519,,,,,,,,0, +32601,97.0,10.0,10.0,10.0,10.0,10.0,10.0,25,1.67 +71502,85.0,10.0,8.0,9.0,9.0,10.0,9.0,5,0.36 +34066,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.69 +34162,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.33 +5446,,,,,,,,0, +49625,,,,,,,,0, +5303,99.0,10.0,10.0,10.0,10.0,10.0,10.0,18,1.21 +21567,93.0,9.0,10.0,10.0,10.0,10.0,9.0,14,0.98 +42702,87.0,10.0,10.0,8.0,9.0,10.0,9.0,25,1.88 +39739,94.0,10.0,10.0,10.0,10.0,8.0,9.0,134,9.85 +48096,86.0,8.0,9.0,10.0,9.0,9.0,8.0,13,0.86 +70279,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.24 +69092,97.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.46 +34459,,,,,,,,1,0.07 +30033,96.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.33 +63522,94.0,10.0,9.0,10.0,10.0,10.0,10.0,28,1.94 +28535,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.13 +73410,86.0,9.0,8.0,9.0,9.0,9.0,9.0,47,3.07 +6844,100.0,10.0,10.0,10.0,10.0,4.0,10.0,1,0.07 +16931,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.08 +55634,87.0,10.0,8.0,10.0,10.0,10.0,8.0,6,0.4 +45299,,,,,,,,0, +16248,93.0,10.0,9.0,10.0,9.0,10.0,9.0,21,1.49 +64455,99.0,10.0,10.0,10.0,10.0,10.0,10.0,18,1.18 +5810,96.0,9.0,9.0,10.0,9.0,10.0,9.0,9,0.6 +14834,90.0,10.0,9.0,10.0,10.0,9.0,10.0,7,0.46 +67413,82.0,9.0,8.0,9.0,9.0,9.0,8.0,39,2.57 +656,94.0,10.0,10.0,10.0,9.0,9.0,9.0,9,0.6 +30334,96.0,10.0,9.0,10.0,10.0,10.0,9.0,33,2.29 +61567,99.0,10.0,10.0,10.0,10.0,9.0,10.0,16,1.06 +66196,93.0,10.0,9.0,10.0,10.0,10.0,9.0,17,1.29 +47676,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.14 +45805,92.0,9.0,9.0,10.0,10.0,10.0,9.0,20,1.31 +11045,82.0,9.0,9.0,9.0,9.0,9.0,9.0,71,4.58 +50048,,,,,,,,0, +11590,,,,,,,,0, +20119,,,,,,,,0, +50491,82.0,9.0,9.0,9.0,9.0,10.0,8.0,11,0.83 +56010,93.0,10.0,10.0,9.0,10.0,10.0,9.0,27,2.11 +49805,93.0,10.0,10.0,9.0,10.0,10.0,9.0,35,2.79 +75454,90.0,9.0,9.0,10.0,10.0,9.0,9.0,2,0.14 +33205,100.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.18 +17046,100.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.37 +21975,96.0,10.0,10.0,10.0,10.0,9.0,10.0,59,4.32 +68034,,,,,,,,0, +52800,91.0,9.0,9.0,9.0,10.0,10.0,9.0,46,3.09 +40982,78.0,8.0,7.0,8.0,9.0,8.0,9.0,8,0.54 +25340,,,,,,,,0, +34008,91.0,10.0,9.0,10.0,9.0,9.0,9.0,15,1.0 +1798,,,,,,,,0, +30020,60.0,10.0,10.0,8.0,6.0,8.0,8.0,3,0.2 +39392,100.0,10.0,10.0,9.0,10.0,9.0,10.0,2,0.14 +37589,87.0,9.0,8.0,9.0,9.0,10.0,8.0,7,0.48 +53708,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.34 +1749,,,,,,,,0, +42230,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.08 +13541,98.0,10.0,10.0,10.0,10.0,10.0,10.0,21,1.43 +12068,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.26 +49592,99.0,10.0,10.0,10.0,10.0,10.0,10.0,15,1.5 +28164,89.0,9.0,9.0,9.0,9.0,9.0,9.0,21,1.43 +75961,92.0,10.0,9.0,10.0,10.0,9.0,9.0,34,2.37 +30806,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.08 +34951,,,,,,,,0, +54461,,,,,,,,0, +39304,88.0,10.0,9.0,9.0,8.0,10.0,9.0,12,0.84 +61860,89.0,9.0,9.0,10.0,10.0,9.0,9.0,56,3.73 +24984,90.0,10.0,9.0,10.0,10.0,8.0,10.0,6,0.49 +2175,89.0,9.0,9.0,9.0,9.0,9.0,9.0,102,6.57 +28036,95.0,10.0,10.0,10.0,10.0,10.0,10.0,35,2.27 +44120,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.59 +16300,98.0,10.0,10.0,10.0,10.0,10.0,10.0,85,5.57 +14832,91.0,9.0,9.0,10.0,10.0,10.0,9.0,28,1.83 +10870,98.0,10.0,10.0,10.0,10.0,10.0,10.0,17,1.18 +58835,92.0,9.0,9.0,9.0,10.0,10.0,9.0,10,0.68 +54599,80.0,8.0,5.0,10.0,10.0,10.0,8.0,2,0.13 +15066,,,,,,,,0, +66686,,,,,,,,0, +60081,98.0,10.0,10.0,10.0,10.0,9.0,9.0,10,0.67 +73775,99.0,10.0,10.0,10.0,10.0,9.0,10.0,103,6.7 +63777,92.0,9.0,10.0,9.0,9.0,9.0,9.0,17,1.12 +6163,100.0,10.0,10.0,10.0,10.0,10.0,8.0,2,0.52 +49547,,,,,,,,0, +36442,97.0,10.0,9.0,10.0,10.0,10.0,9.0,6,0.52 +72739,93.0,8.0,7.0,10.0,10.0,7.0,9.0,3,0.6 +74716,93.0,10.0,9.0,10.0,10.0,9.0,9.0,29,1.91 +40320,80.0,10.0,8.0,9.0,10.0,10.0,9.0,16,1.05 +15002,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +30424,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.09 +15379,95.0,10.0,9.0,10.0,10.0,9.0,9.0,17,1.1 +67456,88.0,9.0,9.0,9.0,9.0,9.0,9.0,24,1.59 +36318,100.0,9.0,10.0,10.0,9.0,10.0,10.0,2,0.25 +13864,100.0,10.0,8.0,10.0,10.0,8.0,10.0,1,0.07 +47291,97.0,9.0,10.0,10.0,10.0,9.0,9.0,7,0.47 +21940,93.0,10.0,10.0,10.0,10.0,9.0,9.0,6,0.43 +12720,94.0,9.0,9.0,9.0,10.0,10.0,10.0,21,1.49 +20245,92.0,10.0,10.0,9.0,10.0,10.0,9.0,27,2.64 +34480,100.0,10.0,9.0,10.0,10.0,10.0,9.0,2,0.34 +27276,,,,,,,,1,0.09 +75790,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.57 +27931,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,1.42 +42934,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +14212,,,,,,,,0, +72904,96.0,10.0,10.0,10.0,10.0,10.0,9.0,26,1.71 +32100,90.0,9.0,10.0,10.0,10.0,10.0,9.0,9,0.76 +35702,95.0,10.0,10.0,10.0,10.0,10.0,9.0,21,1.92 +12937,84.0,9.0,7.0,10.0,10.0,9.0,9.0,18,1.94 +36618,90.0,10.0,10.0,9.0,10.0,10.0,9.0,14,1.24 +6685,87.0,9.0,8.0,9.0,9.0,9.0,8.0,9,0.63 +46737,89.0,9.0,10.0,10.0,10.0,9.0,9.0,11,0.96 +16807,94.0,10.0,10.0,9.0,10.0,10.0,9.0,20,1.69 +26844,84.0,9.0,9.0,10.0,8.0,10.0,8.0,5,0.35 +57365,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.71 +9504,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.2 +12595,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.3 +73083,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.41 +16088,80.0,9.0,9.0,9.0,9.0,9.0,8.0,15,1.22 +64243,92.0,10.0,9.0,10.0,10.0,9.0,10.0,20,1.31 +72928,97.0,10.0,10.0,10.0,9.0,9.0,10.0,6,0.41 +41593,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.75 +72826,94.0,9.0,9.0,10.0,10.0,10.0,9.0,22,1.46 +55746,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.27 +66290,97.0,9.0,10.0,10.0,9.0,9.0,9.0,12,0.97 +76817,88.0,8.0,10.0,10.0,10.0,10.0,10.0,5,0.34 +23781,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.15 +35877,94.0,10.0,10.0,10.0,10.0,10.0,9.0,44,2.94 +23490,100.0,10.0,8.0,9.0,10.0,8.0,9.0,3,0.21 +3610,100.0,10.0,10.0,10.0,10.0,9.0,10.0,12,1.16 +46914,94.0,10.0,9.0,10.0,10.0,10.0,9.0,21,1.39 +53339,93.0,10.0,10.0,10.0,10.0,10.0,9.0,11,0.95 +43790,80.0,9.0,8.0,9.0,8.0,10.0,8.0,66,4.35 +46417,,,,,,,,0, +4575,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.8 +76917,89.0,10.0,9.0,9.0,9.0,9.0,9.0,11,0.75 +20634,98.0,10.0,10.0,10.0,10.0,10.0,10.0,22,1.5 +175,100.0,9.0,10.0,8.0,10.0,9.0,9.0,4,0.27 +75989,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.5 +9248,90.0,9.0,9.0,9.0,9.0,10.0,9.0,25,1.64 +55459,95.0,10.0,10.0,10.0,10.0,9.0,10.0,22,1.45 +73873,,,,,,,,0, +54235,100.0,9.0,10.0,10.0,10.0,9.0,9.0,3,0.2 +3157,69.0,7.0,7.0,7.0,7.0,8.0,7.0,8,0.53 +64889,72.0,8.0,8.0,8.0,8.0,9.0,8.0,11,0.75 +31306,97.0,10.0,10.0,9.0,10.0,10.0,9.0,38,2.6 +44976,60.0,6.0,8.0,10.0,10.0,8.0,8.0,1,0.07 +56643,100.0,10.0,10.0,,10.0,,,1,0.09 +66751,91.0,9.0,10.0,10.0,10.0,10.0,9.0,14,0.93 +15087,,,,,,,,0, +58768,,,,,,,,0, +24090,93.0,10.0,10.0,10.0,10.0,7.0,9.0,4,0.55 +21515,89.0,9.0,10.0,9.0,9.0,10.0,9.0,34,2.27 +30075,98.0,10.0,10.0,10.0,10.0,10.0,10.0,146,9.58 +25600,,,,,,,,0, +27229,,,,,,,,0, +64150,,,,,,,,0, +19289,70.0,8.0,8.0,7.0,5.0,8.0,8.0,2,0.26 +33039,90.0,9.0,9.0,8.0,10.0,9.0,9.0,4,0.35 +69191,100.0,10.0,10.0,10.0,10.0,10.0,10.0,25,1.69 +58604,91.0,10.0,9.0,10.0,10.0,10.0,9.0,22,1.59 +16185,80.0,9.0,8.0,8.0,8.0,10.0,9.0,2,0.13 +3733,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.61 +64928,100.0,10.0,10.0,10.0,10.0,8.0,10.0,2,0.17 +32104,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.19 +51775,97.0,9.0,10.0,10.0,10.0,9.0,10.0,6,0.4 +23024,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.7 +56270,,,,,,,,0, +62684,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.13 +13265,100.0,10.0,10.0,8.0,10.0,10.0,9.0,2,0.13 +76839,,,,,,,,0, +69062,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.21 +57387,,,,,,,,0, +3960,80.0,8.0,10.0,10.0,10.0,10.0,8.0,1,0.07 +45286,89.0,9.0,9.0,9.0,9.0,10.0,9.0,37,2.46 +25158,,,,,,,,1,0.09 +45958,,,,,,,,0, +40990,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.12 +54789,,,,,,,,0, +12867,96.0,9.0,10.0,10.0,10.0,9.0,10.0,33,2.19 +55531,80.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.07 +76989,92.0,10.0,9.0,10.0,10.0,10.0,9.0,50,3.33 +57406,,,,,,,,5,0.34 +69297,,,,,,,,0, +48762,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +14619,,,,,,,,0, +3172,90.0,10.0,9.0,9.0,9.0,9.0,10.0,12,0.8 +47764,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.15 +76718,86.0,9.0,9.0,8.0,10.0,10.0,9.0,14,1.08 +40668,,,,,,,,0, +47765,97.0,10.0,10.0,9.0,10.0,10.0,10.0,13,0.96 +12798,,,,,,,,0, +40378,100.0,10.0,10.0,10.0,10.0,8.0,10.0,5,0.36 +44375,,,,,,,,0, +28884,,,,,,,,0, +29135,100.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.44 +8026,96.0,10.0,9.0,10.0,10.0,10.0,9.0,11,0.75 +45511,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.9 +52523,,,,,,,,0, +2719,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.29 +66255,97.0,10.0,10.0,10.0,10.0,10.0,9.0,34,2.26 +51224,87.0,9.0,9.0,9.0,9.0,9.0,9.0,11,0.77 +50827,88.0,9.0,9.0,9.0,9.0,9.0,9.0,20,1.3 +56960,,,,,,,,0, +6390,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.17 +44629,80.0,8.0,9.0,10.0,9.0,10.0,8.0,2,0.14 +73451,,,,,,,,0, +76981,,,,,,,,0, +71731,96.0,9.0,10.0,10.0,10.0,9.0,9.0,11,0.71 +62841,94.0,10.0,9.0,10.0,10.0,9.0,9.0,21,1.48 +21440,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +65,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.34 +76109,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.08 +44138,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.2 +42617,100.0,10.0,10.0,10.0,10.0,9.0,10.0,20,1.32 +69490,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.13 +29733,92.0,10.0,9.0,10.0,10.0,9.0,9.0,59,3.88 +26977,,,,,,,,0, +71723,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.2 +57729,,,,,,,,0, +43484,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.2 +63739,89.0,9.0,9.0,9.0,9.0,10.0,9.0,19,1.3 +61978,95.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.34 +72874,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.22 +26536,,,,,,,,0, +61099,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.98 +65059,,,,,,,,0, +59460,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.36 +28881,80.0,9.0,7.0,9.0,9.0,7.0,8.0,2,0.27 +72289,93.0,10.0,9.0,9.0,10.0,10.0,10.0,4,0.27 +65292,87.0,9.0,8.0,10.0,10.0,10.0,8.0,11,0.72 +37819,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.14 +3387,,,,,,,,0, +53902,96.0,10.0,8.0,10.0,10.0,9.0,9.0,5,0.33 +61532,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.1 +58163,87.0,9.0,10.0,9.0,9.0,9.0,9.0,3,1.45 +28394,,,,,,,,0, +41778,97.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.79 +72599,90.0,9.0,10.0,10.0,9.0,9.0,9.0,2,0.13 +19886,,,,,,,,0, +76648,,,,,,,,0, +8833,65.0,7.0,8.0,8.0,7.0,10.0,8.0,4,0.63 +40339,,,,,,,,0, +41329,60.0,7.0,8.0,7.0,5.0,9.0,8.0,5,0.35 +23624,80.0,8.0,10.0,9.0,8.0,10.0,8.0,6,0.45 +57211,,,,,,,,1,0.07 +41500,91.0,9.0,9.0,8.0,9.0,10.0,9.0,34,2.3 +26281,100.0,9.0,10.0,9.0,10.0,9.0,10.0,2,0.14 +6463,94.0,10.0,9.0,10.0,10.0,10.0,9.0,29,3.1 +17765,86.0,9.0,10.0,8.0,8.0,9.0,9.0,10,0.72 +2499,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +68942,100.0,10.0,10.0,10.0,10.0,10.0,9.0,7,0.74 +30275,95.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.37 +19932,74.0,8.0,8.0,10.0,9.0,10.0,8.0,16,1.06 +32059,81.0,9.0,8.0,9.0,9.0,9.0,8.0,19,1.29 +70110,90.0,10.0,10.0,10.0,10.0,9.0,9.0,8,0.55 +40819,96.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.34 +15869,90.0,9.0,9.0,9.0,9.0,9.0,9.0,28,1.89 +59940,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.5 +27703,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +9361,,,,,,,,1,0.33 +18527,91.0,9.0,9.0,10.0,10.0,9.0,10.0,7,0.63 +49148,92.0,9.0,9.0,10.0,10.0,10.0,9.0,12,0.82 +62513,98.0,10.0,10.0,10.0,10.0,10.0,10.0,46,3.04 +60500,,,,,,,,0, +23987,90.0,9.0,10.0,10.0,10.0,10.0,10.0,2,0.73 +52260,85.0,10.0,7.0,10.0,10.0,9.0,9.0,4,0.27 +60648,93.0,10.0,10.0,10.0,10.0,8.0,9.0,32,2.13 +39108,,,,,,,,1,0.07 +68267,80.0,8.0,8.0,8.0,8.0,8.0,8.0,1,0.21 +31088,92.0,8.0,9.0,8.0,10.0,9.0,10.0,5,0.33 +64587,93.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.2 +65577,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.21 +49245,,,,,,,,0, +8788,85.0,9.0,10.0,10.0,10.0,10.0,9.0,5,0.33 +31690,100.0,10.0,8.0,10.0,10.0,8.0,8.0,2,0.13 +13563,93.0,9.0,9.0,10.0,10.0,9.0,9.0,55,3.96 +48378,99.0,10.0,10.0,10.0,10.0,10.0,9.0,31,2.11 +10483,100.0,10.0,10.0,10.0,10.0,9.0,10.0,11,0.78 +52284,68.0,7.0,6.0,10.0,10.0,9.0,8.0,6,0.4 +32800,98.0,10.0,10.0,10.0,10.0,10.0,10.0,51,3.49 +76067,85.0,9.0,8.0,9.0,9.0,9.0,9.0,12,0.99 +5975,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.39 +54034,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.77 +67837,100.0,10.0,10.0,9.0,10.0,10.0,10.0,5,0.34 +20368,91.0,9.0,9.0,10.0,9.0,10.0,8.0,14,0.98 +42491,93.0,10.0,9.0,10.0,10.0,10.0,10.0,24,1.64 +26939,99.0,10.0,10.0,10.0,10.0,10.0,10.0,35,2.34 +48706,100.0,10.0,10.0,10.0,10.0,10.0,10.0,15,1.02 +73685,81.0,9.0,9.0,9.0,9.0,10.0,8.0,14,1.18 +64867,98.0,9.0,9.0,10.0,10.0,9.0,10.0,14,0.97 +41152,96.0,10.0,10.0,10.0,10.0,10.0,9.0,50,3.34 +1664,,,,,,,,0, +43906,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.2 +21311,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.81 +29487,100.0,10.0,10.0,10.0,10.0,10.0,10.0,15,1.16 +70622,100.0,9.0,9.0,9.0,10.0,10.0,10.0,5,0.34 +72496,,,,,,,,0, +2321,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +62178,90.0,10.0,9.0,10.0,10.0,10.0,9.0,4,0.29 +71814,95.0,10.0,9.0,10.0,10.0,10.0,10.0,8,0.54 +1149,,,,,,,,0, +75624,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.97 +26483,99.0,10.0,10.0,10.0,10.0,10.0,10.0,37,2.58 +72467,,,,,,,,1,0.18 +16772,,,,,,,,0, +5064,96.0,10.0,10.0,10.0,10.0,10.0,10.0,14,1.04 +33679,96.0,9.0,10.0,10.0,10.0,9.0,10.0,11,0.73 +32488,97.0,10.0,10.0,10.0,10.0,9.0,10.0,30,1.97 +70,98.0,10.0,10.0,10.0,10.0,10.0,10.0,23,1.83 +28159,93.0,9.0,9.0,9.0,10.0,10.0,9.0,3,0.26 +32569,,,,,,,,1,0.07 +60052,,,,,,,,0, +68340,97.0,10.0,9.0,10.0,10.0,9.0,9.0,6,0.42 +3542,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.4 +18147,80.0,9.0,7.0,10.0,10.0,7.0,8.0,2,0.14 +56590,,,,,,,,0, +54464,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.2 +66432,90.0,10.0,10.0,10.0,10.0,9.0,9.0,10,0.68 +68072,98.0,10.0,10.0,10.0,10.0,10.0,9.0,10,0.68 +73605,99.0,10.0,10.0,10.0,10.0,10.0,10.0,25,1.67 +12184,95.0,10.0,9.0,10.0,10.0,10.0,9.0,5,0.4 +22723,83.0,9.0,9.0,10.0,10.0,9.0,9.0,40,2.71 +22739,94.0,10.0,10.0,10.0,10.0,9.0,9.0,10,0.73 +14077,,,,,,,,0, +70535,89.0,10.0,9.0,10.0,10.0,10.0,9.0,31,2.11 +5715,95.0,10.0,9.0,10.0,10.0,10.0,10.0,10,0.73 +63308,70.0,8.0,9.0,10.0,9.0,10.0,9.0,2,0.13 +35361,92.0,9.0,10.0,10.0,10.0,10.0,9.0,47,3.07 +16422,60.0,8.0,4.0,10.0,10.0,10.0,10.0,2,0.13 +59170,94.0,10.0,9.0,9.0,10.0,10.0,10.0,23,1.53 +66860,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.22 +47468,75.0,9.0,7.0,10.0,10.0,10.0,9.0,4,0.26 +47797,,,,,,,,0, +39723,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +42611,98.0,10.0,10.0,10.0,10.0,10.0,10.0,26,1.82 +18259,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.2 +26035,89.0,9.0,9.0,10.0,10.0,10.0,9.0,18,1.24 +38943,,,,,,,,1,0.13 +4305,93.0,10.0,9.0,10.0,10.0,10.0,10.0,15,0.98 +38879,,,,,,,,0, +6884,100.0,10.0,10.0,10.0,10.0,10.0,10.0,23,1.53 +46754,,,,,,,,0, +44729,100.0,10.0,9.0,10.0,10.0,10.0,10.0,10,0.67 +40995,,,,,,,,1,0.07 +26456,,,,,,,,0, +14122,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.59 +18257,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.38 +54688,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.17 +75233,90.0,10.0,9.0,10.0,10.0,9.0,10.0,2,0.14 +19304,,,,,,,,0, +5615,98.0,10.0,10.0,10.0,10.0,9.0,10.0,9,0.59 +38208,100.0,10.0,10.0,9.0,10.0,10.0,10.0,4,0.27 +15828,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.24 +70381,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +33488,,,,,,,,0, +19805,100.0,10.0,8.0,10.0,10.0,10.0,10.0,6,0.39 +22090,82.0,9.0,8.0,9.0,9.0,9.0,9.0,40,2.67 +64918,,,,,,,,0, +33174,85.0,9.0,9.0,9.0,9.0,9.0,9.0,48,3.27 +16625,86.0,9.0,9.0,10.0,9.0,9.0,9.0,31,2.06 +29501,100.0,10.0,10.0,10.0,10.0,6.0,8.0,1,0.07 +72445,85.0,9.0,9.0,9.0,9.0,8.0,9.0,34,2.3 +30063,86.0,9.0,9.0,9.0,10.0,9.0,9.0,26,1.78 +13365,93.0,10.0,9.0,9.0,10.0,9.0,9.0,18,1.22 +31756,,,,,,,,0, +75757,93.0,9.0,8.0,10.0,10.0,9.0,10.0,3,0.36 +1709,80.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +58536,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.64 +13471,,,,,,,,0, +46191,90.0,10.0,9.0,10.0,8.0,9.0,9.0,4,0.27 +18970,80.0,10.0,8.0,8.0,8.0,10.0,10.0,2,0.13 +66263,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.3 +18282,74.0,7.0,7.0,9.0,9.0,8.0,8.0,22,1.49 +55005,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.13 +3098,94.0,10.0,10.0,10.0,10.0,9.0,10.0,32,2.11 +56452,100.0,10.0,9.0,10.0,10.0,10.0,9.0,2,0.17 +51338,96.0,10.0,10.0,10.0,10.0,10.0,9.0,11,0.98 +5961,95.0,10.0,10.0,10.0,10.0,9.0,10.0,16,1.05 +66769,99.0,10.0,10.0,10.0,10.0,10.0,10.0,30,2.09 +22536,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +48559,93.0,10.0,9.0,10.0,10.0,10.0,10.0,8,0.54 +38395,95.0,10.0,9.0,10.0,10.0,9.0,10.0,23,1.55 +34719,92.0,9.0,9.0,9.0,9.0,9.0,9.0,15,0.99 +23005,99.0,10.0,10.0,10.0,10.0,10.0,10.0,17,1.16 +39324,,,,,,,,0, +55074,99.0,10.0,10.0,10.0,10.0,10.0,10.0,26,1.8 +29731,89.0,9.0,9.0,9.0,10.0,8.0,9.0,9,0.68 +8844,83.0,9.0,8.0,9.0,9.0,9.0,8.0,75,5.32 +27748,84.0,9.0,9.0,9.0,9.0,10.0,9.0,21,1.38 +16039,84.0,9.0,9.0,8.0,8.0,9.0,9.0,67,4.7 +56511,94.0,9.0,9.0,10.0,10.0,10.0,10.0,11,0.73 +34852,92.0,10.0,9.0,10.0,10.0,10.0,9.0,35,2.32 +8937,98.0,10.0,10.0,10.0,10.0,9.0,10.0,41,2.69 +66956,92.0,9.0,9.0,10.0,10.0,9.0,9.0,32,2.09 +22755,20.0,2.0,,,2.0,,,2,0.13 +57086,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +10479,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.2 +34913,,,,,,,,0, +19278,95.0,10.0,9.0,9.0,10.0,9.0,10.0,26,1.8 +34477,,,,,,,,0, +16612,100.0,10.0,6.0,10.0,10.0,10.0,10.0,1,0.13 +32359,93.0,10.0,9.0,10.0,10.0,10.0,9.0,6,0.39 +63825,91.0,9.0,10.0,9.0,10.0,10.0,10.0,19,4.49 +33260,100.0,10.0,10.0,8.0,10.0,10.0,10.0,1,0.22 +46679,95.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.56 +44927,95.0,10.0,9.0,10.0,10.0,9.0,9.0,11,0.85 +61727,,,,,,,,0, +15168,96.0,10.0,10.0,10.0,9.0,10.0,10.0,29,1.94 +71394,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.22 +26998,87.0,9.0,9.0,8.0,9.0,10.0,8.0,12,0.86 +50567,,,,,,,,0, +28920,,,,,,,,0, +42411,,,,,,,,0, +37949,,,,,,,,0, +20414,94.0,10.0,9.0,10.0,10.0,10.0,9.0,13,0.89 +39081,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +277,96.0,10.0,9.0,10.0,10.0,10.0,10.0,27,1.8 +63112,87.0,10.0,9.0,9.0,9.0,10.0,9.0,6,0.45 +68850,93.0,10.0,9.0,9.0,10.0,10.0,9.0,24,1.59 +64252,,,,,,,,0, +62006,94.0,10.0,9.0,10.0,10.0,8.0,9.0,14,1.0 +36843,92.0,9.0,9.0,10.0,10.0,10.0,9.0,50,3.46 +28121,93.0,10.0,10.0,10.0,10.0,10.0,10.0,39,2.62 +76533,84.0,9.0,9.0,9.0,9.0,8.0,8.0,20,1.92 +65379,97.0,10.0,10.0,10.0,10.0,10.0,10.0,29,1.94 +25251,,,,,,,,1,0.08 +14243,96.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.48 +1269,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.14 +75590,100.0,9.0,10.0,10.0,10.0,9.0,9.0,3,0.25 +4355,92.0,10.0,10.0,9.0,10.0,9.0,9.0,11,0.77 +63239,,,,,,,,0, +73733,100.0,10.0,10.0,10.0,10.0,10.0,10.0,37,2.61 +29925,,,,,,,,0, +2575,100.0,10.0,9.0,10.0,10.0,9.0,10.0,2,0.13 +30802,80.0,9.0,9.0,9.0,10.0,10.0,9.0,3,0.26 +64655,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.4 +62422,,,,,,,,2,0.13 +56930,95.0,10.0,10.0,9.0,10.0,10.0,9.0,16,1.12 +20728,,,,,,,,0, +31027,80.0,10.0,10.0,10.0,10.0,6.0,8.0,2,0.13 +32234,96.0,10.0,10.0,9.0,10.0,10.0,10.0,73,4.98 +58554,90.0,9.0,9.0,10.0,10.0,9.0,9.0,3,0.2 +13913,96.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.72 +43488,93.0,10.0,10.0,10.0,10.0,9.0,9.0,34,2.25 +11556,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.49 +54057,95.0,9.0,10.0,10.0,10.0,9.0,10.0,11,0.75 +12048,96.0,10.0,10.0,10.0,10.0,9.0,10.0,40,2.8 +26067,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.07 +1614,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +33134,,,,,,,,0, +23479,,,,,,,,0, +31753,,,,,,,,0, +12751,95.0,10.0,10.0,10.0,10.0,10.0,10.0,29,2.25 +70078,100.0,10.0,10.0,10.0,10.0,9.0,9.0,7,0.46 +49767,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.28 +49626,97.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.72 +50175,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.83 +44861,,,,,,,,0, +66295,80.0,9.0,8.0,9.0,9.0,9.0,8.0,8,0.66 +36123,,,,,,,,0, +9033,,,,,,,,0, +9221,87.0,9.0,9.0,9.0,9.0,9.0,9.0,18,1.21 +22941,91.0,9.0,10.0,9.0,10.0,9.0,9.0,12,0.83 +22819,90.0,9.0,7.0,10.0,10.0,10.0,8.0,2,0.44 +37700,93.0,10.0,9.0,10.0,10.0,10.0,9.0,9,0.68 +38561,,,,,,,,0, +2362,95.0,10.0,10.0,10.0,10.0,10.0,9.0,52,3.5 +58796,100.0,10.0,10.0,10.0,10.0,9.0,9.0,5,0.71 +61308,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.27 +73001,93.0,10.0,9.0,10.0,10.0,9.0,9.0,3,0.2 +62126,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.16 +44420,89.0,9.0,9.0,9.0,9.0,9.0,9.0,44,2.93 +23960,,,,,,,,0, +23693,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.1 +68416,89.0,9.0,9.0,9.0,9.0,10.0,9.0,56,3.99 +7065,,,,,,,,1,0.17 +75822,95.0,10.0,10.0,7.0,10.0,10.0,9.0,9,0.65 +36630,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +32172,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +42652,94.0,10.0,10.0,10.0,10.0,10.0,9.0,13,3.05 +61249,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.21 +11010,80.0,9.0,7.0,10.0,10.0,10.0,9.0,11,0.72 +47690,,,,,,,,0, +71626,,,,,,,,3,0.23 +71399,,,,,,,,1,0.07 +18004,,,,,,,,1,0.07 +4183,85.0,8.0,8.0,9.0,9.0,9.0,8.0,14,1.05 +3424,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.34 +7664,80.0,9.0,9.0,10.0,9.0,10.0,8.0,2,0.13 +73058,80.0,10.0,8.0,10.0,10.0,8.0,10.0,1,0.07 +35791,97.0,10.0,9.0,10.0,10.0,10.0,9.0,67,4.49 +21953,99.0,10.0,10.0,10.0,10.0,10.0,10.0,30,2.06 +51207,,,,,,,,0, +55753,87.0,9.0,9.0,10.0,10.0,9.0,9.0,3,0.2 +33819,95.0,9.0,10.0,10.0,10.0,10.0,10.0,9,0.85 +40682,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.14 +55326,93.0,9.0,7.0,10.0,10.0,9.0,8.0,5,0.38 +67698,96.0,10.0,9.0,9.0,10.0,10.0,10.0,5,0.33 +14141,98.0,10.0,9.0,10.0,10.0,10.0,10.0,17,1.16 +69510,98.0,10.0,10.0,10.0,10.0,10.0,10.0,30,2.05 +46300,90.0,9.0,9.0,10.0,10.0,8.0,9.0,12,1.07 +19973,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.6 +14647,86.0,9.0,9.0,9.0,9.0,9.0,9.0,95,6.61 +780,96.0,10.0,10.0,10.0,10.0,10.0,10.0,48,3.17 +69558,98.0,10.0,10.0,10.0,10.0,10.0,10.0,42,2.78 +49397,100.0,10.0,10.0,10.0,10.0,9.0,10.0,22,1.51 +69507,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.27 +10494,,,,,,,,0, +19773,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +22436,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +16909,90.0,9.0,8.0,10.0,10.0,10.0,8.0,2,0.15 +49827,,,,,,,,0, +35018,,,,,,,,0, +38839,,,,,,,,0, +46682,99.0,10.0,10.0,10.0,10.0,10.0,9.0,37,2.61 +19403,93.0,9.0,9.0,7.0,9.0,9.0,9.0,3,0.79 +28641,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +56471,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.23 +55211,83.0,9.0,8.0,9.0,10.0,9.0,8.0,8,1.07 +48135,,,,,,,,1,0.18 +46120,100.0,9.0,9.0,10.0,10.0,9.0,10.0,3,2.2 +14895,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +41590,94.0,10.0,9.0,10.0,10.0,9.0,10.0,37,2.59 +44621,80.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.15 +69449,93.0,10.0,10.0,10.0,10.0,9.0,10.0,32,2.64 +67966,100.0,10.0,10.0,9.0,10.0,10.0,10.0,25,1.7 +61477,97.0,10.0,10.0,9.0,10.0,10.0,9.0,34,2.29 +32679,,,,,,,,0, +49094,90.0,10.0,9.0,10.0,9.0,10.0,8.0,2,0.18 +44079,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +75962,96.0,10.0,10.0,10.0,10.0,10.0,9.0,9,0.69 +58219,99.0,10.0,10.0,10.0,10.0,10.0,10.0,20,1.32 +76905,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.74 +66466,96.0,10.0,10.0,8.0,9.0,9.0,10.0,5,0.35 +57987,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +72959,93.0,7.0,9.0,10.0,9.0,7.0,9.0,3,0.41 +58599,80.0,8.0,6.0,10.0,10.0,4.0,8.0,1,0.07 +46351,90.0,9.0,9.0,10.0,10.0,9.0,10.0,4,0.27 +66053,83.0,8.0,10.0,8.0,9.0,9.0,9.0,6,0.42 +70455,,,,,,,,0, +14799,92.0,10.0,9.0,9.0,9.0,10.0,9.0,37,2.47 +26917,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.14 +14611,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.3 +47292,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +12433,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.42 +14133,99.0,10.0,10.0,10.0,10.0,9.0,10.0,56,4.75 +4067,85.0,10.0,10.0,8.0,8.0,9.0,9.0,4,0.3 +31772,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.79 +21213,95.0,10.0,9.0,10.0,10.0,10.0,10.0,17,1.35 +53552,98.0,10.0,10.0,10.0,10.0,9.0,10.0,10,0.68 +48104,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,1.83 +71696,96.0,10.0,10.0,10.0,10.0,10.0,9.0,85,5.93 +24823,,,,,,,,0, +38868,99.0,10.0,10.0,10.0,10.0,10.0,10.0,25,1.72 +14436,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +29726,,,,,,,,0, +27203,87.0,9.0,9.0,9.0,10.0,10.0,9.0,21,1.41 +46011,87.0,9.0,8.0,10.0,10.0,9.0,9.0,49,3.3 +76861,98.0,10.0,10.0,10.0,10.0,9.0,10.0,21,2.23 +31863,94.0,10.0,9.0,10.0,10.0,9.0,9.0,10,0.66 +29132,88.0,9.0,10.0,9.0,9.0,9.0,9.0,5,0.33 +9774,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.34 +7131,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.27 +26307,90.0,8.0,9.0,9.0,9.0,10.0,9.0,7,0.5 +77068,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.6 +35381,100.0,10.0,10.0,10.0,10.0,10.0,10.0,40,2.73 +74731,,,,,,,,0, +45991,90.0,9.0,9.0,9.0,9.0,10.0,9.0,27,1.88 +4600,84.0,9.0,8.0,10.0,10.0,10.0,10.0,5,0.35 +70545,,,,,,,,1,0.13 +37816,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.2 +45442,90.0,9.0,10.0,10.0,9.0,9.0,9.0,21,1.71 +37247,94.0,10.0,10.0,9.0,10.0,10.0,9.0,7,0.54 +61948,98.0,10.0,9.0,10.0,10.0,9.0,10.0,25,1.66 +45706,97.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.95 +4326,97.0,10.0,9.0,10.0,10.0,9.0,9.0,26,1.75 +27689,95.0,10.0,10.0,10.0,10.0,9.0,10.0,12,0.8 +26609,85.0,10.0,9.0,9.0,10.0,10.0,9.0,5,0.35 +7354,97.0,10.0,9.0,10.0,10.0,10.0,10.0,6,0.43 +39264,84.0,9.0,9.0,9.0,9.0,10.0,8.0,19,1.27 +16932,75.0,8.0,7.0,9.0,9.0,10.0,9.0,4,0.36 +75475,100.0,10.0,9.0,10.0,10.0,10.0,9.0,3,0.27 +46278,,,,,,,,0, +31832,80.0,8.0,6.0,8.0,8.0,6.0,6.0,1,0.14 +27626,,,,,,,,0, +43138,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.26 +29666,85.0,10.0,9.0,6.0,8.0,10.0,9.0,17,1.17 +62052,91.0,9.0,8.0,10.0,9.0,9.0,8.0,13,1.0 +37283,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.28 +73744,,,,,,,,0, +17041,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.02 +68430,80.0,8.0,7.0,8.0,9.0,9.0,8.0,2,0.14 +43011,100.0,10.0,9.0,10.0,10.0,10.0,10.0,7,0.55 +16351,82.0,9.0,8.0,9.0,9.0,9.0,9.0,17,1.23 +65434,,,,,,,,0, +26895,84.0,8.0,7.0,8.0,8.0,8.0,8.0,5,0.36 +25895,100.0,10.0,9.0,10.0,10.0,9.0,10.0,2,0.23 +61536,88.0,10.0,8.0,10.0,10.0,9.0,10.0,6,0.41 +9086,98.0,10.0,10.0,10.0,10.0,10.0,10.0,43,3.03 +15430,74.0,7.0,8.0,8.0,7.0,9.0,8.0,7,0.58 +46266,96.0,10.0,9.0,10.0,10.0,10.0,10.0,32,2.13 +54379,100.0,9.0,10.0,9.0,10.0,9.0,8.0,2,0.25 +659,,,,,,,,0, +27880,98.0,10.0,10.0,10.0,10.0,10.0,10.0,28,1.85 +16188,,,,,,,,0, +33283,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +31947,88.0,9.0,9.0,9.0,10.0,9.0,9.0,15,1.04 +16549,93.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.2 +59655,,,,,,,,0, +18128,89.0,9.0,8.0,10.0,10.0,10.0,9.0,41,2.85 +42257,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,1.02 +12948,,,,,,,,1,0.07 +14241,90.0,9.0,10.0,10.0,10.0,9.0,10.0,4,0.27 +73328,,,,,,,,0, +56009,96.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.4 +73984,86.0,9.0,10.0,10.0,10.0,9.0,9.0,19,1.29 +11683,90.0,10.0,8.0,10.0,10.0,10.0,9.0,8,0.55 +29054,100.0,10.0,10.0,9.0,10.0,10.0,10.0,4,0.29 +39050,93.0,10.0,9.0,9.0,10.0,9.0,10.0,16,1.12 +49078,96.0,10.0,10.0,9.0,9.0,9.0,9.0,11,0.76 +9562,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.55 +36350,87.0,9.0,9.0,10.0,10.0,9.0,9.0,63,4.24 +28077,100.0,10.0,10.0,6.0,10.0,9.0,9.0,3,0.23 +33608,88.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.35 +66514,99.0,10.0,10.0,10.0,10.0,9.0,10.0,18,1.2 +25368,73.0,9.0,8.0,10.0,9.0,9.0,8.0,3,0.22 +39174,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.94 +792,84.0,9.0,9.0,9.0,9.0,9.0,9.0,11,0.95 +39838,89.0,10.0,9.0,10.0,10.0,10.0,9.0,8,0.54 +14824,87.0,9.0,9.0,9.0,10.0,9.0,9.0,58,3.94 +27835,84.0,9.0,9.0,8.0,10.0,9.0,8.0,10,0.72 +179,,,,,,,,0, +76354,98.0,10.0,9.0,10.0,10.0,10.0,10.0,27,1.95 +13552,,,,,,,,0, +45832,80.0,7.0,9.0,6.0,6.0,10.0,9.0,2,0.32 +3459,,,,,,,,0, +75834,94.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.52 +10673,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.67 +25674,80.0,8.0,8.0,8.0,8.0,8.0,8.0,2,0.14 +36712,96.0,10.0,9.0,10.0,10.0,10.0,9.0,6,0.4 +41733,96.0,10.0,9.0,10.0,10.0,10.0,9.0,28,1.89 +13148,85.0,9.0,9.0,10.0,10.0,10.0,9.0,14,1.05 +44925,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.54 +32891,100.0,10.0,9.0,10.0,10.0,9.0,10.0,2,0.13 +39215,92.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.34 +68617,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.34 +55220,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.14 +37168,,,,,,,,0, +11770,80.0,8.0,10.0,10.0,8.0,10.0,8.0,10,0.72 +51305,,,,,,,,1,0.07 +18589,97.0,10.0,10.0,10.0,10.0,9.0,10.0,58,4.08 +73346,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.27 +38515,98.0,10.0,8.0,10.0,10.0,10.0,10.0,8,0.56 +418,77.0,7.0,7.0,9.0,6.0,9.0,7.0,7,0.91 +43005,99.0,10.0,10.0,10.0,10.0,10.0,10.0,15,1.05 +72670,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.34 +44584,96.0,9.0,10.0,9.0,9.0,10.0,9.0,24,1.62 +28158,97.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.48 +57317,,,,,,,,0, +56572,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.31 +4124,100.0,8.0,8.0,10.0,10.0,8.0,10.0,1,0.36 +62611,97.0,10.0,10.0,10.0,10.0,10.0,10.0,20,1.4 +57448,,,,,,,,0, +15527,94.0,10.0,10.0,10.0,10.0,10.0,9.0,16,1.15 +60349,98.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.81 +15691,,,,,,,,0, +13705,98.0,10.0,9.0,10.0,10.0,9.0,10.0,13,0.9 +50326,97.0,10.0,9.0,10.0,10.0,8.0,9.0,25,1.71 +46902,99.0,10.0,10.0,10.0,10.0,10.0,10.0,22,1.53 +28895,90.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.14 +48019,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.36 +76138,,,,,,,,0, +34542,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +68426,89.0,9.0,9.0,10.0,10.0,9.0,9.0,43,3.06 +7350,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.14 +66435,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.33 +20793,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +62381,99.0,10.0,10.0,10.0,10.0,10.0,10.0,28,1.87 +35896,93.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.2 +9394,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +53776,70.0,6.0,7.0,10.0,9.0,7.0,7.0,2,0.16 +36393,,,,,,,,0, +13531,90.0,8.0,7.0,7.0,8.0,9.0,9.0,4,0.27 +63152,95.0,10.0,10.0,10.0,10.0,9.0,9.0,5,0.38 +1179,80.0,8.0,8.0,9.0,9.0,7.0,9.0,3,0.25 +68076,,,,,,,,0, +24241,88.0,9.0,9.0,9.0,9.0,10.0,9.0,38,2.57 +38296,93.0,10.0,9.0,10.0,10.0,9.0,9.0,61,4.16 +62850,80.0,10.0,10.0,6.0,8.0,10.0,10.0,1,0.07 +9235,,,,,,,,0, +8494,92.0,10.0,10.0,10.0,10.0,9.0,10.0,16,1.07 +58296,100.0,10.0,10.0,9.0,9.0,9.0,10.0,4,0.27 +70862,,,,,,,,0, +43075,,,,,,,,0, +14231,,,,,,,,0, +26185,98.0,10.0,9.0,10.0,10.0,10.0,10.0,11,0.74 +15983,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.23 +3209,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.07 +24570,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +66737,,,,,,,,0, +56419,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.07 +68687,,,,,,,,0, +20000,90.0,9.0,7.0,10.0,10.0,9.0,9.0,2,0.14 +41419,80.0,10.0,10.0,10.0,10.0,6.0,10.0,1,0.07 +19908,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.14 +64617,98.0,9.0,10.0,9.0,10.0,9.0,9.0,9,0.78 +51597,100.0,10.0,10.0,10.0,10.0,10.0,10.0,27,1.82 +66018,,,,,,,,0, +30580,98.0,10.0,10.0,10.0,10.0,9.0,10.0,17,1.17 +39664,,,,,,,,0, +1779,95.0,10.0,9.0,10.0,10.0,9.0,10.0,52,5.49 +27331,,,,,,,,0, +5820,,,,,,,,1,0.07 +9285,98.0,10.0,10.0,10.0,10.0,9.0,10.0,20,1.41 +4377,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.21 +35093,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.43 +20015,96.0,10.0,10.0,8.0,8.0,9.0,10.0,6,0.61 +4568,87.0,9.0,9.0,10.0,10.0,9.0,9.0,3,0.21 +58000,100.0,10.0,10.0,10.0,10.0,9.0,10.0,14,1.15 +11351,80.0,8.0,8.0,10.0,10.0,8.0,10.0,1,0.07 +55648,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.33 +46115,100.0,10.0,9.0,10.0,10.0,10.0,9.0,9,0.79 +60957,,,,,,,,0, +12074,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.08 +64901,90.0,9.0,9.0,10.0,10.0,10.0,9.0,15,1.06 +41140,96.0,10.0,10.0,10.0,10.0,9.0,10.0,63,4.23 +29835,96.0,10.0,10.0,10.0,10.0,10.0,9.0,121,8.03 +76674,95.0,9.0,10.0,9.0,10.0,9.0,9.0,4,0.35 +10545,92.0,10.0,10.0,10.0,10.0,9.0,9.0,45,3.05 +50581,94.0,10.0,9.0,10.0,10.0,9.0,10.0,25,1.76 +68923,,,,,,,,0, +39580,89.0,10.0,10.0,10.0,10.0,9.0,9.0,33,2.22 +11735,90.0,7.0,8.0,7.0,8.0,8.0,9.0,3,0.21 +36563,100.0,10.0,8.0,10.0,10.0,8.0,10.0,1,0.13 +67912,97.0,10.0,9.0,10.0,10.0,9.0,9.0,14,0.93 +7759,95.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.28 +1274,95.0,10.0,10.0,10.0,10.0,8.0,10.0,5,0.33 +60846,,,,,,,,1,0.07 +15868,80.0,10.0,9.0,9.0,9.0,9.0,9.0,2,0.15 +61127,90.0,10.0,10.0,10.0,10.0,10.0,9.0,10,0.72 +7201,92.0,10.0,9.0,9.0,10.0,10.0,9.0,16,1.16 +53380,,,,,,,,0, +1399,96.0,10.0,9.0,10.0,10.0,10.0,10.0,10,0.67 +32270,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.71 +10215,96.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.52 +72917,94.0,10.0,10.0,10.0,10.0,10.0,9.0,112,7.47 +7433,,,,,,,,0, +56224,100.0,9.0,9.0,10.0,10.0,10.0,10.0,3,0.2 +3774,85.0,9.0,7.0,10.0,10.0,9.0,9.0,19,1.3 +30114,98.0,10.0,10.0,10.0,10.0,10.0,10.0,20,1.35 +35033,100.0,10.0,10.0,10.0,10.0,10.0,10.0,40,2.85 +38835,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +34274,,,,,,,,0, +41341,93.0,10.0,9.0,10.0,10.0,9.0,10.0,108,7.48 +1888,93.0,10.0,10.0,9.0,9.0,9.0,9.0,10,0.68 +37947,,,,,,,,0, +5163,,,,,,,,0, +58939,90.0,9.0,9.0,9.0,9.0,10.0,9.0,33,2.24 +54986,97.0,9.0,9.0,10.0,10.0,9.0,10.0,7,0.47 +76005,100.0,10.0,10.0,10.0,10.0,9.0,9.0,5,0.37 +73758,20.0,2.0,2.0,2.0,2.0,6.0,2.0,1,0.16 +54967,98.0,10.0,9.0,10.0,10.0,9.0,9.0,24,1.64 +13850,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.43 +53047,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +18001,83.0,9.0,7.0,9.0,9.0,9.0,8.0,6,0.43 +64734,95.0,10.0,10.0,10.0,10.0,9.0,9.0,11,0.86 +73312,,,,,,,,0, +34256,96.0,10.0,9.0,10.0,10.0,10.0,10.0,32,2.14 +18909,97.0,10.0,10.0,10.0,10.0,9.0,10.0,80,5.43 +76858,96.0,10.0,10.0,10.0,10.0,10.0,9.0,71,5.26 +22027,,,,,,,,0, +4993,91.0,9.0,9.0,9.0,9.0,10.0,9.0,20,1.57 +23824,80.0,9.0,9.0,9.0,9.0,9.0,9.0,3,0.25 +54142,96.0,10.0,10.0,10.0,10.0,9.0,10.0,20,1.5 +12772,,,,,,,,2,0.13 +26975,92.0,10.0,8.0,10.0,10.0,9.0,8.0,5,0.36 +13923,94.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.95 +55379,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.15 +60110,70.0,6.0,5.0,7.0,7.0,10.0,6.0,2,0.26 +71294,92.0,9.0,9.0,10.0,10.0,10.0,9.0,18,1.22 +43103,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.32 +51473,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.2 +20195,80.0,9.0,7.0,8.0,10.0,8.0,9.0,2,0.22 +2415,90.0,9.0,9.0,8.0,9.0,10.0,9.0,27,1.84 +40010,93.0,10.0,10.0,9.0,9.0,9.0,9.0,3,0.21 +60031,,,,,,,,0, +37341,90.0,9.0,9.0,10.0,9.0,10.0,9.0,2,0.2 +63811,,,,,,,,0, +72141,100.0,10.0,8.0,10.0,10.0,10.0,9.0,2,0.17 +19382,96.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.67 +17014,97.0,10.0,10.0,10.0,10.0,9.0,10.0,28,1.91 +68302,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +74645,,,,,,,,0, +62918,95.0,10.0,9.0,10.0,10.0,9.0,9.0,39,2.63 +27315,60.0,5.0,6.0,6.0,6.0,9.0,5.0,2,0.26 +28026,84.0,9.0,8.0,10.0,10.0,9.0,9.0,5,0.34 +7228,60.0,6.0,6.0,6.0,6.0,8.0,6.0,1,0.7 +11940,,,,,,,,1,0.09 +19049,,,,,,,,0, +56933,,,,,,,,1,0.07 +53680,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.83 +26833,93.0,10.0,9.0,9.0,9.0,10.0,10.0,8,0.95 +6647,87.0,8.0,9.0,9.0,9.0,10.0,8.0,3,0.21 +25456,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.79 +4412,,,,,,,,0, +71576,84.0,9.0,10.0,8.0,8.0,10.0,10.0,5,0.41 +5807,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.28 +7272,94.0,10.0,9.0,10.0,10.0,10.0,9.0,34,2.35 +15846,93.0,10.0,10.0,9.0,10.0,10.0,10.0,3,0.21 +69843,90.0,10.0,9.0,10.0,8.0,10.0,9.0,2,0.39 +71944,100.0,9.0,8.0,9.0,9.0,8.0,10.0,2,0.14 +32639,,,,,,,,0, +48566,80.0,9.0,8.0,9.0,9.0,10.0,8.0,3,0.2 +34973,95.0,9.0,10.0,9.0,9.0,10.0,9.0,11,0.75 +13162,83.0,9.0,8.0,10.0,10.0,9.0,9.0,37,2.5 +14976,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.55 +1974,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.2 +50758,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.08 +48544,83.0,9.0,9.0,9.0,10.0,10.0,9.0,12,0.96 +75597,,,,,,,,0, +30903,77.0,8.0,9.0,8.0,9.0,10.0,8.0,21,1.45 +57139,89.0,9.0,10.0,10.0,10.0,10.0,9.0,109,7.53 +64457,95.0,10.0,10.0,10.0,10.0,10.0,9.0,4,2.93 +48931,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.18 +76471,93.0,10.0,9.0,9.0,9.0,9.0,10.0,6,0.42 +67258,,,,,,,,1,0.07 +23941,97.0,10.0,10.0,9.0,10.0,10.0,10.0,12,2.2 +8238,83.0,9.0,8.0,9.0,9.0,9.0,9.0,46,3.11 +29062,91.0,10.0,10.0,10.0,10.0,9.0,9.0,25,1.67 +53555,85.0,9.0,9.0,9.0,9.0,9.0,9.0,63,4.28 +465,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +28556,98.0,10.0,10.0,10.0,10.0,10.0,9.0,23,1.61 +33008,100.0,10.0,10.0,10.0,10.0,9.0,9.0,6,0.41 +55259,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.07 +69108,98.0,10.0,10.0,10.0,10.0,10.0,10.0,30,2.07 +60665,100.0,10.0,10.0,10.0,10.0,10.0,9.0,13,1.12 +8940,95.0,9.0,9.0,10.0,10.0,10.0,9.0,8,0.56 +57232,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +31355,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,1.22 +38396,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.28 +47760,,,,,,,,0, +25293,100.0,10.0,9.0,10.0,8.0,10.0,10.0,2,0.15 +45989,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +10027,,,,,,,,0, +30680,,,,,,,,0, +58530,87.0,10.0,8.0,10.0,10.0,8.0,9.0,20,1.36 +27932,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.34 +28772,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,2.88 +9402,,,,,,,,0, +39314,93.0,10.0,9.0,10.0,10.0,10.0,9.0,45,3.06 +27281,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +18676,,,,,,,,0, +11722,,,,,,,,0, +72136,92.0,10.0,10.0,10.0,10.0,9.0,9.0,5,0.64 +15592,90.0,9.0,8.0,8.0,9.0,10.0,9.0,7,0.49 +27434,,,,,,,,0, +52993,98.0,10.0,10.0,10.0,10.0,10.0,10.0,20,1.43 +58415,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +41251,91.0,9.0,9.0,9.0,9.0,10.0,9.0,11,0.79 +54586,80.0,9.0,7.0,9.0,9.0,8.0,9.0,2,0.14 +48124,,,,,,,,0, +13240,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.54 +38466,80.0,10.0,6.0,10.0,10.0,6.0,10.0,1,0.07 +38586,,,,,,,,0, +53450,88.0,8.0,9.0,9.0,10.0,8.0,9.0,17,1.5 +31362,99.0,10.0,10.0,10.0,10.0,10.0,10.0,25,1.75 +3274,96.0,10.0,10.0,10.0,9.0,10.0,9.0,18,1.24 +38486,98.0,10.0,9.0,10.0,10.0,10.0,10.0,9,1.06 +52091,80.0,6.0,6.0,6.0,7.0,7.0,6.0,2,0.15 +23966,87.0,9.0,9.0,9.0,10.0,9.0,9.0,3,0.2 +45599,96.0,10.0,8.0,10.0,10.0,10.0,10.0,5,0.43 +63847,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +74336,90.0,10.0,9.0,10.0,10.0,10.0,9.0,26,1.89 +61501,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.14 +31312,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.07 +34097,100.0,10.0,10.0,10.0,10.0,9.0,9.0,2,0.18 +56000,97.0,10.0,10.0,10.0,10.0,10.0,10.0,17,1.2 +33894,95.0,10.0,9.0,10.0,10.0,10.0,9.0,8,1.07 +30978,91.0,10.0,10.0,10.0,10.0,10.0,9.0,40,2.96 +71687,84.0,9.0,9.0,8.0,9.0,9.0,8.0,14,0.97 +53754,77.0,7.0,8.0,7.0,9.0,9.0,7.0,8,0.59 +32791,73.0,8.0,7.0,9.0,9.0,9.0,8.0,6,0.4 +60706,80.0,9.0,7.0,10.0,10.0,10.0,9.0,3,0.38 +9824,,,,,,,,0, +30179,,,,,,,,1,0.25 +33230,80.0,8.0,9.0,8.0,8.0,9.0,8.0,5,0.35 +15464,,,,,,,,0, +56118,98.0,10.0,10.0,10.0,9.0,10.0,10.0,8,0.55 +58828,95.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.35 +40098,80.0,9.0,9.0,9.0,10.0,10.0,8.0,3,0.2 +24868,95.0,10.0,10.0,10.0,9.0,10.0,9.0,15,1.07 +25113,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +73807,96.0,10.0,10.0,10.0,10.0,10.0,10.0,16,1.12 +18718,98.0,10.0,9.0,9.0,10.0,10.0,10.0,24,1.63 +7430,97.0,10.0,9.0,10.0,10.0,10.0,10.0,15,1.02 +31111,,,,,,,,0, +17334,97.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.47 +65580,98.0,10.0,10.0,10.0,10.0,10.0,10.0,58,3.95 +15922,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.73 +27137,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.14 +13442,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.54 +42559,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +58345,100.0,10.0,10.0,10.0,10.0,10.0,10.0,16,1.1 +2015,91.0,9.0,9.0,10.0,10.0,9.0,9.0,30,2.11 +20319,94.0,10.0,10.0,10.0,10.0,9.0,9.0,50,3.46 +56875,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +69618,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.25 +41546,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.56 +52335,93.0,9.0,9.0,10.0,10.0,9.0,9.0,16,1.11 +76552,,,,,,,,0, +10816,100.0,10.0,10.0,10.0,8.0,6.0,10.0,3,0.27 +26688,50.0,6.0,5.0,9.0,9.0,6.0,5.0,2,0.14 +23509,,,,,,,,0, +38428,100.0,10.0,8.0,10.0,10.0,10.0,8.0,2,0.13 +47258,95.0,10.0,9.0,10.0,10.0,9.0,9.0,13,0.91 +21958,88.0,9.0,9.0,10.0,9.0,10.0,9.0,31,2.13 +69690,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.1 +60952,85.0,9.0,10.0,10.0,10.0,9.0,9.0,4,0.28 +58393,92.0,9.0,9.0,9.0,7.0,9.0,9.0,16,1.14 +38694,85.0,9.0,9.0,9.0,10.0,9.0,9.0,11,0.78 +7194,,,,,,,,0, +25177,92.0,9.0,10.0,9.0,9.0,9.0,9.0,35,2.39 +36778,92.0,9.0,9.0,9.0,9.0,10.0,10.0,25,1.69 +61801,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.2 +76719,97.0,10.0,10.0,10.0,9.0,10.0,10.0,13,0.94 +30169,92.0,10.0,9.0,9.0,10.0,10.0,9.0,18,1.27 +11074,100.0,9.0,10.0,10.0,10.0,9.0,9.0,2,2.0 +19783,88.0,9.0,9.0,9.0,9.0,9.0,9.0,8,0.55 +75276,92.0,9.0,10.0,10.0,9.0,10.0,9.0,32,2.2 +51998,,,,,,,,0, +64373,88.0,8.0,9.0,10.0,10.0,10.0,9.0,5,0.36 +7446,95.0,10.0,10.0,10.0,10.0,9.0,9.0,4,0.53 +67493,74.0,8.0,8.0,9.0,9.0,10.0,8.0,7,0.52 +6459,97.0,10.0,9.0,9.0,10.0,10.0,9.0,18,1.3 +5230,95.0,10.0,10.0,10.0,10.0,10.0,10.0,42,2.86 +45940,90.0,8.0,9.0,10.0,9.0,9.0,9.0,4,0.29 +62793,80.0,9.0,8.0,10.0,10.0,9.0,9.0,2,0.18 +37040,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.34 +38511,88.0,9.0,9.0,9.0,10.0,9.0,9.0,15,1.02 +10391,98.0,10.0,10.0,10.0,10.0,9.0,10.0,9,0.73 +64869,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +1867,,,,,,,,0, +38249,84.0,9.0,8.0,10.0,9.0,10.0,9.0,29,1.95 +68864,90.0,10.0,8.0,10.0,10.0,10.0,9.0,3,0.24 +6224,,,,,,,,0, +74174,98.0,10.0,10.0,10.0,10.0,10.0,10.0,25,1.82 +47314,81.0,8.0,8.0,9.0,9.0,8.0,8.0,16,1.1 +7951,,,,,,,,0, +73854,98.0,9.0,10.0,10.0,9.0,10.0,9.0,17,1.21 +74049,96.0,10.0,10.0,10.0,10.0,10.0,10.0,45,3.29 +50976,91.0,9.0,9.0,10.0,10.0,10.0,10.0,23,1.67 +13054,98.0,10.0,10.0,10.0,10.0,9.0,10.0,25,1.72 +59624,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.2 +63541,87.0,9.0,8.0,10.0,10.0,9.0,9.0,40,2.7 +48881,60.0,6.0,5.0,8.0,8.0,8.0,7.0,2,0.17 +44110,,,,,,,,0, +12793,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.14 +25905,86.0,9.0,8.0,9.0,9.0,10.0,9.0,25,1.7 +6024,,,,,,,,0, +48904,40.0,5.0,3.0,6.0,7.0,10.0,3.0,2,0.2 +59063,,,,,,,,0, +19848,,,,,,,,0, +66429,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +50441,80.0,8.0,8.0,8.0,8.0,8.0,8.0,1,0.18 +54294,100.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.24 +46969,80.0,8.0,8.0,10.0,10.0,10.0,7.0,2,0.14 +21888,20.0,2.0,10.0,8.0,2.0,6.0,2.0,1,0.38 +63790,,,,,,,,0, +39618,80.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.13 +11208,,,,,,,,0, +17651,93.0,9.0,10.0,10.0,10.0,10.0,10.0,3,0.21 +34333,,,,,,,,0, +39800,60.0,8.0,7.0,8.0,9.0,8.0,6.0,2,0.18 +10383,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.09 +76601,98.0,9.0,9.0,10.0,9.0,10.0,10.0,17,1.31 +24069,90.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.16 +24724,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +18469,96.0,10.0,10.0,10.0,9.0,9.0,10.0,33,2.32 +32619,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.27 +34377,100.0,10.0,10.0,10.0,10.0,10.0,10.0,17,1.27 +16645,86.0,9.0,9.0,9.0,9.0,8.0,9.0,78,5.42 +20670,97.0,10.0,10.0,9.0,10.0,10.0,10.0,7,0.49 +27868,87.0,9.0,9.0,9.0,9.0,9.0,9.0,49,3.35 +4051,84.0,9.0,8.0,9.0,9.0,8.0,8.0,61,4.3 +27761,98.0,10.0,10.0,9.0,9.0,10.0,9.0,11,0.8 +27252,,,,,,,,0, +9185,83.0,9.0,9.0,9.0,9.0,9.0,9.0,59,4.31 +7815,,,,,,,,0, +46629,95.0,10.0,10.0,10.0,10.0,9.0,9.0,15,1.02 +3252,,,,,,,,0, +5748,,,,,,,,0, +52619,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,2.0 +55001,70.0,7.0,8.0,8.0,8.0,8.0,7.0,2,0.14 +13733,,,,,,,,0, +6143,95.0,10.0,10.0,10.0,10.0,10.0,9.0,12,0.82 +39052,88.0,9.0,10.0,10.0,10.0,10.0,8.0,8,0.55 +27806,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.23 +41194,99.0,10.0,10.0,10.0,10.0,10.0,10.0,69,4.7 +53980,94.0,10.0,10.0,9.0,8.0,9.0,9.0,7,0.5 +70804,76.0,8.0,8.0,9.0,9.0,8.0,8.0,21,1.86 +44021,85.0,9.0,8.0,10.0,10.0,9.0,9.0,28,1.94 +15553,,,,,,,,0, +33362,100.0,10.0,10.0,9.0,9.0,9.0,8.0,2,0.14 +53787,93.0,9.0,10.0,10.0,10.0,10.0,9.0,18,1.34 +53486,98.0,10.0,10.0,10.0,10.0,10.0,10.0,26,1.79 +10531,99.0,10.0,9.0,10.0,10.0,9.0,10.0,15,1.04 +65599,98.0,10.0,10.0,10.0,10.0,10.0,10.0,103,7.04 +2183,93.0,10.0,10.0,10.0,10.0,9.0,9.0,45,3.07 +31192,89.0,9.0,10.0,9.0,9.0,9.0,10.0,22,1.56 +28206,97.0,10.0,10.0,9.0,9.0,9.0,10.0,14,1.06 +47259,92.0,9.0,9.0,10.0,10.0,10.0,9.0,64,4.53 +54907,90.0,10.0,7.0,10.0,10.0,10.0,9.0,7,0.48 +30990,98.0,10.0,10.0,10.0,10.0,10.0,10.0,59,4.06 +7390,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.92 +12490,97.0,10.0,10.0,10.0,10.0,10.0,10.0,13,1.03 +43797,87.0,9.0,9.0,9.0,9.0,9.0,9.0,4,0.3 +34107,57.0,6.0,5.0,7.0,7.0,8.0,6.0,8,0.57 +35711,86.0,9.0,9.0,10.0,9.0,9.0,10.0,14,1.21 +13364,,,,,,,,0, +53889,95.0,10.0,10.0,9.0,10.0,10.0,9.0,25,1.79 +74474,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.49 +15490,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.07 +45876,,,,,,,,0, +73434,80.0,8.0,8.0,8.0,8.0,9.0,8.0,13,0.89 +59346,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +65481,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.25 +40506,91.0,10.0,9.0,9.0,9.0,9.0,10.0,13,0.88 +19413,100.0,10.0,10.0,9.0,10.0,8.0,9.0,4,0.36 +25583,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.78 +44681,,,,,,,,0, +43450,,,,,,,,0, +43921,99.0,10.0,10.0,10.0,10.0,10.0,10.0,27,1.83 +44708,84.0,9.0,9.0,9.0,9.0,10.0,9.0,59,4.0 +50046,100.0,10.0,10.0,10.0,10.0,9.0,10.0,9,0.7 +50804,92.0,10.0,9.0,10.0,9.0,10.0,10.0,5,0.34 +30732,70.0,6.0,6.0,6.0,6.0,8.0,6.0,2,0.17 +19191,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.37 +56534,,,,,,,,1,0.08 +17210,,,,,,,,0, +57765,86.0,9.0,9.0,8.0,9.0,10.0,9.0,22,1.52 +56287,97.0,10.0,9.0,10.0,10.0,10.0,10.0,18,1.33 +39876,91.0,10.0,9.0,10.0,10.0,10.0,10.0,7,0.48 +47769,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.88 +63121,100.0,10.0,10.0,10.0,10.0,10.0,10.0,30,2.17 +48622,,,,,,,,2,0.13 +12439,94.0,9.0,10.0,10.0,10.0,9.0,9.0,26,2.07 +75714,84.0,9.0,9.0,9.0,9.0,8.0,9.0,15,1.11 +7447,,,,,,,,0, +47459,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +72348,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.18 +65452,90.0,9.0,10.0,10.0,10.0,8.0,10.0,2,0.17 +63143,100.0,10.0,10.0,10.0,10.0,10.0,10.0,16,1.22 +46626,,,,,,,,0, +62950,80.0,6.0,8.0,6.0,8.0,8.0,8.0,1,0.11 +34592,96.0,10.0,9.0,10.0,10.0,10.0,10.0,33,2.3 +49814,80.0,10.0,8.0,10.0,10.0,6.0,8.0,1,0.08 +32600,40.0,10.0,8.0,10.0,4.0,10.0,10.0,1,0.07 +56016,98.0,10.0,10.0,10.0,10.0,9.0,10.0,18,1.23 +33200,89.0,10.0,8.0,10.0,10.0,10.0,10.0,47,3.26 +63856,,,,,,,,1,0.07 +18820,100.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.59 +69758,40.0,3.0,4.0,2.0,5.0,6.0,4.0,2,0.2 +33686,96.0,10.0,10.0,10.0,10.0,9.0,10.0,98,6.95 +26442,,,,,,,,1,0.07 +69428,94.0,10.0,9.0,10.0,10.0,10.0,10.0,14,0.96 +13358,,,,,,,,0, +57869,97.0,10.0,10.0,10.0,10.0,9.0,10.0,31,2.32 +62240,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.2 +58458,99.0,10.0,10.0,10.0,10.0,10.0,9.0,20,1.36 +66139,53.0,5.0,6.0,6.0,8.0,9.0,7.0,7,0.48 +51147,,,,,,,,0, +67049,98.0,10.0,9.0,10.0,10.0,10.0,10.0,31,2.16 +4012,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.22 +29015,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +21055,55.0,4.0,6.0,7.0,5.0,7.0,5.0,5,0.39 +62048,,,,,,,,0, +56732,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.24 +19952,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.52 +1141,20.0,2.0,2.0,2.0,2.0,6.0,2.0,1,0.11 +14817,90.0,9.0,10.0,9.0,9.0,10.0,9.0,29,2.01 +61266,96.0,10.0,10.0,10.0,10.0,9.0,10.0,42,2.9 +45332,97.0,10.0,10.0,9.0,10.0,9.0,10.0,14,1.63 +40269,,,,,,,,0, +30628,100.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.6 +45975,93.0,10.0,10.0,10.0,10.0,10.0,9.0,33,2.26 +2000,80.0,8.0,6.0,9.0,8.0,7.0,7.0,4,0.33 +20591,87.0,9.0,9.0,10.0,10.0,10.0,9.0,3,0.21 +9400,95.0,9.0,10.0,10.0,10.0,9.0,9.0,8,0.57 +14573,98.0,10.0,10.0,10.0,10.0,9.0,10.0,9,0.64 +73267,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.28 +67448,100.0,10.0,6.0,10.0,10.0,10.0,8.0,1,0.24 +33713,,,,,,,,0, +73219,100.0,10.0,10.0,10.0,10.0,9.0,10.0,12,0.82 +56994,99.0,10.0,9.0,10.0,10.0,10.0,10.0,27,2.04 +34033,99.0,10.0,10.0,10.0,10.0,9.0,10.0,29,1.97 +46263,98.0,10.0,10.0,10.0,10.0,10.0,9.0,13,0.94 +22605,,,,,,,,0, +12777,89.0,9.0,9.0,9.0,9.0,9.0,9.0,14,1.06 +63055,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +52275,90.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.3 +40316,100.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +47344,,,,,,,,0, +3186,100.0,10.0,9.0,10.0,10.0,10.0,10.0,9,1.42 +48459,,,,,,,,0, +12586,98.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.83 +44206,97.0,9.0,10.0,10.0,10.0,10.0,9.0,7,0.56 +28798,96.0,10.0,9.0,10.0,10.0,9.0,10.0,11,0.78 +23840,96.0,10.0,10.0,10.0,10.0,10.0,10.0,97,6.81 +49853,95.0,10.0,10.0,10.0,10.0,10.0,9.0,15,1.05 +57677,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,2.69 +31637,99.0,10.0,10.0,10.0,10.0,10.0,10.0,14,0.97 +45862,93.0,10.0,9.0,10.0,9.0,10.0,10.0,4,0.28 +8698,,,,,,,,0, +76600,89.0,9.0,9.0,10.0,10.0,10.0,10.0,9,0.64 +22166,,,,,,,,1,0.07 +60823,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +26010,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.92 +65341,87.0,9.0,9.0,9.0,9.0,10.0,9.0,39,2.74 +64543,,,,,,,,0, +25239,,,,,,,,0, +73806,96.0,10.0,9.0,10.0,10.0,9.0,10.0,17,1.18 +23238,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +42640,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.52 +7911,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.64 +33807,97.0,10.0,10.0,10.0,10.0,10.0,9.0,31,2.13 +65520,93.0,9.0,9.0,9.0,10.0,9.0,9.0,17,1.21 +65354,,,,,,,,0, +12922,90.0,9.0,10.0,9.0,9.0,9.0,8.0,15,1.06 +19387,100.0,9.0,10.0,10.0,10.0,10.0,10.0,4,0.3 +52974,97.0,10.0,10.0,10.0,10.0,10.0,9.0,14,1.02 +74121,82.0,9.0,9.0,9.0,9.0,9.0,9.0,36,2.5 +36425,90.0,10.0,10.0,9.0,10.0,10.0,10.0,2,0.14 +61265,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.31 +57346,81.0,9.0,9.0,9.0,9.0,9.0,8.0,35,2.56 +5865,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.36 +47458,94.0,10.0,10.0,10.0,10.0,9.0,10.0,28,1.96 +71116,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.67 +26724,83.0,9.0,9.0,9.0,10.0,9.0,9.0,14,1.01 +18896,98.0,10.0,10.0,10.0,10.0,9.0,10.0,33,2.25 +25850,,,,,,,,0, +41935,,,,,,,,0, +18877,60.0,7.0,9.0,7.0,9.0,6.0,8.0,2,0.38 +12807,93.0,9.0,9.0,10.0,10.0,10.0,9.0,3,0.22 +22494,100.0,10.0,9.0,10.0,10.0,10.0,10.0,9,0.63 +27503,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.43 +20981,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.26 +56390,100.0,10.0,10.0,10.0,10.0,9.0,10.0,16,1.15 +6589,100.0,10.0,10.0,10.0,10.0,10.0,9.0,7,0.69 +43130,97.0,10.0,9.0,10.0,10.0,10.0,9.0,21,1.68 +20916,85.0,8.0,8.0,9.0,9.0,8.0,9.0,4,0.54 +1557,91.0,10.0,9.0,10.0,10.0,10.0,9.0,16,1.1 +64667,99.0,10.0,10.0,10.0,10.0,9.0,10.0,18,1.26 +60924,,,,,,,,0, +73783,,,,,,,,0, +71728,94.0,10.0,9.0,9.0,10.0,9.0,9.0,21,1.56 +25855,100.0,10.0,10.0,10.0,10.0,6.0,8.0,1,0.07 +64612,,,,,,,,0, +30393,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.13 +16979,,,,,,,,0, +54827,,,,,,,,0, +40576,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.4 +18550,85.0,9.0,8.0,10.0,10.0,10.0,8.0,30,2.3 +51376,74.0,7.0,6.0,8.0,9.0,9.0,7.0,14,0.96 +67508,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +29177,93.0,10.0,10.0,10.0,10.0,9.0,9.0,6,0.42 +30544,80.0,8.0,4.0,9.0,10.0,7.0,8.0,2,0.34 +45360,,,,,,,,0, +44533,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.14 +20857,,,,,,,,0, +68960,99.0,10.0,10.0,10.0,10.0,10.0,9.0,24,1.76 +74196,,,,,,,,0, +38971,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.16 +33490,,,,,,,,0, +24311,93.0,9.0,9.0,10.0,10.0,10.0,10.0,9,0.64 +34158,90.0,9.0,10.0,10.0,10.0,10.0,10.0,2,1.2 +73173,91.0,9.0,9.0,10.0,10.0,9.0,9.0,17,1.23 +46577,,,,,,,,0, +14649,,,,,,,,0, +75278,100.0,10.0,10.0,10.0,10.0,10.0,10.0,30,2.05 +73255,94.0,10.0,10.0,10.0,10.0,10.0,9.0,32,2.25 +20353,,,,,,,,0, +16913,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.81 +76433,98.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.93 +32149,,,,,,,,0, +38231,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.08 +15968,,,,,,,,0, +60495,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +7006,,,,,,,,1,0.08 +74301,,,,,,,,0, +45864,,,,,,,,0, +11374,60.0,10.0,10.0,6.0,6.0,10.0,6.0,1,0.86 +11035,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.27 +50674,,,,,,,,0, +11482,80.0,8.0,8.0,10.0,10.0,10.0,10.0,1,0.07 +58555,90.0,9.0,9.0,9.0,9.0,10.0,10.0,18,1.29 +72069,94.0,10.0,10.0,10.0,10.0,10.0,9.0,23,1.84 +75188,97.0,10.0,10.0,10.0,10.0,10.0,9.0,24,1.67 +72515,,,,,,,,0, +1976,,,,,,,,1,0.08 +64259,86.0,9.0,9.0,9.0,10.0,10.0,8.0,11,0.97 +22743,,,,,,,,0, +22862,83.0,9.0,8.0,9.0,9.0,9.0,9.0,12,0.88 +59085,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.66 +64581,80.0,10.0,8.0,10.0,10.0,8.0,8.0,2,0.14 +13748,96.0,10.0,10.0,10.0,10.0,9.0,9.0,17,1.46 +35474,88.0,9.0,8.0,10.0,10.0,9.0,9.0,10,0.69 +10835,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +39446,,,,,,,,0, +68625,95.0,9.0,9.0,10.0,10.0,10.0,9.0,15,1.11 +177,93.0,10.0,9.0,9.0,10.0,10.0,10.0,3,0.27 +19803,92.0,10.0,9.0,10.0,10.0,10.0,9.0,26,1.86 +32251,80.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.07 +36760,92.0,10.0,10.0,10.0,10.0,10.0,9.0,33,2.28 +42625,94.0,10.0,9.0,10.0,10.0,10.0,9.0,21,1.49 +8671,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.15 +33614,97.0,10.0,10.0,10.0,10.0,10.0,9.0,34,2.41 +48356,92.0,9.0,10.0,9.0,9.0,9.0,9.0,19,1.32 +38962,,,,,,,,0, +3325,87.0,9.0,10.0,10.0,10.0,10.0,9.0,33,2.31 +27736,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.14 +55720,98.0,10.0,9.0,10.0,10.0,10.0,9.0,10,0.72 +27598,98.0,10.0,10.0,10.0,10.0,10.0,10.0,72,5.03 +11831,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.18 +19041,100.0,10.0,10.0,10.0,10.0,9.0,10.0,12,0.84 +39631,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.36 +42149,87.0,9.0,9.0,9.0,9.0,10.0,9.0,12,0.87 +69588,98.0,10.0,10.0,10.0,10.0,10.0,10.0,30,2.28 +29499,,,,,,,,0, +67751,93.0,9.0,9.0,10.0,10.0,9.0,10.0,12,0.82 +46759,85.0,9.0,8.0,10.0,9.0,8.0,9.0,14,1.36 +38084,97.0,10.0,9.0,10.0,10.0,10.0,10.0,15,1.08 +75774,,,,,,,,0, +13295,100.0,8.0,6.0,10.0,10.0,10.0,10.0,1,0.07 +65167,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.77 +34495,90.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.14 +44119,80.0,6.0,4.0,10.0,10.0,6.0,6.0,1,0.07 +73586,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.07 +56676,,,,,,,,0, +58391,,,,,,,,0, +76755,90.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.51 +46977,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.09 +38118,93.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.43 +47130,93.0,10.0,10.0,10.0,10.0,10.0,9.0,17,1.33 +39106,91.0,9.0,10.0,10.0,10.0,9.0,9.0,15,1.13 +20844,95.0,10.0,10.0,9.0,9.0,9.0,9.0,13,0.92 +41970,99.0,10.0,10.0,10.0,10.0,9.0,10.0,24,1.67 +31855,91.0,9.0,10.0,9.0,9.0,9.0,9.0,44,3.0 +46975,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.39 +15271,97.0,10.0,9.0,10.0,10.0,9.0,10.0,59,4.01 +74736,,,,,,,,0, +23713,100.0,10.0,9.0,10.0,10.0,9.0,9.0,2,0.18 +11259,84.0,9.0,9.0,9.0,9.0,10.0,8.0,5,0.38 +44197,94.0,9.0,7.0,9.0,9.0,9.0,9.0,7,0.53 +6039,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.53 +21657,88.0,9.0,9.0,8.0,10.0,9.0,9.0,19,1.61 +6222,,,,,,,,1,0.08 +34185,100.0,9.0,10.0,10.0,10.0,10.0,10.0,5,0.79 +76393,100.0,10.0,8.0,10.0,9.0,9.0,9.0,3,0.4 +19011,97.0,10.0,10.0,10.0,9.0,10.0,10.0,30,2.33 +29821,93.0,9.0,9.0,10.0,10.0,9.0,9.0,4,0.27 +40188,92.0,9.0,9.0,9.0,10.0,10.0,9.0,37,2.78 +74626,90.0,10.0,9.0,9.0,10.0,10.0,9.0,8,0.55 +29616,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +60918,60.0,4.0,2.0,2.0,4.0,6.0,2.0,1,1.0 +32759,84.0,9.0,8.0,9.0,9.0,10.0,9.0,45,3.11 +51039,100.0,10.0,9.0,9.0,10.0,9.0,9.0,3,0.21 +1158,99.0,10.0,10.0,10.0,10.0,10.0,10.0,14,1.01 +71413,95.0,9.0,10.0,10.0,9.0,9.0,9.0,15,1.04 +39049,90.0,10.0,10.0,9.0,10.0,10.0,8.0,10,0.8 +44796,95.0,10.0,8.0,10.0,10.0,9.0,9.0,4,0.27 +16429,90.0,9.0,9.0,10.0,9.0,8.0,9.0,22,1.52 +71550,,,,,,,,0, +65116,95.0,10.0,9.0,10.0,9.0,9.0,9.0,11,0.8 +45022,,,,,,,,0, +33996,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.21 +47060,85.0,9.0,9.0,10.0,10.0,10.0,9.0,35,2.53 +19608,100.0,10.0,10.0,9.0,10.0,9.0,10.0,2,0.14 +1962,96.0,10.0,9.0,10.0,10.0,10.0,9.0,51,3.57 +39217,97.0,10.0,10.0,10.0,10.0,9.0,10.0,33,2.39 +60379,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +40645,96.0,10.0,10.0,10.0,10.0,10.0,10.0,48,3.33 +64631,75.0,9.0,8.0,9.0,10.0,10.0,7.0,4,0.28 +43868,93.0,9.0,9.0,9.0,9.0,9.0,9.0,4,0.4 +66942,,,,,,,,0, +1634,93.0,9.0,10.0,10.0,10.0,9.0,9.0,17,1.24 +72006,,,,,,,,1,0.07 +37985,,,,,,,,0, +71910,,,,,,,,0, +59960,96.0,10.0,8.0,10.0,10.0,9.0,9.0,10,0.71 +12607,,,,,,,,0, +67209,91.0,10.0,10.0,10.0,10.0,9.0,10.0,10,0.74 +61788,100.0,10.0,10.0,9.0,10.0,9.0,10.0,8,0.55 +10240,,,,,,,,0, +60999,100.0,10.0,9.0,10.0,10.0,9.0,9.0,3,0.21 +67996,75.0,8.0,8.0,9.0,8.0,6.0,7.0,4,0.38 +28238,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.28 +70338,88.0,9.0,9.0,10.0,10.0,9.0,9.0,8,0.6 +14419,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +49175,91.0,9.0,9.0,9.0,9.0,9.0,9.0,34,2.42 +71392,92.0,10.0,10.0,9.0,9.0,10.0,9.0,21,1.43 +31272,,,,,,,,0, +13802,60.0,8.0,8.0,10.0,10.0,10.0,4.0,1,0.55 +65298,,,,,,,,0, +42225,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,1.73 +10626,96.0,9.0,9.0,10.0,10.0,10.0,10.0,14,1.06 +18651,91.0,10.0,9.0,10.0,10.0,10.0,9.0,47,3.24 +67381,,,,,,,,0, +17013,97.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.89 +38804,,,,,,,,0, +61883,89.0,9.0,9.0,9.0,9.0,9.0,9.0,7,0.57 +11985,,,,,,,,1, +40234,83.0,9.0,8.0,10.0,10.0,10.0,8.0,20,1.66 +42197,99.0,10.0,10.0,10.0,10.0,10.0,10.0,16,1.19 +9574,100.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.21 +8265,88.0,9.0,9.0,9.0,9.0,9.0,9.0,16,1.2 +7564,93.0,10.0,9.0,10.0,9.0,9.0,10.0,12,0.92 +46040,,,,,,,,0, +76352,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.72 +32685,,,,,,,,0, +20845,99.0,10.0,9.0,10.0,10.0,10.0,9.0,17,1.22 +1991,91.0,9.0,9.0,10.0,10.0,9.0,8.0,7,0.55 +10710,98.0,10.0,10.0,10.0,10.0,10.0,10.0,48,3.36 +12168,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,1.0 +45150,88.0,9.0,9.0,9.0,9.0,9.0,9.0,22,1.51 +22445,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.26 +13268,97.0,10.0,10.0,10.0,10.0,10.0,10.0,79,5.42 +65282,86.0,9.0,9.0,9.0,10.0,10.0,9.0,10,0.78 +2853,96.0,10.0,10.0,10.0,10.0,9.0,9.0,9,0.69 +11050,94.0,10.0,10.0,9.0,10.0,9.0,10.0,16,1.19 +65868,,,,,,,,0, +25979,98.0,10.0,10.0,10.0,10.0,10.0,10.0,67,4.63 +15488,97.0,10.0,9.0,10.0,10.0,10.0,9.0,19,1.33 +23193,,,,,,,,0, +8019,95.0,10.0,10.0,10.0,10.0,10.0,9.0,22,1.75 +72853,93.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.27 +10301,92.0,9.0,10.0,9.0,9.0,10.0,10.0,12,0.95 +25546,97.0,10.0,9.0,9.0,10.0,9.0,9.0,6,0.42 +44413,98.0,10.0,10.0,10.0,10.0,9.0,10.0,11,3.06 +62705,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.83 +69890,83.0,9.0,8.0,9.0,9.0,9.0,9.0,13,0.99 +60385,,,,,,,,0, +24696,99.0,10.0,10.0,10.0,10.0,10.0,10.0,62,4.32 +39112,95.0,10.0,9.0,10.0,10.0,10.0,9.0,121,8.27 +15667,,,,,,,,0, +64417,94.0,10.0,9.0,10.0,10.0,10.0,9.0,19,1.41 +45470,93.0,9.0,8.0,10.0,9.0,10.0,9.0,6,0.47 +33758,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +21506,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.24 +59392,99.0,10.0,10.0,10.0,10.0,9.0,10.0,15,1.06 +70625,,,,,,,,0, +73461,99.0,10.0,10.0,10.0,10.0,10.0,10.0,29,2.0 +63694,,,,,,,,0, +56048,70.0,7.0,7.0,9.0,9.0,9.0,7.0,2,0.17 +16045,,,,,,,,0, +35494,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.95 +71667,98.0,10.0,10.0,10.0,10.0,10.0,10.0,21,1.47 +42580,,,,,,,,0, +21729,93.0,10.0,10.0,10.0,10.0,9.0,9.0,20,1.42 +18475,,,,,,,,0, +51439,96.0,10.0,10.0,10.0,9.0,10.0,10.0,31,2.14 +25363,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.14 +35267,93.0,10.0,9.0,10.0,10.0,9.0,10.0,27,1.88 +75635,94.0,10.0,9.0,10.0,10.0,9.0,10.0,23,1.64 +36922,,,,,,,,0, +39579,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.72 +37042,85.0,9.0,9.0,9.0,10.0,8.0,9.0,4,0.3 +35950,97.0,10.0,10.0,10.0,10.0,9.0,10.0,14,1.04 +1846,92.0,10.0,10.0,9.0,9.0,10.0,10.0,12,0.86 +66158,87.0,9.0,10.0,9.0,9.0,10.0,9.0,25,1.92 +47283,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.14 +23279,,,,,,,,0, +71429,98.0,10.0,10.0,9.0,9.0,10.0,9.0,16,1.19 +25385,95.0,9.0,10.0,10.0,10.0,9.0,9.0,16,1.34 +42649,72.0,8.0,6.0,9.0,9.0,8.0,7.0,5,0.44 +63827,,,,,,,,0, +11764,96.0,10.0,9.0,10.0,10.0,10.0,9.0,17,1.76 +58630,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.36 +16432,,,,,,,,0, +62314,100.0,10.0,6.0,10.0,10.0,10.0,10.0,1,0.09 +21840,100.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.3 +32562,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +76113,91.0,9.0,9.0,10.0,9.0,10.0,9.0,20,1.42 +16808,87.0,10.0,7.0,10.0,10.0,9.0,9.0,4,0.29 +60433,,,,,,,,0, +55475,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.22 +21281,91.0,9.0,9.0,10.0,10.0,10.0,9.0,36,2.67 +34835,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.69 +32855,80.0,10.0,8.0,10.0,10.0,6.0,8.0,2,0.14 +19741,98.0,10.0,10.0,10.0,10.0,10.0,10.0,25,1.81 +4569,,,,,,,,0, +66279,97.0,10.0,9.0,10.0,10.0,10.0,9.0,14,1.06 +61911,,,,,,,,0, +29180,99.0,10.0,10.0,10.0,10.0,9.0,10.0,30,2.3 +52664,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.12 +51433,96.0,10.0,10.0,10.0,10.0,9.0,10.0,19,1.48 +70482,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.78 +8248,99.0,10.0,10.0,10.0,10.0,10.0,10.0,31,2.51 +29681,93.0,9.0,9.0,9.0,9.0,10.0,9.0,3,0.21 +31951,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.95 +50459,100.0,10.0,10.0,10.0,10.0,9.0,9.0,4,0.45 +18851,89.0,9.0,9.0,9.0,9.0,10.0,9.0,15,1.05 +45079,96.0,10.0,10.0,10.0,10.0,10.0,10.0,25,1.79 +26670,80.0,8.0,6.0,8.0,10.0,10.0,10.0,1,0.08 +46692,93.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.22 +41832,98.0,10.0,10.0,9.0,10.0,10.0,10.0,11,0.76 +30506,80.0,10.0,7.0,10.0,10.0,9.0,9.0,4,0.3 +12002,98.0,10.0,9.0,10.0,10.0,10.0,9.0,9,0.77 +74036,100.0,10.0,10.0,10.0,10.0,8.0,9.0,3,0.26 +14401,,,,,,,,0, +25487,,,,,,,,0, +35621,100.0,9.0,9.0,10.0,10.0,10.0,10.0,4,0.68 +8569,99.0,10.0,10.0,10.0,10.0,10.0,10.0,33,3.9 +42079,95.0,10.0,10.0,10.0,10.0,8.0,10.0,5,0.35 +9461,100.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.59 +17053,98.0,10.0,10.0,10.0,10.0,10.0,10.0,46,3.19 +58743,97.0,10.0,10.0,10.0,10.0,9.0,10.0,21,1.49 +67344,98.0,10.0,10.0,10.0,10.0,10.0,10.0,80,5.53 +47484,98.0,10.0,10.0,10.0,10.0,9.0,9.0,51,3.53 +25863,98.0,10.0,10.0,10.0,10.0,10.0,10.0,69,4.74 +24617,97.0,10.0,10.0,10.0,10.0,9.0,10.0,82,5.73 +4239,91.0,10.0,9.0,9.0,9.0,9.0,10.0,9,0.79 +21279,88.0,10.0,9.0,10.0,10.0,8.0,8.0,5,0.43 +7386,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.15 +21548,100.0,10.0,9.0,10.0,10.0,10.0,10.0,11,0.82 +15670,,,,,,,,0, +64893,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.27 +35721,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.08 +2545,96.0,10.0,9.0,10.0,10.0,10.0,10.0,20,1.45 +26642,,,,,,,,0, +62515,93.0,10.0,9.0,8.0,10.0,10.0,9.0,6,0.42 +73808,98.0,10.0,10.0,10.0,10.0,10.0,10.0,96,6.64 +42592,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.28 +34546,100.0,10.0,10.0,8.0,10.0,9.0,10.0,2,0.17 +21053,,,,,,,,0, +11773,,,,,,,,0, +50120,80.0,8.0,9.0,7.0,9.0,9.0,8.0,4,0.33 +19746,,,,,,,,0, +17490,,,,,,,,0, +14274,,,,,,,,0, +49412,,,,,,,,0, +72052,,,,,,,,0, +6047,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.22 +68243,96.0,10.0,9.0,10.0,10.0,10.0,10.0,9,0.71 +1480,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.22 +65136,100.0,10.0,10.0,10.0,10.0,10.0,10.0,20,1.39 +60015,90.0,10.0,9.0,9.0,10.0,10.0,9.0,6,0.53 +73947,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.08 +1500,82.0,9.0,9.0,10.0,9.0,10.0,9.0,12,0.9 +64707,80.0,8.0,8.0,7.0,9.0,10.0,8.0,2,0.41 +50960,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.35 +56672,82.0,10.0,8.0,10.0,9.0,10.0,9.0,9,0.67 +71341,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.14 +20677,,,,,,,,0, +71951,95.0,10.0,9.0,10.0,10.0,10.0,9.0,30,2.19 +75352,83.0,9.0,10.0,9.0,8.0,10.0,8.0,7,0.61 +60877,95.0,10.0,9.0,10.0,10.0,9.0,10.0,17,1.25 +35389,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +314,,,,,,,,1,0.09 +43171,73.0,9.0,7.0,8.0,7.0,9.0,8.0,3,0.29 +54693,100.0,10.0,8.0,10.0,10.0,8.0,8.0,1,0.07 +27842,60.0,6.0,6.0,4.0,6.0,8.0,6.0,1,0.09 +74811,96.0,10.0,9.0,10.0,10.0,9.0,9.0,23,1.76 +65240,80.0,8.0,8.0,10.0,10.0,10.0,10.0,2,0.14 +63193,98.0,10.0,10.0,10.0,10.0,9.0,9.0,12,0.88 +69636,,,,,,,,0, +15264,96.0,10.0,10.0,10.0,10.0,10.0,10.0,60,4.5 +20186,98.0,10.0,10.0,10.0,10.0,9.0,10.0,13,0.91 +8510,,,,,,,,0, +42397,60.0,6.0,8.0,10.0,10.0,8.0,6.0,1,0.07 +7087,89.0,9.0,9.0,10.0,10.0,10.0,9.0,24,1.7 +62034,98.0,10.0,10.0,10.0,10.0,10.0,10.0,20,1.41 +59269,94.0,10.0,10.0,10.0,9.0,10.0,9.0,29,2.08 +70996,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.52 +47365,,,,,,,,0, +49103,,,,,,,,1,0.07 +62062,90.0,10.0,9.0,10.0,10.0,8.0,10.0,2,0.14 +3449,79.0,8.0,8.0,9.0,9.0,9.0,8.0,47,4.04 +37007,80.0,10.0,8.0,9.0,9.0,9.0,9.0,20,1.49 +23018,,,,,,,,0, +50356,,,,,,,,0, +67890,,,,,,,,0, +13415,,,,,,,,0, +66015,75.0,8.0,7.0,9.0,9.0,8.0,9.0,8,0.57 +12093,100.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.3 +15270,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.16 +50275,95.0,10.0,10.0,10.0,10.0,9.0,10.0,9,0.65 +60502,88.0,9.0,8.0,9.0,10.0,9.0,9.0,10,0.72 +63594,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.17 +19941,93.0,10.0,9.0,10.0,10.0,10.0,9.0,16,1.16 +62352,90.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.28 +20044,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +65478,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.65 +39786,83.0,9.0,8.0,10.0,10.0,10.0,9.0,52,3.75 +13702,,,,,,,,1,0.07 +9675,90.0,9.0,9.0,10.0,9.0,10.0,9.0,43,3.01 +34359,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +30838,90.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.15 +56415,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,1.06 +72954,96.0,10.0,9.0,10.0,9.0,10.0,10.0,30,2.06 +36519,80.0,10.0,8.0,10.0,8.0,6.0,8.0,1,0.08 +54984,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.62 +37925,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.21 +62099,91.0,9.0,9.0,10.0,10.0,9.0,9.0,34,3.46 +64454,,,,,,,,0, +76398,94.0,10.0,10.0,10.0,9.0,10.0,9.0,18,1.27 +23742,97.0,10.0,10.0,10.0,10.0,10.0,10.0,15,1.07 +4411,100.0,10.0,10.0,10.0,9.0,9.0,9.0,3,0.21 +36674,95.0,10.0,9.0,10.0,10.0,10.0,10.0,17,1.23 +9002,,,,,,,,0, +75426,98.0,10.0,10.0,10.0,10.0,9.0,10.0,34,2.42 +67756,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.49 +68904,,,,,,,,0, +44695,100.0,10.0,10.0,10.0,10.0,6.0,10.0,1,0.31 +35900,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.2 +18563,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.33 +64859,,,,,,,,0, +18998,,,,,,,,0, +744,,,,,,,,0, +44956,99.0,10.0,10.0,10.0,10.0,10.0,10.0,121,9.03 +4003,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.21 +31160,,,,,,,,0, +25106,95.0,10.0,9.0,10.0,10.0,10.0,10.0,22,1.59 +51641,92.0,9.0,8.0,10.0,9.0,9.0,8.0,5,0.38 +68842,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.41 +11494,,,,,,,,1,0.07 +4312,87.0,9.0,7.0,9.0,9.0,8.0,9.0,3,0.23 +28547,92.0,9.0,9.0,9.0,9.0,9.0,9.0,6,0.45 +67770,91.0,9.0,9.0,9.0,9.0,10.0,9.0,34,2.4 +57261,91.0,10.0,9.0,9.0,9.0,9.0,9.0,21,1.45 +4242,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.07 +2862,99.0,10.0,10.0,10.0,10.0,10.0,10.0,39,2.75 +37801,,,,,,,,0, +6086,100.0,10.0,10.0,10.0,10.0,6.0,8.0,1,0.08 +41348,,,,,,,,0, +58929,100.0,10.0,10.0,10.0,10.0,9.0,10.0,17,1.21 +3878,,,,,,,,0, +67541,,,,,,,,0, +42601,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +31310,88.0,9.0,10.0,9.0,9.0,9.0,9.0,15,1.2 +14851,,,,,,,,0, +70891,91.0,10.0,9.0,9.0,9.0,9.0,9.0,17,1.29 +64127,96.0,10.0,10.0,9.0,10.0,9.0,9.0,16,1.14 +1826,91.0,10.0,10.0,10.0,10.0,9.0,9.0,23,1.65 +61397,87.0,9.0,9.0,10.0,10.0,9.0,9.0,9,0.64 +38394,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.5 +65634,98.0,10.0,10.0,10.0,10.0,10.0,10.0,58,5.27 +15044,,,,,,,,0, +39660,85.0,10.0,9.0,10.0,10.0,10.0,9.0,4,3.08 +53054,96.0,10.0,10.0,10.0,10.0,10.0,10.0,56,3.93 +11681,91.0,9.0,9.0,9.0,8.0,9.0,9.0,11,0.78 +50359,90.0,9.0,8.0,9.0,10.0,10.0,9.0,20,1.43 +67094,83.0,9.0,8.0,9.0,9.0,8.0,9.0,55,3.86 +14598,,,,,,,,0, +48513,98.0,10.0,10.0,10.0,10.0,10.0,10.0,35,2.55 +4295,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +11191,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +3342,84.0,9.0,9.0,10.0,10.0,8.0,9.0,62,4.4 +52194,85.0,9.0,9.0,9.0,10.0,8.0,9.0,55,3.87 +2332,87.0,8.0,9.0,10.0,8.0,9.0,9.0,10,0.7 +41549,80.0,9.0,9.0,9.0,9.0,8.0,9.0,49,3.38 +28573,,,,,,,,0, +19054,93.0,10.0,10.0,10.0,10.0,9.0,9.0,9,0.66 +57999,95.0,10.0,10.0,10.0,10.0,9.0,9.0,30,2.23 +62641,98.0,10.0,10.0,10.0,10.0,10.0,10.0,42,3.13 +22161,100.0,10.0,10.0,10.0,8.0,8.0,10.0,2,0.15 +60612,,,,,,,,0, +28810,93.0,9.0,9.0,10.0,9.0,10.0,9.0,3,0.23 +26126,,,,,,,,0, +12587,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.37 +67481,99.0,10.0,10.0,10.0,10.0,10.0,10.0,20,1.49 +50989,91.0,9.0,9.0,9.0,10.0,10.0,10.0,10,0.71 +59816,95.0,10.0,9.0,10.0,10.0,10.0,9.0,9,0.64 +52688,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.51 +53527,100.0,10.0,10.0,10.0,10.0,10.0,10.0,15,1.15 +63848,,,,,,,,1,0.18 +45450,60.0,6.0,4.0,10.0,10.0,10.0,2.0,1,0.08 +44588,86.0,9.0,9.0,8.0,9.0,9.0,8.0,8,0.59 +4670,93.0,9.0,9.0,10.0,10.0,10.0,9.0,6,0.5 +26538,93.0,10.0,9.0,10.0,10.0,10.0,10.0,6,0.45 +67346,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.15 +56686,96.0,10.0,10.0,10.0,10.0,10.0,9.0,53,3.92 +26832,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,1.14 +52748,96.0,10.0,9.0,10.0,10.0,9.0,10.0,32,2.3 +72962,100.0,10.0,10.0,10.0,10.0,10.0,10.0,75,5.47 +25152,,,,,,,,0, +35672,,,,,,,,1,0.07 +19258,80.0,9.0,9.0,10.0,9.0,9.0,9.0,3,0.22 +3414,95.0,10.0,10.0,9.0,10.0,8.0,10.0,6,0.48 +17489,,,,,,,,0, +60753,95.0,10.0,10.0,10.0,10.0,9.0,10.0,11,0.81 +40547,,,,,,,,0, +71742,,,,,,,,0, +70867,81.0,8.0,8.0,9.0,8.0,8.0,8.0,54,3.97 +62016,70.0,7.0,8.0,6.0,7.0,10.0,6.0,2,0.14 +22854,77.0,8.0,7.0,10.0,10.0,9.0,8.0,14,1.01 +72594,,,,,,,,0, +3647,89.0,9.0,9.0,9.0,9.0,9.0,9.0,15,1.04 +34018,90.0,9.0,10.0,6.0,7.0,10.0,10.0,2,0.18 +2694,,,,,,,,0, +52017,76.0,8.0,9.0,9.0,10.0,9.0,8.0,9,0.68 +40147,80.0,9.0,10.0,10.0,9.0,10.0,9.0,4,0.28 +40850,99.0,10.0,10.0,10.0,10.0,10.0,10.0,39,2.79 +6020,,,,,,,,0, +56845,92.0,9.0,9.0,9.0,9.0,10.0,9.0,10,0.72 +13986,90.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.48 +51165,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +45850,100.0,10.0,10.0,10.0,10.0,10.0,10.0,29,2.01 +45668,93.0,10.0,10.0,10.0,10.0,10.0,9.0,55,4.07 +58889,,,,,,,,0, +67430,97.0,10.0,9.0,10.0,10.0,10.0,10.0,7,0.53 +49933,98.0,10.0,10.0,10.0,10.0,10.0,9.0,31,2.19 +55655,90.0,9.0,9.0,10.0,10.0,10.0,9.0,23,2.74 +54494,97.0,10.0,9.0,9.0,10.0,10.0,10.0,6,0.64 +29348,,,,,,,,0, +62752,95.0,10.0,10.0,10.0,10.0,10.0,9.0,15,1.13 +40315,93.0,10.0,10.0,9.0,10.0,9.0,9.0,3,0.26 +24275,80.0,7.0,7.0,9.0,9.0,6.0,7.0,2,0.4 +3629,93.0,10.0,10.0,10.0,10.0,9.0,9.0,29,2.06 +34506,92.0,9.0,9.0,10.0,10.0,9.0,9.0,13,1.85 +58448,,,,,,,,0, +70099,81.0,9.0,9.0,9.0,10.0,9.0,8.0,17,1.41 +53513,84.0,9.0,8.0,9.0,9.0,8.0,9.0,79,5.5 +51415,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.54 +75632,80.0,9.0,8.0,9.0,9.0,9.0,9.0,78,5.49 +14255,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.29 +39869,87.0,10.0,9.0,9.0,9.0,7.0,10.0,3,0.25 +76769,,,,,,,,0, +70264,92.0,9.0,9.0,10.0,10.0,10.0,9.0,18,1.42 +69698,,,,,,,,0, +56487,90.0,10.0,10.0,10.0,10.0,10.0,10.0,21,1.51 +5047,77.0,8.0,7.0,9.0,9.0,9.0,8.0,17,1.22 +56959,98.0,10.0,10.0,10.0,10.0,9.0,9.0,86,6.83 +17356,97.0,10.0,10.0,10.0,10.0,9.0,10.0,22,1.59 +31560,89.0,9.0,9.0,9.0,10.0,9.0,9.0,14,0.99 +44522,,,,,,,,0, +57887,98.0,10.0,10.0,10.0,10.0,10.0,10.0,18,3.53 +43254,89.0,9.0,9.0,10.0,10.0,10.0,9.0,43,3.23 +74003,86.0,9.0,9.0,9.0,10.0,9.0,9.0,40,2.77 +11481,87.0,9.0,9.0,9.0,10.0,10.0,9.0,44,3.1 +34065,92.0,9.0,10.0,9.0,10.0,10.0,9.0,5,0.37 +34381,,,,,,,,0, +68679,86.0,10.0,8.0,9.0,10.0,10.0,9.0,7,0.49 +28232,97.0,10.0,10.0,10.0,10.0,9.0,10.0,47,3.37 +15310,90.0,9.0,9.0,10.0,10.0,10.0,9.0,2,0.17 +38643,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.22 +6681,95.0,10.0,10.0,10.0,10.0,10.0,9.0,12,0.9 +4782,99.0,10.0,10.0,10.0,10.0,10.0,10.0,73,5.15 +34523,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.29 +1084,80.0,8.0,6.0,10.0,10.0,8.0,8.0,1,0.07 +10244,90.0,9.0,8.0,10.0,10.0,10.0,10.0,4,0.3 +64215,,,,,,,,0, +1272,91.0,10.0,9.0,10.0,10.0,9.0,9.0,28,2.0 +19645,83.0,9.0,9.0,10.0,10.0,7.0,9.0,23,1.9 +38578,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.48 +3718,53.0,7.0,8.0,7.0,6.0,7.0,6.0,3,0.6 +17514,94.0,10.0,10.0,10.0,10.0,10.0,9.0,28,2.86 +36450,82.0,9.0,9.0,10.0,9.0,9.0,8.0,9,0.74 +59674,,,,,,,,0, +70819,99.0,10.0,9.0,10.0,10.0,9.0,9.0,15,1.2 +4932,70.0,9.0,7.0,10.0,9.0,9.0,9.0,5,0.37 +51851,93.0,10.0,8.0,10.0,10.0,9.0,9.0,6,0.42 +61528,97.0,10.0,10.0,10.0,10.0,10.0,9.0,20,1.62 +20731,87.0,9.0,9.0,10.0,9.0,9.0,8.0,26,1.96 +73392,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.08 +57876,93.0,9.0,9.0,8.0,9.0,9.0,9.0,8,0.63 +196,95.0,10.0,10.0,10.0,10.0,10.0,9.0,69,4.98 +50382,95.0,10.0,10.0,10.0,10.0,9.0,10.0,45,3.22 +38036,93.0,10.0,10.0,9.0,9.0,9.0,9.0,12,1.05 +65206,80.0,8.0,8.0,8.0,8.0,10.0,6.0,1,0.08 +20306,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.46 +23012,97.0,10.0,9.0,10.0,10.0,9.0,10.0,7,0.51 +30331,100.0,10.0,10.0,10.0,10.0,9.0,9.0,2,0.38 +60223,97.0,10.0,9.0,10.0,10.0,9.0,10.0,49,3.58 +67454,,,,,,,,0, +52496,88.0,10.0,10.0,9.0,10.0,10.0,9.0,5,0.42 +15658,84.0,9.0,9.0,10.0,9.0,9.0,8.0,21,1.49 +53269,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.16 +66054,97.0,9.0,9.0,9.0,8.0,8.0,9.0,6,0.45 +62619,98.0,10.0,10.0,10.0,10.0,10.0,10.0,45,3.33 +51954,100.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.42 +9737,80.0,10.0,8.0,10.0,10.0,8.0,9.0,5,0.37 +28839,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.44 +38184,,,,,,,,0, +36012,94.0,10.0,10.0,10.0,10.0,8.0,10.0,19,1.31 +50012,96.0,10.0,9.0,9.0,10.0,9.0,10.0,7,0.52 +15985,89.0,9.0,9.0,10.0,9.0,10.0,9.0,25,1.79 +43869,98.0,10.0,9.0,10.0,9.0,10.0,10.0,14,0.99 +26680,,,,,,,,0, +67028,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.14 +21001,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.79 +30349,96.0,10.0,10.0,10.0,10.0,10.0,10.0,9,1.4 +49678,,,,,,,,0, +76239,98.0,10.0,10.0,10.0,10.0,10.0,9.0,17,2.93 +39336,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.22 +42080,90.0,9.0,10.0,10.0,9.0,10.0,10.0,8,0.57 +73680,,,,,,,,0, +53004,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.22 +4159,93.0,10.0,9.0,10.0,10.0,10.0,10.0,114,8.12 +25808,98.0,10.0,10.0,10.0,10.0,10.0,10.0,29,2.02 +31053,40.0,,,,2.0,,,1,0.08 +36683,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.28 +38234,78.0,8.0,9.0,9.0,8.0,9.0,8.0,19,1.37 +27922,94.0,10.0,9.0,9.0,9.0,10.0,9.0,19,1.46 +1574,,,,,,,,0, +49237,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.14 +32130,88.0,9.0,9.0,10.0,10.0,10.0,9.0,37,2.74 +69027,78.0,9.0,9.0,9.0,7.0,9.0,8.0,11,0.83 +619,93.0,10.0,10.0,10.0,9.0,10.0,9.0,9,0.76 +16562,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.07 +60055,,,,,,,,0, +21301,92.0,9.0,9.0,9.0,10.0,10.0,9.0,12,0.84 +27744,96.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.43 +38913,85.0,10.0,10.0,10.0,10.0,8.0,10.0,4,0.29 +11169,,,,,,,,1,0.48 +75108,,,,,,,,0, +20040,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.19 +76546,,,,,,,,0, +33302,,,,,,,,1,0.15 +11779,91.0,9.0,9.0,9.0,10.0,10.0,9.0,27,1.92 +7915,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.08 +61775,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.19 +43266,,,,,,,,0, +25269,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.16 +30481,100.0,9.0,9.0,10.0,10.0,10.0,9.0,3,0.36 +38292,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.08 +37842,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.23 +55016,93.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.63 +48014,80.0,8.0,10.0,10.0,10.0,10.0,10.0,2,0.18 +54682,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.55 +56745,,,,,,,,1,0.14 +28359,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.08 +29217,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.31 +56624,98.0,10.0,10.0,10.0,10.0,10.0,10.0,26,1.83 +47107,,,,,,,,0, +17343,100.0,10.0,10.0,10.0,10.0,10.0,10.0,20,1.43 +3482,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.3 +31984,,,,,,,,0, +62741,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.39 +58204,100.0,10.0,10.0,10.0,10.0,10.0,10.0,15,1.06 +68963,90.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.14 +67377,,,,,,,,0, +34152,,,,,,,,0, +52050,97.0,10.0,10.0,10.0,10.0,10.0,9.0,31,2.2 +30203,94.0,10.0,9.0,10.0,10.0,10.0,9.0,15,1.11 +23443,98.0,10.0,10.0,10.0,10.0,10.0,10.0,56,4.09 +14625,100.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.31 +25641,,,,,,,,0, +34918,,,,,,,,0, +75756,80.0,10.0,8.0,10.0,10.0,8.0,8.0,3,0.22 +22521,85.0,9.0,10.0,10.0,10.0,9.0,9.0,4,0.33 +22772,95.0,10.0,9.0,10.0,10.0,10.0,10.0,16,1.14 +29802,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.14 +74931,,,,,,,,0, +33474,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +71395,96.0,10.0,10.0,10.0,10.0,10.0,9.0,23,1.73 +31063,88.0,9.0,8.0,10.0,10.0,10.0,9.0,10,0.88 +62815,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.35 +2998,,,,,,,,0, +74613,,,,,,,,0, +42874,,,,,,,,0, +47430,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.07 +33161,91.0,9.0,9.0,10.0,10.0,9.0,9.0,12,0.92 +31780,86.0,9.0,9.0,10.0,9.0,10.0,9.0,20,1.41 +64522,96.0,10.0,10.0,10.0,10.0,10.0,9.0,47,4.21 +44843,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.42 +58428,,,,,,,,0, +61659,97.0,10.0,9.0,10.0,10.0,10.0,10.0,22,1.75 +27313,91.0,10.0,9.0,10.0,10.0,10.0,9.0,17,1.32 +63839,91.0,10.0,9.0,10.0,10.0,10.0,9.0,32,2.2 +63489,97.0,10.0,10.0,9.0,9.0,9.0,10.0,14,1.03 +30267,,,,,,,,1,0.07 +39203,90.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.22 +16720,86.0,9.0,9.0,10.0,10.0,10.0,8.0,7,0.5 +28434,,,,,,,,0, +65808,93.0,9.0,9.0,10.0,10.0,8.0,9.0,19,1.35 +59166,93.0,10.0,10.0,10.0,10.0,10.0,10.0,15,1.06 +5146,93.0,9.0,9.0,10.0,10.0,10.0,9.0,3,0.21 +52978,75.0,8.0,9.0,10.0,8.0,10.0,7.0,10,0.88 +10325,78.0,9.0,9.0,10.0,9.0,10.0,9.0,12,0.87 +51652,89.0,9.0,9.0,9.0,9.0,10.0,9.0,19,1.39 +59992,,,,,,,,1,0.08 +11453,,,,,,,,0, +250,93.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.23 +55844,80.0,8.0,10.0,8.0,10.0,10.0,10.0,1,0.67 +67145,,,,,,,,1,0.35 +36752,84.0,9.0,8.0,9.0,9.0,8.0,8.0,32,2.31 +73375,,,,,,,,0, +76906,76.0,8.0,7.0,9.0,9.0,8.0,8.0,15,1.08 +44306,95.0,10.0,9.0,10.0,10.0,9.0,10.0,17,1.24 +58283,91.0,10.0,9.0,10.0,10.0,10.0,9.0,12,0.9 +4108,,,,,,,,0, +10868,99.0,10.0,10.0,10.0,10.0,10.0,10.0,69,8.52 +16415,,,,,,,,0, +53266,100.0,8.0,8.0,10.0,10.0,10.0,10.0,1,1.0 +30174,100.0,10.0,6.0,10.0,10.0,10.0,10.0,1,0.09 +38083,,,,,,,,0, +56648,98.0,10.0,10.0,10.0,10.0,10.0,10.0,20,2.39 +71955,91.0,9.0,9.0,10.0,10.0,9.0,9.0,45,3.29 +53653,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.5 +59157,100.0,10.0,10.0,10.0,10.0,6.0,10.0,1,0.09 +5588,97.0,10.0,10.0,10.0,10.0,9.0,9.0,20,1.41 +29173,88.0,9.0,9.0,9.0,9.0,10.0,9.0,74,5.29 +11781,20.0,8.0,2.0,10.0,10.0,6.0,4.0,1,0.19 +34197,,,,,,,,0, +18598,97.0,10.0,10.0,10.0,10.0,9.0,10.0,75,6.54 +11499,98.0,10.0,9.0,10.0,10.0,10.0,9.0,12,0.88 +24830,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.62 +39974,40.0,6.0,2.0,10.0,10.0,8.0,4.0,1,0.12 +75137,,,,,,,,1,0.09 +30410,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.59 +20367,100.0,10.0,10.0,10.0,10.0,10.0,10.0,20,1.48 +73460,,,,,,,,0, +45981,,,,,,,,0, +3043,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.57 +45687,,,,,,,,1,0.08 +63802,,,,,,,,0, +50575,99.0,10.0,10.0,9.0,10.0,10.0,10.0,17,1.2 +76346,,,,,,,,0, +67083,,,,,,,,0, +25249,,,,,,,,0, +3821,80.0,10.0,8.0,8.0,10.0,6.0,10.0,3,0.21 +25884,97.0,10.0,10.0,9.0,9.0,10.0,9.0,19,1.39 +73621,82.0,9.0,8.0,9.0,10.0,10.0,9.0,21,1.56 +1977,89.0,9.0,10.0,10.0,10.0,9.0,9.0,18,1.37 +30538,,,,,,,,0, +61746,60.0,2.0,2.0,8.0,8.0,4.0,2.0,1,0.18 +1744,,,,,,,,1,0.08 +55945,92.0,10.0,9.0,9.0,9.0,9.0,10.0,29,2.25 +13734,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.23 +38370,92.0,10.0,9.0,10.0,10.0,10.0,9.0,18,1.29 +23247,90.0,9.0,9.0,9.0,9.0,8.0,9.0,35,2.47 +47422,,,,,,,,0, +52452,89.0,9.0,9.0,8.0,9.0,8.0,9.0,11,0.81 +5000,91.0,10.0,10.0,10.0,10.0,9.0,9.0,83,5.99 +2188,81.0,9.0,8.0,9.0,9.0,8.0,9.0,28,2.63 +3932,98.0,10.0,10.0,10.0,10.0,10.0,9.0,16,1.18 +10129,83.0,9.0,9.0,9.0,9.0,8.0,8.0,13,0.94 +76986,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.14 +61772,100.0,10.0,9.0,10.0,10.0,9.0,10.0,12,1.02 +7265,93.0,10.0,9.0,10.0,10.0,10.0,9.0,11,0.81 +1804,,,,,,,,0, +15823,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.18 +13966,,,,,,,,0, +32766,92.0,10.0,9.0,9.0,10.0,10.0,9.0,18,1.35 +46476,93.0,10.0,10.0,9.0,10.0,10.0,9.0,26,1.86 +45745,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,1.0 +70246,,,,,,,,0, +30567,98.0,10.0,9.0,10.0,10.0,10.0,10.0,8,0.58 +586,88.0,9.0,9.0,9.0,9.0,9.0,9.0,53,3.75 +44299,84.0,9.0,7.0,9.0,10.0,9.0,9.0,69,4.88 +75641,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.23 +34618,,,,,,,,0, +74548,93.0,9.0,10.0,10.0,10.0,10.0,9.0,8,0.63 +35657,,,,,,,,0, +10046,94.0,9.0,9.0,10.0,10.0,9.0,10.0,13,0.93 +60107,95.0,10.0,9.0,10.0,10.0,8.0,10.0,20,1.54 +6167,,,,,,,,0, +57983,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.15 +45627,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.9 +74940,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.45 +17281,100.0,10.0,10.0,10.0,6.0,10.0,10.0,1,0.07 +20154,91.0,10.0,10.0,9.0,9.0,10.0,9.0,27,1.94 +655,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +65515,90.0,9.0,9.0,10.0,10.0,9.0,10.0,36,2.54 +45586,93.0,8.0,9.0,9.0,9.0,10.0,9.0,4,0.29 +63695,95.0,10.0,9.0,10.0,10.0,10.0,10.0,8,0.72 +45191,98.0,10.0,9.0,10.0,10.0,10.0,9.0,23,2.52 +43013,100.0,10.0,8.0,10.0,10.0,10.0,9.0,3,0.42 +70617,94.0,10.0,10.0,10.0,10.0,10.0,9.0,14,1.09 +1452,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.79 +49304,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +68378,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.29 +48896,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.15 +13489,67.0,8.0,6.0,9.0,9.0,8.0,7.0,7,1.06 +58162,,,,,,,,0, +47550,,,,,,,,0, +40237,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +71407,60.0,10.0,4.0,10.0,10.0,8.0,6.0,1,0.08 +45231,80.0,8.0,7.0,10.0,10.0,10.0,9.0,2,0.17 +41817,98.0,10.0,10.0,10.0,10.0,10.0,10.0,84,5.94 +7295,98.0,10.0,10.0,10.0,10.0,10.0,10.0,43,3.03 +26070,100.0,10.0,9.0,10.0,10.0,10.0,9.0,5,0.37 +48327,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.14 +6773,96.0,10.0,10.0,10.0,10.0,10.0,10.0,32,2.35 +6549,82.0,9.0,9.0,10.0,10.0,9.0,9.0,13,1.25 +14164,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.86 +28219,60.0,6.0,4.0,10.0,8.0,6.0,8.0,1,0.11 +34826,84.0,10.0,9.0,9.0,9.0,9.0,8.0,9,0.73 +48194,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.43 +4641,,,,,,,,0, +22372,,,,,,,,0, +36304,98.0,10.0,9.0,10.0,10.0,10.0,10.0,53,3.98 +3122,85.0,8.0,10.0,9.0,9.0,10.0,9.0,4,0.4 +70431,95.0,10.0,10.0,10.0,10.0,9.0,10.0,20,1.44 +59400,73.0,8.0,7.0,9.0,8.0,9.0,7.0,26,1.88 +58957,100.0,10.0,10.0,10.0,10.0,9.0,10.0,14,1.04 +47400,96.0,9.0,10.0,10.0,10.0,10.0,10.0,5,0.52 +52488,98.0,10.0,10.0,10.0,10.0,9.0,10.0,17,1.21 +25994,,,,,,,,0, +15572,98.0,10.0,10.0,10.0,10.0,9.0,10.0,11,0.87 +49694,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.45 +55699,,,,,,,,0, +27303,20.0,2.0,2.0,4.0,2.0,6.0,2.0,1,0.21 +22460,99.0,10.0,10.0,10.0,10.0,10.0,10.0,19,1.4 +49537,,,,,,,,0, +6965,73.0,8.0,9.0,9.0,8.0,8.0,8.0,6,0.43 +54080,100.0,9.0,9.0,10.0,9.0,10.0,10.0,2,0.15 +66515,78.0,9.0,8.0,9.0,9.0,9.0,8.0,11,0.8 +27420,100.0,10.0,10.0,9.0,10.0,10.0,9.0,4,0.5 +52196,87.0,9.0,8.0,10.0,10.0,9.0,9.0,14,0.99 +26761,89.0,10.0,10.0,8.0,9.0,9.0,8.0,10,0.74 +54289,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.08 +8858,82.0,9.0,9.0,10.0,9.0,10.0,8.0,83,5.89 +32700,90.0,9.0,9.0,9.0,9.0,9.0,9.0,36,2.53 +53439,97.0,10.0,9.0,10.0,10.0,10.0,10.0,127,9.03 +35001,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.14 +32453,86.0,9.0,8.0,9.0,10.0,10.0,9.0,33,2.33 +9941,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.32 +66368,,,,,,,,0, +46797,98.0,10.0,10.0,10.0,10.0,10.0,10.0,19,1.52 +68774,90.0,9.0,9.0,10.0,10.0,9.0,9.0,25,1.79 +36857,,,,,,,,0, +50330,98.0,10.0,10.0,10.0,10.0,10.0,9.0,10,0.83 +11787,,,,,,,,0, +16374,94.0,10.0,9.0,10.0,10.0,9.0,9.0,19,1.35 +22647,90.0,8.0,9.0,10.0,10.0,9.0,9.0,4,0.37 +36580,72.0,7.0,8.0,5.0,5.0,8.0,7.0,5,0.38 +22741,86.0,9.0,9.0,10.0,10.0,10.0,9.0,16,1.16 +1151,87.0,9.0,9.0,8.0,9.0,9.0,9.0,25,2.44 +41945,96.0,10.0,9.0,10.0,10.0,10.0,10.0,35,2.51 +248,,,,,,,,0, +57044,90.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.14 +42632,95.0,10.0,9.0,10.0,10.0,9.0,10.0,13,0.98 +11552,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +73463,94.0,10.0,10.0,9.0,10.0,9.0,9.0,21,1.51 +46644,93.0,10.0,9.0,10.0,10.0,8.0,9.0,6,0.48 +44899,100.0,9.0,10.0,9.0,10.0,10.0,10.0,2,0.15 +62520,,,,,,,,0, +53735,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.29 +2587,97.0,10.0,9.0,10.0,10.0,10.0,9.0,18,1.36 +56154,100.0,10.0,10.0,9.0,10.0,9.0,10.0,8,0.59 +46973,98.0,10.0,10.0,10.0,10.0,10.0,10.0,44,4.44 +59010,95.0,10.0,10.0,10.0,9.0,9.0,10.0,20,1.47 +20333,,,,,,,,0, +13505,,,,,,,,0, +63183,,,,,,,,0, +4934,99.0,10.0,10.0,10.0,10.0,10.0,10.0,24,1.9 +33876,,,,,,,,0, +66628,83.0,8.0,10.0,8.0,7.0,9.0,9.0,8,0.59 +57011,,,,,,,,0, +57463,,,,,,,,0, +15526,100.0,10.0,9.0,10.0,10.0,10.0,10.0,7,0.53 +19164,93.0,9.0,8.0,9.0,9.0,10.0,9.0,22,1.61 +71078,79.0,8.0,8.0,9.0,9.0,8.0,8.0,19,1.45 +51682,94.0,10.0,9.0,10.0,10.0,10.0,10.0,18,1.3 +66694,77.0,8.0,9.0,9.0,9.0,9.0,8.0,7,0.6 +70362,99.0,10.0,10.0,10.0,10.0,9.0,10.0,65,4.65 +74643,70.0,10.0,7.0,8.0,8.0,9.0,9.0,2,0.16 +34551,,,,,,,,0, +1090,100.0,10.0,10.0,10.0,10.0,10.0,10.0,35,2.6 +19116,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.08 +72203,94.0,9.0,9.0,9.0,9.0,9.0,9.0,7,0.61 +4705,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.23 +12278,86.0,9.0,9.0,10.0,9.0,10.0,9.0,26,2.01 +27770,100.0,8.0,8.0,10.0,10.0,10.0,10.0,1,0.07 +36720,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.38 +56108,,,,,,,,0, +71916,95.0,10.0,9.0,10.0,10.0,9.0,10.0,37,2.75 +3573,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.08 +15173,100.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.33 +42823,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.44 +16126,93.0,10.0,10.0,10.0,9.0,10.0,10.0,20,1.5 +60811,88.0,9.0,8.0,10.0,10.0,10.0,9.0,5,0.37 +66234,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.98 +39883,90.0,9.0,9.0,9.0,9.0,10.0,9.0,43,3.11 +10529,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.15 +33956,,,,,,,,0, +43176,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.36 +7035,,,,,,,,0, +46285,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.4 +53086,92.0,10.0,10.0,10.0,10.0,10.0,10.0,104,7.78 +60826,96.0,10.0,10.0,9.0,10.0,10.0,9.0,91,6.63 +23688,82.0,9.0,8.0,9.0,9.0,8.0,8.0,40,3.12 +47901,78.0,9.0,8.0,9.0,9.0,8.0,9.0,75,5.34 +38317,91.0,10.0,9.0,10.0,10.0,9.0,9.0,47,3.93 +9311,83.0,9.0,8.0,9.0,9.0,8.0,9.0,64,4.56 +27513,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.15 +44000,80.0,9.0,8.0,9.0,9.0,9.0,9.0,71,5.07 +21581,100.0,10.0,10.0,10.0,10.0,9.0,10.0,12,1.86 +60483,100.0,10.0,10.0,10.0,10.0,10.0,10.0,29,2.13 +10273,97.0,10.0,10.0,10.0,10.0,10.0,10.0,30,2.18 +69537,100.0,10.0,8.0,10.0,10.0,10.0,10.0,4,0.3 +47472,84.0,9.0,9.0,9.0,10.0,10.0,8.0,10,0.72 +33414,84.0,10.0,9.0,9.0,10.0,10.0,8.0,5,0.37 +48477,,,,,,,,0, +48165,94.0,10.0,10.0,10.0,10.0,10.0,10.0,38,2.68 +18940,98.0,10.0,10.0,10.0,10.0,10.0,9.0,16,1.6 +53362,98.0,10.0,10.0,10.0,10.0,10.0,10.0,36,2.79 +47922,78.0,7.0,8.0,8.0,9.0,8.0,8.0,14,1.05 +13944,91.0,9.0,9.0,10.0,10.0,10.0,9.0,31,2.42 +26946,91.0,10.0,9.0,10.0,10.0,10.0,10.0,7,0.51 +50715,,,,,,,,0, +34696,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.08 +49337,90.0,8.0,9.0,9.0,9.0,7.0,8.0,2,0.73 +41165,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +35841,95.0,9.0,10.0,9.0,10.0,10.0,10.0,4,0.31 +57095,96.0,10.0,9.0,9.0,10.0,10.0,9.0,19,1.38 +31315,60.0,6.0,4.0,6.0,6.0,4.0,2.0,1,0.07 +70113,97.0,10.0,10.0,10.0,10.0,10.0,10.0,22,1.65 +42335,89.0,10.0,8.0,9.0,10.0,9.0,9.0,12,1.1 +8783,84.0,9.0,8.0,10.0,10.0,10.0,9.0,43,3.08 +12714,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,1.08 +31295,91.0,9.0,9.0,10.0,10.0,10.0,9.0,7,0.5 +2851,,,,,,,,0, +68843,,,,,,,,0, +41188,95.0,10.0,10.0,10.0,10.0,10.0,10.0,60,4.97 +27506,93.0,10.0,9.0,10.0,10.0,9.0,10.0,14,1.0 +68117,89.0,9.0,9.0,10.0,10.0,10.0,9.0,32,2.29 +14548,83.0,9.0,9.0,10.0,10.0,10.0,9.0,6,0.43 +24304,,,,,,,,1,0.07 +14896,77.0,8.0,8.0,9.0,10.0,8.0,9.0,6,0.45 +52990,60.0,6.0,6.0,9.0,9.0,8.0,6.0,4,0.38 +63843,91.0,9.0,8.0,10.0,10.0,10.0,9.0,18,1.3 +70334,,,,,,,,0, +42390,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.37 +54826,93.0,10.0,9.0,10.0,10.0,10.0,9.0,14,1.04 +5276,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.08 +24792,100.0,10.0,10.0,9.0,10.0,9.0,10.0,6,0.43 +66667,94.0,10.0,9.0,10.0,10.0,9.0,10.0,32,2.3 +65790,96.0,10.0,9.0,10.0,10.0,9.0,10.0,10,1.2 +24337,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.09 +70133,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.16 +55338,,,,,,,,0, +74939,89.0,9.0,8.0,10.0,10.0,10.0,9.0,7,0.59 +75107,,,,,,,,0, +22340,,,,,,,,0, +30797,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.41 +49352,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.08 +55262,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +32232,95.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.29 +61138,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.15 +56400,73.0,9.0,9.0,7.0,7.0,9.0,7.0,3,0.34 +6049,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.08 +8424,100.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.09 +74095,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.31 +30620,100.0,10.0,10.0,10.0,9.0,10.0,10.0,3,0.39 +17730,97.0,10.0,10.0,10.0,10.0,9.0,10.0,41,3.2 +929,98.0,10.0,10.0,10.0,10.0,10.0,10.0,26,1.97 +53368,93.0,10.0,9.0,10.0,10.0,10.0,10.0,18,1.31 +59467,96.0,10.0,10.0,10.0,10.0,10.0,10.0,25,1.91 +48278,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,2.36 +58834,,,,,,,,0, +33327,89.0,9.0,8.0,10.0,10.0,9.0,9.0,35,2.59 +13992,,,,,,,,0, +36121,100.0,10.0,10.0,10.0,10.0,8.0,10.0,6,0.48 +17657,,,,,,,,0, +10140,97.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.94 +17196,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.61 +50099,97.0,10.0,9.0,10.0,10.0,10.0,9.0,6,0.53 +6156,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.59 +48985,,,,,,,,0, +12442,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.5 +73344,97.0,10.0,9.0,10.0,10.0,10.0,10.0,95,6.87 +25746,,,,,,,,0, +15469,,,,,,,,0, +47009,93.0,10.0,9.0,9.0,9.0,10.0,10.0,7,0.56 +59974,100.0,9.0,9.0,10.0,10.0,9.0,9.0,3,0.25 +14124,100.0,10.0,9.0,10.0,10.0,9.0,10.0,5,1.13 +45795,,,,,,,,0, +18894,97.0,10.0,10.0,10.0,10.0,10.0,10.0,15,2.39 +36888,94.0,10.0,10.0,10.0,10.0,10.0,9.0,20,1.57 +31722,100.0,9.0,9.0,9.0,10.0,9.0,10.0,2,0.18 +73412,99.0,10.0,10.0,10.0,10.0,9.0,10.0,33,2.46 +44544,,,,,,,,1,0.18 +29445,93.0,9.0,9.0,9.0,9.0,10.0,9.0,19,1.42 +26205,90.0,10.0,8.0,9.0,9.0,9.0,9.0,12,0.87 +17905,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.07 +11911,90.0,10.0,10.0,10.0,10.0,8.0,9.0,2,0.16 +24857,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +63366,99.0,10.0,10.0,10.0,10.0,10.0,10.0,69,4.98 +35911,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.37 +70778,92.0,10.0,10.0,10.0,10.0,10.0,9.0,18,1.4 +28035,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +336,70.0,7.0,6.0,9.0,9.0,9.0,7.0,2,0.25 +64804,95.0,10.0,9.0,10.0,10.0,10.0,9.0,22,1.57 +10178,94.0,10.0,10.0,10.0,10.0,10.0,9.0,18,1.58 +27527,96.0,10.0,10.0,10.0,10.0,9.0,10.0,11,0.85 +3667,97.0,10.0,9.0,10.0,10.0,9.0,10.0,18,1.46 +61200,96.0,9.0,10.0,10.0,10.0,10.0,9.0,25,1.94 +19422,88.0,9.0,8.0,10.0,10.0,9.0,8.0,18,1.29 +13400,90.0,9.0,9.0,9.0,9.0,10.0,9.0,8,0.59 +19401,70.0,8.0,8.0,9.0,8.0,8.0,7.0,2,0.37 +18204,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.88 +53629,100.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.44 +17106,,,,,,,,0, +73296,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.22 +61276,93.0,10.0,9.0,10.0,10.0,9.0,10.0,16,1.22 +13179,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.19 +46586,,,,,,,,0, +38042,,,,,,,,0, +63062,90.0,10.0,10.0,10.0,10.0,8.0,8.0,2,0.16 +10728,92.0,10.0,8.0,10.0,10.0,9.0,9.0,15,1.09 +13514,93.0,10.0,10.0,10.0,10.0,10.0,9.0,12,0.88 +51040,96.0,10.0,9.0,10.0,10.0,10.0,10.0,18,1.34 +6144,90.0,10.0,9.0,10.0,9.0,8.0,9.0,13,0.93 +47105,100.0,6.0,10.0,8.0,8.0,6.0,8.0,1,0.67 +56454,,,,,,,,0, +24016,93.0,9.0,9.0,9.0,9.0,9.0,9.0,21,1.63 +18845,90.0,9.0,8.0,10.0,9.0,9.0,9.0,21,1.56 +73694,99.0,10.0,10.0,10.0,10.0,10.0,10.0,18,1.4 +22499,,,,,,,,0, +46927,100.0,10.0,10.0,10.0,10.0,10.0,10.0,15,1.08 +72353,,,,,,,,0, +76586,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.79 +1448,89.0,9.0,9.0,10.0,9.0,9.0,9.0,47,3.39 +59455,92.0,9.0,9.0,10.0,10.0,10.0,9.0,26,1.91 +77025,97.0,10.0,9.0,10.0,10.0,10.0,10.0,29,2.09 +72549,72.0,8.0,9.0,8.0,8.0,9.0,8.0,5,0.38 +13981,100.0,10.0,9.0,10.0,10.0,9.0,9.0,11,0.83 +10370,94.0,10.0,9.0,10.0,10.0,10.0,10.0,13,1.01 +42405,93.0,10.0,10.0,10.0,10.0,9.0,9.0,60,4.4 +7282,97.0,10.0,10.0,10.0,10.0,10.0,10.0,54,4.07 +63510,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +38237,,,,,,,,0, +65648,100.0,10.0,9.0,10.0,10.0,10.0,9.0,3,0.27 +28655,,,,,,,,0, +30290,100.0,10.0,10.0,10.0,10.0,10.0,10.0,18,1.73 +27338,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.65 +7454,,,,,,,,0, +62955,,,,,,,,0, +72778,96.0,10.0,10.0,10.0,10.0,10.0,10.0,80,5.91 +1780,96.0,10.0,9.0,10.0,10.0,9.0,10.0,14,1.0 +64079,90.0,10.0,9.0,10.0,10.0,9.0,9.0,21,1.5 +25718,76.0,8.0,8.0,9.0,8.0,9.0,8.0,5,0.42 +29683,100.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.16 +62872,85.0,8.0,9.0,8.0,9.0,9.0,9.0,11,1.21 +6908,,,,,,,,0, +72595,96.0,10.0,10.0,10.0,10.0,10.0,10.0,95,7.29 +75074,,,,,,,,0, +22885,93.0,10.0,9.0,10.0,10.0,9.0,10.0,9,0.8 +44939,85.0,9.0,7.0,10.0,10.0,9.0,8.0,4,0.32 +70242,90.0,9.0,9.0,9.0,9.0,10.0,9.0,62,4.38 +48351,100.0,10.0,10.0,9.0,9.0,10.0,10.0,7,0.58 +74744,,,,,,,,0, +36087,89.0,9.0,9.0,10.0,10.0,10.0,9.0,62,5.39 +65414,91.0,9.0,9.0,9.0,9.0,9.0,9.0,16,1.67 +64020,84.0,9.0,9.0,9.0,9.0,9.0,9.0,13,0.98 +62420,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.86 +28212,87.0,9.0,8.0,9.0,9.0,9.0,9.0,28,1.98 +34367,88.0,9.0,10.0,9.0,10.0,10.0,9.0,38,2.69 +64281,,,,,,,,0, +51457,80.0,9.0,7.0,9.0,9.0,9.0,8.0,33,2.56 +27568,,,,,,,,0, +73679,80.0,8.0,10.0,10.0,10.0,10.0,10.0,2,0.14 +42293,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.23 +74839,,,,,,,,1,0.07 +63034,100.0,10.0,10.0,10.0,10.0,10.0,9.0,7,0.61 +64676,100.0,10.0,9.0,10.0,10.0,9.0,9.0,2,0.17 +43873,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.56 +26431,85.0,9.0,9.0,10.0,9.0,9.0,9.0,12,0.85 +41190,88.0,10.0,8.0,10.0,10.0,10.0,9.0,7,0.62 +38848,,,,,,,,0, +5705,,,,,,,,0, +70979,100.0,10.0,9.0,10.0,10.0,9.0,9.0,3,0.26 +25212,,,,,,,,0, +58057,97.0,10.0,10.0,10.0,10.0,9.0,10.0,13,1.04 +65460,,,,,,,,0, +19345,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.19 +23589,91.0,9.0,9.0,9.0,10.0,8.0,9.0,8,0.71 +66986,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.16 +69144,82.0,9.0,8.0,9.0,10.0,10.0,9.0,10,0.73 +37208,95.0,10.0,10.0,10.0,10.0,10.0,10.0,16,1.27 +58680,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.38 +48430,87.0,9.0,9.0,7.0,8.0,10.0,8.0,3,0.26 +13762,93.0,10.0,10.0,9.0,10.0,10.0,9.0,3,0.22 +31783,,,,,,,,0, +25649,90.0,10.0,8.0,10.0,10.0,10.0,9.0,4,0.62 +27580,90.0,10.0,9.0,8.0,9.0,10.0,10.0,4,0.28 +54596,79.0,9.0,7.0,9.0,9.0,9.0,9.0,26,1.89 +43944,,,,,,,,0, +2267,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.38 +68894,99.0,10.0,10.0,10.0,10.0,10.0,10.0,69,5.46 +52767,,,,,,,,0, +42925,,,,,,,,0, +36506,100.0,10.0,10.0,10.0,10.0,10.0,10.0,15,1.5 +69260,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.44 +20132,,,,,,,,0, +4231,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.67 +41130,83.0,9.0,9.0,10.0,9.0,10.0,9.0,12,0.89 +23562,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.94 +48097,93.0,10.0,9.0,9.0,10.0,10.0,10.0,10,0.98 +12983,,,,,,,,0, +16565,96.0,9.0,9.0,10.0,10.0,9.0,9.0,27,2.06 +50541,92.0,10.0,10.0,10.0,9.0,9.0,9.0,53,4.07 +54778,,,,,,,,0, +58038,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.19 +44103,,,,,,,,1,0.08 +16585,89.0,9.0,9.0,8.0,9.0,8.0,8.0,14,1.1 +34641,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +75297,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.44 +47730,87.0,9.0,7.0,9.0,9.0,10.0,8.0,20,1.46 +50836,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.61 +46995,,,,,,,,0, +60102,99.0,10.0,10.0,10.0,10.0,10.0,10.0,38,2.9 +73339,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,1.07 +63217,,,,,,,,0, +35601,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +27058,95.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.41 +44877,87.0,9.0,9.0,10.0,9.0,9.0,9.0,4,0.29 +58334,,,,,,,,1,0.16 +37313,,,,,,,,0, +62321,95.0,10.0,10.0,10.0,10.0,9.0,9.0,24,1.87 +25252,95.0,10.0,10.0,10.0,10.0,10.0,9.0,9,0.65 +62637,94.0,10.0,10.0,10.0,10.0,9.0,10.0,22,1.61 +54150,96.0,10.0,10.0,10.0,10.0,10.0,10.0,45,3.23 +42262,90.0,8.0,9.0,9.0,8.0,10.0,9.0,8,0.62 +62011,83.0,9.0,9.0,9.0,9.0,10.0,9.0,8,0.63 +14730,80.0,8.0,7.0,9.0,8.0,8.0,8.0,11,0.8 +25441,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.23 +38925,100.0,10.0,10.0,10.0,10.0,8.0,10.0,5,0.36 +37053,80.0,10.0,8.0,10.0,10.0,8.0,8.0,1,0.07 +62589,,,,,,,,2,0.2 +40902,93.0,9.0,9.0,10.0,10.0,10.0,10.0,40,2.99 +58047,91.0,10.0,9.0,10.0,10.0,10.0,9.0,86,6.11 +6485,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.43 +16489,,,,,,,,0, +53249,,,,,,,,0, +67494,93.0,10.0,10.0,10.0,10.0,10.0,10.0,32,2.3 +64194,96.0,10.0,10.0,10.0,10.0,9.0,10.0,35,2.85 +48621,85.0,9.0,9.0,9.0,10.0,9.0,9.0,39,2.81 +37125,,,,,,,,1,0.09 +17408,96.0,10.0,10.0,10.0,10.0,10.0,10.0,44,3.17 +11401,,,,,,,,0, +8807,80.0,6.0,4.0,10.0,8.0,10.0,6.0,2,0.15 +19919,,,,,,,,1,0.07 +29320,91.0,9.0,9.0,10.0,9.0,9.0,9.0,8,0.62 +11977,80.0,9.0,9.0,8.0,8.0,10.0,10.0,7,0.5 +31914,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.3 +73287,,,,,,,,0, +7171,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.37 +39663,90.0,9.0,9.0,10.0,10.0,10.0,9.0,4,0.3 +38059,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.92 +22588,,,,,,,,0, +54583,88.0,9.0,9.0,9.0,10.0,10.0,10.0,14,1.02 +65016,90.0,9.0,10.0,9.0,9.0,10.0,9.0,24,1.8 +2277,94.0,10.0,10.0,10.0,10.0,9.0,10.0,13,1.03 +21329,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.14 +14739,85.0,9.0,8.0,9.0,9.0,9.0,9.0,44,3.32 +29559,85.0,9.0,9.0,9.0,9.0,9.0,9.0,30,2.36 +76050,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.08 +6711,99.0,10.0,10.0,10.0,10.0,10.0,10.0,21,3.18 +29022,95.0,10.0,10.0,10.0,10.0,10.0,10.0,37,2.64 +25877,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.15 +50443,94.0,9.0,10.0,9.0,10.0,9.0,9.0,7,0.53 +43392,,,,,,,,0, +27157,80.0,9.0,8.0,9.0,9.0,9.0,9.0,8,0.6 +1810,100.0,10.0,10.0,9.0,10.0,10.0,10.0,5,0.37 +49656,88.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.36 +20557,90.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.44 +49115,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.09 +17979,89.0,9.0,10.0,8.0,8.0,9.0,9.0,7,0.52 +46735,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.7 +3481,,,,,,,,1,0.1 +65821,,,,,,,,0, +65941,96.0,10.0,10.0,10.0,10.0,9.0,9.0,35,2.56 +45527,,,,,,,,0, +52840,,,,,,,,0, +76482,,,,,,,,0, +72881,90.0,8.0,10.0,10.0,10.0,10.0,10.0,2,0.15 +27654,91.0,9.0,9.0,10.0,9.0,9.0,9.0,33,2.44 +19630,70.0,10.0,6.0,6.0,10.0,10.0,6.0,2,0.15 +63785,,,,,,,,0, +40807,94.0,10.0,9.0,10.0,10.0,9.0,10.0,38,2.81 +33162,,,,,,,,0, +16783,92.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.89 +38807,80.0,8.0,8.0,9.0,10.0,8.0,8.0,4,0.86 +45306,,,,,,,,0, +1052,90.0,9.0,9.0,10.0,10.0,9.0,9.0,12,1.04 +68940,92.0,10.0,9.0,10.0,10.0,10.0,9.0,30,2.18 +55608,,,,,,,,0, +15364,95.0,10.0,9.0,10.0,10.0,10.0,10.0,13,0.94 +22017,98.0,10.0,10.0,10.0,10.0,10.0,9.0,9,0.88 +31399,97.0,9.0,9.0,10.0,10.0,10.0,9.0,7,0.59 +13497,80.0,6.0,8.0,10.0,10.0,10.0,8.0,1,0.19 +39187,,,,,,,,3,0.22 +13159,89.0,9.0,9.0,10.0,9.0,10.0,9.0,70,5.12 +23405,89.0,9.0,9.0,9.0,9.0,10.0,8.0,15,1.55 +20564,,,,,,,,0, +18287,95.0,9.0,10.0,10.0,9.0,10.0,9.0,11,0.86 +35196,97.0,9.0,9.0,10.0,10.0,10.0,9.0,7,0.88 +27296,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.15 +16802,89.0,9.0,9.0,10.0,10.0,10.0,9.0,23,1.65 +1412,100.0,10.0,10.0,6.0,8.0,10.0,8.0,1,0.24 +24770,,,,,,,,0, +40929,100.0,10.0,10.0,10.0,6.0,8.0,10.0,1,0.09 +40536,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.29 +57150,85.0,9.0,10.0,9.0,8.0,10.0,9.0,4,0.3 +14660,85.0,9.0,9.0,9.0,9.0,10.0,8.0,4,0.3 +8931,,,,,,,,0, +29853,83.0,10.0,9.0,9.0,9.0,10.0,9.0,6,0.45 +15413,90.0,10.0,9.0,9.0,10.0,10.0,9.0,2,0.17 +58890,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.22 +9346,79.0,9.0,9.0,9.0,9.0,10.0,8.0,15,1.18 +7655,90.0,9.0,9.0,10.0,10.0,10.0,9.0,2,0.17 +45236,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +33676,100.0,10.0,10.0,10.0,10.0,9.0,10.0,13,1.06 +22448,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.3 +69822,91.0,8.0,10.0,10.0,10.0,10.0,9.0,11,0.89 +64952,97.0,10.0,9.0,10.0,10.0,10.0,10.0,13,1.1 +16038,,,,,,,,0, +57156,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,2.24 +63882,90.0,10.0,7.0,10.0,10.0,10.0,9.0,2,0.16 +27323,89.0,9.0,8.0,10.0,10.0,9.0,9.0,9,0.64 +29222,100.0,10.0,7.0,10.0,10.0,9.0,10.0,5,0.39 +59507,,,,,,,,0, +60652,95.0,9.0,10.0,10.0,10.0,10.0,9.0,4,0.3 +72581,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.7 +46943,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.72 +23967,,,,,,,,0, +45183,,,,,,,,0, +35827,87.0,9.0,8.0,10.0,10.0,10.0,9.0,9,0.65 +76434,76.0,8.0,6.0,8.0,8.0,8.0,7.0,5,0.85 +75940,97.0,10.0,10.0,10.0,10.0,10.0,10.0,35,2.55 +58360,91.0,9.0,10.0,9.0,9.0,10.0,9.0,16,1.15 +13987,88.0,10.0,9.0,10.0,10.0,10.0,9.0,21,1.53 +24563,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.69 +32610,92.0,10.0,10.0,10.0,10.0,10.0,10.0,22,1.79 +28064,99.0,10.0,10.0,10.0,10.0,10.0,10.0,52,3.97 +76370,100.0,10.0,10.0,10.0,9.0,9.0,10.0,3,0.34 +39909,93.0,10.0,9.0,10.0,10.0,9.0,10.0,8,0.61 +47912,97.0,10.0,9.0,10.0,10.0,10.0,10.0,7,0.54 +74544,91.0,10.0,10.0,9.0,9.0,10.0,10.0,11,0.88 +59421,100.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.16 +57052,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.18 +56762,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.42 +56376,,,,,,,,0, +11016,,,,,,,,0, +60086,80.0,8.0,10.0,10.0,10.0,10.0,10.0,2,0.16 +40559,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.16 +74114,84.0,9.0,9.0,8.0,9.0,8.0,8.0,17,1.34 +15035,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.25 +27809,92.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.38 +16769,94.0,9.0,9.0,10.0,10.0,10.0,10.0,7,0.56 +17157,94.0,10.0,10.0,10.0,10.0,10.0,10.0,22,1.58 +76174,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.15 +7371,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.14 +20343,,,,,,,,0, +12962,,10.0,10.0,10.0,10.0,10.0,10.0,1,0.2 +1060,98.0,10.0,9.0,10.0,10.0,10.0,10.0,54,4.4 +35716,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.18 +31169,,,,,,,,0, +60429,,,,,,,,0, +6424,100.0,10.0,10.0,9.0,10.0,8.0,10.0,5,0.41 +5215,86.0,9.0,9.0,10.0,9.0,9.0,9.0,17,1.25 +22454,95.0,10.0,10.0,10.0,10.0,10.0,10.0,20,1.53 +1510,100.0,9.0,9.0,10.0,9.0,8.0,9.0,2,0.15 +18426,,,,,,,,0, +15275,98.0,10.0,9.0,10.0,10.0,10.0,10.0,8,0.65 +24227,,,,,,,,0, +34375,,,,,,,,0, +18448,94.0,10.0,9.0,10.0,10.0,9.0,10.0,30,2.41 +12511,,,,,,,,0, +38983,88.0,10.0,9.0,9.0,10.0,9.0,9.0,13,1.12 +17771,91.0,9.0,9.0,10.0,10.0,9.0,9.0,29,2.13 +14407,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.42 +44456,92.0,10.0,9.0,10.0,10.0,10.0,9.0,79,5.79 +58255,91.0,9.0,10.0,8.0,9.0,10.0,9.0,7,0.56 +1148,,,,,,,,0, +30624,80.0,8.0,7.0,9.0,9.0,8.0,8.0,11,0.81 +30298,92.0,9.0,9.0,10.0,10.0,10.0,10.0,21,2.33 +25130,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +2218,96.0,10.0,9.0,10.0,10.0,10.0,10.0,15,1.13 +51158,96.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.37 +10291,100.0,10.0,10.0,10.0,10.0,9.0,10.0,40,2.91 +73693,,,,,,,,0, +13313,89.0,10.0,8.0,9.0,9.0,10.0,9.0,7,0.52 +43399,99.0,10.0,10.0,10.0,10.0,10.0,10.0,35,2.55 +63820,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +20495,100.0,10.0,10.0,10.0,10.0,10.0,10.0,16,1.8 +41058,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.08 +48648,,,,,,,,0, +6862,94.0,10.0,10.0,10.0,10.0,9.0,9.0,13,1.08 +17204,60.0,10.0,4.0,8.0,10.0,10.0,4.0,1,0.08 +48359,93.0,9.0,9.0,9.0,10.0,9.0,9.0,3,0.22 +37431,,,,,,,,0, +71497,96.0,10.0,10.0,10.0,10.0,10.0,10.0,25,1.97 +6250,89.0,9.0,9.0,10.0,10.0,9.0,9.0,83,6.59 +7712,91.0,10.0,10.0,10.0,10.0,9.0,10.0,14,1.03 +11813,100.0,10.0,10.0,10.0,10.0,9.0,9.0,4,0.35 +53574,97.0,10.0,10.0,10.0,10.0,9.0,10.0,138,10.12 +12106,97.0,10.0,10.0,10.0,10.0,9.0,10.0,27,2.02 +31965,100.0,10.0,10.0,10.0,10.0,9.0,9.0,5,2.0 +44271,91.0,9.0,10.0,9.0,10.0,9.0,9.0,13,1.02 +62877,93.0,10.0,10.0,9.0,10.0,10.0,9.0,8,0.99 +57012,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.37 +34688,,,,,,,,0, +6989,93.0,10.0,9.0,9.0,10.0,10.0,9.0,18,1.41 +46594,91.0,9.0,9.0,9.0,10.0,10.0,9.0,28,2.09 +31432,,,,,,,,0, +66398,60.0,6.0,6.0,6.0,6.0,6.0,6.0,2,0.18 +75146,87.0,9.0,9.0,10.0,10.0,10.0,10.0,3,0.25 +26474,96.0,10.0,10.0,10.0,10.0,10.0,10.0,39,2.87 +75455,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.75 +24442,70.0,8.0,8.0,8.0,8.0,8.0,8.0,5,0.38 +48260,,,,,,,,0, +44410,97.0,10.0,10.0,10.0,10.0,10.0,10.0,70,5.19 +56061,99.0,10.0,10.0,10.0,10.0,10.0,10.0,26,1.88 +20022,84.0,9.0,9.0,9.0,9.0,9.0,9.0,49,3.62 +13129,98.0,10.0,10.0,10.0,10.0,10.0,9.0,13,0.96 +2114,80.0,9.0,8.0,10.0,9.0,8.0,9.0,71,5.3 +55168,,,,,,,,0, +58654,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.45 +22124,,,,,,,,0, +11980,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,1.04 +54763,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.29 +17712,98.0,10.0,10.0,10.0,10.0,10.0,10.0,47,3.37 +5055,,,,,,,,0, +73304,72.0,8.0,7.0,8.0,9.0,8.0,7.0,5,0.78 +11293,,,,,,,,0, +65721,80.0,8.0,8.0,9.0,9.0,9.0,8.0,17,1.25 +33246,95.0,10.0,10.0,10.0,10.0,9.0,10.0,22,1.65 +3679,95.0,9.0,9.0,10.0,10.0,9.0,9.0,19,3.15 +59084,97.0,10.0,9.0,10.0,10.0,10.0,10.0,20,1.45 +34626,83.0,9.0,8.0,9.0,10.0,9.0,8.0,18,1.33 +3814,90.0,9.0,9.0,9.0,10.0,9.0,9.0,56,4.19 +42489,,,,,,,,0, +36228,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.18 +67792,97.0,10.0,10.0,10.0,10.0,9.0,9.0,28,2.04 +19490,65.0,8.0,9.0,9.0,9.0,9.0,7.0,4,0.33 +21968,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.17 +10787,83.0,8.0,7.0,10.0,9.0,9.0,9.0,12,1.01 +51052,50.0,5.0,6.0,6.0,6.0,8.0,5.0,2,0.16 +76366,86.0,9.0,8.0,9.0,9.0,8.0,9.0,49,3.67 +26469,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.09 +10202,100.0,10.0,10.0,10.0,10.0,10.0,10.0,35,2.52 +68591,95.0,10.0,10.0,10.0,10.0,9.0,9.0,13,0.97 +59282,87.0,8.0,9.0,9.0,9.0,9.0,8.0,18,1.34 +67287,91.0,9.0,9.0,10.0,10.0,9.0,10.0,18,1.5 +57443,92.0,10.0,9.0,10.0,10.0,9.0,9.0,5,0.42 +14008,,,,,,,,1,0.15 +14260,97.0,10.0,10.0,10.0,10.0,10.0,10.0,32,2.33 +17383,20.0,10.0,2.0,10.0,8.0,6.0,4.0,1,0.08 +68000,93.0,9.0,9.0,9.0,9.0,10.0,9.0,3,0.27 +5296,,,,,,,,0, +16010,100.0,10.0,10.0,10.0,10.0,10.0,10.0,15,1.18 +39334,99.0,10.0,10.0,10.0,10.0,10.0,10.0,21,1.54 +42503,,,,,,,,1,0.09 +5343,97.0,10.0,10.0,10.0,10.0,10.0,10.0,13,0.95 +8993,100.0,10.0,10.0,10.0,10.0,10.0,10.0,48,3.5 +70236,,,,,,,,0, +58104,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.31 +63269,92.0,10.0,9.0,10.0,10.0,9.0,9.0,87,6.4 +21616,,,,,,,,0, +63357,92.0,10.0,9.0,10.0,10.0,10.0,9.0,12,0.94 +37528,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.47 +7017,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.16 +30141,,,,,,,,0, +60138,,,,,,,,0, +13895,,,,,,,,0, +53196,,,,,,,,0, +71164,,,,,,,,0, +9983,98.0,10.0,10.0,10.0,10.0,10.0,9.0,9,0.7 +28506,,,,,,,,0, +74139,92.0,9.0,10.0,8.0,9.0,8.0,7.0,5,0.37 +74119,,,,,,,,1,0.32 +12,91.0,9.0,7.0,10.0,10.0,9.0,10.0,7,0.55 +62253,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.14 +36632,,,,,,,,0, +10599,77.0,9.0,8.0,9.0,8.0,9.0,7.0,6,0.52 +13935,,,,,,,,0, +17586,,,,,,,,1,0.17 +40860,,,,,,,,0, +19733,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.08 +29282,95.0,10.0,10.0,10.0,10.0,10.0,9.0,20,1.52 +28675,94.0,10.0,9.0,10.0,10.0,10.0,10.0,43,3.14 +1295,96.0,10.0,9.0,9.0,10.0,10.0,9.0,19,1.41 +76031,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.15 +77045,97.0,10.0,9.0,10.0,10.0,10.0,10.0,7,0.85 +26380,,,,,,,,0, +49564,,,,,,,,0, +32076,,,,,,,,0, +26510,95.0,10.0,10.0,10.0,10.0,10.0,9.0,26,1.89 +5681,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.19 +42552,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.39 +53274,97.0,10.0,10.0,10.0,10.0,10.0,10.0,15,1.17 +44326,96.0,10.0,9.0,10.0,9.0,10.0,10.0,10,2.4 +61163,97.0,10.0,10.0,10.0,10.0,10.0,10.0,20,1.47 +21922,78.0,8.0,8.0,8.0,7.0,8.0,9.0,11,0.81 +41122,99.0,10.0,10.0,10.0,10.0,10.0,10.0,22,1.6 +37461,93.0,10.0,10.0,9.0,9.0,9.0,9.0,3,0.22 +38174,100.0,10.0,10.0,9.0,10.0,10.0,10.0,7,0.51 +47451,95.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.3 +15378,78.0,8.0,8.0,8.0,9.0,9.0,8.0,24,1.78 +43847,84.0,9.0,9.0,9.0,9.0,9.0,8.0,14,1.17 +45813,87.0,10.0,10.0,9.0,9.0,10.0,10.0,3,0.23 +11072,92.0,10.0,10.0,10.0,10.0,9.0,9.0,5,0.74 +46338,80.0,9.0,8.0,8.0,10.0,10.0,8.0,4,0.34 +437,80.0,8.0,2.0,10.0,10.0,10.0,8.0,1,0.09 +69943,80.0,8.0,8.0,8.0,8.0,8.0,8.0,1,0.08 +59569,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.15 +20655,,,,,,,,0, +31633,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.77 +27550,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,1.61 +32082,,,,,,,,0, +16955,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.92 +76309,89.0,9.0,10.0,10.0,8.0,9.0,9.0,11,0.98 +21352,93.0,10.0,9.0,10.0,10.0,9.0,9.0,11,1.21 +58243,,,,,,,,0, +3697,72.0,8.0,7.0,9.0,8.0,9.0,8.0,33,2.79 +17248,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.09 +55706,100.0,10.0,9.0,10.0,10.0,10.0,10.0,6,0.45 +45628,95.0,10.0,9.0,10.0,10.0,10.0,9.0,27,2.0 +31385,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +39690,,,,,,,,0, +33527,96.0,10.0,9.0,10.0,10.0,10.0,10.0,19,1.46 +47265,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.3 +71056,99.0,10.0,10.0,10.0,10.0,10.0,10.0,104,7.5 +75715,99.0,10.0,10.0,10.0,10.0,10.0,10.0,51,3.91 +42386,,,,,,,,0, +37044,98.0,10.0,10.0,10.0,10.0,9.0,10.0,13,0.96 +53959,80.0,10.0,8.0,10.0,10.0,8.0,10.0,2,0.15 +33459,92.0,9.0,9.0,9.0,10.0,9.0,9.0,11,0.89 +17389,88.0,9.0,8.0,9.0,9.0,9.0,10.0,22,1.63 +12497,90.0,10.0,9.0,10.0,9.0,9.0,9.0,24,1.88 +28850,98.0,9.0,10.0,10.0,10.0,9.0,10.0,11,0.95 +26096,96.0,10.0,10.0,10.0,10.0,9.0,10.0,43,3.61 +30640,88.0,9.0,9.0,10.0,9.0,9.0,9.0,26,1.89 +59491,94.0,10.0,10.0,10.0,10.0,10.0,9.0,16,1.17 +57582,84.0,9.0,8.0,10.0,10.0,9.0,9.0,28,2.02 +57096,96.0,10.0,10.0,10.0,10.0,10.0,9.0,31,2.26 +1507,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.1 +47217,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +30327,72.0,7.0,6.0,8.0,8.0,7.0,7.0,5,0.37 +4820,,,,,,,,1,0.08 +19083,100.0,10.0,10.0,10.0,10.0,10.0,10.0,18,1.42 +24100,70.0,9.0,8.0,10.0,10.0,10.0,9.0,4,0.32 +47134,80.0,6.0,8.0,6.0,8.0,10.0,6.0,1,1.0 +56493,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.3 +8558,98.0,10.0,10.0,10.0,10.0,10.0,10.0,46,3.36 +20883,,,,,,,,0, +69597,,,,,,,,0, +7270,94.0,10.0,10.0,9.0,10.0,10.0,9.0,17,1.38 +53438,92.0,10.0,9.0,10.0,10.0,10.0,10.0,104,7.52 +41137,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.23 +61750,100.0,10.0,9.0,10.0,10.0,10.0,9.0,6,0.47 +55294,92.0,9.0,10.0,9.0,10.0,10.0,9.0,12,0.89 +70669,90.0,10.0,10.0,7.0,8.0,10.0,10.0,2,0.16 +26128,,,,,,,,1,0.14 +23728,70.0,9.0,9.0,10.0,8.0,10.0,10.0,2,0.2 +37282,95.0,10.0,9.0,10.0,10.0,10.0,10.0,38,2.82 +76902,,,,,,,,0, +33303,,,,,,,,1, +69383,60.0,10.0,2.0,10.0,10.0,8.0,8.0,1,0.08 +18628,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.22 +11438,,,,,,,,0, +17471,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.15 +61461,90.0,9.0,9.0,10.0,9.0,8.0,9.0,4,0.3 +69238,98.0,10.0,10.0,10.0,10.0,10.0,9.0,16,1.2 +72817,91.0,10.0,10.0,10.0,10.0,10.0,9.0,196,14.13 +21981,,,,,,,,0, +31974,100.0,10.0,8.0,8.0,10.0,10.0,8.0,2,0.15 +28195,85.0,9.0,8.0,9.0,10.0,10.0,9.0,93,6.91 +63969,,,,,,,,0, +63726,,,,,,,,0, +44373,,,,,,,,0, +3632,92.0,10.0,9.0,10.0,10.0,10.0,10.0,12,0.99 +35098,,,,,,,,0, +45211,95.0,10.0,9.0,10.0,10.0,9.0,10.0,8,0.62 +37278,83.0,8.0,9.0,8.0,9.0,10.0,8.0,13,0.99 +6939,,,,,,,,0, +16629,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.15 +24501,87.0,9.0,9.0,9.0,9.0,9.0,9.0,15,1.14 +42878,92.0,9.0,10.0,9.0,10.0,10.0,9.0,104,7.52 +43209,,,,,,,,0, +67552,92.0,9.0,10.0,10.0,10.0,10.0,9.0,5,0.41 +58278,75.0,8.0,8.0,9.0,8.0,8.0,9.0,23,1.72 +74947,93.0,10.0,9.0,10.0,10.0,10.0,9.0,22,1.73 +38061,,,,,,,,0, +30901,,,,,,,,0, +31021,96.0,10.0,10.0,10.0,10.0,10.0,10.0,14,1.13 +52729,,,,,,,,0, +15396,92.0,9.0,10.0,10.0,10.0,10.0,9.0,6,0.45 +31518,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.8 +7436,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.07 +63456,92.0,9.0,9.0,10.0,10.0,9.0,10.0,25,1.82 +24391,92.0,10.0,8.0,9.0,9.0,9.0,9.0,5,0.36 +56345,85.0,9.0,8.0,10.0,9.0,9.0,8.0,11,1.05 +16997,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.63 +43764,84.0,10.0,8.0,6.0,8.0,10.0,8.0,6,0.45 +19476,,,,,,,,1,0.08 +63948,97.0,10.0,10.0,10.0,10.0,10.0,10.0,23,2.52 +62287,88.0,9.0,9.0,10.0,10.0,9.0,9.0,17,1.3 +69312,,,,,,,,0, +60411,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.08 +56591,100.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.44 +40126,,,,,,,,0, +56588,94.0,9.0,10.0,10.0,10.0,10.0,10.0,13,0.94 +55355,96.0,10.0,10.0,10.0,10.0,9.0,9.0,28,2.54 +23602,91.0,9.0,9.0,10.0,10.0,9.0,9.0,14,1.09 +59026,70.0,8.0,7.0,7.0,8.0,8.0,7.0,6,0.52 +26168,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.15 +57316,93.0,10.0,9.0,9.0,10.0,10.0,9.0,18,1.36 +1601,,,,,,,,0, +8483,100.0,10.0,10.0,10.0,10.0,9.0,10.0,9,0.79 +38630,99.0,10.0,10.0,10.0,10.0,10.0,10.0,68,5.06 +24167,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.59 +9710,80.0,8.0,8.0,9.0,9.0,9.0,8.0,45,3.57 +11592,99.0,10.0,10.0,10.0,10.0,9.0,10.0,37,2.8 +41352,,,,,,,,0, +31755,,,,,,,,0, +59031,,,,,,,,0, +28951,91.0,9.0,10.0,10.0,10.0,9.0,9.0,32,2.34 +57791,96.0,10.0,10.0,8.0,8.0,10.0,10.0,17,1.27 +16989,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.44 +19950,83.0,8.0,8.0,10.0,10.0,9.0,9.0,23,1.7 +63759,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.23 +53565,98.0,10.0,10.0,10.0,10.0,10.0,10.0,45,4.33 +12044,94.0,10.0,9.0,10.0,10.0,10.0,9.0,10,0.8 +36017,96.0,10.0,10.0,10.0,10.0,10.0,10.0,21,1.65 +41267,,,,,,,,0, +36360,100.0,10.0,10.0,8.0,8.0,8.0,10.0,1,0.07 +32753,98.0,10.0,10.0,10.0,10.0,10.0,10.0,27,2.18 +38143,96.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.67 +3347,91.0,9.0,9.0,10.0,10.0,10.0,9.0,11,0.84 +14905,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,2.57 +72476,81.0,9.0,8.0,9.0,9.0,9.0,9.0,34,2.58 +38455,86.0,9.0,8.0,10.0,9.0,10.0,9.0,22,1.83 +58573,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.37 +7158,,,,,,,,0, +6558,96.0,10.0,9.0,10.0,10.0,9.0,10.0,15,1.24 +16451,,,,,,,,0, +9137,,,,,,,,0, +45246,100.0,10.0,6.0,10.0,10.0,10.0,10.0,1,0.09 +55311,100.0,10.0,6.0,10.0,8.0,8.0,8.0,1,0.17 +1562,93.0,9.0,9.0,10.0,10.0,10.0,9.0,3,0.49 +18983,90.0,9.0,8.0,9.0,9.0,9.0,9.0,2,0.17 +53234,73.0,8.0,7.0,9.0,8.0,9.0,8.0,7,0.52 +72434,,,,,,,,0, +74929,,,,,,,,0, +24301,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.16 +48602,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.08 +135,100.0,10.0,10.0,10.0,9.0,9.0,10.0,3,0.31 +58800,,,,,,,,0, +72428,100.0,10.0,9.0,10.0,10.0,10.0,10.0,6,0.49 +43640,,,,,,,,0, +35903,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.87 +8047,98.0,10.0,10.0,10.0,10.0,10.0,10.0,14,1.12 +32809,,,,,,,,0, +30446,,,,,,,,0, +37857,,,,,,,,0, +31290,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.45 +76284,91.0,10.0,9.0,10.0,9.0,10.0,9.0,30,2.37 +24592,81.0,9.0,8.0,9.0,9.0,9.0,8.0,22,1.68 +52319,86.0,10.0,8.0,10.0,10.0,10.0,9.0,37,2.78 +17864,,,,,,,,0, +76477,93.0,10.0,10.0,9.0,8.0,10.0,9.0,7,2.5 +7280,90.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.4 +67536,,,,,,,,0, +28255,98.0,10.0,10.0,10.0,10.0,10.0,10.0,25,2.25 +1899,85.0,9.0,9.0,8.0,9.0,10.0,8.0,13,0.99 +36000,95.0,9.0,10.0,9.0,9.0,10.0,9.0,22,1.9 +40392,96.0,10.0,10.0,10.0,9.0,10.0,9.0,27,2.11 +61043,91.0,9.0,10.0,9.0,9.0,8.0,9.0,14,1.05 +34170,,,,,,,,0, +70975,80.0,8.0,7.0,9.0,9.0,9.0,9.0,15,1.13 +53192,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.73 +39737,88.0,9.0,9.0,9.0,9.0,10.0,9.0,5,0.66 +22203,80.0,9.0,9.0,9.0,8.0,9.0,9.0,3,0.25 +44240,85.0,9.0,9.0,9.0,9.0,9.0,9.0,20,1.74 +8921,98.0,10.0,10.0,10.0,10.0,10.0,10.0,55,4.04 +54614,95.0,10.0,9.0,10.0,10.0,10.0,9.0,35,3.04 +48414,100.0,10.0,10.0,9.0,10.0,9.0,9.0,7,0.94 +40219,84.0,9.0,9.0,8.0,8.0,10.0,9.0,16,1.3 +21586,70.0,10.0,9.0,10.0,9.0,8.0,7.0,3,0.27 +16081,98.0,10.0,10.0,10.0,10.0,10.0,10.0,76,5.6 +4104,,,,,,,,0, +32314,,,,,,,,1,0.15 +4425,87.0,8.0,9.0,10.0,9.0,7.0,9.0,4,0.29 +13063,,,,,,,,0, +8991,86.0,9.0,9.0,10.0,10.0,10.0,9.0,57,4.15 +54201,100.0,10.0,8.0,10.0,10.0,9.0,10.0,4,0.48 +76707,,,,,,,,0, +65975,89.0,9.0,9.0,10.0,10.0,10.0,9.0,38,2.77 +15084,87.0,9.0,9.0,9.0,9.0,9.0,9.0,50,3.68 +71354,80.0,8.0,10.0,10.0,10.0,10.0,8.0,2,0.15 +62981,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.16 +545,86.0,9.0,10.0,10.0,10.0,9.0,9.0,32,2.34 +33494,89.0,10.0,9.0,10.0,9.0,9.0,9.0,35,2.57 +18941,87.0,9.0,9.0,8.0,10.0,10.0,8.0,6,0.53 +52141,,,,,,,,0, +66329,,,,,,,,1,0.09 +20531,95.0,10.0,10.0,10.0,10.0,7.0,9.0,4,0.33 +60323,73.0,8.0,7.0,9.0,9.0,8.0,8.0,17,1.3 +54813,94.0,10.0,9.0,10.0,10.0,10.0,9.0,19,1.57 +67313,99.0,10.0,10.0,10.0,10.0,10.0,9.0,15,1.32 +41857,87.0,10.0,8.0,9.0,9.0,9.0,9.0,26,1.93 +45572,,,,,,,,0, +31429,,,,,,,,0, +26065,,,,,,,,0, +56656,99.0,10.0,10.0,10.0,10.0,10.0,10.0,16,1.22 +17776,88.0,9.0,9.0,10.0,9.0,10.0,9.0,94,6.95 +18440,,,,,,,,0, +11755,,,,,,,,0, +9305,,,,,,,,0, +1911,87.0,9.0,9.0,10.0,10.0,9.0,8.0,3,0.24 +4086,96.0,10.0,9.0,10.0,10.0,10.0,10.0,136,10.79 +36691,,,,,,,,0, +26228,,,,,,,,0, +29438,80.0,10.0,8.0,10.0,10.0,8.0,10.0,2,0.18 +23028,96.0,10.0,9.0,10.0,10.0,10.0,9.0,16,1.24 +25924,,,,,,,,0, +24922,60.0,8.0,10.0,10.0,8.0,10.0,6.0,1,0.09 +54680,,,,,,,,0, +44236,,,,,,,,0, +2858,97.0,10.0,10.0,10.0,10.0,9.0,10.0,18,1.76 +46102,100.0,10.0,10.0,10.0,10.0,10.0,9.0,9,0.7 +67223,91.0,10.0,9.0,10.0,10.0,10.0,9.0,18,1.36 +16395,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.31 +5634,92.0,10.0,9.0,10.0,10.0,10.0,9.0,13,0.98 +6170,,,,,,,,0, +75096,,,,,,,,0, +49796,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +11587,,,,,,,,0, +24403,86.0,10.0,8.0,10.0,10.0,10.0,9.0,17,1.37 +146,97.0,10.0,10.0,9.0,9.0,10.0,10.0,14,1.22 +68209,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.15 +76091,84.0,9.0,7.0,10.0,8.0,10.0,8.0,14,1.08 +19321,93.0,9.0,9.0,10.0,10.0,10.0,9.0,3,0.22 +65090,,,,,,,,0, +48564,70.0,8.0,7.0,9.0,7.0,9.0,7.0,4,0.46 +55030,85.0,10.0,9.0,10.0,9.0,10.0,9.0,4,0.56 +28065,91.0,9.0,9.0,9.0,10.0,9.0,9.0,16,1.19 +72045,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.08 +5605,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.49 +38784,92.0,10.0,10.0,10.0,9.0,10.0,9.0,5,0.42 +56304,80.0,9.0,10.0,9.0,10.0,9.0,6.0,3,0.24 +20347,93.0,10.0,10.0,9.0,9.0,10.0,10.0,28,2.15 +20669,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.49 +71137,94.0,10.0,10.0,10.0,10.0,9.0,10.0,216,15.69 +43476,99.0,10.0,10.0,10.0,10.0,10.0,10.0,18,1.4 +25612,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.91 +50475,91.0,10.0,9.0,10.0,10.0,10.0,9.0,77,5.68 +24878,89.0,9.0,9.0,9.0,10.0,10.0,9.0,88,6.45 +72222,93.0,9.0,9.0,9.0,9.0,9.0,9.0,29,2.25 +57874,92.0,10.0,9.0,9.0,10.0,10.0,9.0,50,3.84 +46295,90.0,8.0,9.0,10.0,10.0,9.0,9.0,2,0.17 +28023,97.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.88 +7130,100.0,10.0,10.0,10.0,9.0,9.0,10.0,7,1.21 +37491,,,,,,,,0, +59362,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.31 +65683,98.0,10.0,10.0,10.0,10.0,9.0,10.0,53,4.02 +71932,60.0,6.0,9.0,8.0,6.0,8.0,6.0,3,0.41 +54806,,,,,,,,0, +4700,95.0,10.0,10.0,10.0,10.0,10.0,9.0,20,1.58 +58001,94.0,10.0,10.0,10.0,10.0,10.0,9.0,19,1.51 +1339,,,,,,,,0, +7959,100.0,10.0,9.0,10.0,10.0,10.0,10.0,6,0.74 +41794,100.0,10.0,10.0,10.0,10.0,9.0,9.0,8,0.6 +72299,93.0,9.0,9.0,9.0,10.0,10.0,9.0,4,0.35 +5731,100.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.95 +4387,96.0,10.0,10.0,9.0,9.0,10.0,9.0,11,0.97 +15730,78.0,9.0,7.0,10.0,10.0,10.0,9.0,12,0.95 +21423,90.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.32 +38204,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,1.61 +58258,98.0,10.0,10.0,10.0,10.0,9.0,10.0,10,0.95 +6705,94.0,10.0,10.0,10.0,10.0,10.0,9.0,99,7.23 +1131,96.0,10.0,9.0,10.0,9.0,10.0,9.0,14,1.07 +49830,90.0,10.0,9.0,9.0,10.0,10.0,9.0,8,0.65 +12565,100.0,10.0,10.0,10.0,10.0,10.0,10.0,34,2.6 +44174,95.0,10.0,10.0,10.0,10.0,10.0,10.0,13,1.46 +19875,83.0,9.0,9.0,9.0,9.0,9.0,9.0,14,1.1 +59862,92.0,9.0,9.0,9.0,9.0,9.0,9.0,13,1.03 +45154,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.09 +1670,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.58 +47298,95.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.36 +52683,83.0,9.0,8.0,9.0,9.0,9.0,9.0,68,5.06 +22152,,,,,,,,0, +56719,81.0,9.0,9.0,10.0,9.0,10.0,9.0,15,1.4 +68234,98.0,10.0,10.0,10.0,10.0,10.0,10.0,26,2.19 +67141,95.0,10.0,9.0,10.0,10.0,10.0,10.0,92,7.06 +20109,95.0,8.0,9.0,10.0,10.0,10.0,10.0,5,0.4 +11134,96.0,9.0,9.0,10.0,10.0,10.0,10.0,10,0.74 +43978,100.0,8.0,6.0,10.0,10.0,8.0,10.0,1,0.09 +56516,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.28 +59551,,,,,,,,0, +52600,80.0,8.0,8.0,10.0,6.0,8.0,8.0,2,0.15 +76973,100.0,10.0,10.0,10.0,10.0,9.0,10.0,9,0.69 +59035,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.41 +36081,,,,,,,,0, +43993,95.0,10.0,10.0,10.0,9.0,10.0,10.0,6,0.45 +11450,100.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.42 +73822,88.0,10.0,9.0,10.0,10.0,10.0,9.0,21,1.56 +17603,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.57 +7573,,,,,,,,0, +74375,,,,,,,,1,0.08 +66181,,,,,,,,0, +40809,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,1.02 +28503,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.3 +25680,92.0,9.0,9.0,10.0,10.0,9.0,9.0,7,0.51 +29885,,,,,,,,0, +9172,88.0,9.0,8.0,9.0,10.0,9.0,9.0,19,1.4 +26003,,,,,,,,0, +10045,99.0,10.0,10.0,10.0,10.0,10.0,10.0,25,1.86 +29251,93.0,9.0,8.0,10.0,10.0,9.0,9.0,17,1.3 +47870,80.0,10.0,7.0,10.0,10.0,10.0,9.0,4,0.35 +42187,100.0,10.0,8.0,10.0,10.0,8.0,10.0,1,0.08 +58933,98.0,10.0,10.0,10.0,10.0,10.0,10.0,24,1.81 +69389,,,,,,,,0, +40433,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.47 +28109,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.16 +72728,,,,,,,,0, +3084,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.52 +24514,,,,,,,,0, +45544,92.0,10.0,9.0,9.0,9.0,10.0,9.0,37,2.81 +1850,100.0,10.0,10.0,10.0,10.0,10.0,10.0,61,4.59 +62149,,,,,,,,0, +57400,,,,,,,,1,0.12 +30088,92.0,10.0,9.0,9.0,10.0,10.0,10.0,5,0.41 +18698,98.0,10.0,9.0,10.0,10.0,10.0,10.0,13,1.46 +27514,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.71 +2677,100.0,10.0,8.0,10.0,10.0,8.0,10.0,2,0.25 +24801,90.0,10.0,9.0,9.0,10.0,9.0,10.0,2,0.16 +15902,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.3 +9111,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.4 +68107,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.43 +67500,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.39 +24032,,,,,,,,0, +3506,92.0,10.0,9.0,10.0,10.0,10.0,10.0,13,1.05 +35633,97.0,10.0,9.0,10.0,10.0,9.0,10.0,15,1.21 +33114,97.0,10.0,10.0,10.0,10.0,9.0,10.0,34,3.23 +20201,100.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.46 +19236,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.08 +13250,100.0,10.0,10.0,10.0,10.0,9.0,9.0,5,0.41 +20640,94.0,10.0,10.0,10.0,10.0,9.0,9.0,16,1.25 +41229,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.4 +60928,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.86 +18419,,,,,,,,0, +43276,100.0,8.0,8.0,8.0,10.0,8.0,10.0,2,0.15 +45165,,,,,,,,0, +7763,98.0,10.0,10.0,9.0,10.0,10.0,10.0,10,0.83 +28581,,,,,,,,0, +36960,,,,,,,,0, +723,100.0,10.0,10.0,10.0,10.0,9.0,10.0,57,4.31 +27068,99.0,10.0,10.0,10.0,10.0,9.0,10.0,116,8.77 +75184,,,,,,,,1,0.17 +44833,,,,,,,,1,0.15 +3869,80.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.1 +34775,98.0,10.0,10.0,10.0,10.0,10.0,10.0,18,1.34 +56566,95.0,10.0,10.0,9.0,10.0,10.0,10.0,4,0.47 +57344,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.26 +11082,82.0,8.0,8.0,8.0,9.0,9.0,8.0,50,3.7 +45474,94.0,10.0,10.0,10.0,10.0,10.0,10.0,34,2.56 +75681,98.0,10.0,9.0,10.0,10.0,10.0,10.0,22,1.69 +58635,94.0,10.0,9.0,10.0,10.0,10.0,10.0,13,1.88 +26238,96.0,10.0,10.0,10.0,10.0,9.0,9.0,9,0.7 +23963,,,,,,,,0, +27603,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.16 +56077,98.0,10.0,10.0,10.0,10.0,10.0,9.0,41,4.01 +28202,,,,,,,,0, +59740,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.15 +68168,93.0,10.0,9.0,9.0,10.0,10.0,9.0,18,1.36 +10218,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.08 +21218,99.0,10.0,10.0,10.0,10.0,10.0,10.0,14,1.03 +11017,,,,,,,,0, +40607,,,,,,,,0, +69512,98.0,10.0,10.0,9.0,10.0,9.0,9.0,12,0.93 +20386,90.0,9.0,9.0,9.0,9.0,9.0,9.0,23,1.72 +45697,91.0,9.0,9.0,9.0,10.0,10.0,9.0,7,0.62 +49636,93.0,9.0,9.0,8.0,10.0,10.0,9.0,6,0.51 +59348,,,,,,,,0, +38090,,,,,,,,0, +61483,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +6882,,,,,,,,0, +707,100.0,10.0,10.0,9.0,10.0,9.0,10.0,9,1.53 +41967,100.0,10.0,9.0,10.0,10.0,10.0,10.0,7,0.52 +43271,,,,,,,,0, +24183,82.0,9.0,8.0,9.0,9.0,9.0,8.0,67,5.29 +72339,98.0,10.0,10.0,10.0,10.0,9.0,10.0,24,1.88 +14429,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.32 +62275,,,,,,,,0, +42259,87.0,9.0,9.0,10.0,10.0,9.0,9.0,7,0.53 +33723,90.0,8.0,8.0,8.0,8.0,8.0,7.0,2,0.24 +42053,82.0,9.0,9.0,9.0,9.0,9.0,8.0,9,0.72 +862,100.0,10.0,10.0,9.0,10.0,10.0,10.0,7,0.52 +55742,,,,,,,,0, +57519,99.0,10.0,10.0,10.0,10.0,10.0,10.0,44,3.36 +16981,89.0,9.0,9.0,9.0,9.0,10.0,9.0,41,3.29 +17539,91.0,9.0,10.0,9.0,9.0,9.0,9.0,13,1.05 +66511,97.0,9.0,10.0,10.0,9.0,10.0,10.0,25,2.17 +76240,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +32922,100.0,8.0,10.0,6.0,8.0,8.0,8.0,2,0.17 +3579,84.0,9.0,9.0,8.0,9.0,10.0,8.0,5,0.5 +13176,,,,,,,,0, +16389,87.0,9.0,9.0,9.0,9.0,9.0,9.0,8,0.66 +20098,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.33 +34907,90.0,10.0,9.0,10.0,9.0,9.0,9.0,6,0.51 +17728,97.0,10.0,10.0,10.0,10.0,9.0,10.0,13,1.07 +66762,98.0,10.0,10.0,10.0,10.0,10.0,10.0,23,1.73 +3712,95.0,9.0,10.0,10.0,9.0,9.0,10.0,27,2.15 +75882,96.0,10.0,9.0,10.0,10.0,10.0,10.0,85,6.28 +52752,95.0,10.0,10.0,10.0,10.0,10.0,10.0,21,1.63 +814,96.0,10.0,10.0,10.0,10.0,10.0,10.0,21,1.72 +61055,89.0,9.0,9.0,9.0,9.0,10.0,9.0,116,8.7 +15600,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.08 +64002,95.0,9.0,9.0,10.0,10.0,8.0,10.0,4,0.33 +62294,97.0,10.0,10.0,10.0,10.0,10.0,10.0,27,2.22 +51118,,,,,,,,0, +10243,93.0,10.0,9.0,9.0,9.0,9.0,9.0,7,0.58 +4470,95.0,9.0,9.0,9.0,10.0,9.0,9.0,11,0.94 +68202,,,,,,,,0, +13461,90.0,9.0,9.0,9.0,10.0,10.0,8.0,2,0.16 +18627,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.8 +19586,,,,,,,,1,0.17 +34983,93.0,10.0,9.0,10.0,10.0,10.0,10.0,8,0.86 +53452,91.0,10.0,9.0,10.0,10.0,9.0,10.0,13,1.08 +5949,91.0,9.0,9.0,9.0,10.0,10.0,9.0,19,1.41 +49427,,,,,,,,0, +57674,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.96 +74184,,,,,,,,0, +5653,96.0,10.0,10.0,10.0,10.0,9.0,9.0,10,0.81 +34867,90.0,10.0,7.0,10.0,10.0,9.0,9.0,3,0.25 +70426,,,,,,,,0, +28239,,,,,,,,1,0.18 +1750,90.0,9.0,9.0,9.0,10.0,10.0,9.0,47,3.65 +26531,85.0,9.0,8.0,9.0,9.0,10.0,9.0,30,2.36 +21899,93.0,10.0,9.0,10.0,10.0,10.0,10.0,40,3.22 +45116,82.0,9.0,8.0,9.0,9.0,9.0,8.0,31,2.43 +64433,81.0,9.0,8.0,9.0,9.0,9.0,8.0,35,2.75 +14345,89.0,9.0,8.0,9.0,9.0,9.0,9.0,34,2.62 +37798,89.0,9.0,8.0,9.0,10.0,9.0,9.0,35,2.8 +61121,95.0,9.0,10.0,8.0,10.0,9.0,10.0,5,0.4 +14845,88.0,9.0,9.0,9.0,9.0,9.0,9.0,29,2.19 +34572,80.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.15 +6741,93.0,10.0,9.0,10.0,10.0,9.0,9.0,12,0.99 +46138,,,,,,,,0, +29486,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.09 +27628,94.0,10.0,10.0,10.0,10.0,10.0,10.0,14,1.13 +31059,90.0,9.0,9.0,10.0,10.0,10.0,9.0,3,0.64 +67443,99.0,10.0,10.0,10.0,10.0,9.0,10.0,44,3.53 +68295,100.0,10.0,9.0,10.0,10.0,10.0,9.0,3,0.56 +33672,91.0,9.0,9.0,9.0,9.0,9.0,9.0,7,0.61 +67089,90.0,10.0,8.0,10.0,10.0,10.0,10.0,4,0.6 +2709,93.0,10.0,9.0,10.0,10.0,9.0,9.0,9,0.77 +43647,89.0,9.0,9.0,10.0,10.0,8.0,8.0,9,0.77 +26200,93.0,10.0,10.0,10.0,10.0,9.0,9.0,6,0.48 +60589,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.17 +62508,,,,,,,,0, +29940,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.93 +24035,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.14 +51392,100.0,10.0,10.0,9.0,10.0,9.0,10.0,21,1.59 +76419,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.22 +27504,,,,,,,,0, +75295,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.08 +56890,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.45 +53469,97.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.51 +6264,78.0,9.0,8.0,9.0,10.0,10.0,8.0,10,0.79 +68338,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.44 +14805,,,,,,,,0, +34569,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.23 +4279,91.0,9.0,8.0,8.0,9.0,9.0,9.0,16,1.38 +58903,,,,,,,,0, +14745,100.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.3 +71388,95.0,10.0,9.0,10.0,10.0,10.0,9.0,11,0.83 +7521,90.0,10.0,9.0,9.0,10.0,10.0,9.0,4,0.33 +70404,,,,,,,,2,0.21 +53036,100.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.08 +6514,92.0,9.0,9.0,10.0,10.0,10.0,9.0,82,6.2 +29299,,,,,,,,1,0.08 +42305,98.0,10.0,10.0,10.0,10.0,10.0,10.0,26,2.09 +73450,90.0,10.0,9.0,10.0,10.0,10.0,9.0,6,0.48 +33385,,,,,,,,0, +36655,,,,,,,,0, +28072,,,,,,,,0, +3677,100.0,9.0,10.0,9.0,10.0,9.0,9.0,3,0.39 +68890,91.0,9.0,9.0,10.0,10.0,10.0,9.0,87,6.48 +7808,97.0,10.0,9.0,10.0,10.0,10.0,9.0,6,0.79 +71479,95.0,10.0,10.0,10.0,10.0,10.0,10.0,13,1.47 +23358,99.0,10.0,10.0,10.0,10.0,10.0,10.0,28,2.16 +32080,90.0,9.0,5.0,9.0,8.0,9.0,9.0,2,0.18 +21363,,,,,,,,0, +14859,,,,,,,,0, +4573,92.0,10.0,10.0,9.0,9.0,9.0,9.0,15,1.13 +37014,93.0,9.0,9.0,10.0,9.0,9.0,9.0,17,1.35 +36302,93.0,9.0,9.0,10.0,10.0,10.0,9.0,3,0.25 +51031,83.0,9.0,9.0,9.0,10.0,8.0,9.0,14,1.06 +42950,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.25 +2698,89.0,9.0,7.0,9.0,10.0,9.0,9.0,9,0.66 +40004,100.0,10.0,10.0,10.0,10.0,10.0,9.0,7,1.26 +16580,78.0,9.0,9.0,8.0,9.0,8.0,8.0,18,1.38 +24876,,,,,,,,0, +46719,,,,,,,,0, +46424,,,,,,,,0, +64459,,,,,,,,0, +44625,,,,,,,,0, +25785,,,,,,,,0, +31278,100.0,10.0,10.0,10.0,10.0,10.0,10.0,22,1.67 +28247,70.0,5.0,8.0,5.0,6.0,7.0,7.0,4,0.3 +54888,96.0,9.0,10.0,9.0,9.0,9.0,9.0,25,2.11 +16207,90.0,9.0,9.0,9.0,9.0,10.0,9.0,45,3.33 +75049,90.0,10.0,9.0,6.0,10.0,10.0,9.0,3,0.24 +47021,,,,,,,,0, +14563,,,,,,,,0, +35859,,,,,,,,0, +61431,,,,,,,,0, +29553,93.0,10.0,10.0,10.0,10.0,10.0,10.0,14,1.16 +50556,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.5 +20212,,,,,,,,0, +21478,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.17 +47971,68.0,7.0,6.0,10.0,9.0,10.0,7.0,5,1.83 +63317,90.0,9.0,9.0,9.0,9.0,9.0,9.0,44,3.34 +53535,,,,,,,,0, +64864,,,,,,,,0, +60832,100.0,6.0,8.0,6.0,10.0,6.0,10.0,1,0.65 +40910,93.0,10.0,9.0,10.0,10.0,9.0,9.0,95,7.16 +69499,92.0,9.0,10.0,9.0,10.0,10.0,9.0,17,1.34 +16333,100.0,10.0,10.0,10.0,10.0,10.0,9.0,11,0.96 +75672,96.0,9.0,10.0,10.0,9.0,10.0,9.0,19,1.74 +71590,70.0,7.0,7.0,7.0,7.0,6.0,7.0,6,0.48 +39543,92.0,9.0,10.0,9.0,8.0,10.0,9.0,12,1.01 +55686,98.0,10.0,10.0,10.0,10.0,9.0,10.0,9,0.72 +37676,,,,,,,,0, +32945,96.0,10.0,10.0,9.0,10.0,10.0,10.0,9,0.7 +850,88.0,9.0,9.0,9.0,9.0,9.0,9.0,15,1.14 +44178,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.57 +28871,94.0,10.0,10.0,10.0,10.0,9.0,9.0,7,0.63 +30185,89.0,9.0,10.0,10.0,8.0,9.0,10.0,7,0.54 +36465,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.09 +49197,93.0,9.0,9.0,10.0,10.0,10.0,10.0,6,0.47 +70512,80.0,8.0,9.0,9.0,8.0,9.0,8.0,5,0.6 +38475,,,,,,,,0, +18032,86.0,9.0,9.0,9.0,9.0,9.0,9.0,50,3.91 +7957,91.0,10.0,10.0,8.0,9.0,9.0,9.0,16,1.26 +44406,,,,,,,,1,0.08 +25772,100.0,10.0,10.0,10.0,10.0,10.0,10.0,18,1.38 +34807,60.0,4.0,8.0,6.0,6.0,8.0,4.0,1,0.39 +57532,85.0,9.0,9.0,8.0,9.0,9.0,9.0,21,1.62 +20107,91.0,9.0,10.0,9.0,10.0,10.0,9.0,15,1.31 +72160,,,,,,,,0, +28633,84.0,9.0,8.0,9.0,9.0,9.0,8.0,16,1.32 +60583,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.09 +36971,90.0,10.0,9.0,8.0,10.0,10.0,9.0,4,0.35 +4321,89.0,9.0,9.0,9.0,9.0,10.0,9.0,20,1.5 +45718,97.0,10.0,9.0,9.0,9.0,9.0,9.0,15,1.22 +34163,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.26 +51159,90.0,9.0,10.0,10.0,9.0,9.0,10.0,2,0.16 +22149,93.0,10.0,9.0,8.0,9.0,9.0,9.0,7,0.57 +49008,91.0,9.0,9.0,9.0,9.0,10.0,9.0,35,2.62 +15482,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.36 +41783,93.0,10.0,8.0,10.0,10.0,9.0,9.0,6,0.45 +4992,80.0,8.0,8.0,8.0,8.0,10.0,8.0,1,0.08 +42966,86.0,9.0,8.0,9.0,9.0,9.0,9.0,24,2.02 +15998,76.0,9.0,7.0,9.0,10.0,9.0,9.0,19,1.46 +2842,93.0,10.0,9.0,10.0,10.0,10.0,10.0,11,0.85 +18777,86.0,9.0,9.0,10.0,9.0,10.0,9.0,13,1.0 +16184,100.0,9.0,10.0,10.0,10.0,9.0,10.0,3,0.23 +17232,93.0,9.0,9.0,9.0,9.0,10.0,10.0,15,1.3 +45174,,,,,,,,0, +4809,99.0,10.0,10.0,10.0,10.0,10.0,10.0,59,4.61 +50161,90.0,9.0,9.0,10.0,10.0,10.0,9.0,4,0.44 +7367,90.0,9.0,9.0,9.0,10.0,10.0,9.0,23,1.72 +76134,96.0,10.0,10.0,10.0,10.0,10.0,10.0,98,7.5 +50345,75.0,8.0,8.0,8.0,8.0,9.0,8.0,4,0.46 +37613,97.0,9.0,10.0,9.0,10.0,10.0,10.0,6,0.96 +11879,93.0,10.0,10.0,9.0,10.0,10.0,10.0,11,0.83 +71551,97.0,10.0,10.0,10.0,10.0,9.0,10.0,15,1.44 +58693,,,,,,,,0, +14501,96.0,10.0,10.0,10.0,10.0,8.0,8.0,5,0.43 +50031,97.0,10.0,10.0,9.0,10.0,10.0,9.0,15,1.22 +517,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.86 +50265,,,,,,,,0, +76246,96.0,10.0,10.0,10.0,10.0,9.0,9.0,16,1.2 +6835,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.68 +14484,80.0,8.0,6.0,10.0,8.0,8.0,10.0,2,0.15 +72261,97.0,10.0,10.0,10.0,10.0,9.0,10.0,14,1.1 +28140,95.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.7 +38086,,,,,,,,0, +10067,,,,,,,,0, +45385,100.0,10.0,9.0,9.0,10.0,10.0,10.0,4,0.31 +60542,93.0,9.0,9.0,10.0,10.0,9.0,9.0,21,1.61 +71921,90.0,9.0,7.0,10.0,10.0,10.0,9.0,2,0.15 +57412,94.0,10.0,10.0,10.0,10.0,9.0,9.0,18,1.36 +20213,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.09 +48654,80.0,10.0,7.0,10.0,10.0,10.0,10.0,2,0.17 +52092,80.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.08 +74690,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.35 +46268,100.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.45 +37800,60.0,8.0,6.0,10.0,10.0,8.0,6.0,1,0.08 +39977,,,,,,,,0, +119,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.67 +7710,,,,,,,,0, +39665,92.0,10.0,8.0,10.0,10.0,10.0,9.0,13,2.41 +75621,100.0,10.0,10.0,9.0,10.0,9.0,10.0,12,1.01 +58397,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.62 +56142,83.0,9.0,8.0,8.0,9.0,9.0,9.0,13,1.86 +45069,91.0,10.0,9.0,9.0,9.0,9.0,9.0,10,0.78 +72537,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.35 +41455,96.0,9.0,9.0,9.0,10.0,9.0,10.0,10,0.87 +19570,,,,,,,,0, +10418,,,,,,,,1,0.08 +65028,98.0,10.0,10.0,10.0,10.0,10.0,10.0,34,2.76 +10259,,,,,,,,0, +35271,,,,,,,,0, +72142,,,,,,,,0, +35882,99.0,10.0,10.0,10.0,10.0,10.0,10.0,15,1.25 +33865,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.27 +16950,80.0,10.0,8.0,6.0,4.0,10.0,8.0,1,0.08 +61970,100.0,10.0,10.0,10.0,9.0,10.0,10.0,4,0.63 +33958,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.97 +12308,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.33 +33306,84.0,9.0,8.0,10.0,10.0,10.0,9.0,5,0.41 +69133,99.0,10.0,10.0,10.0,10.0,10.0,10.0,34,2.61 +4931,94.0,9.0,9.0,10.0,10.0,10.0,9.0,35,2.79 +65489,,,,,,,,0, +27407,87.0,9.0,9.0,10.0,10.0,10.0,9.0,4,0.31 +68544,88.0,9.0,9.0,10.0,10.0,9.0,9.0,33,2.72 +26812,98.0,10.0,10.0,10.0,10.0,9.0,9.0,8,0.66 +15792,100.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.63 +12046,80.0,7.0,10.0,10.0,8.0,10.0,10.0,2,0.22 +69840,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,1.0 +22424,90.0,9.0,9.0,10.0,10.0,10.0,9.0,4,0.32 +14054,90.0,9.0,9.0,10.0,10.0,8.0,9.0,12,1.57 +22995,,,,,,,,0, +59996,,,,,,,,0, +36754,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.48 +67220,100.0,10.0,9.0,10.0,10.0,10.0,10.0,8,0.65 +29657,93.0,9.0,9.0,10.0,10.0,8.0,9.0,3,0.25 +68332,83.0,10.0,7.0,10.0,10.0,10.0,9.0,8,0.61 +52826,93.0,10.0,9.0,10.0,10.0,10.0,8.0,4,0.49 +70249,80.0,8.0,9.0,8.0,8.0,8.0,8.0,48,3.57 +6474,91.0,10.0,10.0,10.0,10.0,10.0,9.0,21,1.58 +22983,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.3 +28849,86.0,9.0,9.0,10.0,9.0,9.0,9.0,14,1.24 +12337,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.08 +47916,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.59 +61666,,,,,,,,0, +28273,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,1.1 +1215,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.27 +8280,89.0,9.0,8.0,10.0,10.0,10.0,9.0,15,1.17 +48320,96.0,10.0,10.0,10.0,10.0,10.0,10.0,62,5.2 +14039,100.0,8.0,8.0,10.0,10.0,10.0,8.0,1,0.1 +55049,98.0,10.0,10.0,10.0,10.0,10.0,10.0,64,5.03 +5450,,,,,,,,1,0.08 +11535,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.95 +11951,,,,,,,,0, +37779,99.0,10.0,10.0,10.0,10.0,9.0,10.0,61,4.69 +1659,,,,,,,,0, +17536,,,,,,,,1,0.09 +9689,100.0,10.0,10.0,10.0,10.0,8.0,10.0,2,0.17 +4046,99.0,10.0,10.0,10.0,10.0,10.0,10.0,26,1.98 +34041,80.0,8.0,8.0,7.0,8.0,9.0,7.0,6,0.55 +40829,96.0,10.0,10.0,10.0,10.0,9.0,10.0,17,1.4 +41321,100.0,10.0,10.0,10.0,10.0,9.0,9.0,14,1.07 +73860,100.0,10.0,10.0,10.0,10.0,9.0,10.0,12,0.91 +62274,93.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.84 +30807,91.0,9.0,9.0,10.0,9.0,9.0,9.0,15,1.22 +3780,91.0,9.0,9.0,10.0,10.0,9.0,9.0,58,4.35 +65273,,,,,,,,0, +21124,95.0,9.0,8.0,10.0,9.0,10.0,9.0,4,0.36 +41432,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.15 +61843,,,,,,,,0, +18533,,,,,,,,0, +58068,90.0,9.0,6.0,10.0,10.0,8.0,9.0,2,0.17 +49855,,,,,,,,0, +50188,,,,,,,,0, +4184,92.0,9.0,10.0,8.0,8.0,8.0,9.0,15,1.12 +11461,100.0,10.0,10.0,8.0,10.0,10.0,10.0,1,0.09 +48823,96.0,10.0,10.0,10.0,9.0,9.0,10.0,5,0.44 +37373,,,,,,,,0, +32441,82.0,9.0,8.0,9.0,9.0,8.0,8.0,41,4.27 +38414,97.0,10.0,10.0,10.0,10.0,9.0,10.0,39,3.27 +23943,100.0,10.0,8.0,10.0,10.0,8.0,6.0,1,0.09 +28052,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.08 +21898,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.08 +8179,,,,,,,,0, +46185,,,,,,,,1,0.14 +12691,96.0,10.0,10.0,10.0,10.0,9.0,9.0,10,0.87 +39830,86.0,9.0,9.0,9.0,9.0,10.0,9.0,7,0.57 +11047,80.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.29 +71826,96.0,10.0,9.0,10.0,10.0,10.0,10.0,62,4.84 +43999,80.0,8.0,8.0,6.0,6.0,10.0,8.0,1,0.08 +36776,100.0,10.0,10.0,10.0,10.0,10.0,10.0,43,3.58 +40382,90.0,10.0,9.0,10.0,10.0,9.0,9.0,3,0.24 +66948,93.0,9.0,10.0,9.0,8.0,9.0,9.0,3,0.5 +43216,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.37 +37457,100.0,10.0,8.0,10.0,10.0,10.0,10.0,5,0.38 +36583,,,,,,,,0, +22309,,,,,,,,0, +24336,70.0,10.0,9.0,9.0,8.0,7.0,7.0,2,0.17 +254,,,,,,,,0, +231,,,,,,,,0, +67255,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.38 +24388,,,,,,,,0, +59365,96.0,9.0,10.0,10.0,10.0,8.0,10.0,5,0.4 +42433,,,,,,,,1,0.18 +20092,97.0,10.0,10.0,10.0,9.0,10.0,10.0,15,1.17 +23607,90.0,9.0,10.0,10.0,9.0,10.0,9.0,66,5.09 +5931,,,,,,,,0, +17593,,,,,,,,0, +49781,,,,,,,,0, +19311,,,,,,,,0, +67058,99.0,10.0,10.0,10.0,10.0,10.0,10.0,15,1.17 +24028,,,,,,,,0, +33384,,,,,,,,0, +70144,,,,,,,,0, +3919,,,,,,,,0, +58031,,,,,,,,0, +62444,,,,,,,,0, +48528,,,,,,,,0, +72336,,,,,,,,0, +60341,,,,,,,,0, +23575,,,,,,,,0, +9367,,,,,,,,0, +48527,100.0,10.0,9.0,9.0,10.0,10.0,10.0,9,0.69 +60482,,,,,,,,0, +62896,,,,,,,,0, +75991,,,,,,,,0, +23215,,,,,,,,0, +46247,,,,,,,,0, +59947,,,,,,,,0, +12277,,,,,,,,0, +37302,,,,,,,,0, +55574,,,,,,,,0, +11347,,,,,,,,0, +40670,,,,,,,,0, +42256,,,,,,,,0, +10195,,,,,,,,0, +14388,,,,,,,,0, +63650,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.28 +58664,,,,,,,,0, +13389,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.18 +1093,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.14 +72104,,,,,,,,0, +37961,,,,,,,,0, +68887,,,,,,,,0, +42186,,,,,,,,0, +55485,80.0,8.0,6.0,10.0,9.0,10.0,8.0,4,0.31 +16857,,,,,,,,0, +34521,,,,,,,,0, +28030,,,,,,,,0, +74379,,,,,,,,0, +18712,,,,,,,,0, +41806,,,,,,,,0, +46110,,,,,,,,0, +68230,,,,,,,,0, +46581,,,,,,,,0, +13259,,,,,,,,0, +37244,,,,,,,,0, +25086,,,,,,,,0, +12891,,,,,,,,0, +36607,,,,,,,,0, +34680,,,,,,,,0, +58343,100.0,10.0,9.0,10.0,10.0,10.0,10.0,6,0.47 +61437,,,,,,,,0, +63333,,,,,,,,0, +18848,,,,,,,,0, +6574,,,,,,,,0, +29407,,,,,,,,0, +70149,,,,,,,,0, +6267,,,,,,,,0, +62976,,,,,,,,0, +47166,,,,,,,,0, +50413,,,,,,,,0, +74422,,,,,,,,0, +18277,,,,,,,,0, +33891,93.0,10.0,10.0,10.0,10.0,10.0,9.0,8,0.6 +25270,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.25 +66887,,,,,,,,0, +18513,,,,,,,,0, +68549,,,,,,,,0, +52411,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.41 +19838,,,,,,,,0, +52937,,,,,,,,0, +64431,,,,,,,,0, +25743,,,,,,,,0, +52324,,,,,,,,0, +53408,,,,,,,,0, +76927,,,,,,,,0, +34854,,,,,,,,0, +64624,,,,,,,,0, +44929,,,,,,,,0, +17410,,,,,,,,0, +46346,,,,,,,,0, +329,,,,,,,,0, +11996,,,,,,,,0, +36970,,,,,,,,0, +25328,,,,,,,,0, +61400,98.0,10.0,9.0,9.0,10.0,10.0,10.0,12,0.99 +21545,,,,,,,,0, +67020,,,,,,,,0, +67991,,,,,,,,0, +11509,,,,,,,,0, +22751,,,,,,,,0, +76264,98.0,10.0,10.0,10.0,10.0,10.0,10.0,44,3.35 +9955,,,,,,,,0, +56369,,,,,,,,0, +10486,,,,,,,,0, +17555,,,,,,,,0, +32665,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.21 +22022,100.0,10.0,8.0,9.0,10.0,10.0,9.0,3,0.37 +30846,99.0,10.0,10.0,10.0,10.0,10.0,10.0,34,2.61 +36909,97.0,10.0,10.0,10.0,10.0,10.0,9.0,15,1.18 +8847,93.0,9.0,9.0,10.0,10.0,10.0,9.0,4,0.8 +41032,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.08 +1401,,,,,,,,0, +62835,,,,,,,,0, +32814,,,,,,,,0, +34380,,,,,,,,0, +29943,,,,,,,,0, +13077,,,,,,,,0, +75075,,,,,,,,0, +28241,,,,,,,,0, +60412,,,,,,,,0, +19548,,,,,,,,0, +75019,,,,,,,,0, +50340,,,,,,,,0, +70927,100.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.55 +75034,,,,,,,,0, +44363,,,,,,,,0, +20052,98.0,10.0,10.0,10.0,10.0,10.0,10.0,21,1.7 +21780,,,,,,,,0, +43065,,,,,,,,0, +52811,,,,,,,,0, +50145,,,,,,,,0, +43949,,,,,,,,0, +22946,,,,,,,,0, +19343,,,,,,,,0, +70454,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.19 +69915,89.0,9.0,9.0,10.0,10.0,10.0,9.0,73,7.37 +15606,,,,,,,,0, +70337,,,,,,,,0, +11348,,,,,,,,0, +36324,,,,,,,,0, +39362,,,,,,,,0, +2008,,,,,,,,0, +8304,,,,,,,,0, +62471,,,,,,,,0, +34968,,,,,,,,0, +65866,,,,,,,,0, +9709,,,,,,,,0, +76036,,,,,,,,0, +8881,,,,,,,,0, +26400,94.0,10.0,10.0,10.0,10.0,10.0,10.0,19,1.47 +17115,,,,,,,,0, +65415,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.44 +19161,95.0,10.0,10.0,10.0,10.0,10.0,9.0,17,1.66 +70098,,,,,,,,0, +18367,,,,,,,,0, +26631,,,,,,,,0, +59041,,,,,,,,0, +60974,89.0,10.0,9.0,9.0,9.0,10.0,9.0,8,0.65 +76404,,,,,,,,1,0.13 +13844,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.61 +62938,100.0,9.0,10.0,10.0,10.0,9.0,10.0,6,0.48 +20289,,,,,,,,0, +57340,,,,,,,,0, +47034,89.0,9.0,8.0,10.0,10.0,9.0,9.0,40,3.37 +40851,,,,,,,,0, +47097,,,,,,,,1,0.1 +52250,97.0,10.0,10.0,9.0,10.0,10.0,10.0,8,0.66 +35176,92.0,10.0,10.0,10.0,10.0,9.0,9.0,10,0.77 +9027,84.0,9.0,9.0,10.0,8.0,9.0,9.0,11,0.85 +28930,87.0,9.0,9.0,10.0,10.0,10.0,9.0,24,1.88 +49378,,,,,,,,0, +75197,96.0,10.0,9.0,10.0,9.0,10.0,9.0,17,1.35 +53912,,,,,,,,0, +57196,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +64385,80.0,6.0,10.0,8.0,6.0,10.0,8.0,1,0.09 +47625,95.0,10.0,9.0,10.0,10.0,9.0,10.0,4,0.6 +75710,92.0,9.0,9.0,10.0,10.0,10.0,9.0,35,2.69 +72865,89.0,10.0,9.0,9.0,10.0,9.0,9.0,39,2.96 +67716,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.23 +27843,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.93 +42403,100.0,10.0,10.0,10.0,8.0,10.0,8.0,1,0.19 +48786,92.0,9.0,9.0,9.0,9.0,10.0,10.0,11,0.95 +12179,93.0,10.0,9.0,10.0,10.0,10.0,10.0,32,2.44 +22201,100.0,7.0,9.0,9.0,10.0,9.0,10.0,2,0.17 +53294,,,,,,,,0, +29535,,,,,,,,0, +47517,98.0,10.0,10.0,10.0,9.0,9.0,9.0,11,1.25 +35561,,,,,,,,0, +36348,,,,,,,,0, +15402,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.31 +62928,,,,,,,,2,0.26 +68270,,,,,,,,0, +38474,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +49776,,,,,,,,0, +73212,100.0,10.0,10.0,10.0,10.0,8.0,9.0,4,0.31 +8415,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.09 +1191,94.0,10.0,10.0,10.0,9.0,10.0,9.0,7,0.94 +34236,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,2.0 +33534,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.15 +14638,90.0,9.0,9.0,10.0,10.0,10.0,9.0,7,0.53 +1697,80.0,8.0,8.0,9.0,9.0,9.0,9.0,9,0.71 +30739,95.0,10.0,10.0,9.0,10.0,10.0,10.0,15,1.23 +45798,,,,,,,,0, +61835,100.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.15 +47085,100.0,10.0,10.0,10.0,10.0,10.0,10.0,17,2.01 +12704,95.0,10.0,9.0,10.0,10.0,9.0,10.0,4,0.3 +4071,96.0,10.0,10.0,10.0,10.0,9.0,9.0,45,3.52 +45834,100.0,8.0,10.0,10.0,10.0,10.0,8.0,1,0.08 +25724,76.0,9.0,9.0,8.0,7.0,9.0,7.0,14,1.3 +765,,,,,,,,0, +28797,99.0,10.0,10.0,10.0,10.0,10.0,9.0,14,1.19 +37558,,,,,,,,0, +57717,94.0,10.0,9.0,10.0,10.0,9.0,9.0,19,1.61 +17312,72.0,9.0,10.0,8.0,8.0,9.0,8.0,5,0.63 +65142,74.0,8.0,7.0,9.0,7.0,8.0,7.0,10,0.97 +7330,95.0,10.0,10.0,10.0,9.0,9.0,9.0,4,0.52 +61165,,,,,,,,0, +3042,86.0,9.0,9.0,9.0,10.0,9.0,8.0,14,2.82 +74995,92.0,9.0,10.0,9.0,9.0,9.0,10.0,10,0.98 +25647,100.0,10.0,10.0,10.0,10.0,9.0,10.0,16,1.67 +32050,78.0,8.0,9.0,6.0,8.0,10.0,9.0,9,0.7 +59903,82.0,9.0,9.0,9.0,9.0,9.0,9.0,11,0.99 +61732,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.15 +67339,98.0,10.0,9.0,10.0,10.0,10.0,10.0,36,2.75 +52081,80.0,9.0,9.0,10.0,10.0,10.0,8.0,2,0.16 +64939,91.0,9.0,9.0,10.0,9.0,9.0,9.0,11,1.49 +52754,96.0,10.0,9.0,10.0,10.0,9.0,10.0,102,7.89 +20588,84.0,9.0,9.0,9.0,9.0,9.0,9.0,26,2.04 +63003,80.0,9.0,8.0,9.0,8.0,10.0,9.0,7,0.97 +21386,,,,,,,,0, +13807,,,,,,,,0, +46951,98.0,10.0,10.0,10.0,9.0,10.0,10.0,16,1.21 +9997,,,,,,,,0, +6917,95.0,10.0,10.0,9.0,10.0,9.0,10.0,5,0.41 +35353,92.0,9.0,9.0,10.0,10.0,9.0,9.0,41,3.44 +42337,93.0,10.0,9.0,10.0,10.0,9.0,9.0,36,2.92 +32237,,,,,,,,0, +47177,92.0,9.0,10.0,9.0,9.0,9.0,9.0,15,1.17 +40937,,,,,,,,0, +76186,,,,,,,,0, +47943,92.0,9.0,9.0,9.0,9.0,10.0,9.0,18,1.56 +13006,95.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.44 +44425,60.0,6.0,4.0,10.0,8.0,8.0,6.0,1,0.08 +60468,83.0,10.0,8.0,9.0,9.0,9.0,9.0,7,0.57 +11788,94.0,10.0,10.0,10.0,10.0,10.0,10.0,38,2.96 +36672,91.0,9.0,10.0,10.0,10.0,9.0,8.0,13,1.01 +66981,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.16 +65776,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +6010,,,,,,,,0, +36729,100.0,10.0,8.0,10.0,10.0,10.0,9.0,2,0.16 +10396,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.52 +20434,93.0,10.0,10.0,10.0,10.0,9.0,9.0,23,1.84 +22420,,,,,,,,0, +26967,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.94 +62700,97.0,10.0,10.0,9.0,10.0,9.0,10.0,12,0.92 +18685,,,,,,,,0, +14325,100.0,10.0,10.0,10.0,10.0,9.0,10.0,8,2.58 +55906,90.0,9.0,10.0,10.0,10.0,10.0,9.0,22,1.76 +26796,90.0,9.0,6.0,10.0,10.0,10.0,9.0,2,0.15 +37714,80.0,10.0,8.0,10.0,10.0,10.0,10.0,1,1.0 +32152,80.0,8.0,8.0,10.0,10.0,6.0,6.0,1,0.08 +66045,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.01 +16381,100.0,10.0,10.0,10.0,10.0,10.0,10.0,18,1.39 +1852,,,,,,,,0, +44778,85.0,10.0,10.0,10.0,10.0,8.0,10.0,4,0.36 +59495,100.0,10.0,10.0,8.0,10.0,10.0,9.0,2,0.17 +52115,87.0,9.0,8.0,10.0,10.0,9.0,9.0,30,2.36 +61913,,,,,,,,0, +53654,99.0,10.0,10.0,10.0,10.0,10.0,10.0,17,1.32 +825,95.0,10.0,10.0,10.0,10.0,10.0,10.0,51,4.01 +12938,85.0,9.0,8.0,9.0,10.0,9.0,9.0,44,3.38 +6538,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.16 +69248,80.0,9.0,8.0,9.0,9.0,9.0,8.0,36,2.82 +70796,93.0,10.0,9.0,9.0,10.0,10.0,9.0,16,1.32 +2133,97.0,10.0,10.0,10.0,10.0,9.0,9.0,14,1.09 +76657,82.0,9.0,8.0,9.0,10.0,8.0,9.0,33,2.49 +76654,,,,,,,,0, +508,,,,,,,,0, +51793,100.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.68 +26332,86.0,9.0,9.0,10.0,10.0,8.0,9.0,31,2.51 +26637,80.0,9.0,9.0,8.0,9.0,10.0,9.0,7,0.54 +66756,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.86 +2861,90.0,8.0,7.0,10.0,10.0,10.0,9.0,2,0.17 +61277,93.0,10.0,10.0,9.0,10.0,10.0,9.0,21,1.79 +60541,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.08 +30044,100.0,8.0,9.0,10.0,10.0,10.0,9.0,3,0.24 +64325,82.0,9.0,8.0,8.0,9.0,9.0,9.0,39,3.0 +4974,95.0,10.0,9.0,10.0,10.0,9.0,9.0,31,2.49 +76218,93.0,9.0,9.0,10.0,10.0,9.0,9.0,102,8.1 +58707,84.0,9.0,9.0,8.0,10.0,9.0,7.0,5,0.89 +15483,88.0,9.0,10.0,10.0,9.0,9.0,8.0,17,1.35 +25655,84.0,9.0,8.0,9.0,9.0,9.0,8.0,14,1.77 +3286,84.0,9.0,9.0,9.0,9.0,8.0,9.0,25,2.17 +62543,90.0,10.0,8.0,10.0,9.0,9.0,9.0,4,0.33 +23057,,,,,,,,0, +2921,97.0,10.0,9.0,10.0,10.0,10.0,10.0,7,0.57 +73486,,,,,,,,0, +68039,96.0,10.0,9.0,10.0,10.0,10.0,9.0,14,1.09 +34446,97.0,10.0,10.0,10.0,10.0,10.0,10.0,22,1.71 +43953,100.0,10.0,9.0,10.0,10.0,8.0,9.0,3,0.23 +51858,,,,,,,,0, +52155,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.26 +71063,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.27 +18825,88.0,9.0,9.0,9.0,9.0,9.0,9.0,19,1.53 +33623,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.16 +66839,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.17 +33514,91.0,10.0,9.0,10.0,10.0,9.0,9.0,15,1.38 +17793,,,,,,,,0, +60642,82.0,9.0,9.0,10.0,10.0,9.0,8.0,13,1.05 +58638,80.0,4.0,6.0,8.0,10.0,8.0,8.0,1,1.0 +49629,93.0,9.0,9.0,9.0,9.0,9.0,9.0,20,1.57 +69219,,,,,,,,1,0.08 +36638,,,,,,,,1,0.23 +42897,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.52 +52346,93.0,10.0,9.0,9.0,9.0,10.0,9.0,27,2.09 +69643,,,,,,,,0, +41691,92.0,9.0,10.0,9.0,9.0,10.0,9.0,12,0.95 +7393,80.0,9.0,6.0,10.0,7.0,10.0,10.0,2,0.24 +30156,92.0,9.0,10.0,10.0,9.0,10.0,9.0,31,2.47 +46186,93.0,10.0,9.0,10.0,10.0,9.0,9.0,35,2.73 +21148,99.0,10.0,10.0,10.0,10.0,10.0,10.0,78,6.0 +73874,98.0,10.0,10.0,10.0,9.0,10.0,10.0,18,1.41 +47251,,,,,,,,0, +25399,100.0,10.0,10.0,10.0,10.0,9.0,9.0,9,0.7 +2701,100.0,10.0,10.0,10.0,8.0,10.0,10.0,3,0.25 +26514,80.0,9.0,9.0,9.0,9.0,9.0,8.0,6,0.94 +24980,91.0,9.0,9.0,10.0,10.0,10.0,9.0,35,2.73 +65060,91.0,9.0,9.0,9.0,9.0,9.0,9.0,36,2.74 +57019,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.49 +48871,85.0,9.0,9.0,10.0,10.0,10.0,9.0,41,3.09 +21208,93.0,10.0,10.0,10.0,10.0,10.0,9.0,28,2.27 +41296,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.17 +71729,91.0,9.0,9.0,10.0,10.0,9.0,10.0,34,2.62 +27155,100.0,10.0,10.0,9.0,10.0,10.0,10.0,12,0.96 +46542,93.0,10.0,9.0,9.0,10.0,8.0,9.0,17,1.39 +74185,94.0,10.0,9.0,10.0,10.0,10.0,10.0,20,1.76 +74660,84.0,10.0,10.0,10.0,8.0,9.0,8.0,6,0.52 +55041,90.0,10.0,10.0,10.0,10.0,8.0,10.0,4,0.32 +39970,82.0,9.0,8.0,9.0,9.0,10.0,8.0,40,3.02 +31079,87.0,9.0,9.0,9.0,9.0,10.0,8.0,3,0.48 +29736,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.21 +74431,84.0,9.0,10.0,9.0,8.0,10.0,9.0,9,0.74 +1992,,,,,,,,0, +67769,60.0,8.0,6.0,10.0,10.0,10.0,8.0,3,0.23 +40384,79.0,8.0,7.0,9.0,9.0,9.0,8.0,20,1.63 +66709,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.49 +4182,92.0,9.0,10.0,9.0,10.0,10.0,9.0,5,0.44 +52665,83.0,9.0,8.0,8.0,9.0,8.0,9.0,44,3.4 +46920,,,,,,,,0, +53748,95.0,10.0,9.0,10.0,10.0,10.0,10.0,24,1.85 +52479,86.0,9.0,9.0,10.0,9.0,9.0,9.0,23,1.77 +35262,,,,,,,,0, +49624,88.0,9.0,9.0,10.0,10.0,10.0,9.0,18,1.55 +74696,94.0,10.0,9.0,10.0,10.0,10.0,10.0,24,1.91 +70818,100.0,9.0,10.0,10.0,10.0,9.0,9.0,5,0.41 +36403,80.0,9.0,8.0,9.0,9.0,9.0,9.0,47,3.79 +41914,100.0,9.0,8.0,10.0,9.0,10.0,8.0,2,0.18 +44365,,,,,,,,0, +29300,94.0,9.0,10.0,10.0,10.0,10.0,9.0,10,0.82 +53826,,,,,,,,0, +44123,88.0,9.0,8.0,10.0,10.0,9.0,9.0,19,1.54 +55371,,,,,,,,0, +76952,,,,,,,,0, +64307,100.0,10.0,10.0,10.0,9.0,9.0,10.0,3,0.25 +37570,98.0,10.0,10.0,10.0,10.0,9.0,10.0,81,6.31 +71776,92.0,9.0,10.0,8.0,9.0,10.0,9.0,5,0.38 +70657,,,,,,,,0, +76977,97.0,10.0,8.0,10.0,10.0,9.0,10.0,6,0.49 +62113,90.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.17 +9392,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.1 +43082,,,,,,,,0, +42952,92.0,10.0,9.0,10.0,10.0,10.0,9.0,11,0.89 +33798,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.36 +43782,80.0,8.0,8.0,8.0,9.0,9.0,8.0,13,0.99 +2281,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.44 +36548,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.88 +36409,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.81 +74480,100.0,9.0,10.0,10.0,10.0,9.0,10.0,5,0.46 +27649,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.73 +28380,86.0,9.0,9.0,9.0,9.0,10.0,9.0,22,1.72 +1979,88.0,9.0,10.0,9.0,9.0,9.0,9.0,10,0.78 +51128,96.0,10.0,10.0,10.0,10.0,9.0,10.0,19,1.44 +11687,,,,,,,,0, +5092,,,,,,,,0, +40111,98.0,10.0,10.0,10.0,10.0,9.0,10.0,29,2.24 +51955,96.0,10.0,10.0,10.0,10.0,9.0,10.0,28,2.46 +67826,,,,,,,,0, +59573,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +53406,89.0,9.0,9.0,10.0,10.0,10.0,9.0,20,1.79 +59440,100.0,10.0,10.0,9.0,10.0,10.0,10.0,6,0.5 +36148,99.0,10.0,10.0,10.0,10.0,10.0,10.0,18,1.46 +15195,,,,,,,,0, +64677,80.0,8.0,10.0,10.0,10.0,10.0,6.0,1,0.09 +36610,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.08 +32682,,,,,,,,0, +16419,83.0,9.0,8.0,9.0,9.0,9.0,8.0,57,4.34 +11093,93.0,9.0,8.0,10.0,10.0,10.0,9.0,4,0.32 +6789,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.43 +74014,99.0,10.0,10.0,10.0,10.0,10.0,10.0,29,2.27 +42012,,,,,,,,1,0.08 +33040,96.0,10.0,10.0,10.0,10.0,10.0,9.0,48,3.78 +59663,98.0,10.0,9.0,9.0,9.0,9.0,10.0,12,1.25 +32074,98.0,10.0,10.0,10.0,10.0,10.0,10.0,23,1.78 +41617,,,,,,,,0, +62351,,,,,,,,0, +20673,97.0,10.0,10.0,10.0,10.0,9.0,10.0,71,5.55 +11097,99.0,10.0,10.0,9.0,10.0,10.0,10.0,14,1.17 +27624,100.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.5 +44827,,,,,,,,0, +27516,99.0,10.0,10.0,10.0,10.0,10.0,10.0,31,2.95 +62012,99.0,10.0,10.0,10.0,10.0,10.0,10.0,63,4.8 +1449,60.0,2.0,2.0,10.0,10.0,10.0,4.0,1,0.08 +20260,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.25 +25689,91.0,9.0,8.0,10.0,10.0,9.0,9.0,8,0.7 +76093,88.0,9.0,9.0,9.0,9.0,10.0,9.0,21,1.64 +50805,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,1.05 +35432,96.0,10.0,10.0,10.0,10.0,9.0,10.0,67,5.19 +15023,88.0,9.0,9.0,10.0,10.0,10.0,9.0,86,6.72 +23075,,,,,,,,0, +69376,98.0,10.0,10.0,10.0,10.0,10.0,10.0,64,4.94 +10342,97.0,10.0,10.0,10.0,10.0,10.0,10.0,87,6.9 +48009,,,,,,,,0, +12444,,,,,,,,0, +11680,,,,,,,,0, +74935,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.46 +32067,,,,,,,,0, +25805,99.0,10.0,10.0,10.0,10.0,10.0,10.0,14,1.33 +7646,93.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.24 +21744,,,,,,,,0, +67338,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.25 +51267,99.0,10.0,10.0,10.0,10.0,10.0,10.0,27,2.35 +10120,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.73 +71148,95.0,10.0,10.0,10.0,9.0,10.0,9.0,4,0.31 +29966,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.94 +60625,99.0,10.0,10.0,10.0,10.0,10.0,10.0,16,1.24 +75628,94.0,10.0,9.0,9.0,10.0,9.0,10.0,14,1.11 +37547,,,,,,,,0, +29185,,,,,,,,0, +38577,99.0,10.0,10.0,10.0,10.0,10.0,10.0,25,1.99 +30843,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.87 +13753,76.0,8.0,8.0,9.0,9.0,9.0,8.0,39,3.14 +14049,95.0,10.0,10.0,10.0,9.0,10.0,10.0,28,2.49 +38533,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.09 +18536,87.0,9.0,9.0,9.0,9.0,10.0,8.0,4,0.62 +23022,85.0,9.0,8.0,9.0,9.0,9.0,9.0,44,3.43 +7106,93.0,9.0,9.0,9.0,9.0,9.0,9.0,3,0.27 +66110,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.31 +6421,100.0,10.0,10.0,10.0,10.0,9.0,9.0,8,0.65 +45101,99.0,10.0,10.0,10.0,10.0,10.0,10.0,20,2.05 +19794,75.0,8.0,9.0,10.0,9.0,10.0,8.0,4,0.53 +44768,93.0,10.0,10.0,10.0,10.0,9.0,9.0,95,7.36 +75996,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.27 +19871,,,,,,,,0, +15367,,,,,,,,1,0.08 +66449,,,,,,,,0, +52376,93.0,9.0,9.0,9.0,9.0,10.0,9.0,22,1.76 +37156,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.9 +12509,95.0,10.0,9.0,9.0,10.0,10.0,10.0,12,0.95 +21433,100.0,8.0,8.0,8.0,6.0,10.0,8.0,1,0.08 +6265,90.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.71 +12189,,,,,,,,0, +48331,,,,,,,,0, +32735,,,,,,,,0, +44801,93.0,10.0,9.0,10.0,10.0,9.0,9.0,8,0.67 +27682,,,,,,,,0, +49384,,,,,,,,2, +51879,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.88 +26100,96.0,10.0,9.0,9.0,9.0,10.0,10.0,21,1.73 +43397,,,,,,,,0, +32120,,,,,,,,0, +21560,98.0,10.0,9.0,8.0,9.0,10.0,9.0,8,0.93 +31971,99.0,10.0,10.0,10.0,10.0,10.0,10.0,28,2.27 +49584,87.0,10.0,8.0,9.0,7.0,10.0,9.0,3,0.42 +71758,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.89 +66161,,,,,,,,0, +56176,96.0,9.0,9.0,6.0,9.0,9.0,9.0,5,0.41 +67366,,,,,,,,0, +40933,,,,,,,,0, +37972,96.0,10.0,9.0,9.0,10.0,10.0,9.0,7,0.53 +17311,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.08 +27739,83.0,9.0,9.0,9.0,9.0,10.0,9.0,19,1.9 +74112,60.0,10.0,8.0,10.0,8.0,10.0,6.0,1,0.08 +17137,,,,,,,,0, +59344,,,,,,,,0, +11062,,,,,,,,0, +72154,84.0,9.0,9.0,9.0,9.0,10.0,8.0,18,1.48 +65290,,,,,,,,0, +20929,90.0,10.0,9.0,10.0,9.0,10.0,9.0,16,1.7 +23268,100.0,9.0,9.0,10.0,10.0,10.0,10.0,4,0.32 +59550,88.0,9.0,8.0,9.0,9.0,10.0,9.0,10,0.83 +10192,,,,,,,,0, +37254,86.0,9.0,8.0,9.0,9.0,10.0,8.0,13,1.07 +19709,100.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.46 +60719,80.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.13 +13424,97.0,10.0,10.0,10.0,10.0,9.0,9.0,18,1.42 +37383,73.0,8.0,10.0,8.0,7.0,9.0,8.0,6,0.51 +10886,100.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +52734,100.0,9.0,10.0,10.0,10.0,10.0,10.0,2,0.17 +10990,,,,,,,,0, +7762,,,,,,,,0, +73479,,,,,,,,0, +20090,,,,,,,,0, +41156,77.0,7.0,7.0,9.0,9.0,9.0,7.0,7,0.56 +64502,,,,,,,,0, +50420,90.0,10.0,9.0,8.0,10.0,10.0,9.0,6,0.87 +74300,97.0,10.0,9.0,10.0,10.0,10.0,10.0,19,1.54 +34233,91.0,9.0,9.0,10.0,9.0,9.0,9.0,25,2.07 +3803,97.0,10.0,10.0,10.0,10.0,10.0,10.0,19,1.48 +52020,86.0,9.0,9.0,9.0,9.0,9.0,9.0,24,1.95 +2385,,,,,,,,0, +52301,,,,,,,,0, +69781,95.0,10.0,10.0,10.0,10.0,9.0,9.0,43,3.43 +72432,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.21 +3006,,,,,,,,0, +11976,,,,,,,,0, +46932,95.0,10.0,8.0,10.0,10.0,10.0,10.0,36,2.86 +51444,95.0,10.0,10.0,10.0,9.0,9.0,9.0,8,0.79 +36178,,,,,,,,0, +45967,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.19 +59299,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.69 +6556,80.0,6.0,8.0,10.0,10.0,10.0,6.0,1,0.09 +22809,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.09 +10678,80.0,10.0,7.0,6.0,9.0,8.0,8.0,2,0.17 +68344,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.08 +38223,,,,,,,,0, +16150,97.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.62 +76617,,,,,,,,0, +49588,85.0,9.0,8.0,10.0,10.0,9.0,9.0,12,0.91 +64118,100.0,9.0,10.0,10.0,10.0,9.0,9.0,2,0.16 +2465,,,,,,,,0, +60576,90.0,9.0,9.0,9.0,8.0,10.0,9.0,12,1.41 +68355,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,4.0 +17423,87.0,8.0,8.0,9.0,9.0,8.0,8.0,15,1.26 +63794,,,,,,,,0, +31561,80.0,8.0,8.0,8.0,8.0,8.0,8.0,4,0.36 +59039,,,,,,,,0, +28937,,,,,,,,0, +13557,60.0,8.0,7.0,9.0,10.0,7.0,6.0,4,0.31 +30753,90.0,10.0,9.0,9.0,9.0,10.0,9.0,2,0.17 +75292,92.0,9.0,9.0,10.0,10.0,10.0,9.0,25,2.34 +20618,98.0,10.0,10.0,10.0,10.0,10.0,10.0,62,4.96 +756,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +5528,90.0,10.0,10.0,10.0,9.0,10.0,9.0,3,0.24 +47976,95.0,10.0,10.0,9.0,8.0,9.0,10.0,4,0.71 +39897,,,,,,,,0, +16831,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.08 +3036,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.52 +47503,93.0,9.0,9.0,9.0,9.0,10.0,9.0,6,0.67 +21680,90.0,9.0,10.0,9.0,9.0,9.0,9.0,18,1.44 +70154,93.0,8.0,10.0,10.0,10.0,9.0,9.0,3,0.53 +52101,90.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.26 +53110,99.0,10.0,10.0,10.0,10.0,10.0,9.0,27,2.19 +53157,,,,,,,,0, +61968,,,,,,,,0, +38168,,,,,,,,0, +69719,,,,,,,,0, +64573,96.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.4 +36283,,,,,,,,0, +32373,73.0,8.0,8.0,9.0,10.0,9.0,8.0,12,0.91 +39477,100.0,10.0,10.0,10.0,10.0,10.0,10.0,43,3.42 +25223,,,,,,,,0, +51142,93.0,9.0,9.0,10.0,10.0,10.0,9.0,6,0.5 +10878,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.23 +26197,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +71597,99.0,10.0,10.0,10.0,10.0,10.0,10.0,28,2.35 +67359,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.16 +50008,,,,,,,,0, +59716,,,,,,,,0, +66944,95.0,10.0,10.0,8.0,10.0,10.0,9.0,4,0.34 +72942,,,,,,,,0, +41304,,,,,,,,0, +11309,88.0,8.0,9.0,9.0,9.0,9.0,9.0,13,1.01 +9227,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.31 +4958,93.0,10.0,9.0,10.0,10.0,10.0,10.0,8,0.61 +5124,,,,,,,,1,0.08 +24953,89.0,9.0,9.0,10.0,10.0,9.0,9.0,14,1.13 +32106,80.0,7.0,7.0,9.0,8.0,8.0,8.0,2,0.22 +40953,,,,,,,,0, +982,97.0,10.0,9.0,10.0,10.0,9.0,10.0,50,4.02 +64694,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.29 +27953,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,1.01 +26051,,,,,,,,0, +16219,,,,,,,,1,0.09 +48379,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.38 +21661,80.0,9.0,8.0,10.0,9.0,9.0,8.0,42,3.41 +1961,,,,,,,,0, +46378,86.0,9.0,9.0,9.0,9.0,10.0,9.0,85,6.61 +34395,88.0,9.0,9.0,9.0,10.0,10.0,9.0,12,0.94 +7620,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.86 +54874,98.0,10.0,10.0,10.0,10.0,10.0,10.0,14,1.09 +4950,95.0,9.0,10.0,10.0,10.0,10.0,9.0,13,0.99 +49134,,,,,,,,0, +28067,,,,,,,,1,0.19 +11025,93.0,9.0,9.0,8.0,8.0,9.0,9.0,6,0.85 +51755,95.0,9.0,10.0,10.0,9.0,10.0,9.0,27,2.18 +2371,98.0,10.0,9.0,10.0,10.0,9.0,10.0,11,0.86 +39110,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.16 +11209,95.0,10.0,9.0,10.0,10.0,10.0,10.0,20,1.55 +52582,100.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.33 +19583,99.0,10.0,10.0,10.0,10.0,9.0,10.0,23,1.9 +50749,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.08 +9017,99.0,10.0,10.0,10.0,10.0,10.0,10.0,18,1.71 +41818,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.63 +43972,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.54 +66812,94.0,10.0,9.0,10.0,10.0,10.0,10.0,102,7.85 +61736,80.0,8.0,8.0,10.0,8.0,10.0,8.0,2,0.2 +71863,73.0,6.0,7.0,8.0,9.0,7.0,6.0,3,1.0 +53785,100.0,10.0,9.0,10.0,10.0,9.0,9.0,7,0.61 +51129,80.0,10.0,10.0,9.0,8.0,10.0,9.0,5,0.39 +42781,,,,,,,,0, +12363,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.09 +48520,100.0,10.0,10.0,10.0,10.0,9.0,10.0,13,0.99 +64034,96.0,10.0,9.0,10.0,10.0,9.0,10.0,26,2.04 +4896,,,,,,,,0, +38485,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.47 +18872,95.0,10.0,10.0,10.0,10.0,9.0,10.0,22,2.68 +29653,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.44 +16577,98.0,10.0,10.0,10.0,10.0,10.0,9.0,11,0.9 +43038,73.0,7.0,7.0,10.0,10.0,9.0,6.0,3,0.23 +1789,98.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.98 +43636,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +64930,,,,,,,,0, +43776,90.0,9.0,9.0,10.0,9.0,9.0,9.0,39,3.03 +63114,80.0,8.0,10.0,8.0,8.0,7.0,8.0,2,0.22 +76200,95.0,10.0,9.0,10.0,10.0,10.0,10.0,49,4.05 +55897,97.0,10.0,10.0,10.0,10.0,9.0,10.0,48,3.81 +18320,100.0,10.0,10.0,10.0,10.0,9.0,10.0,16,1.3 +75062,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.59 +27282,100.0,9.0,10.0,8.0,9.0,9.0,9.0,2,0.28 +49815,53.0,5.0,7.0,5.0,5.0,6.0,5.0,4,0.35 +61135,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.13 +4690,90.0,8.0,10.0,10.0,10.0,8.0,9.0,3,0.23 +31725,89.0,10.0,10.0,10.0,10.0,9.0,9.0,7,0.66 +20534,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.08 +13113,80.0,8.0,7.0,7.0,8.0,10.0,7.0,2,0.19 +52396,96.0,10.0,9.0,10.0,10.0,9.0,9.0,21,1.77 +18357,82.0,9.0,9.0,9.0,9.0,9.0,8.0,25,2.03 +65832,,,,,,,,0, +65464,,,,,,,,1,0.08 +24385,100.0,10.0,10.0,10.0,10.0,10.0,9.0,7,0.54 +55203,87.0,9.0,8.0,10.0,9.0,10.0,8.0,6,0.49 +38338,,,,,,,,0, +40263,76.0,10.0,8.0,10.0,10.0,10.0,9.0,5,0.51 +29373,,,,,,,,0, +33568,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.09 +52915,100.0,8.0,8.0,10.0,10.0,8.0,10.0,1,0.47 +45705,87.0,9.0,8.0,9.0,9.0,9.0,9.0,6,0.55 +30652,,,,,,,,0, +4541,73.0,9.0,7.0,9.0,9.0,10.0,8.0,9,0.88 +54725,95.0,9.0,9.0,9.0,10.0,9.0,9.0,26,4.17 +67332,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.15 +59547,,,,,,,,0, +15239,97.0,10.0,9.0,10.0,10.0,10.0,9.0,6,0.48 +63302,98.0,10.0,9.0,10.0,10.0,10.0,10.0,12,0.94 +60441,90.0,9.0,9.0,9.0,10.0,10.0,9.0,27,2.12 +58092,82.0,9.0,8.0,8.0,9.0,10.0,9.0,13,1.02 +53884,94.0,10.0,10.0,10.0,10.0,9.0,10.0,10,0.84 +72374,,,,,,,,0, +47334,95.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.31 +16482,,,,,,,,0, +25621,,,,,,,,0, +39374,95.0,10.0,9.0,10.0,10.0,9.0,9.0,26,2.11 +39213,,,,,,,,0, +49439,,,,,,,,1,0.17 +55230,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.33 +28610,83.0,9.0,10.0,10.0,10.0,10.0,10.0,7,0.56 +1294,96.0,10.0,9.0,9.0,10.0,10.0,9.0,10,0.87 +1304,,,,,,,,1,0.29 +3576,97.0,10.0,10.0,10.0,10.0,10.0,10.0,13,1.01 +66908,98.0,10.0,10.0,10.0,10.0,10.0,10.0,29,2.39 +37367,87.0,9.0,8.0,10.0,10.0,9.0,9.0,3,0.24 +8713,93.0,10.0,10.0,10.0,10.0,9.0,9.0,21,3.66 +61873,80.0,10.0,6.0,8.0,10.0,10.0,10.0,1,0.2 +59728,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.19 +24490,100.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.19 +69536,80.0,7.0,9.0,10.0,10.0,9.0,9.0,3,0.23 +18671,90.0,9.0,10.0,9.0,9.0,10.0,9.0,8,0.69 +75708,84.0,9.0,8.0,9.0,10.0,9.0,8.0,9,0.76 +73797,77.0,9.0,8.0,9.0,9.0,10.0,8.0,6,0.48 +5898,99.0,10.0,9.0,10.0,10.0,10.0,10.0,33,2.72 +1262,84.0,9.0,8.0,9.0,9.0,9.0,9.0,38,2.91 +22247,87.0,10.0,10.0,9.0,10.0,9.0,9.0,3,0.25 +64162,94.0,10.0,10.0,9.0,9.0,9.0,9.0,7,0.57 +44396,60.0,8.0,9.0,5.0,4.0,9.0,6.0,3,0.24 +53416,92.0,9.0,9.0,10.0,10.0,9.0,9.0,19,1.71 +20466,92.0,10.0,10.0,10.0,9.0,9.0,9.0,21,1.64 +68451,87.0,9.0,9.0,10.0,10.0,9.0,9.0,3,0.36 +53325,,,,,,,,0, +58592,95.0,10.0,9.0,10.0,10.0,10.0,10.0,19,1.78 +46362,97.0,10.0,10.0,9.0,10.0,10.0,9.0,13,1.05 +8174,,,,,,,,0, +37882,80.0,8.0,10.0,10.0,10.0,10.0,8.0,1,0.13 +32273,,,,,,,,0, +21881,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.39 +6126,99.0,10.0,10.0,10.0,10.0,10.0,10.0,20,1.62 +17880,70.0,7.0,8.0,7.0,7.0,8.0,7.0,3,0.23 +62803,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.55 +41299,90.0,9.0,8.0,10.0,10.0,9.0,9.0,8,0.64 +41693,100.0,10.0,10.0,10.0,10.0,6.0,8.0,1,0.09 +9996,97.0,10.0,9.0,10.0,9.0,10.0,10.0,7,0.54 +58587,88.0,9.0,8.0,9.0,9.0,9.0,9.0,56,4.3 +22044,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.08 +16671,,,,,,,,0, +76852,96.0,10.0,10.0,10.0,10.0,10.0,9.0,10,0.84 +51668,92.0,9.0,9.0,8.0,9.0,9.0,9.0,5,0.39 +38080,83.0,9.0,8.0,9.0,9.0,9.0,9.0,78,6.14 +71097,,,,,,,,0, +55257,87.0,9.0,9.0,10.0,10.0,9.0,9.0,15,1.17 +1984,,,,,,,,0, +62531,80.0,8.0,10.0,10.0,10.0,10.0,6.0,1,0.43 +43513,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.26 +64389,,,,,,,,0, +55190,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.08 +29451,94.0,10.0,10.0,10.0,10.0,9.0,10.0,71,5.76 +14688,,,,,,,,1,0.13 +50073,,,,,,,,0, +36234,93.0,10.0,9.0,10.0,10.0,10.0,9.0,12,0.94 +37281,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.69 +6042,95.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.94 +25625,,,,,,,,2,0.16 +12978,100.0,10.0,10.0,10.0,10.0,8.0,9.0,6,0.58 +20470,82.0,8.0,8.0,9.0,10.0,9.0,9.0,13,1.02 +13472,40.0,6.0,4.0,4.0,4.0,4.0,4.0,1,0.12 +66131,80.0,8.0,9.0,10.0,10.0,8.0,8.0,2,0.17 +23654,,,,,,,,0, +71385,100.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.35 +51279,,,,,,,,0, +18574,96.0,10.0,10.0,10.0,10.0,9.0,9.0,5,0.48 +55626,80.0,8.0,8.0,8.0,8.0,8.0,8.0,3,0.3 +40202,,,,,,,,0, +53561,91.0,10.0,10.0,10.0,10.0,10.0,9.0,9,0.71 +66793,93.0,10.0,9.0,10.0,10.0,10.0,9.0,12,0.99 +36981,97.0,10.0,10.0,10.0,10.0,10.0,10.0,27,2.93 +74873,92.0,9.0,10.0,10.0,10.0,10.0,9.0,21,1.61 +5015,90.0,9.0,6.0,10.0,10.0,9.0,8.0,3,0.29 +1655,73.0,9.0,7.0,9.0,9.0,8.0,8.0,3,0.24 +71671,83.0,9.0,8.0,10.0,10.0,9.0,9.0,6,0.48 +41126,93.0,9.0,9.0,9.0,9.0,10.0,8.0,6,0.79 +66518,94.0,9.0,9.0,9.0,9.0,10.0,9.0,22,1.75 +29806,92.0,10.0,9.0,10.0,10.0,9.0,9.0,18,1.42 +17644,89.0,9.0,9.0,10.0,9.0,9.0,10.0,22,1.76 +2236,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.08 +32633,83.0,9.0,9.0,10.0,9.0,9.0,8.0,23,1.79 +60672,90.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.16 +64983,,,,,,,,0, +53915,94.0,10.0,10.0,10.0,10.0,10.0,9.0,19,1.48 +4553,80.0,2.0,8.0,10.0,8.0,8.0,2.0,1,0.18 +20173,93.0,9.0,9.0,10.0,10.0,9.0,9.0,12,0.96 +49611,79.0,9.0,8.0,9.0,9.0,8.0,8.0,20,1.57 +15559,,,,,,,,1,0.08 +42141,,,,,,,,0, +56826,91.0,10.0,9.0,10.0,10.0,10.0,9.0,14,1.09 +56539,80.0,8.0,10.0,10.0,10.0,8.0,8.0,1,0.09 +57817,100.0,10.0,10.0,10.0,10.0,9.0,10.0,9,0.73 +922,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.41 +46623,,,,,,,,0, +61918,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.3 +22171,100.0,10.0,9.0,10.0,10.0,9.0,10.0,7,0.56 +24686,,,,,,,,0, +15267,78.0,8.0,8.0,10.0,8.0,9.0,9.0,17,1.38 +275,,,,,,,,0, +13678,95.0,10.0,9.0,10.0,10.0,10.0,10.0,15,1.34 +72841,89.0,10.0,9.0,9.0,9.0,10.0,9.0,7,0.57 +40256,87.0,9.0,8.0,10.0,10.0,9.0,8.0,6,0.51 +4313,,,,,,,,0, +61353,96.0,10.0,10.0,10.0,10.0,10.0,9.0,11,4.29 +19324,,,,,,,,0, +17310,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.23 +42783,89.0,10.0,9.0,10.0,9.0,10.0,10.0,11,4.52 +71452,,,,,,,,0, +63909,96.0,10.0,8.0,10.0,10.0,10.0,9.0,9,2.11 +57521,92.0,10.0,9.0,9.0,10.0,9.0,9.0,26,2.04 +61058,91.0,9.0,8.0,9.0,10.0,9.0,9.0,18,1.57 +3422,,,,,,,,0, +29331,,,,,,,,0, +28977,80.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.08 +64399,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.48 +8506,90.0,10.0,9.0,10.0,10.0,9.0,9.0,37,3.07 +47759,,,,,,,,0, +62729,94.0,10.0,10.0,10.0,10.0,9.0,9.0,14,1.1 +23121,93.0,10.0,7.0,9.0,9.0,7.0,9.0,3,0.84 +66044,,,,,,,,0, +31958,,,,,,,,0, +9404,,,,,,,,0, +39969,93.0,9.0,10.0,10.0,10.0,10.0,9.0,9,0.8 +7888,,,,,,,,1,0.14 +7293,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.16 +45775,93.0,9.0,9.0,10.0,9.0,10.0,9.0,3,0.26 +16342,86.0,9.0,9.0,10.0,10.0,8.0,9.0,16,1.75 +3748,,,,,,,,0, +38294,100.0,8.0,10.0,10.0,10.0,10.0,8.0,1,0.09 +54820,,,,,,,,0, +37900,,,,,,,,0, +63438,85.0,10.0,9.0,8.0,9.0,9.0,10.0,4,0.34 +13858,85.0,8.0,9.0,9.0,8.0,9.0,9.0,9,0.79 +46430,84.0,9.0,9.0,9.0,10.0,9.0,9.0,19,1.93 +62792,97.0,9.0,9.0,9.0,10.0,10.0,10.0,6,0.5 +40939,78.0,9.0,8.0,10.0,10.0,9.0,9.0,18,2.26 +65259,89.0,9.0,9.0,10.0,9.0,10.0,9.0,8,0.85 +25522,,,,,,,,0, +59953,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.43 +65270,99.0,10.0,10.0,10.0,10.0,9.0,10.0,81,6.33 +16827,89.0,10.0,9.0,10.0,10.0,9.0,9.0,18,1.43 +4393,90.0,9.0,8.0,10.0,10.0,9.0,9.0,2,0.29 +14706,90.0,10.0,10.0,10.0,10.0,9.0,9.0,2,0.17 +48366,88.0,9.0,9.0,10.0,10.0,9.0,9.0,55,4.29 +29114,,,,,,,,1,0.1 +56822,100.0,8.0,8.0,8.0,10.0,8.0,10.0,1,0.09 +17595,88.0,9.0,8.0,10.0,9.0,10.0,8.0,18,1.52 +26173,96.0,10.0,9.0,10.0,10.0,10.0,9.0,71,5.61 +71151,98.0,10.0,10.0,10.0,10.0,10.0,9.0,16,1.26 +37018,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.25 +23062,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.53 +23489,,,,,,,,0, +16476,92.0,9.0,9.0,10.0,10.0,10.0,10.0,5,0.44 +24834,100.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.42 +37292,97.0,10.0,10.0,9.0,10.0,9.0,10.0,7,0.69 +6858,92.0,10.0,9.0,10.0,9.0,9.0,10.0,6,0.49 +17626,,,,,,,,0, +52326,95.0,10.0,9.0,10.0,10.0,10.0,10.0,11,2.02 +74355,40.0,2.0,2.0,2.0,2.0,10.0,6.0,1,0.09 +31162,98.0,10.0,10.0,10.0,10.0,9.0,10.0,28,2.18 +26747,93.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.27 +348,100.0,10.0,10.0,10.0,10.0,10.0,9.0,11,0.86 +25392,99.0,10.0,10.0,10.0,10.0,10.0,10.0,119,9.15 +38731,,,,,,,,0, +23174,95.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.86 +3823,,,,,,,,1,0.22 +38572,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.16 +30603,100.0,10.0,10.0,10.0,10.0,9.0,9.0,6,0.52 +1360,90.0,9.0,9.0,10.0,10.0,9.0,10.0,22,1.86 +34770,80.0,9.0,9.0,7.0,10.0,9.0,8.0,2,0.31 +17092,97.0,10.0,9.0,10.0,10.0,10.0,10.0,22,1.75 +6394,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.26 +76842,86.0,9.0,9.0,9.0,10.0,9.0,9.0,60,4.77 +71345,96.0,10.0,10.0,10.0,10.0,10.0,9.0,16,1.34 +47937,97.0,9.0,10.0,10.0,10.0,9.0,10.0,45,3.66 +27249,85.0,9.0,8.0,9.0,9.0,9.0,9.0,69,5.55 +60802,97.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.54 +21372,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.26 +17587,94.0,10.0,10.0,10.0,10.0,10.0,10.0,127,9.9 +36277,,,,,,,,0, +5832,98.0,10.0,9.0,10.0,10.0,10.0,10.0,11,0.96 +16201,93.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.49 +6736,95.0,10.0,10.0,10.0,10.0,9.0,9.0,21,1.82 +12538,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.26 +52398,90.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.17 +12159,94.0,9.0,9.0,10.0,10.0,9.0,9.0,10,1.11 +37332,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.3 +48375,,,,,,,,2,0.27 +20630,98.0,10.0,10.0,10.0,10.0,9.0,10.0,16,1.41 +33777,100.0,10.0,10.0,10.0,9.0,9.0,10.0,3,0.55 +10470,98.0,10.0,10.0,10.0,10.0,10.0,10.0,14,1.12 +32411,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +18804,94.0,9.0,9.0,9.0,10.0,9.0,9.0,7,0.6 +41731,,,,,,,,0, +43638,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.37 +13169,,,,,,,,0, +13667,86.0,9.0,9.0,8.0,8.0,10.0,9.0,9,0.74 +27384,,,,,,,,1,0.09 +70139,,,,,,,,0, +59315,76.0,9.0,9.0,9.0,8.0,8.0,7.0,5,0.42 +38013,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.76 +72373,,,,,,,,0, +33470,93.0,10.0,9.0,10.0,10.0,9.0,9.0,23,1.95 +32282,100.0,10.0,10.0,10.0,10.0,10.0,8.0,2,0.16 +10009,88.0,9.0,9.0,9.0,8.0,8.0,9.0,5,0.41 +24732,90.0,9.0,9.0,9.0,8.0,9.0,7.0,2,0.16 +23434,,,,,,,,0, +73272,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.25 +17321,100.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.36 +77024,,,,,,,,0, +32567,,,,,,,,0, +21051,,,,,,,,0, +68084,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.19 +45204,,,,,,,,0, +62661,,,,,,,,0, +74149,87.0,9.0,7.0,8.0,8.0,9.0,9.0,6,0.63 +65682,94.0,10.0,10.0,10.0,9.0,10.0,10.0,8,0.7 +59956,97.0,10.0,10.0,10.0,10.0,9.0,10.0,69,5.49 +60007,84.0,7.0,8.0,9.0,8.0,8.0,10.0,6,0.49 +28607,100.0,9.0,9.0,9.0,10.0,10.0,10.0,3,0.45 +67190,88.0,8.0,8.0,9.0,9.0,10.0,8.0,5,0.39 +41904,98.0,10.0,10.0,10.0,10.0,10.0,9.0,20,1.57 +16600,96.0,10.0,9.0,10.0,10.0,9.0,9.0,5,0.43 +8143,,,,,,,,1,0.12 +15677,,,,,,,,0, +1916,97.0,10.0,9.0,10.0,10.0,9.0,10.0,26,2.07 +13453,89.0,9.0,8.0,9.0,9.0,10.0,9.0,30,2.39 +14279,84.0,9.0,8.0,10.0,9.0,10.0,9.0,5,0.44 +23992,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.29 +63057,60.0,8.0,4.0,10.0,10.0,10.0,8.0,1,0.09 +57996,,,,,,,,0, +60718,80.0,10.0,8.0,6.0,6.0,8.0,10.0,1,0.08 +41450,,,,,,,,0, +55670,,,,,,,,0, +27741,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.24 +50021,40.0,6.0,2.0,4.0,8.0,8.0,6.0,3,0.23 +44654,90.0,9.0,9.0,10.0,10.0,10.0,9.0,4,0.36 +22458,100.0,10.0,10.0,10.0,10.0,9.0,9.0,6,0.47 +29889,95.0,10.0,10.0,10.0,10.0,9.0,9.0,13,1.03 +24685,93.0,9.0,8.0,10.0,10.0,9.0,10.0,9,0.8 +38939,99.0,10.0,10.0,10.0,10.0,10.0,10.0,17,1.33 +36452,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.64 +66011,98.0,9.0,10.0,10.0,10.0,10.0,10.0,12,1.07 +39871,90.0,10.0,8.0,10.0,10.0,8.0,9.0,2,0.18 +53442,,,,,,,,0, +34075,,,,,,,,0, +41735,94.0,9.0,9.0,10.0,10.0,10.0,9.0,25,1.95 +64801,,,,,,,,0, +1692,70.0,8.0,7.0,8.0,8.0,10.0,8.0,4,0.32 +12616,,,,,,,,0, +1309,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.74 +35518,100.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.39 +29707,100.0,10.0,10.0,10.0,9.0,9.0,9.0,6,0.52 +62067,100.0,10.0,10.0,10.0,10.0,10.0,10.0,19,1.48 +50100,,,,,,,,0, +60029,97.0,10.0,9.0,10.0,10.0,10.0,10.0,22,1.8 +25109,97.0,9.0,10.0,10.0,10.0,10.0,10.0,7,0.56 +62762,,,,,,,,0, +58644,,,,,,,,0, +37095,98.0,10.0,10.0,10.0,10.0,10.0,10.0,34,2.78 +8839,,,,,,,,0, +36925,80.0,9.0,9.0,10.0,10.0,9.0,10.0,4,0.32 +72473,93.0,10.0,10.0,9.0,9.0,10.0,10.0,3,0.39 +44985,91.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.85 +48339,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.24 +57733,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +71964,93.0,10.0,9.0,10.0,10.0,9.0,10.0,34,2.71 +49983,,,,,,,,0, +69414,100.0,10.0,9.0,9.0,10.0,9.0,10.0,2,0.21 +40380,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.32 +27009,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.16 +19616,,,,,,,,0, +22603,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.23 +50809,100.0,10.0,10.0,10.0,10.0,10.0,9.0,9,0.71 +1429,,,,,,,,0, +6292,90.0,9.0,9.0,10.0,10.0,9.0,8.0,2,0.2 +28201,85.0,9.0,9.0,9.0,9.0,9.0,8.0,56,4.36 +9550,95.0,9.0,10.0,10.0,10.0,10.0,10.0,4,0.35 +23499,87.0,10.0,9.0,10.0,9.0,10.0,9.0,9,1.49 +54880,,,,,,,,0, +37086,,,,,,,,0, +57208,96.0,10.0,9.0,10.0,10.0,9.0,9.0,11,1.0 +35817,,,,,,,,0, +47336,,,,,,,,2,0.21 +7738,,,,,,,,0, +61214,98.0,10.0,10.0,10.0,10.0,10.0,10.0,61,5.13 +2387,90.0,9.0,9.0,9.0,9.0,10.0,9.0,12,0.99 +66897,,,,,,,,0, +20747,90.0,10.0,9.0,10.0,10.0,10.0,9.0,2,0.24 +45618,40.0,6.0,2.0,8.0,6.0,6.0,2.0,1,1.0 +13980,100.0,10.0,10.0,10.0,10.0,8.0,8.0,2,0.16 +61416,97.0,10.0,8.0,10.0,10.0,9.0,9.0,6,0.53 +45001,91.0,10.0,8.0,10.0,10.0,10.0,9.0,7,0.56 +25521,,,,,,,,0, +26950,97.0,10.0,9.0,10.0,10.0,10.0,10.0,12,1.04 +42246,97.0,10.0,10.0,10.0,10.0,10.0,9.0,24,2.52 +17048,,,,,,,,0, +74445,98.0,10.0,10.0,10.0,10.0,10.0,10.0,37,3.44 +12828,97.0,10.0,10.0,10.0,10.0,9.0,10.0,13,1.04 +22754,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.56 +70952,,,,,,,,1,0.08 +26117,99.0,10.0,10.0,10.0,10.0,9.0,10.0,83,9.02 +4534,100.0,10.0,10.0,10.0,10.0,9.0,9.0,6,0.52 +35676,95.0,10.0,10.0,9.0,10.0,9.0,10.0,4,0.33 +41250,96.0,9.0,8.0,10.0,10.0,10.0,8.0,5,0.53 +70638,,,,,,,,0, +41461,100.0,10.0,10.0,9.0,10.0,10.0,10.0,4,0.31 +34304,83.0,9.0,10.0,7.0,10.0,8.0,9.0,7,0.77 +525,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +51742,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,1.02 +68236,93.0,9.0,9.0,10.0,9.0,10.0,9.0,21,2.27 +25681,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.33 +3002,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +3638,100.0,10.0,10.0,9.0,10.0,10.0,10.0,4,0.35 +63691,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.32 +41496,95.0,10.0,9.0,10.0,10.0,10.0,10.0,23,1.86 +22909,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.26 +70554,96.0,10.0,9.0,10.0,10.0,10.0,9.0,34,2.76 +714,90.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.26 +16115,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +46187,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.42 +8824,93.0,9.0,10.0,10.0,10.0,10.0,9.0,13,1.39 +63914,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.33 +28682,87.0,10.0,9.0,10.0,10.0,8.0,9.0,3,1.7 +39471,99.0,10.0,10.0,10.0,10.0,10.0,10.0,40,3.31 +59186,,,,,,,,0, +31745,81.0,9.0,9.0,10.0,9.0,10.0,9.0,30,2.36 +40983,94.0,10.0,9.0,10.0,10.0,9.0,9.0,7,0.73 +17270,,,,,,,,0, +23492,81.0,8.0,8.0,9.0,9.0,9.0,9.0,29,2.35 +69906,98.0,10.0,10.0,10.0,10.0,9.0,9.0,20,1.76 +52431,91.0,10.0,10.0,10.0,9.0,9.0,9.0,15,1.96 +45417,97.0,10.0,10.0,10.0,10.0,10.0,10.0,20,1.69 +22857,,,,,,,,1,0.11 +22549,94.0,10.0,9.0,10.0,10.0,9.0,10.0,19,1.54 +36339,94.0,10.0,9.0,10.0,10.0,10.0,10.0,72,5.6 +19224,84.0,9.0,8.0,8.0,9.0,9.0,9.0,10,0.87 +31881,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.24 +925,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.41 +24292,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.42 +9324,,,,,,,,0, +14927,90.0,9.0,10.0,10.0,10.0,10.0,10.0,8,0.64 +12267,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.16 +61230,100.0,10.0,10.0,9.0,9.0,10.0,10.0,4,0.46 +43330,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.29 +46807,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.87 +21534,92.0,9.0,9.0,9.0,9.0,9.0,9.0,43,3.39 +75307,87.0,9.0,9.0,9.0,9.0,9.0,8.0,7,0.63 +36738,95.0,10.0,10.0,10.0,10.0,10.0,9.0,9,0.78 +19437,80.0,8.0,8.0,10.0,10.0,10.0,8.0,2,0.16 +15010,100.0,10.0,10.0,10.0,10.0,10.0,10.0,47,4.48 +17757,95.0,10.0,10.0,10.0,10.0,10.0,9.0,42,3.26 +23698,91.0,9.0,9.0,9.0,9.0,10.0,9.0,28,2.3 +76671,100.0,10.0,10.0,10.0,10.0,8.0,10.0,3,0.24 +74652,96.0,10.0,10.0,10.0,10.0,10.0,10.0,62,5.41 +9648,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.26 +58145,,,,,,,,0, +49296,,,,,,,,0, +56880,94.0,9.0,9.0,10.0,10.0,10.0,10.0,25,1.97 +27164,87.0,9.0,8.0,10.0,10.0,9.0,9.0,8,0.68 +2941,100.0,10.0,10.0,10.0,10.0,10.0,8.0,3,0.31 +45085,,,,,,,,0, +25410,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.18 +35045,,,,,,,,0, +14092,100.0,9.0,9.0,10.0,10.0,9.0,9.0,3,0.32 +57453,95.0,10.0,9.0,9.0,9.0,10.0,9.0,31,2.49 +28791,,,,,,,,1,0.08 +15864,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.17 +31371,,,,,,,,0, +42515,91.0,9.0,8.0,10.0,9.0,10.0,9.0,30,0.4 +56593,91.0,10.0,10.0,10.0,10.0,10.0,9.0,9,0.32 +24339,97.0,9.0,9.0,10.0,10.0,10.0,10.0,12,0.76 +13004,96.0,10.0,10.0,10.0,10.0,10.0,9.0,9,0.39 +20488,85.0,10.0,9.0,9.0,9.0,10.0,8.0,15,0.98 +54401,92.0,10.0,10.0,8.0,8.0,10.0,9.0,5,0.42 +19386,100.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.69 +64756,90.0,9.0,9.0,9.0,9.0,7.0,9.0,4,0.35 +64793,100.0,10.0,8.0,10.0,10.0,10.0,10.0,3,0.25 +31670,,,,,,,,0, +26401,100.0,10.0,10.0,10.0,10.0,10.0,10.0,21,1.64 +372,98.0,10.0,10.0,10.0,10.0,9.0,10.0,97,7.66 +45781,96.0,10.0,9.0,10.0,10.0,9.0,9.0,30,2.32 +31672,100.0,10.0,10.0,10.0,10.0,9.0,9.0,4,0.31 +62063,,,,,,,,0, +34258,86.0,8.0,8.0,8.0,9.0,9.0,8.0,7,2.04 +22945,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.19 +50712,79.0,9.0,8.0,9.0,9.0,8.0,9.0,27,2.33 +468,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.42 +11029,99.0,10.0,10.0,10.0,10.0,10.0,10.0,64,5.15 +58311,96.0,10.0,10.0,10.0,10.0,9.0,10.0,49,3.9 +75906,97.0,10.0,10.0,10.0,10.0,10.0,10.0,29,2.54 +50656,87.0,8.0,9.0,10.0,9.0,9.0,9.0,3,0.25 +40987,74.0,8.0,7.0,7.0,8.0,8.0,8.0,14,1.19 +62696,,,,,,,,0, +36151,,,,,,,,0, +70783,,,,,,,,0, +29187,,,,,,,,0, +70620,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +69989,93.0,9.0,9.0,9.0,10.0,9.0,9.0,12,0.94 +43335,,,,,,,,0, +5247,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.08 +27443,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.08 +18986,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.18 +10845,93.0,9.0,10.0,10.0,10.0,10.0,10.0,3,0.23 +73656,98.0,10.0,10.0,10.0,10.0,10.0,10.0,51,4.06 +2795,95.0,10.0,10.0,10.0,10.0,10.0,9.0,9,0.74 +18495,80.0,10.0,8.0,10.0,10.0,8.0,8.0,1,0.09 +6974,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.34 +56185,97.0,10.0,10.0,10.0,10.0,10.0,10.0,52,4.14 +54453,94.0,9.0,9.0,10.0,10.0,8.0,9.0,10,1.73 +35360,100.0,8.0,10.0,10.0,10.0,8.0,10.0,1,0.08 +55764,85.0,9.0,9.0,10.0,10.0,9.0,9.0,24,2.7 +55950,,,,,,,,0, +56004,,,,,,,,1,0.08 +31525,87.0,9.0,9.0,10.0,7.0,10.0,8.0,3,0.25 +38644,93.0,10.0,9.0,10.0,10.0,10.0,9.0,31,4.47 +20284,100.0,10.0,10.0,10.0,10.0,9.0,10.0,11,0.87 +34745,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +6340,,,,,,,,0, +62560,,,,,,,,1,0.08 +17162,97.0,10.0,10.0,9.0,10.0,10.0,10.0,14,1.68 +15871,100.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.21 +65582,,,,,,,,0, +51333,95.0,10.0,10.0,10.0,10.0,10.0,9.0,29,2.31 +69669,98.0,10.0,10.0,10.0,10.0,9.0,10.0,31,2.82 +54659,,,,,,,,0, +64344,100.0,8.0,10.0,8.0,8.0,6.0,8.0,1,0.08 +13339,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.21 +63907,100.0,10.0,10.0,10.0,10.0,10.0,9.0,11,1.21 +13632,,,,,,,,0, +60261,100.0,10.0,10.0,10.0,8.0,10.0,9.0,2,1.02 +4241,,,,,,,,0, +8138,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.31 +74172,100.0,10.0,9.0,10.0,10.0,10.0,9.0,3,0.29 +12053,93.0,10.0,9.0,10.0,10.0,10.0,9.0,17,1.41 +23971,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +41524,100.0,10.0,10.0,6.0,8.0,10.0,10.0,1,0.1 +36920,,,,,,,,0, +63630,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.24 +9507,100.0,9.0,10.0,10.0,10.0,10.0,10.0,3,0.25 +63855,,,,,,,,1,0.08 +70005,96.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.49 +22434,,,,,,,,1,0.13 +75294,95.0,10.0,9.0,10.0,10.0,9.0,9.0,13,1.07 +28205,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.31 +48608,,,,,,,,0, +55081,100.0,10.0,6.0,10.0,10.0,10.0,10.0,1,0.09 +39752,,,,,,,,1,0.22 +46060,99.0,10.0,10.0,10.0,10.0,10.0,10.0,16,1.5 +77095,97.0,10.0,10.0,9.0,10.0,9.0,9.0,12,1.06 +37921,85.0,9.0,8.0,9.0,8.0,10.0,9.0,13,1.06 +8592,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.16 +23913,96.0,10.0,10.0,10.0,10.0,10.0,10.0,101,7.89 +30906,97.0,10.0,9.0,10.0,10.0,9.0,10.0,18,1.72 +40362,95.0,10.0,10.0,10.0,10.0,10.0,9.0,21,3.18 +56764,,,,,,,,0, +48542,91.0,9.0,9.0,9.0,9.0,9.0,9.0,7,0.62 +28637,100.0,10.0,10.0,10.0,10.0,10.0,9.0,11,0.85 +30421,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.35 +23998,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.39 +64569,,,,,,,,0, +61908,85.0,9.0,9.0,9.0,9.0,9.0,9.0,53,4.32 +43425,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.65 +43734,,,,,,,,0, +67764,100.0,9.0,10.0,10.0,10.0,10.0,8.0,2,0.16 +14534,97.0,10.0,10.0,10.0,10.0,10.0,10.0,24,2.11 +66421,93.0,9.0,9.0,9.0,9.0,9.0,9.0,3,0.75 +55834,,,,,,,,0, +32487,,,,,,,,0, +22610,,,,,,,,0, +22258,,,,,,,,0, +42087,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.67 +9292,,,,,,,,0, +38984,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.27 +23852,91.0,10.0,10.0,10.0,9.0,8.0,9.0,15,1.24 +24497,,,,,,,,2,0.16 +47225,98.0,10.0,9.0,10.0,10.0,10.0,9.0,18,1.52 +30633,,,,,,,,0, +48227,92.0,10.0,9.0,9.0,9.0,8.0,9.0,15,1.34 +30348,,,,,,,,0, +52694,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.59 +71463,,,,,,,,1,0.23 +12674,83.0,9.0,8.0,9.0,9.0,9.0,9.0,24,1.88 +45112,,,,,,,,0, +30791,100.0,10.0,10.0,10.0,8.0,10.0,10.0,1,0.12 +40142,81.0,9.0,8.0,9.0,9.0,9.0,8.0,53,4.16 +39238,93.0,10.0,10.0,9.0,9.0,9.0,9.0,19,1.79 +50085,98.0,10.0,10.0,10.0,10.0,10.0,10.0,18,1.47 +67964,91.0,9.0,9.0,10.0,9.0,10.0,9.0,22,1.72 +3817,,,,,,,,0, +68333,,,,,,,,0, +7988,,,,,,,,1,0.08 +21861,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.18 +22123,93.0,10.0,9.0,10.0,10.0,9.0,9.0,3,0.26 +31425,,,,,,,,0, +12840,87.0,9.0,8.0,9.0,10.0,9.0,9.0,15,1.19 +35486,,,,,,,,1,0.13 +59945,80.0,10.0,6.0,8.0,10.0,10.0,10.0,1,0.08 +20420,,,,,,,,0, +55128,,,,,,,,0, +64164,92.0,10.0,9.0,10.0,10.0,10.0,9.0,11,0.92 +58132,,,,,,,,0, +62397,,,,,,,,0, +4584,100.0,10.0,10.0,10.0,9.0,9.0,10.0,2,0.34 +33163,73.0,8.0,7.0,9.0,9.0,8.0,7.0,17,1.37 +22440,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.23 +27711,100.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.29 +26093,85.0,9.0,8.0,9.0,9.0,10.0,9.0,11,0.88 +45682,85.0,9.0,10.0,9.0,10.0,10.0,9.0,4,0.41 +67262,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.57 +72689,,,,,,,,0, +2151,,,,,,,,0, +23189,90.0,9.0,8.0,10.0,9.0,10.0,9.0,2,0.19 +36310,97.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.5 +57950,,,,,,,,0, +15620,84.0,9.0,8.0,8.0,9.0,8.0,9.0,5,0.49 +28923,100.0,8.0,8.0,8.0,10.0,10.0,8.0,1,0.1 +62027,100.0,10.0,10.0,10.0,10.0,10.0,9.0,9,0.93 +44653,81.0,9.0,7.0,9.0,9.0,9.0,8.0,16,1.42 +31906,98.0,10.0,9.0,10.0,10.0,9.0,10.0,25,1.99 +63390,73.0,8.0,7.0,9.0,7.0,9.0,7.0,3,1.8 +20158,99.0,10.0,10.0,10.0,10.0,10.0,10.0,16,1.67 +27650,88.0,9.0,9.0,10.0,10.0,9.0,9.0,31,2.45 +33157,,,,,,,,0, +66803,80.0,8.0,10.0,8.0,9.0,10.0,9.0,2,0.17 +68663,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +14689,90.0,9.0,9.0,10.0,10.0,10.0,9.0,6,0.49 +49398,91.0,10.0,9.0,9.0,10.0,10.0,9.0,28,3.77 +12224,92.0,10.0,9.0,9.0,10.0,10.0,9.0,31,3.39 +42130,,,,,,,,0, +21697,,,,,,,,0, +24370,93.0,10.0,9.0,10.0,10.0,10.0,9.0,3,0.27 +76881,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,1.08 +22033,,,,,,,,0, +45941,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.17 +69615,99.0,10.0,10.0,10.0,10.0,9.0,10.0,14,1.2 +26995,80.0,8.0,8.0,8.0,8.0,8.0,8.0,6,0.52 +42834,100.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.16 +27978,,,,,,,,0, +16951,91.0,9.0,10.0,9.0,9.0,10.0,9.0,19,1.6 +60537,95.0,9.0,9.0,10.0,10.0,9.0,9.0,8,0.7 +40291,100.0,10.0,10.0,9.0,10.0,9.0,10.0,8,0.92 +11181,,,,,,,,0, +27460,98.0,10.0,10.0,10.0,10.0,9.0,10.0,22,1.96 +55454,100.0,8.0,10.0,10.0,10.0,10.0,8.0,1,0.09 +3129,95.0,10.0,9.0,9.0,8.0,10.0,10.0,5,0.44 +68326,95.0,10.0,10.0,9.0,9.0,10.0,9.0,24,1.88 +55866,80.0,2.0,4.0,10.0,10.0,6.0,6.0,1,0.08 +13637,,,,,,,,0, +50453,,,,,,,,0, +11795,78.0,9.0,9.0,9.0,8.0,8.0,8.0,17,1.45 +40908,96.0,9.0,9.0,10.0,9.0,9.0,9.0,20,1.68 +1858,,,,,,,,0, +66788,100.0,9.0,10.0,10.0,10.0,9.0,9.0,4,0.67 +75968,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.21 +34818,94.0,10.0,9.0,10.0,10.0,10.0,10.0,17,1.49 +38904,92.0,9.0,8.0,10.0,10.0,9.0,9.0,15,1.2 +57915,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.11 +10313,,,,,,,,0, +21613,80.0,10.0,8.0,8.0,10.0,9.0,9.0,4,0.72 +18646,80.0,8.0,9.0,8.0,9.0,9.0,8.0,8,0.7 +54096,87.0,9.0,9.0,9.0,10.0,8.0,8.0,6,0.78 +74455,100.0,10.0,10.0,10.0,10.0,9.0,10.0,9,0.73 +44149,,,,,,,,0, +73709,91.0,9.0,9.0,9.0,10.0,10.0,9.0,9,0.79 +24024,90.0,7.0,10.0,7.0,8.0,8.0,8.0,2,0.59 +69693,94.0,10.0,10.0,9.0,10.0,10.0,10.0,7,0.56 +52869,90.0,10.0,9.0,10.0,10.0,9.0,9.0,8,0.66 +64964,100.0,10.0,10.0,8.0,10.0,8.0,8.0,1,0.09 +53982,80.0,9.0,6.0,8.0,10.0,8.0,8.0,4,0.32 +69807,91.0,9.0,9.0,9.0,9.0,9.0,9.0,20,1.62 +28472,,,,,,,,0, +19232,100.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.48 +76351,83.0,9.0,9.0,9.0,7.0,10.0,9.0,8,0.99 +44308,100.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.19 +47348,90.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.54 +72150,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.33 +14079,89.0,9.0,8.0,9.0,9.0,9.0,8.0,18,2.28 +70197,90.0,9.0,9.0,10.0,10.0,9.0,9.0,23,1.93 +58754,86.0,9.0,9.0,10.0,10.0,10.0,8.0,13,1.97 +12373,85.0,9.0,9.0,10.0,9.0,10.0,9.0,15,1.85 +39422,86.0,9.0,8.0,10.0,9.0,10.0,8.0,13,1.63 +11716,73.0,7.0,6.0,10.0,10.0,8.0,7.0,6,0.48 +2221,94.0,9.0,9.0,10.0,10.0,9.0,9.0,19,2.45 +43941,81.0,8.0,9.0,10.0,10.0,9.0,8.0,21,2.75 +49199,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.18 +30062,,,,,,,,0, +41339,94.0,10.0,9.0,10.0,10.0,10.0,9.0,21,2.97 +26556,95.0,10.0,10.0,10.0,9.0,10.0,9.0,22,2.43 +9508,,,,,,,,0, +14084,96.0,10.0,10.0,10.0,10.0,10.0,10.0,9,2.11 +65319,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.08 +67351,92.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.44 +22416,98.0,10.0,10.0,10.0,10.0,9.0,10.0,9,0.72 +11428,73.0,8.0,7.0,10.0,9.0,10.0,7.0,25,2.43 +72145,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.52 +66416,85.0,9.0,9.0,10.0,10.0,10.0,10.0,13,1.09 +21159,86.0,9.0,9.0,9.0,9.0,10.0,9.0,10,1.02 +57650,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.94 +64746,92.0,10.0,9.0,10.0,10.0,10.0,9.0,28,2.23 +70895,98.0,10.0,10.0,9.0,10.0,10.0,10.0,14,1.19 +32151,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.56 +11174,96.0,9.0,10.0,10.0,10.0,9.0,9.0,49,4.01 +19659,,,,,,,,0, +50867,94.0,9.0,9.0,10.0,10.0,10.0,9.0,23,1.91 +9895,100.0,10.0,10.0,10.0,10.0,10.0,10.0,58,5.1 +62140,85.0,9.0,9.0,8.0,8.0,10.0,9.0,59,4.76 +71306,78.0,8.0,8.0,9.0,9.0,9.0,8.0,18,1.45 +37787,88.0,9.0,8.0,10.0,9.0,10.0,9.0,25,1.97 +15616,95.0,10.0,10.0,10.0,10.0,10.0,9.0,46,3.73 +47562,97.0,10.0,9.0,10.0,9.0,9.0,10.0,6,0.53 +46905,90.0,10.0,9.0,10.0,10.0,10.0,10.0,8,0.68 +67247,97.0,10.0,10.0,10.0,10.0,10.0,10.0,22,1.82 +26434,100.0,8.0,10.0,10.0,10.0,10.0,8.0,1,0.12 +70648,,,,,,,,1,0.15 +60019,98.0,10.0,10.0,10.0,10.0,10.0,10.0,31,2.45 +2497,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.71 +71304,,,,,,,,1,0.11 +2250,91.0,10.0,9.0,9.0,9.0,10.0,9.0,15,1.54 +73362,98.0,10.0,10.0,10.0,10.0,10.0,9.0,20,1.78 +49279,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.64 +61684,,,,,,,,0, +74914,100.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.39 +27511,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.43 +43473,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.32 +55242,,,,,,,,0, +15045,100.0,10.0,10.0,10.0,10.0,10.0,9.0,11,0.91 +9398,83.0,9.0,9.0,10.0,9.0,10.0,8.0,7,0.56 +52803,93.0,9.0,10.0,9.0,9.0,10.0,9.0,21,1.68 +45751,95.0,10.0,9.0,10.0,10.0,10.0,9.0,4,0.52 +70170,,,,,,,,0, +37551,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.12 +76554,98.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.83 +35615,95.0,10.0,10.0,9.0,9.0,9.0,9.0,27,2.22 +7059,80.0,10.0,6.0,8.0,10.0,10.0,10.0,1,0.2 +54261,80.0,7.0,9.0,8.0,8.0,9.0,8.0,7,0.57 +26319,99.0,10.0,10.0,10.0,10.0,10.0,10.0,29,2.35 +56582,,,,,,,,0, +55766,100.0,9.0,9.0,9.0,9.0,10.0,10.0,4,0.31 +54481,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +21346,,,,,,,,0, +57714,96.0,10.0,9.0,10.0,10.0,9.0,10.0,19,3.29 +75901,,,,,,,,1,0.08 +29629,98.0,10.0,9.0,10.0,10.0,10.0,9.0,9,1.39 +32018,90.0,10.0,10.0,9.0,9.0,9.0,9.0,2,0.17 +68442,80.0,9.0,7.0,8.0,9.0,10.0,10.0,2,0.17 +11839,90.0,9.0,10.0,10.0,10.0,9.0,9.0,4,0.36 +8253,99.0,10.0,10.0,10.0,10.0,10.0,10.0,31,2.54 +62017,100.0,9.0,9.0,9.0,9.0,9.0,9.0,3,0.32 +6157,93.0,10.0,10.0,10.0,10.0,9.0,9.0,73,5.81 +1663,92.0,10.0,9.0,10.0,10.0,10.0,9.0,70,5.56 +5475,94.0,10.0,10.0,10.0,10.0,9.0,9.0,77,6.13 +73245,90.0,10.0,9.0,10.0,9.0,8.0,9.0,2,0.2 +24850,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.41 +48578,90.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.18 +73926,94.0,10.0,9.0,9.0,10.0,10.0,9.0,10,1.97 +49699,,,,,,,,1,0.11 +24002,80.0,8.0,6.0,10.0,10.0,8.0,8.0,2,0.2 +59924,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.18 +32186,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,1.15 +15897,,,,,,,,0, +27754,,,,,,,,0, +62585,90.0,10.0,9.0,10.0,10.0,9.0,9.0,3,0.37 +17146,,,,,,,,1,0.27 +46558,,,,,,,,0, +52791,94.0,10.0,9.0,10.0,9.0,10.0,9.0,27,2.17 +63281,93.0,9.0,9.0,10.0,10.0,10.0,9.0,49,3.92 +74136,91.0,9.0,8.0,9.0,9.0,9.0,9.0,9,0.92 +58770,99.0,10.0,10.0,10.0,10.0,9.0,10.0,21,1.76 +24525,90.0,9.0,9.0,9.0,9.0,10.0,9.0,24,1.91 +34394,,,,,,,,0, +13511,,10.0,10.0,10.0,10.0,10.0,10.0,1,0.12 +49213,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.16 +45392,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +43864,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.36 +4250,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.37 +76793,95.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.32 +3519,99.0,10.0,10.0,10.0,10.0,10.0,10.0,21,2.11 +67538,,,,,,,,1,0.08 +63587,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.64 +25373,96.0,10.0,10.0,9.0,10.0,8.0,8.0,5,0.43 +6202,97.0,10.0,9.0,10.0,10.0,10.0,10.0,46,3.71 +55130,100.0,10.0,10.0,10.0,10.0,10.0,10.0,15,1.37 +36274,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.86 +9247,70.0,7.0,9.0,6.0,7.0,8.0,8.0,3,0.25 +49768,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +13598,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.3 +69461,,,,,,,,0, +56636,100.0,10.0,10.0,10.0,10.0,10.0,10.0,19,1.67 +29737,96.0,10.0,10.0,9.0,10.0,9.0,9.0,5,0.44 +6877,96.0,10.0,10.0,10.0,10.0,10.0,9.0,9,1.76 +4943,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +10061,98.0,10.0,10.0,10.0,10.0,10.0,10.0,27,2.13 +29076,,,,,,,,0, +76848,99.0,10.0,10.0,10.0,10.0,10.0,10.0,15,1.21 +63081,,,,,,,,0, +38213,98.0,10.0,10.0,9.0,10.0,10.0,10.0,11,3.17 +46052,,,,,,,,0, +46401,,,,,,,,0, +57441,,,,,,,,0, +26436,92.0,10.0,10.0,10.0,10.0,9.0,9.0,6,0.49 +38977,92.0,9.0,9.0,9.0,10.0,9.0,9.0,10,0.82 +165,,,,,,,,0, +54172,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.17 +66256,,,,,,,,0, +29353,80.0,10.0,6.0,10.0,10.0,6.0,6.0,1,0.09 +7216,99.0,10.0,10.0,10.0,10.0,10.0,10.0,14,1.31 +1380,83.0,8.0,9.0,8.0,8.0,9.0,9.0,15,1.19 +3950,84.0,9.0,10.0,10.0,8.0,8.0,9.0,10,0.83 +60895,60.0,10.0,8.0,10.0,10.0,6.0,10.0,1,0.09 +32052,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +67279,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.14 +52198,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.44 +76564,,,,,,,,0, +44574,100.0,9.0,9.0,10.0,9.0,10.0,9.0,4,0.33 +65877,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.43 +25139,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.49 +30419,98.0,10.0,10.0,10.0,10.0,10.0,10.0,97,7.89 +39746,,,,,,,,0, +46533,87.0,9.0,9.0,8.0,9.0,10.0,9.0,6,2.4 +48572,97.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.56 +49958,100.0,10.0,10.0,10.0,10.0,8.0,10.0,3,0.26 +73689,,,,,,,,0, +11273,,,,,,,,0, +76349,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.54 +10137,,,,,,,,0, +72503,98.0,10.0,10.0,10.0,10.0,10.0,10.0,27,2.17 +42282,91.0,9.0,9.0,10.0,10.0,10.0,9.0,16,1.32 +22953,100.0,10.0,10.0,10.0,10.0,8.0,9.0,3,0.27 +28696,89.0,9.0,9.0,9.0,10.0,9.0,10.0,16,1.3 +3714,,,,,,,,0, +73832,,,,,,,,0, +54336,100.0,9.0,9.0,10.0,10.0,9.0,10.0,3,0.36 +61176,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.35 +28329,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.14 +28928,98.0,9.0,10.0,10.0,10.0,10.0,10.0,11,2.68 +53132,89.0,9.0,10.0,9.0,9.0,8.0,9.0,15,1.74 +61118,100.0,8.0,10.0,10.0,10.0,8.0,8.0,1,0.2 +7683,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +20619,88.0,10.0,8.0,10.0,10.0,9.0,9.0,5,0.44 +14936,98.0,10.0,10.0,10.0,10.0,9.0,10.0,13,1.12 +62982,94.0,10.0,9.0,9.0,9.0,9.0,9.0,26,2.64 +61997,97.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.49 +18066,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.4 +51101,,,,,,,,0, +33683,89.0,9.0,9.0,9.0,9.0,9.0,9.0,34,3.04 +59181,,,,,,,,0, +28725,,,,,,,,0, +76044,90.0,9.0,9.0,9.0,10.0,10.0,9.0,33,2.92 +43848,88.0,9.0,9.0,9.0,9.0,9.0,9.0,28,2.36 +3485,,,,,,,,0, +30530,93.0,10.0,10.0,10.0,10.0,10.0,10.0,16,1.41 +60901,,,,,,,,5,0.48 +46012,98.0,10.0,10.0,10.0,10.0,10.0,10.0,36,2.83 +74531,,,,,,,,0, +16525,,,,,,,,0, +36077,80.0,9.0,8.0,9.0,9.0,10.0,8.0,23,1.86 +46460,97.0,10.0,10.0,10.0,10.0,10.0,10.0,14,1.13 +1531,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.08 +45255,,,,,,,,0, +53238,91.0,10.0,9.0,10.0,10.0,10.0,9.0,16,1.44 +51695,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.48 +41446,,,,,,,,0, +3366,100.0,8.0,10.0,10.0,10.0,10.0,8.0,1,0.08 +26351,88.0,8.0,10.0,8.0,8.0,10.0,10.0,5,0.44 +51679,100.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.41 +52994,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.7 +24357,95.0,10.0,10.0,10.0,10.0,10.0,9.0,26,2.07 +38751,100.0,10.0,10.0,10.0,10.0,9.0,9.0,2,0.17 +1284,93.0,10.0,9.0,10.0,10.0,9.0,9.0,3,0.71 +32293,99.0,10.0,10.0,10.0,10.0,10.0,10.0,30,2.43 +73238,97.0,10.0,10.0,10.0,10.0,10.0,10.0,60,4.76 +20248,,,,,,,,0, +42148,96.0,10.0,10.0,10.0,10.0,10.0,9.0,9,0.83 +42500,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.63 +10400,100.0,10.0,10.0,10.0,10.0,10.0,10.0,17,1.46 +42706,90.0,9.0,10.0,9.0,7.0,9.0,9.0,3,0.25 +20304,100.0,10.0,9.0,10.0,10.0,10.0,10.0,9,1.07 +8741,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.66 +51192,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +22768,87.0,8.0,9.0,9.0,9.0,7.0,9.0,4,0.32 +74956,100.0,10.0,6.0,8.0,10.0,10.0,8.0,1,0.08 +51880,,,,,,,,0, +66969,,,,,,,,0, +31369,,,,,,,,0, +50299,,,,,,,,0, +45215,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.09 +68753,82.0,9.0,8.0,10.0,10.0,10.0,9.0,11,1.4 +62226,96.0,10.0,9.0,10.0,10.0,9.0,9.0,11,0.9 +38038,88.0,8.0,8.0,10.0,9.0,10.0,8.0,6,0.54 +2495,,,,,,,,0, +3838,96.0,10.0,9.0,9.0,9.0,10.0,10.0,41,4.11 +28591,98.0,10.0,10.0,9.0,10.0,10.0,9.0,9,0.74 +31050,99.0,10.0,10.0,10.0,10.0,9.0,9.0,21,1.85 +17621,92.0,10.0,10.0,10.0,10.0,9.0,9.0,5,0.62 +8009,,,,,,,,0, +69534,,,,,,,,0, +19457,95.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.67 +9779,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.13 +2142,97.0,10.0,10.0,10.0,9.0,9.0,10.0,7,0.58 +10526,90.0,9.0,9.0,10.0,10.0,9.0,9.0,10,0.82 +29520,96.0,10.0,10.0,10.0,10.0,9.0,9.0,32,2.59 +9354,94.0,10.0,10.0,9.0,10.0,9.0,10.0,17,2.63 +62556,90.0,9.0,7.0,9.0,10.0,9.0,9.0,2,0.18 +25359,,,,,,,,0, +46494,,,,,,,,0, +28685,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,1.15 +35799,,,,,,,,0, +33879,80.0,8.0,9.0,9.0,9.0,8.0,7.0,3,0.26 +66531,95.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.88 +46454,97.0,9.0,10.0,9.0,9.0,10.0,9.0,6,0.5 +29822,,,,,,,,0, +39246,,,,,,,,0, +13447,,,,,,,,0, +36069,,,,,,,,0, +71320,95.0,10.0,9.0,10.0,10.0,9.0,9.0,8,1.33 +34401,,,,,,,,0, +64780,,,,,,,,0, +29211,,,,,,,,0, +66363,,,,,,,,0, +38508,86.0,9.0,9.0,9.0,9.0,9.0,9.0,102,8.27 +12910,92.0,9.0,10.0,9.0,9.0,9.0,8.0,12,0.98 +60885,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.17 +68180,100.0,10.0,10.0,10.0,6.0,10.0,10.0,1,0.24 +31004,50.0,5.0,5.0,5.0,6.0,5.0,5.0,6,0.58 +42188,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,1.25 +35828,78.0,9.0,8.0,9.0,9.0,9.0,8.0,10,0.83 +59964,95.0,10.0,9.0,10.0,10.0,9.0,9.0,11,0.89 +19705,,,,,,,,0, +20448,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.69 +36170,96.0,10.0,10.0,10.0,10.0,9.0,10.0,17,1.48 +9919,96.0,10.0,10.0,10.0,10.0,10.0,9.0,63,5.51 +47290,87.0,8.0,9.0,10.0,10.0,10.0,9.0,6,0.53 +63312,,,,,,,,0, +73077,,,,,,,,0, +30120,,,,,,,,0, +13111,91.0,9.0,10.0,10.0,10.0,9.0,9.0,9,1.07 +44461,98.0,10.0,10.0,10.0,10.0,10.0,10.0,20,2.28 +61599,100.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.5 +61851,96.0,10.0,9.0,9.0,10.0,8.0,9.0,5,0.54 +42137,97.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.73 +999,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.51 +32323,90.0,8.0,10.0,8.0,8.0,9.0,9.0,4,0.43 +39916,98.0,10.0,10.0,10.0,10.0,9.0,10.0,19,1.73 +49081,,,,,,,,0, +13520,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.17 +69107,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.27 +70368,,,,,,,,0, +74807,,,,,,,,0, +52627,90.0,9.0,9.0,10.0,10.0,10.0,9.0,31,2.54 +46216,99.0,10.0,10.0,10.0,10.0,10.0,10.0,20,1.64 +52882,81.0,9.0,8.0,9.0,10.0,9.0,9.0,65,5.15 +12246,80.0,10.0,8.0,10.0,8.0,10.0,10.0,1,0.09 +57570,80.0,8.0,9.0,9.0,7.0,9.0,8.0,7,0.57 +32593,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.17 +29562,95.0,10.0,10.0,10.0,10.0,10.0,9.0,12,1.06 +60863,99.0,10.0,10.0,10.0,10.0,10.0,10.0,17,1.44 +29252,,,,,,,,0, +44160,99.0,10.0,10.0,10.0,10.0,10.0,10.0,27,2.36 +4454,80.0,8.0,8.0,10.0,6.0,8.0,8.0,1,0.09 +24,95.0,10.0,9.0,10.0,10.0,10.0,10.0,24,1.95 +65895,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.09 +57313,80.0,9.0,9.0,8.0,10.0,10.0,10.0,2,0.16 +43598,91.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.66 +29820,93.0,10.0,9.0,9.0,10.0,10.0,9.0,28,2.23 +7140,88.0,8.0,8.0,10.0,10.0,10.0,8.0,10,0.96 +2797,100.0,8.0,8.0,8.0,8.0,8.0,8.0,1,0.08 +56775,96.0,10.0,10.0,10.0,10.0,10.0,8.0,9,0.79 +33990,,,,,,,,0, +31557,,,,,,,,0, +69018,,,,,,,,0, +22944,98.0,10.0,10.0,9.0,10.0,10.0,10.0,10,0.83 +30967,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +25525,89.0,9.0,9.0,9.0,9.0,10.0,9.0,12,1.04 +48999,84.0,8.0,7.0,9.0,9.0,9.0,9.0,10,0.88 +71554,80.0,8.0,9.0,10.0,8.0,10.0,9.0,4,0.37 +28994,90.0,10.0,8.0,10.0,10.0,10.0,10.0,3,0.27 +7630,91.0,9.0,9.0,9.0,10.0,9.0,9.0,11,0.94 +17009,,,,,,,,0, +15003,95.0,10.0,9.0,10.0,10.0,10.0,9.0,31,2.71 +7711,91.0,10.0,9.0,9.0,9.0,9.0,9.0,14,1.14 +57038,,,,,,,,0, +48465,93.0,9.0,10.0,9.0,10.0,10.0,9.0,12,0.99 +194,90.0,10.0,9.0,10.0,10.0,10.0,9.0,23,1.83 +71795,95.0,10.0,10.0,10.0,10.0,10.0,10.0,17,2.46 +48826,95.0,10.0,9.0,10.0,10.0,9.0,9.0,23,1.86 +22268,90.0,8.0,9.0,10.0,10.0,9.0,10.0,2,0.17 +62963,87.0,9.0,9.0,9.0,10.0,9.0,9.0,23,2.47 +6117,60.0,8.0,6.0,10.0,10.0,8.0,8.0,1,0.15 +60746,88.0,10.0,10.0,10.0,10.0,10.0,9.0,16,2.19 +62386,85.0,10.0,10.0,8.0,10.0,9.0,9.0,5,0.42 +8943,96.0,10.0,9.0,9.0,10.0,10.0,10.0,5,0.42 +15912,93.0,10.0,9.0,10.0,10.0,9.0,9.0,4,0.34 +59078,84.0,10.0,8.0,10.0,9.0,10.0,9.0,10,0.82 +38828,,,,,,,,0, +62293,,,,,,,,0, +48748,96.0,10.0,10.0,10.0,10.0,9.0,10.0,55,4.45 +38777,,,,,,,,0, +56824,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.23 +71866,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.17 +4746,100.0,10.0,9.0,10.0,10.0,9.0,10.0,2,0.16 +72031,60.0,6.0,8.0,8.0,4.0,6.0,8.0,1,0.09 +14604,95.0,10.0,10.0,10.0,10.0,9.0,10.0,14,1.21 +32256,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +35972,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.93 +27110,91.0,9.0,9.0,9.0,10.0,9.0,9.0,19,1.84 +41003,,,,,,,,0, +41555,,,,,,,,0, +52451,95.0,10.0,9.0,10.0,10.0,10.0,9.0,12,0.97 +34580,90.0,9.0,8.0,8.0,9.0,7.0,8.0,2,0.18 +4465,,,,,,,,0, +73314,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +9325,40.0,2.0,2.0,2.0,2.0,6.0,4.0,1,0.08 +6319,,,,,,,,0, +48128,99.0,10.0,10.0,10.0,10.0,10.0,10.0,20,1.77 +32275,90.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.16 +44411,20.0,2.0,2.0,2.0,2.0,2.0,2.0,2,0.17 +45997,,,,,,,,0, +5988,83.0,8.0,8.0,9.0,8.0,10.0,9.0,10,0.8 +18693,93.0,10.0,9.0,10.0,10.0,10.0,9.0,4,0.34 +44607,78.0,9.0,7.0,9.0,9.0,9.0,9.0,86,6.94 +23579,,,,,,,,1,0.08 +37659,92.0,10.0,10.0,9.0,9.0,10.0,10.0,15,1.2 +65512,97.0,9.0,9.0,10.0,10.0,10.0,10.0,25,2.17 +74460,93.0,9.0,9.0,10.0,10.0,10.0,9.0,3,0.25 +6428,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.2 +57312,,,,,,,,0, +74532,91.0,10.0,9.0,9.0,9.0,9.0,9.0,13,1.15 +9331,100.0,10.0,8.0,10.0,10.0,9.0,9.0,3,0.87 +57884,,,,,,,,0, +70776,100.0,10.0,9.0,10.0,10.0,10.0,9.0,2,0.17 +49589,,,,,,,,0, +49153,90.0,9.0,9.0,8.0,9.0,10.0,9.0,16,1.32 +69290,,,,,,,,0, +33266,90.0,9.0,9.0,10.0,10.0,10.0,10.0,6,0.49 +74169,,,,,,,,1,0.1 +37742,,,,,,,,0, +31173,,,,,,,,0, +68354,84.0,9.0,10.0,10.0,9.0,10.0,9.0,6,0.54 +44667,,,,,,,,0, +13045,93.0,9.0,10.0,10.0,9.0,9.0,9.0,47,3.97 +74668,47.0,5.0,10.0,5.0,6.0,10.0,6.0,3,0.39 +56489,,,,,,,,0, +61108,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.16 +7429,80.0,10.0,10.0,10.0,8.0,8.0,8.0,1,0.09 +26495,87.0,9.0,8.0,9.0,10.0,9.0,9.0,3,0.83 +59420,,,,,,,,0, +14254,,,,,,,,0, +36200,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.26 +9748,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.38 +74092,,,,,,,,0, +48115,,,,,,,,0, +24421,,,,,,,,0, +14374,,,,,,,,0, +26178,97.0,10.0,9.0,10.0,9.0,10.0,10.0,14,1.57 +61667,90.0,10.0,9.0,10.0,10.0,9.0,9.0,12,1.03 +56560,,,,,,,,0, +32125,80.0,7.0,10.0,9.0,9.0,9.0,8.0,3,0.31 +61560,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.14 +62323,,,,,,,,0, +71103,,,,,,,,0, +56469,84.0,9.0,8.0,9.0,9.0,9.0,8.0,9,0.77 +16417,90.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.43 +64074,92.0,9.0,9.0,9.0,10.0,9.0,9.0,20,1.64 +72392,,,,,,,,0, +2881,96.0,10.0,10.0,10.0,10.0,10.0,9.0,21,1.82 +60882,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.08 +30181,,,,,,,,0, +47531,90.0,10.0,10.0,9.0,10.0,9.0,9.0,2,0.51 +1087,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.8 +61482,,,,,,,,0, +21469,80.0,9.0,9.0,9.0,9.0,9.0,9.0,7,0.56 +36279,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.92 +41772,100.0,10.0,10.0,8.0,8.0,10.0,10.0,1,0.09 +65604,86.0,9.0,9.0,9.0,10.0,9.0,9.0,14,1.33 +32442,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.08 +1885,80.0,10.0,10.0,10.0,8.0,8.0,8.0,1,0.09 +74782,84.0,9.0,9.0,9.0,9.0,9.0,9.0,15,1.99 +61636,98.0,10.0,10.0,10.0,10.0,10.0,9.0,79,6.48 +68555,98.0,10.0,10.0,9.0,10.0,10.0,10.0,11,0.88 +69029,99.0,10.0,9.0,10.0,10.0,10.0,9.0,14,1.18 +54444,99.0,10.0,10.0,10.0,10.0,10.0,10.0,16,1.33 +41730,96.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.63 +10010,88.0,10.0,10.0,9.0,10.0,10.0,9.0,8,0.69 +21846,99.0,10.0,10.0,10.0,10.0,10.0,10.0,28,2.27 +52035,91.0,9.0,9.0,9.0,9.0,9.0,9.0,28,2.42 +32062,,,,,,,,0, +36934,,,,,,,,0, +55050,89.0,9.0,10.0,9.0,9.0,9.0,9.0,19,1.54 +26492,98.0,9.0,10.0,9.0,9.0,9.0,10.0,9,0.96 +66267,20.0,4.0,8.0,8.0,4.0,8.0,2.0,1,0.09 +71128,92.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.82 +21028,,,,,,,,1,0.08 +5380,90.0,10.0,9.0,10.0,10.0,10.0,10.0,8,0.66 +23976,60.0,6.0,6.0,10.0,10.0,10.0,6.0,3,0.24 +13123,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +23006,,,,,,,,0, +33839,,,,,,,,0, +2724,94.0,10.0,9.0,10.0,10.0,10.0,9.0,10,0.81 +12827,,,,,,,,0, +10517,88.0,9.0,8.0,8.0,10.0,10.0,9.0,5,0.48 +20204,80.0,10.0,10.0,10.0,8.0,10.0,10.0,1,0.25 +53204,,,,,,,,1,0.08 +55953,100.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.7 +47600,95.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.36 +37965,100.0,10.0,10.0,10.0,10.0,8.0,10.0,2,0.17 +13952,,,,,,,,0, +27980,,,,,,,,0, +34670,85.0,9.0,10.0,9.0,9.0,9.0,9.0,4,0.33 +19205,96.0,10.0,10.0,10.0,10.0,10.0,9.0,34,2.76 +27779,,,,,,,,0, +32404,,,,,,,,0, +19228,96.0,10.0,10.0,10.0,10.0,10.0,10.0,15,1.29 +3108,80.0,10.0,9.0,10.0,10.0,9.0,9.0,2,0.22 +50550,100.0,10.0,9.0,10.0,10.0,10.0,9.0,3,0.35 +62109,99.0,10.0,10.0,10.0,10.0,10.0,10.0,14,1.13 +63300,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.08 +52504,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.24 +62174,90.0,9.0,9.0,10.0,10.0,10.0,9.0,18,1.52 +28458,,,,,,,,0, +12107,,,,,,,,0, +61588,90.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.34 +50101,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.41 +34328,,,,,,,,0, +20541,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.32 +32097,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.88 +2873,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +44718,99.0,10.0,10.0,10.0,10.0,10.0,10.0,15,1.37 +32017,93.0,10.0,9.0,10.0,10.0,10.0,10.0,6,0.79 +10733,,,,,,,,0, +73583,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.48 +8845,97.0,9.0,10.0,10.0,10.0,9.0,9.0,7,0.6 +24489,100.0,10.0,10.0,8.0,10.0,10.0,10.0,1,0.09 +48026,80.0,6.0,10.0,10.0,8.0,10.0,10.0,2,0.18 +48425,,,,,,,,0, +46601,98.0,10.0,10.0,10.0,10.0,9.0,10.0,36,2.98 +20332,97.0,10.0,10.0,10.0,10.0,9.0,8.0,6,3.27 +37887,,,,,,,,0, +68990,87.0,10.0,8.0,10.0,10.0,10.0,10.0,3,0.25 +63633,,,,,,,,0, +69127,,,,,,,,0, +75874,95.0,10.0,9.0,10.0,10.0,10.0,9.0,83,6.73 +61668,95.0,9.0,9.0,10.0,10.0,10.0,10.0,8,0.69 +50505,92.0,10.0,9.0,10.0,9.0,10.0,9.0,32,3.23 +9329,97.0,10.0,9.0,10.0,10.0,10.0,10.0,23,4.51 +31430,78.0,9.0,9.0,9.0,10.0,9.0,8.0,24,2.65 +75247,93.0,9.0,9.0,9.0,10.0,9.0,9.0,19,2.12 +57354,89.0,9.0,9.0,9.0,9.0,9.0,9.0,18,1.79 +24748,90.0,10.0,10.0,10.0,10.0,10.0,10.0,12,2.09 +33268,87.0,9.0,9.0,9.0,10.0,9.0,9.0,15,2.16 +21721,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.55 +64497,78.0,9.0,9.0,9.0,9.0,9.0,8.0,21,2.14 +27522,95.0,10.0,10.0,10.0,9.0,10.0,9.0,21,2.3 +49180,91.0,10.0,9.0,9.0,10.0,10.0,9.0,14,1.79 +67129,97.0,10.0,10.0,10.0,10.0,10.0,10.0,23,2.5 +20143,84.0,9.0,9.0,9.0,9.0,10.0,9.0,32,3.54 +51263,93.0,10.0,10.0,9.0,10.0,10.0,10.0,3,0.24 +4897,,,,,,,,0, +29930,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.8 +44281,,,,,,,,0, +13569,86.0,9.0,8.0,10.0,10.0,9.0,9.0,14,1.12 +74433,,,,,,,,1,0.08 +17515,97.0,10.0,10.0,10.0,10.0,10.0,9.0,13,1.76 +17118,100.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.35 +51676,97.0,9.0,10.0,10.0,10.0,10.0,10.0,12,1.05 +75242,94.0,10.0,9.0,10.0,10.0,10.0,10.0,34,2.77 +3811,72.0,9.0,8.0,9.0,9.0,8.0,8.0,5,0.64 +62251,96.0,10.0,9.0,10.0,10.0,10.0,9.0,9,0.77 +51551,,,,,,,,0, +23780,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.34 +31935,,,,,,,,1,0.09 +48102,95.0,10.0,10.0,10.0,10.0,10.0,9.0,11,0.95 +4865,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.09 +38745,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.99 +7243,,,,,,,,0, +54204,100.0,10.0,10.0,10.0,10.0,9.0,10.0,11,0.95 +16387,99.0,10.0,10.0,10.0,10.0,10.0,10.0,23,1.84 +20745,,,,,,,,0, +45845,,,,,,,,0, +41837,96.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.96 +68396,96.0,9.0,10.0,10.0,10.0,9.0,10.0,5,0.41 +40079,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.73 +63495,68.0,8.0,8.0,8.0,8.0,8.0,7.0,6,0.53 +17349,,,,,,,,0, +4448,,,,,,,,0, +69007,80.0,8.0,8.0,8.0,8.0,8.0,8.0,4,0.35 +2723,,,,,,,,0, +48213,100.0,10.0,9.0,9.0,9.0,10.0,10.0,3,0.26 +43086,,,,,,,,1,0.08 +40210,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.44 +8314,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +24317,,,,,,,,0, +63375,,,,,,,,0, +62774,90.0,10.0,9.0,10.0,10.0,10.0,9.0,2,0.17 +33243,,,,,,,,1,0.08 +8575,,,,,,,,0, +11898,,,,,,,,0, +14629,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.08 +43596,,,,,,,,1,0.08 +45600,98.0,10.0,10.0,10.0,10.0,10.0,9.0,12,1.46 +24507,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.47 +50036,100.0,10.0,10.0,10.0,10.0,9.0,10.0,11,0.97 +43590,,,,,,,,0, +70469,92.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.61 +64178,,,,,,,,0, +56726,100.0,10.0,10.0,10.0,10.0,10.0,10.0,17,1.69 +56595,,,,,,,,0, +42330,,,,,,,,0, +43992,96.0,9.0,10.0,9.0,10.0,9.0,10.0,6,0.51 +58960,,,,,,,,0, +49420,88.0,10.0,9.0,9.0,10.0,9.0,10.0,5,0.47 +51947,100.0,9.0,9.0,10.0,10.0,9.0,9.0,2,0.18 +54310,100.0,10.0,10.0,9.0,9.0,10.0,10.0,5,0.48 +66242,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.17 +70215,83.0,9.0,9.0,10.0,10.0,10.0,8.0,7,0.81 +43326,95.0,10.0,9.0,10.0,10.0,10.0,9.0,8,0.66 +72209,94.0,10.0,9.0,10.0,10.0,10.0,10.0,15,1.2 +44040,95.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.69 +76336,100.0,10.0,10.0,10.0,10.0,8.0,10.0,2,0.48 +24710,96.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.92 +28780,100.0,9.0,9.0,9.0,9.0,10.0,9.0,2,0.17 +29040,97.0,10.0,10.0,10.0,10.0,9.0,9.0,6,0.53 +20926,92.0,9.0,10.0,9.0,9.0,10.0,9.0,21,1.73 +69055,,,,,,,,0, +43724,98.0,10.0,9.0,10.0,10.0,10.0,10.0,8,1.29 +29318,92.0,10.0,9.0,9.0,9.0,9.0,9.0,26,2.27 +39891,,,,,,,,0, +35345,,,,,,,,0, +29471,97.0,9.0,9.0,10.0,9.0,10.0,10.0,14,1.58 +68749,,,,,,,,0, +14903,,,,,,,,0, +23413,100.0,10.0,10.0,10.0,10.0,10.0,10.0,15,1.32 +6967,,,,,,,,0, +53796,96.0,10.0,10.0,10.0,10.0,10.0,10.0,34,2.81 +28395,,,,,,,,0, +18512,93.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.37 +57930,60.0,7.0,5.0,6.0,9.0,9.0,6.0,2,0.2 +15538,,,,,,,,2,0.2 +62478,80.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.09 +43456,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.68 +17121,87.0,8.0,9.0,9.0,9.0,10.0,9.0,11,0.98 +36528,97.0,10.0,10.0,10.0,10.0,10.0,10.0,15,2.73 +46259,84.0,9.0,7.0,10.0,10.0,8.0,8.0,5,0.44 +5060,,,,,,,,0, +46524,96.0,10.0,9.0,10.0,10.0,9.0,10.0,11,0.9 +20235,97.0,10.0,10.0,10.0,10.0,10.0,9.0,14,1.39 +50981,,,,,,,,0, +49421,,,,,,,,0, +48300,65.0,8.0,7.0,9.0,9.0,7.0,7.0,4,0.35 +29804,85.0,10.0,10.0,10.0,9.0,10.0,9.0,4,0.33 +39056,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.08 +43390,,,,,,,,0, +30119,,,,,,,,0, +13408,100.0,9.0,9.0,10.0,10.0,9.0,9.0,2,0.39 +62290,93.0,10.0,8.0,10.0,10.0,9.0,9.0,21,1.68 +28134,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.38 +47729,88.0,9.0,9.0,10.0,10.0,10.0,9.0,8,0.69 +2292,80.0,9.0,5.0,9.0,9.0,9.0,10.0,3,0.36 +34528,98.0,10.0,10.0,10.0,10.0,9.0,9.0,13,1.05 +71165,97.0,10.0,10.0,9.0,10.0,10.0,9.0,15,1.24 +42476,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.81 +14425,72.0,8.0,7.0,9.0,8.0,9.0,8.0,61,4.93 +68397,93.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.25 +67567,83.0,9.0,8.0,9.0,9.0,9.0,9.0,56,4.52 +15969,100.0,9.0,10.0,10.0,10.0,10.0,10.0,3,0.25 +76571,100.0,10.0,10.0,8.0,10.0,10.0,9.0,3,0.37 +31830,,,,,,,,0, +74530,,,,,,,,0, +4075,92.0,10.0,10.0,10.0,10.0,10.0,10.0,13,1.08 +8469,,,,,,,,0, +41900,90.0,9.0,9.0,9.0,9.0,10.0,9.0,16,1.68 +65771,,,,,,,,1,0.08 +33238,,,,,,,,0, +75208,80.0,8.0,8.0,8.0,7.0,9.0,7.0,5,0.41 +71223,,,,,,,,0, +43980,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.25 +22830,,,,,,,,1,0.63 +49549,96.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.54 +32040,81.0,8.0,8.0,9.0,9.0,9.0,8.0,57,4.65 +66061,,,,,,,,0, +28386,100.0,10.0,10.0,10.0,10.0,10.0,8.0,2,0.13 +6748,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.4 +7727,,,,,,,,0, +61047,93.0,10.0,9.0,10.0,10.0,10.0,9.0,7,0.62 +55940,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.44 +31019,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.16 +45945,60.0,6.0,6.0,10.0,10.0,10.0,4.0,1,0.47 +14893,87.0,10.0,8.0,10.0,10.0,9.0,9.0,3,0.26 +1825,87.0,9.0,7.0,9.0,9.0,10.0,9.0,6,0.5 +13160,88.0,9.0,9.0,9.0,10.0,10.0,9.0,9,0.8 +20835,,,,,,,,0, +46335,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.08 +71357,100.0,10.0,10.0,10.0,10.0,9.0,9.0,5,0.38 +20741,,,,,,,,0, +16486,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.13 +55821,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.31 +71322,,,,,,,,0, +70652,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.17 +48038,,,,,,,,2,0.16 +45689,,,,,,,,0, +46337,,,,,,,,0, +67162,89.0,9.0,9.0,10.0,10.0,10.0,9.0,9,0.79 +7795,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.46 +54601,,,,,,,,0, +54343,,,,,,,,0, +21924,60.0,6.0,8.0,10.0,10.0,10.0,8.0,1,0.09 +27631,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.16 +48250,,,,,,,,0, +36001,90.0,9.0,8.0,6.0,9.0,10.0,10.0,2,0.17 +23674,,,,,,,,0, +57056,60.0,4.0,2.0,8.0,8.0,10.0,8.0,1,0.09 +59014,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +641,95.0,10.0,10.0,10.0,9.0,10.0,9.0,15,1.33 +4442,93.0,9.0,9.0,10.0,10.0,8.0,9.0,3,0.25 +13379,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.39 +39054,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +22147,80.0,9.0,8.0,9.0,9.0,9.0,9.0,58,4.68 +40183,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.42 +54170,97.0,10.0,9.0,10.0,10.0,9.0,9.0,7,1.5 +65196,,,,,,,,0, +19915,99.0,10.0,10.0,10.0,10.0,9.0,10.0,17,1.44 +65734,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.73 +63095,93.0,9.0,9.0,9.0,10.0,10.0,9.0,11,0.94 +70367,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.96 +70231,,,,,,,,0, +52471,,,,,,,,0, +42394,92.0,10.0,8.0,10.0,10.0,10.0,9.0,17,1.41 +45568,93.0,10.0,9.0,10.0,10.0,10.0,9.0,19,1.67 +22402,,,,,,,,0, +58777,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.44 +16573,,,,,,,,0, +1533,96.0,10.0,10.0,10.0,10.0,10.0,10.0,33,2.82 +15547,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.33 +70612,97.0,10.0,10.0,9.0,10.0,10.0,9.0,18,1.65 +55739,93.0,10.0,9.0,10.0,10.0,10.0,10.0,13,1.09 +27833,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.44 +37270,96.0,9.0,9.0,9.0,9.0,10.0,8.0,5,0.49 +71520,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.27 +22715,95.0,10.0,9.0,10.0,10.0,10.0,10.0,17,1.41 +75975,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.09 +6056,,,,,,,,0, +57776,92.0,10.0,10.0,10.0,10.0,10.0,9.0,10,0.86 +55223,,,,,,,,0, +7478,,,,,,,,0, +66773,90.0,9.0,9.0,10.0,9.0,8.0,10.0,2,0.17 +49166,,,,,,,,0, +33368,89.0,10.0,9.0,9.0,10.0,10.0,9.0,22,1.8 +44349,80.0,8.0,8.0,8.0,6.0,8.0,8.0,1,0.52 +72822,,,,,,,,0, +76103,100.0,10.0,9.0,9.0,10.0,9.0,10.0,4,0.34 +4359,80.0,8.0,8.0,8.0,8.0,10.0,9.0,2,0.43 +19750,94.0,10.0,10.0,10.0,10.0,10.0,9.0,38,3.13 +64254,95.0,10.0,9.0,10.0,10.0,10.0,9.0,11,1.11 +71871,90.0,9.0,9.0,10.0,10.0,9.0,9.0,4,0.33 +7381,97.0,10.0,10.0,9.0,9.0,9.0,9.0,7,0.61 +62796,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.18 +71149,,,,,,,,0, +33693,98.0,10.0,10.0,10.0,10.0,9.0,10.0,17,1.7 +58051,100.0,10.0,10.0,10.0,9.0,10.0,10.0,2,0.55 +67068,74.0,9.0,8.0,9.0,9.0,9.0,7.0,13,1.78 +26118,90.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.35 +49843,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +44745,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.2 +60943,70.0,9.0,4.0,9.0,9.0,8.0,8.0,4,0.34 +2194,88.0,9.0,9.0,9.0,10.0,9.0,9.0,5,0.43 +24234,80.0,7.0,8.0,9.0,8.0,10.0,7.0,2,0.2 +29551,,,,,,,,0, +7758,,,,,,,,0, +15668,83.0,9.0,8.0,10.0,10.0,8.0,8.0,9,0.77 +42977,93.0,9.0,9.0,9.0,9.0,10.0,10.0,27,2.19 +26034,91.0,10.0,8.0,7.0,9.0,10.0,9.0,9,0.82 +69872,99.0,10.0,10.0,10.0,10.0,10.0,9.0,17,1.5 +35393,100.0,10.0,9.0,10.0,10.0,10.0,9.0,5,0.46 +31333,60.0,8.0,6.0,10.0,10.0,10.0,6.0,1,0.61 +36590,91.0,10.0,10.0,10.0,9.0,9.0,10.0,15,1.21 +51045,,,,,,,,0, +46887,91.0,9.0,9.0,10.0,10.0,9.0,9.0,119,9.57 +55944,100.0,10.0,10.0,9.0,10.0,9.0,10.0,2,0.17 +74248,92.0,9.0,9.0,10.0,10.0,9.0,9.0,96,7.98 +7755,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.61 +67248,93.0,10.0,10.0,9.0,9.0,10.0,9.0,3,0.27 +64050,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.48 +68419,,,,,,,,1,0.08 +68917,90.0,8.0,10.0,10.0,9.0,9.0,8.0,2,0.17 +42792,97.0,10.0,9.0,10.0,10.0,10.0,10.0,27,2.21 +18445,,,,,,,,0, +48634,,,,,,,,0, +11852,85.0,8.0,8.0,9.0,9.0,10.0,9.0,17,1.43 +5692,,,,,,,,0, +13161,93.0,10.0,10.0,10.0,10.0,8.0,9.0,21,1.83 +27351,84.0,8.0,8.0,9.0,9.0,8.0,9.0,10,0.83 +54397,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.16 +57557,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.43 +16193,100.0,10.0,6.0,10.0,10.0,10.0,10.0,1,0.25 +25479,90.0,9.0,8.0,9.0,10.0,10.0,9.0,6,0.52 +48302,,,,,,,,0, +64359,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,1.03 +71578,93.0,10.0,10.0,10.0,10.0,10.0,10.0,12,0.98 +56425,,,,,,,,0, +49675,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.81 +69977,100.0,10.0,10.0,10.0,10.0,10.0,10.0,94,8.08 +23726,94.0,10.0,10.0,10.0,10.0,10.0,9.0,11,1.03 +21951,91.0,10.0,10.0,10.0,10.0,10.0,9.0,10,0.82 +37740,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.75 +50077,90.0,10.0,9.0,10.0,10.0,10.0,9.0,2,0.67 +8530,96.0,10.0,9.0,10.0,10.0,10.0,9.0,5,0.41 +64621,95.0,9.0,10.0,10.0,10.0,9.0,9.0,4,0.35 +24483,93.0,10.0,10.0,10.0,9.0,10.0,10.0,3,0.32 +67948,,,,,,,,0, +57498,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.82 +60853,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +6621,89.0,9.0,9.0,9.0,9.0,10.0,9.0,7,0.62 +3833,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.1 +18112,,,,,,,,0, +18667,91.0,9.0,10.0,9.0,9.0,9.0,9.0,13,1.1 +63451,99.0,10.0,10.0,10.0,10.0,10.0,10.0,19,1.91 +53773,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.09 +70193,89.0,9.0,10.0,8.0,9.0,9.0,9.0,12,1.04 +24813,98.0,10.0,10.0,10.0,10.0,9.0,9.0,10,0.95 +21584,,,,,,,,0, +57633,,,,,,,,0, +28625,,,,,,,,0, +76511,89.0,10.0,9.0,10.0,9.0,10.0,9.0,7,0.95 +31552,94.0,9.0,9.0,9.0,10.0,10.0,10.0,7,1.59 +71602,99.0,10.0,10.0,10.0,10.0,9.0,10.0,18,1.54 +6176,,,,,,,,0, +42554,100.0,9.0,9.0,9.0,9.0,10.0,9.0,2,0.2 +1287,,,,,,,,0, +50063,100.0,10.0,10.0,10.0,10.0,8.0,8.0,2,0.2 +4447,,,,,,,,0, +2786,100.0,10.0,10.0,9.0,9.0,10.0,10.0,7,0.76 +46828,97.0,10.0,9.0,10.0,10.0,10.0,10.0,6,0.51 +76638,,,,,,,,0, +45364,90.0,10.0,10.0,10.0,10.0,7.0,9.0,2,0.23 +45005,98.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.9 +60259,40.0,4.0,2.0,4.0,6.0,2.0,2.0,2,0.21 +5558,,,,,,,,0, +74236,100.0,10.0,8.0,10.0,10.0,6.0,10.0,1,0.09 +38813,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +49431,85.0,9.0,10.0,10.0,10.0,10.0,9.0,12,1.63 +62870,90.0,10.0,10.0,10.0,10.0,9.0,9.0,20,2.31 +56052,,,,,,,,0, +14095,87.0,9.0,10.0,9.0,9.0,9.0,8.0,19,2.01 +74349,,,,,,,,0, +4328,90.0,10.0,10.0,10.0,9.0,9.0,9.0,6,0.51 +44618,91.0,10.0,9.0,10.0,10.0,10.0,9.0,8,0.66 +12757,,,,,,,,0, +75813,,,,,,,,0, +12204,88.0,9.0,9.0,9.0,9.0,10.0,9.0,9,0.77 +41407,,,,,,,,0, +5995,95.0,10.0,9.0,10.0,10.0,10.0,9.0,11,0.89 +60117,,,,,,,,0, +55856,,,,,,,,1,0.48 +48399,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.17 +46174,98.0,10.0,10.0,10.0,10.0,9.0,10.0,34,2.81 +31011,,,,,,,,0, +26552,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.62 +57988,93.0,10.0,9.0,10.0,10.0,10.0,9.0,3,0.31 +52812,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.1 +76656,99.0,10.0,10.0,10.0,10.0,10.0,10.0,32,2.87 +66747,100.0,10.0,10.0,9.0,10.0,10.0,9.0,4,0.34 +16830,93.0,9.0,10.0,10.0,9.0,10.0,9.0,3,0.26 +9291,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.08 +24499,60.0,8.0,6.0,10.0,2.0,10.0,8.0,1,0.25 +12078,98.0,9.0,9.0,10.0,10.0,10.0,9.0,9,0.8 +25927,,,,,,,,0, +70346,80.0,10.0,10.0,6.0,10.0,6.0,8.0,1,0.09 +8774,,,,,,,,0, +66674,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.34 +34090,80.0,8.0,8.0,8.0,10.0,8.0,6.0,1,0.08 +72748,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.47 +42766,90.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.16 +6173,87.0,9.0,10.0,7.0,6.0,9.0,9.0,3,0.27 +23362,84.0,8.0,9.0,9.0,10.0,10.0,8.0,20,2.08 +73924,,,,,,,,0, +38052,92.0,10.0,10.0,10.0,9.0,10.0,9.0,10,1.78 +18985,93.0,10.0,10.0,10.0,10.0,10.0,10.0,13,1.25 +20402,,,,,,,,0, +59297,90.0,10.0,9.0,10.0,10.0,10.0,9.0,21,3.28 +54503,88.0,9.0,9.0,10.0,10.0,9.0,9.0,18,2.77 +76532,91.0,10.0,9.0,10.0,10.0,10.0,9.0,22,2.52 +74720,,,,,,,,0, +58822,93.0,10.0,8.0,9.0,9.0,10.0,8.0,9,0.84 +7134,87.0,10.0,10.0,10.0,10.0,9.0,9.0,22,2.68 +42777,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.53 +43850,93.0,9.0,10.0,10.0,10.0,10.0,9.0,27,3.31 +59722,,,,,,,,0, +55558,73.0,8.0,7.0,9.0,9.0,8.0,8.0,42,3.44 +56314,86.0,9.0,9.0,9.0,9.0,9.0,9.0,23,2.8 +47761,96.0,10.0,10.0,10.0,10.0,10.0,9.0,11,0.91 +66099,93.0,10.0,10.0,10.0,10.0,10.0,9.0,26,3.9 +73880,92.0,10.0,10.0,10.0,10.0,10.0,9.0,29,3.66 +49332,98.0,10.0,10.0,10.0,10.0,10.0,10.0,17,1.47 +8901,20.0,2.0,2.0,2.0,2.0,2.0,2.0,1,1.0 +45042,91.0,9.0,9.0,9.0,10.0,10.0,9.0,11,0.95 +42917,93.0,10.0,10.0,10.0,10.0,9.0,9.0,22,1.82 +35132,93.0,9.0,9.0,10.0,10.0,10.0,10.0,9,0.75 +14970,90.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.17 +43418,80.0,10.0,10.0,10.0,8.0,10.0,9.0,6,0.89 +33941,,,,,,,,0, +54976,87.0,9.0,7.0,9.0,8.0,9.0,8.0,3,0.3 +18742,91.0,10.0,10.0,10.0,10.0,10.0,9.0,17,2.68 +40903,91.0,10.0,9.0,9.0,9.0,10.0,9.0,7,0.58 +151,97.0,10.0,9.0,10.0,10.0,10.0,10.0,6,0.49 +20263,78.0,9.0,7.0,10.0,10.0,10.0,8.0,9,0.79 +17424,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.33 +66641,,,,,,,,0, +61924,,,,,,,,0, +5106,80.0,10.0,6.0,10.0,10.0,10.0,8.0,1,0.09 +13308,95.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.37 +16824,98.0,10.0,10.0,10.0,10.0,10.0,10.0,21,1.73 +14203,95.0,10.0,9.0,10.0,10.0,10.0,9.0,4,0.35 +69494,92.0,9.0,9.0,9.0,9.0,9.0,10.0,27,2.39 +65708,,,,,,,,0, +51005,97.0,10.0,9.0,10.0,10.0,10.0,9.0,12,1.14 +21309,80.0,8.0,8.0,9.0,8.0,8.0,9.0,7,0.58 +35684,100.0,10.0,10.0,9.0,10.0,10.0,10.0,14,1.16 +42265,84.0,8.0,10.0,7.0,7.0,7.0,8.0,6,0.52 +42115,60.0,6.0,6.0,9.0,8.0,10.0,6.0,2,0.41 +61813,90.0,9.0,9.0,9.0,10.0,10.0,9.0,4,0.35 +23506,100.0,10.0,10.0,10.0,10.0,10.0,10.0,42,3.48 +49831,96.0,10.0,10.0,10.0,9.0,10.0,9.0,5,0.44 +48814,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,1.0 +48147,88.0,9.0,9.0,9.0,9.0,9.0,9.0,33,2.67 +5499,,,,,,,,0, +53295,93.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.42 +17395,95.0,10.0,10.0,10.0,10.0,10.0,9.0,16,1.3 +32485,,,,,,,,0, +24247,70.0,7.0,5.0,10.0,10.0,9.0,8.0,3,0.26 +14173,94.0,10.0,9.0,10.0,10.0,10.0,9.0,16,1.5 +21442,,,,,,,,0, +15928,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.37 +37101,,,,,,,,0, +9206,,,,,,,,0, +14371,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.88 +76616,88.0,9.0,9.0,10.0,10.0,10.0,9.0,5,0.44 +70601,97.0,10.0,10.0,9.0,10.0,9.0,10.0,14,1.15 +14430,,,,,,,,0, +36629,,,,,,,,0, +38046,93.0,10.0,9.0,10.0,10.0,10.0,10.0,24,2.01 +6177,,,,,,,,0, +18665,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +74189,,,,,,,,0, +26908,96.0,10.0,10.0,10.0,10.0,9.0,10.0,16,1.34 +61778,100.0,9.0,9.0,9.0,10.0,8.0,9.0,5,0.44 +12185,94.0,10.0,9.0,10.0,10.0,10.0,10.0,13,1.07 +57578,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,1.08 +57802,90.0,9.0,9.0,9.0,9.0,9.0,9.0,9,0.75 +13349,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.3 +48704,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.08 +38041,90.0,9.0,10.0,10.0,9.0,10.0,9.0,2,0.25 +72873,97.0,10.0,10.0,9.0,10.0,10.0,10.0,7,0.84 +66222,93.0,9.0,10.0,10.0,10.0,10.0,9.0,3,0.26 +32816,100.0,10.0,10.0,10.0,10.0,10.0,8.0,2,0.17 +24629,71.0,8.0,8.0,8.0,7.0,9.0,8.0,8,0.82 +48296,92.0,10.0,9.0,10.0,10.0,9.0,9.0,12,1.01 +46154,,,,,,,,0, +45372,83.0,9.0,8.0,9.0,9.0,10.0,9.0,12,0.99 +2684,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,1.01 +48333,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.43 +652,89.0,9.0,9.0,10.0,10.0,10.0,10.0,20,1.71 +15111,80.0,9.0,9.0,10.0,9.0,9.0,8.0,5,0.43 +50412,84.0,9.0,8.0,9.0,10.0,9.0,8.0,9,0.8 +36421,,,,,,,,0, +45127,94.0,10.0,9.0,10.0,10.0,9.0,10.0,13,1.15 +42078,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.71 +565,,,,,,,,0, +63343,87.0,9.0,9.0,10.0,10.0,10.0,9.0,3,0.58 +31734,,,,,,,,0, +47837,98.0,10.0,9.0,10.0,10.0,9.0,10.0,8,0.77 +27830,96.0,10.0,9.0,10.0,10.0,10.0,9.0,11,0.93 +66004,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.08 +61648,,,,,,,,0, +66816,100.0,10.0,10.0,10.0,10.0,10.0,10.0,16,1.42 +8511,,,,,,,,1,0.08 +73521,,,,,,,,0, +5835,,,,,,,,0, +4014,,,,,,,,0, +7835,97.0,10.0,10.0,10.0,10.0,10.0,10.0,23,5.61 +26600,94.0,10.0,9.0,10.0,9.0,10.0,10.0,20,1.74 +69755,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.18 +38140,,,,,,,,0, +71214,90.0,10.0,8.0,10.0,9.0,8.0,9.0,2,0.17 +18902,90.0,10.0,10.0,10.0,10.0,9.0,9.0,21,1.86 +63854,,,,,,,,0, +14875,97.0,10.0,9.0,10.0,10.0,10.0,9.0,8,0.77 +60777,,,,,,,,0, +72315,,,,,,,,0, +64363,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,1.17 +29190,100.0,10.0,10.0,10.0,10.0,9.0,9.0,2,0.16 +62103,,,,,,,,0, +33102,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +24826,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.33 +31576,100.0,9.0,10.0,10.0,10.0,9.0,10.0,2,0.17 +9333,95.0,10.0,10.0,10.0,10.0,9.0,10.0,26,2.12 +22538,90.0,10.0,9.0,10.0,10.0,9.0,10.0,5,0.44 +66456,,,,,,,,0, +16837,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.44 +41104,94.0,10.0,9.0,10.0,10.0,10.0,10.0,9,0.79 +11466,,,,,,,,0, +73883,80.0,9.0,8.0,9.0,10.0,10.0,8.0,5,0.42 +42798,,,,,,,,0, +12899,97.0,10.0,10.0,10.0,10.0,10.0,9.0,7,0.62 +7317,97.0,10.0,9.0,10.0,10.0,10.0,9.0,13,1.15 +54156,96.0,10.0,10.0,10.0,10.0,10.0,10.0,47,4.13 +71256,97.0,10.0,10.0,10.0,10.0,9.0,10.0,51,5.26 +56012,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.1 +64220,100.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.49 +19440,97.0,10.0,9.0,10.0,10.0,10.0,10.0,13,1.96 +30177,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.3 +17111,,,,,,,,0, +24531,80.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.7 +68094,99.0,10.0,10.0,10.0,10.0,9.0,10.0,16,1.43 +5114,99.0,10.0,10.0,10.0,10.0,10.0,10.0,31,3.2 +62377,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.82 +45003,93.0,10.0,9.0,10.0,10.0,10.0,9.0,3,0.35 +75439,96.0,10.0,10.0,10.0,10.0,10.0,9.0,83,7.3 +25574,,,,,,,,0, +13821,72.0,8.0,7.0,8.0,8.0,9.0,7.0,5,0.93 +14441,90.0,9.0,10.0,10.0,10.0,8.0,8.0,10,0.85 +42308,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.42 +51242,,,,,,,,0, +37869,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.12 +72797,100.0,10.0,10.0,10.0,10.0,10.0,10.0,18,1.58 +43467,,,,,,,,1,1.0 +12301,80.0,8.0,10.0,6.0,8.0,8.0,10.0,1,0.14 +51264,94.0,10.0,9.0,10.0,10.0,9.0,9.0,10,1.74 +6842,20.0,2.0,2.0,2.0,2.0,2.0,2.0,1,0.09 +72802,98.0,10.0,10.0,10.0,10.0,9.0,10.0,26,2.44 +32426,,,,,,,,0, +14609,93.0,9.0,9.0,9.0,9.0,9.0,9.0,3,0.59 +23611,94.0,10.0,9.0,9.0,9.0,10.0,9.0,7,0.71 +48768,95.0,10.0,10.0,10.0,10.0,9.0,10.0,15,1.27 +13834,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +71321,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +10594,100.0,10.0,10.0,9.0,10.0,10.0,10.0,6,0.52 +63137,93.0,10.0,7.0,10.0,10.0,9.0,9.0,3,0.54 +9264,76.0,8.0,8.0,9.0,9.0,9.0,8.0,22,1.79 +38952,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.08 +68969,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.25 +22052,,,,,,,,0, +2822,94.0,10.0,10.0,10.0,10.0,10.0,10.0,29,3.03 +13373,93.0,10.0,10.0,9.0,9.0,9.0,9.0,10,1.2 +14528,92.0,10.0,9.0,10.0,9.0,9.0,9.0,13,1.13 +72877,,,,,,,,0, +30948,,,,,,,,0, +34499,,,,,,,,0, +51767,93.0,9.0,9.0,9.0,10.0,9.0,9.0,7,0.67 +7096,97.0,10.0,9.0,10.0,10.0,10.0,10.0,12,1.02 +61406,,,,,,,,1,0.08 +33421,97.0,10.0,9.0,10.0,10.0,10.0,9.0,23,1.87 +70267,90.0,10.0,9.0,10.0,10.0,9.0,9.0,12,1.05 +8522,,,,,,,,0, +30055,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.08 +27219,91.0,8.0,8.0,9.0,9.0,9.0,8.0,12,1.02 +65120,96.0,10.0,9.0,10.0,10.0,10.0,10.0,18,1.64 +28555,96.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.42 +73582,93.0,10.0,10.0,9.0,9.0,10.0,9.0,3,0.26 +35476,,,,,,,,0, +72483,94.0,10.0,9.0,10.0,10.0,10.0,9.0,14,1.15 +5675,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.09 +75435,100.0,10.0,6.0,10.0,10.0,10.0,10.0,1,0.2 +47917,,,,,,,,0, +15777,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +72975,,,,,,,,0, +1551,100.0,10.0,8.0,10.0,10.0,8.0,10.0,1,0.29 +16032,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +37556,92.0,9.0,9.0,10.0,10.0,9.0,10.0,81,6.88 +20886,100.0,10.0,10.0,10.0,10.0,10.0,10.0,21,1.75 +58579,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.12 +72548,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +40081,90.0,10.0,9.0,10.0,10.0,10.0,9.0,4,0.33 +47453,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,1.72 +57229,98.0,10.0,10.0,10.0,10.0,10.0,10.0,27,2.37 +3279,,,,,,,,0, +32756,60.0,6.0,10.0,10.0,6.0,10.0,8.0,1,0.09 +51275,,,,,,,,0, +57091,,,,,,,,0, +32829,,,,,,,,0, +59574,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.09 +26787,100.0,8.0,8.0,8.0,10.0,8.0,10.0,1,0.24 +28409,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.49 +1373,99.0,10.0,10.0,10.0,10.0,10.0,10.0,25,3.26 +70084,94.0,10.0,10.0,9.0,10.0,9.0,9.0,7,0.81 +6425,,,,,,,,0, +61624,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.44 +27898,70.0,8.0,8.0,10.0,10.0,8.0,6.0,2,0.17 +31407,78.0,8.0,9.0,9.0,9.0,10.0,8.0,10,0.85 +75529,,,,,,,,0, +48653,,,,,,,,1,0.08 +20211,92.0,10.0,9.0,10.0,10.0,9.0,9.0,5,0.5 +27378,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.41 +40701,92.0,9.0,9.0,9.0,10.0,9.0,10.0,5,0.46 +59319,80.0,8.0,8.0,8.0,10.0,10.0,10.0,1,0.08 +72743,,,,,,,,1,0.08 +66283,100.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.49 +15492,,,,,,,,1,0.44 +15842,,,,,,,,0, +58246,80.0,8.0,4.0,6.0,10.0,10.0,10.0,2,0.17 +52458,90.0,9.0,9.0,10.0,10.0,9.0,9.0,22,2.65 +52727,100.0,10.0,10.0,10.0,10.0,10.0,9.0,11,0.97 +6639,40.0,8.0,6.0,10.0,8.0,2.0,10.0,2,0.18 +11635,,,,,,,,0, +63283,97.0,10.0,10.0,9.0,10.0,9.0,10.0,17,1.5 +62366,80.0,8.0,8.0,10.0,10.0,9.0,7.0,4,0.46 +41929,100.0,6.0,6.0,10.0,10.0,10.0,8.0,1,0.09 +5727,96.0,10.0,9.0,10.0,10.0,10.0,9.0,5,1.07 +42941,94.0,9.0,9.0,10.0,10.0,9.0,9.0,14,1.24 +58449,,,,,,,,0, +47488,93.0,9.0,9.0,9.0,9.0,9.0,9.0,3,0.76 +55586,99.0,10.0,10.0,10.0,10.0,10.0,9.0,15,1.34 +69422,76.0,9.0,8.0,9.0,9.0,10.0,9.0,5,0.44 +24368,80.0,7.0,10.0,9.0,10.0,7.0,9.0,3,0.27 +25050,87.0,9.0,8.0,10.0,10.0,9.0,9.0,48,4.11 +2481,94.0,10.0,9.0,9.0,10.0,10.0,10.0,20,1.78 +12191,97.0,10.0,9.0,10.0,10.0,10.0,9.0,17,1.5 +26736,87.0,9.0,9.0,9.0,9.0,9.0,9.0,23,1.91 +60343,,,,,,,,0, +71008,98.0,10.0,10.0,10.0,10.0,10.0,10.0,21,1.92 +7100,93.0,9.0,10.0,10.0,9.0,10.0,9.0,11,0.93 +286,93.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.64 +63106,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.18 +32344,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.18 +55391,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.33 +31443,85.0,9.0,8.0,10.0,9.0,10.0,9.0,34,3.13 +32005,,,,,,,,0, +51291,91.0,9.0,9.0,9.0,9.0,9.0,9.0,32,2.9 +26792,85.0,8.0,9.0,9.0,9.0,9.0,8.0,4,0.41 +56320,,,,,,,,0, +6471,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,3.04 +7189,,,,,,,,0, +41628,,,,,,,,0, +53512,96.0,10.0,9.0,10.0,10.0,10.0,9.0,14,1.24 +25007,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.19 +70860,98.0,10.0,10.0,10.0,10.0,9.0,10.0,11,1.07 +17675,,,,,,,,0, +44715,,,,,,,,0, +12952,,,,,,,,0, +8615,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,1.39 +22770,,,,,,,,0, +9899,83.0,9.0,7.0,10.0,10.0,10.0,9.0,7,0.63 +30980,100.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.53 +3382,93.0,10.0,9.0,10.0,10.0,9.0,10.0,6,0.53 +69031,96.0,10.0,10.0,10.0,10.0,10.0,10.0,16,1.36 +7969,,,,,,,,1,0.32 +46175,94.0,9.0,10.0,10.0,10.0,9.0,9.0,25,2.44 +33707,94.0,10.0,10.0,10.0,10.0,10.0,9.0,8,0.79 +242,,,,,,,,0, +33964,93.0,10.0,9.0,9.0,10.0,10.0,9.0,24,1.99 +67321,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.1 +16842,89.0,9.0,8.0,10.0,9.0,9.0,9.0,11,0.97 +4292,,,,,,,,0, +42355,93.0,10.0,10.0,10.0,8.0,10.0,10.0,3,0.33 +21200,89.0,10.0,8.0,10.0,9.0,10.0,9.0,13,1.14 +18524,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.37 +46588,,,,,,,,0, +44844,95.0,10.0,9.0,10.0,10.0,9.0,10.0,35,3.21 +29225,91.0,10.0,9.0,10.0,10.0,9.0,9.0,72,6.3 +51061,96.0,10.0,10.0,10.0,10.0,9.0,9.0,15,1.3 +67591,20.0,2.0,2.0,2.0,2.0,2.0,2.0,1,0.09 +31766,77.0,9.0,7.0,9.0,8.0,9.0,8.0,12,0.99 +50186,93.0,10.0,9.0,9.0,10.0,8.0,10.0,9,0.8 +47656,97.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.62 +16190,96.0,9.0,10.0,9.0,10.0,9.0,10.0,14,1.15 +1422,,,,,,,,0, +45861,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +72629,82.0,9.0,8.0,9.0,9.0,9.0,9.0,22,1.95 +64033,86.0,9.0,8.0,9.0,10.0,7.0,9.0,7,0.68 +51509,93.0,10.0,9.0,10.0,10.0,9.0,10.0,24,2.23 +9008,90.0,9.0,9.0,10.0,10.0,10.0,9.0,10,0.88 +14192,,,,,,,,0, +1208,73.0,8.0,8.0,8.0,8.0,8.0,8.0,17,1.41 +40283,100.0,10.0,9.0,10.0,10.0,9.0,10.0,2,0.22 +33090,75.0,7.0,7.0,9.0,8.0,9.0,8.0,16,1.43 +11046,92.0,10.0,9.0,9.0,10.0,9.0,9.0,17,1.4 +50714,80.0,10.0,6.0,10.0,10.0,10.0,8.0,1,0.23 +71884,,,,,,,,0, +44207,82.0,9.0,8.0,9.0,9.0,8.0,8.0,9,0.79 +9659,88.0,9.0,9.0,9.0,10.0,9.0,9.0,36,3.03 +48940,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.62 +2425,60.0,10.0,8.0,10.0,10.0,10.0,6.0,1,0.56 +9024,97.0,10.0,10.0,10.0,10.0,10.0,9.0,15,1.23 +30740,20.0,2.0,2.0,2.0,2.0,4.0,4.0,1,0.09 +56671,99.0,10.0,10.0,10.0,10.0,10.0,10.0,38,3.67 +70615,,,,,,,,0, +71697,99.0,10.0,10.0,10.0,10.0,9.0,10.0,57,5.72 +73787,,,,,,,,0, +70532,,,,,,,,0, +10706,,,,,,,,0, +35485,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.11 +14232,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.36 +70935,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.08 +21943,,,,,,,,0, +29227,94.0,10.0,10.0,9.0,10.0,10.0,10.0,54,4.75 +50357,99.0,10.0,10.0,10.0,10.0,10.0,9.0,30,2.51 +54887,90.0,10.0,10.0,8.0,8.0,10.0,9.0,2,0.17 +42392,,,,,,,,0, +36131,,,,,,,,0, +72002,83.0,9.0,8.0,9.0,10.0,8.0,8.0,23,1.97 +6555,,,,,,,,0, +75303,73.0,9.0,7.0,8.0,9.0,9.0,7.0,3,0.25 +19999,96.0,10.0,10.0,10.0,10.0,10.0,10.0,17,1.43 +51220,100.0,10.0,9.0,9.0,8.0,10.0,9.0,3,0.4 +29982,93.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.25 +41066,90.0,9.0,9.0,9.0,10.0,10.0,9.0,7,0.58 +57951,92.0,9.0,9.0,10.0,10.0,10.0,9.0,29,3.05 +51582,,,,,,,,0, +43740,,,,,,,,0, +71367,96.0,10.0,10.0,10.0,10.0,10.0,10.0,35,2.95 +64552,93.0,9.0,10.0,9.0,10.0,9.0,9.0,14,1.28 +57839,98.0,10.0,10.0,10.0,10.0,10.0,10.0,25,2.12 +40116,100.0,9.0,10.0,10.0,10.0,9.0,10.0,2,0.22 +55368,,,,,,,,0, +5150,90.0,10.0,8.0,10.0,10.0,9.0,10.0,2,0.43 +7351,80.0,8.0,7.0,7.0,10.0,10.0,7.0,5,0.43 +70456,80.0,9.0,8.0,10.0,10.0,8.0,9.0,4,0.43 +45899,87.0,10.0,9.0,10.0,9.0,10.0,10.0,3,0.34 +43784,100.0,8.0,10.0,8.0,6.0,10.0,10.0,1,0.19 +20995,,,,,,,,0, +42280,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.19 +43309,76.0,9.0,10.0,8.0,7.0,10.0,8.0,8,0.65 +21588,97.0,9.0,10.0,10.0,10.0,10.0,9.0,14,1.32 +57215,,,,,,,,0, +60420,,,,,,,,0, +55364,89.0,9.0,9.0,10.0,10.0,10.0,9.0,24,2.01 +60829,30.0,2.0,2.0,7.0,10.0,6.0,3.0,4,0.7 +76337,,,,,,,,0, +59008,94.0,9.0,9.0,10.0,10.0,10.0,9.0,7,0.59 +45407,,,,,,,,0, +58202,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +13057,80.0,6.0,10.0,6.0,8.0,10.0,10.0,1,0.08 +53692,,,,,,,,0, +57444,87.0,9.0,10.0,9.0,9.0,8.0,8.0,9,1.27 +14439,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +6075,95.0,10.0,10.0,10.0,10.0,9.0,10.0,15,1.53 +17698,,,,,,,,0, +45866,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.13 +54822,94.0,9.0,9.0,9.0,10.0,10.0,10.0,14,1.47 +35215,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.44 +58042,,,,,,,,0, +44697,93.0,10.0,9.0,9.0,10.0,10.0,9.0,11,1.1 +17439,,,,,,,,0, +46122,95.0,8.0,10.0,10.0,10.0,10.0,8.0,4,0.4 +60708,80.0,10.0,10.0,6.0,5.0,10.0,8.0,2,0.23 +31233,83.0,10.0,10.0,10.0,8.0,10.0,9.0,8,0.76 +14379,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.79 +10305,,,,,,,,0, +29910,,,,,,,,0, +67469,94.0,10.0,10.0,10.0,10.0,10.0,9.0,56,5.12 +13777,89.0,9.0,10.0,9.0,10.0,9.0,9.0,36,3.17 +52215,,,,,,,,0, +52650,95.0,10.0,9.0,10.0,10.0,10.0,9.0,4,0.35 +21831,40.0,5.0,4.0,8.0,8.0,10.0,8.0,3,0.25 +1949,100.0,10.0,10.0,10.0,10.0,9.0,9.0,12,2.12 +23380,80.0,7.0,9.0,7.0,7.0,9.0,8.0,3,0.6 +49725,80.0,8.0,8.0,10.0,10.0,6.0,8.0,1,0.09 +1114,,,,,,,,0, +58571,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.36 +54247,,,,,,,,0, +17018,,,,,,,,0, +60820,84.0,9.0,8.0,10.0,9.0,9.0,9.0,9,1.18 +75612,95.0,9.0,9.0,10.0,10.0,10.0,9.0,13,1.1 +48042,96.0,9.0,9.0,10.0,10.0,10.0,9.0,6,0.5 +24348,95.0,10.0,10.0,10.0,10.0,9.0,9.0,8,0.71 +27684,,,,,,,,0, +40525,82.0,9.0,9.0,10.0,9.0,9.0,9.0,34,2.84 +68958,95.0,10.0,9.0,10.0,10.0,10.0,9.0,44,3.63 +23340,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.27 +76702,,,,,,,,1,0.1 +32261,87.0,9.0,8.0,9.0,10.0,9.0,9.0,6,0.73 +57457,92.0,10.0,9.0,9.0,10.0,9.0,9.0,23,2.09 +8966,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.13 +333,,,,,,,,1,0.14 +7872,92.0,10.0,10.0,10.0,10.0,10.0,10.0,12,1.06 +50408,100.0,9.0,9.0,9.0,10.0,9.0,9.0,3,0.51 +23821,,,,,,,,0, +2426,,,,,,,,0, +36129,98.0,10.0,10.0,10.0,10.0,9.0,10.0,9,0.74 +55562,68.0,8.0,7.0,8.0,8.0,9.0,7.0,10,1.49 +48292,,,,,,,,0, +53975,90.0,10.0,8.0,9.0,9.0,10.0,10.0,4,0.33 +44289,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +32259,60.0,4.0,6.0,10.0,10.0,6.0,6.0,1,0.09 +47133,80.0,10.0,7.0,10.0,10.0,10.0,7.0,2,0.44 +51600,97.0,10.0,9.0,10.0,10.0,10.0,10.0,19,1.71 +20755,,,,,,,,1,0.08 +33478,82.0,9.0,8.0,10.0,9.0,9.0,8.0,61,5.23 +58063,98.0,10.0,10.0,10.0,10.0,10.0,10.0,51,5.39 +52393,,,,,,,,1,0.15 +71143,85.0,9.0,9.0,8.0,8.0,9.0,8.0,12,1.66 +67728,100.0,10.0,10.0,10.0,10.0,10.0,10.0,20,2.0 +31531,96.0,10.0,10.0,10.0,10.0,9.0,9.0,24,2.11 +36361,100.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.45 +32632,92.0,10.0,9.0,10.0,10.0,10.0,9.0,15,2.5 +30411,,,,,,,,1,0.08 +25563,87.0,7.0,8.0,9.0,9.0,9.0,8.0,3,0.26 +67411,100.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.17 +46283,80.0,10.0,7.0,10.0,10.0,10.0,9.0,2,0.18 +68384,,,,,,,,0, +60164,,,,,,,,0, +40189,,,,,,,,0, +73418,76.0,8.0,6.0,8.0,9.0,10.0,9.0,6,0.67 +63498,96.0,10.0,10.0,10.0,10.0,9.0,9.0,9,1.31 +1964,87.0,9.0,9.0,9.0,9.0,10.0,8.0,4,0.35 +48508,90.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.32 +34674,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,3.04 +44008,,,,,,,,0, +55971,82.0,9.0,8.0,10.0,9.0,9.0,9.0,44,3.62 +60428,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +50891,,,,,,,,0, +28992,,,,,,,,1,0.08 +2500,84.0,9.0,9.0,10.0,10.0,10.0,9.0,14,1.23 +48221,86.0,9.0,9.0,9.0,9.0,10.0,9.0,66,5.48 +53131,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.09 +19684,97.0,10.0,10.0,10.0,10.0,10.0,10.0,15,1.81 +21761,50.0,5.0,5.0,6.0,9.0,10.0,6.0,2,1.67 +17353,87.0,9.0,9.0,9.0,10.0,9.0,9.0,3,0.26 +65437,80.0,8.0,6.0,10.0,10.0,8.0,6.0,1,0.08 +59615,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,2.4 +38078,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.88 +55413,94.0,10.0,9.0,9.0,10.0,9.0,10.0,29,2.44 +62137,94.0,10.0,9.0,10.0,10.0,10.0,10.0,10,0.83 +3651,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.44 +33072,,,,,,,,0, +44093,84.0,9.0,9.0,9.0,10.0,10.0,9.0,10,0.94 +43723,84.0,9.0,9.0,9.0,9.0,8.0,8.0,10,1.09 +8695,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.46 +15128,,,,,,,,0, +35111,100.0,10.0,10.0,10.0,8.0,10.0,10.0,1,0.1 +67842,,,,,,,,0, +41643,89.0,10.0,10.0,9.0,10.0,9.0,9.0,15,1.58 +45439,,,,,,,,0, +27884,,,,,,,,0, +43775,,,,,,,,0, +11436,,,,,,,,0, +4358,95.0,10.0,10.0,10.0,10.0,9.0,9.0,20,1.68 +13650,100.0,8.0,10.0,10.0,10.0,10.0,8.0,2,0.19 +60585,56.0,7.0,5.0,7.0,7.0,8.0,7.0,5,0.54 +27056,100.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.12 +26577,86.0,9.0,8.0,10.0,9.0,10.0,8.0,25,2.21 +35109,93.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.31 +64847,89.0,9.0,8.0,10.0,10.0,9.0,9.0,79,6.55 +25483,,,,,,,,0, +2464,90.0,10.0,9.0,9.0,9.0,9.0,9.0,79,6.51 +47506,84.0,9.0,8.0,9.0,9.0,9.0,9.0,131,10.95 +54354,,,,,,,,0, +20532,,,,,,,,1,0.08 +44256,80.0,9.0,9.0,9.0,9.0,9.0,8.0,7,0.64 +46871,,,,,,,,0, +47928,68.0,8.0,6.0,8.0,8.0,8.0,8.0,34,2.81 +25162,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.69 +8109,100.0,10.0,10.0,10.0,10.0,10.0,10.0,29,2.38 +24738,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.88 +38154,100.0,10.0,10.0,10.0,10.0,9.0,10.0,9,0.84 +7900,86.0,9.0,8.0,10.0,10.0,9.0,9.0,79,6.53 +20523,85.0,9.0,10.0,9.0,9.0,10.0,9.0,12,1.15 +12443,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.17 +33227,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +46406,100.0,10.0,8.0,8.0,6.0,10.0,8.0,1,0.09 +65757,80.0,10.0,6.0,10.0,8.0,8.0,6.0,1,0.09 +40581,100.0,9.0,10.0,10.0,10.0,10.0,10.0,3,0.25 +52217,99.0,10.0,10.0,10.0,10.0,10.0,10.0,21,1.85 +2384,96.0,10.0,10.0,10.0,10.0,10.0,10.0,25,2.27 +17622,,,,,,,,0, +63793,100.0,8.0,10.0,10.0,10.0,10.0,8.0,1,0.09 +73985,,,,,,,,1,0.08 +60346,,,,,,,,0, +61858,99.0,10.0,10.0,10.0,10.0,9.0,10.0,28,2.63 +15648,,,,,,,,1,0.15 +76723,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.34 +54569,91.0,10.0,9.0,10.0,10.0,9.0,10.0,13,1.46 +37239,83.0,9.0,8.0,9.0,9.0,9.0,9.0,63,5.26 +2671,98.0,10.0,10.0,10.0,10.0,9.0,10.0,23,2.17 +28816,100.0,10.0,9.0,10.0,10.0,10.0,10.0,7,0.61 +3589,,,,,,,,0, +40437,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.35 +71819,86.0,9.0,8.0,10.0,10.0,9.0,9.0,91,7.52 +47230,90.0,10.0,9.0,10.0,10.0,9.0,9.0,80,6.63 +8066,93.0,9.0,10.0,10.0,10.0,10.0,10.0,6,0.57 +11804,98.0,10.0,10.0,10.0,10.0,9.0,10.0,10,0.87 +72293,,,,,,,,0, +12554,99.0,10.0,10.0,10.0,10.0,10.0,10.0,61,5.35 +38696,97.0,10.0,10.0,10.0,10.0,9.0,10.0,12,1.11 +43623,89.0,9.0,8.0,10.0,9.0,8.0,9.0,40,3.31 +34519,97.0,10.0,10.0,10.0,10.0,10.0,10.0,8,3.48 +5720,60.0,8.0,8.0,10.0,10.0,6.0,8.0,1,0.1 +43719,100.0,10.0,10.0,10.0,10.0,9.0,10.0,17,1.46 +63414,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.84 +2800,90.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.38 +33249,80.0,8.0,8.0,10.0,10.0,10.0,8.0,1,0.09 +20462,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.27 +41042,97.0,10.0,10.0,10.0,10.0,10.0,9.0,15,1.31 +33154,94.0,10.0,10.0,10.0,10.0,10.0,9.0,16,1.41 +64905,88.0,9.0,9.0,9.0,10.0,9.0,9.0,8,0.76 +60054,,,,,,,,0, +41577,,,,,,,,0, +27440,,,,,,,,0, +19107,100.0,10.0,10.0,10.0,9.0,10.0,9.0,8,1.19 +7812,40.0,2.0,2.0,2.0,4.0,8.0,2.0,1,0.17 +68582,92.0,10.0,9.0,10.0,10.0,10.0,9.0,18,1.49 +58841,,,,,,,,0, +10582,100.0,10.0,9.0,9.0,10.0,9.0,10.0,7,1.11 +70360,100.0,10.0,9.0,10.0,10.0,10.0,10.0,7,1.04 +68905,,,,,,,,0, +49363,95.0,10.0,9.0,10.0,10.0,10.0,9.0,19,1.65 +76764,,,,,,,,0, +26884,87.0,9.0,9.0,8.0,8.0,8.0,9.0,3,0.26 +37025,90.0,9.0,10.0,10.0,10.0,8.0,10.0,4,0.7 +4531,87.0,10.0,9.0,9.0,9.0,10.0,9.0,17,1.5 +17744,,,,,,,,0, +42092,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.2 +41869,84.0,9.0,8.0,9.0,9.0,10.0,9.0,111,9.3 +30547,96.0,10.0,10.0,9.0,9.0,10.0,9.0,34,2.94 +17528,89.0,9.0,8.0,10.0,10.0,10.0,9.0,74,6.24 +13937,84.0,9.0,9.0,10.0,9.0,9.0,8.0,83,7.03 +68388,,,,,,,,0, +39488,,,,,,,,0, +59793,89.0,9.0,9.0,10.0,10.0,10.0,9.0,16,1.34 +75437,89.0,9.0,10.0,9.0,10.0,9.0,9.0,19,2.0 +37697,,,,,,,,1,0.09 +57060,100.0,10.0,10.0,9.0,10.0,10.0,10.0,5,0.42 +35478,,,,,,,,0, +27479,80.0,9.0,9.0,10.0,9.0,9.0,9.0,8,0.71 +61782,87.0,9.0,9.0,9.0,9.0,8.0,9.0,29,2.42 +44085,74.0,9.0,7.0,9.0,9.0,8.0,8.0,13,1.32 +4333,80.0,8.0,6.0,10.0,8.0,10.0,8.0,1,0.11 +25860,89.0,9.0,10.0,10.0,9.0,9.0,9.0,35,3.09 +24471,92.0,9.0,10.0,10.0,10.0,8.0,10.0,5,0.51 +39801,,,,,,,,1,0.08 +71424,93.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.53 +73512,99.0,10.0,10.0,10.0,10.0,10.0,10.0,22,2.12 +4327,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.08 +57013,,,,,,,,0, +76180,100.0,10.0,10.0,10.0,10.0,10.0,10.0,21,1.76 +46367,,,,,,,,0, +41687,,,,,,,,0, +11054,87.0,10.0,6.0,10.0,10.0,9.0,9.0,4,0.35 +64078,94.0,10.0,9.0,10.0,10.0,9.0,10.0,39,4.9 +23140,80.0,6.0,8.0,10.0,6.0,10.0,10.0,1,0.09 +12726,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.26 +30118,67.0,7.0,7.0,7.0,8.0,9.0,7.0,4,0.5 +43713,100.0,10.0,9.0,10.0,10.0,10.0,10.0,7,0.67 +26756,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.5 +58155,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.17 +24063,91.0,10.0,10.0,9.0,9.0,10.0,9.0,41,3.63 +17562,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.18 +49359,100.0,9.0,10.0,9.0,10.0,10.0,9.0,4,0.39 +33580,,,,,,,,0, +60391,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,1.07 +63866,99.0,10.0,10.0,10.0,10.0,10.0,10.0,18,1.52 +20381,,,,,,,,0, +24736,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.76 +62,,,,,,,,0, +2979,,,,,,,,0, +74576,94.0,9.0,9.0,10.0,9.0,10.0,9.0,7,0.73 +36791,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.35 +62649,,,,,,,,0, +665,,,,,,,,0, +60163,80.0,8.0,8.0,8.0,8.0,8.0,8.0,5,0.49 +14310,80.0,8.0,9.0,8.0,8.0,9.0,9.0,2,0.17 +55474,,,,,,,,0, +58452,93.0,9.0,9.0,10.0,10.0,10.0,9.0,6,0.53 +5056,87.0,9.0,9.0,10.0,10.0,9.0,9.0,3,0.38 +49052,97.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.86 +72124,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.8 +59622,86.0,9.0,9.0,10.0,10.0,9.0,9.0,14,1.64 +18092,84.0,8.0,9.0,8.0,8.0,8.0,9.0,5,0.9 +27863,97.0,10.0,10.0,10.0,10.0,10.0,9.0,22,2.2 +12331,88.0,9.0,8.0,9.0,10.0,10.0,8.0,5,2.38 +55283,84.0,9.0,9.0,9.0,10.0,9.0,8.0,5,0.46 +68067,86.0,10.0,9.0,9.0,9.0,10.0,9.0,7,1.46 +26618,97.0,10.0,9.0,10.0,10.0,10.0,10.0,7,0.7 +43388,97.0,10.0,10.0,10.0,10.0,10.0,9.0,34,3.05 +42763,87.0,7.0,6.0,10.0,10.0,7.0,9.0,3,0.42 +9173,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.18 +31202,100.0,10.0,10.0,10.0,10.0,9.0,10.0,12,1.75 +18577,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.43 +54021,96.0,9.0,10.0,10.0,9.0,10.0,9.0,11,0.96 +69726,98.0,10.0,10.0,8.0,9.0,10.0,10.0,10,1.02 +72809,80.0,8.0,8.0,7.0,8.0,8.0,8.0,5,0.65 +47733,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.11 +24309,,,,,,,,4,0.34 +68877,,,,,,,,0, +52294,73.0,7.0,7.0,10.0,9.0,9.0,7.0,3,0.26 +59134,,,,,,,,0, +47865,,,,,,,,0, +64888,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,3.53 +65884,93.0,9.0,9.0,10.0,10.0,10.0,9.0,16,1.94 +22638,,,,,,,,0, +30922,96.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.88 +41380,90.0,9.0,10.0,9.0,9.0,9.0,10.0,2,0.17 +26580,,,,,,,,0, +42150,93.0,10.0,9.0,10.0,10.0,9.0,9.0,24,2.01 +57343,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +41458,96.0,10.0,10.0,10.0,10.0,10.0,9.0,11,0.93 +39022,60.0,4.0,6.0,10.0,6.0,10.0,2.0,2,0.18 +58462,100.0,10.0,8.0,10.0,10.0,10.0,8.0,2,0.19 +50768,100.0,6.0,10.0,6.0,10.0,10.0,10.0,1,0.09 +70944,,,,,,,,1,0.08 +7431,,,,,,,,0, +17374,98.0,10.0,10.0,10.0,10.0,9.0,10.0,42,5.45 +74252,100.0,10.0,10.0,10.0,10.0,9.0,10.0,14,1.67 +72556,,,,,,,,0, +21234,,,,,,,,0, +34365,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.11 +50693,95.0,10.0,9.0,10.0,10.0,9.0,9.0,9,0.92 +18946,,,,,,,,0, +72602,100.0,10.0,10.0,10.0,10.0,10.0,10.0,19,1.78 +64593,91.0,10.0,9.0,9.0,9.0,10.0,9.0,25,2.07 +43882,,,,,,,,1,0.09 +26268,100.0,10.0,10.0,10.0,10.0,6.0,10.0,1,0.09 +55556,90.0,10.0,8.0,10.0,10.0,10.0,10.0,4,0.42 +54748,,,,,,,,0, +50586,,,,,,,,1,1.0 +71460,98.0,10.0,10.0,9.0,10.0,10.0,9.0,9,1.08 +44033,,,,,,,,0, +24720,,,,,,,,0, +39104,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.75 +17671,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.09 +66712,,,,,,,,0, +50624,,,,,,,,0, +28536,90.0,9.0,10.0,10.0,10.0,9.0,8.0,2,0.18 +25080,,,,,,,,0, +19682,,,,,,,,0, +58295,94.0,10.0,9.0,9.0,10.0,10.0,10.0,15,1.4 +54572,97.0,10.0,10.0,10.0,10.0,9.0,10.0,14,1.21 +31661,100.0,10.0,9.0,10.0,10.0,9.0,10.0,7,0.61 +56918,80.0,8.0,8.0,8.0,8.0,8.0,8.0,1,0.09 +44242,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.25 +70295,,,,,,,,1,0.08 +55268,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.11 +35804,100.0,10.0,9.0,10.0,10.0,9.0,10.0,3,0.26 +13332,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.34 +33922,,,,,,,,0, +7637,,,,,,,,0, +13984,,,,,,,,0, +10701,87.0,10.0,10.0,9.0,10.0,8.0,9.0,17,1.51 +70090,,,,,,,,0, +66365,,,,,,,,1,0.09 +61848,93.0,10.0,10.0,10.0,10.0,10.0,9.0,20,1.91 +73549,,,,,,,,0, +54237,20.0,,,2.0,2.0,,,1,0.1 +9544,83.0,9.0,8.0,10.0,9.0,9.0,9.0,78,6.65 +2311,80.0,9.0,8.0,9.0,9.0,9.0,9.0,66,5.52 +31907,79.0,9.0,8.0,9.0,9.0,9.0,9.0,90,7.54 +47201,,,,,,,,0, +71079,96.0,10.0,9.0,10.0,10.0,9.0,10.0,15,1.26 +11521,98.0,10.0,9.0,10.0,10.0,10.0,10.0,12,1.71 +45596,,,,,,,,0, +23114,96.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.42 +48961,,,,,,,,0, +8870,,,,,,,,0, +50187,100.0,10.0,10.0,9.0,10.0,10.0,9.0,14,1.23 +71221,,,,,,,,0, +35589,100.0,9.0,10.0,10.0,10.0,9.0,9.0,4,0.35 +46915,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.21 +64357,93.0,10.0,10.0,10.0,10.0,10.0,10.0,21,2.9 +10188,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.71 +27975,91.0,9.0,10.0,10.0,10.0,10.0,9.0,14,1.71 +1043,100.0,10.0,7.0,10.0,9.0,9.0,9.0,3,0.26 +73632,,,,,,,,0, +73790,93.0,10.0,9.0,9.0,10.0,10.0,9.0,30,2.57 +37475,95.0,9.0,9.0,10.0,10.0,9.0,9.0,12,1.05 +36320,,,,,,,,0, +21876,98.0,10.0,10.0,10.0,10.0,9.0,10.0,18,1.58 +17434,,,,,,,,0, +36006,,,,,,,,0, +35586,98.0,10.0,10.0,10.0,10.0,10.0,10.0,53,4.45 +5250,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.59 +71378,84.0,9.0,9.0,10.0,9.0,9.0,9.0,20,1.85 +15520,80.0,9.0,9.0,9.0,10.0,9.0,9.0,40,3.42 +66761,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.18 +39763,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.26 +35396,96.0,9.0,10.0,10.0,10.0,9.0,10.0,12,1.01 +21607,,,,,,,,0, +53602,90.0,10.0,10.0,10.0,9.0,10.0,9.0,4,0.37 +33893,,,,,,,,0, +22021,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +69830,77.0,8.0,8.0,9.0,9.0,8.0,8.0,39,3.3 +41323,,,,,,,,0, +11924,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.24 +241,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +29294,95.0,10.0,10.0,10.0,8.0,10.0,10.0,4,0.35 +48573,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.18 +32675,,,,,,,,0, +15814,98.0,10.0,10.0,10.0,10.0,10.0,10.0,34,3.75 +54551,87.0,9.0,9.0,9.0,9.0,10.0,9.0,14,1.18 +65538,98.0,9.0,9.0,10.0,10.0,10.0,9.0,8,0.77 +34315,,,,,,,,0, +52789,,,,,,,,0, +12919,90.0,9.0,9.0,9.0,9.0,10.0,8.0,14,1.18 +57598,73.0,8.0,7.0,9.0,9.0,7.0,7.0,17,1.44 +48138,,,,,,,,0, +23880,98.0,10.0,9.0,10.0,10.0,9.0,10.0,22,1.94 +41046,99.0,10.0,10.0,10.0,10.0,9.0,10.0,29,2.58 +39082,20.0,2.0,4.0,2.0,4.0,10.0,2.0,1,0.15 +36250,97.0,10.0,9.0,10.0,10.0,10.0,10.0,12,1.06 +29531,90.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.35 +42687,96.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.43 +54341,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.42 +14911,,,,,,,,0, +18958,99.0,10.0,10.0,10.0,10.0,9.0,10.0,24,2.06 +9182,95.0,10.0,10.0,10.0,9.0,10.0,10.0,11,0.97 +46748,97.0,10.0,10.0,9.0,10.0,9.0,10.0,7,1.54 +60133,96.0,10.0,10.0,9.0,10.0,9.0,10.0,5,1.03 +24785,95.0,10.0,10.0,10.0,10.0,10.0,10.0,35,3.08 +30689,,,,,,,,0, +53933,90.0,10.0,8.0,10.0,10.0,9.0,9.0,2,0.18 +53229,95.0,10.0,10.0,10.0,10.0,10.0,10.0,16,1.36 +10829,,,,,,,,0, +9149,,,,,,,,0, +53694,100.0,10.0,10.0,10.0,10.0,10.0,10.0,18,1.58 +38345,80.0,10.0,9.0,9.0,9.0,9.0,9.0,3,0.46 +15926,100.0,10.0,10.0,9.0,10.0,10.0,10.0,5,1.08 +17132,90.0,9.0,9.0,10.0,10.0,10.0,10.0,3,0.39 +41763,98.0,10.0,10.0,9.0,9.0,10.0,10.0,10,0.99 +27007,,,,,,,,0, +71946,88.0,10.0,9.0,9.0,10.0,10.0,9.0,26,2.47 +43819,93.0,9.0,10.0,9.0,9.0,10.0,9.0,6,0.57 +59986,40.0,4.0,10.0,10.0,10.0,8.0,4.0,1,0.28 +19910,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +69518,100.0,10.0,9.0,10.0,10.0,9.0,10.0,2,0.24 +21280,80.0,8.0,8.0,9.0,10.0,10.0,9.0,6,0.5 +75168,89.0,9.0,8.0,10.0,10.0,9.0,9.0,7,0.99 +57041,70.0,7.0,8.0,9.0,8.0,7.0,6.0,2,0.88 +42937,,,,,,,,0, +22360,96.0,9.0,9.0,10.0,10.0,9.0,9.0,17,1.5 +55349,98.0,10.0,10.0,10.0,9.0,9.0,10.0,19,1.69 +73420,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.21 +5100,90.0,9.0,10.0,9.0,10.0,10.0,9.0,3,1.27 +40083,100.0,6.0,10.0,10.0,10.0,6.0,10.0,1,0.3 +5945,97.0,10.0,9.0,10.0,9.0,10.0,9.0,6,0.53 +26958,,,,,,,,1,0.09 +1236,97.0,10.0,8.0,10.0,10.0,10.0,9.0,7,0.73 +44216,,,,,,,,1,0.14 +14276,100.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.34 +67484,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +31226,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.17 +25057,78.0,8.0,8.0,8.0,9.0,10.0,9.0,14,1.22 +51466,80.0,8.0,8.0,10.0,8.0,10.0,6.0,1,0.09 +58226,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.09 +4996,,,,,,,,0, +28694,,,,,,,,0, +1707,100.0,10.0,10.0,10.0,9.0,7.0,9.0,3,0.68 +67907,75.0,8.0,8.0,8.0,7.0,9.0,8.0,11,0.92 +2687,80.0,8.0,10.0,8.0,10.0,8.0,10.0,1,0.09 +71291,,,,,,,,0, +51836,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,2.0 +38908,,,,,,,,0, +41354,96.0,10.0,10.0,10.0,9.0,10.0,10.0,27,2.45 +68506,80.0,8.0,8.0,10.0,10.0,8.0,8.0,1,0.73 +24496,73.0,8.0,8.0,8.0,8.0,8.0,8.0,15,1.37 +68886,,,,,,,,1,0.08 +842,95.0,9.0,9.0,9.0,10.0,9.0,9.0,9,0.78 +26116,,,,,,,,1,0.08 +25219,90.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.19 +55852,,,,,,,,0, +23879,96.0,10.0,10.0,10.0,10.0,10.0,8.0,5,0.46 +64080,76.0,8.0,8.0,9.0,8.0,9.0,8.0,15,1.27 +29069,,,,,,,,0, +68003,100.0,10.0,8.0,10.0,10.0,8.0,10.0,1,0.09 +49463,,,,,,,,0, +47982,80.0,9.0,9.0,9.0,10.0,10.0,8.0,3,0.26 +67124,84.0,9.0,8.0,9.0,9.0,9.0,9.0,39,3.34 +12066,78.0,8.0,7.0,9.0,9.0,8.0,8.0,34,2.96 +53052,,,,,,,,0, +63700,75.0,8.0,8.0,9.0,9.0,8.0,8.0,36,3.12 +51185,97.0,10.0,10.0,10.0,10.0,10.0,9.0,8,0.71 +44357,,,,,,,,0, +7845,97.0,10.0,8.0,10.0,10.0,10.0,9.0,12,1.03 +24978,,,,,,,,0, +46574,,,,,,,,0, +3173,94.0,10.0,10.0,10.0,10.0,9.0,10.0,58,4.86 +26264,,,,,,,,0, +44670,,,,,,,,0, +58404,98.0,10.0,10.0,10.0,10.0,10.0,9.0,9,1.14 +9312,,,,,,,,1,0.09 +4629,,,,,,,,0, +49964,,,,,,,,0, +21236,,,,,,,,1,0.14 +67487,92.0,10.0,9.0,10.0,10.0,9.0,9.0,21,1.86 +20224,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.18 +38588,87.0,9.0,7.0,9.0,9.0,9.0,9.0,5,0.46 +19876,,,,,,,,0, +58421,,,,,,,,0, +40952,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.09 +52899,100.0,10.0,9.0,9.0,10.0,10.0,10.0,2,0.17 +12260,,,,,,,,0, +55789,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.11 +892,,,,,,,,1,0.09 +20002,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.17 +41017,87.0,9.0,9.0,10.0,10.0,10.0,9.0,19,1.79 +65351,,,,,,,,1,0.2 +55083,89.0,10.0,9.0,9.0,9.0,10.0,9.0,15,1.41 +53213,100.0,10.0,10.0,10.0,10.0,6.0,8.0,3,0.46 +36445,,,,,,,,0, +39151,,,,,,,,0, +74520,,,,,,,,0, +20020,74.0,8.0,8.0,8.0,8.0,8.0,8.0,15,1.27 +715,,,,,,,,0, +29119,,,,,,,,0, +18929,97.0,10.0,10.0,10.0,10.0,10.0,10.0,15,1.34 +50116,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.35 +18532,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.3 +64887,,,,,,,,0, +76978,80.0,10.0,10.0,10.0,10.0,8.0,8.0,2,0.18 +48661,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.43 +33524,80.0,8.0,10.0,10.0,10.0,8.0,8.0,2,0.18 +998,97.0,10.0,10.0,10.0,10.0,10.0,10.0,25,2.19 +5946,,,,,,,,0, +6095,95.0,10.0,9.0,10.0,10.0,9.0,10.0,61,5.11 +14103,92.0,9.0,9.0,9.0,10.0,10.0,9.0,5,0.45 +14168,100.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.09 +26944,94.0,9.0,9.0,10.0,10.0,10.0,10.0,16,1.53 +56840,90.0,10.0,8.0,8.0,10.0,10.0,9.0,2,0.18 +3468,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +50313,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.39 +44658,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.92 +35456,,,,,,,,0, +30252,95.0,10.0,9.0,10.0,10.0,10.0,10.0,16,1.34 +26527,,,,,,,,0, +39132,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.26 +48367,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,1.0 +72332,,,,,,,,0, +63519,,,,,,,,0, +3753,,,,,,,,1,0.09 +31827,97.0,10.0,10.0,9.0,10.0,9.0,9.0,6,0.64 +37831,,,,,,,,1,0.08 +45326,80.0,9.0,9.0,8.0,9.0,10.0,10.0,4,0.34 +48094,78.0,9.0,8.0,8.0,9.0,8.0,8.0,23,2.16 +32045,80.0,9.0,9.0,9.0,9.0,10.0,9.0,3,0.39 +49801,84.0,9.0,10.0,9.0,9.0,10.0,9.0,14,1.43 +23725,,,,,,,,0, +16148,97.0,10.0,10.0,10.0,10.0,10.0,10.0,26,2.97 +55569,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.09 +54889,,,,,,,,0, +44923,50.0,6.0,6.0,9.0,6.0,9.0,4.0,2,0.19 +17223,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.2 +16774,60.0,8.0,8.0,8.0,10.0,8.0,8.0,1,0.09 +41671,,,,,,,,0, +56939,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.17 +38340,73.0,9.0,7.0,10.0,9.0,9.0,9.0,9,0.86 +43219,,,,,,,,0, +66692,,,,,,,,0, +28523,,,,,,,,1,0.08 +39562,90.0,10.0,10.0,6.0,9.0,10.0,10.0,3,0.25 +22693,,,,,,,,0, +61508,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +70233,,,,,,,,0, +7553,93.0,9.0,9.0,10.0,9.0,9.0,9.0,4,0.34 +27248,87.0,10.0,8.0,9.0,9.0,9.0,9.0,12,1.05 +50551,80.0,8.0,10.0,10.0,10.0,8.0,8.0,1,0.1 +64843,97.0,9.0,10.0,10.0,9.0,8.0,9.0,6,0.6 +75196,,,,,,,,0, +30555,76.0,7.0,8.0,7.0,8.0,9.0,8.0,5,0.46 +6263,91.0,10.0,9.0,10.0,10.0,9.0,9.0,22,1.92 +38479,79.0,8.0,8.0,9.0,9.0,9.0,9.0,43,3.63 +27140,60.0,10.0,8.0,6.0,10.0,10.0,10.0,2,0.18 +20615,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +29197,100.0,9.0,10.0,10.0,9.0,9.0,9.0,3,0.38 +22669,96.0,10.0,10.0,9.0,9.0,10.0,10.0,15,1.31 +11459,,,,,,,,0, +62403,91.0,9.0,9.0,9.0,9.0,9.0,9.0,8,0.87 +69833,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.18 +63443,88.0,9.0,9.0,10.0,10.0,10.0,9.0,25,2.12 +48785,97.0,10.0,10.0,10.0,10.0,10.0,10.0,94,8.42 +73886,100.0,10.0,10.0,9.0,10.0,9.0,10.0,4,0.36 +20873,87.0,10.0,8.0,9.0,10.0,10.0,9.0,11,1.05 +25775,78.0,8.0,8.0,7.0,9.0,9.0,8.0,37,3.5 +54985,93.0,10.0,9.0,10.0,10.0,10.0,9.0,6,1.23 +53011,90.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.27 +12997,88.0,9.0,9.0,9.0,9.0,10.0,9.0,6,0.53 +26503,94.0,10.0,10.0,10.0,10.0,9.0,9.0,7,0.64 +22109,100.0,9.0,10.0,9.0,10.0,10.0,10.0,5,0.44 +57573,95.0,10.0,10.0,10.0,10.0,10.0,9.0,16,1.36 +51017,,,,,,,,0, +18786,,,,,,,,0, +31759,,,,,,,,0, +33447,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.8 +66055,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.61 +1217,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.83 +15255,91.0,10.0,9.0,10.0,10.0,9.0,9.0,11,1.11 +72540,97.0,10.0,9.0,10.0,10.0,10.0,9.0,7,0.61 +42228,92.0,9.0,10.0,9.0,10.0,10.0,9.0,12,1.14 +65263,95.0,10.0,9.0,10.0,10.0,9.0,10.0,25,2.49 +551,85.0,9.0,10.0,9.0,9.0,10.0,9.0,8,0.77 +60831,76.0,7.0,7.0,6.0,8.0,8.0,8.0,5,0.77 +8058,95.0,10.0,9.0,10.0,10.0,10.0,9.0,5,0.42 +58689,76.0,8.0,8.0,8.0,8.0,6.0,8.0,5,0.63 +2272,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +11695,,,,,,,,0, +71250,,,,,,,,0, +10241,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +835,,,,,,,,0, +10618,,,,,,,,0, +19688,,,,,,,,0, +69265,75.0,6.0,7.0,6.0,7.0,5.0,6.0,4,0.36 +13509,90.0,9.0,9.0,8.0,8.0,9.0,9.0,2,0.17 +13610,,,,,,,,0, +65058,85.0,10.0,9.0,9.0,10.0,10.0,9.0,4,0.42 +26919,20.0,10.0,2.0,10.0,10.0,4.0,6.0,1,0.18 +12193,83.0,9.0,9.0,9.0,9.0,8.0,9.0,7,0.63 +20701,,,,,,,,0, +71503,80.0,9.0,9.0,10.0,10.0,8.0,9.0,2,0.17 +10151,100.0,8.0,8.0,10.0,10.0,10.0,10.0,1,0.09 +75500,95.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.37 +70304,96.0,9.0,9.0,10.0,9.0,9.0,9.0,15,1.81 +8582,92.0,10.0,9.0,10.0,10.0,9.0,9.0,19,1.62 +11973,90.0,9.0,9.0,10.0,10.0,10.0,9.0,6,0.57 +26227,98.0,10.0,10.0,10.0,10.0,9.0,10.0,12,1.88 +36477,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.75 +60814,80.0,9.0,10.0,9.0,10.0,7.0,9.0,2,0.17 +50211,96.0,9.0,10.0,10.0,10.0,9.0,10.0,19,1.6 +61642,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,0.92 +36247,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.39 +42541,96.0,10.0,10.0,10.0,10.0,10.0,9.0,16,1.38 +33468,80.0,9.0,9.0,9.0,8.0,8.0,9.0,3,0.26 +63149,80.0,9.0,9.0,10.0,10.0,10.0,8.0,8,0.71 +12804,90.0,9.0,10.0,9.0,9.0,10.0,9.0,57,4.87 +59471,,,,,,,,0, +59332,93.0,10.0,9.0,10.0,10.0,9.0,9.0,13,1.28 +77041,93.0,10.0,10.0,10.0,9.0,10.0,9.0,12,1.02 +29617,80.0,9.0,9.0,9.0,10.0,10.0,9.0,9,0.78 +36567,98.0,10.0,10.0,10.0,10.0,9.0,10.0,49,4.5 +32515,96.0,10.0,9.0,9.0,10.0,10.0,10.0,5,0.45 +74608,,,,,,,,0, +64985,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.18 +54467,98.0,10.0,10.0,10.0,10.0,9.0,10.0,12,1.1 +22990,92.0,10.0,9.0,10.0,10.0,10.0,9.0,30,2.77 +66653,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.4 +34848,,,,,,,,0, +65544,93.0,10.0,9.0,9.0,10.0,10.0,9.0,13,1.16 +65076,98.0,10.0,9.0,10.0,10.0,9.0,10.0,11,0.97 +18284,97.0,10.0,10.0,9.0,9.0,10.0,10.0,13,1.54 +54962,,,,,,,,0, +5049,96.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.53 +59490,94.0,10.0,10.0,10.0,10.0,10.0,9.0,22,3.01 +55020,85.0,9.0,8.0,9.0,9.0,9.0,8.0,37,3.14 +73198,,,,,,,,0, +38774,,,,,,,,0, +430,100.0,9.0,10.0,10.0,10.0,10.0,10.0,3,0.62 +25396,,,,,,,,0, +53791,86.0,9.0,9.0,9.0,9.0,9.0,9.0,31,2.91 +65643,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.53 +64368,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.36 +67899,100.0,10.0,9.0,10.0,10.0,10.0,10.0,8,0.68 +14887,97.0,10.0,10.0,10.0,9.0,9.0,9.0,7,0.62 +10514,,,,,,,,0, +18852,90.0,9.0,9.0,8.0,8.0,8.0,8.0,2,0.81 +13823,82.0,9.0,9.0,8.0,8.0,9.0,9.0,11,1.05 +26433,,,,,,,,0, +66289,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.41 +5320,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.26 +3815,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.44 +3492,87.0,9.0,9.0,10.0,9.0,10.0,9.0,54,4.59 +52176,,,,,,,,0, +19073,96.0,9.0,9.0,10.0,10.0,10.0,9.0,10,1.17 +36836,100.0,8.0,8.0,10.0,10.0,10.0,8.0,1,0.16 +73612,,,,,,,,1,0.09 +19622,100.0,10.0,10.0,10.0,10.0,9.0,10.0,9,0.9 +65857,79.0,9.0,9.0,10.0,9.0,10.0,8.0,18,1.74 +16528,88.0,9.0,9.0,9.0,9.0,10.0,8.0,22,2.36 +48672,90.0,9.0,10.0,10.0,10.0,9.0,10.0,4,0.35 +55610,90.0,9.0,9.0,9.0,9.0,10.0,9.0,21,1.83 +19771,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +21272,,,,,,,,0, +51336,,,,,,,,0, +48731,93.0,10.0,8.0,10.0,10.0,10.0,9.0,17,1.49 +71254,98.0,10.0,9.0,10.0,10.0,10.0,9.0,26,2.28 +68063,87.0,9.0,8.0,10.0,10.0,10.0,9.0,32,2.94 +56045,,,,,,,,0, +48689,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.17 +53745,100.0,8.0,10.0,8.0,10.0,8.0,10.0,1,0.09 +6897,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.17 +67580,99.0,10.0,10.0,10.0,10.0,10.0,10.0,36,3.46 +6192,85.0,8.0,7.0,10.0,10.0,10.0,9.0,5,0.46 +66212,,,,,,,,0, +32409,,,,,,,,0, +35184,60.0,6.0,10.0,10.0,10.0,10.0,6.0,1,0.2 +3514,100.0,10.0,10.0,10.0,10.0,10.0,9.0,8,0.7 +71204,93.0,10.0,9.0,10.0,10.0,9.0,10.0,24,2.12 +12422,80.0,6.0,10.0,8.0,10.0,10.0,10.0,1,0.2 +60345,96.0,10.0,10.0,8.0,9.0,10.0,9.0,5,0.74 +73338,100.0,10.0,10.0,9.0,10.0,10.0,10.0,4,0.7 +37544,100.0,10.0,10.0,10.0,10.0,10.0,10.0,30,3.18 +56258,,,,,,,,0, +59210,100.0,9.0,9.0,10.0,10.0,10.0,9.0,3,0.44 +16768,92.0,9.0,9.0,9.0,9.0,9.0,9.0,19,1.69 +1195,,,,,,,,0, +69136,100.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.67 +16669,,,,,,,,0, +40927,,,,,,,,0, +22998,,,,,,,,0, +20856,90.0,9.0,10.0,9.0,9.0,9.0,9.0,20,2.23 +1177,,,,,,,,1,0.12 +1372,80.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.18 +3416,,,,,,,,0, +25458,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.63 +54390,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.49 +30228,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.74 +14090,,,,,,,,0, +54769,,,,,,,,0, +26607,93.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.93 +72357,90.0,10.0,8.0,8.0,10.0,10.0,10.0,4,0.35 +8152,88.0,10.0,9.0,10.0,10.0,8.0,9.0,5,0.53 +42612,96.0,10.0,10.0,10.0,10.0,9.0,9.0,22,2.06 +26860,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.29 +71386,,,,,,,,0, +34206,85.0,9.0,9.0,9.0,9.0,8.0,9.0,27,2.37 +9449,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.53 +26306,80.0,10.0,4.0,8.0,10.0,10.0,8.0,2,0.2 +55798,100.0,10.0,6.0,10.0,10.0,10.0,10.0,1,0.2 +14328,,,,,,,,0, +49687,80.0,8.0,8.0,9.0,9.0,10.0,8.0,2,0.21 +48129,,,,,,,,0, +66633,,,,,,,,0, +63125,80.0,10.0,7.0,9.0,10.0,10.0,9.0,3,0.29 +7523,,,,,,,,0, +55855,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +62714,99.0,10.0,10.0,10.0,10.0,10.0,10.0,18,3.0 +9422,,,,,,,,1,0.08 +68192,,,,,,,,0, +40784,87.0,10.0,9.0,10.0,10.0,10.0,10.0,6,0.87 +18012,100.0,10.0,10.0,10.0,10.0,8.0,10.0,3,0.26 +51009,98.0,10.0,9.0,10.0,10.0,10.0,9.0,11,1.23 +58701,95.0,10.0,10.0,10.0,10.0,10.0,9.0,38,3.31 +28133,93.0,10.0,9.0,10.0,10.0,10.0,10.0,13,1.13 +73361,,,,,,,,2,0.17 +48988,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.1 +48837,,,,,,,,1,0.09 +21656,,,,,,,,0, +50272,,,,,,,,0, +27569,,,,,,,,1,0.11 +9031,,,,,,,,0, +39648,,,,,,,,0, +72944,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.27 +64142,,,,,,,,0, +71782,99.0,10.0,10.0,10.0,10.0,9.0,10.0,49,7.58 +27010,,,,,,,,0, +34221,,,,,,,,1,0.08 +40553,100.0,10.0,10.0,10.0,10.0,10.0,10.0,24,4.71 +18885,,,,,,,,0, +41610,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +44700,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +23290,90.0,10.0,10.0,10.0,9.0,8.0,10.0,2,0.24 +15027,,,,,,,,0, +137,80.0,9.0,6.0,9.0,9.0,9.0,8.0,2,0.37 +36547,100.0,10.0,10.0,10.0,10.0,10.0,9.0,11,1.22 +74684,,,,,,,,0, +2855,70.0,7.0,5.0,8.0,7.0,6.0,6.0,2,0.17 +46399,,,,,,,,0, +62019,93.0,9.0,10.0,10.0,10.0,9.0,10.0,4,0.34 +7543,,,,,,,,0, +63175,100.0,10.0,10.0,10.0,10.0,9.0,10.0,9,0.85 +33294,91.0,9.0,9.0,9.0,9.0,9.0,9.0,9,0.89 +67846,,,,,,,,0, +45329,93.0,10.0,9.0,10.0,10.0,10.0,9.0,3,0.26 +74593,100.0,10.0,8.0,10.0,10.0,6.0,8.0,1,0.09 +33073,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +51953,,,,,,,,0, +75003,98.0,9.0,9.0,10.0,10.0,10.0,9.0,12,1.06 +17340,60.0,6.0,8.0,8.0,8.0,8.0,6.0,1,0.09 +28860,95.0,10.0,10.0,10.0,10.0,9.0,9.0,20,2.03 +15713,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.08 +74646,94.0,10.0,9.0,10.0,10.0,10.0,9.0,34,3.03 +31346,,,,,,,,0, +70681,,,,,,,,0, +37121,83.0,8.0,8.0,9.0,9.0,9.0,7.0,9,0.94 +51515,92.0,10.0,10.0,10.0,10.0,8.0,9.0,13,1.51 +44076,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.11 +72320,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.25 +60124,,,,,,,,0, +34292,94.0,10.0,10.0,10.0,10.0,9.0,9.0,17,1.48 +27020,,,,,,,,1,0.08 +35771,98.0,10.0,10.0,10.0,10.0,9.0,10.0,22,1.88 +20976,,,,,,,,1,0.19 +72530,90.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.51 +49227,92.0,10.0,9.0,9.0,10.0,9.0,9.0,47,3.99 +31696,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.09 +5540,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.18 +72523,97.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.7 +19477,91.0,10.0,9.0,10.0,10.0,10.0,10.0,22,1.96 +5789,90.0,9.0,9.0,10.0,9.0,9.0,9.0,14,1.28 +36931,80.0,10.0,10.0,8.0,8.0,10.0,6.0,1,0.09 +9445,,,,,,,,0, +45216,80.0,7.0,8.0,7.0,9.0,9.0,9.0,3,0.46 +36648,98.0,10.0,10.0,10.0,10.0,9.0,10.0,12,1.78 +20906,90.0,9.0,9.0,10.0,10.0,6.0,10.0,2,0.17 +35279,,,,,,,,0, +13173,94.0,10.0,9.0,10.0,10.0,10.0,9.0,38,3.34 +72672,85.0,10.0,9.0,9.0,10.0,10.0,10.0,4,0.35 +60655,,,,,,,,0, +27670,98.0,10.0,10.0,10.0,10.0,10.0,9.0,8,1.48 +66306,93.0,9.0,9.0,10.0,10.0,10.0,10.0,19,1.84 +73631,82.0,9.0,9.0,10.0,10.0,9.0,9.0,12,1.12 +52348,89.0,9.0,9.0,10.0,10.0,9.0,9.0,19,1.64 +11974,85.0,9.0,9.0,10.0,10.0,9.0,9.0,22,2.08 +52670,87.0,10.0,9.0,9.0,9.0,10.0,9.0,3,0.33 +59530,84.0,9.0,9.0,9.0,8.0,10.0,9.0,29,2.57 +30693,98.0,10.0,10.0,10.0,10.0,10.0,10.0,11,1.12 +23908,77.0,8.0,8.0,10.0,10.0,10.0,9.0,13,1.11 +76156,94.0,9.0,9.0,9.0,10.0,10.0,10.0,45,4.41 +8397,88.0,9.0,9.0,9.0,9.0,9.0,9.0,15,1.28 +43063,91.0,9.0,9.0,9.0,9.0,10.0,9.0,7,0.66 +26791,,,,,,,,0, +75365,,,,,,,,0, +62958,90.0,9.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +76269,92.0,9.0,9.0,10.0,10.0,9.0,9.0,21,1.86 +16243,100.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.18 +72610,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.19 +30037,,,,,,,,0, +42797,90.0,9.0,6.0,10.0,10.0,10.0,10.0,2,0.17 +58065,,,,,,,,0, +41568,,,,,,,,0, +31264,75.0,9.0,8.0,9.0,10.0,9.0,8.0,31,2.84 +69700,20.0,2.0,2.0,8.0,6.0,8.0,2.0,2,0.19 +41547,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.01 +26102,80.0,6.0,8.0,8.0,8.0,8.0,10.0,1,0.09 +74663,95.0,10.0,10.0,9.0,10.0,10.0,10.0,8,0.76 +65937,90.0,9.0,10.0,9.0,9.0,9.0,9.0,14,1.37 +41937,93.0,10.0,10.0,9.0,9.0,10.0,9.0,8,0.78 +64458,80.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.17 +66682,,,,,,,,1,0.11 +75981,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +18521,100.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.48 +41953,96.0,10.0,9.0,10.0,10.0,10.0,9.0,9,0.79 +9059,87.0,8.0,9.0,7.0,9.0,9.0,9.0,3,0.79 +15676,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.26 +37541,,,,,,,,1,0.09 +17145,100.0,10.0,10.0,10.0,10.0,8.0,10.0,2,0.18 +45593,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +31527,96.0,10.0,8.0,10.0,10.0,10.0,9.0,5,0.46 +27536,98.0,10.0,9.0,10.0,9.0,10.0,10.0,10,0.96 +51615,94.0,9.0,9.0,9.0,9.0,9.0,9.0,19,1.67 +74373,,,,,,,,0, +63083,100.0,9.0,10.0,9.0,9.0,10.0,10.0,2,0.19 +43153,80.0,8.0,10.0,9.0,10.0,10.0,8.0,2,0.18 +65480,80.0,9.0,8.0,8.0,9.0,9.0,7.0,3,0.28 +53888,,,,,,,,0, +56888,90.0,8.0,10.0,10.0,10.0,10.0,10.0,4,0.35 +11837,75.0,8.0,8.0,8.0,9.0,9.0,8.0,8,1.22 +305,85.0,9.0,8.0,9.0,9.0,9.0,8.0,15,1.96 +19894,,,,,,,,0, +61192,100.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.57 +41282,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.59 +40051,80.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.09 +7222,,,,,,,,0, +32502,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.41 +15353,95.0,10.0,10.0,10.0,10.0,9.0,9.0,11,0.97 +7671,,,,,,,,0, +4404,,,,,,,,0, +5266,100.0,10.0,10.0,10.0,10.0,10.0,10.0,24,2.1 +54146,84.0,9.0,9.0,9.0,9.0,8.0,8.0,16,1.46 +57694,,,,,,,,0, +44722,100.0,9.0,10.0,10.0,10.0,10.0,9.0,8,1.33 +54149,93.0,10.0,10.0,9.0,10.0,10.0,9.0,3,0.42 +27667,,,,,,,,0, +60884,80.0,8.0,6.0,8.0,6.0,8.0,6.0,1,0.09 +42226,80.0,8.0,7.0,7.0,9.0,10.0,9.0,6,0.54 +40611,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.88 +67918,88.0,9.0,9.0,10.0,9.0,10.0,9.0,9,0.79 +8797,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.17 +24529,,,,,,,,0, +57991,,,,,,,,0, +37976,,,,,,,,1,0.09 +65622,,,,,,,,0, +15280,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.15 +21991,87.0,9.0,9.0,7.0,8.0,9.0,8.0,3,0.36 +32889,92.0,9.0,9.0,10.0,10.0,10.0,9.0,15,1.37 +16637,86.0,9.0,9.0,10.0,10.0,9.0,9.0,27,2.73 +17012,,,,,,,,0, +13297,90.0,10.0,7.0,10.0,10.0,10.0,9.0,2,0.18 +13420,,,,,,,,0, +53896,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.1 +50544,89.0,9.0,9.0,10.0,10.0,9.0,9.0,21,1.85 +37391,86.0,9.0,9.0,8.0,9.0,9.0,9.0,16,1.41 +44513,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.35 +40491,94.0,10.0,10.0,9.0,9.0,10.0,9.0,37,3.38 +20771,94.0,10.0,9.0,10.0,10.0,10.0,10.0,17,1.5 +37279,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +39079,100.0,9.0,9.0,9.0,10.0,9.0,9.0,4,0.36 +53684,80.0,8.0,9.0,9.0,9.0,8.0,8.0,7,0.61 +75252,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.18 +61418,95.0,10.0,10.0,10.0,10.0,10.0,9.0,21,2.55 +54274,93.0,9.0,9.0,10.0,10.0,10.0,9.0,16,1.46 +53865,96.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.47 +31172,87.0,9.0,8.0,10.0,10.0,10.0,9.0,8,0.71 +47606,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,1.12 +72327,98.0,9.0,10.0,10.0,10.0,10.0,10.0,8,0.7 +27852,,,,,,,,0, +49789,,,,,,,,0, +25632,96.0,10.0,10.0,10.0,10.0,9.0,10.0,38,3.37 +15673,85.0,9.0,9.0,10.0,10.0,10.0,8.0,13,1.59 +50445,80.0,7.0,10.0,10.0,10.0,10.0,9.0,2,0.21 +47026,96.0,10.0,10.0,9.0,10.0,9.0,9.0,18,1.72 +4274,,,,,,,,0, +75087,75.0,9.0,9.0,9.0,9.0,9.0,8.0,12,1.05 +23813,87.0,9.0,8.0,10.0,10.0,10.0,10.0,19,1.69 +52896,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.35 +17230,87.0,9.0,9.0,9.0,9.0,10.0,8.0,11,1.32 +50670,94.0,10.0,9.0,10.0,10.0,10.0,9.0,7,0.62 +30188,91.0,10.0,10.0,10.0,10.0,10.0,9.0,29,3.48 +53455,94.0,10.0,10.0,10.0,10.0,10.0,9.0,7,0.62 +4990,,,,,,,,1,0.1 +15990,,,,,,,,0, +10013,95.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.43 +69617,,,,,,,,1,0.2 +48776,98.0,10.0,9.0,10.0,10.0,9.0,10.0,29,2.64 +17703,,,,,,,,0, +28554,94.0,9.0,10.0,10.0,10.0,10.0,10.0,7,0.62 +61378,100.0,10.0,10.0,10.0,10.0,8.0,10.0,2,0.35 +76308,,,,,,,,0, +49860,100.0,10.0,10.0,10.0,10.0,10.0,9.0,10,0.88 +36459,82.0,8.0,9.0,9.0,9.0,8.0,8.0,19,1.73 +37720,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.09 +16209,,,,,,,,1,0.09 +44361,95.0,10.0,10.0,10.0,10.0,10.0,9.0,24,2.17 +34167,93.0,10.0,9.0,10.0,10.0,9.0,9.0,15,1.32 +8036,93.0,9.0,9.0,10.0,10.0,9.0,10.0,8,1.28 +36454,,,,,,,,0, +63294,88.0,9.0,9.0,9.0,10.0,9.0,9.0,16,1.37 +50205,71.0,7.0,9.0,8.0,7.0,9.0,8.0,10,0.96 +68936,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.23 +33664,99.0,10.0,10.0,10.0,10.0,10.0,10.0,26,2.34 +50470,,,,,,,,0, +64748,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.83 +27540,93.0,10.0,10.0,10.0,10.0,10.0,10.0,17,1.51 +47615,97.0,10.0,10.0,10.0,10.0,10.0,9.0,35,4.2 +20900,76.0,8.0,8.0,8.0,9.0,10.0,8.0,5,0.44 +2028,97.0,10.0,9.0,10.0,10.0,10.0,10.0,7,0.89 +59081,93.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.55 +12161,89.0,9.0,10.0,10.0,10.0,10.0,8.0,11,1.34 +57255,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.64 +58891,91.0,9.0,8.0,9.0,9.0,10.0,9.0,9,0.82 +28727,98.0,10.0,10.0,9.0,10.0,10.0,9.0,27,3.65 +62094,,,,,,,,0, +14861,90.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.81 +18605,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.23 +16887,94.0,10.0,9.0,10.0,10.0,10.0,9.0,19,1.67 +3247,100.0,10.0,10.0,10.0,10.0,8.0,9.0,4,0.35 +62081,90.0,10.0,8.0,10.0,10.0,10.0,10.0,4,2.26 +26375,,,,,,,,0, +4444,90.0,9.0,9.0,10.0,10.0,10.0,9.0,2,0.18 +73247,20.0,,,,,,,1,0.09 +72799,94.0,10.0,10.0,10.0,10.0,10.0,9.0,28,2.47 +497,,,,,,,,0, +38329,81.0,9.0,8.0,9.0,9.0,8.0,8.0,47,4.61 +49825,85.0,9.0,8.0,10.0,10.0,10.0,9.0,16,2.23 +76587,,,,,,,,0, +52372,85.0,10.0,9.0,10.0,10.0,9.0,9.0,29,2.71 +72282,88.0,10.0,9.0,10.0,10.0,9.0,9.0,16,1.63 +5042,73.0,10.0,9.0,9.0,9.0,10.0,7.0,6,0.6 +49858,,,,,,,,0, +14867,80.0,7.0,8.0,9.0,9.0,9.0,8.0,3,0.27 +6276,85.0,9.0,9.0,9.0,9.0,9.0,8.0,20,1.76 +21313,89.0,9.0,10.0,9.0,10.0,10.0,9.0,28,2.46 +59630,60.0,8.0,8.0,8.0,8.0,8.0,6.0,1,0.09 +30350,97.0,10.0,9.0,10.0,10.0,10.0,10.0,13,1.13 +17766,88.0,9.0,10.0,9.0,9.0,10.0,9.0,12,1.12 +68621,81.0,9.0,9.0,9.0,9.0,9.0,8.0,20,1.76 +40289,95.0,10.0,10.0,10.0,10.0,10.0,9.0,24,2.93 +19930,60.0,6.0,6.0,4.0,8.0,8.0,4.0,1,0.09 +44177,90.0,10.0,10.0,10.0,7.0,10.0,9.0,2,0.18 +68956,92.0,9.0,9.0,9.0,9.0,9.0,9.0,19,1.67 +68999,,,,,,,,0, +24817,94.0,10.0,9.0,10.0,10.0,10.0,9.0,7,0.6 +37337,,,,,,,,0, +2903,89.0,10.0,9.0,9.0,10.0,10.0,9.0,22,3.03 +37478,,,,,,,,0, +38829,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.52 +69331,,,,,,,,0, +75924,93.0,9.0,9.0,9.0,9.0,9.0,9.0,4,0.37 +61384,78.0,8.0,8.0,9.0,8.0,9.0,8.0,22,1.91 +2428,,,,,,,,0, +9624,,,,,,,,0, +70146,94.0,10.0,9.0,10.0,10.0,10.0,10.0,65,6.15 +25735,95.0,10.0,10.0,10.0,10.0,9.0,9.0,28,2.46 +8275,,,,,,,,0, +30492,100.0,10.0,10.0,10.0,10.0,10.0,10.0,23,2.35 +54312,50.0,5.0,3.0,3.0,3.0,7.0,4.0,2,0.36 +57001,,,,,,,,0, +36910,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.8 +52663,100.0,10.0,10.0,10.0,10.0,10.0,9.0,10,0.97 +62129,,,,,,,,0, +3931,93.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.65 +25100,96.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.58 +1880,,,,,,,,0, +6988,97.0,10.0,9.0,9.0,10.0,10.0,10.0,7,0.63 +40479,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +3120,100.0,8.0,8.0,10.0,10.0,10.0,10.0,1,0.23 +66182,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +27395,90.0,10.0,9.0,9.0,10.0,10.0,9.0,4,0.93 +72232,84.0,9.0,9.0,8.0,9.0,9.0,9.0,14,1.25 +10986,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,1.82 +10394,97.0,10.0,10.0,10.0,10.0,10.0,9.0,36,3.17 +59777,92.0,10.0,10.0,10.0,10.0,10.0,9.0,15,1.33 +31652,85.0,9.0,9.0,10.0,9.0,10.0,9.0,4,0.44 +22231,80.0,9.0,9.0,10.0,9.0,10.0,7.0,2,0.58 +52174,,,,,,,,0, +72525,,,,,,,,0, +8717,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.77 +37552,,,,,,,,0, +55303,,,,,,,,0, +9571,,,,,,,,0, +59135,,,,,,,,0, +42876,,,,,,,,0, +64184,,,,,,,,0, +46149,89.0,10.0,9.0,9.0,8.0,10.0,9.0,9,0.79 +41065,,,,,,,,0, +14364,,,,,,,,0, +6308,,,,,,,,0, +27755,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.2 +30266,,,,,,,,0, +21402,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.09 +56517,,,,,,,,0, +442,93.0,10.0,9.0,10.0,10.0,10.0,10.0,51,4.9 +38274,80.0,9.0,8.0,10.0,9.0,10.0,8.0,8,0.7 +6676,90.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.42 +51065,99.0,10.0,10.0,10.0,10.0,9.0,10.0,18,1.71 +61976,97.0,10.0,10.0,10.0,10.0,10.0,10.0,43,3.99 +50274,76.0,9.0,7.0,9.0,7.0,8.0,8.0,5,0.44 +71804,96.0,10.0,9.0,9.0,10.0,10.0,10.0,15,1.32 +57530,95.0,10.0,10.0,10.0,10.0,9.0,10.0,45,3.99 +16675,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.18 +49508,88.0,9.0,9.0,9.0,9.0,10.0,10.0,17,1.85 +7378,98.0,10.0,10.0,10.0,10.0,10.0,10.0,17,1.77 +14560,65.0,8.0,10.0,6.0,7.0,8.0,8.0,4,0.69 +44437,,,,,,,,0, +6947,,,,,,,,0, +36785,100.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.53 +17645,,,,,,,,0, +45128,80.0,9.0,9.0,9.0,10.0,10.0,9.0,2,0.19 +40168,,,,,,,,0, +1988,91.0,9.0,9.0,9.0,9.0,9.0,9.0,21,1.84 +34483,87.0,9.0,9.0,9.0,8.0,8.0,8.0,9,0.9 +41158,,,,,,,,0, +72528,94.0,10.0,10.0,10.0,10.0,10.0,9.0,20,1.83 +21174,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.17 +47754,80.0,6.0,10.0,10.0,10.0,10.0,8.0,1,0.09 +9600,80.0,10.0,4.0,10.0,10.0,10.0,10.0,2,0.36 +76681,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.27 +67561,93.0,10.0,9.0,9.0,9.0,9.0,9.0,3,0.31 +32388,60.0,6.0,6.0,6.0,6.0,6.0,6.0,2,0.18 +9127,100.0,10.0,8.0,10.0,10.0,10.0,8.0,2,0.38 +37423,,,,,,,,0, +14957,95.0,10.0,9.0,10.0,10.0,10.0,9.0,4,0.36 +29751,,,,,,,,0, +36078,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +36402,70.0,8.0,10.0,8.0,9.0,10.0,9.0,2,0.5 +64206,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.18 +41633,80.0,10.0,8.0,8.0,7.0,10.0,8.0,5,1.13 +56303,91.0,10.0,9.0,10.0,10.0,10.0,10.0,11,4.18 +16457,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,1.15 +5870,93.0,10.0,10.0,10.0,10.0,9.0,10.0,53,4.85 +20394,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.23 +45939,86.0,9.0,9.0,8.0,9.0,10.0,8.0,15,1.33 +58140,,,,,,,,0, +48656,96.0,10.0,10.0,10.0,10.0,9.0,10.0,26,3.53 +6896,100.0,10.0,10.0,10.0,10.0,9.0,10.0,11,0.97 +11847,85.0,8.0,10.0,10.0,9.0,10.0,10.0,4,0.36 +45119,94.0,10.0,10.0,10.0,10.0,10.0,9.0,14,1.37 +28440,95.0,10.0,9.0,10.0,10.0,10.0,10.0,13,1.14 +36808,,,,,,,,0, +30516,60.0,6.0,6.0,8.0,6.0,8.0,6.0,3,0.26 +2737,,,,,,,,0, +55869,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.81 +69286,98.0,10.0,10.0,10.0,10.0,9.0,10.0,11,0.97 +39567,87.0,9.0,10.0,9.0,10.0,9.0,9.0,17,1.59 +48264,,,,,,,,0, +60911,100.0,10.0,10.0,9.0,10.0,10.0,10.0,3,0.37 +4618,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.35 +53526,93.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.55 +54981,80.0,9.0,7.0,9.0,9.0,9.0,8.0,5,0.44 +29775,88.0,9.0,9.0,10.0,10.0,10.0,9.0,28,3.22 +20161,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.72 +28467,98.0,10.0,10.0,10.0,10.0,10.0,9.0,12,1.1 +32141,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,2.08 +12782,,,,,,,,0, +67462,90.0,9.0,9.0,10.0,10.0,10.0,9.0,66,5.74 +4343,98.0,10.0,10.0,9.0,10.0,10.0,9.0,10,1.05 +12348,87.0,9.0,9.0,9.0,9.0,10.0,9.0,62,5.45 +49089,,,,,,,,0, +75200,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +12357,74.0,8.0,6.0,9.0,9.0,7.0,7.0,7,0.66 +61327,96.0,10.0,9.0,10.0,10.0,9.0,9.0,15,1.91 +14729,90.0,10.0,8.0,10.0,10.0,10.0,10.0,6,0.75 +54091,96.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.88 +3603,90.0,9.0,8.0,10.0,10.0,9.0,10.0,2,0.18 +12609,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.74 +49863,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.09 +13803,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.73 +61904,98.0,9.0,9.0,10.0,10.0,9.0,10.0,13,1.7 +19809,,,,,,,,1,0.09 +30527,78.0,8.0,8.0,9.0,8.0,9.0,8.0,47,4.17 +47343,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.1 +22539,99.0,10.0,10.0,10.0,10.0,10.0,10.0,37,3.54 +65614,,,,,,,,0, +40633,90.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.68 +8258,78.0,8.0,7.0,9.0,9.0,9.0,8.0,11,0.98 +33935,,,,,,,,0, +51004,85.0,9.0,8.0,9.0,9.0,9.0,9.0,72,6.33 +58522,,,,,,,,1,0.09 +9046,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +11458,,,,,,,,1,0.09 +56411,96.0,10.0,10.0,10.0,10.0,10.0,10.0,15,1.5 +64570,100.0,10.0,10.0,10.0,10.0,9.0,10.0,14,1.24 +55476,78.0,8.0,8.0,9.0,8.0,9.0,8.0,22,1.91 +62268,,,,,,,,0, +7044,92.0,10.0,9.0,10.0,9.0,10.0,9.0,51,4.5 +45925,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.2 +3067,96.0,10.0,10.0,10.0,10.0,10.0,10.0,37,3.44 +20684,93.0,10.0,9.0,10.0,10.0,9.0,9.0,4,0.48 +43376,97.0,10.0,10.0,10.0,10.0,10.0,9.0,6,1.04 +28753,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.76 +46083,87.0,8.0,9.0,10.0,10.0,8.0,10.0,6,0.53 +2382,95.0,10.0,10.0,10.0,10.0,10.0,10.0,43,3.78 +9616,86.0,9.0,8.0,9.0,9.0,9.0,9.0,49,4.32 +57684,80.0,8.0,6.0,8.0,10.0,10.0,8.0,1,0.09 +67668,,,,,,,,0, +40644,,,,,,,,0, +75652,,,,,,,,0, +11053,,,,,,,,0, +37380,,,,,,,,0, +31733,88.0,9.0,10.0,7.0,8.0,9.0,9.0,8,0.86 +33500,95.0,10.0,9.0,10.0,10.0,10.0,10.0,23,2.15 +44593,86.0,9.0,7.0,10.0,10.0,10.0,9.0,7,0.62 +24214,,,,,,,,0, +49042,,,,,,,,0, +15542,,,,,,,,0, +54611,97.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.92 +60908,94.0,9.0,10.0,10.0,10.0,10.0,9.0,10,1.08 +7811,,,,,,,,0, +63287,,,,,,,,0, +56284,96.0,10.0,10.0,10.0,10.0,9.0,10.0,27,2.51 +68195,,,,,,,,0, +5739,,,,,,,,0, +40019,97.0,10.0,10.0,10.0,10.0,10.0,10.0,12,1.82 +37147,100.0,4.0,8.0,8.0,8.0,10.0,10.0,1,0.09 +3510,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.11 +34905,96.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.88 +47356,89.0,10.0,8.0,10.0,10.0,10.0,10.0,15,1.67 +68468,84.0,9.0,9.0,10.0,10.0,10.0,9.0,56,4.94 +10631,98.0,10.0,10.0,10.0,10.0,10.0,10.0,28,2.44 +36464,86.0,9.0,8.0,9.0,9.0,9.0,9.0,41,3.77 +11086,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.24 +64109,,,,,,,,1,0.1 +14025,,,,,,,,0, +68308,,,,,,,,0, +13272,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +3192,94.0,9.0,9.0,10.0,10.0,10.0,9.0,7,0.63 +53364,80.0,9.0,7.0,10.0,10.0,8.0,7.0,3,1.34 +28857,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.82 +50813,100.0,9.0,9.0,10.0,10.0,9.0,9.0,4,0.46 +42705,,,,,,,,1,0.1 +59896,,,,,,,,0, +69638,,,,,,,,1,0.09 +33529,100.0,10.0,10.0,10.0,10.0,10.0,10.0,59,5.51 +34555,85.0,9.0,8.0,9.0,9.0,9.0,8.0,44,3.94 +73530,,,,,,,,0, +34270,,,,,,,,0, +66547,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.32 +13591,95.0,10.0,10.0,10.0,10.0,10.0,10.0,31,2.74 +69984,,,,,,,,0, +33564,,,,,,,,0, +45632,83.0,9.0,8.0,9.0,9.0,9.0,9.0,56,5.25 +17363,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.56 +77037,,,,,,,,1,0.1 +851,98.0,10.0,10.0,8.0,10.0,10.0,10.0,9,0.91 +70703,97.0,10.0,9.0,10.0,10.0,10.0,10.0,7,0.62 +38230,,,,,,,,0, +61935,,,,,,,,0, +30629,,,,,,,,0, +17227,70.0,7.0,7.0,8.0,7.0,8.0,7.0,12,1.18 +68629,100.0,10.0,10.0,10.0,10.0,9.0,10.0,12,1.31 +56743,91.0,10.0,9.0,9.0,10.0,9.0,9.0,12,1.06 +20643,94.0,10.0,9.0,10.0,10.0,9.0,10.0,7,0.71 +16487,,,,,,,,0, +58529,100.0,10.0,10.0,10.0,9.0,10.0,10.0,11,1.23 +35658,90.0,9.0,9.0,10.0,10.0,10.0,9.0,48,4.38 +39087,100.0,10.0,9.0,10.0,10.0,9.0,10.0,9,0.84 +59227,97.0,10.0,9.0,10.0,10.0,10.0,9.0,6,0.61 +46598,97.0,9.0,10.0,10.0,10.0,10.0,9.0,6,0.56 +15640,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,1.22 +23857,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.11 +24759,,,,,,,,0, +69601,87.0,9.0,9.0,10.0,10.0,10.0,9.0,25,2.28 +58519,,,,,,,,0, +55461,,,,,,,,0, +8108,,,,,,,,0, +28955,80.0,6.0,8.0,10.0,6.0,8.0,8.0,1,0.33 +40035,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.1 +7110,89.0,9.0,9.0,9.0,10.0,10.0,9.0,70,6.19 +29905,93.0,10.0,9.0,9.0,10.0,9.0,9.0,18,1.83 +2484,93.0,10.0,9.0,9.0,10.0,10.0,10.0,3,0.38 +39674,100.0,8.0,8.0,10.0,10.0,10.0,10.0,1,0.17 +41750,83.0,8.0,9.0,8.0,9.0,9.0,8.0,6,1.09 +11261,97.0,10.0,10.0,9.0,9.0,10.0,10.0,23,2.14 +3330,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,1.1 +11421,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.28 +31976,91.0,10.0,10.0,9.0,9.0,10.0,9.0,7,0.72 +9383,85.0,9.0,9.0,9.0,10.0,9.0,9.0,36,3.32 +23273,100.0,9.0,10.0,10.0,10.0,9.0,10.0,5,0.46 +70980,,,,,,,,0, +18276,96.0,10.0,10.0,10.0,10.0,9.0,10.0,36,3.22 +27637,,,,,,,,0, +30329,,,,,,,,1,0.09 +29218,88.0,9.0,10.0,8.0,9.0,8.0,9.0,5,0.71 +55282,,,,,,,,0, +9911,94.0,9.0,9.0,9.0,9.0,9.0,9.0,7,0.67 +63934,100.0,10.0,10.0,9.0,10.0,9.0,10.0,3,0.29 +72252,94.0,10.0,9.0,10.0,10.0,9.0,9.0,103,9.34 +70508,97.0,10.0,10.0,10.0,10.0,10.0,10.0,15,1.37 +3787,94.0,10.0,9.0,10.0,10.0,9.0,10.0,7,0.64 +12668,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.7 +16540,,,,,,,,0, +26480,83.0,9.0,9.0,10.0,9.0,8.0,9.0,55,4.84 +29621,87.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.35 +52788,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.27 +28485,68.0,7.0,6.0,10.0,9.0,9.0,7.0,10,0.95 +74163,93.0,9.0,10.0,10.0,10.0,9.0,9.0,29,2.54 +58716,99.0,10.0,10.0,10.0,10.0,10.0,10.0,89,8.04 +45590,90.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.38 +3781,80.0,8.0,9.0,10.0,9.0,9.0,8.0,42,3.7 +2329,92.0,9.0,8.0,10.0,9.0,9.0,9.0,5,0.52 +12790,100.0,10.0,10.0,10.0,10.0,10.0,10.0,49,4.32 +44692,88.0,9.0,9.0,10.0,10.0,9.0,9.0,46,4.34 +14062,87.0,9.0,9.0,10.0,10.0,10.0,9.0,41,3.62 +15394,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +2789,81.0,9.0,8.0,9.0,9.0,10.0,8.0,40,3.64 +11118,,,,,,,,0, +44952,,,,,,,,1,0.1 +41308,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.83 +51091,99.0,10.0,10.0,10.0,10.0,9.0,10.0,16,1.49 +11593,96.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.6 +12724,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.24 +48833,99.0,10.0,10.0,10.0,10.0,10.0,10.0,18,1.8 +40254,92.0,10.0,9.0,10.0,10.0,10.0,9.0,5,0.44 +71569,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.55 +57135,,,,,,,,1,0.09 +12201,99.0,10.0,10.0,10.0,10.0,10.0,10.0,25,2.29 +3303,,,,,,,,0, +61812,99.0,10.0,10.0,10.0,10.0,10.0,10.0,31,2.98 +32977,60.0,10.0,4.0,10.0,10.0,10.0,6.0,1,0.11 +34970,95.0,9.0,10.0,10.0,10.0,9.0,10.0,4,0.54 +76117,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.71 +23069,92.0,9.0,9.0,10.0,10.0,10.0,9.0,32,3.48 +63711,93.0,10.0,9.0,10.0,10.0,10.0,9.0,29,2.94 +20770,95.0,10.0,10.0,10.0,10.0,9.0,10.0,22,2.28 +50887,,,,,,,,0, +65271,98.0,10.0,10.0,10.0,10.0,9.0,9.0,12,1.17 +68563,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.31 +54901,90.0,9.0,8.0,10.0,10.0,10.0,9.0,9,0.89 +31115,,,,,,,,0, +62971,88.0,10.0,10.0,10.0,9.0,9.0,8.0,10,1.22 +17512,81.0,8.0,9.0,9.0,8.0,9.0,8.0,15,1.54 +39701,98.0,10.0,10.0,10.0,10.0,9.0,10.0,10,0.88 +40322,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.37 +45711,80.0,8.0,8.0,8.0,7.0,8.0,6.0,5,0.89 +22241,84.0,9.0,9.0,10.0,10.0,9.0,9.0,40,3.56 +57483,,,,,,,,0, +50252,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.09 +58981,100.0,10.0,10.0,10.0,10.0,9.0,9.0,6,0.79 +77071,93.0,10.0,8.0,10.0,10.0,9.0,10.0,46,4.47 +16078,,,,,,,,0, +62150,,,,,,,,0, +50792,,,,,,,,0, +14431,100.0,10.0,8.0,10.0,10.0,8.0,10.0,1,0.11 +11579,,,,,,,,0, +2620,20.0,2.0,2.0,6.0,6.0,6.0,2.0,1,0.09 +72892,60.0,8.0,4.0,6.0,6.0,8.0,8.0,3,0.41 +32238,96.0,10.0,10.0,10.0,10.0,10.0,10.0,17,2.01 +18772,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +39645,,,,,,,,0, +58959,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +27599,,,,,,,,0, +36308,80.0,10.0,10.0,10.0,10.0,8.0,8.0,2,0.53 +12195,97.0,10.0,10.0,10.0,10.0,10.0,10.0,32,3.06 +48469,99.0,10.0,10.0,10.0,10.0,10.0,10.0,27,2.82 +5062,,,,,,,,0, +38540,80.0,10.0,10.0,9.0,8.0,8.0,9.0,4,0.45 +14107,98.0,10.0,10.0,9.0,10.0,10.0,10.0,12,1.25 +39733,,,,,,,,0, +57087,96.0,10.0,9.0,10.0,10.0,9.0,10.0,46,4.37 +32764,,,,,,,,0, +71440,,,,,,,,0, +64435,96.0,10.0,9.0,10.0,10.0,10.0,10.0,9,0.87 +68027,,,,,,,,0, +5410,,,,,,,,0, +75853,92.0,10.0,9.0,10.0,10.0,10.0,9.0,67,6.26 +54515,,,,,,,,1,0.12 +64021,90.0,9.0,9.0,10.0,10.0,10.0,9.0,67,6.22 +40527,90.0,9.0,9.0,10.0,10.0,10.0,9.0,75,6.82 +68006,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.19 +11338,80.0,7.0,10.0,7.0,8.0,10.0,8.0,3,0.3 +60700,67.0,7.0,7.0,7.0,9.0,9.0,7.0,3,0.28 +75009,98.0,9.0,10.0,10.0,9.0,9.0,10.0,10,0.91 +65909,,,,,,,,1,0.18 +15358,,,,,,,,0, +46867,,,,,,,,0, +40899,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.18 +16894,71.0,8.0,7.0,8.0,7.0,8.0,8.0,10,0.96 +74547,95.0,10.0,9.0,10.0,10.0,9.0,10.0,48,4.39 +45595,,,,,,,,0, +75704,100.0,10.0,9.0,10.0,10.0,10.0,10.0,10,4.05 +33201,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.76 +38357,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.19 +36457,97.0,10.0,10.0,10.0,10.0,10.0,10.0,22,2.02 +48994,92.0,9.0,9.0,10.0,10.0,9.0,9.0,11,2.08 +59097,84.0,8.0,9.0,8.0,8.0,10.0,9.0,14,1.25 +56924,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.27 +9712,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,1.28 +43098,93.0,10.0,9.0,10.0,10.0,9.0,9.0,6,1.18 +20848,,,,,,,,0, +60386,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.56 +7214,90.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.23 +54828,,,,,,,,1,0.09 +53936,97.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.7 +8335,85.0,9.0,8.0,8.0,8.0,9.0,8.0,13,1.34 +38050,,,,,,,,0, +32718,99.0,10.0,10.0,10.0,10.0,9.0,10.0,14,1.37 +60309,83.0,8.0,10.0,8.0,9.0,9.0,8.0,8,0.74 +70937,96.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.55 +70795,92.0,9.0,9.0,9.0,9.0,10.0,10.0,9,0.82 +11607,100.0,10.0,10.0,8.0,10.0,10.0,8.0,1,0.7 +2751,96.0,10.0,8.0,10.0,10.0,10.0,10.0,5,0.46 +64929,99.0,10.0,10.0,10.0,10.0,10.0,10.0,39,3.67 +72274,,,,,,,,0, +35544,96.0,9.0,9.0,10.0,10.0,10.0,10.0,5,0.52 +28092,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.3 +63862,,,,,,,,0, +8391,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.09 +32413,80.0,8.0,10.0,9.0,8.0,9.0,8.0,4,0.37 +16425,91.0,9.0,9.0,10.0,10.0,9.0,9.0,14,1.4 +73019,70.0,8.0,10.0,9.0,9.0,7.0,8.0,2,0.21 +74203,99.0,10.0,10.0,10.0,10.0,9.0,10.0,15,1.47 +49886,100.0,10.0,10.0,9.0,9.0,10.0,10.0,3,0.45 +24469,,,,,,,,1,0.09 +69685,80.0,8.0,9.0,10.0,10.0,9.0,9.0,7,1.14 +39406,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.45 +48437,99.0,10.0,10.0,10.0,10.0,10.0,10.0,41,4.01 +26509,80.0,7.0,7.0,7.0,9.0,9.0,8.0,6,0.55 +66124,89.0,9.0,10.0,10.0,10.0,9.0,10.0,16,1.48 +21648,96.0,10.0,9.0,10.0,10.0,8.0,10.0,5,0.5 +31956,99.0,10.0,10.0,10.0,10.0,10.0,10.0,28,2.97 +62581,87.0,9.0,9.0,9.0,9.0,9.0,9.0,99,9.22 +17949,,,,,,,,0, +2320,,,,,,,,0, +56802,100.0,10.0,10.0,10.0,10.0,9.0,8.0,2,0.22 +49836,,,,,,,,0, +29375,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.36 +25787,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.93 +66428,,,,,,,,0, +4262,100.0,10.0,10.0,10.0,10.0,10.0,10.0,37,3.5 +45770,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,1.1 +17278,,,,,,,,0, +1268,,,,,,,,0, +38554,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.22 +65874,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.18 +53594,,,,,,,,0, +63599,77.0,9.0,8.0,9.0,9.0,9.0,8.0,41,3.82 +68787,88.0,9.0,8.0,9.0,9.0,9.0,9.0,8,0.81 +72149,,,,,,,,0, +11405,,,,,,,,0, +47529,,,,,,,,0, +44560,,,,,,,,1, +38867,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,1.26 +37609,,,,,,,,0, +19552,100.0,10.0,8.0,10.0,10.0,8.0,10.0,2,0.19 +61610,80.0,8.0,8.0,6.0,8.0,8.0,8.0,1,0.11 +58337,,,,,,,,0, +61754,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +59645,93.0,10.0,9.0,10.0,10.0,10.0,9.0,18,1.68 +19530,,,,,,,,0, +2740,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.26 +34661,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.2 +21275,,,,,,,,0, +29719,70.0,8.0,7.0,9.0,10.0,9.0,8.0,3,0.28 +5065,99.0,10.0,10.0,10.0,10.0,10.0,10.0,19,1.7 +7104,93.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.72 +24986,98.0,10.0,10.0,9.0,10.0,9.0,9.0,8,0.88 +57296,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.93 +48146,80.0,10.0,10.0,10.0,10.0,6.0,8.0,1,0.09 +74619,,,,,,,,0, +61521,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.42 +18979,94.0,10.0,10.0,10.0,10.0,10.0,10.0,88,8.33 +17837,89.0,10.0,8.0,10.0,10.0,10.0,9.0,9,0.86 +41473,99.0,10.0,10.0,10.0,10.0,10.0,10.0,39,4.08 +18192,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.11 +64165,98.0,10.0,10.0,10.0,10.0,10.0,10.0,51,4.75 +15439,94.0,9.0,10.0,10.0,10.0,10.0,9.0,7,2.02 +31748,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.46 +29201,,,,,,,,0, +24503,40.0,6.0,7.0,8.0,6.0,5.0,5.0,2,0.39 +6375,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.8 +36641,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.22 +6030,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.48 +65360,80.0,10.0,10.0,10.0,10.0,8.0,8.0,2,0.19 +71897,99.0,10.0,10.0,10.0,10.0,9.0,10.0,36,3.33 +70611,93.0,10.0,10.0,10.0,9.0,9.0,9.0,32,2.87 +60601,100.0,9.0,10.0,9.0,9.0,10.0,9.0,7,0.79 +27973,90.0,9.0,10.0,10.0,10.0,10.0,10.0,3,0.42 +51087,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +25059,,,,,,,,0, +42773,95.0,9.0,10.0,9.0,9.0,9.0,10.0,26,2.36 +24112,87.0,9.0,9.0,9.0,9.0,9.0,7.0,3,0.43 +5987,91.0,9.0,10.0,10.0,9.0,8.0,9.0,28,2.55 +5229,93.0,10.0,10.0,9.0,10.0,10.0,9.0,27,2.6 +39499,93.0,10.0,10.0,10.0,10.0,9.0,9.0,24,2.21 +49437,94.0,10.0,9.0,10.0,10.0,10.0,9.0,25,2.36 +69988,93.0,10.0,10.0,8.0,10.0,10.0,9.0,16,1.9 +15096,93.0,10.0,10.0,9.0,10.0,10.0,9.0,12,1.54 +70881,80.0,8.0,8.0,8.0,8.0,8.0,6.0,2,0.19 +27838,,,,,,,,0, +62552,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.29 +10384,83.0,8.0,8.0,8.0,9.0,8.0,8.0,23,2.05 +28034,90.0,9.0,9.0,9.0,10.0,9.0,8.0,6,0.63 +31201,82.0,9.0,9.0,9.0,10.0,9.0,9.0,11,1.48 +68770,97.0,10.0,10.0,10.0,10.0,9.0,10.0,7,5.68 +4436,86.0,9.0,9.0,9.0,9.0,9.0,9.0,10,1.21 +73567,,,,,,,,0, +15386,87.0,9.0,10.0,9.0,10.0,10.0,9.0,3,0.99 +3171,90.0,10.0,9.0,10.0,10.0,9.0,9.0,9,0.88 +17211,100.0,10.0,9.0,10.0,10.0,10.0,9.0,3,0.31 +69340,90.0,8.0,8.0,10.0,10.0,9.0,8.0,2,0.62 +39470,94.0,10.0,9.0,10.0,10.0,10.0,10.0,14,1.3 +23630,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.79 +12788,65.0,8.0,8.0,7.0,7.0,8.0,6.0,4,0.4 +72137,100.0,10.0,10.0,10.0,10.0,9.0,10.0,21,1.92 +29606,84.0,8.0,8.0,8.0,8.0,8.0,8.0,5,0.47 +56281,90.0,9.0,10.0,9.0,9.0,8.0,9.0,2,0.19 +34912,93.0,9.0,9.0,10.0,10.0,9.0,9.0,8,0.76 +7145,94.0,10.0,8.0,9.0,9.0,10.0,10.0,16,1.73 +25532,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.12 +41000,99.0,10.0,10.0,10.0,10.0,10.0,10.0,19,2.02 +6503,91.0,10.0,9.0,10.0,10.0,10.0,10.0,17,1.63 +57982,97.0,10.0,10.0,10.0,10.0,10.0,10.0,60,5.45 +25635,,,,,,,,0, +68224,92.0,9.0,9.0,10.0,10.0,10.0,9.0,22,2.31 +27045,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +52273,83.0,9.0,9.0,9.0,8.0,9.0,8.0,7,0.67 +59187,93.0,10.0,9.0,10.0,10.0,10.0,9.0,39,3.62 +33341,97.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.99 +47621,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +42940,,,,,,,,0, +71290,78.0,8.0,8.0,10.0,9.0,8.0,8.0,19,2.19 +14017,99.0,10.0,10.0,10.0,10.0,10.0,10.0,19,1.99 +74975,98.0,10.0,10.0,10.0,10.0,9.0,10.0,32,2.95 +71257,93.0,10.0,10.0,10.0,10.0,10.0,10.0,3,2.81 +37916,100.0,10.0,10.0,10.0,10.0,9.0,10.0,11,1.69 +35647,96.0,10.0,10.0,10.0,10.0,9.0,9.0,14,3.26 +35875,,,,,,,,0, +60126,78.0,9.0,10.0,9.0,7.0,10.0,9.0,8,0.73 +64065,100.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.23 +4749,95.0,10.0,9.0,10.0,10.0,10.0,10.0,21,2.15 +58497,,,,,,,,0, +34169,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +28248,60.0,6.0,6.0,6.0,6.0,5.0,5.0,2,0.18 +23259,96.0,10.0,10.0,10.0,10.0,10.0,9.0,17,2.42 +8647,92.0,10.0,9.0,10.0,10.0,10.0,9.0,24,2.42 +53060,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.76 +38548,,,,,,,,0, +33665,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.46 +34393,96.0,9.0,9.0,9.0,10.0,9.0,9.0,11,1.51 +65886,97.0,10.0,9.0,10.0,10.0,9.0,10.0,13,1.35 +74096,99.0,10.0,10.0,10.0,10.0,10.0,9.0,17,1.66 +41667,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.7 +47859,60.0,8.0,6.0,10.0,10.0,8.0,8.0,1,0.11 +32298,,,,,,,,0, +56587,88.0,9.0,9.0,10.0,10.0,7.0,9.0,16,1.49 +12242,93.0,9.0,10.0,10.0,10.0,9.0,9.0,16,1.54 +5886,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.12 +36494,84.0,9.0,8.0,9.0,9.0,9.0,8.0,24,2.29 +63503,100.0,10.0,10.0,10.0,8.0,10.0,10.0,1,0.1 +66661,75.0,7.0,7.0,7.0,7.0,8.0,8.0,22,2.01 +48145,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.78 +10197,85.0,9.0,9.0,10.0,9.0,9.0,8.0,26,3.7 +73084,92.0,10.0,10.0,10.0,10.0,10.0,10.0,13,1.17 +3600,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.49 +8894,100.0,9.0,10.0,8.0,9.0,10.0,9.0,3,0.27 +50105,67.0,7.0,9.0,5.0,5.0,9.0,7.0,3,0.28 +50086,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,1.04 +35254,97.0,10.0,10.0,9.0,10.0,10.0,10.0,7,0.72 +58676,97.0,10.0,9.0,10.0,10.0,9.0,10.0,83,7.66 +23715,93.0,9.0,9.0,10.0,10.0,10.0,10.0,6,0.56 +10650,80.0,8.0,8.0,6.0,10.0,8.0,10.0,1,0.25 +68593,,,,,,,,0, +49645,97.0,10.0,10.0,10.0,10.0,10.0,10.0,58,5.42 +67889,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.24 +24539,97.0,10.0,10.0,10.0,10.0,10.0,10.0,51,4.69 +42930,94.0,10.0,9.0,9.0,9.0,9.0,9.0,7,0.68 +4032,94.0,9.0,9.0,10.0,10.0,10.0,9.0,7,0.67 +44909,94.0,10.0,10.0,10.0,10.0,10.0,9.0,13,1.55 +60551,92.0,9.0,9.0,10.0,10.0,10.0,9.0,83,7.76 +41621,86.0,9.0,9.0,9.0,9.0,10.0,9.0,32,2.92 +61247,,,,,,,,0, +2411,87.0,9.0,9.0,9.0,9.0,8.0,9.0,20,1.9 +192,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.97 +19140,,,,,,,,0, +32836,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.36 +53492,,,,,,,,1,0.46 +71074,96.0,10.0,10.0,10.0,10.0,10.0,10.0,11,1.05 +74411,,,,,,,,0, +8878,100.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.59 +41920,99.0,10.0,10.0,10.0,10.0,10.0,10.0,66,6.09 +61898,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.26 +32602,20.0,2.0,2.0,2.0,2.0,10.0,2.0,1,0.11 +12039,80.0,7.0,6.0,10.0,10.0,9.0,7.0,2,0.21 +12026,92.0,10.0,10.0,10.0,10.0,10.0,10.0,27,2.44 +50316,,,,,,,,0, +74215,89.0,9.0,8.0,10.0,9.0,10.0,9.0,30,2.8 +5080,,,,,,,,0, +54085,,,,,,,,0, +44822,93.0,9.0,9.0,10.0,10.0,10.0,10.0,7,0.65 +30974,88.0,9.0,9.0,10.0,10.0,9.0,9.0,53,4.85 +45500,100.0,10.0,10.0,10.0,10.0,10.0,10.0,25,2.38 +39332,92.0,9.0,9.0,8.0,10.0,10.0,10.0,7,0.69 +5885,86.0,9.0,9.0,9.0,10.0,10.0,9.0,26,2.95 +21692,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.9 +5811,85.0,9.0,9.0,9.0,9.0,9.0,8.0,15,1.36 +72049,97.0,10.0,9.0,9.0,10.0,10.0,9.0,6,0.65 +28626,92.0,10.0,9.0,9.0,9.0,10.0,10.0,5,0.6 +56240,97.0,10.0,10.0,10.0,10.0,10.0,10.0,12,1.38 +41094,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.4 +58178,,,,,,,,1,0.1 +64583,93.0,10.0,10.0,10.0,10.0,10.0,9.0,16,1.5 +16050,88.0,8.0,7.0,10.0,10.0,9.0,9.0,11,1.01 +74479,80.0,9.0,10.0,9.0,8.0,10.0,9.0,4,0.66 +4163,100.0,10.0,10.0,10.0,10.0,10.0,10.0,24,2.28 +6053,97.0,10.0,10.0,10.0,10.0,10.0,10.0,20,2.0 +73492,,,,,,,,0, +42264,,,,,,,,0, +41979,94.0,9.0,10.0,10.0,9.0,9.0,9.0,21,2.07 +71210,90.0,9.0,7.0,9.0,10.0,9.0,9.0,3,0.87 +53998,80.0,9.0,7.0,9.0,9.0,9.0,8.0,15,1.42 +48824,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.26 +65944,90.0,10.0,8.0,10.0,8.0,10.0,9.0,2,0.2 +73565,88.0,8.0,9.0,7.0,7.0,10.0,8.0,5,0.76 +76439,80.0,8.0,8.0,8.0,8.0,8.0,10.0,2,0.21 +33545,,,,,,,,2,0.18 +65795,,,,,,,,0, +17390,,,,,,,,0, +18423,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.26 +48666,,,,,,,,0, +32666,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.24 +71786,90.0,10.0,7.0,10.0,9.0,10.0,10.0,2,0.25 +27583,98.0,10.0,10.0,10.0,10.0,9.0,10.0,9,0.92 +32691,,,,,,,,1,0.15 +39281,100.0,10.0,10.0,10.0,10.0,10.0,10.0,27,2.52 +69044,99.0,10.0,10.0,10.0,10.0,10.0,10.0,39,3.52 +31016,93.0,9.0,9.0,10.0,10.0,8.0,9.0,3,0.39 +54028,,,,,,,,1,0.09 +49505,,,,,,,,0, +71888,97.0,10.0,10.0,10.0,10.0,10.0,10.0,42,3.87 +37892,94.0,9.0,9.0,10.0,10.0,10.0,9.0,51,4.81 +3282,87.0,9.0,9.0,9.0,10.0,10.0,9.0,3,0.33 +63418,100.0,10.0,9.0,10.0,10.0,9.0,10.0,4,0.38 +34761,100.0,10.0,10.0,10.0,10.0,9.0,10.0,9,0.85 +51924,92.0,10.0,10.0,10.0,10.0,10.0,9.0,34,3.23 +10440,,,,,,,,0, +36219,96.0,10.0,10.0,10.0,10.0,10.0,9.0,61,6.0 +50208,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.22 +899,87.0,9.0,10.0,9.0,9.0,10.0,9.0,37,3.71 +62333,78.0,9.0,7.0,9.0,9.0,10.0,8.0,34,3.09 +40443,89.0,9.0,9.0,9.0,10.0,9.0,9.0,31,3.3 +35182,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.37 +60363,78.0,8.0,8.0,9.0,10.0,8.0,8.0,10,0.96 +54324,86.0,9.0,8.0,10.0,10.0,9.0,9.0,7,1.52 +52885,97.0,10.0,10.0,10.0,10.0,10.0,10.0,30,2.71 +40888,93.0,10.0,10.0,10.0,9.0,10.0,10.0,6,0.56 +74133,88.0,9.0,9.0,10.0,10.0,10.0,9.0,44,4.58 +65477,,,,,,,,1,0.09 +33612,89.0,9.0,9.0,9.0,10.0,9.0,9.0,37,3.87 +10405,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.54 +29453,90.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.32 +12719,92.0,10.0,9.0,10.0,10.0,9.0,9.0,5,0.76 +55919,,,,,,,,1,0.09 +70839,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.43 +63984,87.0,9.0,9.0,9.0,10.0,10.0,9.0,19,1.71 +25174,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.1 +39890,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.31 +47728,,,,,,,,0, +51373,96.0,10.0,10.0,10.0,10.0,10.0,10.0,12,1.37 +5813,96.0,10.0,9.0,9.0,10.0,10.0,10.0,5,0.48 +42275,,,,,,,,0, +34532,93.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.73 +8959,85.0,9.0,9.0,9.0,10.0,10.0,9.0,5,0.46 +19747,85.0,9.0,10.0,9.0,9.0,9.0,9.0,11,1.02 +32535,,,,,,,,0, +40847,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,1.21 +9439,90.0,9.0,9.0,9.0,10.0,9.0,9.0,47,4.34 +52010,91.0,10.0,10.0,9.0,9.0,9.0,9.0,30,3.09 +63960,70.0,9.0,6.0,6.0,10.0,9.0,6.0,2,0.19 +73594,,,,,,,,0, +34124,80.0,8.0,8.0,9.0,9.0,10.0,9.0,13,1.2 +63535,93.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.32 +50067,,,,,,,,0, +12870,98.0,10.0,10.0,10.0,10.0,10.0,10.0,30,4.05 +60698,90.0,10.0,10.0,9.0,9.0,8.0,9.0,27,2.66 +21992,100.0,10.0,10.0,9.0,10.0,10.0,10.0,5,0.57 +72249,99.0,10.0,9.0,10.0,10.0,10.0,10.0,19,1.95 +10590,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.31 +50899,91.0,9.0,8.0,9.0,10.0,10.0,9.0,11,1.1 +59059,80.0,6.0,10.0,4.0,6.0,10.0,8.0,1,0.18 +46347,,,,,,,,0, +35228,91.0,9.0,9.0,9.0,9.0,9.0,9.0,13,1.25 +42180,90.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.19 +29599,,,,,,,,0, +56235,98.0,10.0,10.0,10.0,10.0,10.0,10.0,22,2.1 +17820,,,,,,,,0, +34724,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.83 +29245,87.0,9.0,9.0,9.0,9.0,10.0,9.0,17,1.73 +58317,100.0,10.0,10.0,10.0,10.0,9.0,10.0,24,2.3 +65962,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.2 +12992,100.0,10.0,10.0,10.0,10.0,10.0,10.0,22,2.15 +8848,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.51 +61803,,,,,,,,0, +19417,94.0,10.0,9.0,10.0,10.0,9.0,9.0,62,5.59 +33578,98.0,10.0,10.0,10.0,10.0,9.0,10.0,11,1.08 +48105,97.0,10.0,10.0,10.0,10.0,10.0,10.0,31,2.84 +3501,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.11 +54189,,,,,,,,0, +16591,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +73508,,,,,,,,0, +47683,86.0,9.0,9.0,10.0,9.0,9.0,9.0,39,3.64 +29477,94.0,10.0,9.0,10.0,9.0,10.0,10.0,19,1.86 +23164,,,,,,,,0, +32526,88.0,9.0,9.0,10.0,10.0,10.0,9.0,16,1.62 +45858,,,,,,,,0, +63608,100.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.36 +47218,91.0,10.0,9.0,10.0,10.0,9.0,10.0,21,1.95 +59417,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.41 +32566,,,,,,,,0, +33903,100.0,10.0,10.0,10.0,10.0,9.0,10.0,11,1.1 +53611,98.0,10.0,10.0,10.0,10.0,10.0,9.0,11,1.05 +40824,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.19 +68734,,,,,,,,1,0.61 +15112,80.0,9.0,6.0,8.0,9.0,10.0,9.0,5,0.53 +17418,,,,,,,,0, +61956,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.96 +19636,100.0,10.0,8.0,9.0,10.0,8.0,9.0,3,0.28 +24153,88.0,10.0,8.0,9.0,10.0,10.0,9.0,10,1.52 +75258,100.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.77 +51673,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.21 +19782,94.0,10.0,10.0,10.0,10.0,10.0,10.0,40,3.6 +25830,,,,,,,,0, +17995,60.0,6.0,8.0,10.0,10.0,6.0,6.0,1,0.1 +51715,70.0,10.0,4.0,8.0,10.0,10.0,8.0,2,0.43 +52098,99.0,10.0,10.0,10.0,10.0,10.0,10.0,37,3.7 +48134,98.0,10.0,10.0,10.0,10.0,10.0,10.0,25,2.55 +47557,90.0,10.0,9.0,9.0,9.0,9.0,9.0,60,5.45 +20070,,,,,,,,0, +5521,100.0,10.0,10.0,8.0,10.0,10.0,10.0,1,0.23 +45348,93.0,9.0,10.0,10.0,10.0,10.0,9.0,4,0.69 +51859,70.0,6.0,10.0,10.0,10.0,10.0,7.0,2,0.22 +76417,,,,,,,,0, +26755,,,,,,,,0, +43268,,,,,,,,0, +60073,,,,,,,,0, +58347,,,,,,,,0, +68931,100.0,10.0,10.0,8.0,10.0,10.0,8.0,1,0.63 +16447,,,,,,,,0, +48796,,,,,,,,0, +12635,,,,,,,,0, +50419,95.0,10.0,10.0,10.0,10.0,10.0,9.0,20,1.91 +23370,80.0,10.0,10.0,8.0,10.0,10.0,8.0,1,1.0 +23379,,,,,,,,0, +53964,,,,,,,,0, +1559,90.0,9.0,8.0,9.0,10.0,10.0,9.0,29,2.64 +40604,80.0,10.0,10.0,10.0,8.0,10.0,8.0,1,0.22 +55714,96.0,10.0,10.0,10.0,10.0,9.0,9.0,6,0.58 +69393,100.0,8.0,8.0,10.0,10.0,10.0,8.0,1,0.11 +22297,90.0,10.0,10.0,10.0,9.0,9.0,8.0,2,0.79 +23950,98.0,10.0,10.0,10.0,10.0,9.0,10.0,18,2.04 +17098,99.0,10.0,10.0,10.0,10.0,9.0,10.0,19,1.95 +46427,93.0,9.0,10.0,9.0,10.0,9.0,9.0,17,1.58 +4106,77.0,8.0,7.0,8.0,8.0,9.0,8.0,27,2.48 +21660,81.0,8.0,8.0,8.0,8.0,9.0,8.0,14,1.43 +71761,,,,,,,,1,0.09 +75682,93.0,10.0,9.0,10.0,10.0,10.0,9.0,6,0.87 +60715,,,,,,,,0, +50439,86.0,9.0,9.0,9.0,10.0,10.0,9.0,19,2.35 +6050,93.0,10.0,9.0,10.0,10.0,9.0,10.0,72,6.65 +25642,98.0,10.0,10.0,10.0,10.0,10.0,9.0,12,1.14 +7940,100.0,10.0,10.0,10.0,10.0,10.0,9.0,18,1.76 +19399,89.0,9.0,9.0,9.0,9.0,9.0,9.0,7,0.66 +29050,97.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.64 +1566,85.0,10.0,8.0,10.0,10.0,9.0,9.0,9,0.83 +71342,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.69 +49850,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,1.05 +46970,,,,,,,,1,0.09 +53031,,,,,,,,0, +4155,93.0,10.0,9.0,10.0,10.0,8.0,10.0,6,0.59 +68130,,,,,,,,0, +41035,99.0,10.0,10.0,10.0,10.0,9.0,10.0,16,1.88 +2357,94.0,10.0,10.0,10.0,10.0,9.0,10.0,19,1.89 +55932,99.0,10.0,10.0,10.0,10.0,10.0,10.0,77,7.83 +28391,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.59 +49582,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.19 +35978,,,,,,,,0, +8587,80.0,10.0,6.0,10.0,10.0,10.0,6.0,9,0.82 +21538,,,,,,,,0, +28667,,,,,,,,0, +27217,,,,,,,,1,1.0 +37020,88.0,9.0,9.0,10.0,10.0,10.0,9.0,16,1.51 +23853,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.1 +26994,,,,,,,,1,0.09 +67643,80.0,8.0,9.0,9.0,10.0,10.0,8.0,3,0.33 +69324,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.32 +27798,98.0,10.0,10.0,10.0,9.0,10.0,9.0,8,1.92 +43705,100.0,8.0,10.0,10.0,10.0,8.0,8.0,1,0.12 +70436,93.0,10.0,10.0,10.0,10.0,9.0,10.0,9,1.06 +51772,,,,,,,,0, +69348,,,,,,,,0, +37343,100.0,10.0,9.0,10.0,10.0,8.0,10.0,8,0.75 +73487,97.0,10.0,9.0,9.0,10.0,10.0,10.0,8,0.88 +30730,88.0,9.0,8.0,9.0,10.0,9.0,9.0,8,1.52 +3623,,,,,,,,0, +5757,92.0,9.0,9.0,9.0,9.0,9.0,9.0,23,2.16 +64396,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.1 +50979,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.21 +59352,90.0,9.0,8.0,9.0,9.0,9.0,9.0,2,0.49 +34554,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.11 +57701,,,,,,,,0, +20207,73.0,7.0,5.0,9.0,9.0,8.0,7.0,6,0.58 +59456,,,,,,,,0, +38207,96.0,10.0,10.0,9.0,9.0,10.0,9.0,18,1.84 +19628,82.0,9.0,7.0,8.0,9.0,9.0,8.0,9,0.84 +73564,,,,,,,,0, +13868,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.3 +53282,96.0,10.0,10.0,9.0,9.0,10.0,10.0,9,1.13 +66369,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.46 +70485,92.0,10.0,10.0,9.0,9.0,10.0,9.0,23,2.09 +69714,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.88 +35168,87.0,10.0,9.0,10.0,10.0,10.0,9.0,5,0.48 +10752,97.0,10.0,10.0,9.0,10.0,9.0,10.0,26,2.48 +45716,93.0,9.0,10.0,10.0,8.0,10.0,9.0,8,0.95 +28363,77.0,9.0,7.0,9.0,9.0,10.0,8.0,44,4.11 +41236,,,,,,,,0, +69907,92.0,9.0,9.0,10.0,10.0,10.0,10.0,10,0.91 +8112,,,,,,,,1,0.1 +10069,,,,,,,,0, +66997,,,,,,,,0, +12646,97.0,9.0,10.0,10.0,10.0,10.0,9.0,15,1.44 +57919,93.0,9.0,9.0,9.0,9.0,10.0,9.0,20,1.83 +25996,95.0,10.0,9.0,10.0,10.0,10.0,9.0,13,1.51 +64090,90.0,8.0,10.0,10.0,8.0,8.0,9.0,2,0.5 +58313,70.0,8.0,7.0,9.0,8.0,10.0,8.0,8,0.88 +66546,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,3.44 +25350,100.0,10.0,10.0,9.0,9.0,10.0,10.0,4,0.44 +3682,,,,,,,,0, +60145,97.0,10.0,10.0,9.0,9.0,10.0,9.0,7,1.11 +60434,88.0,9.0,9.0,8.0,9.0,9.0,9.0,8,0.96 +11646,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.39 +21533,,,,,,,,0, +57502,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +9605,83.0,10.0,9.0,9.0,10.0,10.0,9.0,8,0.95 +6154,,,,,,,,0, +29249,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.18 +397,88.0,9.0,9.0,9.0,9.0,10.0,9.0,48,4.4 +50264,97.0,10.0,10.0,10.0,10.0,10.0,10.0,39,3.6 +26057,93.0,10.0,9.0,9.0,10.0,9.0,9.0,14,1.42 +69732,,,,,,,,0, +56789,84.0,9.0,8.0,9.0,9.0,10.0,9.0,30,3.8 +14373,97.0,10.0,10.0,9.0,10.0,10.0,9.0,6,1.29 +14387,71.0,8.0,7.0,10.0,9.0,8.0,8.0,16,1.49 +18120,70.0,7.0,6.0,8.0,9.0,9.0,6.0,2,0.53 +13426,,,,,,,,0, +25114,90.0,9.0,9.0,10.0,10.0,10.0,10.0,2,0.19 +26078,99.0,10.0,10.0,10.0,10.0,10.0,10.0,20,2.53 +16481,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +70042,100.0,10.0,10.0,10.0,10.0,9.0,10.0,9,0.88 +74100,80.0,8.0,8.0,10.0,10.0,9.0,8.0,4,0.43 +273,100.0,10.0,10.0,10.0,10.0,9.0,9.0,2,0.23 +19588,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,1.03 +34246,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.48 +34755,,,,,,,,0, +15206,97.0,10.0,10.0,10.0,10.0,10.0,9.0,7,0.84 +20574,88.0,9.0,9.0,8.0,10.0,9.0,9.0,10,0.98 +57051,,,,,,,,0, +70701,,,,,,,,0, +72197,100.0,10.0,10.0,9.0,10.0,10.0,10.0,22,2.25 +35500,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.27 +51873,,,,,,,,0, +11357,100.0,10.0,10.0,8.0,10.0,10.0,10.0,1,0.11 +6228,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.48 +13039,,,,,,,,0, +41995,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.11 +51570,,,,,,,,0, +40331,99.0,10.0,10.0,10.0,10.0,9.0,10.0,18,1.79 +72887,,,,,,,,0, +55215,98.0,10.0,10.0,10.0,10.0,9.0,10.0,25,2.85 +23342,,,,,,,,0, +51850,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.89 +33179,,,,,,,,0, +61125,92.0,10.0,8.0,10.0,10.0,10.0,10.0,6,0.78 +17160,91.0,9.0,10.0,10.0,9.0,10.0,9.0,28,2.64 +33168,,,,,,,,0, +23988,95.0,10.0,9.0,9.0,10.0,10.0,10.0,35,3.96 +28305,89.0,9.0,10.0,9.0,9.0,9.0,9.0,19,1.93 +49303,95.0,9.0,10.0,10.0,10.0,9.0,9.0,25,2.36 +17307,93.0,10.0,10.0,9.0,10.0,10.0,9.0,38,3.55 +1455,92.0,10.0,10.0,9.0,9.0,8.0,9.0,20,1.95 +76874,93.0,10.0,10.0,9.0,10.0,9.0,9.0,14,1.57 +24841,,,,,,,,0, +20807,96.0,10.0,10.0,9.0,10.0,10.0,10.0,6,0.58 +72851,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.28 +39662,84.0,9.0,9.0,9.0,9.0,10.0,9.0,11,1.05 +1071,100.0,10.0,10.0,10.0,10.0,6.0,8.0,1,0.12 +51868,80.0,9.0,9.0,10.0,10.0,10.0,8.0,4,0.41 +54818,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.8 +66405,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.47 +15695,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.31 +12248,93.0,10.0,9.0,10.0,8.0,9.0,9.0,3,0.29 +24259,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.43 +27571,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.1 +57179,99.0,10.0,10.0,10.0,10.0,10.0,10.0,34,3.7 +72421,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.12 +47418,,,,,,,,0, +48131,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.5 +68358,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.11 +21268,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.24 +29891,85.0,9.0,9.0,9.0,9.0,8.0,9.0,4,0.54 +23692,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,1.01 +29171,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.19 +18200,100.0,9.0,9.0,10.0,9.0,10.0,10.0,3,0.35 +68688,91.0,10.0,9.0,10.0,10.0,9.0,10.0,10,0.96 +67747,84.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.88 +39847,70.0,8.0,6.0,10.0,10.0,10.0,7.0,2,1.58 +40649,,,,,,,,1, +22542,98.0,10.0,10.0,10.0,10.0,9.0,10.0,13,1.25 +31889,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.48 +2303,40.0,3.0,2.0,4.0,5.0,7.0,3.0,2,0.8 +42553,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,1.04 +32484,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.32 +73726,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,1.0 +71886,,,,,,,,0, +45948,,,,,,,,0, +3283,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.81 +20465,,,,,,,,0, +40647,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.11 +64821,,,,,,,,0, +41443,95.0,10.0,10.0,8.0,9.0,9.0,10.0,4,0.79 +56334,93.0,9.0,10.0,9.0,10.0,10.0,10.0,3,0.28 +10637,100.0,10.0,10.0,10.0,10.0,9.0,9.0,7,0.68 +5444,,,,,,,,0, +56205,90.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.26 +74867,100.0,10.0,10.0,10.0,10.0,9.0,10.0,12,1.14 +53827,92.0,9.0,9.0,9.0,9.0,10.0,9.0,5,0.8 +17758,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.46 +53405,86.0,8.0,9.0,9.0,9.0,9.0,9.0,25,2.29 +54661,97.0,10.0,9.0,10.0,10.0,10.0,10.0,22,2.14 +52195,72.0,7.0,8.0,9.0,9.0,9.0,7.0,5,0.59 +53344,94.0,9.0,9.0,10.0,9.0,9.0,9.0,22,2.1 +71366,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,1.0 +72391,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.03 +36166,95.0,10.0,9.0,10.0,9.0,10.0,10.0,9,1.57 +40852,,,,,,,,0, +419,86.0,9.0,9.0,9.0,10.0,9.0,9.0,34,3.31 +6962,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.04 +584,95.0,10.0,10.0,10.0,9.0,10.0,10.0,4,1.19 +17656,,,,,,,,0, +76209,84.0,9.0,8.0,8.0,9.0,8.0,8.0,9,0.84 +52753,84.0,9.0,9.0,9.0,9.0,9.0,8.0,15,1.55 +4613,99.0,10.0,10.0,10.0,10.0,9.0,10.0,15,1.41 +47063,,,,,,,,0, +29776,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,1.01 +37261,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,1.24 +61626,85.0,8.0,8.0,9.0,9.0,10.0,9.0,9,0.88 +58315,,,,,,,,0, +10759,90.0,9.0,7.0,10.0,10.0,9.0,8.0,2,0.43 +57170,97.0,10.0,9.0,10.0,10.0,10.0,10.0,22,2.09 +1009,,,,,,,,2,0.19 +74176,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +52893,98.0,10.0,10.0,10.0,10.0,10.0,10.0,30,2.98 +36853,100.0,10.0,8.0,10.0,8.0,10.0,10.0,1,0.09 +35357,96.0,9.0,9.0,9.0,10.0,10.0,9.0,25,2.48 +32997,93.0,9.0,9.0,10.0,10.0,10.0,9.0,12,1.43 +58717,94.0,10.0,10.0,9.0,9.0,9.0,10.0,22,2.08 +65488,,,,,,,,0, +57560,93.0,10.0,9.0,9.0,10.0,10.0,9.0,24,2.29 +30023,91.0,9.0,9.0,10.0,10.0,9.0,9.0,48,4.49 +76443,98.0,10.0,10.0,10.0,10.0,10.0,10.0,19,1.84 +17094,98.0,10.0,10.0,10.0,10.0,10.0,10.0,33,3.15 +51970,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.03 +35231,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,1.14 +76440,,,,,,,,0, +66943,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.25 +43802,80.0,9.0,9.0,9.0,10.0,9.0,9.0,4,0.4 +5202,98.0,10.0,9.0,10.0,10.0,10.0,10.0,13,1.48 +73843,,,,,,,,0, +53871,99.0,10.0,10.0,10.0,10.0,10.0,10.0,19,1.8 +69276,93.0,9.0,9.0,10.0,10.0,9.0,9.0,4,0.38 +43168,,,,,,,,0, +63506,,,,,,,,0, +76833,93.0,10.0,9.0,10.0,10.0,10.0,9.0,93,8.69 +32350,95.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.37 +4679,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.61 +69786,96.0,9.0,9.0,9.0,10.0,10.0,9.0,9,0.89 +71600,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.28 +40268,60.0,9.0,6.0,7.0,10.0,7.0,7.0,3,0.33 +15851,,,,,,,,0, +30957,97.0,10.0,10.0,10.0,10.0,10.0,10.0,13,1.7 +76996,80.0,10.0,6.0,10.0,10.0,10.0,8.0,1,0.1 +51068,94.0,10.0,9.0,10.0,9.0,9.0,9.0,29,2.84 +43910,,,,,,,,0, +27376,,,,,,,,0, +70195,90.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.19 +39657,,,,,,,,0, +64072,98.0,10.0,10.0,10.0,10.0,9.0,10.0,24,2.47 +37625,,,,,,,,1,0.09 +40140,95.0,10.0,10.0,10.0,10.0,8.0,9.0,17,2.22 +6828,100.0,10.0,9.0,10.0,10.0,10.0,10.0,12,1.27 +3968,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,1.7 +33886,93.0,10.0,10.0,10.0,9.0,10.0,9.0,9,1.07 +2773,,,,,,,,0, +62181,100.0,10.0,10.0,10.0,9.0,10.0,10.0,2,0.2 +63900,95.0,10.0,7.0,10.0,10.0,9.0,9.0,4,0.49 +34991,98.0,10.0,10.0,10.0,10.0,9.0,10.0,9,1.0 +63574,91.0,9.0,10.0,9.0,10.0,9.0,9.0,20,1.89 +48306,90.0,9.0,10.0,10.0,9.0,9.0,9.0,31,2.88 +2360,95.0,10.0,10.0,10.0,10.0,9.0,10.0,26,2.43 +38980,95.0,10.0,10.0,10.0,10.0,10.0,9.0,22,2.05 +18758,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.34 +21265,97.0,10.0,9.0,10.0,10.0,10.0,10.0,6,0.61 +1238,,,,,,,,0, +59064,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.67 +17165,90.0,9.0,8.0,10.0,10.0,10.0,8.0,2,0.19 +8597,96.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.61 +26720,,,,,,,,1,0.13 +72103,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,1.0 +50668,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.89 +32599,75.0,7.0,7.0,7.0,8.0,7.0,8.0,4,0.38 +50328,,,,,,,,0, +33334,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.24 +1747,80.0,10.0,10.0,10.0,6.0,10.0,10.0,1,0.1 +26357,91.0,10.0,10.0,10.0,10.0,10.0,9.0,7,0.71 +12576,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.12 +31800,100.0,10.0,6.0,10.0,10.0,8.0,10.0,1,0.24 +67257,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,1.16 +51711,,,,,,,,0, +70918,,,,,,,,0, +74830,60.0,7.0,8.0,8.0,6.0,7.0,5.0,2,0.24 +37122,99.0,10.0,10.0,10.0,10.0,10.0,10.0,22,2.14 +26883,,,,,,,,0, +41517,93.0,9.0,9.0,10.0,10.0,10.0,9.0,7,0.68 +56426,,,,,,,,0, +71169,,,,,,,,0, +52646,90.0,9.0,9.0,9.0,9.0,9.0,9.0,27,2.76 +64731,88.0,10.0,9.0,10.0,10.0,9.0,9.0,12,1.2 +20439,86.0,9.0,10.0,9.0,9.0,10.0,8.0,10,1.01 +73409,,,,,,,,0, +14476,89.0,9.0,10.0,9.0,10.0,10.0,9.0,9,1.02 +19532,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.52 +68797,94.0,10.0,10.0,10.0,10.0,10.0,10.0,17,1.63 +76503,,,,,,,,1,0.12 +19891,87.0,9.0,9.0,9.0,9.0,10.0,8.0,12,1.24 +37859,73.0,9.0,8.0,10.0,10.0,10.0,10.0,4,0.41 +58344,95.0,10.0,10.0,9.0,9.0,10.0,9.0,8,1.19 +36695,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.74 +17445,80.0,8.0,6.0,9.0,8.0,10.0,7.0,3,0.45 +58894,,,,,,,,0, +17518,97.0,10.0,10.0,10.0,9.0,9.0,9.0,31,2.9 +51478,90.0,8.0,10.0,9.0,10.0,10.0,8.0,4,0.41 +69087,,,,,,,,0, +72241,91.0,9.0,9.0,10.0,10.0,9.0,10.0,7,0.67 +38043,40.0,4.0,5.0,5.0,6.0,7.0,6.0,2,0.19 +41614,,,,,,,,1,0.14 +17672,97.0,10.0,10.0,10.0,10.0,10.0,10.0,37,3.57 +11962,,,,,,,,2,0.19 +15390,100.0,10.0,10.0,10.0,10.0,10.0,9.0,13,1.36 +41747,,,,,,,,0, +7405,95.0,9.0,10.0,10.0,10.0,9.0,10.0,8,0.82 +53044,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.71 +11313,97.0,10.0,10.0,10.0,10.0,10.0,10.0,15,1.57 +50918,96.0,10.0,10.0,10.0,10.0,10.0,10.0,29,2.74 +5553,84.0,8.0,8.0,10.0,10.0,10.0,9.0,5,0.52 +22560,,,,,,,,0, +46101,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,1.84 +67891,100.0,10.0,9.0,10.0,10.0,9.0,10.0,8,0.82 +610,93.0,10.0,9.0,10.0,10.0,10.0,9.0,3,0.87 +14327,,,,,,,,0, +59390,93.0,10.0,9.0,10.0,10.0,9.0,9.0,11,1.06 +38765,93.0,9.0,10.0,10.0,10.0,10.0,9.0,3,0.35 +67015,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.2 +22561,97.0,10.0,10.0,10.0,10.0,10.0,10.0,41,5.39 +38841,99.0,10.0,10.0,10.0,10.0,9.0,9.0,15,1.44 +2526,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.13 +39495,100.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.43 +66339,96.0,10.0,9.0,10.0,9.0,9.0,9.0,20,1.91 +15771,96.0,10.0,10.0,10.0,10.0,10.0,10.0,20,2.73 +61649,94.0,9.0,10.0,10.0,10.0,9.0,9.0,16,1.72 +75562,94.0,10.0,9.0,10.0,10.0,10.0,9.0,29,2.68 +47997,90.0,9.0,8.0,10.0,10.0,9.0,9.0,14,1.36 +40599,98.0,10.0,10.0,10.0,10.0,10.0,10.0,24,2.24 +3806,83.0,8.0,9.0,9.0,8.0,9.0,9.0,11,1.05 +66532,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.55 +43097,82.0,9.0,8.0,10.0,9.0,10.0,9.0,33,3.1 +48315,91.0,9.0,10.0,10.0,10.0,9.0,9.0,17,1.74 +1717,,,,,,,,0, +69137,,,,,,,,0, +20073,,,,,,,,0, +49681,,,,,,,,0, +58629,,,,,,,,0, +72485,,,,,,,,0, +75477,,,,,,,,0, +58980,,,,,,,,0, +18757,100.0,10.0,10.0,8.0,10.0,8.0,8.0,1,0.65 +53661,,,,,,,,0, +64609,,,,,,,,0, +52148,,,,,,,,0, +24728,,,,,,,,0, +7210,,,,,,,,0, +13564,,,,,,,,0, +7717,,,,,,,,0, +73650,,,,,,,,0, +64836,,,,,,,,0, +16878,,,,,,,,0, +5098,,,,,,,,0, +7407,,,,,,,,0, +9756,,,,,,,,0, +48674,,,,,,,,0, +50130,,,,,,,,0, +30423,,,,,,,,0, +66096,,,,,,,,0, +45970,,,,,,,,0, +34286,,,,,,,,0, +67603,,,,,,,,0, +34183,,,,,,,,0, +44881,,,,,,,,0, +27259,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.38 +21590,,,,,,,,0, +63730,,,,,,,,0, +58504,,,,,,,,0, +46667,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.42 +62243,,,,,,,,0, +75592,80.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.22 +61855,,,,,,,,0, +16110,,,,,,,,0, +14137,87.0,10.0,8.0,10.0,10.0,10.0,8.0,6,1.07 +53687,80.0,9.0,10.0,8.0,8.0,10.0,8.0,2,0.37 +53105,,,,,,,,0, +59380,,,,,,,,0, +50076,,,,,,,,0, +38227,,,,,,,,0, +52287,,,,,,,,0, +36251,,,,,,,,0, +49151,97.0,9.0,10.0,10.0,10.0,9.0,10.0,30,2.93 +57230,,,,,,,,0, +27245,63.0,7.0,7.0,9.0,9.0,8.0,7.0,30,2.88 +25706,,,,,,,,0, +70643,,,,,,,,0, +15689,92.0,8.0,8.0,10.0,10.0,10.0,9.0,5,4.05 +53378,,,,,,,,0, +4339,,,,,,,,0, +15861,,,,,,,,0, +22500,100.0,10.0,10.0,8.0,9.0,9.0,9.0,3,0.35 +22310,,,,,,,,0, +42512,,,,,,,,0, +72812,,,,,,,,0, +61311,67.0,8.0,9.0,9.0,9.0,9.0,7.0,11,1.06 +18631,,,,,,,,1,0.09 +59636,93.0,10.0,9.0,10.0,10.0,10.0,9.0,85,7.97 +34840,79.0,9.0,8.0,9.0,10.0,9.0,8.0,26,2.6 +47505,,,,,,,,0, +41379,,,,,,,,0, +11718,78.0,7.0,9.0,9.0,9.0,8.0,8.0,9,0.99 +44114,100.0,10.0,10.0,9.0,10.0,10.0,10.0,8,1.26 +65860,,,,,,,,0, +19906,82.0,8.0,9.0,8.0,8.0,9.0,8.0,10,1.07 +46584,75.0,8.0,8.0,9.0,9.0,9.0,7.0,17,1.96 +76191,60.0,5.0,6.0,8.0,9.0,7.0,6.0,8,0.82 +2825,,,,,,,,0, +74070,,,,,,,,0, +8525,,,,,,,,0, +36080,69.0,7.0,7.0,9.0,9.0,7.0,7.0,7,0.97 +58821,91.0,10.0,9.0,10.0,10.0,9.0,9.0,48,5.29 +11340,72.0,8.0,8.0,9.0,9.0,8.0,7.0,17,2.71 +18714,,,,,,,,0, +46790,78.0,9.0,8.0,9.0,9.0,8.0,8.0,10,1.05 +49040,,,,,,,,0, +16112,,,,,,,,1,0.09 +18523,,,,,,,,0, +67167,,,,,,,,0, +23531,86.0,9.0,8.0,10.0,10.0,9.0,9.0,21,2.46 +29311,,,,,,,,0, +45219,95.0,10.0,9.0,10.0,10.0,10.0,9.0,26,2.59 +70908,88.0,9.0,9.0,8.0,8.0,9.0,9.0,13,1.21 +17279,,,,,,,,0, +54414,,,,,,,,0, +15890,,,,,,,,0, +43956,,,,,,,,0, +27696,94.0,9.0,9.0,10.0,10.0,10.0,10.0,70,6.54 +8992,,,,,,,,0, +73922,97.0,9.0,10.0,10.0,10.0,9.0,10.0,6,0.64 +27422,,,,,,,,0, +2521,,,,,,,,0, +39322,,,,,,,,0, +35881,,,,,,,,0, +51876,96.0,10.0,10.0,10.0,10.0,9.0,10.0,68,6.39 +62621,,,,,,,,0, +28835,,,,,,,,0, +12690,,,,,,,,0, +25002,,,,,,,,0, +51862,,,,,,,,0, +58922,,,,,,,,0, +55284,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.19 +66826,,,,,,,,0, +45297,,,,,,,,0, +13907,,,,,,,,0, +46701,100.0,10.0,10.0,8.0,10.0,10.0,8.0,1,0.11 +65681,,,,,,,,0, +75897,,,,,,,,0, +32345,,,,,,,,0, +50509,,,,,,,,0, +30889,,,,,,,,0, +64693,,,,,,,,0, +54927,,,,,,,,0, +58628,80.0,9.0,9.0,10.0,9.0,10.0,9.0,3,0.55 +32079,,,,,,,,0, +44811,,,,,,,,0, +23254,,,,,,,,0, +4777,,,,,,,,0, +62534,,,,,,,,0, +64181,80.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.2 +44548,,,,,,,,0, +19263,94.0,10.0,10.0,10.0,10.0,10.0,9.0,79,7.38 +17109,,,,,,,,0, +73740,,,,,,,,0, +69073,,,,,,,,0, +10420,90.0,10.0,7.0,10.0,10.0,10.0,9.0,6,0.63 +35756,,,,,,,,0, +41884,93.0,10.0,10.0,10.0,10.0,9.0,9.0,4,0.46 +675,100.0,10.0,10.0,8.0,10.0,9.0,10.0,2,0.3 +7364,100.0,9.0,9.0,10.0,10.0,9.0,9.0,3,0.37 +58560,,,,,,,,0, +45542,90.0,9.0,9.0,9.0,9.0,8.0,9.0,3,0.29 +21178,96.0,9.0,9.0,9.0,9.0,9.0,9.0,14,1.49 +1845,90.0,10.0,9.0,10.0,10.0,9.0,9.0,41,5.17 +47985,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.69 +50027,97.0,10.0,10.0,10.0,10.0,9.0,10.0,12,1.17 +14783,,,,,,,,0, +9673,100.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.19 +47626,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.2 +49195,100.0,10.0,10.0,9.0,9.0,10.0,10.0,11,1.23 +55288,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.11 +44557,,,,,,,,0, +27075,67.0,8.0,7.0,9.0,7.0,9.0,7.0,3,0.48 +68012,88.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.97 +64639,,,,,,,,0, +27508,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,1.09 +26053,91.0,10.0,9.0,10.0,9.0,10.0,9.0,7,0.7 +60285,96.0,10.0,10.0,10.0,10.0,9.0,9.0,12,1.29 +14265,91.0,10.0,9.0,10.0,10.0,9.0,9.0,25,2.36 +45530,99.0,10.0,10.0,10.0,10.0,10.0,10.0,19,1.84 +37212,,,,,,,,0, +29321,86.0,9.0,9.0,9.0,8.0,10.0,9.0,29,2.83 +59759,94.0,9.0,9.0,10.0,10.0,10.0,9.0,15,1.46 +29352,94.0,9.0,9.0,10.0,10.0,10.0,9.0,7,0.73 +50462,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.23 +36646,,,,,,,,1,0.1 +33717,60.0,6.0,6.0,8.0,6.0,4.0,4.0,1,0.13 +7008,93.0,10.0,9.0,10.0,10.0,10.0,10.0,9,0.87 +4544,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.14 +1800,100.0,10.0,9.0,9.0,10.0,10.0,10.0,4,0.57 +71356,,,,,,,,0, +56869,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.58 +68359,96.0,8.0,10.0,10.0,9.0,10.0,9.0,5,0.52 +56510,100.0,9.0,9.0,9.0,10.0,10.0,8.0,2,0.21 +20613,98.0,10.0,10.0,10.0,10.0,10.0,10.0,19,5.09 +11957,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,0.96 +39218,88.0,9.0,9.0,9.0,10.0,10.0,8.0,42,4.21 +47788,100.0,9.0,10.0,10.0,10.0,9.0,9.0,2,0.2 +29528,,,,,,,,0, +62496,,,,,,,,0, +27597,76.0,9.0,10.0,10.0,10.0,10.0,9.0,8,1.07 +58172,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.26 +32631,93.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.61 +4243,,,,,,,,1,0.1 +17557,100.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.39 +24729,,,,,,,,0, +16084,,,,,,,,1,0.12 +60560,,,,,,,,0, +63492,,,,,,,,0, +52175,76.0,8.0,7.0,9.0,9.0,9.0,8.0,18,1.73 +73138,,,,,,,,0, +68650,,,,,,,,1, +19322,80.0,9.0,8.0,10.0,9.0,9.0,8.0,7,0.73 +22575,60.0,5.0,7.0,8.0,5.0,8.0,6.0,3,0.31 +2350,,,,,,,,0, +40869,96.0,10.0,10.0,10.0,10.0,9.0,9.0,10,1.02 +59925,84.0,8.0,8.0,10.0,9.0,10.0,8.0,11,2.26 +71177,97.0,10.0,10.0,10.0,10.0,10.0,10.0,54,5.08 +19945,,,,,,,,0, +17061,80.0,8.0,10.0,6.0,6.0,10.0,8.0,1,0.15 +60942,,,,,,,,0, +75480,87.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.32 +54541,95.0,10.0,10.0,10.0,9.0,10.0,10.0,4,0.39 +43510,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,2.06 +38331,82.0,9.0,8.0,9.0,10.0,10.0,8.0,17,1.72 +5536,,,,,,,,0, +41315,60.0,6.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +67216,91.0,10.0,10.0,10.0,10.0,10.0,10.0,13,1.3 +70577,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.1 +66027,98.0,10.0,10.0,9.0,10.0,9.0,10.0,8,0.85 +27941,95.0,10.0,10.0,10.0,10.0,8.0,10.0,8,0.78 +64808,88.0,10.0,8.0,10.0,10.0,10.0,10.0,14,1.35 +53198,,,,,,,,0, +25833,,,,,,,,0, +4861,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.1 +41737,94.0,10.0,9.0,10.0,10.0,10.0,10.0,71,6.68 +11399,92.0,10.0,9.0,10.0,10.0,9.0,9.0,19,1.86 +41952,99.0,10.0,10.0,10.0,10.0,10.0,10.0,17,1.65 +26893,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.11 +191,,,,,,,,0, +28220,93.0,9.0,9.0,9.0,9.0,10.0,9.0,3,0.38 +65216,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,1.15 +21205,92.0,10.0,9.0,10.0,9.0,10.0,9.0,62,5.92 +56482,60.0,7.0,7.0,7.0,7.0,9.0,4.0,4,0.51 +73228,,,,,,,,0, +65482,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +56323,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.81 +60100,85.0,9.0,9.0,9.0,9.0,9.0,8.0,4,0.62 +19913,67.0,7.0,7.0,9.0,9.0,9.0,8.0,3,0.6 +45494,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,1.01 +6380,,,,,,,,0, +51282,87.0,9.0,8.0,10.0,9.0,9.0,9.0,7,0.67 +29601,91.0,10.0,10.0,8.0,9.0,9.0,9.0,7,0.72 +31643,96.0,10.0,10.0,10.0,10.0,10.0,9.0,14,1.33 +60693,,,,,,,,0, +51381,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.5 +73569,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.51 +74485,71.0,8.0,8.0,7.0,7.0,8.0,7.0,7,0.84 +33466,100.0,10.0,10.0,10.0,10.0,8.0,10.0,9,1.13 +6743,87.0,10.0,9.0,10.0,10.0,10.0,9.0,12,1.16 +26943,76.0,8.0,6.0,9.0,9.0,9.0,8.0,38,3.8 +30052,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.12 +21245,96.0,10.0,10.0,10.0,10.0,10.0,9.0,14,1.39 +56099,97.0,10.0,10.0,10.0,10.0,9.0,10.0,22,2.08 +61031,87.0,9.0,9.0,9.0,9.0,9.0,9.0,12,1.18 +7311,80.0,2.0,2.0,10.0,8.0,10.0,8.0,1,0.55 +40399,,,,,,,,0, +15914,75.0,8.0,8.0,9.0,9.0,8.0,8.0,17,1.59 +27123,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.38 +1635,88.0,9.0,9.0,9.0,10.0,9.0,9.0,26,2.45 +73453,60.0,7.0,7.0,7.0,6.0,9.0,5.0,3,0.3 +15652,80.0,8.0,9.0,9.0,10.0,8.0,8.0,10,0.95 +2343,98.0,10.0,10.0,10.0,10.0,10.0,10.0,38,3.67 +18318,80.0,8.0,8.0,8.0,8.0,10.0,8.0,1,0.18 +39090,96.0,10.0,9.0,10.0,10.0,9.0,9.0,18,2.17 +23683,97.0,10.0,9.0,9.0,10.0,9.0,9.0,6,0.61 +67380,80.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.41 +33753,80.0,9.0,8.0,9.0,9.0,7.0,9.0,8,0.92 +43774,98.0,10.0,10.0,9.0,10.0,10.0,10.0,10,1.44 +20180,91.0,10.0,9.0,9.0,10.0,8.0,9.0,9,1.0 +51410,80.0,6.0,8.0,8.0,8.0,8.0,8.0,1,0.21 +31158,68.0,7.0,9.0,7.0,8.0,7.0,7.0,8,0.82 +13287,55.0,6.0,6.0,8.0,7.0,5.0,6.0,4,0.47 +47958,,,,,,,,0, +13258,,,,,,,,0, +15452,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.35 +37828,,,,,,,,0, +6041,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.29 +41347,80.0,9.0,9.0,9.0,9.0,9.0,8.0,5,0.63 +58814,93.0,9.0,9.0,10.0,9.0,10.0,9.0,3,0.75 +29900,,,,,,,,0, +34658,85.0,8.0,9.0,10.0,10.0,9.0,9.0,4,0.41 +57042,95.0,10.0,9.0,10.0,10.0,10.0,9.0,24,2.44 +7062,83.0,8.0,8.0,9.0,9.0,10.0,8.0,6,0.76 +26335,,,,,,,,0, +26853,94.0,10.0,10.0,10.0,10.0,10.0,9.0,13,1.27 +62469,,,,,,,,1,0.25 +52784,97.0,9.0,9.0,10.0,10.0,10.0,9.0,19,3.58 +58323,95.0,10.0,10.0,9.0,10.0,10.0,9.0,17,1.83 +57349,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.1 +46314,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.2 +40587,,,,,,,,0, +23550,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.19 +24908,,,,,,,,1,0.16 +65720,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.23 +68024,,,,,,,,0, +49561,80.0,10.0,8.0,10.0,10.0,9.0,9.0,8,0.78 +28257,76.0,8.0,8.0,8.0,8.0,8.0,8.0,5,0.56 +34631,70.0,6.0,9.0,9.0,9.0,10.0,8.0,4,0.4 +17071,93.0,10.0,8.0,10.0,10.0,10.0,9.0,17,1.59 +24988,,,,,,,,0, +19472,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.1 +19631,,,,,,,,0, +11621,97.0,10.0,9.0,10.0,9.0,10.0,10.0,12,1.48 +43762,,,,,,,,0, +22053,,,,,,,,0, +61605,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.74 +53558,90.0,10.0,7.0,10.0,10.0,8.0,10.0,2,0.2 +61707,84.0,9.0,8.0,10.0,10.0,9.0,8.0,10,1.13 +23451,,,,,,,,0, +24027,80.0,10.0,7.0,8.0,9.0,10.0,8.0,5,0.5 +39321,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.03 +20798,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +51348,96.0,10.0,10.0,10.0,9.0,10.0,10.0,14,1.43 +54107,91.0,10.0,10.0,10.0,10.0,9.0,9.0,9,1.51 +68601,80.0,8.0,9.0,9.0,9.0,9.0,8.0,4,0.45 +17318,89.0,9.0,9.0,10.0,9.0,9.0,9.0,7,0.73 +23292,,,,,,,,0, +29962,96.0,10.0,9.0,10.0,10.0,9.0,10.0,27,2.7 +70907,91.0,10.0,10.0,9.0,10.0,10.0,10.0,7,0.85 +57525,,,,,,,,0, +70858,97.0,10.0,10.0,9.0,10.0,9.0,10.0,7,0.7 +30069,87.0,9.0,9.0,10.0,10.0,10.0,10.0,3,0.29 +63373,92.0,10.0,9.0,9.0,10.0,9.0,9.0,32,3.89 +50849,91.0,9.0,10.0,10.0,10.0,8.0,9.0,25,2.63 +66114,,,,,,,,0, +72347,94.0,10.0,9.0,10.0,10.0,10.0,9.0,70,6.77 +73972,97.0,10.0,10.0,10.0,10.0,8.0,9.0,8,1.51 +73681,94.0,10.0,10.0,10.0,10.0,10.0,9.0,70,6.65 +6484,,,,,,,,0, +41050,,,,,,,,0, +67357,89.0,9.0,10.0,10.0,10.0,9.0,9.0,14,1.45 +60206,99.0,10.0,10.0,10.0,10.0,10.0,10.0,15,1.43 +2883,93.0,9.0,8.0,10.0,10.0,10.0,9.0,14,1.44 +22473,,,,,,,,2,0.19 +29715,80.0,9.0,9.0,8.0,8.0,9.0,9.0,5,0.54 +13479,,,,,,,,0, +20122,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.21 +73040,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.45 +50231,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.72 +69152,,,,,,,,0, +45018,,,,,,,,0, +30860,,,,,,,,0, +37756,,,,,,,,0, +10820,98.0,10.0,10.0,10.0,10.0,10.0,9.0,8,0.8 +10774,,,,,,,,0, +49754,93.0,10.0,9.0,10.0,9.0,9.0,10.0,3,0.33 +21887,98.0,10.0,9.0,10.0,10.0,10.0,9.0,10,1.13 +72087,100.0,10.0,10.0,6.0,10.0,10.0,8.0,1,0.45 +33060,80.0,8.0,8.0,10.0,8.0,8.0,8.0,1,0.1 +59104,100.0,9.0,9.0,9.0,10.0,8.0,9.0,2,0.19 +27439,,,,,,,,1,0.09 +2762,100.0,10.0,10.0,10.0,10.0,9.0,9.0,2,0.24 +22276,96.0,10.0,10.0,10.0,10.0,9.0,10.0,18,1.79 +70572,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,1.29 +15646,60.0,9.0,9.0,7.0,7.0,10.0,8.0,3,0.59 +74729,86.0,9.0,7.0,9.0,9.0,9.0,8.0,8,0.96 +7972,89.0,9.0,9.0,10.0,10.0,9.0,9.0,23,2.19 +27288,93.0,9.0,9.0,10.0,10.0,10.0,10.0,3,0.38 +33889,90.0,9.0,8.0,9.0,10.0,9.0,9.0,3,0.34 +35901,95.0,10.0,10.0,10.0,10.0,10.0,9.0,34,4.08 +35786,94.0,10.0,10.0,10.0,10.0,10.0,10.0,22,2.28 +71478,,,,,,,,0, +50283,94.0,10.0,9.0,10.0,10.0,10.0,9.0,16,1.55 +72531,,,,,,,,1,0.1 +14411,85.0,9.0,8.0,9.0,9.0,9.0,9.0,22,2.84 +71419,99.0,10.0,10.0,10.0,10.0,9.0,10.0,16,4.44 +31155,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.18 +16784,,,,,,,,0, +19174,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.11 +67176,,,,,,,,0, +18141,,,,,,,,0, +65407,92.0,9.0,9.0,9.0,10.0,10.0,9.0,42,3.96 +56569,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +9396,100.0,10.0,10.0,10.0,10.0,10.0,10.0,31,3.39 +18721,92.0,10.0,10.0,10.0,10.0,8.0,9.0,5,0.52 +63845,,,,,,,,0, +47046,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.28 +50223,,,,,,,,0, +34323,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.18 +71332,100.0,10.0,10.0,10.0,10.0,9.0,8.0,3,0.59 +73285,,,,,,,,0, +76845,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.38 +64058,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.58 +18573,97.0,9.0,10.0,10.0,10.0,10.0,10.0,8,0.75 +4981,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.1 +66314,,,,,,,,0, +45774,97.0,10.0,10.0,10.0,10.0,10.0,10.0,23,3.83 +72086,50.0,6.0,6.0,3.0,2.0,8.0,5.0,2,0.2 +14367,88.0,9.0,9.0,9.0,9.0,10.0,9.0,33,3.56 +76322,,,,,,,,0, +16001,96.0,10.0,10.0,10.0,10.0,9.0,9.0,5,0.48 +3977,83.0,10.0,8.0,10.0,9.0,9.0,9.0,30,2.9 +1760,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.41 +14350,,,,,,,,0, +51328,83.0,9.0,8.0,9.0,9.0,9.0,9.0,18,1.89 +48850,79.0,9.0,8.0,10.0,10.0,9.0,9.0,37,3.66 +9934,97.0,9.0,10.0,10.0,10.0,10.0,10.0,13,1.42 +6015,,,,,,,,0, +23068,100.0,10.0,9.0,10.0,10.0,9.0,10.0,7,0.69 +40928,94.0,10.0,9.0,10.0,10.0,9.0,9.0,31,3.07 +62650,,,,,,,,0, +36558,100.0,10.0,10.0,10.0,10.0,10.0,10.0,46,4.39 +51894,93.0,10.0,9.0,10.0,10.0,10.0,10.0,6,2.61 +8225,90.0,10.0,9.0,9.0,9.0,10.0,9.0,2,0.2 +17392,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.1 +27869,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.19 +70039,100.0,9.0,10.0,9.0,10.0,8.0,10.0,3,0.29 +74412,,,,,,,,0, +19316,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.35 +51204,,,,,,,,0, +5556,,,,,,,,0, +45380,83.0,9.0,9.0,9.0,9.0,9.0,9.0,7,0.81 +64041,79.0,9.0,7.0,9.0,9.0,8.0,8.0,21,2.09 +55744,97.0,10.0,10.0,10.0,10.0,9.0,10.0,28,3.17 +74204,97.0,10.0,9.0,10.0,10.0,9.0,9.0,21,2.05 +15752,100.0,10.0,10.0,10.0,10.0,9.0,10.0,25,2.43 +38884,85.0,9.0,9.0,10.0,9.0,8.0,8.0,4,0.41 +10051,100.0,10.0,10.0,8.0,10.0,10.0,10.0,1,0.44 +17267,85.0,10.0,10.0,9.0,9.0,10.0,9.0,4,1.33 +16082,,,,,,,,0, +57078,95.0,10.0,10.0,9.0,9.0,10.0,9.0,30,3.23 +20727,,,,,,,,1,0.16 +52138,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.01 +18416,,,,,,,,0, +53168,90.0,10.0,9.0,10.0,10.0,10.0,10.0,4,1.11 +58988,100.0,10.0,9.0,10.0,10.0,10.0,10.0,9,0.89 +60150,100.0,10.0,10.0,10.0,10.0,9.0,10.0,19,1.96 +24071,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,1.17 +69270,,,,,,,,0, +66354,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.46 +4998,80.0,8.0,10.0,8.0,8.0,10.0,10.0,1,0.1 +26776,93.0,10.0,9.0,10.0,10.0,9.0,9.0,6,0.66 +34756,88.0,9.0,9.0,10.0,10.0,10.0,9.0,10,1.55 +13075,87.0,8.0,8.0,8.0,9.0,9.0,9.0,3,0.4 +15988,93.0,10.0,9.0,10.0,10.0,9.0,9.0,6,0.68 +20377,87.0,9.0,9.0,10.0,9.0,10.0,9.0,6,0.63 +70546,,,,,,,,0, +44009,85.0,10.0,8.0,10.0,10.0,9.0,9.0,5,0.77 +34717,,,,,,,,0, +24513,71.0,8.0,8.0,9.0,9.0,9.0,8.0,18,1.94 +46321,,,,,,,,0, +25341,,,,,,,,0, +34481,94.0,10.0,10.0,10.0,10.0,10.0,9.0,17,1.67 +45285,91.0,10.0,10.0,10.0,10.0,10.0,9.0,14,1.44 +47592,90.0,10.0,10.0,10.0,10.0,10.0,9.0,2,1.46 +29690,98.0,10.0,9.0,10.0,10.0,9.0,10.0,41,4.38 +36728,,,,,,,,0, +62540,63.0,6.0,9.0,8.0,8.0,8.0,8.0,8,0.84 +10573,77.0,8.0,9.0,10.0,10.0,10.0,8.0,13,1.3 +26749,85.0,9.0,10.0,10.0,10.0,10.0,8.0,5,0.67 +3075,70.0,6.0,9.0,7.0,8.0,7.0,8.0,2,0.77 +5559,85.0,9.0,8.0,8.0,8.0,8.0,9.0,13,1.4 +76914,89.0,9.0,9.0,9.0,9.0,9.0,9.0,15,1.53 +66070,92.0,9.0,10.0,10.0,9.0,10.0,9.0,41,4.01 +23044,90.0,8.0,10.0,10.0,10.0,10.0,10.0,4,0.4 +68508,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,1.51 +37039,63.0,7.0,6.0,8.0,8.0,10.0,6.0,6,0.66 +48864,90.0,10.0,9.0,10.0,10.0,10.0,9.0,4,0.43 +68277,95.0,10.0,9.0,10.0,10.0,9.0,10.0,38,3.61 +35429,98.0,10.0,10.0,10.0,10.0,10.0,9.0,11,1.13 +43778,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.12 +76484,96.0,10.0,10.0,10.0,10.0,9.0,10.0,11,1.08 +55293,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.23 +50410,98.0,10.0,10.0,9.0,9.0,9.0,10.0,8,0.8 +48898,80.0,8.0,8.0,10.0,10.0,10.0,8.0,1,0.12 +3150,,,,,,,,3,0.28 +31051,100.0,10.0,10.0,10.0,10.0,10.0,10.0,15,2.08 +33520,100.0,10.0,9.0,10.0,10.0,9.0,10.0,4,0.99 +3392,85.0,9.0,9.0,8.0,8.0,9.0,8.0,16,1.62 +75773,90.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.51 +71755,96.0,10.0,9.0,10.0,10.0,10.0,10.0,14,1.44 +17618,98.0,10.0,10.0,10.0,10.0,10.0,10.0,68,6.5 +57794,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,1.2 +65251,95.0,10.0,10.0,10.0,10.0,10.0,9.0,16,1.53 +11515,100.0,10.0,10.0,10.0,9.0,10.0,10.0,3,0.45 +56851,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.3 +33659,88.0,10.0,9.0,10.0,10.0,9.0,9.0,5,0.48 +19177,78.0,9.0,9.0,7.0,9.0,9.0,8.0,18,1.79 +21120,100.0,10.0,10.0,10.0,9.0,9.0,9.0,3,0.29 +72338,,,,,,,,0, +62288,91.0,9.0,9.0,9.0,9.0,10.0,10.0,18,1.72 +36543,89.0,9.0,9.0,10.0,10.0,9.0,9.0,11,1.45 +54768,98.0,10.0,9.0,10.0,10.0,10.0,10.0,8,0.82 +37107,94.0,9.0,9.0,10.0,10.0,10.0,9.0,16,1.85 +37934,65.0,7.0,8.0,8.0,8.0,10.0,7.0,4,0.54 +73432,,,,,,,,0, +1995,,,,,,,,0, +29070,78.0,8.0,9.0,9.0,9.0,9.0,7.0,12,1.26 +26099,93.0,9.0,9.0,10.0,9.0,10.0,9.0,13,1.27 +24762,97.0,9.0,9.0,10.0,10.0,10.0,9.0,7,0.91 +54196,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.51 +55521,90.0,10.0,9.0,10.0,10.0,8.0,9.0,4,0.71 +531,83.0,9.0,9.0,10.0,9.0,9.0,9.0,23,2.32 +49970,99.0,10.0,10.0,10.0,10.0,10.0,10.0,15,2.51 +16471,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.19 +51416,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.15 +63812,93.0,10.0,9.0,10.0,10.0,10.0,9.0,24,2.5 +24512,,,,,,,,0, +3732,,,,,,,,0, +6028,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.41 +31426,90.0,10.0,9.0,10.0,10.0,9.0,9.0,27,2.62 +68638,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.29 +25481,98.0,10.0,10.0,10.0,10.0,9.0,10.0,65,6.17 +75948,,,,,,,,2,0.19 +52586,71.0,9.0,9.0,9.0,8.0,10.0,8.0,7,0.72 +71016,,,,,,,,0, +21597,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.13 +60182,100.0,10.0,10.0,10.0,8.0,10.0,10.0,2,0.2 +54502,,,,,,,,0, +15110,,,,,,,,0, +46704,,,,,,,,0, +65491,,,,,,,,0, +14076,,,,,,,,0, +44536,,,,,,,,1,0.13 +5305,,,,,,,,0, +58801,,,,,,,,0, +9463,,,,,,,,0, +16613,,,,,,,,0, +14533,,,,,,,,1,0.29 +12920,94.0,9.0,9.0,10.0,10.0,9.0,9.0,20,2.01 +9837,,,,,,,,0, +74247,98.0,10.0,10.0,10.0,10.0,9.0,10.0,11,3.44 +43365,,,,,,,,0, +22814,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,1.2 +8020,100.0,10.0,10.0,10.0,10.0,10.0,8.0,2,0.36 +68773,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.12 +39330,80.0,8.0,10.0,9.0,10.0,9.0,7.0,3,0.51 +44836,98.0,10.0,10.0,10.0,10.0,10.0,10.0,19,1.87 +55870,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.1 +74145,100.0,10.0,10.0,10.0,10.0,10.0,10.0,17,1.74 +57615,95.0,10.0,10.0,10.0,10.0,10.0,9.0,19,1.93 +60622,81.0,9.0,8.0,9.0,9.0,9.0,8.0,34,3.4 +61024,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.09 +35192,94.0,10.0,10.0,10.0,10.0,9.0,9.0,75,7.4 +54295,,,,,,,,0, +47770,,,,,,,,0, +58741,70.0,6.0,9.0,9.0,8.0,10.0,7.0,6,0.78 +23327,,,,,,,,0, +3751,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.83 +15299,94.0,10.0,10.0,10.0,10.0,10.0,10.0,19,1.81 +76673,78.0,8.0,8.0,9.0,9.0,10.0,8.0,16,1.95 +60861,97.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.96 +33396,90.0,10.0,8.0,9.0,9.0,9.0,9.0,7,1.12 +71583,100.0,9.0,9.0,9.0,9.0,9.0,9.0,3,0.31 +36769,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +902,,,,,,,,0, +27531,70.0,7.0,7.0,10.0,8.0,9.0,7.0,2,0.23 +49610,,,,,,,,0, +32231,,,,,,,,0, +44470,83.0,9.0,7.0,9.0,9.0,10.0,9.0,34,3.47 +66879,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.46 +12582,,,,,,,,1,0.14 +22597,89.0,9.0,10.0,8.0,9.0,9.0,8.0,9,0.91 +68612,67.0,8.0,6.0,8.0,8.0,8.0,7.0,20,1.97 +24943,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.12 +33697,89.0,9.0,9.0,10.0,9.0,9.0,9.0,7,0.86 +71433,93.0,10.0,10.0,10.0,10.0,9.0,9.0,7,0.73 +47128,,,,,,,,1, +12907,,,,,,,,0, +13084,90.0,10.0,10.0,10.0,9.0,9.0,9.0,2,0.39 +20628,80.0,9.0,8.0,10.0,9.0,10.0,9.0,17,1.66 +46413,,,,,,,,0, +49585,,,,,,,,0, +65081,100.0,10.0,8.0,10.0,10.0,9.0,9.0,2,0.25 +31809,80.0,6.0,5.0,9.0,6.0,8.0,7.0,2,1.0 +14427,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.07 +25079,,,,,,,,0, +41330,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.27 +44487,98.0,10.0,10.0,10.0,10.0,10.0,10.0,25,3.06 +24126,87.0,8.0,10.0,10.0,8.0,10.0,7.0,3,0.41 +49024,96.0,10.0,10.0,10.0,10.0,10.0,9.0,16,1.68 +16498,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.1 +31147,100.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.87 +69061,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,1.23 +23334,98.0,10.0,10.0,10.0,10.0,9.0,10.0,11,1.31 +60645,,,,,,,,0, +52929,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.24 +41542,88.0,9.0,8.0,10.0,10.0,10.0,9.0,5,0.57 +63837,,,,,,,,0, +43680,93.0,9.0,9.0,9.0,10.0,10.0,9.0,11,2.17 +7875,,,,,,,,0, +1068,97.0,10.0,10.0,10.0,10.0,9.0,10.0,22,2.14 +25261,97.0,9.0,9.0,10.0,10.0,9.0,9.0,7,1.32 +6758,100.0,10.0,10.0,10.0,10.0,9.0,10.0,17,1.67 +18911,96.0,10.0,10.0,10.0,10.0,10.0,9.0,14,1.82 +15425,100.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.73 +13376,,,,,,,,0, +20637,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.96 +50309,,,,,,,,1, +61013,90.0,9.0,9.0,10.0,10.0,10.0,9.0,62,6.37 +67492,97.0,10.0,10.0,10.0,10.0,10.0,10.0,21,2.32 +57537,60.0,8.0,2.0,10.0,4.0,10.0,2.0,1,1.0 +32210,88.0,9.0,9.0,10.0,10.0,10.0,9.0,82,8.42 +52730,89.0,9.0,9.0,10.0,10.0,10.0,9.0,56,5.54 +39797,92.0,9.0,9.0,10.0,10.0,10.0,9.0,55,5.43 +42175,91.0,9.0,9.0,9.0,9.0,9.0,8.0,14,1.56 +41049,95.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.87 +29959,,,,,,,,0, +40572,,,,,,,,0, +32509,100.0,8.0,8.0,10.0,8.0,6.0,8.0,1,0.31 +65178,,,,,,,,0, +48160,100.0,8.0,8.0,10.0,6.0,6.0,10.0,1,0.14 +40023,97.0,10.0,10.0,10.0,10.0,10.0,10.0,42,4.34 +43116,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,1.84 +20970,90.0,9.0,8.0,10.0,10.0,9.0,9.0,2,0.2 +54006,82.0,9.0,9.0,9.0,9.0,10.0,8.0,20,1.99 +64858,73.0,8.0,6.0,9.0,10.0,9.0,8.0,7,0.84 +35557,,,,,,,,0, +49274,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,1.67 +52576,92.0,9.0,9.0,10.0,9.0,9.0,9.0,26,2.55 +23071,,,,,,,,0, +68111,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.11 +6617,,,,,,,,0, +7328,,,,,,,,0, +45386,84.0,8.0,10.0,10.0,10.0,10.0,8.0,11,1.21 +46151,97.0,10.0,10.0,10.0,10.0,10.0,10.0,37,3.88 +31422,,,,,,,,0, +59036,93.0,9.0,9.0,9.0,10.0,9.0,9.0,3,0.69 +48326,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.11 +8414,75.0,8.0,7.0,9.0,7.0,8.0,6.0,4,0.75 +40792,96.0,10.0,10.0,10.0,10.0,10.0,9.0,11,1.3 +74467,,,,,,,,0, +75980,100.0,10.0,10.0,10.0,9.0,9.0,9.0,3,0.36 +71668,,,,,,,,0, +40856,85.0,8.0,8.0,10.0,8.0,10.0,8.0,4,0.44 +14040,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.2 +38575,96.0,10.0,9.0,10.0,10.0,10.0,9.0,9,0.88 +17711,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,1.28 +33318,,,,,,,,0, +16216,98.0,10.0,10.0,10.0,10.0,10.0,10.0,20,2.05 +13608,,,,,,,,1,0.11 +6440,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.86 +61161,97.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.82 +25857,,,,,,,,0, +43410,94.0,10.0,9.0,10.0,10.0,9.0,10.0,78,7.62 +46053,90.0,9.0,9.0,10.0,10.0,9.0,9.0,13,1.34 +62925,86.0,9.0,9.0,10.0,9.0,10.0,9.0,18,1.91 +47554,99.0,10.0,10.0,10.0,10.0,9.0,10.0,15,2.63 +75871,,,,,,,,0, +66659,,,,,,,,2,0.19 +75373,88.0,9.0,10.0,10.0,9.0,9.0,8.0,5,0.51 +34070,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.68 +33018,96.0,9.0,10.0,10.0,10.0,10.0,9.0,5,0.52 +56799,,,,,,,,0, +42784,92.0,10.0,9.0,9.0,9.0,10.0,9.0,14,1.35 +18917,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.63 +70976,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.36 +40946,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.1 +3339,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,1.03 +5454,98.0,10.0,10.0,10.0,10.0,10.0,9.0,11,1.15 +74308,,,,,,,,0, +48164,,,,,,,,0, +53851,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.19 +9687,76.0,9.0,10.0,7.0,8.0,9.0,8.0,5,0.55 +43485,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +1467,98.0,10.0,9.0,10.0,10.0,9.0,9.0,17,2.21 +13912,93.0,9.0,10.0,10.0,10.0,9.0,9.0,3,0.41 +35853,,,,,,,,0, +74585,,,,,,,,0, +74395,,,,,,,,0, +12820,,,,,,,,0, +26911,,,,,,,,0, +57353,,,,,,,,0, +25470,,,,,,,,0, +17273,80.0,10.0,10.0,8.0,8.0,10.0,10.0,1,0.24 +3025,76.0,9.0,9.0,8.0,6.0,6.0,7.0,5,0.56 +18154,82.0,9.0,9.0,9.0,9.0,8.0,8.0,11,1.25 +24833,98.0,10.0,10.0,10.0,10.0,9.0,10.0,12,1.66 +75434,73.0,8.0,7.0,10.0,9.0,9.0,7.0,33,3.16 +1561,100.0,10.0,10.0,10.0,10.0,10.0,10.0,30,3.19 +69444,87.0,9.0,9.0,9.0,9.0,10.0,8.0,16,1.58 +73395,98.0,10.0,10.0,9.0,10.0,10.0,9.0,14,1.59 +25132,84.0,9.0,6.0,9.0,9.0,8.0,9.0,10,1.02 +31081,,,,,,,,0, +5386,89.0,9.0,9.0,9.0,9.0,9.0,9.0,83,8.06 +34087,,,,,,,,0, +74607,100.0,10.0,10.0,10.0,10.0,10.0,10.0,25,2.73 +47796,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.99 +41107,100.0,10.0,8.0,10.0,10.0,10.0,8.0,2,0.19 +708,80.0,9.0,8.0,9.0,10.0,9.0,8.0,9,1.0 +71622,,,,,,,,0, +61310,86.0,9.0,8.0,9.0,10.0,10.0,9.0,11,1.15 +16874,94.0,9.0,9.0,9.0,10.0,9.0,9.0,10,1.35 +30415,87.0,9.0,9.0,9.0,9.0,9.0,9.0,15,1.49 +21128,97.0,9.0,10.0,10.0,10.0,10.0,9.0,15,1.45 +35157,100.0,9.0,8.0,10.0,10.0,10.0,10.0,3,0.29 +28878,98.0,10.0,10.0,10.0,10.0,10.0,10.0,28,2.74 +48721,90.0,10.0,10.0,10.0,10.0,9.0,9.0,2,0.38 +132,,,,,,,,1,0.1 +36463,,,,,,,,1,0.1 +4068,100.0,10.0,10.0,10.0,10.0,10.0,10.0,22,2.44 +69051,,,,,,,,0, +57960,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.82 +76135,89.0,9.0,9.0,10.0,10.0,10.0,9.0,24,2.44 +32664,98.0,10.0,10.0,10.0,10.0,10.0,10.0,31,3.1 +42790,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,1.41 +42974,,,,,,,,1,0.12 +53383,,,,,,,,0, +62780,100.0,8.0,10.0,10.0,10.0,8.0,10.0,2,0.2 +49261,,,,,,,,0, +40379,80.0,9.0,10.0,10.0,10.0,8.0,8.0,6,0.68 +70343,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +65990,77.0,8.0,9.0,10.0,10.0,10.0,8.0,6,0.74 +4520,,,,,,,,0, +26458,,,,,,,,0, +42430,95.0,10.0,9.0,10.0,10.0,10.0,10.0,60,5.88 +22671,99.0,10.0,9.0,9.0,10.0,10.0,10.0,14,1.47 +60897,60.0,6.0,8.0,8.0,10.0,4.0,6.0,1,0.13 +33845,93.0,10.0,10.0,9.0,10.0,10.0,10.0,8,0.82 +22095,,,,,,,,0, +22346,,,,,,,,0, +67805,80.0,8.0,8.0,10.0,10.0,8.0,10.0,1,0.13 +21965,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.39 +64271,,,,,,,,0, +66103,92.0,9.0,9.0,10.0,9.0,9.0,9.0,10,1.07 +17641,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.52 +7804,82.0,9.0,8.0,9.0,10.0,10.0,8.0,32,3.1 +11708,,,,,,,,0, +36765,91.0,9.0,9.0,10.0,10.0,9.0,9.0,13,1.98 +53098,,,,,,,,0, +43841,100.0,10.0,10.0,10.0,10.0,6.0,8.0,1,0.12 +63277,100.0,9.0,9.0,9.0,9.0,9.0,9.0,3,0.3 +23094,,,,,,,,0, +15669,92.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.97 +21321,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,2.59 +9887,95.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.81 +8193,,,,,,,,0, +51432,,,,,,,,0, +4597,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.26 +12149,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,1.04 +10371,,,,,,,,0, +75012,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.29 +42480,80.0,8.0,8.0,10.0,10.0,10.0,10.0,1,0.13 +56865,100.0,10.0,9.0,10.0,10.0,10.0,10.0,6,0.72 +18606,94.0,10.0,10.0,10.0,10.0,10.0,10.0,10,1.3 +34294,100.0,10.0,10.0,10.0,10.0,9.0,10.0,9,1.0 +64494,,,,,,,,0, +2212,92.0,10.0,10.0,10.0,10.0,10.0,10.0,13,1.36 +28516,84.0,8.0,9.0,10.0,10.0,10.0,9.0,10,1.02 +37563,98.0,10.0,10.0,10.0,10.0,9.0,10.0,12,2.59 +51089,,,,,,,,0, +55887,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,1.34 +42586,,,,,,,,0, +53514,,,,,,,,0, +32066,87.0,9.0,8.0,10.0,10.0,9.0,9.0,57,5.5 +23030,,,,,,,,0, +52146,98.0,10.0,9.0,9.0,10.0,10.0,9.0,12,1.25 +11364,93.0,10.0,10.0,10.0,9.0,10.0,9.0,3,0.57 +68186,,,,,,,,0, +37225,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.26 +75739,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.4 +69306,96.0,9.0,8.0,10.0,10.0,10.0,9.0,11,1.3 +58119,,,,,,,,1,0.32 +62933,98.0,10.0,10.0,10.0,10.0,10.0,9.0,9,0.96 +63260,,,,,,,,0, +6873,,,,,,,,2,0.19 +4663,,,,,,,,0, +34576,,,,,,,,0, +4589,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.46 +43375,,,,,,,,1,0.14 +30817,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.1 +58916,71.0,8.0,8.0,8.0,8.0,10.0,8.0,9,1.29 +42249,93.0,10.0,9.0,10.0,10.0,10.0,10.0,9,0.96 +65819,85.0,8.0,8.0,9.0,9.0,10.0,8.0,22,2.23 +51487,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.33 +41684,100.0,10.0,10.0,9.0,10.0,10.0,9.0,3,0.48 +76250,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +63762,90.0,8.0,10.0,9.0,9.0,10.0,9.0,8,0.98 +11661,80.0,9.0,8.0,10.0,9.0,9.0,8.0,17,1.77 +28295,100.0,10.0,10.0,10.0,10.0,10.0,6.0,1,1.0 +47262,80.0,8.0,10.0,10.0,10.0,8.0,8.0,2,0.2 +69299,,,,,,,,0, +47444,,,,,,,,0, +2768,,,,,,,,0, +17890,,,,,,,,0, +25527,100.0,9.0,8.0,9.0,9.0,9.0,9.0,4,0.4 +9129,98.0,10.0,10.0,10.0,10.0,10.0,10.0,23,2.49 +154,100.0,10.0,10.0,9.0,10.0,10.0,10.0,3,0.34 +65104,97.0,10.0,10.0,10.0,10.0,10.0,10.0,15,3.57 +32653,92.0,10.0,8.0,10.0,10.0,9.0,9.0,28,2.85 +3076,92.0,10.0,10.0,9.0,10.0,10.0,9.0,5,0.5 +41758,100.0,10.0,10.0,10.0,10.0,6.0,6.0,1,0.21 +14087,,,,,,,,0, +35034,80.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.15 +65833,,,,,,,,0, +25234,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.1 +42434,98.0,9.0,10.0,10.0,10.0,10.0,10.0,10,1.0 +74551,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.92 +4926,90.0,9.0,8.0,9.0,9.0,8.0,10.0,2,0.28 +20814,99.0,10.0,10.0,10.0,10.0,10.0,10.0,16,1.75 +60353,100.0,10.0,10.0,10.0,10.0,9.0,9.0,4,0.41 +75433,,,,,,,,0, +48857,,,,,,,,0, +13211,,,,,,,,0, +22721,96.0,10.0,10.0,9.0,10.0,10.0,10.0,31,3.22 +25667,100.0,10.0,9.0,10.0,10.0,10.0,10.0,6,0.63 +74450,93.0,10.0,10.0,10.0,9.0,9.0,9.0,3,0.3 +2140,97.0,10.0,10.0,10.0,10.0,9.0,10.0,32,8.0 +63927,97.0,10.0,10.0,9.0,9.0,10.0,10.0,6,0.68 +3777,,,,,,,,0, +51595,40.0,4.0,6.0,6.0,8.0,8.0,4.0,2,0.38 +39807,,,,,,,,1,0.19 +26174,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.1 +39425,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.18 +60256,80.0,9.0,9.0,7.0,8.0,9.0,8.0,3,0.61 +49494,,,,,,,,0, +8978,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.13 +52801,93.0,10.0,9.0,10.0,10.0,9.0,10.0,50,4.89 +18874,,,,,,,,0, +67197,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,1.07 +24690,92.0,9.0,9.0,10.0,10.0,10.0,9.0,13,1.25 +5125,95.0,10.0,10.0,10.0,10.0,9.0,10.0,17,1.87 +47618,93.0,10.0,10.0,10.0,8.0,10.0,9.0,9,0.94 +16571,,,,,,,,0, +852,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.46 +68316,87.0,9.0,7.0,10.0,10.0,9.0,8.0,9,0.92 +4276,100.0,10.0,10.0,10.0,10.0,10.0,10.0,19,2.25 +50753,95.0,10.0,9.0,10.0,10.0,9.0,10.0,6,0.63 +33621,,,,,,,,1,0.11 +21905,80.0,9.0,8.0,9.0,9.0,10.0,8.0,8,0.98 +22063,84.0,8.0,8.0,8.0,8.0,8.0,9.0,12,1.29 +3866,91.0,9.0,9.0,10.0,10.0,10.0,9.0,42,4.1 +46613,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.16 +38457,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,1.3 +5871,78.0,9.0,8.0,8.0,8.0,9.0,8.0,8,1.03 +84,83.0,9.0,10.0,8.0,7.0,10.0,8.0,6,0.75 +62473,,,,,,,,0, +46955,,,,,,,,1,0.1 +48561,84.0,10.0,10.0,8.0,8.0,10.0,8.0,5,0.65 +11553,,,,,,,,0, +72989,96.0,10.0,10.0,10.0,10.0,9.0,9.0,18,2.21 +65840,100.0,10.0,10.0,10.0,10.0,10.0,10.0,19,2.23 +40317,80.0,9.0,7.0,10.0,9.0,10.0,7.0,8,1.15 +36140,98.0,9.0,10.0,10.0,10.0,10.0,9.0,9,0.98 +42531,,,,,,,,0, +54703,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.18 +11287,100.0,10.0,10.0,9.0,10.0,10.0,10.0,2,0.61 +45614,100.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.12 +3348,97.0,10.0,10.0,10.0,10.0,9.0,9.0,14,1.83 +61325,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.26 +27612,84.0,10.0,8.0,9.0,9.0,9.0,8.0,10,1.42 +24228,76.0,8.0,7.0,8.0,8.0,8.0,8.0,6,0.58 +70495,100.0,10.0,9.0,10.0,10.0,9.0,9.0,2,0.32 +2167,95.0,10.0,10.0,10.0,10.0,10.0,10.0,65,7.25 +42674,,,,,,,,0, +68759,,,,,,,,0, +54665,,,,,,,,0, +30397,,,,,,,,0, +6958,,,,,,,,0, +15818,40.0,4.0,8.0,8.0,8.0,2.0,8.0,1,0.16 +1447,80.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.1 +6456,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.2 +52090,,,,,,,,0, +70606,90.0,10.0,9.0,9.0,8.0,10.0,9.0,8,0.79 +41728,,,,,,,,0, +6451,98.0,10.0,10.0,10.0,10.0,10.0,9.0,11,1.15 +24788,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.3 +39247,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.47 +6016,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,1.2 +23090,97.0,9.0,9.0,10.0,10.0,10.0,9.0,6,2.02 +65853,,,,,,,,0, +39621,,,,,,,,0, +16792,,,,,,,,0, +63805,94.0,10.0,9.0,10.0,10.0,10.0,10.0,23,2.54 +47839,94.0,10.0,9.0,9.0,10.0,10.0,9.0,10,1.02 +59689,88.0,9.0,8.0,10.0,10.0,10.0,9.0,19,1.88 +63873,94.0,9.0,9.0,10.0,10.0,9.0,9.0,33,3.24 +47836,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,1.52 +37532,100.0,10.0,10.0,10.0,10.0,10.0,10.0,48,4.85 +58974,,,,,,,,0, +44423,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.1 +36806,93.0,10.0,10.0,10.0,10.0,10.0,9.0,77,8.46 +5203,100.0,10.0,10.0,10.0,10.0,9.0,10.0,13,1.57 +66168,87.0,9.0,10.0,9.0,9.0,9.0,9.0,9,1.02 +48580,94.0,10.0,9.0,10.0,10.0,8.0,9.0,7,0.74 +22914,,,,,,,,0, +75584,97.0,9.0,10.0,10.0,10.0,9.0,10.0,7,0.68 +50485,87.0,9.0,9.0,10.0,9.0,10.0,9.0,20,2.47 +25588,100.0,10.0,10.0,10.0,10.0,10.0,10.0,25,3.5 +17289,100.0,10.0,10.0,10.0,10.0,10.0,9.0,7,0.94 +49262,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.52 +21598,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,1.85 +8355,93.0,9.0,9.0,8.0,8.0,9.0,9.0,3,0.4 +8814,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.81 +49108,20.0,4.0,6.0,2.0,3.0,7.0,3.0,2,0.21 +22399,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.1 +13411,98.0,10.0,9.0,10.0,10.0,9.0,10.0,30,3.06 +45057,90.0,9.0,10.0,9.0,8.0,9.0,8.0,6,0.67 +9547,100.0,9.0,10.0,10.0,10.0,10.0,10.0,2,0.34 +24717,,,,,,,,1,0.24 +5969,95.0,9.0,9.0,10.0,10.0,9.0,9.0,5,0.53 +53001,,,,,,,,0, +3340,100.0,10.0,10.0,9.0,10.0,10.0,10.0,6,0.61 +53701,,,,,,,,0, +7518,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.11 +72907,94.0,9.0,9.0,9.0,10.0,10.0,9.0,22,2.17 +41597,,,,,,,,0, +58998,100.0,10.0,10.0,10.0,10.0,10.0,10.0,44,4.46 +8471,91.0,9.0,10.0,9.0,10.0,9.0,9.0,15,1.58 +5900,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,1.22 +46550,92.0,10.0,10.0,10.0,10.0,9.0,9.0,10,1.6 +53028,92.0,10.0,9.0,10.0,9.0,10.0,9.0,19,1.93 +2363,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.24 +28185,100.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.45 +31909,96.0,10.0,10.0,10.0,10.0,10.0,10.0,28,2.82 +46448,98.0,10.0,9.0,10.0,10.0,10.0,9.0,11,1.13 +67431,97.0,10.0,9.0,10.0,10.0,10.0,9.0,23,2.47 +17993,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.44 +4892,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,2.95 +68927,96.0,10.0,10.0,10.0,10.0,10.0,10.0,22,3.01 +56019,92.0,8.0,7.0,10.0,10.0,9.0,9.0,5,0.52 +5242,,,,,,,,0, +19483,,,,,,,,0, +45495,100.0,10.0,10.0,10.0,9.0,10.0,10.0,13,1.35 +6911,100.0,10.0,10.0,10.0,10.0,9.0,10.0,11,1.11 +45732,93.0,9.0,10.0,10.0,10.0,10.0,10.0,11,1.96 +55306,99.0,10.0,10.0,10.0,10.0,10.0,10.0,36,3.5 +33773,,,,,,,,0, +61973,,,,,,,,0, +28576,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.12 +34706,40.0,2.0,8.0,2.0,2.0,8.0,4.0,1,0.56 +20998,100.0,10.0,10.0,10.0,10.0,10.0,10.0,18,1.79 +42114,80.0,9.0,9.0,10.0,10.0,8.0,7.0,2,2.0 +48092,,,,,,,,0, +40305,,,,,,,,0, +76893,,,,,,,,0, +47614,,,,,,,,0, +21112,70.0,10.0,7.0,9.0,10.0,9.0,9.0,4,0.39 +11095,96.0,10.0,10.0,10.0,10.0,10.0,10.0,10,1.22 +24843,,,,,,,,0, +69254,,,,,,,,0, +39257,20.0,2.0,2.0,2.0,2.0,2.0,2.0,4,0.42 +23243,,,,,,,,0, +65462,,,,,,,,0, +34425,100.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.4 +32431,,,,,,,,1,0.1 +28980,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,1.45 +40376,97.0,10.0,9.0,10.0,10.0,10.0,10.0,14,1.39 +63,100.0,10.0,9.0,9.0,10.0,10.0,9.0,7,1.04 +34916,92.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.53 +73932,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.91 +3297,93.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.31 +75148,,,,,,,,0, +75441,,,,,,,,0, +76369,,,,,,,,0, +75232,96.0,10.0,10.0,10.0,10.0,10.0,10.0,28,2.96 +26213,,,,,,,,0, +59814,93.0,9.0,9.0,10.0,9.0,9.0,9.0,15,1.57 +34629,,,,,,,,0, +47401,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.86 +75638,90.0,10.0,10.0,9.0,10.0,10.0,10.0,3,0.32 +8972,81.0,8.0,8.0,9.0,9.0,9.0,9.0,39,3.8 +64343,,,,,,,,0, +4672,100.0,10.0,10.0,10.0,10.0,10.0,10.0,22,3.16 +35927,80.0,9.0,9.0,9.0,10.0,9.0,9.0,9,0.96 +69702,,,,,,,,0, +37553,93.0,10.0,9.0,10.0,10.0,9.0,10.0,9,1.07 +40994,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.22 +59702,86.0,9.0,10.0,9.0,10.0,9.0,9.0,7,0.82 +38419,,,,,,,,0, +16022,,,,,,,,0, +5567,80.0,9.0,7.0,10.0,10.0,10.0,10.0,2,0.22 +26203,99.0,10.0,10.0,10.0,10.0,10.0,9.0,15,1.61 +76744,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.42 +7889,,,,,,,,1,0.34 +5984,88.0,10.0,9.0,9.0,10.0,10.0,9.0,8,0.82 +42942,86.0,9.0,9.0,10.0,10.0,10.0,9.0,26,2.73 +76320,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.37 +54084,,,,,,,,0, +23302,81.0,9.0,8.0,9.0,9.0,9.0,9.0,27,2.71 +13843,92.0,9.0,9.0,10.0,10.0,9.0,9.0,27,2.77 +31026,,,,,,,,0, +10416,88.0,8.0,8.0,10.0,10.0,9.0,9.0,36,3.52 +65129,81.0,8.0,8.0,9.0,9.0,9.0,8.0,29,2.94 +42558,,,,,,,,0, +4140,89.0,10.0,9.0,9.0,10.0,9.0,9.0,40,3.99 +22894,,,,,,,,0, +42414,93.0,9.0,9.0,9.0,9.0,9.0,9.0,4,0.49 +35117,98.0,10.0,10.0,10.0,10.0,10.0,10.0,64,6.98 +7896,85.0,9.0,8.0,10.0,10.0,9.0,9.0,34,3.42 +12128,60.0,4.0,6.0,10.0,8.0,10.0,8.0,1,0.13 +28155,96.0,10.0,10.0,10.0,10.0,9.0,10.0,33,3.3 +46655,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.11 +40444,80.0,9.0,7.0,10.0,10.0,10.0,7.0,2,1.11 +71300,83.0,9.0,8.0,10.0,9.0,9.0,8.0,21,2.31 +9623,81.0,9.0,9.0,10.0,10.0,10.0,8.0,32,3.32 +12904,80.0,6.0,8.0,10.0,10.0,10.0,6.0,2,1.07 +36750,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.26 +74292,92.0,10.0,9.0,8.0,9.0,10.0,9.0,10,0.97 +26528,96.0,10.0,10.0,10.0,10.0,10.0,9.0,9,0.96 +21884,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.63 +76207,95.0,10.0,9.0,9.0,10.0,10.0,10.0,4,0.69 +15487,99.0,10.0,10.0,10.0,10.0,10.0,10.0,14,1.43 +6226,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.21 +4753,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.12 +42177,95.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.68 +33429,75.0,9.0,8.0,9.0,9.0,9.0,7.0,4,0.45 +5884,,,,,,,,0, +46088,100.0,10.0,10.0,10.0,9.0,10.0,9.0,2,0.2 +66925,,,,,,,,0, +24615,98.0,10.0,10.0,10.0,10.0,10.0,10.0,14,1.44 +71713,,,,,,,,0, +10154,,,,,,,,0, +64029,89.0,10.0,10.0,10.0,10.0,10.0,9.0,7,0.77 +57538,,,,,,,,0, +18003,91.0,9.0,9.0,10.0,10.0,9.0,9.0,18,2.15 +52938,89.0,9.0,9.0,9.0,10.0,9.0,9.0,25,2.53 +23707,96.0,10.0,10.0,9.0,9.0,10.0,9.0,11,1.18 +40826,,,,,,,,0, +11015,20.0,2.0,8.0,8.0,8.0,2.0,8.0,1,0.19 +3466,,,,,,,,0, +25224,,,,,,,,0, +63734,,,,,,,,0, +57709,90.0,9.0,9.0,9.0,9.0,10.0,9.0,37,3.71 +10815,89.0,9.0,9.0,8.0,9.0,9.0,9.0,9,0.92 +34927,,,,,,,,0, +22876,93.0,10.0,9.0,9.0,10.0,10.0,10.0,6,0.69 +55682,,,,,,,,0, +36953,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.05 +62157,98.0,10.0,10.0,10.0,10.0,9.0,9.0,33,3.38 +46651,,,,,,,,0, +61950,95.0,10.0,10.0,10.0,9.0,10.0,9.0,11,1.35 +22879,,,,,,,,1,0.11 +72915,,,,,,,,0, +27849,94.0,10.0,9.0,10.0,10.0,10.0,9.0,28,3.15 +23160,,,,,,,,0, +40208,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,1.15 +55416,92.0,10.0,9.0,10.0,10.0,9.0,9.0,20,2.03 +21672,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,1.35 +25720,,,,,,,,0, +21519,100.0,10.0,10.0,10.0,10.0,8.0,9.0,3,0.39 +69521,98.0,10.0,10.0,9.0,10.0,10.0,10.0,8,0.79 +37286,98.0,10.0,10.0,10.0,10.0,9.0,10.0,25,2.47 +30884,100.0,10.0,10.0,7.0,9.0,9.0,9.0,2,0.21 +15560,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,1.49 +68730,70.0,10.0,5.0,10.0,10.0,9.0,9.0,2,0.22 +67429,92.0,9.0,9.0,9.0,10.0,10.0,9.0,24,2.37 +32493,,,,,,,,0, +65918,87.0,9.0,8.0,10.0,10.0,8.0,9.0,56,5.56 +14921,,,,,,,,0, +22334,98.0,9.0,9.0,9.0,10.0,9.0,9.0,22,2.29 +11657,,,,,,,,0, +12787,,,,,,,,0, +18531,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.28 +74232,99.0,10.0,10.0,10.0,10.0,9.0,10.0,17,2.37 +57468,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.24 +37546,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.54 +34099,,,,,,,,1,0.1 +35515,87.0,10.0,9.0,9.0,10.0,10.0,10.0,3,0.3 +68578,80.0,9.0,9.0,10.0,9.0,10.0,7.0,5,0.5 +9397,100.0,10.0,9.0,10.0,10.0,9.0,10.0,5,0.75 +61761,83.0,9.0,9.0,9.0,9.0,9.0,9.0,6,0.69 +7318,,,,,,,,0, +19961,97.0,10.0,10.0,10.0,10.0,10.0,10.0,37,3.7 +48317,90.0,9.0,8.0,9.0,9.0,10.0,9.0,2,0.24 +31274,92.0,10.0,10.0,10.0,9.0,8.0,9.0,10,1.53 +68837,94.0,10.0,9.0,10.0,10.0,9.0,10.0,8,0.84 +2731,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.24 +1155,,,,,,,,0, +33120,93.0,9.0,8.0,7.0,9.0,7.0,8.0,3,0.91 +2670,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.3 +39872,,,,,,,,0, +64485,,,,,,,,1,0.16 +26841,95.0,9.0,10.0,10.0,10.0,10.0,9.0,4,0.94 +8905,95.0,10.0,10.0,10.0,10.0,10.0,10.0,28,2.87 +19426,93.0,10.0,10.0,9.0,9.0,9.0,9.0,39,4.52 +36489,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.41 +67897,,,,,,,,0, +59949,97.0,10.0,10.0,10.0,10.0,9.0,10.0,60,6.79 +67955,,,,,,,,0, +18291,75.0,7.0,9.0,7.0,9.0,10.0,9.0,4,0.42 +20694,,,,,,,,0, +56696,,,,,,,,0, +16474,,,,,,,,0, +42989,93.0,10.0,10.0,10.0,10.0,9.0,9.0,10,1.05 +22140,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.51 +4648,100.0,10.0,10.0,8.0,10.0,10.0,10.0,2,0.2 +59029,,,,,,,,0, +41489,100.0,10.0,10.0,4.0,10.0,10.0,10.0,1,0.28 +54922,100.0,10.0,10.0,10.0,10.0,9.0,10.0,81,8.02 +61210,94.0,10.0,10.0,9.0,9.0,10.0,10.0,15,1.55 +68607,80.0,6.0,8.0,6.0,10.0,10.0,8.0,1,0.12 +47964,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.12 +59528,,,,,,,,0, +22852,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.44 +9117,80.0,10.0,10.0,10.0,8.0,7.0,8.0,2,1.28 +27160,96.0,10.0,9.0,10.0,10.0,10.0,10.0,10,1.13 +74822,90.0,9.0,9.0,10.0,9.0,9.0,9.0,10,1.16 +52982,92.0,9.0,10.0,10.0,10.0,9.0,9.0,12,1.57 +2328,100.0,10.0,10.0,8.0,10.0,9.0,10.0,5,0.51 +68699,90.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.55 +25367,90.0,9.0,8.0,9.0,9.0,9.0,10.0,3,0.78 +18515,97.0,10.0,10.0,10.0,10.0,10.0,10.0,38,3.73 +23115,,,,,,,,0, +29556,90.0,9.0,9.0,10.0,10.0,10.0,9.0,10,2.68 +11057,92.0,9.0,10.0,10.0,10.0,9.0,9.0,63,7.27 +23016,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.85 +24938,,,,,,,,1,0.1 +22497,,,,,,,,0, +42385,88.0,9.0,7.0,10.0,10.0,10.0,9.0,5,0.52 +63233,,,,,,,,0, +66304,89.0,9.0,8.0,9.0,10.0,10.0,9.0,17,1.73 +54491,97.0,10.0,10.0,10.0,10.0,10.0,9.0,23,2.78 +50782,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.48 +40546,,,,,,,,0, +65261,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.43 +9958,100.0,10.0,10.0,10.0,10.0,9.0,10.0,10,1.09 +71482,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,1.49 +25662,90.0,9.0,9.0,9.0,9.0,9.0,9.0,10,1.16 +45966,95.0,10.0,10.0,10.0,10.0,10.0,10.0,9,0.91 +50780,,,,,,,,0, +4527,91.0,10.0,9.0,10.0,10.0,9.0,10.0,7,1.04 +18927,92.0,9.0,9.0,10.0,9.0,10.0,9.0,81,8.21 +35472,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.41 +18798,,,,,,,,0, +34929,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.15 +34645,,,,,,,,0, +22989,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,1.25 +9368,89.0,10.0,10.0,8.0,9.0,9.0,9.0,9,1.0 +25776,98.0,10.0,10.0,10.0,10.0,9.0,10.0,18,1.81 +68503,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.35 +35847,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.36 +63243,77.0,9.0,7.0,9.0,9.0,9.0,8.0,47,4.62 +74302,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,1.02 +44835,84.0,9.0,9.0,9.0,10.0,10.0,9.0,15,1.51 +46677,80.0,8.0,6.0,10.0,6.0,8.0,8.0,1,0.12 +20809,,,,,,,,0, +71473,100.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.1 +50204,,,,,,,,0, +66217,87.0,9.0,9.0,8.0,9.0,9.0,8.0,11,1.19 +59303,90.0,10.0,8.0,10.0,10.0,9.0,10.0,5,0.72 +667,,,,,,,,0, +73008,,,,,,,,0, +35524,100.0,10.0,10.0,10.0,10.0,10.0,10.0,15,2.45 +19394,87.0,10.0,9.0,9.0,10.0,10.0,9.0,11,1.11 +33185,,,,,,,,0, +34781,,,,,,,,0, +73414,,,,,,,,0, +61892,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.85 +74313,97.0,9.0,10.0,10.0,10.0,9.0,10.0,13,1.37 +120,100.0,10.0,10.0,10.0,10.0,10.0,9.0,6,1.08 +46563,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.85 +21235,,,,,,,,1,0.11 +74192,84.0,9.0,6.0,8.0,9.0,10.0,9.0,5,0.65 +56361,91.0,9.0,9.0,10.0,10.0,9.0,9.0,37,3.7 +8734,,,,,,,,1,0.11 +13444,90.0,10.0,9.0,10.0,10.0,9.0,9.0,13,1.31 +50596,,,,,,,,0, +45968,60.0,9.0,7.0,8.0,6.0,8.0,7.0,3,0.3 +53932,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.57 +12427,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.11 +33805,100.0,10.0,10.0,10.0,10.0,10.0,9.0,12,1.52 +31820,94.0,9.0,10.0,10.0,9.0,10.0,9.0,7,1.21 +30773,94.0,10.0,9.0,10.0,9.0,10.0,9.0,10,2.16 +17339,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.11 +49637,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.3 +7068,80.0,9.0,8.0,7.0,8.0,9.0,9.0,4,0.59 +29879,98.0,10.0,10.0,10.0,10.0,10.0,10.0,19,1.95 +47833,90.0,9.0,10.0,9.0,10.0,9.0,9.0,7,0.74 +26702,88.0,9.0,9.0,9.0,9.0,9.0,9.0,25,2.65 +33104,91.0,10.0,10.0,9.0,9.0,10.0,10.0,9,1.21 +47897,,,,,,,,0, +57725,,,,,,,,0, +73995,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.23 +70518,96.0,9.0,10.0,10.0,10.0,10.0,10.0,10,1.03 +42888,80.0,8.0,8.0,8.0,8.0,9.0,8.0,6,0.7 +68971,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.1 +49658,96.0,10.0,9.0,10.0,10.0,10.0,10.0,24,2.47 +50774,85.0,9.0,8.0,9.0,9.0,9.0,9.0,85,8.42 +58453,90.0,9.0,10.0,10.0,10.0,10.0,10.0,8,0.96 +49149,93.0,9.0,9.0,10.0,10.0,9.0,9.0,8,1.05 +33744,,,,,,,,0, +69644,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.63 +16102,97.0,9.0,10.0,9.0,9.0,10.0,9.0,7,0.88 +33725,88.0,9.0,9.0,9.0,9.0,9.0,9.0,9,1.03 +72764,100.0,10.0,10.0,10.0,10.0,10.0,10.0,23,2.32 +62165,87.0,10.0,8.0,10.0,10.0,10.0,9.0,13,1.28 +10181,91.0,10.0,9.0,10.0,10.0,9.0,9.0,11,1.21 +44183,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.34 +48229,,,,,,,,1,0.12 +35223,94.0,10.0,9.0,10.0,10.0,10.0,9.0,22,2.37 +22771,,,,,,,,1,0.12 +13171,99.0,10.0,10.0,10.0,10.0,9.0,10.0,36,4.39 +20709,100.0,10.0,10.0,10.0,10.0,9.0,10.0,23,2.35 +472,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.72 +17763,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.41 +62482,90.0,10.0,7.0,10.0,10.0,10.0,10.0,2,2.0 +39555,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.2 +74053,90.0,10.0,9.0,10.0,10.0,10.0,9.0,2,0.26 +62427,94.0,9.0,9.0,9.0,9.0,10.0,9.0,14,1.47 +66493,88.0,10.0,10.0,10.0,10.0,9.0,9.0,26,8.48 +2358,92.0,10.0,9.0,10.0,10.0,10.0,9.0,70,7.09 +19407,89.0,9.0,9.0,9.0,9.0,9.0,9.0,66,6.67 +52173,,,,,,,,0, +59608,89.0,9.0,9.0,9.0,10.0,10.0,9.0,58,5.94 +38397,90.0,9.0,9.0,9.0,9.0,9.0,9.0,66,6.73 +17892,96.0,10.0,9.0,10.0,10.0,9.0,9.0,16,1.76 +20833,100.0,10.0,10.0,10.0,10.0,9.0,10.0,10,1.05 +20842,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,3.8 +4689,,,,,,,,0, +71138,,,,,,,,0, +40267,80.0,9.0,9.0,9.0,8.0,10.0,8.0,10,1.27 +48557,83.0,8.0,8.0,9.0,9.0,9.0,8.0,6,0.61 +32267,78.0,8.0,9.0,9.0,9.0,9.0,8.0,21,2.15 +4138,53.0,7.0,5.0,7.0,7.0,9.0,6.0,3,0.32 +20450,84.0,10.0,9.0,10.0,10.0,10.0,8.0,5,0.88 +10317,80.0,8.0,10.0,9.0,9.0,9.0,8.0,2,0.21 +58864,,,,,,,,0, +47648,97.0,10.0,10.0,10.0,10.0,10.0,9.0,13,1.42 +34743,95.0,10.0,10.0,9.0,9.0,10.0,9.0,11,1.18 +16260,100.0,6.0,8.0,10.0,10.0,10.0,10.0,1,0.1 +70593,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.71 +160,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.11 +14242,99.0,10.0,10.0,10.0,10.0,10.0,10.0,14,1.76 +11276,86.0,8.0,9.0,9.0,9.0,9.0,9.0,10,1.15 +19732,98.0,10.0,10.0,10.0,10.0,10.0,10.0,11,1.14 +71055,100.0,10.0,10.0,10.0,10.0,10.0,10.0,16,1.64 +39267,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,1.25 +40336,,,,,,,,0, +48804,,,,,,,,0, +25297,100.0,10.0,10.0,10.0,9.0,10.0,9.0,2,0.22 +36764,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.63 +27925,97.0,10.0,10.0,10.0,10.0,10.0,9.0,15,1.62 +73532,96.0,10.0,9.0,9.0,9.0,10.0,10.0,14,1.55 +62849,94.0,9.0,10.0,9.0,9.0,10.0,9.0,7,0.76 +53854,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.64 +73355,93.0,9.0,9.0,10.0,10.0,9.0,9.0,14,1.41 +65503,98.0,10.0,10.0,10.0,10.0,9.0,10.0,64,6.98 +54314,95.0,10.0,10.0,10.0,10.0,10.0,10.0,19,2.09 +56968,92.0,10.0,9.0,10.0,10.0,9.0,10.0,47,4.8 +29967,,,,,,,,0, +76504,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.27 +26965,,,,,,,,0, +20616,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.1 +42593,94.0,10.0,10.0,10.0,10.0,10.0,9.0,11,1.09 +6230,93.0,10.0,9.0,10.0,10.0,8.0,9.0,18,2.25 +64555,,,,,,,,0, +57191,91.0,9.0,10.0,9.0,9.0,9.0,9.0,9,0.92 +69024,96.0,10.0,10.0,10.0,10.0,10.0,10.0,9,1.14 +25245,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.2 +39400,83.0,9.0,9.0,9.0,9.0,9.0,9.0,14,1.68 +72880,,,,,,,,0, +24787,80.0,9.0,7.0,9.0,9.0,9.0,8.0,62,6.33 +71922,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.98 +12293,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.14 +47489,90.0,9.0,10.0,9.0,10.0,10.0,10.0,2,0.24 +17173,98.0,10.0,9.0,10.0,10.0,10.0,10.0,12,1.3 +28246,73.0,8.0,8.0,9.0,9.0,10.0,8.0,71,7.17 +74475,,,,,,,,0, +21826,84.0,8.0,9.0,10.0,10.0,10.0,8.0,5,0.57 +34180,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.5 +45197,,,,,,,,1,0.14 +69554,99.0,10.0,10.0,10.0,10.0,9.0,9.0,15,1.8 +25879,84.0,9.0,8.0,9.0,9.0,10.0,8.0,14,1.62 +74055,93.0,9.0,9.0,10.0,9.0,10.0,9.0,30,3.13 +22098,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,1.3 +38724,,,,,,,,0, +21334,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.24 +68866,93.0,10.0,9.0,10.0,10.0,10.0,9.0,15,1.84 +4718,,,,,,,,0, +37922,97.0,10.0,10.0,9.0,10.0,10.0,9.0,14,1.48 +70578,92.0,10.0,10.0,9.0,10.0,10.0,8.0,5,0.57 +13293,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.47 +11283,94.0,10.0,9.0,10.0,10.0,8.0,9.0,8,0.89 +63991,100.0,10.0,10.0,6.0,10.0,10.0,8.0,1,0.1 +21896,85.0,9.0,9.0,10.0,10.0,9.0,9.0,20,2.04 +53239,,,,,,,,0, +2586,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.24 +47852,,,,,,,,0, +62747,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.89 +12540,,,,,,,,0, +24239,80.0,8.0,8.0,10.0,10.0,10.0,8.0,4,0.51 +30552,,,,,,,,0, +56310,93.0,9.0,8.0,9.0,9.0,10.0,9.0,5,0.5 +16291,88.0,9.0,9.0,9.0,9.0,10.0,8.0,13,1.55 +24325,,,,,,,,1,0.33 +5426,98.0,10.0,10.0,10.0,10.0,10.0,10.0,20,2.16 +7536,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.16 +56151,40.0,2.0,2.0,4.0,6.0,6.0,2.0,1,0.1 +76561,100.0,9.0,9.0,10.0,10.0,10.0,9.0,4,0.63 +33765,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.75 +60282,,,,,,,,0, +75153,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.1 +18572,96.0,9.0,10.0,10.0,10.0,10.0,10.0,5,0.81 +29234,100.0,10.0,9.0,10.0,9.0,10.0,9.0,3,0.37 +26954,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.61 +32268,91.0,10.0,9.0,9.0,9.0,9.0,9.0,40,4.12 +34468,87.0,8.0,9.0,10.0,10.0,10.0,9.0,4,0.44 +60912,93.0,10.0,9.0,10.0,10.0,9.0,9.0,6,0.6 +57974,88.0,9.0,10.0,10.0,10.0,10.0,9.0,21,2.15 +66703,87.0,9.0,9.0,10.0,10.0,9.0,9.0,3,0.53 +39142,80.0,7.0,7.0,10.0,9.0,10.0,8.0,2,0.38 +66415,70.0,8.0,9.0,10.0,7.0,10.0,7.0,6,0.63 +62451,99.0,10.0,10.0,10.0,10.0,9.0,10.0,19,4.49 +33901,74.0,7.0,5.0,8.0,8.0,8.0,8.0,7,0.76 +20485,100.0,8.0,10.0,10.0,10.0,10.0,10.0,2,0.28 +69194,,,,,,,,0, +37945,,,,,,,,1,0.11 +11440,90.0,10.0,10.0,9.0,9.0,9.0,10.0,8,0.96 +29268,,,,,,,,1,0.25 +1318,100.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.4 +53395,87.0,9.0,9.0,9.0,9.0,8.0,8.0,3,0.36 +17432,97.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.71 +45402,96.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.52 +7610,95.0,10.0,10.0,10.0,10.0,9.0,9.0,25,2.91 +30470,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.59 +34800,94.0,10.0,10.0,10.0,9.0,9.0,9.0,22,2.21 +39226,,,,,,,,0, +47320,87.0,9.0,9.0,10.0,10.0,10.0,9.0,9,0.94 +9693,95.0,10.0,9.0,10.0,10.0,9.0,9.0,14,1.63 +52484,,,,,,,,0, +47099,80.0,8.0,10.0,10.0,10.0,10.0,8.0,1,0.11 +33233,85.0,8.0,10.0,9.0,9.0,9.0,8.0,13,1.43 +53307,100.0,10.0,8.0,10.0,10.0,6.0,10.0,1,0.49 +18406,90.0,8.0,10.0,10.0,9.0,10.0,9.0,8,1.0 +64602,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.11 +28551,,,,,,,,0, +27666,80.0,8.0,10.0,9.0,8.0,10.0,10.0,3,0.36 +13141,,,,,,,,0, +36241,94.0,10.0,9.0,10.0,10.0,10.0,9.0,8,0.86 +65773,94.0,10.0,9.0,10.0,10.0,10.0,9.0,13,1.38 +75100,95.0,10.0,10.0,10.0,10.0,8.0,9.0,22,2.96 +40412,78.0,8.0,8.0,8.0,10.0,8.0,8.0,12,1.32 +38855,83.0,9.0,8.0,8.0,9.0,9.0,8.0,6,0.68 +73855,,,,,,,,1,0.1 +2767,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.14 +51180,,,,,,,,0, +25731,86.0,9.0,8.0,9.0,9.0,9.0,9.0,13,1.39 +31153,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.11 +12942,94.0,10.0,9.0,9.0,10.0,10.0,9.0,10,1.21 +4721,93.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.32 +31080,,,,,,,,0, +33635,,,,,,,,0, +60509,,,,,,,,0, +58125,89.0,9.0,9.0,9.0,10.0,10.0,10.0,9,0.94 +32964,74.0,8.0,8.0,9.0,8.0,10.0,7.0,31,3.51 +52894,,,,,,,,1,0.1 +42668,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.1 +51486,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,1.44 +75619,93.0,10.0,10.0,9.0,10.0,10.0,10.0,14,1.57 +59217,,,,,,,,0, +70177,93.0,10.0,9.0,10.0,10.0,9.0,9.0,24,3.03 +61699,80.0,10.0,8.0,8.0,6.0,10.0,10.0,1,0.36 +73027,,,,,,,,0, +55644,,,,,,,,0, +16661,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.15 +18857,,,,,,,,0, +21915,96.0,10.0,10.0,10.0,10.0,10.0,10.0,10,1.08 +48976,,,,,,,,0, +30130,,,,,,,,0, +67343,,,,,,,,0, +11294,,,,,,,,0, +68928,99.0,10.0,10.0,10.0,10.0,10.0,10.0,36,3.62 +69707,,,,,,,,0, +48794,,,,,,,,0, +59441,100.0,10.0,10.0,9.0,10.0,10.0,10.0,11,1.29 +16109,92.0,9.0,9.0,9.0,9.0,10.0,9.0,6,0.72 +64048,95.0,10.0,10.0,10.0,10.0,10.0,10.0,13,1.47 +55162,85.0,9.0,9.0,10.0,9.0,9.0,8.0,29,3.07 +4430,90.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.65 +48330,,,,,,,,0, +31687,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.31 +40264,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.96 +62665,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.11 +14705,73.0,8.0,7.0,9.0,9.0,10.0,8.0,58,6.08 +70953,,,,,,,,0, +50570,87.0,9.0,8.0,8.0,8.0,9.0,9.0,10,3.3 +74287,94.0,10.0,9.0,10.0,10.0,10.0,10.0,16,1.81 +47284,93.0,10.0,8.0,10.0,10.0,9.0,10.0,8,0.83 +247,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.2 +69399,100.0,10.0,9.0,10.0,10.0,10.0,10.0,9,1.44 +39109,100.0,10.0,10.0,10.0,10.0,10.0,9.0,9,0.96 +20031,85.0,10.0,9.0,10.0,9.0,9.0,9.0,48,4.91 +56852,89.0,9.0,9.0,10.0,9.0,10.0,9.0,9,1.08 +74317,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.98 +12217,,,,,,,,0, +36790,82.0,9.0,7.0,10.0,10.0,9.0,8.0,25,2.6 +13181,88.0,10.0,9.0,9.0,9.0,10.0,9.0,18,1.9 +9272,100.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.67 +21547,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.38 +55412,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.24 +12155,94.0,10.0,9.0,10.0,10.0,9.0,9.0,10,1.15 +22898,99.0,10.0,10.0,10.0,10.0,10.0,10.0,17,1.83 +30900,,,,,,,,0, +76394,83.0,9.0,9.0,10.0,9.0,9.0,8.0,12,1.25 +26723,100.0,10.0,10.0,9.0,10.0,10.0,10.0,4,0.4 +50284,93.0,9.0,9.0,9.0,10.0,10.0,9.0,11,1.37 +12231,,,,,,,,0, +37520,99.0,10.0,10.0,10.0,10.0,9.0,10.0,14,1.69 +57784,84.0,9.0,7.0,10.0,10.0,9.0,8.0,5,0.51 +20252,,,,,,,,0, +59739,85.0,9.0,8.0,9.0,10.0,10.0,10.0,4,0.41 +52814,91.0,10.0,10.0,10.0,9.0,10.0,10.0,9,1.19 +3398,,,,,,,,0, +36088,,,,,,,,0, +6240,95.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.56 +41256,96.0,10.0,10.0,10.0,10.0,10.0,10.0,19,1.98 +31491,,,,,,,,0, +16871,,,,,,,,0, +61682,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.68 +10898,100.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.69 +35832,93.0,10.0,10.0,9.0,9.0,9.0,9.0,42,4.3 +5104,,,,,,,,0, +53947,100.0,10.0,10.0,10.0,10.0,10.0,10.0,16,1.68 +75680,100.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.62 +15405,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.13 +38099,93.0,10.0,10.0,10.0,10.0,10.0,10.0,10,1.01 +10127,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.25 +48851,50.0,7.0,5.0,7.0,9.0,9.0,5.0,4,0.44 +30999,94.0,9.0,9.0,10.0,10.0,9.0,9.0,76,7.63 +31684,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.32 +8147,93.0,9.0,10.0,10.0,10.0,10.0,9.0,12,1.3 +18736,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.1 +26340,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.15 +40089,89.0,9.0,10.0,9.0,9.0,9.0,9.0,19,1.93 +35724,100.0,10.0,9.0,10.0,10.0,10.0,10.0,6,0.65 +70965,93.0,9.0,9.0,10.0,8.0,9.0,9.0,8,0.82 +50793,92.0,9.0,9.0,9.0,9.0,9.0,9.0,34,3.52 +32143,82.0,8.0,9.0,9.0,9.0,9.0,8.0,17,1.76 +42708,,,,,,,,0, +51566,83.0,8.0,8.0,9.0,9.0,9.0,8.0,15,1.77 +64629,86.0,9.0,8.0,9.0,9.0,9.0,9.0,26,2.72 +25623,84.0,9.0,9.0,10.0,9.0,9.0,9.0,26,2.62 +7195,86.0,9.0,8.0,9.0,9.0,9.0,9.0,14,1.41 +46255,97.0,10.0,10.0,10.0,10.0,10.0,10.0,42,4.7 +51303,89.0,9.0,9.0,10.0,10.0,9.0,9.0,18,1.82 +16849,83.0,9.0,8.0,9.0,9.0,10.0,9.0,13,1.37 +37880,90.0,9.0,9.0,9.0,9.0,10.0,10.0,8,0.82 +71941,80.0,9.0,8.0,9.0,9.0,9.0,8.0,7,0.97 +41876,86.0,9.0,9.0,8.0,9.0,9.0,9.0,19,1.91 +47800,89.0,9.0,9.0,9.0,9.0,9.0,9.0,14,1.42 +23315,84.0,9.0,8.0,9.0,9.0,9.0,9.0,20,2.03 +25841,80.0,8.0,8.0,8.0,8.0,9.0,8.0,15,1.67 +61073,76.0,8.0,8.0,9.0,9.0,9.0,8.0,14,1.63 +58490,89.0,9.0,9.0,9.0,9.0,9.0,9.0,16,1.67 +28146,97.0,9.0,9.0,10.0,10.0,9.0,9.0,8,0.83 +12275,,,,,,,,0, +28114,88.0,9.0,9.0,10.0,9.0,9.0,9.0,28,2.88 +29955,89.0,9.0,9.0,9.0,9.0,9.0,9.0,37,3.8 +4785,93.0,9.0,9.0,9.0,10.0,9.0,9.0,23,2.34 +69612,93.0,9.0,10.0,9.0,10.0,10.0,10.0,12,1.26 +4905,96.0,9.0,9.0,10.0,10.0,9.0,9.0,19,2.21 +66707,91.0,9.0,9.0,10.0,10.0,9.0,10.0,15,1.53 +32539,,,,,,,,0, +39781,95.0,10.0,10.0,10.0,10.0,10.0,9.0,12,1.3 +33125,,,,,,,,0, +46530,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,1.07 +48854,80.0,10.0,8.0,10.0,6.0,8.0,10.0,1,0.11 +19084,100.0,10.0,9.0,10.0,10.0,10.0,9.0,2,0.24 +32368,,,,,,,,1,0.1 +19312,94.0,10.0,9.0,10.0,10.0,9.0,9.0,7,0.71 +41605,94.0,10.0,10.0,10.0,10.0,9.0,9.0,49,5.14 +69529,99.0,10.0,10.0,10.0,10.0,9.0,10.0,15,1.59 +58640,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,1.19 +64025,100.0,10.0,9.0,10.0,10.0,9.0,9.0,2,0.21 +24043,93.0,10.0,10.0,10.0,10.0,8.0,10.0,8,0.87 +63182,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.22 +45040,87.0,9.0,9.0,9.0,9.0,10.0,9.0,28,2.82 +50438,89.0,9.0,10.0,9.0,9.0,9.0,9.0,40,4.2 +36693,60.0,10.0,4.0,10.0,10.0,10.0,6.0,1,0.1 +73920,85.0,9.0,6.0,8.0,9.0,10.0,8.0,5,0.89 +21628,91.0,10.0,9.0,9.0,9.0,10.0,9.0,19,2.21 +51754,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,1.48 +7227,80.0,9.0,8.0,10.0,10.0,10.0,8.0,2,0.43 +71100,100.0,10.0,10.0,10.0,10.0,9.0,10.0,18,1.87 +43136,,,,,,,,1,0.13 +1400,100.0,10.0,9.0,10.0,10.0,9.0,9.0,3,0.37 +23099,,,,,,,,1,0.1 +30536,98.0,10.0,10.0,10.0,10.0,10.0,9.0,17,1.9 +32640,97.0,10.0,10.0,10.0,10.0,10.0,10.0,12,1.37 +61447,100.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.29 +57125,87.0,10.0,10.0,9.0,9.0,8.0,9.0,3,0.35 +75048,,,,,,,,0, +30623,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.94 +19703,92.0,9.0,9.0,9.0,9.0,9.0,9.0,13,1.33 +62306,100.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.88 +47355,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.92 +27675,,,,,,,,0, +35112,98.0,10.0,10.0,10.0,10.0,10.0,10.0,42,4.32 +70694,,,,,,,,0, +13512,100.0,10.0,10.0,10.0,10.0,10.0,10.0,56,5.83 +38415,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.12 +34648,20.0,2.0,2.0,10.0,10.0,2.0,2.0,1,0.29 +50300,60.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.21 +2785,,,,,,,,2,0.23 +60498,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.08 +14481,60.0,8.0,5.0,9.0,8.0,8.0,6.0,8,1.49 +37450,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.33 +68264,,,,,,,,0, +3211,20.0,2.0,6.0,2.0,2.0,6.0,6.0,1,0.1 +68075,98.0,10.0,10.0,10.0,10.0,10.0,10.0,32,3.24 +32068,,,,,,,,1,0.1 +40617,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.21 +47894,100.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.62 +49203,100.0,9.0,7.0,10.0,9.0,10.0,10.0,2,0.22 +58936,93.0,9.0,9.0,10.0,10.0,10.0,10.0,19,1.97 +34403,,,,,,,,0, +29872,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.1 +29064,100.0,10.0,10.0,9.0,10.0,10.0,10.0,3,0.31 +64614,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +61112,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,1.02 +36214,100.0,10.0,10.0,10.0,10.0,10.0,8.0,2,0.41 +8838,,,,,,,,0, +52950,,,,,,,,0, +27150,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.36 +61395,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.79 +69854,95.0,10.0,9.0,10.0,9.0,10.0,9.0,10,1.15 +71014,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.21 +21914,,,,,,,,0, +28141,92.0,9.0,9.0,9.0,9.0,9.0,9.0,10,1.54 +17653,,,,,,,,0, +62344,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.75 +27960,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.31 +54988,93.0,10.0,9.0,10.0,10.0,9.0,9.0,3,0.66 +64449,100.0,8.0,10.0,8.0,10.0,10.0,10.0,1,0.12 +51724,93.0,9.0,9.0,9.0,9.0,9.0,9.0,6,0.86 +3553,95.0,9.0,9.0,10.0,9.0,10.0,10.0,17,1.74 +72110,100.0,10.0,10.0,10.0,10.0,9.0,10.0,10,1.06 +70713,,,,,,,,1,0.2 +15532,,,,,,,,0, +38563,98.0,10.0,10.0,10.0,10.0,10.0,10.0,26,2.82 +9154,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.42 +39494,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,1.07 +32008,95.0,10.0,10.0,10.0,10.0,10.0,9.0,11,1.27 +38788,98.0,10.0,10.0,10.0,10.0,10.0,9.0,13,1.93 +68522,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,1.29 +57868,98.0,10.0,10.0,10.0,10.0,10.0,9.0,8,1.14 +55996,100.0,10.0,10.0,10.0,10.0,10.0,10.0,44,4.58 +44732,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.23 +43487,,,,,,,,0, +72794,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.13 +8462,93.0,9.0,10.0,9.0,10.0,9.0,9.0,19,2.27 +57242,100.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.23 +6735,,,,,,,,0, +23552,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.12 +24962,100.0,10.0,10.0,10.0,10.0,10.0,10.0,18,1.83 +5103,88.0,9.0,8.0,10.0,8.0,10.0,9.0,5,1.21 +53669,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.11 +54589,91.0,9.0,9.0,10.0,10.0,10.0,10.0,18,1.89 +9360,90.0,9.0,9.0,9.0,9.0,9.0,10.0,25,3.22 +32956,,,,,,,,0, +59858,90.0,9.0,9.0,9.0,10.0,9.0,9.0,14,1.43 +10446,,,,,,,,1,1.0 +42575,95.0,10.0,9.0,10.0,10.0,10.0,9.0,20,2.15 +5471,,,,,,,,0, +62170,100.0,10.0,8.0,10.0,9.0,10.0,10.0,3,0.43 +48690,97.0,10.0,10.0,10.0,10.0,10.0,10.0,13,1.34 +8836,,,,,,,,0, +58253,90.0,9.0,9.0,10.0,10.0,10.0,9.0,2,0.4 +23584,98.0,10.0,10.0,10.0,10.0,10.0,9.0,22,2.28 +1596,,,,,,,,0, +59851,98.0,10.0,9.0,10.0,10.0,10.0,9.0,8,0.84 +24410,98.0,10.0,10.0,10.0,9.0,10.0,10.0,8,0.9 +42413,90.0,10.0,8.0,10.0,10.0,9.0,9.0,21,2.26 +18868,95.0,10.0,10.0,9.0,10.0,8.0,9.0,9,0.99 +32454,95.0,10.0,9.0,10.0,10.0,9.0,9.0,12,1.26 +52732,,,,,,,,0, +43064,96.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.92 +43292,80.0,9.0,10.0,9.0,9.0,10.0,9.0,2,0.37 +23291,99.0,10.0,10.0,10.0,10.0,10.0,10.0,28,3.08 +14892,,,,,,,,0, +64412,,,,,,,,0, +60890,93.0,9.0,9.0,10.0,10.0,9.0,10.0,15,1.54 +52563,100.0,9.0,10.0,9.0,9.0,10.0,9.0,4,0.43 +68178,96.0,10.0,10.0,10.0,10.0,10.0,10.0,26,2.8 +9047,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.84 +56885,100.0,10.0,10.0,9.0,9.0,10.0,10.0,2,0.21 +58022,87.0,9.0,9.0,9.0,9.0,10.0,9.0,5,0.6 +13025,,,,,,,,0, +53129,96.0,10.0,9.0,10.0,10.0,10.0,9.0,11,1.22 +16515,,,,,,,,0, +54924,97.0,10.0,9.0,10.0,10.0,10.0,10.0,8,0.84 +40789,,,,,,,,0, +33794,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.51 +8612,,,,,,,,0, +28480,,,,,,,,0, +19122,,,,,,,,0, +50463,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,1.53 +65345,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.12 +8124,100.0,10.0,10.0,10.0,10.0,9.0,9.0,4,0.41 +37536,80.0,7.0,9.0,7.0,7.0,10.0,7.0,3,0.31 +40049,97.0,10.0,10.0,10.0,10.0,10.0,9.0,13,2.24 +74983,,,,,,,,0, +54803,,,,,,,,0, +47674,94.0,9.0,10.0,10.0,9.0,10.0,9.0,20,2.18 +73254,,,,,,,,0, +74920,90.0,9.0,8.0,10.0,10.0,8.0,10.0,3,0.32 +1881,,,,,,,,0, +7591,60.0,6.0,6.0,2.0,4.0,8.0,6.0,2,0.47 +24250,,,,,,,,0, +72413,87.0,8.0,9.0,9.0,9.0,9.0,8.0,3,0.37 +63471,,,,,,,,0, +28957,96.0,9.0,10.0,10.0,10.0,10.0,10.0,6,0.78 +14568,,,,,,,,0, +28741,,,,,,,,0, +42379,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.45 +48441,93.0,10.0,9.0,10.0,10.0,9.0,9.0,6,0.63 +2639,76.0,9.0,7.0,9.0,9.0,9.0,8.0,62,6.33 +52691,85.0,10.0,9.0,10.0,10.0,9.0,8.0,4,0.44 +70316,,,,,,,,0, +18417,100.0,10.0,10.0,10.0,10.0,10.0,9.0,8,0.87 +10540,,,,,,,,0, +299,89.0,9.0,9.0,10.0,10.0,10.0,9.0,13,1.72 +14343,100.0,10.0,8.0,10.0,10.0,8.0,6.0,1,0.22 +18579,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.46 +61191,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.61 +9959,,,,,,,,0, +52116,70.0,6.0,5.0,7.0,6.0,8.0,5.0,2,0.24 +882,,,,,,,,0, +34829,,,,,,,,0, +62388,,,,,,,,0, +13758,,,,,,,,0, +53493,100.0,10.0,10.0,10.0,8.0,10.0,10.0,1,0.24 +15918,,,,,,,,0, +42943,,,,,,,,0, +47395,,,,,,,,0, +28768,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.27 +76903,80.0,4.0,10.0,2.0,10.0,10.0,10.0,1,0.14 +49280,,,,,,,,0, +48241,,,,,,,,0, +6875,80.0,7.0,8.0,10.0,10.0,8.0,8.0,2,0.88 +37386,,,,,,,,0, +4912,80.0,7.0,5.0,10.0,10.0,10.0,7.0,2,0.32 +34036,100.0,10.0,10.0,6.0,10.0,8.0,10.0,1,0.1 +74380,84.0,9.0,9.0,9.0,9.0,10.0,8.0,34,3.78 +56856,,,,,,,,0, +61936,96.0,10.0,10.0,10.0,10.0,10.0,9.0,11,1.34 +56395,,,,,,,,0, +22949,93.0,10.0,10.0,10.0,10.0,9.0,10.0,12,1.38 +1143,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.86 +50361,99.0,10.0,10.0,10.0,10.0,10.0,10.0,15,1.56 +20265,97.0,10.0,9.0,9.0,10.0,10.0,10.0,8,1.21 +59498,73.0,9.0,9.0,10.0,8.0,7.0,7.0,3,0.87 +1751,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.4 +812,83.0,10.0,9.0,10.0,9.0,9.0,9.0,12,2.07 +29593,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,2.06 +12604,,,,,,,,0, +54987,100.0,10.0,10.0,8.0,8.0,8.0,10.0,1,0.27 +52384,,,,,,,,0, +53822,96.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.52 +15680,91.0,10.0,10.0,10.0,10.0,10.0,9.0,11,2.04 +25258,,,,,,,,0, +8400,93.0,10.0,9.0,10.0,10.0,9.0,10.0,3,0.31 +2757,,,,,,,,0, +68540,94.0,9.0,10.0,10.0,10.0,9.0,9.0,21,2.31 +76447,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.28 +33712,,,,,,,,0, +60209,,,,,,,,0, +17382,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.21 +5036,95.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.52 +19862,,,,,,,,0, +67460,100.0,10.0,10.0,10.0,10.0,10.0,10.0,22,2.76 +30557,98.0,10.0,10.0,10.0,10.0,9.0,10.0,9,1.2 +9838,,,,,,,,0, +41601,88.0,9.0,9.0,9.0,10.0,9.0,9.0,14,1.47 +45609,100.0,10.0,10.0,10.0,10.0,10.0,10.0,42,6.92 +20112,98.0,10.0,10.0,10.0,10.0,9.0,10.0,31,3.24 +26991,,,,,,,,0, +7382,92.0,10.0,9.0,10.0,10.0,9.0,10.0,23,3.5 +24649,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.93 +56199,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.11 +75031,,,,,,,,2, +39189,93.0,10.0,10.0,10.0,10.0,10.0,9.0,33,3.46 +35129,97.0,10.0,10.0,10.0,10.0,9.0,9.0,27,2.83 +31948,95.0,10.0,10.0,10.0,9.0,9.0,9.0,6,0.65 +74179,95.0,10.0,10.0,10.0,10.0,10.0,10.0,23,3.29 +62083,96.0,10.0,8.0,10.0,10.0,9.0,10.0,5,0.52 +9434,87.0,9.0,9.0,9.0,9.0,10.0,9.0,38,3.92 +71219,87.0,9.0,9.0,9.0,9.0,9.0,9.0,19,2.1 +62670,86.0,10.0,10.0,8.0,8.0,10.0,10.0,9,1.01 +44734,100.0,10.0,10.0,10.0,10.0,8.0,8.0,2,0.26 +44489,93.0,9.0,9.0,10.0,10.0,9.0,9.0,3,0.63 +52048,,,,,,,,0, +18346,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.28 +43930,94.0,10.0,9.0,10.0,10.0,10.0,10.0,17,1.86 +17477,80.0,9.0,8.0,9.0,9.0,10.0,8.0,12,1.29 +72567,100.0,10.0,10.0,10.0,10.0,9.0,9.0,2,0.24 +21514,,,,,,,,0, +26109,90.0,9.0,9.0,10.0,10.0,10.0,10.0,6,0.63 +64796,60.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.14 +26085,,,,,,,,0, +26610,,,,,,,,0, +26199,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.11 +67946,93.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.41 +21176,,,,,,,,0, +51942,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.42 +26336,95.0,10.0,10.0,10.0,10.0,10.0,9.0,16,2.41 +18022,90.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.86 +41217,82.0,9.0,10.0,10.0,9.0,10.0,8.0,11,1.13 +42703,95.0,10.0,10.0,9.0,10.0,8.0,10.0,36,4.8 +66248,94.0,10.0,9.0,9.0,10.0,10.0,10.0,10,1.2 +69905,80.0,6.0,6.0,8.0,8.0,8.0,8.0,1,0.14 +62991,92.0,10.0,9.0,9.0,10.0,9.0,9.0,6,0.65 +28265,100.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.47 +7689,,,,,,,,0, +48049,97.0,10.0,10.0,10.0,10.0,10.0,10.0,24,2.62 +66644,,,,,,,,0, +9552,,,,,,,,0, +14734,100.0,8.0,10.0,10.0,10.0,8.0,10.0,1,0.28 +30304,95.0,10.0,10.0,10.0,10.0,10.0,10.0,14,1.46 +12812,,,,,,,,0, +35531,,,,,,,,0, +26009,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.41 +30258,86.0,9.0,9.0,8.0,9.0,9.0,9.0,22,2.32 +5251,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.21 +30378,93.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.31 +60499,93.0,10.0,10.0,9.0,10.0,9.0,9.0,12,2.22 +18622,89.0,10.0,9.0,10.0,10.0,9.0,10.0,11,1.33 +76683,,,,,,,,0, +53458,,,,,,,,0, +57806,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.34 +36582,97.0,10.0,10.0,10.0,10.0,10.0,10.0,26,2.72 +9745,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.48 +2859,90.0,10.0,10.0,10.0,10.0,9.0,9.0,4,0.44 +709,,,,,,,,0, +52031,,,,,,,,0, +38250,90.0,9.0,10.0,9.0,10.0,10.0,9.0,32,3.43 +65859,96.0,10.0,10.0,10.0,9.0,9.0,9.0,35,3.65 +76995,95.0,10.0,10.0,9.0,10.0,10.0,10.0,22,2.93 +28086,100.0,10.0,9.0,10.0,10.0,10.0,9.0,3,0.33 +59381,100.0,10.0,10.0,10.0,10.0,8.0,9.0,2,0.28 +33479,95.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.53 +68216,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,2.67 +48991,70.0,9.0,7.0,10.0,10.0,10.0,8.0,2,0.21 +41171,93.0,10.0,9.0,9.0,9.0,10.0,9.0,54,6.11 +22793,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.18 +61466,97.0,10.0,9.0,9.0,10.0,10.0,9.0,8,1.03 +53971,90.0,10.0,8.0,10.0,10.0,10.0,8.0,2,0.23 +24974,98.0,10.0,10.0,10.0,9.0,9.0,10.0,9,1.14 +21720,93.0,10.0,9.0,10.0,10.0,10.0,9.0,3,1.45 +51430,80.0,9.0,9.0,9.0,10.0,10.0,9.0,12,1.3 +42017,,,,,,,,0, +67706,,,,,,,,1,0.11 +73342,89.0,9.0,9.0,10.0,10.0,9.0,9.0,14,1.54 +16282,70.0,8.0,6.0,8.0,8.0,9.0,8.0,4,0.41 +53867,91.0,10.0,9.0,10.0,10.0,10.0,9.0,52,5.31 +53808,,,,,,,,0, +71183,100.0,8.0,8.0,10.0,10.0,10.0,10.0,1,0.13 +9515,85.0,9.0,9.0,8.0,9.0,10.0,9.0,13,1.7 +48233,80.0,7.0,7.0,6.0,9.0,10.0,9.0,2,0.29 +51394,40.0,6.0,10.0,4.0,4.0,10.0,6.0,1,0.13 +36597,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.32 +65246,,,,,,,,2,0.21 +44851,100.0,10.0,9.0,9.0,10.0,10.0,10.0,3,0.39 +18908,55.0,6.0,7.0,5.0,6.0,10.0,7.0,4,0.51 +15930,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.17 +10685,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.21 +47946,84.0,9.0,10.0,9.0,9.0,9.0,9.0,9,1.16 +69228,,,,,,,,0, +14532,,,,,,,,3,0.31 +71688,90.0,9.0,9.0,9.0,9.0,10.0,9.0,16,1.77 +73684,,,,,,,,0, +38162,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.47 +48655,,,,,,,,0, +3394,,,,,,,,0, +3848,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.27 +18328,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,3.5 +7180,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,1.14 +54105,100.0,10.0,10.0,10.0,10.0,9.0,10.0,17,2.42 +20776,91.0,10.0,10.0,9.0,10.0,10.0,9.0,29,3.48 +65198,99.0,10.0,10.0,10.0,10.0,10.0,10.0,21,2.63 +39608,73.0,9.0,7.0,10.0,10.0,10.0,9.0,3,0.35 +7090,94.0,10.0,10.0,10.0,10.0,8.0,9.0,18,2.86 +39231,96.0,10.0,10.0,10.0,10.0,9.0,10.0,9,3.38 +52733,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.28 +44817,100.0,9.0,10.0,10.0,10.0,9.0,9.0,10,1.45 +42587,90.0,10.0,10.0,9.0,9.0,10.0,10.0,10,2.88 +57727,99.0,10.0,10.0,10.0,10.0,10.0,10.0,19,2.06 +32913,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.1 +13136,95.0,10.0,10.0,10.0,10.0,10.0,9.0,24,2.79 +69857,96.0,10.0,10.0,10.0,10.0,10.0,10.0,42,4.32 +845,95.0,9.0,9.0,10.0,9.0,9.0,9.0,42,4.41 +76244,,,,,,,,0, +17219,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.76 +18855,99.0,10.0,10.0,10.0,10.0,10.0,9.0,15,1.67 +14238,85.0,10.0,10.0,10.0,9.0,10.0,10.0,4,0.55 +45111,80.0,8.0,10.0,10.0,10.0,10.0,10.0,2,0.23 +15775,87.0,9.0,9.0,9.0,9.0,10.0,9.0,30,3.21 +46693,100.0,8.0,8.0,10.0,10.0,10.0,10.0,1,0.34 +53863,95.0,9.0,10.0,10.0,9.0,9.0,10.0,5,0.53 +26028,97.0,10.0,9.0,10.0,10.0,9.0,9.0,19,2.28 +33771,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.21 +4446,,,,,,,,1,0.11 +42220,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,1.36 +76401,69.0,7.0,7.0,7.0,7.0,8.0,7.0,7,1.12 +31082,88.0,9.0,9.0,9.0,9.0,9.0,9.0,13,1.55 +76835,95.0,10.0,9.0,10.0,10.0,10.0,9.0,21,2.36 +13789,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.27 +8131,81.0,9.0,9.0,10.0,10.0,10.0,9.0,16,1.68 +53977,96.0,10.0,9.0,9.0,9.0,10.0,10.0,83,8.5 +11586,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,1.51 +56779,,,,,,,,0, +59736,,,,,,,,0, +33961,90.0,9.0,9.0,10.0,9.0,9.0,9.0,41,4.2 +48483,90.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.4 +22132,93.0,10.0,8.0,10.0,10.0,9.0,9.0,8,0.86 +52855,90.0,9.0,9.0,9.0,8.0,10.0,9.0,4,0.57 +69646,,,,,,,,0, +35610,93.0,10.0,10.0,9.0,10.0,9.0,9.0,3,0.36 +29124,96.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.53 +17966,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.51 +7607,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.12 +46112,92.0,10.0,10.0,10.0,10.0,9.0,8.0,5,1.39 +29754,84.0,9.0,10.0,10.0,10.0,10.0,8.0,5,0.63 +17185,67.0,7.0,8.0,8.0,9.0,8.0,7.0,9,1.13 +69330,98.0,10.0,9.0,10.0,10.0,9.0,10.0,8,1.04 +17447,96.0,9.0,9.0,9.0,10.0,9.0,9.0,10,1.18 +3203,80.0,9.0,9.0,10.0,10.0,10.0,8.0,2,0.46 +63026,75.0,9.0,10.0,9.0,8.0,9.0,9.0,4,0.47 +25360,100.0,10.0,10.0,10.0,10.0,9.0,10.0,27,2.9 +28997,97.0,10.0,10.0,10.0,10.0,9.0,9.0,20,2.11 +59201,80.0,10.0,7.0,10.0,9.0,10.0,8.0,4,0.46 +64811,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.1 +32243,90.0,10.0,8.0,10.0,9.0,10.0,9.0,2,0.39 +20312,,,,,,,,0, +19568,,,,,,,,0, +21827,73.0,7.0,10.0,10.0,9.0,9.0,7.0,3,0.38 +71070,,,,,,,,0, +6997,79.0,8.0,9.0,8.0,9.0,8.0,8.0,33,3.45 +54510,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.22 +54548,76.0,8.0,8.0,9.0,9.0,8.0,8.0,25,2.82 +72398,,,,,,,,0, +3296,81.0,9.0,8.0,9.0,10.0,9.0,8.0,27,2.88 +23583,93.0,9.0,9.0,9.0,9.0,10.0,10.0,22,2.35 +45545,98.0,10.0,10.0,10.0,10.0,10.0,10.0,11,3.93 +59881,,,,,,,,0, +20320,98.0,10.0,10.0,9.0,10.0,9.0,10.0,9,1.0 +73929,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.35 +29163,97.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.65 +47619,,,,,,,,0, +33463,40.0,6.0,4.0,10.0,10.0,10.0,6.0,1,0.14 +27979,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.39 +11445,93.0,9.0,9.0,10.0,10.0,10.0,8.0,6,0.66 +59090,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.73 +56953,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.14 +76476,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.29 +53783,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.31 +58027,,,,,,,,0, +49971,,,,,,,,0, +59771,,,,,,,,0, +57704,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.11 +5139,,,,,,,,0, +9536,98.0,10.0,9.0,10.0,10.0,9.0,10.0,11,1.2 +52178,93.0,10.0,9.0,9.0,9.0,9.0,9.0,3,0.44 +18650,90.0,9.0,9.0,9.0,9.0,10.0,9.0,46,5.09 +12296,83.0,9.0,8.0,9.0,9.0,8.0,9.0,16,1.83 +22324,,,,,,,,0, +40438,89.0,9.0,9.0,10.0,10.0,10.0,9.0,8,0.96 +43356,80.0,10.0,10.0,8.0,6.0,6.0,10.0,1,0.11 +30675,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.33 +71953,87.0,9.0,8.0,9.0,8.0,8.0,8.0,6,0.78 +17142,94.0,9.0,10.0,9.0,10.0,9.0,9.0,10,1.04 +47305,98.0,10.0,9.0,10.0,10.0,10.0,10.0,8,1.11 +62070,100.0,10.0,10.0,10.0,10.0,9.0,10.0,8,1.14 +10328,,,,,,,,0, +9944,93.0,9.0,8.0,10.0,10.0,10.0,10.0,6,0.61 +43436,,,,,,,,0, +60273,100.0,10.0,9.0,10.0,10.0,9.0,10.0,2,0.29 +60825,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.67 +17804,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.46 +51377,94.0,10.0,10.0,10.0,10.0,9.0,10.0,42,4.85 +74737,91.0,9.0,9.0,9.0,9.0,10.0,10.0,8,1.02 +20991,,,,,,,,1,0.13 +45860,,,,,,,,0, +39963,85.0,9.0,9.0,8.0,8.0,10.0,9.0,57,6.58 +6714,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.7 +13570,69.0,7.0,7.0,9.0,9.0,7.0,7.0,25,2.6 +39396,89.0,10.0,10.0,10.0,9.0,10.0,8.0,16,1.68 +54906,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.24 +54667,90.0,9.0,8.0,9.0,9.0,9.0,8.0,2,0.43 +62844,91.0,10.0,9.0,10.0,10.0,10.0,10.0,92,9.55 +21624,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.21 +23092,87.0,10.0,10.0,7.0,8.0,10.0,9.0,3,0.31 +70112,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.12 +29848,93.0,9.0,10.0,9.0,10.0,9.0,9.0,19,2.15 +15941,99.0,10.0,10.0,10.0,10.0,9.0,10.0,16,1.8 +5893,,,,,,,,0, +36354,91.0,9.0,9.0,10.0,9.0,9.0,9.0,26,3.04 +5358,86.0,9.0,9.0,9.0,9.0,9.0,9.0,26,2.76 +20110,,,,,,,,0, +29131,,,,,,,,0, +71484,93.0,10.0,9.0,10.0,10.0,10.0,9.0,52,5.4 +41182,,,,,,,,0, +33383,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.13 +55651,97.0,10.0,10.0,10.0,10.0,10.0,10.0,29,3.12 +37634,89.0,10.0,9.0,9.0,10.0,9.0,9.0,23,2.47 +6415,,,,,,,,0, +44400,97.0,10.0,9.0,10.0,10.0,9.0,10.0,14,1.47 +75918,,,,,,,,0, +70624,86.0,9.0,8.0,10.0,10.0,9.0,9.0,10,1.31 +42758,,,,,,,,0, +28085,98.0,10.0,10.0,10.0,10.0,9.0,10.0,26,2.8 +69200,99.0,10.0,10.0,10.0,10.0,10.0,10.0,30,3.31 +37000,97.0,10.0,10.0,10.0,10.0,9.0,10.0,18,1.96 +8038,93.0,10.0,9.0,9.0,10.0,10.0,10.0,6,0.66 +26413,86.0,8.0,9.0,10.0,10.0,10.0,9.0,7,0.75 +7186,87.0,9.0,9.0,8.0,9.0,9.0,9.0,6,0.66 +70886,80.0,10.0,7.0,10.0,10.0,10.0,7.0,2,0.28 +12956,97.0,10.0,10.0,10.0,10.0,10.0,9.0,13,2.24 +7473,98.0,10.0,10.0,10.0,10.0,10.0,9.0,10,1.22 +62575,93.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.34 +36057,91.0,10.0,10.0,10.0,10.0,9.0,9.0,17,2.22 +44613,93.0,10.0,10.0,10.0,10.0,10.0,10.0,15,1.57 +67070,84.0,9.0,8.0,10.0,9.0,9.0,9.0,16,1.88 +39590,87.0,10.0,9.0,10.0,10.0,9.0,9.0,12,1.81 +22790,96.0,10.0,9.0,9.0,10.0,8.0,9.0,18,2.04 +38845,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.12 +17802,86.0,9.0,9.0,9.0,9.0,9.0,9.0,24,2.58 +39688,97.0,10.0,10.0,10.0,10.0,9.0,10.0,37,3.98 +28130,92.0,10.0,10.0,10.0,10.0,10.0,9.0,59,6.34 +67729,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.61 +21403,40.0,6.0,5.0,10.0,6.0,6.0,5.0,2,0.21 +55167,,,,,,,,0, +20907,,,,,,,,0, +72512,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.29 +64637,89.0,10.0,10.0,9.0,10.0,9.0,9.0,32,4.66 +46022,80.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.53 +22396,97.0,10.0,10.0,10.0,10.0,10.0,10.0,31,4.23 +47806,93.0,10.0,10.0,10.0,10.0,9.0,9.0,44,4.82 +8645,,,,,,,,0, +67043,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.12 +67513,93.0,10.0,10.0,10.0,9.0,10.0,9.0,3,0.34 +45330,90.0,9.0,10.0,10.0,10.0,8.0,10.0,6,0.65 +61643,87.0,9.0,8.0,10.0,10.0,9.0,9.0,15,1.74 +9089,96.0,10.0,9.0,10.0,9.0,10.0,10.0,5,0.68 +45440,93.0,9.0,9.0,10.0,10.0,10.0,10.0,4,0.42 +20819,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.28 +29504,94.0,9.0,9.0,10.0,9.0,9.0,9.0,29,3.23 +22449,,,,,,,,0, +48490,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.12 +34373,70.0,7.0,8.0,7.0,6.0,8.0,9.0,4,0.44 +3683,,,,,,,,0, +70613,,,,,,,,0, +47319,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.14 +13816,90.0,10.0,9.0,10.0,10.0,9.0,10.0,2,0.22 +52079,,,,,,,,0, +40482,99.0,10.0,10.0,10.0,10.0,10.0,10.0,26,4.67 +8954,96.0,10.0,9.0,10.0,10.0,10.0,9.0,35,3.74 +10282,94.0,10.0,10.0,10.0,9.0,9.0,10.0,10,1.08 +27167,96.0,10.0,10.0,10.0,9.0,10.0,10.0,17,1.83 +3719,80.0,8.0,9.0,8.0,7.0,8.0,8.0,10,1.12 +31676,85.0,10.0,10.0,9.0,8.0,10.0,9.0,4,0.43 +43702,96.0,10.0,10.0,9.0,10.0,10.0,10.0,10,1.07 +3725,,,,,,,,0, +29829,99.0,10.0,10.0,10.0,10.0,10.0,10.0,37,3.88 +62340,90.0,8.0,9.0,10.0,9.0,10.0,9.0,4,0.61 +22701,95.0,9.0,10.0,10.0,9.0,9.0,9.0,20,2.23 +44249,98.0,10.0,10.0,9.0,10.0,9.0,9.0,13,1.65 +69712,,,,,,,,0, +64469,,,,,,,,4,0.41 +6824,100.0,9.0,10.0,10.0,10.0,9.0,10.0,2,0.22 +34793,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.31 +16709,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.56 +68125,95.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.0 +49429,,,,,,,,1,0.19 +23585,,,,,,,,2,0.5 +71061,,,,,,,,0, +16805,,,,,,,,0, +53403,,,,,,,,0, +10597,94.0,10.0,10.0,9.0,10.0,10.0,9.0,11,1.31 +60900,100.0,10.0,9.0,9.0,9.0,9.0,9.0,3,0.31 +52110,90.0,9.0,9.0,9.0,9.0,9.0,9.0,9,1.26 +2046,93.0,10.0,10.0,9.0,10.0,8.0,9.0,6,0.65 +21090,71.0,8.0,8.0,9.0,10.0,9.0,9.0,9,1.5 +22010,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.32 +17810,96.0,10.0,9.0,10.0,10.0,9.0,10.0,10,1.71 +76058,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.31 +27936,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.43 +37907,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.5 +58547,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.13 +3361,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.03 +74834,85.0,8.0,10.0,10.0,9.0,10.0,9.0,6,0.62 +65487,87.0,10.0,10.0,10.0,10.0,8.0,9.0,3,0.35 +20522,95.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.54 +42922,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.16 +49647,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.31 +49959,97.0,9.0,9.0,8.0,9.0,10.0,10.0,7,0.79 +51475,,,,,,,,1,0.17 +53158,,,,,,,,0, +46036,80.0,9.0,8.0,6.0,8.0,9.0,7.0,3,0.34 +52416,100.0,10.0,9.0,10.0,10.0,10.0,9.0,12,1.62 +3731,,,,,,,,0, +54402,,,,,,,,0, +32880,,,,,,,,0, +74977,80.0,10.0,8.0,7.0,9.0,10.0,9.0,6,0.85 +30943,,,,,,,,0, +72580,94.0,9.0,10.0,9.0,9.0,10.0,9.0,34,3.71 +42273,,,,,,,,0, +14709,92.0,10.0,10.0,10.0,9.0,10.0,9.0,5,0.65 +72190,80.0,6.0,8.0,8.0,6.0,6.0,6.0,1,0.14 +46791,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.34 +66891,97.0,10.0,9.0,10.0,10.0,10.0,10.0,13,1.36 +3218,98.0,10.0,9.0,10.0,10.0,10.0,9.0,13,1.44 +20962,95.0,10.0,9.0,10.0,10.0,10.0,9.0,21,2.24 +36675,,,,,,,,0, +32266,100.0,9.0,10.0,10.0,10.0,10.0,9.0,4,0.47 +4392,90.0,9.0,10.0,10.0,10.0,10.0,10.0,2,0.48 +65700,100.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.92 +11686,,,,,,,,0, +65596,,,,,,,,1,0.11 +36369,80.0,10.0,9.0,8.0,9.0,10.0,9.0,9,1.34 +72699,97.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.68 +72978,,,,,,,,0, +75045,97.0,10.0,10.0,10.0,10.0,10.0,10.0,47,6.71 +55082,90.0,10.0,10.0,9.0,10.0,10.0,10.0,2,0.24 +52526,100.0,9.0,8.0,10.0,10.0,8.0,10.0,4,0.48 +46435,83.0,9.0,8.0,9.0,9.0,9.0,9.0,20,2.08 +71303,100.0,10.0,10.0,10.0,10.0,10.0,10.0,16,2.42 +43963,,,,,,,,0, +29259,89.0,9.0,9.0,10.0,10.0,10.0,9.0,46,4.93 +2977,,,,,,,,0, +59525,98.0,10.0,10.0,10.0,10.0,10.0,10.0,26,2.73 +38060,87.0,9.0,8.0,10.0,10.0,9.0,9.0,10,1.15 +26575,85.0,9.0,9.0,10.0,10.0,10.0,9.0,61,6.56 +30772,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.2 +65806,88.0,9.0,9.0,9.0,10.0,10.0,9.0,53,5.72 +57825,86.0,9.0,9.0,10.0,10.0,10.0,9.0,68,7.39 +25910,,,,,,,,0, +5952,87.0,9.0,9.0,8.0,9.0,9.0,9.0,8,0.98 +57586,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.33 +51832,,,,,,,,0, +68718,,,,,,,,0, +66864,95.0,10.0,9.0,10.0,10.0,9.0,9.0,52,5.59 +47381,,,,,,,,1,0.12 +52556,40.0,6.0,8.0,8.0,8.0,4.0,4.0,1,0.1 +57037,90.0,10.0,9.0,9.0,10.0,10.0,10.0,6,0.65 +40397,87.0,10.0,10.0,10.0,10.0,9.0,9.0,6,0.72 +20576,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.27 +37641,,,,,,,,0, +38429,100.0,10.0,10.0,9.0,9.0,9.0,9.0,7,0.81 +30985,85.0,9.0,8.0,9.0,10.0,9.0,10.0,8,0.95 +25201,,,,,,,,0, +41863,85.0,10.0,9.0,10.0,10.0,10.0,9.0,5,0.57 +8908,100.0,10.0,10.0,10.0,10.0,10.0,10.0,26,2.97 +25416,96.0,10.0,10.0,10.0,10.0,8.0,10.0,5,0.63 +23265,,,,,,,,0, +30455,97.0,10.0,9.0,10.0,10.0,9.0,10.0,43,4.49 +31807,97.0,10.0,10.0,10.0,10.0,10.0,10.0,21,2.21 +66177,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.92 +47248,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,1.17 +63377,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.37 +74861,88.0,9.0,8.0,9.0,9.0,8.0,9.0,13,1.35 +36848,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.92 +173,90.0,9.0,9.0,9.0,9.0,10.0,9.0,11,1.39 +13288,90.0,10.0,9.0,10.0,10.0,9.0,10.0,22,2.31 +64961,,,,,,,,0, +4373,94.0,10.0,10.0,10.0,10.0,10.0,10.0,11,1.27 +32020,100.0,10.0,10.0,10.0,8.0,10.0,8.0,1,0.17 +58899,93.0,9.0,9.0,9.0,9.0,10.0,9.0,16,1.74 +21543,96.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.99 +31266,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.49 +29532,,,,,,,,0, +12972,,,,,,,,0, +33892,,,,,,,,0, +56246,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,1.03 +76098,72.0,7.0,8.0,9.0,9.0,9.0,7.0,11,1.17 +31786,80.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.27 +29044,80.0,8.0,7.0,9.0,9.0,9.0,9.0,3,0.46 +54163,90.0,10.0,10.0,9.0,8.0,10.0,10.0,2,0.23 +34118,80.0,8.0,10.0,10.0,10.0,10.0,9.0,3,0.57 +55444,90.0,7.0,7.0,10.0,9.0,10.0,8.0,2,0.27 +43357,60.0,6.0,8.0,6.0,6.0,10.0,4.0,1,0.18 +36266,75.0,7.0,8.0,8.0,8.0,8.0,7.0,4,0.53 +6076,100.0,9.0,10.0,9.0,10.0,10.0,10.0,2,0.28 +27963,97.0,10.0,10.0,10.0,10.0,10.0,10.0,21,2.39 +60515,,,,,,,,0, +26748,80.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.14 +50418,80.0,8.0,8.0,10.0,10.0,10.0,6.0,1,0.15 +7009,,,,,,,,0, +17384,87.0,9.0,7.0,9.0,7.0,9.0,8.0,3,0.41 +74937,84.0,10.0,9.0,9.0,9.0,9.0,8.0,5,0.55 +27183,80.0,6.0,8.0,10.0,10.0,6.0,8.0,1,0.23 +42131,90.0,9.0,9.0,10.0,9.0,10.0,9.0,4,0.52 +6060,80.0,9.0,9.0,9.0,9.0,10.0,8.0,4,0.49 +46470,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.36 +8223,96.0,10.0,10.0,10.0,10.0,10.0,9.0,22,2.3 +60763,,,,,,,,0, +7839,80.0,9.0,8.0,9.0,9.0,9.0,8.0,10,1.08 +33900,,,,,,,,0, +50474,100.0,10.0,10.0,10.0,10.0,10.0,10.0,15,1.63 +38862,92.0,9.0,9.0,9.0,10.0,10.0,9.0,15,2.08 +11205,82.0,9.0,9.0,10.0,10.0,10.0,9.0,13,1.63 +65556,85.0,9.0,8.0,9.0,10.0,9.0,9.0,21,2.26 +34094,97.0,10.0,9.0,9.0,10.0,9.0,10.0,6,0.68 +319,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,1.08 +37886,,,,,,,,1,0.11 +9855,85.0,9.0,8.0,9.0,9.0,8.0,9.0,22,2.34 +47370,85.0,9.0,9.0,10.0,9.0,8.0,9.0,21,2.19 +37967,93.0,10.0,9.0,10.0,10.0,9.0,9.0,23,2.39 +37236,82.0,9.0,9.0,9.0,9.0,8.0,8.0,17,1.79 +34547,89.0,9.0,8.0,9.0,10.0,8.0,9.0,19,1.99 +55383,88.0,9.0,10.0,10.0,9.0,10.0,10.0,5,0.59 +75541,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.57 +23324,96.0,10.0,10.0,10.0,10.0,10.0,10.0,9,1.02 +57895,,,,,,,,0, +35314,91.0,10.0,9.0,10.0,10.0,9.0,9.0,20,2.34 +43258,,,,,,,,2,0.22 +68278,80.0,10.0,9.0,10.0,10.0,8.0,9.0,2,0.98 +37492,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.27 +62341,,,,,,,,1,0.11 +1267,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.48 +60262,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.12 +47069,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,1.51 +18500,83.0,9.0,8.0,9.0,9.0,10.0,9.0,55,5.69 +42768,55.0,7.0,6.0,7.0,6.0,7.0,7.0,4,0.48 +58378,,,,,,,,1,0.12 +63384,,,,,,,,0, +58533,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.14 +7904,91.0,9.0,9.0,10.0,10.0,10.0,10.0,7,0.76 +38430,,,,,,,,1,0.13 +8842,97.0,10.0,10.0,10.0,10.0,9.0,10.0,12,2.45 +5379,89.0,9.0,9.0,9.0,10.0,9.0,9.0,15,1.76 +36443,,,,,,,,0, +19979,,,,,,,,1,0.1 +37128,96.0,10.0,9.0,10.0,10.0,9.0,9.0,15,1.57 +27218,90.0,10.0,10.0,9.0,8.0,10.0,9.0,2,0.87 +8790,90.0,9.0,10.0,10.0,10.0,10.0,9.0,6,0.69 +64835,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.28 +41651,100.0,9.0,10.0,10.0,10.0,10.0,10.0,3,0.34 +58374,70.0,8.0,8.0,8.0,8.0,8.0,7.0,4,0.53 +34838,,,,,,,,0, +1405,100.0,10.0,10.0,10.0,10.0,10.0,10.0,17,1.91 +23177,98.0,10.0,9.0,10.0,10.0,10.0,10.0,24,2.91 +76088,,,,,,,,2,0.3 +66671,93.0,10.0,10.0,10.0,10.0,9.0,9.0,14,1.89 +41129,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.4 +3052,100.0,10.0,9.0,10.0,10.0,10.0,10.0,19,2.3 +25888,99.0,10.0,10.0,10.0,10.0,10.0,10.0,22,4.13 +42650,98.0,10.0,10.0,10.0,10.0,10.0,10.0,19,2.07 +38712,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,2.0 +21520,97.0,10.0,10.0,10.0,10.0,9.0,9.0,13,3.15 +57886,85.0,9.0,8.0,9.0,9.0,10.0,8.0,8,0.95 +30656,89.0,9.0,9.0,10.0,10.0,10.0,9.0,18,1.88 +13700,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.57 +15690,90.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.43 +10674,98.0,10.0,10.0,10.0,10.0,10.0,10.0,59,6.44 +51792,89.0,9.0,9.0,9.0,9.0,10.0,10.0,12,1.33 +48641,96.0,10.0,10.0,10.0,10.0,10.0,9.0,23,2.46 +71069,96.0,10.0,10.0,10.0,10.0,9.0,9.0,26,3.38 +51262,60.0,6.0,6.0,6.0,6.0,6.0,6.0,2,0.24 +40676,100.0,10.0,9.0,10.0,10.0,10.0,10.0,7,1.59 +14723,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.56 +57362,91.0,10.0,10.0,10.0,10.0,10.0,9.0,14,1.63 +67218,96.0,10.0,10.0,9.0,10.0,10.0,10.0,11,1.36 +58177,85.0,9.0,9.0,10.0,9.0,9.0,8.0,4,0.47 +14483,,,,,,,,0, +30549,98.0,9.0,8.0,10.0,10.0,9.0,10.0,8,0.86 +48198,85.0,9.0,7.0,9.0,9.0,10.0,9.0,35,3.75 +68992,100.0,10.0,9.0,10.0,10.0,9.0,10.0,17,1.81 +14135,,,,,,,,0, +10255,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.2 +14934,100.0,10.0,10.0,10.0,10.0,10.0,9.0,7,0.84 +50062,94.0,9.0,9.0,9.0,9.0,10.0,8.0,14,1.64 +75183,99.0,10.0,10.0,10.0,10.0,9.0,10.0,27,2.99 +12902,95.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.59 +1612,87.0,9.0,9.0,9.0,9.0,9.0,8.0,12,1.55 +53887,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.48 +7246,,,,,,,,0, +19085,98.0,10.0,10.0,10.0,10.0,10.0,10.0,19,2.1 +29209,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,1.58 +50141,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.85 +45699,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.2 +60915,,,,,,,,0, +5243,97.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.8 +16688,76.0,8.0,7.0,8.0,9.0,9.0,8.0,5,0.65 +22832,94.0,10.0,10.0,9.0,9.0,10.0,10.0,14,2.01 +40501,60.0,6.0,10.0,8.0,2.0,10.0,8.0,1,1.0 +65093,85.0,9.0,9.0,9.0,9.0,9.0,9.0,12,1.3 +13221,82.0,9.0,9.0,10.0,9.0,10.0,9.0,9,1.12 +48737,,,,,,,,0, +64223,88.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.56 +64310,,,,,,,,1,0.11 +60347,,,,,,,,0, +25292,91.0,9.0,8.0,9.0,9.0,8.0,9.0,14,1.54 +53782,60.0,8.0,8.0,7.0,8.0,8.0,7.0,3,0.35 +13093,93.0,10.0,10.0,10.0,10.0,10.0,10.0,19,2.04 +50613,92.0,9.0,9.0,9.0,9.0,10.0,9.0,34,4.06 +14006,87.0,7.0,8.0,10.0,9.0,10.0,8.0,7,0.74 +9954,85.0,10.0,9.0,9.0,9.0,10.0,9.0,4,0.75 +47081,,,,,,,,0, +18703,100.0,10.0,10.0,9.0,10.0,10.0,10.0,4,0.61 +70633,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.33 +2659,82.0,9.0,9.0,9.0,9.0,9.0,9.0,12,1.46 +25881,67.0,6.0,6.0,5.0,6.0,8.0,6.0,3,0.33 +1121,88.0,9.0,8.0,8.0,10.0,9.0,9.0,5,0.87 +15109,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.11 +18051,20.0,2.0,2.0,2.0,2.0,6.0,2.0,2,0.21 +57355,80.0,8.0,9.0,6.0,8.0,8.0,8.0,6,0.67 +13368,92.0,9.0,10.0,10.0,10.0,9.0,9.0,20,2.34 +3834,94.0,9.0,10.0,10.0,10.0,9.0,9.0,20,2.22 +16113,97.0,10.0,10.0,10.0,10.0,10.0,9.0,7,1.0 +30027,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.34 +29607,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.69 +72611,100.0,10.0,10.0,10.0,10.0,10.0,10.0,21,2.26 +59637,100.0,9.0,10.0,10.0,10.0,10.0,9.0,3,0.38 +59443,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.37 +2675,85.0,10.0,7.0,9.0,9.0,9.0,8.0,19,2.82 +36794,,,,,,,,0, +22316,81.0,9.0,9.0,10.0,9.0,10.0,8.0,69,7.55 +29812,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.42 +12568,100.0,10.0,9.0,10.0,10.0,10.0,10.0,8,0.96 +53731,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.22 +41472,90.0,9.0,9.0,10.0,9.0,10.0,7.0,2,0.27 +24295,80.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.21 +20507,,,,,,,,0, +40429,90.0,10.0,7.0,10.0,10.0,10.0,10.0,2,0.22 +62491,80.0,10.0,8.0,10.0,10.0,9.0,8.0,5,0.6 +8614,,,,,,,,0, +30795,89.0,9.0,8.0,9.0,9.0,9.0,9.0,18,2.36 +4748,80.0,7.0,8.0,10.0,9.0,10.0,10.0,3,0.54 +44449,98.0,10.0,9.0,10.0,10.0,10.0,10.0,38,4.12 +45659,90.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.6 +25124,100.0,10.0,10.0,9.0,10.0,10.0,10.0,6,0.68 +28362,,,,,,,,0, +60432,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.11 +25609,99.0,10.0,10.0,10.0,10.0,10.0,10.0,32,3.38 +46817,84.0,10.0,9.0,10.0,10.0,9.0,9.0,11,1.25 +37733,100.0,10.0,10.0,10.0,8.0,8.0,10.0,1,0.2 +1829,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.31 +31964,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.68 +48454,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.11 +47595,,,,,,,,0, +19265,,,,,,,,0, +76885,93.0,9.0,9.0,10.0,10.0,10.0,10.0,3,0.5 +63955,100.0,9.0,9.0,10.0,10.0,10.0,9.0,9,0.96 +66510,20.0,2.0,2.0,2.0,2.0,2.0,2.0,1,0.13 +578,48.0,6.0,4.0,6.0,7.0,7.0,6.0,8,0.96 +39720,100.0,10.0,10.0,10.0,10.0,10.0,10.0,15,2.23 +53525,,,,,,,,0, +46889,90.0,10.0,10.0,10.0,10.0,10.0,9.0,12,1.25 +35643,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.32 +63116,,,,,,,,1,0.11 +18576,97.0,10.0,9.0,10.0,10.0,9.0,9.0,31,3.72 +52892,93.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.34 +29937,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.14 +25913,88.0,9.0,9.0,10.0,10.0,10.0,9.0,12,1.31 +29950,94.0,10.0,10.0,10.0,9.0,9.0,9.0,15,1.7 +60530,95.0,10.0,9.0,10.0,10.0,10.0,10.0,13,4.7 +29851,,,,,,,,0, +76172,100.0,10.0,10.0,10.0,10.0,10.0,10.0,20,2.43 +66324,98.0,10.0,10.0,10.0,10.0,10.0,10.0,29,3.16 +4340,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,2.59 +31510,,,,,,,,0, +2139,,,,,,,,0, +14766,,,,,,,,0, +12621,,,,,,,,0, +67548,80.0,10.0,6.0,4.0,6.0,10.0,8.0,1,0.24 +47832,,,,,,,,0, +15372,80.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.24 +30819,99.0,10.0,10.0,10.0,10.0,10.0,10.0,15,1.65 +36295,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.46 +26450,80.0,9.0,8.0,9.0,9.0,10.0,8.0,8,0.93 +32605,92.0,9.0,10.0,10.0,10.0,10.0,9.0,5,0.6 +27453,,,,,,,,0, +17839,87.0,9.0,9.0,9.0,9.0,9.0,9.0,3,0.36 +76872,100.0,10.0,10.0,10.0,10.0,10.0,10.0,19,2.15 +69539,,,,,,,,0, +58697,80.0,10.0,8.0,10.0,10.0,10.0,8.0,2,0.23 +27679,93.0,10.0,9.0,9.0,9.0,9.0,9.0,14,1.58 +74970,87.0,9.0,9.0,7.0,9.0,10.0,9.0,19,2.31 +53288,99.0,10.0,10.0,10.0,10.0,10.0,10.0,17,1.99 +22912,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,1.27 +51913,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.36 +43134,,,,,,,,1,0.16 +32846,100.0,10.0,10.0,9.0,10.0,10.0,10.0,9,1.7 +38244,100.0,8.0,8.0,8.0,10.0,10.0,10.0,1,0.11 +10681,100.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.54 +36564,80.0,8.0,7.0,8.0,9.0,9.0,8.0,22,2.53 +56484,96.0,10.0,9.0,10.0,10.0,10.0,10.0,15,1.65 +57500,98.0,10.0,10.0,10.0,10.0,9.0,10.0,11,1.18 +603,100.0,9.0,9.0,10.0,9.0,8.0,10.0,2,0.27 +69629,87.0,8.0,8.0,10.0,9.0,8.0,9.0,3,0.4 +36900,97.0,10.0,10.0,10.0,10.0,9.0,9.0,21,2.52 +18280,,,,,,,,0, +45799,,,,,,,,0, +46997,80.0,9.0,6.0,10.0,10.0,9.0,9.0,2,0.21 +44803,88.0,9.0,10.0,10.0,10.0,9.0,9.0,23,2.58 +288,98.0,10.0,10.0,10.0,10.0,9.0,9.0,11,1.7 +17954,94.0,10.0,10.0,10.0,10.0,10.0,9.0,17,6.37 +43796,,,,,,,,1,0.14 +73696,85.0,9.0,9.0,10.0,9.0,9.0,9.0,6,0.73 +55939,,,,,,,,0, +10570,98.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.88 +45226,,,,,,,,0, +61857,93.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.72 +73436,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.32 +21302,98.0,10.0,10.0,10.0,10.0,9.0,10.0,70,7.66 +2536,,,,,,,,0, +53617,70.0,8.0,10.0,9.0,9.0,10.0,9.0,2,0.23 +3523,90.0,9.0,5.0,10.0,10.0,10.0,8.0,3,2.2 +26507,72.0,8.0,5.0,9.0,8.0,10.0,8.0,7,0.73 +73334,97.0,10.0,10.0,10.0,10.0,9.0,10.0,7,1.23 +34032,,,,,,,,0, +6832,96.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.71 +63482,97.0,10.0,10.0,10.0,10.0,10.0,10.0,32,3.38 +60784,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.32 +29244,93.0,9.0,8.0,10.0,10.0,9.0,10.0,10,1.05 +70086,100.0,10.0,9.0,10.0,10.0,9.0,9.0,3,0.54 +23317,93.0,10.0,9.0,10.0,10.0,10.0,9.0,12,1.57 +35863,97.0,10.0,9.0,10.0,10.0,10.0,10.0,7,0.92 +69717,80.0,8.0,9.0,8.0,9.0,9.0,8.0,12,1.4 +27812,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.12 +74106,,,,,,,,0, +74178,84.0,9.0,8.0,9.0,9.0,9.0,9.0,18,1.96 +63200,80.0,10.0,9.0,9.0,10.0,10.0,9.0,4,2.35 +36245,89.0,9.0,9.0,9.0,9.0,9.0,9.0,10,1.06 +57309,92.0,10.0,9.0,10.0,10.0,10.0,10.0,20,2.91 +28664,,,,,,,,0, +28788,85.0,9.0,9.0,9.0,9.0,10.0,8.0,25,2.76 +1647,100.0,10.0,10.0,9.0,10.0,10.0,10.0,12,1.43 +52044,93.0,10.0,9.0,10.0,10.0,10.0,10.0,8,0.98 +35083,79.0,8.0,7.0,9.0,8.0,10.0,8.0,24,2.67 +66843,97.0,9.0,10.0,10.0,9.0,9.0,10.0,7,0.86 +8409,,,,,,,,0, +4134,93.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.83 +47780,98.0,10.0,10.0,10.0,10.0,10.0,10.0,20,2.3 +42959,,,,,,,,0, +36002,97.0,10.0,10.0,9.0,10.0,9.0,9.0,7,0.75 +6971,95.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.44 +5491,90.0,10.0,9.0,10.0,10.0,10.0,9.0,6,0.7 +41861,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.22 +14225,100.0,10.0,8.0,10.0,8.0,10.0,10.0,1,0.11 +34869,90.0,9.0,9.0,9.0,10.0,9.0,9.0,18,2.09 +60674,,,,,,,,0, +17597,96.0,10.0,9.0,10.0,10.0,9.0,9.0,16,1.76 +1499,67.0,10.0,6.0,10.0,10.0,9.0,7.0,3,0.33 +68315,95.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.01 +12052,90.0,9.0,9.0,9.0,8.0,9.0,10.0,4,0.53 +5776,,,,,,,,0, +62330,,,,,,,,1,0.11 +3881,,,,,,,,0, +59180,95.0,10.0,10.0,10.0,10.0,9.0,10.0,66,7.1 +63603,94.0,10.0,9.0,10.0,9.0,9.0,10.0,7,0.88 +75705,,,,,,,,0, +41485,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.23 +35575,89.0,9.0,9.0,10.0,10.0,9.0,9.0,54,5.83 +52272,94.0,9.0,10.0,9.0,9.0,9.0,9.0,21,2.7 +42346,85.0,9.0,8.0,10.0,10.0,9.0,10.0,4,0.51 +28836,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,1.18 +71364,93.0,9.0,10.0,10.0,10.0,9.0,10.0,8,0.96 +52145,100.0,10.0,10.0,10.0,9.0,10.0,9.0,6,0.84 +70921,93.0,9.0,9.0,9.0,9.0,9.0,9.0,3,0.69 +13432,,,,,,,,0, +8683,,,,,,,,0, +41268,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.47 +9307,,,,,,,,0, +10113,97.0,9.0,10.0,10.0,10.0,10.0,10.0,17,2.08 +24062,,,,,,,,0, +75071,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.11 +66901,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.36 +71849,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.13 +33884,,,,,,,,0, +70999,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,1.27 +9517,89.0,9.0,9.0,9.0,9.0,10.0,8.0,7,0.97 +15961,88.0,9.0,9.0,9.0,10.0,9.0,9.0,22,2.72 +35551,83.0,8.0,9.0,8.0,8.0,9.0,9.0,24,2.58 +2168,93.0,10.0,9.0,9.0,10.0,10.0,9.0,15,1.7 +42024,,,,,,,,0, +14791,88.0,9.0,9.0,10.0,9.0,9.0,9.0,8,0.88 +77064,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.22 +65564,93.0,10.0,10.0,10.0,10.0,8.0,10.0,3,0.99 +47949,,,,,,,,0, +51337,92.0,9.0,9.0,10.0,10.0,10.0,9.0,28,3.23 +46615,80.0,9.0,9.0,10.0,10.0,10.0,8.0,4,0.63 +37190,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.44 +25355,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.13 +19860,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.49 +9893,92.0,9.0,9.0,9.0,9.0,9.0,10.0,28,3.13 +29953,87.0,9.0,8.0,9.0,10.0,10.0,9.0,20,2.33 +76158,97.0,10.0,9.0,10.0,10.0,9.0,10.0,6,0.74 +25933,94.0,10.0,9.0,10.0,10.0,10.0,10.0,10,1.12 +60458,96.0,10.0,9.0,10.0,10.0,10.0,10.0,49,6.5 +20529,99.0,10.0,10.0,10.0,10.0,10.0,10.0,16,1.9 +74688,,,,,,,,1,0.12 +65505,89.0,9.0,10.0,8.0,9.0,9.0,10.0,7,0.76 +43572,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.85 +17532,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.52 +57361,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.27 +58214,98.0,10.0,10.0,10.0,10.0,10.0,10.0,39,4.3 +47253,,,,,,,,0, +51458,,,,,,,,0, +10224,,,,,,,,0, +39846,93.0,9.0,9.0,10.0,9.0,9.0,7.0,3,0.59 +45214,93.0,10.0,10.0,9.0,8.0,9.0,9.0,3,0.67 +60634,80.0,4.0,10.0,8.0,8.0,10.0,8.0,1,0.12 +49441,,,,,,,,0, +69941,100.0,10.0,10.0,10.0,10.0,10.0,10.0,41,4.51 +67797,95.0,10.0,10.0,10.0,10.0,10.0,9.0,66,7.1 +62674,100.0,10.0,10.0,10.0,9.0,10.0,10.0,21,2.23 +8925,88.0,10.0,9.0,10.0,10.0,10.0,9.0,8,1.06 +875,,,,,,,,0, +45166,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.25 +76889,100.0,10.0,9.0,10.0,10.0,10.0,9.0,3,0.4 +7421,87.0,9.0,8.0,10.0,10.0,9.0,9.0,14,2.56 +44864,100.0,9.0,10.0,10.0,10.0,10.0,9.0,3,0.42 +24516,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.15 +5808,,,,,,,,0, +54183,93.0,10.0,9.0,9.0,9.0,9.0,9.0,11,1.22 +38359,91.0,10.0,9.0,10.0,10.0,9.0,9.0,32,3.49 +6478,90.0,10.0,10.0,10.0,10.0,9.0,9.0,2,0.28 +27632,,,,,,,,1,0.11 +31335,79.0,9.0,8.0,8.0,9.0,8.0,8.0,30,3.27 +18118,92.0,10.0,10.0,10.0,9.0,10.0,9.0,13,1.8 +74683,,,,,,,,0, +50846,98.0,10.0,10.0,10.0,10.0,10.0,9.0,9,0.97 +52877,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.22 +19269,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,1.44 +61656,,,,,,,,0, +45125,,,,,,,,0, +21241,,,,,,,,0, +9688,99.0,10.0,10.0,10.0,10.0,10.0,10.0,14,1.63 +22874,88.0,9.0,8.0,10.0,10.0,9.0,8.0,5,0.59 +19006,100.0,10.0,9.0,10.0,10.0,10.0,10.0,6,0.66 +44723,,,,,,,,0, +29704,,,,,,,,0, +6806,87.0,9.0,9.0,10.0,10.0,9.0,9.0,15,2.12 +56653,98.0,10.0,10.0,10.0,10.0,10.0,9.0,8,2.4 +37743,,,,,,,,0, +34074,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.84 +10410,,,,,,,,0, +29127,80.0,9.0,9.0,9.0,9.0,10.0,8.0,4,0.85 +33375,90.0,8.0,9.0,9.0,10.0,9.0,9.0,7,1.06 +30518,90.0,9.0,9.0,10.0,10.0,9.0,9.0,2,0.35 +73610,80.0,9.0,9.0,9.0,9.0,10.0,8.0,12,1.44 +38536,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.57 +39344,,,,,,,,0, +15470,83.0,9.0,8.0,10.0,9.0,10.0,9.0,6,0.79 +31824,93.0,9.0,10.0,9.0,9.0,9.0,9.0,3,0.38 +43628,,,,,,,,0, +3151,100.0,9.0,10.0,10.0,10.0,9.0,10.0,3,0.39 +68433,95.0,10.0,10.0,9.0,9.0,10.0,9.0,12,2.12 +52837,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.03 +44672,40.0,8.0,8.0,10.0,8.0,8.0,2.0,1,0.33 +8183,,,,,,,,0, +3039,91.0,10.0,10.0,10.0,10.0,9.0,9.0,11,1.43 +47329,,,,,,,,0, +12126,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.62 +62143,,,,,,,,1,0.2 +53075,94.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.85 +70308,,,,,,,,0, +72546,95.0,9.0,10.0,10.0,10.0,9.0,9.0,11,1.26 +30428,88.0,9.0,9.0,9.0,9.0,10.0,9.0,15,1.7 +65711,100.0,10.0,10.0,10.0,10.0,9.0,9.0,2,0.31 +3493,,,,,,,,0, +59265,,,,,,,,0, +71336,,,,,,,,0, +35596,,,,,,,,0, +66869,,,,,,,,0, +46935,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.41 +38362,98.0,10.0,10.0,10.0,10.0,9.0,10.0,11,1.22 +54445,,,,,,,,0, +65350,96.0,10.0,9.0,9.0,10.0,9.0,10.0,11,1.54 +33365,75.0,9.0,8.0,8.0,9.0,9.0,7.0,4,0.45 +61646,,,,,,,,0, +24096,84.0,8.0,8.0,8.0,8.0,10.0,8.0,6,0.69 +17559,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.49 +17205,84.0,9.0,8.0,10.0,10.0,9.0,9.0,10,1.17 +52413,93.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.38 +38319,97.0,10.0,10.0,10.0,10.0,10.0,10.0,14,1.59 +52772,87.0,7.0,7.0,9.0,7.0,9.0,10.0,4,0.44 +27746,,,,,,,,0, +28171,,,,,,,,0, +9842,,,,,,,,0, +1192,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.24 +57864,,,,,,,,0, +46209,94.0,10.0,8.0,10.0,10.0,10.0,9.0,14,1.49 +38221,97.0,10.0,10.0,10.0,10.0,10.0,9.0,7,0.92 +57872,89.0,10.0,10.0,10.0,10.0,10.0,10.0,24,2.65 +51271,,,,,,,,0, +795,93.0,9.0,8.0,10.0,10.0,9.0,9.0,11,1.26 +36135,83.0,9.0,9.0,8.0,9.0,10.0,9.0,24,2.56 +133,,,,,,,,0, +56467,91.0,9.0,8.0,9.0,10.0,10.0,9.0,17,1.89 +20931,,,,,,,,0, +15152,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,2.35 +48659,71.0,8.0,7.0,7.0,9.0,10.0,8.0,38,4.56 +26789,90.0,10.0,9.0,10.0,10.0,10.0,10.0,2,1.87 +74818,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.17 +46555,,,,,,,,0, +48782,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +16013,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.39 +4770,86.0,8.0,8.0,7.0,7.0,9.0,9.0,7,1.19 +24369,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.57 +31489,,,,,,,,0, +5225,100.0,10.0,9.0,10.0,10.0,9.0,9.0,2,0.24 +53389,99.0,10.0,10.0,10.0,10.0,10.0,10.0,38,4.16 +77034,95.0,10.0,9.0,9.0,10.0,9.0,9.0,15,2.37 +8204,85.0,9.0,7.0,8.0,8.0,10.0,9.0,4,0.45 +2063,80.0,7.0,9.0,8.0,8.0,10.0,9.0,7,0.79 +31726,,,,,,,,2,0.21 +55047,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.77 +17229,90.0,10.0,9.0,10.0,10.0,9.0,8.0,2,0.25 +69100,94.0,9.0,10.0,8.0,9.0,9.0,8.0,7,0.95 +23086,85.0,9.0,8.0,9.0,9.0,9.0,9.0,16,1.98 +69220,,,,,,,,0, +9630,93.0,9.0,10.0,10.0,9.0,9.0,9.0,5,0.53 +11835,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.44 +71226,100.0,10.0,10.0,10.0,10.0,10.0,10.0,15,1.61 +60057,67.0,7.0,6.0,7.0,7.0,8.0,7.0,3,0.37 +54128,98.0,10.0,10.0,10.0,10.0,9.0,10.0,12,1.86 +35338,97.0,10.0,10.0,10.0,10.0,10.0,10.0,13,1.43 +16581,90.0,10.0,9.0,10.0,10.0,9.0,9.0,10,1.68 +54024,,,,,,,,1,0.19 +20027,96.0,9.0,9.0,9.0,10.0,9.0,9.0,11,1.43 +62500,,,,,,,,0, +61756,80.0,10.0,6.0,10.0,10.0,10.0,10.0,2,0.21 +10876,,,,,,,,0, +8963,83.0,9.0,8.0,9.0,9.0,9.0,8.0,39,4.16 +76234,96.0,9.0,9.0,10.0,10.0,9.0,9.0,13,1.43 +67735,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.63 +14,,,,,,,,1,0.11 +2848,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.72 +69358,83.0,9.0,9.0,9.0,9.0,9.0,8.0,8,0.92 +70385,83.0,9.0,9.0,9.0,9.0,10.0,8.0,13,1.73 +71796,,,,,,,,0, +55254,,,,,,,,0, +5337,,,,,,,,0, +25329,90.0,8.0,6.0,10.0,8.0,10.0,8.0,2,0.25 +52076,97.0,10.0,10.0,10.0,10.0,10.0,9.0,65,7.09 +16969,91.0,9.0,9.0,10.0,9.0,9.0,9.0,7,1.11 +8488,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.77 +53382,89.0,10.0,9.0,10.0,10.0,9.0,9.0,30,3.41 +9051,95.0,10.0,10.0,10.0,10.0,9.0,9.0,17,1.92 +66912,78.0,8.0,8.0,9.0,9.0,8.0,8.0,26,2.92 +75443,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.23 +74135,95.0,10.0,10.0,10.0,10.0,10.0,9.0,16,2.12 +51054,84.0,8.0,9.0,8.0,8.0,10.0,8.0,11,1.44 +74820,99.0,10.0,10.0,10.0,10.0,10.0,9.0,15,1.68 +33699,94.0,10.0,10.0,8.0,9.0,10.0,10.0,13,1.68 +28604,97.0,10.0,10.0,9.0,10.0,10.0,9.0,6,1.19 +31281,96.0,10.0,10.0,10.0,10.0,10.0,9.0,10,1.1 +35503,,,,,,,,0, +69548,100.0,10.0,10.0,9.0,10.0,10.0,9.0,3,0.41 +67200,80.0,10.0,10.0,9.0,7.0,9.0,9.0,3,0.46 +68010,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.46 +36212,86.0,9.0,9.0,10.0,10.0,9.0,9.0,29,3.15 +67386,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.4 +43281,96.0,9.0,10.0,10.0,10.0,10.0,10.0,5,0.74 +21072,82.0,9.0,9.0,9.0,10.0,9.0,9.0,21,2.4 +40006,100.0,10.0,10.0,10.0,10.0,10.0,8.0,2,0.39 +23738,,,,,,,,0, +64660,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.27 +31735,,,,,,,,0, +57726,100.0,10.0,10.0,10.0,10.0,9.0,10.0,17,2.15 +57669,93.0,9.0,9.0,10.0,10.0,9.0,10.0,8,1.14 +13366,,,,,,,,0, +3159,100.0,10.0,8.0,10.0,8.0,10.0,10.0,1,0.11 +3873,,,,,,,,0, +74892,80.0,9.0,10.0,9.0,7.0,9.0,8.0,2,0.48 +76388,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.68 +63478,,,,,,,,0, +41077,87.0,9.0,9.0,10.0,10.0,9.0,8.0,15,1.74 +22836,96.0,10.0,10.0,8.0,10.0,10.0,10.0,5,1.47 +47094,74.0,8.0,7.0,9.0,8.0,9.0,8.0,20,2.14 +13825,,,,,,,,2,0.22 +3179,,,,,,,,0, +71301,,,,,,,,0, +63596,,,,,,,,0, +2801,,,,,,,,0, +35814,95.0,9.0,10.0,10.0,10.0,8.0,9.0,24,2.73 +23139,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.23 +60602,,,,,,,,0, +58565,80.0,7.0,7.0,10.0,10.0,9.0,7.0,3,0.43 +25248,,,,,,,,0, +18973,94.0,9.0,9.0,9.0,9.0,9.0,9.0,7,1.04 +42107,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +40686,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.91 +26902,80.0,9.0,7.0,7.0,8.0,8.0,8.0,2,0.23 +58005,94.0,10.0,10.0,9.0,9.0,10.0,9.0,7,0.79 +50490,100.0,10.0,9.0,10.0,10.0,10.0,10.0,13,1.43 +6596,,,,,,,,0, +66841,90.0,10.0,8.0,10.0,10.0,10.0,9.0,6,0.72 +56892,95.0,10.0,9.0,10.0,10.0,9.0,9.0,25,2.72 +2843,,,,,,,,0, +59912,,,,,,,,0, +29622,90.0,8.0,8.0,10.0,10.0,10.0,9.0,2,0.38 +70749,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.21 +69157,93.0,9.0,10.0,9.0,8.0,10.0,9.0,3,0.37 +23473,94.0,10.0,9.0,9.0,9.0,10.0,9.0,10,1.25 +643,80.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.2 +62460,,,,,,,,1,0.14 +60995,,,,,,,,0, +1532,100.0,10.0,10.0,9.0,10.0,10.0,9.0,3,1.48 +5083,,,,,,,,0, +56825,87.0,9.0,9.0,10.0,10.0,10.0,10.0,3,0.36 +51008,,,,,,,,0, +8664,,,,,,,,0, +61415,80.0,9.0,9.0,9.0,10.0,10.0,9.0,13,1.76 +10173,100.0,10.0,9.0,10.0,10.0,10.0,10.0,6,0.9 +68483,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,1.3 +15843,100.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.53 +50532,80.0,6.0,8.0,10.0,10.0,10.0,8.0,1,1.0 +16073,100.0,10.0,10.0,10.0,10.0,9.0,10.0,11,1.31 +40030,83.0,9.0,8.0,9.0,9.0,9.0,9.0,28,3.13 +69962,92.0,9.0,10.0,9.0,9.0,9.0,9.0,23,2.8 +30778,78.0,8.0,8.0,9.0,9.0,8.0,9.0,21,2.32 +12083,100.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.66 +61251,100.0,10.0,9.0,10.0,10.0,10.0,9.0,2,0.38 +31898,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.58 +7525,86.0,9.0,9.0,9.0,10.0,9.0,9.0,27,3.08 +32613,98.0,9.0,9.0,10.0,10.0,10.0,9.0,9,1.28 +41061,93.0,10.0,9.0,10.0,10.0,10.0,9.0,8,0.86 +55790,97.0,10.0,10.0,10.0,10.0,10.0,10.0,15,1.96 +64882,20.0,4.0,2.0,4.0,6.0,6.0,2.0,1,0.11 +10167,84.0,9.0,9.0,9.0,9.0,9.0,9.0,25,2.82 +11707,75.0,8.0,8.0,8.0,9.0,9.0,7.0,20,2.21 +51925,96.0,10.0,9.0,10.0,10.0,10.0,10.0,19,2.56 +19066,84.0,10.0,9.0,10.0,10.0,10.0,9.0,5,0.77 +73445,96.0,10.0,9.0,10.0,10.0,9.0,10.0,51,5.63 +3436,80.0,10.0,9.0,10.0,10.0,10.0,8.0,2,0.22 +50267,93.0,9.0,9.0,10.0,10.0,10.0,10.0,7,0.79 +9427,92.0,10.0,9.0,10.0,10.0,10.0,9.0,10,1.2 +68847,80.0,8.0,10.0,10.0,10.0,10.0,8.0,5,0.55 +19088,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.7 +58137,,,,,,,,0, +65490,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.12 +31992,,,,,,,,0, +9310,60.0,6.0,7.0,7.0,5.0,7.0,6.0,3,0.7 +67011,100.0,9.0,10.0,10.0,10.0,10.0,10.0,2,0.22 +62812,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.44 +66230,87.0,8.0,8.0,9.0,8.0,8.0,8.0,7,1.17 +51824,97.0,10.0,10.0,10.0,10.0,10.0,10.0,31,3.59 +73708,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.88 +52991,80.0,8.0,10.0,10.0,10.0,9.0,9.0,2,0.26 +20016,20.0,2.0,2.0,2.0,2.0,2.0,2.0,3,1.36 +49620,97.0,10.0,10.0,10.0,9.0,10.0,9.0,6,1.01 +61196,93.0,10.0,9.0,10.0,10.0,9.0,9.0,3,0.34 +45734,93.0,10.0,8.0,10.0,10.0,10.0,10.0,47,6.47 +51780,93.0,10.0,10.0,10.0,10.0,8.0,9.0,11,1.34 +11021,80.0,9.0,9.0,9.0,9.0,9.0,9.0,3,0.39 +34076,,,,,,,,0, +67878,97.0,10.0,9.0,10.0,9.0,10.0,9.0,7,1.25 +24041,60.0,5.0,5.0,5.0,9.0,7.0,6.0,2,0.26 +32550,95.0,10.0,10.0,10.0,10.0,10.0,10.0,55,5.98 +2802,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.47 +50530,,,,,,,,0, +20584,,,,,,,,0, +24559,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.22 +63362,85.0,9.0,9.0,10.0,10.0,10.0,9.0,47,5.18 +2003,,,,,,,,1,0.14 +47136,89.0,9.0,8.0,10.0,10.0,9.0,9.0,39,4.4 +76270,99.0,10.0,10.0,10.0,10.0,10.0,10.0,20,2.27 +21227,100.0,10.0,10.0,10.0,10.0,10.0,10.0,23,2.48 +51956,100.0,10.0,10.0,10.0,6.0,8.0,8.0,1,0.25 +20780,,,,,,,,1,0.18 +62182,100.0,10.0,10.0,7.0,10.0,9.0,10.0,2,0.65 +52491,,,,,,,,0, +60049,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.17 +15811,90.0,9.0,9.0,9.0,9.0,10.0,9.0,21,2.31 +53784,90.0,10.0,9.0,10.0,10.0,9.0,9.0,14,1.58 +59061,96.0,10.0,10.0,10.0,10.0,9.0,9.0,19,2.1 +49710,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.23 +15143,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +55387,,,,,,,,0, +62887,90.0,10.0,9.0,10.0,10.0,8.0,9.0,2,0.36 +45473,80.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.63 +44471,,,,,,,,0, +6768,87.0,9.0,8.0,7.0,9.0,9.0,8.0,6,0.77 +70586,96.0,10.0,10.0,9.0,10.0,10.0,9.0,19,2.28 +48196,93.0,9.0,10.0,10.0,9.0,10.0,9.0,17,1.84 +54609,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.55 +68124,97.0,10.0,10.0,9.0,9.0,10.0,10.0,13,1.46 +14582,100.0,10.0,10.0,8.0,10.0,10.0,10.0,2,0.28 +56058,,,,,,,,0, +59708,,,,,,,,1,0.13 +11580,80.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.6 +13098,78.0,10.0,8.0,10.0,10.0,9.0,9.0,21,2.33 +24108,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.66 +32826,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.56 +12514,93.0,10.0,10.0,10.0,10.0,10.0,9.0,29,3.63 +35119,98.0,10.0,9.0,10.0,9.0,9.0,9.0,9,1.22 +10953,96.0,10.0,10.0,10.0,8.0,10.0,10.0,5,0.68 +76272,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.61 +17386,93.0,10.0,9.0,9.0,9.0,10.0,9.0,11,1.45 +11263,91.0,9.0,9.0,10.0,10.0,10.0,9.0,14,1.57 +35401,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.45 +33579,,,,,,,,0, +51917,,,,,,,,0, +18529,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,1.01 +14962,95.0,10.0,10.0,10.0,10.0,9.0,9.0,11,1.27 +65268,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.34 +269,87.0,9.0,8.0,9.0,10.0,9.0,9.0,36,4.03 +63921,90.0,9.0,9.0,10.0,10.0,10.0,9.0,8,0.88 +66664,,,,,,,,1,0.11 +62122,92.0,9.0,9.0,10.0,9.0,9.0,9.0,5,0.61 +73253,92.0,9.0,8.0,10.0,10.0,10.0,9.0,16,1.96 +27692,93.0,9.0,9.0,10.0,10.0,10.0,9.0,26,2.88 +39924,100.0,10.0,9.0,10.0,10.0,10.0,10.0,7,1.15 +49402,,,,,,,,0, +29120,84.0,8.0,8.0,8.0,9.0,10.0,7.0,5,0.67 +74016,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.7 +70838,,,,,,,,0, +47387,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.24 +53188,96.0,9.0,8.0,9.0,10.0,10.0,9.0,5,0.75 +16263,99.0,10.0,10.0,10.0,10.0,10.0,10.0,31,3.46 +75311,94.0,10.0,9.0,10.0,10.0,10.0,10.0,7,0.77 +45284,80.0,10.0,6.0,10.0,10.0,8.0,8.0,1,0.12 +67892,100.0,10.0,10.0,10.0,9.0,10.0,10.0,3,0.33 +11737,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.12 +37402,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.82 +20675,96.0,10.0,8.0,9.0,10.0,10.0,10.0,5,0.62 +50276,,,,,,,,1,0.11 +20406,,,,,,,,0, +75752,,,,,,,,0, +40036,92.0,10.0,9.0,9.0,9.0,9.0,10.0,24,3.01 +64195,,,,,,,,0, +2531,,,,,,,,0, +10956,93.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.52 +20372,,,,,,,,0, +28252,100.0,10.0,9.0,10.0,10.0,9.0,9.0,4,0.56 +59717,,,,,,,,0, +21765,80.0,4.0,8.0,8.0,6.0,8.0,6.0,1,0.12 +17507,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.79 +35091,,,,,,,,0, +68082,97.0,10.0,9.0,10.0,10.0,10.0,10.0,7,0.93 +32842,90.0,10.0,10.0,10.0,9.0,9.0,10.0,10,1.13 +52945,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.24 +57110,99.0,10.0,10.0,10.0,10.0,10.0,10.0,17,1.92 +27473,93.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.4 +46984,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.36 +10554,98.0,10.0,10.0,10.0,10.0,9.0,10.0,25,3.46 +40973,100.0,10.0,10.0,9.0,10.0,8.0,10.0,4,0.43 +60824,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,1.64 +71968,98.0,10.0,10.0,9.0,10.0,10.0,9.0,9,1.1 +66170,95.0,10.0,10.0,10.0,10.0,9.0,10.0,15,2.66 +50821,100.0,10.0,10.0,10.0,10.0,10.0,9.0,12,2.59 +68531,97.0,10.0,10.0,10.0,10.0,10.0,10.0,22,2.67 +1491,,,,,,,,0, +68261,94.0,10.0,10.0,9.0,10.0,9.0,9.0,10,1.37 +27713,,,,,,,,0, +29750,98.0,10.0,10.0,10.0,10.0,9.0,10.0,8,0.91 +43408,86.0,10.0,9.0,10.0,9.0,8.0,9.0,7,0.91 +27272,,,,,,,,0, +10668,,,,,,,,2,0.22 +53257,93.0,10.0,9.0,9.0,10.0,10.0,9.0,64,7.19 +49377,,,,,,,,0, +13877,100.0,10.0,10.0,10.0,9.0,9.0,9.0,2,0.38 +34012,90.0,9.0,10.0,10.0,10.0,10.0,9.0,5,0.58 +29137,,,,,,,,0, +38449,,,,,,,,1,0.11 +33358,,,,,,,,1,0.15 +62384,,,,,,,,0, +61471,,,,,,,,0, +65851,96.0,10.0,9.0,10.0,10.0,10.0,9.0,10,1.1 +19281,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.68 +44150,97.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.78 +20724,100.0,9.0,10.0,10.0,10.0,10.0,8.0,3,0.35 +18124,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.26 +15404,,,,,,,,0, +68862,,,,,,,,0, +60848,93.0,9.0,9.0,10.0,10.0,10.0,9.0,3,0.59 +55360,,,,,,,,0, +43807,100.0,10.0,9.0,10.0,10.0,10.0,9.0,2,0.24 +43448,100.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.74 +48663,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.63 +61709,98.0,10.0,9.0,10.0,10.0,9.0,10.0,41,4.98 +53443,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.33 +42470,80.0,9.0,8.0,10.0,9.0,9.0,9.0,17,2.05 +70175,,,,,,,,1,0.18 +30121,95.0,10.0,10.0,10.0,9.0,10.0,10.0,4,0.52 +13659,,,,,,,,0, +13391,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.13 +30865,97.0,10.0,10.0,10.0,10.0,9.0,10.0,12,2.05 +42594,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.69 +6936,93.0,9.0,9.0,10.0,10.0,10.0,10.0,3,0.63 +68471,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.83 +75963,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.23 +59753,74.0,8.0,9.0,7.0,8.0,9.0,7.0,21,2.96 +2432,,,,,,,,0, +1651,,,,,,,,0, +17909,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.66 +52636,98.0,10.0,10.0,10.0,10.0,9.0,10.0,11,1.22 +74846,97.0,10.0,10.0,10.0,10.0,10.0,10.0,20,2.33 +44342,93.0,9.0,10.0,10.0,10.0,10.0,9.0,50,5.86 +7254,88.0,9.0,8.0,9.0,9.0,9.0,9.0,25,2.79 +2263,40.0,6.0,2.0,10.0,8.0,4.0,4.0,1,0.16 +69038,93.0,10.0,9.0,10.0,10.0,8.0,9.0,11,1.43 +70557,90.0,9.0,10.0,10.0,10.0,10.0,9.0,12,1.35 +20294,93.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.77 +62328,80.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.22 +61318,92.0,10.0,10.0,10.0,10.0,10.0,9.0,26,3.08 +8479,92.0,9.0,9.0,10.0,10.0,8.0,9.0,5,0.65 +37179,88.0,10.0,8.0,10.0,10.0,10.0,9.0,29,3.75 +61491,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,1.32 +36419,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.77 +47808,93.0,10.0,9.0,10.0,9.0,9.0,9.0,3,0.36 +58967,,,,,,,,0, +3448,97.0,10.0,10.0,10.0,10.0,9.0,10.0,16,1.96 +36814,90.0,10.0,9.0,10.0,10.0,9.0,9.0,4,0.44 +40779,96.0,9.0,9.0,9.0,10.0,10.0,9.0,15,1.93 +30246,,,,,,,,0, +53120,80.0,9.0,8.0,9.0,8.0,8.0,8.0,3,0.34 +39943,90.0,9.0,10.0,9.0,9.0,9.0,9.0,6,6.0 +17036,100.0,10.0,10.0,10.0,10.0,10.0,10.0,20,2.97 +41792,96.0,10.0,10.0,10.0,10.0,9.0,9.0,23,4.21 +40702,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,1.12 +64022,,,,,,,,0, +67433,,,,,,,,0, +31237,80.0,7.0,6.0,8.0,8.0,9.0,8.0,2,0.54 +31052,60.0,6.0,6.0,8.0,4.0,10.0,4.0,1,0.26 +35573,,,,,,,,0, +63120,,,,,,,,0, +15661,,,,,,,,0, +63019,,,,,,,,0, +66651,97.0,10.0,9.0,10.0,10.0,10.0,10.0,7,0.76 +41204,96.0,10.0,10.0,10.0,10.0,10.0,9.0,15,1.9 +14394,96.0,10.0,10.0,9.0,8.0,9.0,10.0,5,0.8 +5618,,,,,,,,1,0.19 +63904,,,,,,,,1,0.11 +58270,92.0,9.0,9.0,10.0,10.0,9.0,9.0,5,0.95 +64739,93.0,10.0,9.0,9.0,10.0,9.0,10.0,3,0.37 +52648,,,,,,,,0, +30814,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.32 +70684,,,,,,,,0, +626,,,,,,,,0, +54903,60.0,6.0,6.0,6.0,6.0,7.0,6.0,5,0.65 +50254,79.0,9.0,9.0,8.0,10.0,9.0,8.0,16,1.76 +18739,84.0,8.0,9.0,9.0,8.0,10.0,8.0,14,1.73 +75095,94.0,9.0,10.0,10.0,10.0,10.0,9.0,13,1.6 +63079,76.0,8.0,5.0,10.0,9.0,9.0,8.0,5,0.68 +72861,80.0,6.0,8.0,6.0,6.0,8.0,8.0,1,0.12 +55446,,,,,,,,0, +17922,,,,,,,,0, +30355,93.0,10.0,9.0,10.0,10.0,10.0,10.0,9,1.34 +7546,93.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.4 +72504,85.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.44 +74250,96.0,10.0,9.0,10.0,10.0,9.0,10.0,19,2.1 +9557,,,,,,,,0, +45093,93.0,9.0,8.0,10.0,10.0,10.0,10.0,4,0.44 +33772,85.0,10.0,9.0,10.0,9.0,10.0,9.0,8,0.96 +15377,89.0,9.0,9.0,10.0,10.0,9.0,8.0,19,2.58 +44647,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.23 +69005,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.44 +75368,92.0,10.0,9.0,10.0,10.0,10.0,9.0,32,3.61 +58678,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.56 +8482,,,,,,,,0, +49314,,,,,,,,0, +44109,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.32 +16541,,,,,,,,0, +44633,,,,,,,,0, +23167,91.0,10.0,9.0,10.0,10.0,10.0,10.0,8,0.87 +62272,99.0,10.0,10.0,10.0,10.0,10.0,10.0,15,1.72 +27615,,,,,,,,0, +32428,94.0,10.0,10.0,10.0,10.0,9.0,9.0,9,1.31 +62342,100.0,9.0,9.0,10.0,9.0,10.0,8.0,2,0.3 +70135,87.0,9.0,10.0,9.0,10.0,9.0,8.0,3,0.54 +22078,,,,,,,,0, +40244,88.0,9.0,9.0,10.0,10.0,10.0,8.0,16,1.98 +8068,90.0,9.0,9.0,10.0,10.0,10.0,9.0,43,4.85 +76297,85.0,9.0,8.0,9.0,9.0,10.0,9.0,28,3.7 +17945,,,,,,,,0, +72991,95.0,10.0,10.0,10.0,10.0,9.0,9.0,17,2.07 +62361,100.0,10.0,10.0,10.0,9.0,7.0,10.0,4,0.44 +51434,99.0,10.0,10.0,10.0,10.0,10.0,10.0,79,9.01 +31857,100.0,6.0,10.0,10.0,10.0,10.0,10.0,1,0.12 +16703,,,,,,,,1,0.11 +31941,87.0,9.0,9.0,8.0,9.0,10.0,9.0,6,2.73 +19350,100.0,9.0,10.0,10.0,10.0,9.0,9.0,3,0.35 +68680,,,,,,,,0, +33570,87.0,9.0,9.0,7.0,9.0,9.0,9.0,3,0.37 +26920,95.0,10.0,10.0,9.0,10.0,10.0,10.0,4,0.48 +50016,93.0,9.0,8.0,10.0,10.0,9.0,9.0,3,0.44 +9252,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.63 +70820,89.0,9.0,8.0,9.0,9.0,9.0,9.0,23,2.91 +16634,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.24 +35614,,,,,,,,0, +7897,80.0,8.0,10.0,6.0,10.0,10.0,10.0,1,0.17 +43583,89.0,9.0,9.0,9.0,9.0,10.0,9.0,21,3.09 +56977,,,,,,,,0, +73134,89.0,10.0,10.0,10.0,9.0,9.0,9.0,8,0.91 +70022,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.34 +48384,60.0,6.0,6.0,7.0,5.0,9.0,7.0,2,0.41 +23365,,,,,,,,0, +50695,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.34 +56094,100.0,10.0,10.0,10.0,10.0,10.0,9.0,11,1.27 +48277,,,,,,,,0, +48162,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.67 +61669,82.0,8.0,9.0,9.0,9.0,9.0,9.0,12,1.38 +15457,100.0,10.0,10.0,10.0,10.0,10.0,10.0,34,3.75 +72369,,,,,,,,0, +51644,,,,,,,,0, +65892,93.0,10.0,10.0,9.0,8.0,10.0,10.0,8,1.11 +75338,,,,,,,,0, +51841,76.0,9.0,9.0,9.0,9.0,10.0,8.0,11,1.28 +52766,80.0,8.0,8.0,10.0,10.0,10.0,10.0,1,0.13 +36781,96.0,10.0,9.0,10.0,10.0,10.0,10.0,17,2.04 +9586,,,,,,,,0, +34543,62.0,7.0,6.0,8.0,8.0,8.0,6.0,18,2.01 +25878,87.0,9.0,9.0,8.0,9.0,9.0,8.0,10,1.2 +39335,96.0,10.0,10.0,10.0,9.0,10.0,10.0,20,2.38 +20858,92.0,10.0,9.0,9.0,10.0,10.0,9.0,13,1.88 +45340,88.0,10.0,8.0,8.0,9.0,9.0,9.0,5,0.62 +43836,,,,,,,,0, +39894,88.0,9.0,8.0,9.0,9.0,9.0,8.0,5,0.59 +13621,87.0,9.0,8.0,8.0,9.0,10.0,8.0,6,0.78 +21934,87.0,10.0,10.0,10.0,10.0,10.0,9.0,9,1.02 +4505,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,1.18 +44879,88.0,9.0,10.0,10.0,10.0,10.0,9.0,5,0.6 +19079,81.0,9.0,7.0,9.0,9.0,9.0,8.0,15,1.74 +30026,97.0,10.0,10.0,10.0,10.0,10.0,10.0,29,3.78 +20625,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.26 +64881,96.0,9.0,9.0,10.0,10.0,10.0,9.0,17,2.01 +76916,100.0,10.0,10.0,10.0,10.0,10.0,10.0,18,2.01 +27845,90.0,9.0,9.0,10.0,10.0,9.0,9.0,4,0.48 +23078,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,1.37 +62695,95.0,10.0,10.0,9.0,10.0,10.0,10.0,14,1.67 +6487,,,,,,,,0, +54543,85.0,10.0,9.0,10.0,10.0,9.0,9.0,5,0.57 +7672,88.0,9.0,7.0,9.0,9.0,9.0,8.0,10,1.15 +55729,92.0,10.0,9.0,9.0,10.0,9.0,9.0,5,0.86 +24015,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.3 +15279,,,,,,,,0, +22594,98.0,10.0,10.0,10.0,10.0,9.0,10.0,13,1.68 +62214,84.0,8.0,9.0,10.0,9.0,8.0,8.0,9,1.02 +62913,,,,,,,,0, +23734,,,,,,,,0, +33945,,,,,,,,0, +22034,,,,,,,,0, +74606,97.0,10.0,10.0,10.0,10.0,10.0,10.0,25,2.92 +68933,91.0,9.0,9.0,10.0,10.0,10.0,9.0,55,6.09 +73192,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.15 +15080,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.23 +56383,,,,,,,,0, +37790,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.42 +76455,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,1.24 +37189,,,,,,,,2,0.26 +59789,93.0,10.0,9.0,10.0,10.0,9.0,10.0,11,1.39 +46222,100.0,10.0,8.0,10.0,8.0,10.0,8.0,1,0.21 +56873,,,,,,,,0, +61495,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.23 +54366,40.0,10.0,10.0,10.0,2.0,4.0,6.0,1,0.59 +13251,98.0,10.0,10.0,10.0,10.0,10.0,9.0,13,1.42 +19753,100.0,9.0,10.0,10.0,10.0,10.0,10.0,3,0.36 +6990,60.0,6.0,6.0,6.0,6.0,9.0,5.0,2,0.24 +44762,93.0,10.0,10.0,10.0,10.0,9.0,9.0,16,3.14 +67661,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.66 +6903,91.0,9.0,8.0,9.0,9.0,9.0,9.0,13,1.44 +52862,96.0,10.0,10.0,9.0,10.0,10.0,10.0,11,1.2 +62727,90.0,9.0,9.0,8.0,9.0,8.0,8.0,3,0.33 +64630,,,,,,,,0, +60021,,,,,,,,0, +36470,100.0,10.0,10.0,10.0,10.0,8.0,10.0,15,1.79 +47641,85.0,9.0,8.0,9.0,9.0,9.0,9.0,19,2.32 +31210,80.0,8.0,10.0,10.0,8.0,8.0,8.0,2,0.27 +45491,,,,,,,,0, +31954,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.25 +2783,96.0,10.0,10.0,10.0,10.0,9.0,10.0,20,2.41 +8856,77.0,8.0,7.0,9.0,9.0,8.0,8.0,22,2.56 +19274,98.0,10.0,10.0,9.0,10.0,10.0,9.0,8,1.11 +72065,91.0,10.0,9.0,9.0,10.0,9.0,9.0,14,1.59 +42793,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,1.17 +3827,,,,,,,,0, +35973,50.0,4.0,5.0,3.0,3.0,5.0,6.0,2,0.28 +48281,,,,,,,,0, +71581,87.0,9.0,9.0,10.0,10.0,9.0,9.0,11,1.29 +988,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.15 +15242,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.95 +16818,,,,,,,,0, +13140,100.0,10.0,10.0,10.0,10.0,10.0,10.0,16,1.81 +54824,,,,,,,,0, +1820,96.0,10.0,9.0,10.0,10.0,9.0,10.0,16,1.87 +52099,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.57 +12994,82.0,9.0,9.0,10.0,10.0,10.0,9.0,25,2.93 +24964,83.0,9.0,9.0,8.0,9.0,9.0,9.0,30,3.28 +30532,87.0,9.0,9.0,10.0,10.0,9.0,9.0,33,3.68 +22398,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.12 +17891,81.0,9.0,8.0,9.0,9.0,9.0,8.0,26,2.91 +6462,,,,,,,,0, +13614,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.44 +47953,85.0,9.0,9.0,10.0,10.0,9.0,9.0,22,2.41 +7679,67.0,5.0,7.0,7.0,7.0,7.0,5.0,3,0.4 +18966,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,1.44 +76770,,,,,,,,0, +37352,87.0,10.0,10.0,9.0,10.0,8.0,9.0,12,1.99 +10118,93.0,9.0,8.0,9.0,9.0,9.0,9.0,4,0.47 +11154,,,,,,,,1,0.24 +51294,50.0,5.0,6.0,6.0,6.0,5.0,5.0,2,0.35 +46179,97.0,10.0,10.0,10.0,10.0,10.0,10.0,27,3.52 +6335,,,,,,,,0, +40816,77.0,9.0,9.0,8.0,9.0,9.0,7.0,14,1.68 +9849,100.0,10.0,10.0,10.0,10.0,9.0,9.0,4,0.48 +62106,98.0,10.0,10.0,10.0,10.0,9.0,10.0,11,1.54 +9567,80.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.13 +37148,100.0,10.0,10.0,10.0,10.0,10.0,7.0,3,0.43 +65954,,,,,,,,0, +68269,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.47 +12852,100.0,10.0,10.0,10.0,8.0,8.0,8.0,2,0.54 +59667,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.21 +5736,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.28 +24449,93.0,9.0,10.0,10.0,10.0,9.0,9.0,3,0.39 +38798,68.0,7.0,8.0,8.0,8.0,9.0,7.0,16,1.75 +25472,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.4 +16393,71.0,7.0,8.0,7.0,7.0,8.0,7.0,17,1.86 +67422,93.0,10.0,9.0,10.0,10.0,8.0,10.0,6,0.69 +62402,90.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.27 +17609,98.0,10.0,10.0,10.0,10.0,10.0,10.0,24,3.44 +12552,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.44 +67488,95.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.92 +68453,,,,,,,,0, +12084,96.0,10.0,10.0,10.0,10.0,10.0,10.0,16,1.91 +42320,,,,,,,,1,1.0 +71423,99.0,10.0,10.0,10.0,10.0,10.0,10.0,24,2.66 +883,100.0,10.0,10.0,10.0,8.0,10.0,10.0,1,0.22 +31639,,,,,,,,0, +3352,60.0,8.0,8.0,10.0,10.0,10.0,6.0,1,0.19 +37670,,,,,,,,0, +40130,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.58 +45354,,,,,,,,0, +25439,80.0,9.0,7.0,10.0,10.0,9.0,8.0,15,1.81 +28331,80.0,7.0,7.0,8.0,9.0,10.0,8.0,5,0.66 +53374,94.0,10.0,10.0,10.0,10.0,10.0,10.0,58,7.07 +71945,80.0,9.0,9.0,9.0,9.0,9.0,9.0,14,2.09 +32661,,,,,,,,0, +72228,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.14 +12466,,,,,,,,0, +49692,90.0,10.0,10.0,9.0,10.0,9.0,10.0,6,0.76 +70274,98.0,10.0,10.0,10.0,10.0,10.0,9.0,13,2.05 +42825,,,,,,,,0, +73278,85.0,10.0,9.0,9.0,9.0,9.0,9.0,37,4.48 +22702,100.0,10.0,10.0,10.0,10.0,10.0,9.0,11,1.43 +47930,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.23 +43247,100.0,10.0,9.0,10.0,10.0,9.0,10.0,3,0.57 +68104,,,,,,,,0, +68281,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.88 +72169,,,,,,,,0, +9563,100.0,10.0,8.0,8.0,10.0,10.0,10.0,1,0.12 +1182,91.0,9.0,9.0,9.0,9.0,10.0,9.0,7,0.77 +41021,92.0,10.0,10.0,10.0,9.0,10.0,10.0,12,1.48 +70645,98.0,10.0,10.0,10.0,10.0,9.0,10.0,88,9.85 +32331,,,,,,,,0, +68849,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.28 +40895,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.75 +60077,100.0,10.0,10.0,10.0,10.0,10.0,10.0,16,2.03 +4547,,,,,,,,0, +20133,90.0,8.0,7.0,10.0,10.0,9.0,9.0,2,0.65 +30664,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.37 +30161,99.0,10.0,10.0,10.0,10.0,9.0,10.0,23,3.0 +43982,,,,,,,,1,0.11 +62590,,,,,,,,0, +15769,,,,,,,,0, +20944,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.72 +31636,,,,,,,,0, +8252,93.0,10.0,9.0,10.0,9.0,9.0,10.0,3,0.78 +69971,87.0,9.0,9.0,10.0,10.0,9.0,9.0,3,0.38 +76160,80.0,9.0,7.0,10.0,10.0,10.0,8.0,7,0.84 +8271,,,,,,,,0, +35413,94.0,9.0,9.0,10.0,10.0,10.0,9.0,19,2.32 +18286,,,,,,,,0, +9485,,,,,,,,0, +42163,,,,,,,,0, +39418,,,,,,,,0, +29854,99.0,10.0,10.0,10.0,10.0,10.0,10.0,37,4.83 +56758,,,,,,,,0, +33647,89.0,9.0,9.0,10.0,10.0,10.0,9.0,13,1.59 +27911,97.0,10.0,10.0,9.0,10.0,10.0,10.0,13,1.48 +57619,,,,,,,,1,0.11 +26966,91.0,10.0,10.0,10.0,10.0,10.0,9.0,32,3.92 +14094,,,,,,,,0, +36718,100.0,10.0,10.0,10.0,10.0,9.0,9.0,8,0.94 +72814,93.0,9.0,10.0,10.0,10.0,10.0,9.0,24,2.93 +50215,92.0,9.0,10.0,10.0,10.0,10.0,9.0,19,2.31 +14732,91.0,9.0,9.0,10.0,10.0,10.0,9.0,17,2.29 +5994,96.0,10.0,10.0,10.0,10.0,9.0,9.0,5,0.58 +69119,92.0,10.0,10.0,9.0,10.0,9.0,9.0,38,4.65 +38811,60.0,10.0,10.0,9.0,6.0,10.0,8.0,2,0.39 +18745,94.0,10.0,10.0,9.0,9.0,9.0,9.0,18,2.09 +43799,92.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.61 +57270,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.18 +33455,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.13 +3121,89.0,9.0,9.0,10.0,9.0,9.0,9.0,17,2.02 +29037,87.0,9.0,8.0,9.0,9.0,9.0,9.0,22,2.66 +8254,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.2 +66505,60.0,8.0,2.0,10.0,8.0,8.0,8.0,1,0.16 +61540,100.0,10.0,10.0,10.0,10.0,10.0,10.0,16,1.81 +68185,96.0,10.0,9.0,9.0,9.0,10.0,9.0,15,2.49 +20295,91.0,10.0,9.0,10.0,10.0,9.0,9.0,25,3.75 +6386,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.11 +76880,86.0,9.0,9.0,9.0,9.0,9.0,9.0,26,3.39 +22774,,,,,,,,0, +59000,80.0,8.0,9.0,9.0,8.0,10.0,8.0,6,0.81 +22487,100.0,10.0,10.0,9.0,10.0,10.0,10.0,6,0.7 +19900,,,,,,,,0, +10166,91.0,9.0,9.0,10.0,10.0,10.0,9.0,8,0.94 +38180,,,,,,,,0, +32879,74.0,8.0,7.0,9.0,9.0,8.0,8.0,14,6.89 +35290,100.0,10.0,10.0,10.0,10.0,10.0,10.0,15,1.88 +3300,88.0,9.0,8.0,10.0,10.0,9.0,9.0,19,2.3 +69075,95.0,10.0,9.0,10.0,10.0,10.0,9.0,12,1.53 +20635,99.0,10.0,10.0,10.0,10.0,9.0,10.0,18,2.16 +61103,91.0,9.0,9.0,10.0,9.0,10.0,9.0,39,4.38 +43699,97.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.81 +76197,97.0,10.0,9.0,9.0,9.0,10.0,10.0,9,1.11 +62043,,,,,,,,0, +64927,100.0,10.0,10.0,9.0,10.0,10.0,10.0,3,0.36 +69934,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.34 +694,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.91 +13832,93.0,10.0,9.0,10.0,10.0,10.0,9.0,6,0.75 +57197,81.0,9.0,9.0,9.0,8.0,10.0,9.0,29,3.33 +46479,92.0,10.0,10.0,10.0,10.0,10.0,10.0,12,1.58 +25074,95.0,10.0,10.0,10.0,9.0,10.0,10.0,4,0.47 +54141,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.7 +52336,,,,,,,,1,0.11 +10769,90.0,9.0,9.0,9.0,9.0,8.0,9.0,6,0.73 +37054,,,,,,,,1,0.11 +74930,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.04 +32384,87.0,9.0,9.0,10.0,10.0,9.0,9.0,3,0.35 +7223,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.25 +26750,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.13 +6511,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.75 +67163,88.0,10.0,8.0,10.0,9.0,8.0,10.0,8,0.99 +40901,,,,,,,,1,0.12 +26377,98.0,10.0,10.0,10.0,10.0,10.0,10.0,11,1.33 +3979,100.0,10.0,9.0,10.0,10.0,10.0,10.0,8,0.93 +63823,,,,,,,,0, +3539,89.0,9.0,8.0,9.0,9.0,10.0,9.0,9,1.05 +43229,98.0,10.0,10.0,10.0,10.0,10.0,10.0,44,5.37 +70353,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.37 +15082,,,,,,,,0, +48267,60.0,7.0,7.0,8.0,8.0,9.0,7.0,8,0.93 +29939,,,,,,,,0, +34780,97.0,10.0,9.0,10.0,10.0,10.0,10.0,29,3.57 +34013,,,,,,,,0, +32473,82.0,8.0,8.0,10.0,9.0,10.0,8.0,9,1.07 +14863,85.0,10.0,9.0,10.0,8.0,10.0,8.0,4,1.6 +48136,84.0,9.0,9.0,10.0,9.0,7.0,8.0,5,0.63 +10308,,,,,,,,0, +53939,96.0,10.0,10.0,10.0,10.0,9.0,9.0,9,1.08 +61511,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.22 +7253,95.0,10.0,10.0,10.0,9.0,10.0,9.0,11,1.64 +72410,,,,,,,,1, +60457,,,,,,,,0, +75735,99.0,10.0,10.0,10.0,10.0,10.0,10.0,29,3.28 +40980,90.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.39 +72601,,,,,,,,1,0.16 +42750,96.0,10.0,10.0,10.0,10.0,10.0,9.0,10,1.35 +50518,89.0,9.0,9.0,10.0,10.0,9.0,9.0,11,1.96 +65717,98.0,10.0,10.0,10.0,10.0,9.0,10.0,27,3.32 +25844,,,,,,,,0, +54931,91.0,10.0,9.0,10.0,10.0,10.0,10.0,22,3.06 +4074,98.0,10.0,10.0,10.0,10.0,10.0,10.0,23,2.56 +72319,91.0,10.0,10.0,9.0,10.0,10.0,9.0,17,4.77 +14449,,,,,,,,0, +64007,,,,,,,,0, +64077,85.0,9.0,9.0,10.0,10.0,9.0,10.0,25,2.81 +33272,,,,,,,,0, +54895,100.0,10.0,4.0,10.0,10.0,10.0,8.0,1,0.29 +74790,,,,,,,,0, +48876,,,,,,,,0, +31645,100.0,10.0,10.0,10.0,9.0,10.0,10.0,2,0.23 +39927,100.0,9.0,10.0,10.0,10.0,9.0,9.0,2,0.26 +22564,96.0,10.0,10.0,10.0,10.0,10.0,9.0,18,2.04 +63863,,,,,,,,0, +65878,100.0,10.0,10.0,10.0,10.0,9.0,9.0,4,0.6 +72498,87.0,10.0,9.0,7.0,9.0,9.0,9.0,3,0.52 +75410,92.0,9.0,10.0,9.0,9.0,10.0,9.0,6,0.75 +22628,,,,,,,,0, +18125,98.0,10.0,10.0,10.0,10.0,10.0,10.0,25,3.26 +29152,91.0,10.0,10.0,9.0,10.0,9.0,10.0,9,1.06 +66264,60.0,8.0,10.0,8.0,8.0,10.0,10.0,1,0.46 +31994,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.24 +57981,,,,,,,,0, +65862,,,,,,,,0, +73668,96.0,10.0,10.0,9.0,9.0,10.0,10.0,5,0.65 +46918,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.46 +11373,,,,,,,,0, +1609,98.0,10.0,10.0,10.0,10.0,10.0,10.0,24,2.94 +4488,91.0,9.0,9.0,10.0,10.0,9.0,9.0,14,1.56 +45100,,,,,,,,0, +24271,83.0,10.0,9.0,10.0,9.0,10.0,8.0,8,1.03 +39219,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.96 +28284,,,,,,,,0, +16382,86.0,10.0,10.0,10.0,9.0,10.0,9.0,17,1.99 +28733,,,,,,,,0, +44892,,,,,,,,0, +73715,,,,,,,,1,0.12 +53563,94.0,10.0,10.0,10.0,10.0,10.0,9.0,39,4.7 +18463,,,,,,,,2,0.23 +17969,99.0,10.0,10.0,10.0,10.0,10.0,10.0,26,3.06 +949,90.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.34 +46029,95.0,9.0,10.0,10.0,10.0,9.0,10.0,4,0.47 +59521,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.52 +22518,91.0,10.0,9.0,9.0,9.0,8.0,9.0,11,1.3 +50942,89.0,10.0,9.0,10.0,10.0,10.0,9.0,32,3.62 +9554,,,,,,,,0, +58401,79.0,9.0,8.0,10.0,9.0,10.0,9.0,27,3.03 +18722,,,,,,,,0, +63815,90.0,9.0,9.0,9.0,10.0,9.0,9.0,25,2.94 +54700,97.0,10.0,10.0,9.0,9.0,9.0,10.0,7,0.84 +69222,90.0,10.0,9.0,10.0,10.0,10.0,10.0,16,1.92 +61755,97.0,10.0,10.0,10.0,10.0,9.0,10.0,36,4.3 +75583,,,,,,,,0, +21384,,,,,,,,1,0.12 +74051,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.82 +62871,,,,,,,,0, +30495,,,,,,,,0, +31612,,,,,,,,0, +75787,,,,,,,,1,0.14 +58502,,,,,,,,0, +55597,,,,,,,,0, +48798,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.21 +18247,,,,,,,,0, +50353,100.0,10.0,9.0,10.0,10.0,9.0,10.0,7,0.86 +41336,90.0,8.0,9.0,10.0,10.0,9.0,9.0,3,0.38 +20519,99.0,10.0,10.0,10.0,10.0,10.0,10.0,22,2.47 +16366,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.5 +44849,80.0,8.0,6.0,4.0,8.0,9.0,8.0,2,0.32 +63084,,,,,,,,0, +45279,91.0,10.0,9.0,10.0,10.0,10.0,9.0,16,1.87 +61203,80.0,9.0,7.0,8.0,9.0,9.0,9.0,3,0.56 +51968,100.0,8.0,8.0,8.0,8.0,10.0,8.0,1,1.0 +15418,90.0,10.0,9.0,8.0,10.0,9.0,10.0,2,0.46 +11385,96.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.74 +58727,83.0,9.0,8.0,9.0,9.0,8.0,8.0,23,2.58 +31256,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.51 +669,83.0,9.0,8.0,10.0,10.0,10.0,9.0,12,1.8 +52573,86.0,9.0,9.0,8.0,9.0,10.0,9.0,13,1.57 +35225,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,1.48 +67180,100.0,9.0,9.0,10.0,9.0,10.0,9.0,2,0.58 +45406,90.0,9.0,10.0,10.0,9.0,9.0,9.0,10,1.2 +12318,100.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.67 +11613,,,,,,,,0, +4620,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.45 +51548,,,,,,,,0, +69879,,,,,,,,0, +32504,,,,,,,,0, +63468,90.0,9.0,8.0,10.0,10.0,10.0,8.0,2,0.37 +46468,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.11 +17589,60.0,7.0,6.0,5.0,7.0,9.0,7.0,3,0.46 +17458,,,,,,,,0, +4494,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.48 +56392,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,1.7 +74780,92.0,9.0,10.0,8.0,9.0,10.0,9.0,29,3.48 +51635,97.0,9.0,10.0,10.0,10.0,10.0,9.0,23,2.57 +26938,,,,,,,,0, +68627,,,,,,,,0, +22154,95.0,10.0,10.0,10.0,10.0,9.0,10.0,13,1.73 +73367,,,,,,,,0, +6182,,,,,,,,0, +20218,100.0,10.0,10.0,10.0,10.0,10.0,10.0,19,2.41 +21418,95.0,10.0,10.0,10.0,9.0,9.0,9.0,15,1.77 +75902,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.23 +52184,,,,,,,,0, +62033,,,,,,,,0, +65037,99.0,10.0,10.0,10.0,10.0,10.0,10.0,19,2.31 +22918,,,,,,,,0, +17933,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.34 +65871,,,,,,,,0, +24331,,,,,,,,0, +14495,,,,,,,,0, +44190,,,,,,,,0, +46145,80.0,9.0,7.0,8.0,9.0,8.0,8.0,4,0.71 +9249,70.0,10.0,10.0,7.0,9.0,9.0,9.0,2,0.23 +58982,94.0,10.0,9.0,10.0,10.0,10.0,9.0,20,2.62 +18109,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.49 +17574,100.0,10.0,10.0,10.0,9.0,10.0,10.0,2,1.07 +27627,80.0,9.0,9.0,9.0,10.0,9.0,9.0,3,0.65 +61006,100.0,8.0,10.0,10.0,8.0,10.0,10.0,1,0.23 +45327,94.0,10.0,10.0,10.0,10.0,10.0,10.0,10,1.29 +22383,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.91 +60390,,,,,,,,0, +5526,98.0,10.0,10.0,10.0,10.0,10.0,9.0,9,1.26 +75818,,,,,,,,0, +13244,92.0,10.0,9.0,10.0,10.0,9.0,10.0,18,2.36 +26927,80.0,6.0,6.0,10.0,10.0,8.0,8.0,1,0.13 +25585,,,,,,,,0, +63212,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.33 +35230,80.0,10.0,6.0,10.0,10.0,10.0,10.0,1,0.15 +37285,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.84 +18675,100.0,10.0,10.0,10.0,10.0,9.0,9.0,6,0.67 +59595,,,,,,,,0, +62077,99.0,10.0,10.0,10.0,10.0,9.0,10.0,27,3.13 +68337,,,,,,,,2,0.29 +30686,96.0,10.0,10.0,10.0,10.0,10.0,10.0,26,3.05 +44906,,,,,,,,1,0.12 +69932,98.0,10.0,10.0,10.0,10.0,10.0,10.0,19,2.21 +36364,100.0,9.0,10.0,10.0,10.0,9.0,10.0,16,1.84 +59318,,,,,,,,0, +12428,98.0,10.0,10.0,10.0,10.0,10.0,10.0,17,1.98 +2128,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.15 +25384,,,,,,,,0, +6991,,,,,,,,0, +15710,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +66245,97.0,10.0,10.0,10.0,10.0,9.0,10.0,24,2.94 +32148,,,,,,,,0, +66058,80.0,7.0,7.0,7.0,8.0,9.0,7.0,2,0.34 +22749,94.0,8.0,10.0,9.0,10.0,10.0,9.0,7,0.84 +69103,80.0,10.0,8.0,10.0,10.0,8.0,8.0,1,0.23 +38770,99.0,10.0,10.0,10.0,10.0,9.0,10.0,15,1.72 +12037,97.0,10.0,10.0,10.0,10.0,10.0,10.0,7,1.38 +8194,90.0,10.0,9.0,10.0,10.0,10.0,9.0,3,0.4 +23804,,,,,,,,1,0.17 +8578,,,,,,,,0, +46393,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.75 +29646,100.0,10.0,10.0,9.0,10.0,10.0,10.0,2,0.36 +39084,88.0,9.0,9.0,9.0,9.0,9.0,9.0,22,2.58 +29907,100.0,9.0,10.0,10.0,9.0,10.0,10.0,2,0.24 +60965,91.0,9.0,9.0,10.0,10.0,10.0,8.0,9,1.05 +73620,,,,,,,,0, +71021,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.23 +67130,99.0,10.0,10.0,10.0,10.0,10.0,10.0,29,3.28 +46848,80.0,10.0,8.0,10.0,10.0,10.0,6.0,3,1.29 +265,93.0,9.0,10.0,10.0,10.0,9.0,8.0,3,0.46 +9364,92.0,9.0,8.0,9.0,10.0,9.0,9.0,5,0.58 +21039,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.45 +5171,80.0,10.0,7.0,10.0,10.0,10.0,9.0,3,0.58 +43682,91.0,10.0,9.0,10.0,10.0,10.0,9.0,8,1.54 +964,,,,,,,,0, +34014,99.0,10.0,10.0,10.0,10.0,9.0,10.0,18,2.05 +10839,,,,,,,,0, +60886,,,,,,,,0, +75111,90.0,8.0,9.0,10.0,10.0,8.0,8.0,2,0.25 +60452,92.0,10.0,10.0,10.0,10.0,9.0,9.0,5,0.61 +58575,90.0,9.0,10.0,9.0,8.0,9.0,9.0,9,1.27 +68541,,,,,,,,0, +25769,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.12 +76610,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.35 +71518,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.74 +39467,,,,,,,,0, +72444,97.0,10.0,10.0,10.0,10.0,10.0,10.0,20,2.4 +27133,,,,,,,,0, +34952,95.0,10.0,9.0,10.0,10.0,10.0,10.0,21,2.75 +71620,77.0,9.0,8.0,9.0,9.0,10.0,8.0,37,4.3 +48611,94.0,9.0,9.0,9.0,10.0,9.0,10.0,10,1.16 +23406,91.0,10.0,9.0,9.0,10.0,8.0,10.0,21,3.15 +22200,90.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.29 +16706,,,,,,,,1,0.47 +49503,100.0,10.0,10.0,10.0,10.0,10.0,9.0,13,2.42 +52568,90.0,10.0,9.0,9.0,10.0,9.0,10.0,6,1.13 +44601,93.0,9.0,9.0,10.0,10.0,10.0,9.0,22,2.52 +6279,100.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.55 +8791,,,,,,,,2,0.25 +73628,100.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.23 +73067,92.0,10.0,10.0,10.0,9.0,10.0,9.0,28,3.27 +54075,78.0,8.0,8.0,8.0,8.0,9.0,8.0,42,4.86 +56397,90.0,9.0,9.0,9.0,10.0,10.0,10.0,2,0.26 +64626,87.0,10.0,8.0,10.0,10.0,9.0,9.0,3,0.36 +12151,,,,,,,,0, +64965,92.0,10.0,10.0,10.0,10.0,10.0,9.0,39,4.66 +14342,80.0,9.0,8.0,8.0,9.0,10.0,8.0,17,2.01 +24323,100.0,10.0,10.0,10.0,10.0,10.0,9.0,13,1.65 +42666,90.0,10.0,9.0,10.0,10.0,10.0,9.0,5,0.59 +9257,90.0,8.0,9.0,9.0,9.0,9.0,9.0,10,1.49 +61741,89.0,9.0,10.0,9.0,10.0,9.0,9.0,7,0.83 +1872,93.0,9.0,9.0,10.0,10.0,10.0,9.0,3,0.46 +47642,,,,,,,,2,0.24 +43259,90.0,9.0,8.0,10.0,10.0,9.0,9.0,21,2.84 +4642,,,,,,,,0, +59338,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.92 +39528,80.0,2.0,6.0,6.0,10.0,10.0,6.0,1,0.31 +37618,80.0,9.0,8.0,10.0,9.0,10.0,8.0,2,0.48 +33211,50.0,5.0,6.0,2.0,5.0,9.0,5.0,2,0.32 +64113,80.0,8.0,6.0,10.0,10.0,10.0,8.0,1,0.21 +47164,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +29423,,,,,,,,0, +10753,94.0,10.0,10.0,10.0,10.0,10.0,10.0,14,1.66 +41752,95.0,10.0,9.0,10.0,10.0,10.0,10.0,12,2.35 +66801,,,,,,,,0, +41495,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.24 +71885,,,,,,,,0, +64921,87.0,9.0,9.0,9.0,9.0,9.0,9.0,27,3.29 +18790,95.0,10.0,10.0,10.0,9.0,9.0,10.0,11,1.69 +46921,99.0,10.0,10.0,10.0,10.0,10.0,10.0,14,1.63 +35968,96.0,9.0,10.0,10.0,10.0,9.0,10.0,10,1.2 +27488,90.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.35 +57474,100.0,8.0,8.0,10.0,10.0,8.0,8.0,2,0.31 +34351,,,,,,,,0, +31166,80.0,10.0,10.0,8.0,10.0,10.0,8.0,3,0.35 +8697,,,,,,,,0, +50945,100.0,10.0,9.0,9.0,10.0,10.0,10.0,4,0.6 +49899,89.0,9.0,9.0,10.0,10.0,10.0,8.0,11,1.26 +60856,76.0,9.0,9.0,8.0,8.0,10.0,8.0,5,0.7 +3580,,,,,,,,0, +66431,100.0,10.0,10.0,10.0,8.0,10.0,10.0,2,0.25 +38142,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.23 +11473,,,,,,,,0, +65274,20.0,2.0,2.0,2.0,2.0,2.0,2.0,1,0.4 +52246,,,,,,,,0, +64795,88.0,9.0,10.0,9.0,10.0,8.0,9.0,5,0.59 +24017,87.0,8.0,10.0,10.0,9.0,8.0,9.0,3,0.36 +34610,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,1.34 +915,93.0,9.0,9.0,10.0,10.0,10.0,9.0,3,0.36 +3749,83.0,9.0,9.0,10.0,9.0,9.0,9.0,6,0.9 +49763,,,,,,,,0, +3739,,,,,,,,0, +43417,93.0,10.0,9.0,10.0,10.0,9.0,9.0,6,0.71 +35375,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.13 +35886,,,,,,,,0, +48989,,,,,,,,1, +74555,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.16 +2156,,,,,,,,0, +28886,,,,,,,,1,0.11 +10343,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.64 +5126,,,,,,,,0, +47010,,,,,,,,0, +75142,,,,,,,,0, +17135,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.38 +1998,98.0,9.0,10.0,10.0,10.0,10.0,10.0,10,1.2 +61554,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.34 +52046,90.0,10.0,9.0,10.0,9.0,10.0,10.0,4,0.49 +18487,87.0,8.0,7.0,7.0,7.0,10.0,8.0,4,0.59 +13787,,,,,,,,0, +69968,73.0,7.0,5.0,8.0,10.0,10.0,9.0,3,0.36 +44777,95.0,10.0,9.0,10.0,10.0,10.0,10.0,12,1.44 +32732,90.0,8.0,8.0,9.0,10.0,8.0,8.0,2,0.27 +71347,99.0,10.0,10.0,10.0,10.0,10.0,9.0,17,2.13 +36962,96.0,10.0,10.0,10.0,10.0,10.0,10.0,11,1.33 +72706,100.0,10.0,10.0,10.0,10.0,8.0,9.0,3,0.55 +26819,91.0,9.0,10.0,10.0,9.0,9.0,9.0,21,2.44 +73975,98.0,10.0,10.0,10.0,10.0,9.0,10.0,22,2.47 +15497,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,1.55 +17183,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,1.62 +75274,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,3.4 +36089,99.0,10.0,9.0,10.0,10.0,10.0,10.0,30,3.47 +65097,96.0,9.0,10.0,10.0,10.0,8.0,9.0,5,0.77 +28583,,,,,,,,0, +22032,93.0,10.0,10.0,10.0,10.0,9.0,9.0,20,2.74 +6223,91.0,10.0,9.0,9.0,10.0,9.0,9.0,9,1.08 +12544,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.12 +53456,94.0,9.0,10.0,9.0,9.0,10.0,9.0,7,0.98 +21633,77.0,10.0,7.0,9.0,9.0,9.0,7.0,6,0.85 +7648,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.49 +23359,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.47 +73968,80.0,8.0,10.0,8.0,10.0,10.0,8.0,1,0.21 +46708,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.16 +42454,80.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.31 +68334,60.0,7.0,7.0,7.0,6.0,8.0,7.0,2,0.28 +49041,100.0,10.0,8.0,10.0,10.0,10.0,8.0,2,0.38 +18898,97.0,10.0,10.0,10.0,10.0,9.0,10.0,19,2.64 +9070,95.0,10.0,9.0,10.0,10.0,9.0,10.0,55,6.55 +54585,,,,,,,,0, +52127,,,,,,,,0, +11223,,,,,,,,0, +20852,95.0,10.0,10.0,9.0,10.0,10.0,9.0,22,3.06 +57596,70.0,10.0,8.0,7.0,9.0,8.0,7.0,6,0.8 +22753,97.0,10.0,10.0,10.0,10.0,10.0,10.0,27,3.09 +75796,93.0,10.0,10.0,10.0,9.0,8.0,10.0,3,0.37 +24608,88.0,9.0,9.0,9.0,9.0,9.0,9.0,15,1.89 +33244,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.11 +52170,100.0,9.0,9.0,10.0,9.0,7.0,10.0,2,0.29 +72731,,,,,,,,0, +42147,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,1.7 +11469,96.0,10.0,10.0,10.0,9.0,10.0,10.0,29,3.28 +12617,73.0,8.0,7.0,9.0,10.0,9.0,6.0,3,0.36 +2048,89.0,9.0,9.0,9.0,9.0,9.0,9.0,11,3.71 +20308,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.36 +55300,,,,,,,,2,0.36 +39882,100.0,10.0,10.0,10.0,10.0,8.0,10.0,2,0.27 +62324,93.0,10.0,9.0,9.0,10.0,9.0,10.0,3,0.36 +59407,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.11 +56886,100.0,10.0,10.0,10.0,10.0,10.0,10.0,69,8.52 +23063,97.0,10.0,10.0,10.0,10.0,10.0,10.0,31,3.99 +22025,98.0,10.0,10.0,10.0,10.0,9.0,9.0,13,1.59 +73649,96.0,10.0,10.0,10.0,10.0,10.0,10.0,17,2.07 +39486,60.0,6.0,6.0,6.0,6.0,5.0,5.0,2,0.48 +29845,98.0,10.0,10.0,10.0,10.0,10.0,10.0,31,3.71 +43072,87.0,9.0,8.0,9.0,9.0,9.0,9.0,39,4.43 +49076,100.0,9.0,10.0,10.0,10.0,10.0,10.0,3,0.42 +51124,91.0,10.0,8.0,10.0,9.0,10.0,8.0,7,1.0 +23050,94.0,10.0,9.0,10.0,9.0,10.0,9.0,17,2.18 +7174,99.0,10.0,10.0,9.0,10.0,9.0,10.0,18,2.2 +39533,78.0,9.0,8.0,10.0,9.0,9.0,8.0,9,1.18 +71412,100.0,10.0,10.0,10.0,10.0,10.0,10.0,24,3.04 +5034,,,,,,,,0, +23320,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.27 +76684,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.57 +13286,,,,,,,,0, +25813,100.0,10.0,4.0,10.0,10.0,10.0,8.0,1,0.58 +61283,,,,,,,,0, +31084,94.0,10.0,10.0,10.0,10.0,10.0,9.0,19,2.57 +36218,80.0,10.0,10.0,7.0,10.0,9.0,8.0,2,0.29 +6299,94.0,10.0,10.0,10.0,10.0,10.0,9.0,13,3.07 +33106,,,,,,,,1,0.12 +4830,96.0,10.0,10.0,9.0,9.0,10.0,10.0,9,1.22 +74409,,,,,,,,0, +28270,,,,,,,,0, +66488,,,,,,,,0, +55528,,,,,,,,0, +31058,92.0,10.0,9.0,10.0,10.0,9.0,8.0,13,1.6 +27912,100.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.13 +36576,95.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.56 +34884,73.0,8.0,8.0,7.0,7.0,9.0,9.0,4,0.47 +45351,,,,,,,,0, +70129,80.0,6.0,9.0,7.0,8.0,10.0,6.0,4,0.48 +4042,96.0,9.0,10.0,10.0,10.0,10.0,9.0,6,0.82 +66504,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.56 +28075,95.0,10.0,9.0,10.0,10.0,10.0,10.0,8,1.14 +32552,100.0,10.0,10.0,10.0,10.0,6.0,8.0,2,0.43 +57205,100.0,10.0,9.0,9.0,10.0,10.0,9.0,4,0.49 +5574,91.0,9.0,9.0,9.0,8.0,9.0,10.0,7,0.82 +71167,100.0,10.0,10.0,8.0,10.0,10.0,10.0,2,0.26 +66587,95.0,10.0,10.0,10.0,10.0,10.0,10.0,15,2.02 +37448,,,,,,,,0, +36855,100.0,9.0,10.0,10.0,9.0,10.0,10.0,3,0.35 +44543,87.0,9.0,8.0,9.0,10.0,10.0,9.0,15,1.95 +75690,95.0,10.0,10.0,10.0,10.0,10.0,10.0,10,1.6 +2121,90.0,9.0,8.0,10.0,10.0,9.0,10.0,14,2.19 +65737,,,,,,,,0, +57415,100.0,10.0,10.0,10.0,10.0,10.0,10.0,42,5.58 +45577,90.0,9.0,10.0,8.0,9.0,9.0,9.0,8,0.94 +60904,92.0,10.0,10.0,10.0,10.0,10.0,9.0,19,2.21 +32919,,,,,,,,0, +72625,99.0,10.0,10.0,10.0,10.0,10.0,10.0,56,7.34 +72792,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.12 +53045,98.0,10.0,10.0,10.0,10.0,9.0,9.0,18,2.18 +4,87.0,9.0,8.0,9.0,9.0,9.0,10.0,11,1.25 +24957,80.0,9.0,8.0,10.0,9.0,8.0,9.0,8,1.11 +928,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.49 +75326,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.94 +67535,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.54 +56708,100.0,10.0,9.0,10.0,10.0,10.0,9.0,7,1.46 +27301,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,1.7 +74011,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.62 +52912,94.0,10.0,9.0,10.0,9.0,9.0,9.0,45,5.15 +22666,98.0,10.0,10.0,9.0,10.0,10.0,10.0,10,2.5 +6588,72.0,8.0,9.0,8.0,7.0,10.0,9.0,5,0.7 +59572,89.0,9.0,9.0,9.0,9.0,9.0,9.0,47,5.3 +68265,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.24 +37632,100.0,10.0,10.0,10.0,10.0,10.0,8.0,2,0.66 +63816,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,1.0 +47014,84.0,8.0,8.0,10.0,9.0,10.0,9.0,15,1.74 +29161,,,,,,,,0, +679,95.0,9.0,9.0,10.0,10.0,10.0,9.0,17,1.99 +16839,,,,,,,,1,0.12 +29956,,,,,,,,0, +13082,,,,,,,,0, +74496,97.0,10.0,9.0,10.0,10.0,10.0,10.0,6,0.79 +55964,100.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.62 +45846,93.0,10.0,10.0,9.0,10.0,8.0,9.0,3,0.47 +24310,94.0,9.0,10.0,10.0,10.0,10.0,10.0,21,2.76 +407,91.0,9.0,9.0,9.0,9.0,9.0,9.0,13,1.6 +49090,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.43 +59366,83.0,8.0,7.0,9.0,9.0,8.0,9.0,6,0.72 +51721,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.13 +59699,67.0,10.0,7.0,9.0,9.0,10.0,8.0,3,0.55 +4873,100.0,10.0,9.0,10.0,10.0,10.0,10.0,8,1.47 +75687,,,,,,,,1,0.11 +49188,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.36 +71162,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.96 +19433,96.0,10.0,10.0,8.0,9.0,10.0,9.0,15,1.91 +12207,93.0,9.0,8.0,9.0,9.0,9.0,9.0,3,0.78 +29484,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.12 +43014,,,,,,,,1,0.12 +72032,68.0,7.0,8.0,6.0,6.0,9.0,7.0,40,4.6 +62180,,,,,,,,0, +11343,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.36 +60443,80.0,10.0,8.0,8.0,8.0,9.0,8.0,6,0.71 +66746,92.0,10.0,9.0,9.0,10.0,10.0,9.0,24,3.23 +51803,,,,,,,,1,0.11 +72342,97.0,10.0,10.0,10.0,10.0,10.0,10.0,39,4.55 +21013,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,1.4 +38809,96.0,10.0,10.0,10.0,10.0,9.0,10.0,34,4.02 +6272,90.0,10.0,9.0,10.0,10.0,9.0,9.0,2,0.23 +47551,,,,,,,,0, +5844,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.36 +48436,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.16 +76015,,,,,,,,1,0.15 +11288,87.0,8.0,10.0,6.0,8.0,9.0,8.0,6,0.81 +47053,,,,,,,,1,0.17 +51555,,,,,,,,0, +43605,93.0,10.0,9.0,10.0,10.0,9.0,9.0,12,1.46 +38307,,,,,,,,0, +31880,100.0,10.0,10.0,10.0,10.0,10.0,10.0,19,3.22 +38108,99.0,10.0,10.0,10.0,10.0,10.0,10.0,14,1.69 +18123,,,,,,,,0, +3858,94.0,10.0,9.0,10.0,10.0,10.0,10.0,20,2.78 +1868,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.85 +71739,,,,,,,,1, +8859,95.0,10.0,10.0,10.0,10.0,9.0,10.0,12,1.38 +29242,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.69 +27864,97.0,10.0,9.0,10.0,10.0,10.0,10.0,7,0.81 +65906,87.0,9.0,8.0,10.0,10.0,10.0,9.0,36,4.19 +25533,90.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.41 +23040,100.0,10.0,9.0,10.0,10.0,9.0,10.0,2,0.25 +6942,87.0,10.0,9.0,7.0,9.0,10.0,8.0,3,0.54 +73525,74.0,8.0,7.0,9.0,8.0,9.0,9.0,25,3.0 +30608,82.0,9.0,7.0,10.0,10.0,10.0,9.0,13,4.19 +48073,91.0,10.0,9.0,9.0,10.0,10.0,9.0,11,3.2 +39312,70.0,9.0,8.0,8.0,10.0,10.0,7.0,10,1.48 +40892,65.0,8.0,6.0,8.0,7.0,9.0,7.0,4,0.48 +63985,100.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.48 +41264,84.0,9.0,9.0,9.0,9.0,10.0,9.0,11,1.48 +61665,95.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.97 +1255,60.0,7.0,5.0,9.0,9.0,9.0,6.0,2,0.24 +18243,,,,,,,,0, +59565,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.13 +67074,95.0,9.0,8.0,10.0,10.0,9.0,9.0,5,0.6 +69978,99.0,10.0,10.0,10.0,10.0,10.0,10.0,31,3.73 +62814,89.0,10.0,8.0,10.0,10.0,9.0,9.0,7,0.81 +71807,,,,,,,,0, +45228,100.0,10.0,9.0,10.0,10.0,9.0,9.0,4,0.48 +33535,,,,,,,,0, +31366,72.0,8.0,7.0,8.0,8.0,8.0,8.0,5,1.03 +31981,98.0,10.0,9.0,10.0,10.0,10.0,10.0,10,1.21 +72845,100.0,10.0,8.0,10.0,10.0,8.0,10.0,1,0.15 +33454,100.0,8.0,10.0,8.0,10.0,8.0,8.0,1,0.48 +47328,,,,,,,,0, +49566,,,,,,,,0, +28770,92.0,10.0,9.0,9.0,10.0,10.0,10.0,5,0.77 +67432,,,,,,,,0, +69455,,,,,,,,0, +3426,,,,,,,,0, +58879,,,,,,,,0, +1220,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.81 +20927,,,,,,,,1,0.11 +48357,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.58 +58888,93.0,9.0,9.0,10.0,10.0,10.0,9.0,24,2.79 +73999,87.0,9.0,9.0,9.0,9.0,9.0,9.0,6,0.7 +59068,93.0,10.0,9.0,10.0,10.0,9.0,10.0,18,2.87 +35603,,,,,,,,0, +63614,80.0,10.0,6.0,10.0,10.0,10.0,10.0,1,0.25 +10464,100.0,10.0,10.0,10.0,10.0,10.0,10.0,15,1.73 +2507,100.0,10.0,10.0,10.0,10.0,8.0,10.0,3,0.34 +10498,98.0,10.0,9.0,10.0,10.0,9.0,10.0,12,2.18 +31338,79.0,8.0,7.0,8.0,8.0,9.0,8.0,24,2.83 +9527,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.11 +17421,,,,,,,,0, +17501,85.0,9.0,8.0,9.0,8.0,9.0,9.0,45,5.19 +68967,82.0,9.0,7.0,9.0,9.0,9.0,9.0,28,3.43 +69811,96.0,10.0,9.0,10.0,10.0,9.0,9.0,10,1.17 +21917,100.0,10.0,8.0,8.0,10.0,10.0,10.0,1,0.12 +6938,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.23 +42352,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.22 +11003,100.0,9.0,10.0,9.0,9.0,10.0,10.0,5,0.6 +22130,85.0,9.0,8.0,9.0,8.0,10.0,9.0,8,1.11 +54399,97.0,10.0,9.0,10.0,10.0,10.0,10.0,27,3.16 +67251,88.0,9.0,8.0,10.0,10.0,9.0,8.0,5,0.67 +27349,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.24 +64468,93.0,9.0,9.0,10.0,10.0,10.0,10.0,12,1.4 +12926,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.72 +61654,,,,,,,,0, +54152,95.0,10.0,9.0,9.0,10.0,9.0,10.0,4,0.56 +24979,,,,,,,,0, +14200,,,,,,,,0, +39274,100.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.57 +13811,96.0,10.0,10.0,10.0,10.0,10.0,9.0,11,1.36 +34613,97.0,10.0,10.0,10.0,10.0,10.0,9.0,19,2.95 +60418,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.82 +789,100.0,9.0,9.0,9.0,10.0,9.0,10.0,3,0.35 +62739,94.0,10.0,10.0,10.0,10.0,9.0,9.0,15,1.91 +52353,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,1.7 +66660,87.0,9.0,9.0,9.0,8.0,10.0,9.0,9,1.08 +61592,80.0,8.0,8.0,6.0,8.0,10.0,10.0,1,0.19 +5285,,,,,,,,0, +54326,96.0,10.0,10.0,9.0,10.0,10.0,9.0,5,0.69 +21437,,,,,,,,0, +4251,93.0,9.0,9.0,10.0,10.0,9.0,9.0,27,3.38 +33087,93.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.07 +8659,100.0,10.0,10.0,8.0,10.0,10.0,8.0,1,0.12 +20413,94.0,10.0,9.0,9.0,10.0,9.0,9.0,10,1.29 +3894,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.74 +54929,97.0,10.0,10.0,10.0,10.0,10.0,9.0,12,1.51 +2686,,,,,,,,0, +45704,78.0,8.0,8.0,9.0,7.0,10.0,7.0,17,2.06 +20317,90.0,10.0,10.0,9.0,9.0,9.0,9.0,16,1.93 +70079,,,,,,,,0, +39860,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.21 +75092,,,,,,,,0, +58946,96.0,10.0,10.0,10.0,10.0,9.0,9.0,9,1.34 +28346,93.0,10.0,9.0,9.0,10.0,9.0,9.0,3,0.34 +15031,,,,,,,,0, +15612,,,,,,,,0, +4927,99.0,10.0,10.0,10.0,10.0,9.0,10.0,19,2.24 +69627,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.14 +36907,,,,,,,,0, +56706,,,,,,,,0, +21125,97.0,10.0,10.0,10.0,10.0,10.0,9.0,25,2.92 +53758,,,,,,,,0, +7137,,,,,,,,1, +16174,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.8 +20054,96.0,10.0,9.0,10.0,10.0,9.0,9.0,9,1.09 +36222,99.0,10.0,10.0,10.0,10.0,10.0,10.0,53,7.07 +19764,99.0,10.0,10.0,10.0,10.0,10.0,10.0,19,2.31 +34313,,,,,,,,0, +52086,94.0,10.0,9.0,10.0,10.0,9.0,9.0,19,2.26 +69876,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.26 +59172,100.0,10.0,10.0,10.0,10.0,9.0,10.0,14,1.68 +24209,100.0,10.0,10.0,10.0,10.0,10.0,9.0,13,1.6 +32088,91.0,10.0,9.0,9.0,9.0,9.0,10.0,9,1.24 +49818,,,,,,,,1,0.15 +31915,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.38 +49414,,,,,,,,0, +48003,,,,,,,,0, +5213,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.43 +6791,87.0,9.0,8.0,9.0,9.0,8.0,9.0,3,0.51 +15721,100.0,8.0,10.0,10.0,8.0,8.0,8.0,1,0.22 +40484,87.0,9.0,8.0,10.0,9.0,9.0,8.0,9,1.26 +46010,95.0,10.0,10.0,10.0,9.0,10.0,9.0,4,0.7 +44179,,,,,,,,0, +71173,92.0,10.0,10.0,9.0,9.0,8.0,9.0,5,0.62 +6788,,,,,,,,0, +73889,96.0,10.0,9.0,9.0,10.0,9.0,9.0,5,0.62 +72153,98.0,10.0,10.0,10.0,10.0,9.0,10.0,23,2.7 +2502,,,,,,,,0, +21503,96.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.81 +21860,100.0,10.0,10.0,10.0,10.0,10.0,10.0,22,2.6 +74283,96.0,10.0,10.0,10.0,10.0,10.0,10.0,28,6.61 +57735,76.0,8.0,7.0,8.0,8.0,8.0,8.0,5,0.72 +67368,87.0,8.0,9.0,8.0,9.0,10.0,10.0,3,0.4 +57305,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.81 +43509,96.0,10.0,9.0,10.0,10.0,9.0,9.0,14,2.15 +48401,,,,,,,,0, +31905,80.0,9.0,9.0,6.0,6.0,9.0,9.0,2,0.23 +27722,,,,,,,,0, +21561,99.0,10.0,10.0,10.0,10.0,9.0,10.0,23,3.0 +58194,98.0,10.0,10.0,10.0,10.0,10.0,10.0,59,7.11 +5339,83.0,9.0,8.0,8.0,9.0,10.0,9.0,21,2.58 +14167,94.0,10.0,10.0,10.0,10.0,10.0,10.0,11,1.35 +9736,,,,,,,,1,0.12 +20238,90.0,9.0,9.0,10.0,9.0,9.0,9.0,2,0.25 +25,93.0,10.0,10.0,10.0,10.0,10.0,9.0,21,2.6 +6494,,,,,,,,0, +64989,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.25 +10999,97.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.88 +8927,100.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.7 +49587,80.0,7.0,7.0,10.0,10.0,10.0,8.0,3,0.35 +4834,100.0,10.0,8.0,10.0,10.0,6.0,8.0,1,0.15 +2108,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.25 +29457,,,,,,,,1,0.11 +46513,96.0,9.0,9.0,10.0,9.0,9.0,9.0,15,1.8 +19944,80.0,8.0,9.0,9.0,9.0,9.0,9.0,2,0.34 +61507,73.0,8.0,8.0,8.0,9.0,9.0,8.0,21,2.54 +27727,96.0,10.0,10.0,10.0,9.0,10.0,9.0,20,3.66 +61763,,,,,,,,0, +68818,83.0,9.0,9.0,9.0,10.0,8.0,8.0,25,3.06 +38709,93.0,9.0,8.0,10.0,10.0,10.0,10.0,3,0.44 +39599,95.0,10.0,9.0,10.0,10.0,10.0,9.0,24,3.53 +41608,78.0,8.0,8.0,9.0,8.0,10.0,8.0,33,4.09 +43420,69.0,8.0,7.0,9.0,9.0,8.0,7.0,20,2.59 +14340,80.0,8.0,8.0,8.0,8.0,10.0,8.0,1,0.17 +11543,,,,,,,,0, +46578,92.0,9.0,7.0,10.0,10.0,9.0,9.0,5,0.72 +1807,80.0,8.0,8.0,8.0,8.0,10.0,8.0,5,0.64 +69524,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.75 +44402,90.0,10.0,10.0,9.0,9.0,9.0,9.0,25,3.36 +54956,,,,,,,,0, +42068,20.0,2.0,2.0,2.0,2.0,6.0,2.0,1,0.12 +30067,98.0,10.0,9.0,10.0,10.0,10.0,10.0,16,1.88 +18784,97.0,10.0,9.0,9.0,10.0,10.0,10.0,12,1.51 +49826,,,,,,,,0, +22184,94.0,9.0,9.0,9.0,10.0,10.0,9.0,18,2.32 +39326,95.0,9.0,10.0,10.0,9.0,10.0,10.0,13,1.56 +51589,84.0,9.0,8.0,9.0,8.0,9.0,9.0,9,1.24 +31713,89.0,10.0,9.0,9.0,9.0,9.0,9.0,9,1.14 +34330,,,,,,,,0, +49015,,,,,,,,0, +19412,,,,,,,,0, +59095,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.34 +73986,86.0,9.0,8.0,10.0,9.0,10.0,9.0,53,6.74 +1834,90.0,10.0,8.0,10.0,10.0,10.0,10.0,2,2.0 +2376,88.0,10.0,10.0,10.0,10.0,10.0,9.0,8,1.11 +37487,,,,,,,,0, +21798,,,,,,,,0, +69066,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.56 +32191,90.0,9.0,9.0,10.0,9.0,9.0,9.0,8,0.98 +55664,93.0,10.0,10.0,10.0,9.0,9.0,9.0,18,2.2 +63480,77.0,8.0,8.0,10.0,10.0,9.0,8.0,19,2.34 +76578,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.15 +54095,100.0,10.0,10.0,9.0,10.0,10.0,10.0,4,0.53 +42423,90.0,9.0,8.0,8.0,9.0,10.0,9.0,7,0.86 +62428,,,,,,,,0, +10918,96.0,9.0,10.0,10.0,10.0,10.0,10.0,14,1.93 +25376,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.25 +4988,99.0,10.0,10.0,10.0,10.0,10.0,10.0,19,2.22 +66312,90.0,10.0,9.0,9.0,9.0,10.0,9.0,46,5.5 +71380,99.0,10.0,10.0,10.0,10.0,10.0,10.0,23,2.85 +6940,,,,,,,,0, +29464,99.0,10.0,10.0,10.0,10.0,9.0,10.0,18,2.28 +26518,100.0,9.0,9.0,10.0,10.0,9.0,9.0,7,0.84 +27999,85.0,9.0,8.0,9.0,10.0,9.0,8.0,13,1.65 +17696,93.0,9.0,10.0,10.0,10.0,9.0,9.0,9,1.32 +14920,80.0,9.0,8.0,10.0,10.0,10.0,9.0,3,0.36 +67489,97.0,10.0,9.0,10.0,10.0,10.0,10.0,14,1.71 +52807,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.19 +8080,100.0,10.0,9.0,10.0,10.0,10.0,10.0,8,0.96 +35789,89.0,10.0,9.0,10.0,9.0,9.0,9.0,32,3.71 +66861,92.0,9.0,9.0,10.0,9.0,9.0,9.0,33,3.82 +34060,,,,,,,,2, +53747,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,1.06 +31742,20.0,2.0,2.0,2.0,2.0,2.0,2.0,1,0.12 +75847,84.0,9.0,8.0,9.0,9.0,10.0,9.0,9,1.42 +36796,95.0,10.0,10.0,9.0,10.0,9.0,9.0,24,3.3 +57366,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.41 +61367,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.39 +49953,,,,,,,,0, +23595,89.0,9.0,9.0,9.0,10.0,10.0,9.0,7,0.85 +32588,87.0,9.0,10.0,9.0,10.0,9.0,9.0,3,0.47 +17180,90.0,9.0,9.0,10.0,10.0,10.0,9.0,14,1.68 +22389,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.26 +29647,98.0,10.0,9.0,10.0,10.0,10.0,10.0,13,1.73 +34494,,,,,,,,0, +12096,100.0,10.0,9.0,10.0,10.0,10.0,9.0,8,1.12 +66880,78.0,9.0,8.0,9.0,9.0,9.0,9.0,14,1.99 +16086,,,,,,,,0, +41915,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.31 +3298,,,,,,,,0, +16589,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.13 +6531,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.39 +25366,78.0,9.0,9.0,9.0,9.0,9.0,9.0,8,1.0 +54448,97.0,9.0,10.0,10.0,10.0,10.0,10.0,7,0.95 +41008,91.0,10.0,9.0,10.0,10.0,10.0,9.0,32,3.93 +55874,96.0,10.0,10.0,10.0,9.0,9.0,10.0,16,1.9 +27094,,,,,,,,0, +43108,90.0,10.0,9.0,7.0,7.0,9.0,9.0,2,0.45 +71012,89.0,9.0,9.0,10.0,9.0,9.0,9.0,14,1.85 +20714,100.0,10.0,8.0,8.0,10.0,10.0,10.0,1,0.17 +74946,98.0,10.0,9.0,10.0,10.0,10.0,10.0,38,4.56 +13788,,,,,,,,0, +52331,,,,,,,,0, +39892,,,,,,,,0, +36434,,,,,,,,0, +15650,100.0,10.0,10.0,6.0,10.0,10.0,10.0,1,0.2 +67919,,,,,,,,1,0.11 +70418,100.0,10.0,9.0,10.0,10.0,10.0,10.0,7,0.84 +66702,78.0,8.0,8.0,8.0,9.0,8.0,8.0,18,2.25 +27419,,,,,,,,0, +21078,,,,,,,,1,0.17 +39004,90.0,9.0,10.0,10.0,10.0,10.0,9.0,13,1.51 +73907,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.73 +50868,82.0,10.0,8.0,10.0,10.0,9.0,8.0,9,1.06 +63867,,,,,,,,0, +19827,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.45 +16428,,,,,,,,0, +21223,95.0,9.0,10.0,10.0,10.0,10.0,9.0,13,1.52 +19200,92.0,10.0,10.0,10.0,10.0,10.0,9.0,10,1.6 +40601,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.53 +33262,94.0,10.0,10.0,10.0,10.0,10.0,9.0,17,2.2 +21479,100.0,9.0,10.0,10.0,10.0,10.0,10.0,9,1.18 +24753,99.0,10.0,10.0,10.0,10.0,10.0,10.0,41,4.94 +27492,89.0,9.0,9.0,9.0,9.0,9.0,9.0,11,1.49 +11975,,,,,,,,0, +33609,,,,,,,,0, +74740,100.0,10.0,9.0,10.0,10.0,10.0,10.0,7,0.92 +55189,97.0,10.0,10.0,10.0,10.0,9.0,10.0,13,1.76 +20314,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,3.0 +31979,93.0,10.0,9.0,10.0,10.0,9.0,10.0,4,0.48 +46561,,,,,,,,0, +73748,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.15 +71403,80.0,10.0,9.0,10.0,10.0,9.0,9.0,2,0.5 +54166,75.0,10.0,6.0,9.0,8.0,8.0,9.0,5,0.58 +26186,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.52 +74989,98.0,10.0,9.0,10.0,10.0,10.0,10.0,45,5.23 +49698,99.0,10.0,10.0,10.0,10.0,10.0,10.0,18,2.26 +50370,,,,,,,,1,0.15 +10314,,,,,,,,0, +59688,75.0,9.0,9.0,10.0,10.0,10.0,9.0,4,0.86 +76630,,,,,,,,0, +19752,,,,,,,,0, +34698,,,,,,,,0, +12963,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.8 +25880,,,,,,,,0, +74567,80.0,8.0,7.0,9.0,8.0,9.0,8.0,2,0.32 +40092,,,,,,,,0, +34465,90.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.59 +14470,98.0,10.0,10.0,10.0,10.0,9.0,10.0,9,1.62 +21369,,,,,,,,0, +71766,,,,,,,,0, +51758,,,,,,,,0, +28000,,,,,,,,0, +24990,,,,,,,,0, +40880,93.0,9.0,9.0,10.0,10.0,10.0,9.0,7,0.87 +40694,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.36 +34409,89.0,9.0,9.0,10.0,10.0,10.0,9.0,34,4.02 +10019,88.0,9.0,9.0,9.0,9.0,9.0,9.0,6,0.74 +28709,,,,,,,,0, +51316,,,,,,,,0, +38169,100.0,9.0,9.0,10.0,10.0,10.0,10.0,3,0.45 +46152,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.24 +47066,96.0,10.0,9.0,10.0,10.0,10.0,9.0,17,2.3 +40388,93.0,10.0,10.0,9.0,10.0,9.0,9.0,24,3.13 +60078,80.0,7.0,8.0,10.0,10.0,9.0,7.0,2,0.23 +68859,87.0,9.0,9.0,10.0,9.0,9.0,8.0,6,0.92 +30116,,,,,,,,0, +35731,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.18 +39424,92.0,9.0,9.0,9.0,9.0,9.0,9.0,10,1.91 +2605,86.0,9.0,9.0,9.0,9.0,10.0,9.0,21,2.66 +20602,,,,,,,,0, +1997,60.0,6.0,6.0,8.0,8.0,9.0,7.0,11,1.36 +60315,87.0,9.0,8.0,8.0,10.0,10.0,9.0,3,0.62 +51964,71.0,8.0,8.0,9.0,10.0,7.0,9.0,7,0.86 +50446,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.68 +16182,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.39 +51382,91.0,9.0,9.0,9.0,9.0,10.0,9.0,7,0.84 +3245,95.0,9.0,10.0,10.0,10.0,10.0,10.0,20,3.02 +21848,91.0,9.0,9.0,10.0,10.0,10.0,8.0,7,0.85 +56889,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.27 +34487,68.0,7.0,8.0,8.0,9.0,8.0,8.0,17,2.3 +30963,100.0,10.0,9.0,10.0,10.0,9.0,10.0,2,0.72 +43642,,,,,,,,3,0.38 +30882,100.0,10.0,6.0,10.0,10.0,10.0,8.0,1,0.2 +15510,65.0,4.0,10.0,9.0,7.0,10.0,7.0,4,0.71 +39886,95.0,10.0,10.0,10.0,10.0,9.0,9.0,4,0.56 +21139,87.0,9.0,10.0,9.0,10.0,9.0,9.0,4,0.59 +17882,,,,,,,,0, +53858,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.39 +66818,93.0,10.0,9.0,10.0,10.0,9.0,10.0,3,0.59 +66418,80.0,9.0,9.0,10.0,10.0,9.0,9.0,16,1.95 +20760,60.0,8.0,4.0,10.0,10.0,10.0,6.0,1,0.13 +38222,97.0,10.0,10.0,10.0,10.0,10.0,10.0,43,5.02 +17469,89.0,9.0,9.0,10.0,10.0,10.0,9.0,11,1.63 +1903,98.0,10.0,10.0,10.0,10.0,10.0,10.0,11,1.4 +76778,98.0,9.0,10.0,9.0,9.0,10.0,10.0,10,1.19 +5823,88.0,10.0,10.0,10.0,10.0,10.0,8.0,5,0.6 +36905,,,,,,,,0, +29271,99.0,10.0,10.0,10.0,10.0,10.0,10.0,20,2.61 +16448,97.0,9.0,10.0,9.0,10.0,9.0,9.0,7,0.84 +48517,100.0,10.0,9.0,10.0,10.0,9.0,10.0,3,0.38 +41400,94.0,10.0,9.0,10.0,10.0,9.0,10.0,44,5.39 +68800,97.0,9.0,10.0,10.0,10.0,9.0,10.0,24,2.88 +27358,98.0,10.0,10.0,10.0,10.0,10.0,10.0,26,3.21 +66106,92.0,9.0,9.0,9.0,9.0,8.0,9.0,23,3.01 +29941,91.0,9.0,9.0,10.0,9.0,10.0,9.0,17,2.22 +41163,,,,,,,,0, +13938,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.48 +46944,91.0,10.0,9.0,10.0,10.0,10.0,10.0,7,3.13 +35220,96.0,10.0,10.0,10.0,10.0,9.0,10.0,5,1.14 +55886,92.0,9.0,10.0,10.0,10.0,10.0,9.0,5,0.67 +32465,100.0,10.0,9.0,10.0,10.0,9.0,9.0,3,0.77 +29864,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.88 +67241,96.0,10.0,10.0,10.0,10.0,9.0,10.0,28,3.4 +66785,100.0,10.0,9.0,10.0,9.0,10.0,10.0,6,0.73 +75135,97.0,10.0,10.0,10.0,10.0,10.0,10.0,7,1.62 +25181,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.92 +48935,100.0,10.0,10.0,10.0,10.0,10.0,10.0,19,2.6 +37862,100.0,10.0,10.0,8.0,8.0,8.0,8.0,1,1.0 +53000,94.0,9.0,9.0,10.0,10.0,10.0,10.0,63,9.36 +22799,,,,,,,,1,0.12 +28807,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.2 +572,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.26 +3363,83.0,9.0,9.0,10.0,10.0,7.0,9.0,7,0.85 +57383,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.7 +51162,72.0,8.0,8.0,8.0,9.0,9.0,8.0,20,2.8 +47360,64.0,6.0,8.0,8.0,9.0,10.0,7.0,6,0.79 +33740,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.57 +20049,100.0,9.0,10.0,10.0,10.0,9.0,9.0,2,0.3 +61357,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.15 +48843,100.0,10.0,10.0,9.0,10.0,10.0,8.0,2,2.0 +57046,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,1.0 +840,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.15 +46670,96.0,10.0,9.0,10.0,10.0,10.0,10.0,22,2.83 +66229,89.0,9.0,9.0,9.0,9.0,9.0,9.0,17,3.02 +65132,95.0,10.0,10.0,10.0,10.0,10.0,10.0,16,2.25 +41385,,,,,,,,0, +31390,,,,,,,,0, +71202,,,,,,,,0, +2249,80.0,8.0,8.0,6.0,8.0,8.0,6.0,1,0.3 +28471,92.0,9.0,9.0,10.0,10.0,10.0,9.0,19,2.75 +25024,100.0,10.0,10.0,10.0,10.0,10.0,10.0,47,5.6 +75344,,,,,,,,1,0.17 +73333,88.0,9.0,8.0,9.0,9.0,9.0,8.0,10,1.22 +1078,94.0,10.0,10.0,10.0,10.0,10.0,10.0,21,2.5 +3487,98.0,10.0,10.0,10.0,10.0,9.0,10.0,10,1.28 +3678,,,,,,,,1,0.12 +75370,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,1.57 +42551,95.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.67 +62713,87.0,10.0,8.0,9.0,10.0,9.0,9.0,6,1.16 +73322,88.0,9.0,10.0,9.0,9.0,10.0,9.0,12,1.68 +9726,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.27 +65898,96.0,10.0,10.0,10.0,10.0,10.0,10.0,27,3.82 +44366,96.0,10.0,9.0,10.0,10.0,10.0,10.0,21,2.46 +52041,80.0,10.0,9.0,10.0,10.0,10.0,8.0,2,0.26 +49726,85.0,9.0,9.0,9.0,9.0,9.0,9.0,17,2.15 +65219,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.76 +60156,,,,,,,,0, +19710,90.0,9.0,10.0,10.0,10.0,9.0,9.0,2,0.28 +12178,89.0,9.0,9.0,10.0,10.0,9.0,9.0,30,3.63 +24643,87.0,9.0,7.0,10.0,9.0,9.0,8.0,3,0.36 +69728,87.0,9.0,9.0,10.0,10.0,9.0,9.0,22,2.72 +31885,,,,,,,,0, +5963,,,,,,,,0, +76083,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.14 +41083,,,,,,,,0, +1331,86.0,9.0,8.0,10.0,10.0,10.0,9.0,23,2.77 +13993,,,,,,,,0, +20513,86.0,9.0,8.0,9.0,9.0,9.0,9.0,21,2.57 +73181,,,,,,,,0, +50685,93.0,9.0,9.0,10.0,10.0,9.0,10.0,11,1.4 +49127,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.14 +4590,73.0,7.0,8.0,7.0,7.0,7.0,7.0,3,0.49 +17985,,,,,,,,0, +32399,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.26 +50844,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.42 +43552,67.0,7.0,7.0,7.0,7.0,7.0,7.0,3,0.37 +9760,,,,,,,,0, +65949,,,,,,,,0, +30607,60.0,9.0,10.0,9.0,9.0,9.0,9.0,2,0.32 +13344,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.27 +61735,,,,,,,,0, +64464,,,,,,,,0, +32701,80.0,8.0,8.0,9.0,9.0,9.0,8.0,2,0.24 +44327,67.0,9.0,9.0,7.0,7.0,9.0,8.0,3,0.5 +48458,,,,,,,,0, +17678,85.0,9.0,8.0,10.0,9.0,8.0,8.0,4,0.94 +27767,96.0,10.0,10.0,10.0,10.0,9.0,9.0,18,2.51 +28744,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.13 +64680,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.52 +42807,100.0,10.0,8.0,10.0,10.0,8.0,10.0,2,0.29 +67232,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.98 +27620,83.0,9.0,9.0,9.0,9.0,8.0,8.0,24,3.09 +17266,89.0,10.0,9.0,9.0,10.0,10.0,9.0,15,1.86 +29324,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.47 +73147,100.0,10.0,9.0,10.0,10.0,10.0,9.0,3,0.36 +29468,,,,,,,,0, +12575,100.0,10.0,10.0,10.0,10.0,10.0,10.0,16,2.09 +54044,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.97 +14368,,,,,,,,0, +62836,90.0,10.0,9.0,10.0,10.0,10.0,9.0,8,1.22 +44428,,,,,,,,0, +71612,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,1.3 +43032,78.0,8.0,7.0,10.0,10.0,9.0,8.0,16,1.9 +37991,83.0,9.0,10.0,9.0,9.0,9.0,9.0,7,0.84 +23420,,,,,,,,1,0.16 +67132,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.27 +19193,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.03 +21040,93.0,9.0,10.0,10.0,9.0,9.0,9.0,6,0.7 +10020,,,,,,,,0, +33409,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.26 +14184,100.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.12 +14687,84.0,8.0,8.0,8.0,8.0,8.0,8.0,5,2.34 +20572,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.14 +21955,,,,,,,,1,0.12 +70412,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.62 +11706,97.0,10.0,10.0,10.0,10.0,9.0,10.0,23,3.09 +10093,86.0,9.0,9.0,9.0,9.0,8.0,9.0,7,1.35 +2899,,,,,,,,0, +47586,100.0,10.0,9.0,10.0,10.0,10.0,10.0,6,0.71 +61155,93.0,10.0,10.0,10.0,9.0,9.0,9.0,3,0.36 +75566,,,,,,,,0, +74205,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.39 +23864,,,,,,,,0, +1366,97.0,10.0,9.0,10.0,10.0,10.0,10.0,8,0.95 +62610,,,,,,,,1,0.28 +66848,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.38 +71307,100.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.52 +293,96.0,10.0,9.0,10.0,10.0,10.0,10.0,10,1.2 +11710,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.73 +50663,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.12 +71937,80.0,9.0,9.0,10.0,10.0,9.0,7.0,3,0.37 +4316,94.0,9.0,10.0,10.0,10.0,8.0,10.0,10,1.29 +35935,99.0,10.0,10.0,10.0,10.0,10.0,10.0,21,2.57 +15718,100.0,10.0,10.0,10.0,8.0,8.0,10.0,1,0.48 +44675,80.0,8.0,7.0,9.0,8.0,10.0,8.0,4,1.08 +64584,93.0,10.0,8.0,10.0,10.0,9.0,9.0,3,0.35 +67637,20.0,2.0,2.0,2.0,2.0,2.0,2.0,1,0.26 +69992,82.0,9.0,8.0,9.0,10.0,9.0,9.0,22,2.97 +62992,60.0,7.0,5.0,9.0,10.0,10.0,5.0,2,0.24 +34562,100.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.75 +49306,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.75 +47447,96.0,9.0,9.0,10.0,10.0,10.0,9.0,28,3.27 +71837,98.0,10.0,10.0,10.0,10.0,10.0,10.0,39,4.98 +66757,,,,,,,,0, +20975,,,,,,,,0, +32308,,,,,,,,0, +52486,,,,,,,,0, +25425,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.72 +69197,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.48 +4096,,,,,,,,1,0.14 +36047,92.0,10.0,8.0,10.0,10.0,10.0,8.0,6,0.86 +37265,89.0,9.0,8.0,10.0,9.0,9.0,9.0,7,0.82 +75837,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.12 +2630,96.0,10.0,8.0,10.0,10.0,10.0,10.0,9,3.51 +69388,98.0,10.0,10.0,10.0,10.0,10.0,10.0,44,5.52 +58085,97.0,10.0,10.0,10.0,10.0,9.0,9.0,18,2.95 +6083,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.24 +43851,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.31 +42459,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.72 +16255,80.0,10.0,6.0,10.0,10.0,10.0,10.0,1,0.12 +67196,95.0,9.0,10.0,10.0,10.0,10.0,9.0,35,4.22 +47385,93.0,9.0,9.0,10.0,10.0,10.0,9.0,14,1.74 +54941,80.0,4.0,6.0,8.0,6.0,4.0,6.0,1,0.12 +23815,98.0,10.0,10.0,10.0,10.0,9.0,10.0,33,4.3 +73598,96.0,10.0,9.0,10.0,10.0,10.0,9.0,32,3.84 +16848,,,,,,,,0, +53278,,,,,,,,0, +42424,90.0,10.0,9.0,10.0,10.0,10.0,9.0,3,0.51 +30003,,,,,,,,0, +31225,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.14 +30703,,,,,,,,0, +13,,,,,,,,0, +62900,96.0,10.0,9.0,10.0,10.0,10.0,9.0,11,1.42 +53830,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.36 +37209,100.0,10.0,9.0,10.0,10.0,9.0,10.0,3,0.54 +39036,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.8 +30296,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.75 +27921,,,,,,,,2,0.24 +64717,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.13 +76887,94.0,10.0,10.0,10.0,10.0,9.0,10.0,18,2.73 +69594,80.0,10.0,7.0,10.0,10.0,9.0,8.0,2,0.71 +76038,85.0,9.0,8.0,10.0,9.0,8.0,9.0,19,2.23 +64227,93.0,9.0,9.0,10.0,10.0,10.0,9.0,20,2.44 +28938,80.0,8.0,8.0,10.0,10.0,10.0,8.0,1,0.23 +64895,92.0,9.0,10.0,10.0,10.0,10.0,9.0,10,1.2 +62578,,,,,,,,0, +5369,97.0,10.0,10.0,10.0,10.0,10.0,10.0,18,2.35 +64240,83.0,9.0,8.0,9.0,9.0,9.0,9.0,24,3.26 +14524,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.52 +75617,100.0,10.0,10.0,10.0,10.0,10.0,10.0,19,2.58 +60287,,,,,,,,0, +67791,89.0,9.0,8.0,9.0,10.0,10.0,9.0,7,0.89 +62446,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.02 +22598,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.37 +17982,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.15 +54607,,,,,,,,0, +2629,100.0,9.0,8.0,10.0,10.0,9.0,7.0,3,0.47 +49963,,,,,,,,0, +43333,99.0,10.0,10.0,10.0,10.0,9.0,9.0,17,2.51 +71565,,,,,,,,0, +62047,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.38 +58881,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.24 +44687,,,,,,,,1,0.14 +16343,98.0,10.0,10.0,10.0,10.0,9.0,9.0,11,1.81 +63272,92.0,10.0,9.0,10.0,10.0,10.0,9.0,29,3.61 +26341,98.0,10.0,10.0,10.0,10.0,9.0,9.0,24,3.2 +27894,88.0,9.0,9.0,8.0,8.0,10.0,9.0,5,0.64 +9433,100.0,10.0,9.0,10.0,10.0,9.0,10.0,4,0.63 +48921,88.0,10.0,9.0,9.0,9.0,10.0,9.0,15,1.9 +21977,100.0,10.0,10.0,10.0,10.0,10.0,10.0,17,2.16 +62098,100.0,9.0,9.0,9.0,9.0,9.0,9.0,3,0.36 +46773,95.0,10.0,9.0,9.0,10.0,10.0,9.0,4,0.78 +67195,95.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.61 +49783,93.0,10.0,9.0,9.0,9.0,10.0,9.0,7,0.95 +41646,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.46 +35373,93.0,10.0,10.0,9.0,9.0,10.0,9.0,11,1.38 +45522,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.17 +19453,,,,,,,,0, +61625,97.0,10.0,10.0,10.0,10.0,10.0,10.0,19,2.32 +16968,90.0,10.0,10.0,9.0,9.0,10.0,9.0,2,0.82 +37706,84.0,9.0,9.0,10.0,10.0,8.0,9.0,5,0.77 +76314,97.0,10.0,10.0,9.0,10.0,9.0,9.0,29,3.63 +37592,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.13 +16245,90.0,9.0,10.0,8.0,9.0,10.0,9.0,4,0.65 +63406,90.0,9.0,9.0,9.0,9.0,10.0,9.0,10,1.79 +18294,94.0,10.0,9.0,10.0,10.0,9.0,10.0,44,5.26 +7608,84.0,8.0,9.0,9.0,9.0,10.0,9.0,10,1.3 +58803,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.77 +73103,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.14 +10268,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,1.7 +71689,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.69 +2291,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.85 +29033,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.98 +63213,100.0,10.0,10.0,10.0,10.0,10.0,10.0,23,2.86 +5419,96.0,10.0,10.0,9.0,10.0,9.0,9.0,5,0.65 +4713,100.0,10.0,4.0,10.0,10.0,10.0,10.0,1,0.37 +3711,76.0,8.0,8.0,8.0,9.0,10.0,8.0,10,1.22 +70241,,,,,,,,0, +47877,,,,,,,,0, +34000,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.31 +48091,,,,,,,,0, +65287,83.0,9.0,8.0,10.0,10.0,9.0,9.0,9,1.29 +48839,100.0,10.0,10.0,10.0,9.0,8.0,10.0,2,0.25 +75670,96.0,10.0,10.0,10.0,10.0,10.0,9.0,26,3.42 +35842,80.0,9.0,10.0,7.0,9.0,10.0,9.0,3,0.4 +32009,91.0,9.0,9.0,10.0,10.0,10.0,9.0,17,2.35 +17942,100.0,10.0,10.0,10.0,10.0,10.0,10.0,21,2.58 +36813,,,,,,,,0, +42365,97.0,10.0,9.0,9.0,10.0,10.0,10.0,14,1.97 +39915,98.0,10.0,9.0,9.0,10.0,10.0,10.0,10,1.33 +26409,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.79 +36812,90.0,8.0,10.0,10.0,10.0,10.0,8.0,3,0.54 +3554,80.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.12 +19452,93.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.64 +25447,90.0,10.0,10.0,9.0,9.0,10.0,9.0,2,2.0 +28963,90.0,10.0,10.0,10.0,8.0,9.0,8.0,2,0.52 +66491,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.3 +51029,98.0,10.0,10.0,10.0,10.0,10.0,9.0,8,1.18 +26788,88.0,9.0,10.0,10.0,10.0,8.0,8.0,5,0.63 +16733,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.28 +25565,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.71 +67658,,,,,,,,0, +75470,,,,,,,,1,0.12 +3,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.47 +31924,,,,,,,,0, +49474,87.0,9.0,7.0,10.0,10.0,9.0,9.0,3,0.36 +68079,,,,,,,,1,1.0 +22680,,,,,,,,0, +32129,80.0,9.0,7.0,8.0,10.0,10.0,8.0,4,0.49 +62028,,,,,,,,0, +40718,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.14 +70598,85.0,9.0,8.0,8.0,9.0,10.0,8.0,12,1.53 +53918,,,,,,,,0, +52426,,,,,,,,0, +31471,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.25 +46391,82.0,9.0,10.0,9.0,8.0,10.0,8.0,14,1.8 +33885,,,,,,,,1,0.37 +60619,91.0,10.0,10.0,9.0,10.0,9.0,10.0,7,0.86 +11495,93.0,9.0,9.0,9.0,10.0,10.0,9.0,12,1.42 +7128,,,,,,,,0, +59867,98.0,10.0,10.0,10.0,10.0,10.0,10.0,71,9.82 +45516,96.0,9.0,9.0,8.0,9.0,10.0,9.0,11,2.2 +31798,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.12 +76056,96.0,9.0,10.0,9.0,10.0,9.0,10.0,19,2.5 +46095,100.0,10.0,10.0,10.0,10.0,10.0,10.0,15,2.06 +23200,89.0,9.0,9.0,10.0,10.0,9.0,9.0,15,2.53 +13347,100.0,10.0,10.0,9.0,9.0,10.0,10.0,6,0.79 +32586,96.0,10.0,10.0,10.0,9.0,9.0,10.0,17,2.12 +12050,89.0,9.0,9.0,10.0,9.0,10.0,8.0,15,1.94 +58558,95.0,9.0,10.0,10.0,10.0,8.0,10.0,8,1.1 +76738,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.13 +48743,93.0,10.0,9.0,10.0,9.0,10.0,9.0,17,2.28 +55266,93.0,10.0,9.0,10.0,10.0,10.0,10.0,9,1.1 +59664,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.13 +8649,96.0,10.0,9.0,9.0,10.0,10.0,9.0,25,3.07 +38388,,10.0,10.0,10.0,10.0,10.0,10.0,1,0.12 +28310,,,,,,,,0, +58332,88.0,9.0,10.0,10.0,10.0,9.0,8.0,5,0.64 +4486,,,,,,,,0, +61906,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.05 +18618,,,,,,,,0, +1150,,,,,,,,0, +51830,,,,,,,,0, +25142,,,,,,,,0, +60202,97.0,10.0,10.0,10.0,10.0,10.0,9.0,21,2.8 +68798,93.0,10.0,10.0,10.0,10.0,10.0,10.0,12,2.47 +52952,,,,,,,,1,0.12 +8914,90.0,10.0,9.0,10.0,10.0,10.0,9.0,2,0.3 +55212,,,,,,,,0, +17112,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.86 +15760,100.0,10.0,9.0,10.0,10.0,10.0,9.0,7,0.89 +2163,97.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.76 +44677,75.0,9.0,7.0,10.0,10.0,8.0,8.0,5,0.6 +34578,,,,,,,,0, +43369,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,1.08 +66284,100.0,10.0,10.0,10.0,10.0,10.0,10.0,19,3.28 +74868,,,,,,,,0, +56381,,,,,,,,0, +10097,,,,,,,,0, +54400,87.0,9.0,8.0,9.0,8.0,10.0,9.0,7,0.86 +28420,96.0,10.0,10.0,10.0,10.0,9.0,9.0,23,3.32 +7296,97.0,10.0,10.0,10.0,10.0,10.0,9.0,20,4.29 +27783,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,1.67 +10280,88.0,10.0,9.0,8.0,9.0,7.0,9.0,12,1.67 +4994,,,,,,,,0, +9349,90.0,10.0,9.0,9.0,9.0,10.0,10.0,4,0.47 +75280,99.0,10.0,10.0,10.0,10.0,10.0,9.0,14,1.83 +6950,75.0,8.0,8.0,9.0,9.0,9.0,8.0,8,1.16 +52455,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.61 +52049,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.26 +1276,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,2.42 +66467,88.0,9.0,9.0,10.0,9.0,10.0,9.0,10,1.19 +62215,,,,,,,,0, +42295,100.0,10.0,9.0,9.0,10.0,9.0,10.0,11,1.48 +65036,96.0,10.0,10.0,10.0,10.0,10.0,10.0,35,5.38 +71639,100.0,10.0,9.0,10.0,9.0,10.0,9.0,2,0.97 +65970,93.0,9.0,10.0,10.0,10.0,9.0,10.0,22,2.74 +53484,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.13 +23811,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.03 +31194,99.0,10.0,10.0,10.0,10.0,9.0,10.0,20,4.8 +32642,87.0,10.0,10.0,9.0,9.0,10.0,10.0,3,0.36 +33786,98.0,10.0,9.0,10.0,10.0,10.0,10.0,9,1.09 +63844,93.0,10.0,9.0,10.0,10.0,10.0,10.0,21,2.53 +26539,,,,,,,,1,0.42 +2832,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.6 +45343,,,,,,,,0, +75101,94.0,10.0,10.0,10.0,10.0,10.0,9.0,18,2.24 +26675,95.0,10.0,9.0,9.0,10.0,9.0,10.0,13,1.68 +51709,,,,,,,,0, +34590,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.05 +56286,,,,,,,,0, +56356,97.0,10.0,10.0,10.0,10.0,10.0,10.0,14,1.72 +1352,70.0,7.0,4.0,10.0,8.0,10.0,8.0,2,0.97 +2568,90.0,9.0,9.0,9.0,9.0,9.0,9.0,15,1.88 +699,94.0,10.0,10.0,10.0,10.0,10.0,9.0,27,3.38 +75998,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.13 +27171,,,,,,,,0, +40606,97.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.76 +5827,,,,,,,,0, +22023,98.0,10.0,10.0,10.0,10.0,9.0,10.0,23,2.95 +10026,91.0,9.0,9.0,6.0,8.0,10.0,9.0,7,0.97 +13067,95.0,9.0,10.0,10.0,10.0,9.0,9.0,18,2.21 +47762,,,,,,,,0, +36871,93.0,10.0,10.0,10.0,10.0,9.0,10.0,14,1.81 +16365,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.61 +70655,90.0,9.0,9.0,10.0,10.0,10.0,10.0,25,3.93 +62164,97.0,9.0,9.0,9.0,10.0,10.0,10.0,14,1.76 +61089,,,,,,,,0, +49176,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.05 +22060,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.19 +55060,88.0,10.0,10.0,10.0,9.0,8.0,9.0,14,1.65 +30050,80.0,9.0,9.0,9.0,9.0,8.0,8.0,3,0.4 +3703,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,2.41 +29154,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.39 +8542,70.0,7.0,6.0,10.0,10.0,10.0,7.0,2,0.72 +17451,95.0,10.0,10.0,10.0,9.0,9.0,10.0,4,0.57 +4433,100.0,8.0,10.0,10.0,10.0,10.0,10.0,2,0.26 +16996,83.0,9.0,8.0,8.0,8.0,10.0,9.0,8,1.05 +21036,90.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.5 +40957,91.0,9.0,9.0,10.0,10.0,9.0,10.0,68,8.19 +42292,90.0,9.0,10.0,10.0,9.0,9.0,8.0,6,0.78 +67277,80.0,9.0,9.0,9.0,9.0,8.0,9.0,51,6.43 +12223,98.0,10.0,9.0,10.0,10.0,10.0,9.0,11,1.43 +52108,100.0,10.0,10.0,10.0,10.0,10.0,9.0,7,0.87 +68212,80.0,7.0,6.0,10.0,9.0,8.0,7.0,5,0.7 +1390,,,,,,,,0, +5639,,,,,,,,0, +14030,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.28 +21052,,,,,,,,0, +76267,,,,,,,,0, +53237,90.0,9.0,9.0,9.0,9.0,9.0,9.0,12,1.51 +55928,90.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.82 +9022,85.0,9.0,10.0,7.0,9.0,8.0,8.0,4,0.7 +57030,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,1.35 +56308,93.0,10.0,9.0,9.0,9.0,10.0,10.0,6,0.73 +15831,98.0,10.0,9.0,10.0,10.0,10.0,9.0,9,1.16 +74446,90.0,10.0,8.0,10.0,10.0,10.0,9.0,2,0.25 +15980,100.0,9.0,8.0,9.0,10.0,10.0,10.0,2,0.82 +64514,96.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.65 +17714,93.0,10.0,9.0,9.0,10.0,10.0,9.0,9,1.16 +10985,94.0,10.0,9.0,10.0,10.0,10.0,9.0,16,2.12 +69927,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.62 +27241,100.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.55 +45588,85.0,8.0,9.0,10.0,9.0,9.0,8.0,20,2.5 +74295,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.19 +52719,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,1.24 +49966,,,,,,,,0, +29635,,,,,,,,0, +19817,,,,,,,,0, +74826,,,,,,,,0, +75699,,,,,,,,0, +307,60.0,7.0,10.0,8.0,8.0,10.0,10.0,2,0.25 +67559,98.0,10.0,10.0,10.0,10.0,10.0,10.0,18,2.23 +43804,92.0,9.0,8.0,10.0,10.0,9.0,9.0,48,5.74 +53318,87.0,9.0,9.0,10.0,9.0,9.0,8.0,20,2.51 +48873,95.0,10.0,9.0,10.0,10.0,10.0,10.0,17,2.09 +33873,100.0,10.0,10.0,10.0,10.0,9.0,9.0,7,0.89 +64959,,,,,,,,0, +29697,96.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.62 +18046,100.0,9.0,7.0,10.0,10.0,10.0,10.0,6,0.73 +4409,100.0,10.0,9.0,10.0,10.0,10.0,10.0,7,1.24 +7688,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,2.47 +18176,98.0,10.0,10.0,10.0,10.0,10.0,10.0,36,4.7 +41718,99.0,10.0,10.0,10.0,10.0,10.0,10.0,20,2.44 +1442,94.0,10.0,8.0,10.0,10.0,9.0,10.0,7,0.91 +48442,86.0,9.0,9.0,10.0,9.0,9.0,9.0,23,2.85 +59096,,,,,,,,0, +55301,85.0,9.0,9.0,9.0,9.0,8.0,8.0,16,1.91 +28531,96.0,10.0,9.0,10.0,10.0,9.0,9.0,16,1.98 +73199,84.0,8.0,8.0,9.0,9.0,9.0,8.0,15,1.81 +69902,,,,,,,,0, +38194,96.0,9.0,9.0,10.0,10.0,10.0,10.0,10,1.4 +68737,,,,,,,,0, +70571,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.39 +15939,,,,,,,,0, +15441,73.0,8.0,9.0,8.0,9.0,8.0,7.0,20,2.65 +15808,,,,,,,,1,0.12 +57695,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.13 +63980,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.24 +26930,,,,,,,,0, +50795,88.0,9.0,9.0,9.0,9.0,10.0,9.0,8,0.98 +37755,97.0,10.0,10.0,10.0,10.0,10.0,10.0,50,6.28 +456,,,,,,,,0, +32630,,,,,,,,0, +57662,90.0,9.0,9.0,9.0,9.0,10.0,9.0,6,0.99 +37810,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.26 +19601,94.0,10.0,9.0,10.0,10.0,10.0,9.0,13,1.78 +68703,98.0,10.0,10.0,10.0,10.0,9.0,10.0,10,1.52 +5,,,,,,,,0, +57890,100.0,10.0,10.0,9.0,10.0,10.0,10.0,2,0.68 +22252,92.0,10.0,10.0,10.0,10.0,10.0,10.0,10,1.71 +76249,91.0,10.0,10.0,9.0,9.0,10.0,9.0,8,1.02 +68246,,,,,,,,0, +13071,97.0,10.0,9.0,10.0,10.0,10.0,9.0,6,1.06 +65334,95.0,10.0,10.0,10.0,10.0,10.0,9.0,29,3.72 +20567,70.0,10.0,6.0,10.0,10.0,10.0,9.0,2,0.24 +66081,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.42 +51034,,,,,,,,0, +70653,90.0,10.0,10.0,9.0,9.0,10.0,10.0,2,1.05 +28050,97.0,10.0,9.0,9.0,9.0,10.0,9.0,7,0.9 +25227,100.0,10.0,10.0,10.0,10.0,9.0,9.0,4,1.64 +15585,90.0,9.0,10.0,10.0,9.0,9.0,9.0,2,0.35 +26544,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.41 +23596,100.0,10.0,10.0,10.0,10.0,10.0,9.0,10,1.69 +61698,80.0,8.0,10.0,8.0,9.0,10.0,8.0,2,0.86 +29863,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.06 +44464,,,,,,,,0, +49770,78.0,8.0,9.0,8.0,8.0,9.0,8.0,17,2.13 +63363,93.0,10.0,9.0,10.0,10.0,9.0,9.0,6,0.74 +5523,,,,,,,,0, +76946,87.0,10.0,10.0,10.0,9.0,9.0,9.0,12,1.86 +35219,96.0,10.0,10.0,9.0,9.0,10.0,10.0,5,0.65 +20325,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.0 +22795,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.88 +39428,96.0,10.0,10.0,10.0,10.0,9.0,9.0,12,1.6 +42085,100.0,10.0,10.0,10.0,10.0,10.0,9.0,11,2.13 +47255,93.0,10.0,10.0,9.0,10.0,10.0,10.0,16,2.19 +17577,73.0,9.0,7.0,9.0,9.0,9.0,8.0,9,1.21 +52955,,,,,,,,0, +54740,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.68 +14542,75.0,10.0,10.0,7.0,9.0,10.0,8.0,7,1.14 +9420,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,1.13 +6218,20.0,2.0,2.0,10.0,2.0,2.0,2.0,1,0.79 +10265,,,,,,,,0, +14010,100.0,10.0,9.0,9.0,10.0,8.0,9.0,2,0.25 +43111,90.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.37 +19087,98.0,10.0,10.0,10.0,10.0,9.0,10.0,10,1.66 +69735,,,,,,,,1,0.12 +18040,98.0,10.0,10.0,10.0,10.0,10.0,9.0,9,1.29 +56412,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,0.98 +59751,93.0,10.0,9.0,9.0,10.0,10.0,10.0,32,4.17 +42334,90.0,10.0,9.0,10.0,10.0,10.0,10.0,4,2.11 +55732,,,,,,,,0, +39691,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.23 +23166,90.0,9.0,9.0,10.0,10.0,10.0,10.0,8,1.01 +22452,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.36 +26259,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.13 +42533,95.0,10.0,9.0,10.0,9.0,10.0,9.0,23,3.43 +1281,98.0,10.0,10.0,10.0,10.0,9.0,10.0,25,3.15 +8098,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.27 +43738,,,,,,,,0, +40615,77.0,8.0,8.0,10.0,10.0,9.0,8.0,14,1.77 +39409,,,,,,,,1,0.33 +52423,,,,,,,,0, +5328,92.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.66 +15789,99.0,10.0,10.0,10.0,10.0,9.0,10.0,26,3.28 +29158,100.0,10.0,10.0,10.0,10.0,10.0,10.0,18,2.28 +17314,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,2.93 +13049,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.21 +11305,,,,,,,,0, +37324,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.29 +29632,96.0,10.0,10.0,10.0,10.0,10.0,9.0,35,4.32 +55627,,,,,,,,0, +61168,60.0,10.0,6.0,10.0,10.0,6.0,10.0,1,0.16 +19144,96.0,10.0,9.0,9.0,10.0,9.0,9.0,18,2.87 +3234,,,,,,,,0, +54197,90.0,9.0,10.0,10.0,10.0,9.0,10.0,7,0.91 +5512,100.0,10.0,8.0,10.0,10.0,8.0,10.0,1,0.14 +66973,,,,,,,,1,0.21 +52672,97.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.92 +7238,87.0,9.0,9.0,9.0,9.0,10.0,9.0,13,1.63 +33195,,,,,,,,0, +4418,,,,,,,,0, +39225,84.0,9.0,9.0,10.0,10.0,8.0,8.0,5,0.67 +15725,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.24 +72346,75.0,8.0,8.0,9.0,7.0,8.0,8.0,8,1.3 +32776,,,,,,,,0, +63165,60.0,10.0,6.0,10.0,10.0,10.0,10.0,1,0.13 +33065,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.14 +63071,,,,,,,,0, +25352,97.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.94 +29839,100.0,9.0,9.0,10.0,10.0,10.0,10.0,7,1.03 +72876,90.0,9.0,9.0,10.0,10.0,9.0,9.0,43,5.29 +37926,96.0,10.0,9.0,9.0,10.0,9.0,10.0,10,1.26 +60586,80.0,9.0,9.0,10.0,9.0,10.0,9.0,10,1.31 +18648,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.66 +16398,97.0,10.0,10.0,10.0,10.0,10.0,10.0,7,1.27 +7628,,,,,,,,0, +35960,83.0,7.0,8.0,9.0,9.0,9.0,8.0,6,0.82 +10605,81.0,9.0,8.0,9.0,9.0,9.0,8.0,19,3.18 +76838,93.0,9.0,9.0,10.0,10.0,10.0,10.0,19,2.69 +20129,95.0,10.0,10.0,9.0,10.0,9.0,10.0,9,1.18 +32789,71.0,8.0,8.0,10.0,9.0,8.0,7.0,9,2.78 +16767,80.0,10.0,9.0,10.0,10.0,10.0,9.0,2,0.31 +32,98.0,10.0,10.0,10.0,10.0,10.0,10.0,19,2.49 +3069,88.0,10.0,9.0,10.0,10.0,9.0,9.0,5,0.66 +31601,,,,,,,,0, +20882,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.18 +45140,78.0,9.0,9.0,9.0,10.0,9.0,8.0,12,1.65 +16023,88.0,9.0,9.0,9.0,9.0,9.0,9.0,10,1.35 +65222,,,,,,,,0, +46976,80.0,8.0,9.0,9.0,9.0,9.0,7.0,3,0.57 +5201,,,,,,,,0, +39767,100.0,8.0,10.0,10.0,10.0,8.0,10.0,2,0.24 +48226,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.3 +7136,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.26 +55051,96.0,10.0,10.0,10.0,10.0,10.0,9.0,18,3.42 +12472,83.0,10.0,8.0,10.0,9.0,10.0,9.0,12,1.61 +25154,100.0,10.0,10.0,10.0,10.0,10.0,10.0,46,6.39 +57520,93.0,10.0,9.0,9.0,9.0,10.0,10.0,3,0.41 +74806,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.38 +20888,93.0,10.0,10.0,10.0,10.0,10.0,9.0,9,1.53 +24157,100.0,10.0,9.0,10.0,10.0,10.0,9.0,2,0.27 +49483,89.0,10.0,9.0,10.0,10.0,10.0,9.0,7,1.06 +23675,89.0,9.0,9.0,10.0,10.0,9.0,9.0,11,1.51 +45368,87.0,9.0,7.0,10.0,10.0,9.0,8.0,6,0.81 +35541,,,,,,,,0, +5043,,,,,,,,0, +657,93.0,10.0,10.0,10.0,10.0,9.0,9.0,6,0.84 +6048,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.03 +62475,90.0,9.0,8.0,9.0,10.0,9.0,9.0,6,0.78 +61941,94.0,10.0,10.0,10.0,10.0,10.0,9.0,50,6.12 +8948,,,,,,,,0, +9037,100.0,8.0,8.0,8.0,8.0,8.0,8.0,1,0.24 +66984,96.0,10.0,10.0,10.0,10.0,10.0,10.0,24,3.14 +44243,97.0,10.0,10.0,10.0,10.0,9.0,9.0,13,1.7 +29919,95.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.57 +61202,,,,,,,,1, +50511,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.5 +9139,95.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.53 +66545,100.0,10.0,9.0,10.0,10.0,9.0,10.0,3,0.45 +46729,,,,,,,,0, +30657,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.28 +36253,97.0,10.0,9.0,10.0,10.0,9.0,9.0,6,0.77 +30577,100.0,10.0,10.0,10.0,8.0,10.0,10.0,1,0.26 +45528,86.0,9.0,9.0,10.0,9.0,9.0,9.0,20,2.46 +57783,93.0,9.0,9.0,10.0,9.0,10.0,10.0,3,0.51 +45017,100.0,10.0,9.0,10.0,10.0,10.0,9.0,3,0.41 +66556,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.36 +67834,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.31 +37822,90.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.27 +75521,92.0,9.0,10.0,10.0,10.0,9.0,9.0,17,2.52 +73318,95.0,9.0,9.0,10.0,10.0,9.0,10.0,12,1.73 +57770,,,,,,,,1,0.5 +30098,94.0,10.0,10.0,9.0,10.0,10.0,10.0,8,1.66 +22667,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.2 +54262,,,,,,,,0, +20585,,,,,,,,2,0.24 +56576,100.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.52 +35047,98.0,10.0,10.0,10.0,10.0,8.0,10.0,21,3.89 +51020,84.0,9.0,9.0,10.0,9.0,9.0,8.0,29,4.37 +64424,90.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.26 +23638,,,,,,,,2,0.36 +8552,82.0,9.0,9.0,10.0,9.0,9.0,8.0,20,3.16 +20490,99.0,10.0,10.0,10.0,10.0,10.0,10.0,20,2.46 +7111,93.0,10.0,9.0,9.0,9.0,10.0,9.0,3,0.52 +36540,94.0,10.0,10.0,10.0,9.0,10.0,10.0,7,0.91 +10908,93.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.08 +65558,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.14 +75711,95.0,9.0,9.0,10.0,10.0,10.0,9.0,4,0.53 +6491,100.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.43 +53165,97.0,10.0,10.0,10.0,9.0,10.0,10.0,14,1.94 +21739,80.0,6.0,8.0,10.0,10.0,6.0,6.0,1,0.19 +8982,93.0,10.0,9.0,10.0,10.0,9.0,9.0,4,0.58 +75810,,,,,,,,1,0.13 +33071,,,,,,,,0, +3393,80.0,7.0,8.0,8.0,8.0,8.0,8.0,7,1.06 +62167,80.0,10.0,10.0,10.0,10.0,8.0,8.0,1,1.0 +72813,,,,,,,,0, +15987,,,,,,,,1,0.13 +1475,100.0,10.0,10.0,9.0,10.0,10.0,10.0,7,0.91 +49560,,,,,,,,1,0.12 +13270,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.13 +32597,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.27 +36363,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,1.83 +27701,97.0,10.0,9.0,10.0,10.0,10.0,10.0,7,0.91 +41426,80.0,8.0,7.0,9.0,9.0,9.0,8.0,9,1.12 +33419,96.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.61 +70161,96.0,10.0,10.0,10.0,10.0,10.0,9.0,45,5.53 +49271,88.0,10.0,8.0,9.0,10.0,10.0,9.0,8,2.14 +72745,,,,,,,,0, +14131,,,,,,,,0, +19209,99.0,10.0,10.0,10.0,10.0,10.0,9.0,33,4.18 +70341,,,,,,,,0, +18514,93.0,10.0,9.0,10.0,10.0,9.0,9.0,32,4.66 +2555,88.0,9.0,10.0,9.0,10.0,9.0,9.0,5,0.65 +30867,,,,,,,,0, +25026,,,,,,,,0, +45673,,,,,,,,0, +57471,90.0,10.0,9.0,10.0,9.0,10.0,9.0,6,0.76 +15632,100.0,10.0,10.0,10.0,10.0,10.0,8.0,3,0.67 +35699,60.0,7.0,6.0,8.0,7.0,9.0,6.0,2,0.65 +37075,93.0,9.0,9.0,10.0,10.0,10.0,10.0,3,0.54 +60921,70.0,7.0,9.0,7.0,7.0,8.0,7.0,2,0.36 +50800,93.0,10.0,10.0,9.0,10.0,10.0,9.0,6,1.0 +53835,,,,,,,,0, +25275,100.0,10.0,8.0,10.0,10.0,9.0,10.0,3,0.76 +63161,87.0,9.0,10.0,9.0,8.0,10.0,9.0,3,0.49 +40096,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.56 +43163,,,,,,,,0, +49720,98.0,10.0,10.0,10.0,10.0,9.0,10.0,19,6.13 +12769,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.75 +41261,98.0,10.0,10.0,10.0,10.0,10.0,9.0,16,2.3 +33880,,,,,,,,0, +16521,96.0,9.0,10.0,10.0,9.0,10.0,9.0,10,1.38 +46603,84.0,9.0,9.0,9.0,10.0,9.0,9.0,28,3.41 +67987,71.0,8.0,7.0,8.0,9.0,8.0,8.0,13,1.69 +30771,96.0,10.0,9.0,10.0,10.0,10.0,10.0,27,3.42 +56894,100.0,8.0,10.0,10.0,10.0,10.0,10.0,3,0.51 +1752,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.08 +63224,76.0,9.0,10.0,9.0,10.0,10.0,10.0,7,0.96 +26551,,,,,,,,0, +65117,80.0,9.0,6.0,9.0,10.0,9.0,9.0,4,0.52 +21472,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.37 +46857,79.0,8.0,9.0,9.0,8.0,9.0,8.0,17,2.09 +14971,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.15 +3013,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +59037,,,,,,,,0, +74271,95.0,10.0,9.0,9.0,9.0,10.0,9.0,13,2.36 +27656,88.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.88 +60067,90.0,9.0,8.0,10.0,10.0,10.0,9.0,2,0.31 +75567,90.0,10.0,8.0,9.0,8.0,9.0,8.0,4,0.59 +21866,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.69 +41785,100.0,10.0,9.0,10.0,10.0,9.0,9.0,4,0.58 +49937,,,,,,,,0, +49519,,,,,,,,0, +52834,82.0,9.0,8.0,9.0,9.0,8.0,8.0,20,2.69 +9204,87.0,9.0,8.0,8.0,8.0,10.0,9.0,8,1.1 +49978,89.0,10.0,9.0,10.0,10.0,10.0,8.0,16,2.22 +25351,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,2.54 +19617,100.0,10.0,10.0,9.0,10.0,9.0,10.0,3,0.41 +53212,93.0,9.0,9.0,9.0,9.0,9.0,9.0,3,0.66 +13974,98.0,10.0,10.0,10.0,10.0,10.0,10.0,53,6.82 +38220,89.0,9.0,9.0,9.0,10.0,10.0,9.0,16,2.65 +22119,90.0,9.0,10.0,9.0,9.0,8.0,9.0,4,0.49 +76147,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,1.21 +76822,96.0,9.0,10.0,9.0,10.0,10.0,10.0,9,1.22 +49226,93.0,9.0,9.0,9.0,9.0,9.0,9.0,3,0.38 +25745,20.0,10.0,10.0,2.0,2.0,6.0,6.0,1,0.24 +11780,,,,,,,,0, +30100,80.0,8.0,9.0,9.0,10.0,9.0,8.0,3,0.37 +17214,99.0,10.0,10.0,10.0,10.0,10.0,10.0,16,1.99 +43158,91.0,10.0,8.0,10.0,10.0,9.0,9.0,18,2.35 +67590,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.28 +19640,95.0,10.0,9.0,10.0,10.0,10.0,10.0,39,4.81 +2070,,,,,,,,0, +40673,95.0,10.0,9.0,10.0,10.0,10.0,9.0,4,1.38 +10895,50.0,6.0,6.0,6.0,5.0,6.0,6.0,2,0.54 +60564,80.0,9.0,9.0,10.0,10.0,8.0,8.0,4,0.52 +49674,40.0,5.0,7.0,5.0,6.0,8.0,5.0,2,0.37 +6273,87.0,9.0,8.0,10.0,10.0,10.0,9.0,48,6.21 +33637,94.0,9.0,9.0,10.0,10.0,10.0,9.0,10,1.27 +33828,97.0,10.0,10.0,10.0,10.0,10.0,10.0,12,1.67 +50034,67.0,7.0,7.0,9.0,9.0,9.0,7.0,15,2.6 +15834,100.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.55 +70877,98.0,10.0,10.0,10.0,10.0,9.0,10.0,13,1.7 +5006,,,,,,,,0, +54527,97.0,10.0,9.0,10.0,10.0,9.0,10.0,8,1.18 +61977,,,,,,,,0, +59334,100.0,9.0,9.0,9.0,10.0,10.0,10.0,3,0.56 +71812,93.0,9.0,10.0,10.0,9.0,9.0,9.0,17,2.13 +23081,70.0,8.0,8.0,9.0,8.0,9.0,7.0,2,0.31 +15067,78.0,7.0,7.0,10.0,9.0,9.0,7.0,11,3.17 +44303,93.0,10.0,9.0,9.0,10.0,10.0,9.0,17,4.32 +38480,97.0,10.0,10.0,9.0,10.0,10.0,10.0,37,4.55 +64476,95.0,10.0,10.0,10.0,10.0,9.0,10.0,8,1.08 +7802,94.0,10.0,10.0,10.0,10.0,9.0,9.0,7,0.92 +2540,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.79 +65767,97.0,10.0,9.0,10.0,10.0,10.0,9.0,6,1.18 +22192,98.0,10.0,10.0,10.0,10.0,10.0,10.0,18,2.33 +25194,88.0,9.0,9.0,9.0,9.0,8.0,9.0,69,8.59 +56999,85.0,9.0,8.0,9.0,10.0,9.0,9.0,4,0.64 +41532,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,1.3 +1619,78.0,8.0,8.0,9.0,10.0,10.0,8.0,17,2.36 +75343,95.0,10.0,9.0,10.0,10.0,9.0,10.0,12,1.53 +33412,100.0,10.0,10.0,10.0,10.0,10.0,10.0,21,2.9 +16341,92.0,10.0,10.0,9.0,10.0,10.0,9.0,13,1.7 +45576,97.0,10.0,10.0,9.0,10.0,10.0,9.0,12,1.48 +46025,88.0,10.0,8.0,10.0,10.0,10.0,9.0,5,0.63 +20846,100.0,10.0,10.0,10.0,10.0,9.0,9.0,2,0.73 +67419,97.0,10.0,10.0,9.0,9.0,10.0,9.0,8,1.04 +42997,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,1.48 +19035,,,,,,,,1,0.2 +58714,,,,,,,,3, +13897,87.0,9.0,8.0,10.0,10.0,9.0,8.0,12,1.66 +61254,92.0,9.0,9.0,9.0,9.0,10.0,9.0,10,1.28 +27934,97.0,10.0,10.0,10.0,10.0,9.0,9.0,7,1.02 +18181,99.0,10.0,10.0,10.0,10.0,10.0,10.0,22,2.78 +36192,,,,,,,,0, +5449,100.0,10.0,9.0,10.0,10.0,9.0,10.0,11,1.69 +11392,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.93 +18788,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.12 +42830,100.0,10.0,10.0,10.0,10.0,10.0,10.0,15,1.95 +68303,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.89 +18919,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.14 +8939,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.14 +40514,,,,,,,,0, +26136,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.14 +60395,94.0,10.0,9.0,10.0,10.0,10.0,10.0,48,5.83 +48736,90.0,9.0,10.0,10.0,10.0,9.0,9.0,19,2.85 +36904,70.0,8.0,9.0,9.0,9.0,6.0,7.0,4,0.5 +42245,88.0,9.0,10.0,9.0,10.0,8.0,9.0,6,0.79 +19649,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,1.04 +72724,89.0,9.0,9.0,9.0,9.0,9.0,9.0,16,2.03 +56760,86.0,9.0,9.0,9.0,9.0,10.0,9.0,19,2.46 +8221,100.0,10.0,10.0,10.0,10.0,8.0,10.0,2,0.27 +9245,100.0,10.0,10.0,10.0,10.0,9.0,10.0,15,1.88 +45501,100.0,9.0,10.0,10.0,10.0,10.0,10.0,3,0.43 +42913,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.19 +36967,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.05 +67582,100.0,10.0,10.0,10.0,10.0,10.0,10.0,16,2.38 +29461,100.0,10.0,4.0,10.0,10.0,10.0,6.0,1,0.2 +73061,84.0,8.0,9.0,8.0,8.0,9.0,8.0,12,1.52 +41210,83.0,9.0,9.0,9.0,10.0,8.0,8.0,6,0.8 +50482,,,,,,,,0, +17748,96.0,10.0,10.0,10.0,10.0,9.0,10.0,19,2.86 +56148,80.0,8.0,8.0,8.0,8.0,10.0,9.0,5,0.89 +8567,97.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.83 +72018,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,1.9 +19319,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,2.1 +9963,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.52 +39587,,,,,,,,0, +22489,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,1.6 +35440,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.04 +13399,90.0,10.0,8.0,10.0,10.0,10.0,9.0,5,0.66 +47172,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.26 +44943,91.0,9.0,9.0,10.0,10.0,10.0,10.0,57,7.63 +20030,83.0,9.0,8.0,9.0,10.0,9.0,9.0,12,2.95 +12478,91.0,9.0,9.0,10.0,10.0,10.0,9.0,22,2.76 +43829,,,,,,,,0, +19435,,,,,,,,0, +69950,94.0,10.0,10.0,10.0,10.0,10.0,10.0,23,2.91 +10663,97.0,10.0,10.0,10.0,10.0,9.0,9.0,12,1.57 +60229,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.01 +13064,94.0,10.0,10.0,10.0,10.0,9.0,10.0,30,3.93 +19850,94.0,10.0,10.0,10.0,10.0,10.0,10.0,16,2.11 +73106,89.0,10.0,10.0,10.0,10.0,9.0,9.0,17,2.25 +39251,,,,,,,,0, +50643,99.0,10.0,10.0,10.0,10.0,10.0,10.0,33,4.3 +58953,97.0,10.0,10.0,10.0,9.0,9.0,10.0,13,2.02 +46796,88.0,9.0,9.0,10.0,9.0,9.0,9.0,16,1.96 +37913,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.45 +56267,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.61 +62010,80.0,7.0,6.0,6.0,8.0,8.0,7.0,2,1.82 +25811,,,,,,,,0, +5610,90.0,9.0,9.0,10.0,9.0,10.0,10.0,2,0.25 +20909,86.0,9.0,9.0,9.0,10.0,8.0,8.0,7,1.08 +2238,96.0,10.0,9.0,10.0,10.0,10.0,9.0,5,0.83 +35533,,,,,,,,0, +41114,,,,,,,,0, +67615,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.53 +17286,,,,,,,,0, +27337,,,,,,,,1,0.13 +61721,100.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.69 +6703,80.0,10.0,8.0,8.0,6.0,10.0,10.0,1,0.14 +17431,,,,,,,,0, +51115,,,,,,,,1,0.28 +44185,,,,,,,,0, +51053,97.0,10.0,10.0,10.0,10.0,10.0,10.0,15,1.97 +7422,40.0,2.0,2.0,6.0,10.0,10.0,2.0,1,0.25 +12553,100.0,10.0,9.0,10.0,9.0,9.0,10.0,3,0.58 +48625,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,1.3 +67542,,,,,,,,0, +24342,92.0,10.0,10.0,10.0,10.0,9.0,9.0,13,1.93 +51389,,,,,,,,0, +76790,100.0,9.0,9.0,10.0,10.0,10.0,9.0,3,0.39 +21576,,,,,,,,0, +44865,98.0,10.0,9.0,10.0,10.0,10.0,10.0,26,3.39 +71774,98.0,10.0,10.0,10.0,10.0,9.0,10.0,12,1.77 +45362,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.76 +57236,89.0,9.0,9.0,10.0,9.0,9.0,9.0,12,1.46 +46911,100.0,10.0,6.0,10.0,10.0,8.0,10.0,1,0.15 +49773,87.0,9.0,8.0,10.0,10.0,9.0,9.0,19,2.73 +57959,,,,,,,,0, +66619,100.0,10.0,9.0,10.0,10.0,9.0,10.0,6,1.19 +10810,91.0,9.0,8.0,10.0,10.0,10.0,9.0,18,2.3 +71904,86.0,9.0,8.0,9.0,9.0,9.0,8.0,14,1.94 +19887,86.0,9.0,8.0,10.0,10.0,9.0,9.0,27,3.52 +20791,93.0,10.0,10.0,9.0,10.0,10.0,10.0,23,2.92 +54048,88.0,9.0,8.0,9.0,9.0,9.0,9.0,21,2.74 +27201,92.0,9.0,8.0,10.0,10.0,10.0,9.0,12,1.57 +20435,83.0,9.0,9.0,9.0,9.0,9.0,8.0,25,3.29 +21157,97.0,9.0,8.0,10.0,10.0,10.0,10.0,8,1.04 +57731,96.0,9.0,10.0,10.0,10.0,9.0,10.0,67,8.34 +72884,97.0,10.0,10.0,9.0,10.0,9.0,9.0,6,0.85 +9460,95.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.52 +10064,93.0,10.0,10.0,10.0,9.0,9.0,9.0,9,1.33 +39650,92.0,9.0,10.0,10.0,10.0,10.0,9.0,53,6.54 +33036,,,,,,,,0, +1041,,,,,,,,0, +62827,,,,,,,,0, +9055,,,,,,,,0, +63323,100.0,9.0,10.0,10.0,10.0,7.0,10.0,2,0.25 +10652,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.27 +71252,,,,,,,,0, +5066,,,,,,,,0, +69832,98.0,10.0,9.0,10.0,10.0,10.0,10.0,10,1.25 +44981,,,,,,,,0, +42395,,,,,,,,0, +6983,,,,,,,,0, +48872,93.0,10.0,10.0,10.0,10.0,10.0,9.0,12,1.57 +75452,92.0,10.0,8.0,10.0,10.0,9.0,9.0,6,0.76 +39253,86.0,9.0,9.0,9.0,10.0,9.0,9.0,52,6.34 +12008,,,,,,,,0, +64201,94.0,10.0,9.0,10.0,10.0,10.0,9.0,57,7.13 +44348,89.0,9.0,9.0,10.0,9.0,10.0,9.0,44,5.39 +54031,96.0,10.0,9.0,10.0,10.0,10.0,9.0,10,1.41 +67818,100.0,10.0,10.0,10.0,10.0,10.0,10.0,16,2.42 +34898,90.0,10.0,9.0,10.0,10.0,10.0,9.0,44,5.5 +25594,97.0,10.0,10.0,9.0,10.0,9.0,10.0,14,1.94 +24545,100.0,10.0,10.0,10.0,10.0,9.0,9.0,4,0.64 +14461,100.0,10.0,10.0,10.0,10.0,9.0,10.0,40,5.02 +24856,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.56 +6283,90.0,9.0,10.0,10.0,10.0,9.0,9.0,8,1.15 +52873,,,,,,,,0, +6381,94.0,10.0,9.0,9.0,10.0,10.0,9.0,10,1.41 +9744,100.0,9.0,9.0,10.0,10.0,10.0,10.0,2,0.4 +47581,,,,,,,,0, +44294,88.0,9.0,9.0,10.0,10.0,9.0,9.0,19,2.82 +49135,80.0,10.0,10.0,8.0,6.0,10.0,10.0,1,0.16 +61878,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,1.67 +16680,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.79 +36545,75.0,8.0,7.0,8.0,8.0,10.0,8.0,4,0.89 +6964,,,,,,,,0, +33825,90.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.38 +4795,90.0,10.0,10.0,8.0,8.0,10.0,9.0,4,0.53 +4612,93.0,9.0,10.0,9.0,9.0,9.0,9.0,3,0.42 +50156,,,,,,,,0, +58539,,,,,,,,0, +70089,,,,,,,,0, +37964,80.0,8.0,8.0,8.0,10.0,10.0,8.0,1,0.65 +45920,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.24 +28435,100.0,10.0,8.0,10.0,8.0,10.0,10.0,1,0.24 +11177,,,,,,,,0, +35812,,,,,,,,0, +46017,80.0,9.0,10.0,9.0,8.0,10.0,9.0,2,0.5 +61,,,,,,,,0, +23127,,,,,,,,0, +22648,,,,,,,,0, +69505,,,,,,,,0, +73207,,,,,,,,0, +18711,,,,,,,,0, +44317,,,,,,,,0, +55914,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.21 +60688,100.0,10.0,10.0,8.0,10.0,10.0,8.0,1,0.25 +23241,91.0,10.0,9.0,10.0,10.0,10.0,9.0,62,7.75 +31838,96.0,10.0,10.0,10.0,10.0,10.0,10.0,30,4.79 +26647,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.25 +15778,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,3.97 +60316,80.0,8.0,8.0,10.0,10.0,10.0,10.0,1,0.14 +37399,,,,,,,,0, +34769,,,,,,,,0, +44392,60.0,6.0,6.0,4.0,8.0,8.0,8.0,1,0.13 +36054,92.0,9.0,8.0,10.0,10.0,9.0,9.0,16,2.07 +54264,89.0,10.0,9.0,10.0,10.0,10.0,9.0,9,1.21 +957,,,,,,,,1, +21932,88.0,9.0,9.0,10.0,10.0,9.0,9.0,19,2.49 +68707,90.0,10.0,9.0,10.0,10.0,10.0,10.0,7,1.45 +12485,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.74 +64663,80.0,8.0,9.0,8.0,6.0,10.0,8.0,2,0.26 +17921,100.0,8.0,10.0,8.0,8.0,10.0,10.0,4,0.5 +59194,100.0,10.0,10.0,10.0,10.0,10.0,10.0,24,3.51 +2010,100.0,10.0,9.0,8.0,9.0,10.0,9.0,3,0.48 +29744,93.0,10.0,9.0,10.0,10.0,10.0,10.0,18,2.67 +42086,89.0,10.0,8.0,10.0,9.0,8.0,9.0,22,2.84 +52125,50.0,5.0,5.0,6.0,6.0,5.0,6.0,2,0.25 +33144,,,,,,,,0, +21290,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,1.27 +18921,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,1.39 +31239,80.0,8.0,9.0,9.0,9.0,9.0,8.0,7,0.89 +4167,100.0,10.0,10.0,10.0,10.0,9.0,10.0,14,3.68 +5989,80.0,10.0,6.0,10.0,10.0,8.0,10.0,1,0.15 +34832,76.0,10.0,8.0,8.0,8.0,10.0,8.0,5,1.81 +68247,,,,,,,,0, +10783,80.0,10.0,8.0,10.0,10.0,9.0,8.0,5,0.84 +45178,70.0,8.0,7.0,10.0,10.0,5.0,5.0,2,0.27 +28676,,,,,,,,0, +8228,,,,,,,,0, +65079,100.0,10.0,10.0,10.0,10.0,6.0,10.0,1,0.29 +51904,,,,,,,,0, +15750,100.0,10.0,10.0,10.0,10.0,10.0,8.0,2,0.26 +6278,,,,,,,,0, +46731,73.0,9.0,7.0,10.0,9.0,9.0,8.0,35,4.41 +19985,99.0,10.0,10.0,10.0,10.0,10.0,10.0,45,5.87 +2145,95.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.75 +64200,88.0,9.0,9.0,10.0,9.0,10.0,9.0,51,6.3 +13458,87.0,9.0,9.0,10.0,9.0,10.0,9.0,47,5.8 +54791,97.0,10.0,10.0,10.0,10.0,10.0,10.0,7,1.35 +46020,90.0,9.0,9.0,10.0,10.0,9.0,9.0,8,1.28 +62115,,,,,,,,0, +37375,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.24 +76556,100.0,10.0,10.0,8.0,10.0,10.0,10.0,1,0.13 +24218,97.0,10.0,10.0,10.0,10.0,9.0,10.0,21,2.58 +11193,86.0,9.0,8.0,9.0,9.0,9.0,8.0,7,1.04 +44948,40.0,6.0,6.0,5.0,9.0,6.0,4.0,2,0.65 +67872,96.0,10.0,9.0,10.0,10.0,10.0,10.0,11,1.63 +48406,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.63 +64823,100.0,10.0,10.0,10.0,10.0,10.0,10.0,28,3.5 +38408,100.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.26 +20457,,,,,,,,1,0.23 +47033,94.0,10.0,10.0,10.0,10.0,9.0,10.0,24,3.14 +25982,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.32 +9897,93.0,9.0,9.0,9.0,10.0,10.0,8.0,3,0.49 +29159,,,,,,,,0, +35195,,,,,,,,1,0.45 +69343,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,1.24 +13261,,,,,,,,0, +42744,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.04 +31902,,,,,,,,0, +58520,,,,,,,,3,0.37 +17081,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.28 +75400,98.0,10.0,10.0,10.0,10.0,9.0,8.0,10,1.36 +59121,80.0,10.0,10.0,10.0,10.0,10.0,8.0,3,0.39 +33221,92.0,10.0,10.0,9.0,10.0,10.0,9.0,5,0.69 +37538,97.0,10.0,10.0,10.0,10.0,9.0,9.0,12,1.55 +42905,,,,,,,,0, +12682,96.0,10.0,10.0,10.0,10.0,10.0,10.0,17,2.35 +27577,93.0,9.0,9.0,10.0,10.0,10.0,9.0,3,0.65 +4878,84.0,9.0,7.0,10.0,9.0,10.0,9.0,6,1.23 +48239,95.0,10.0,9.0,10.0,10.0,10.0,10.0,34,4.29 +8831,,,,,,,,1,0.14 +2846,90.0,9.0,9.0,10.0,10.0,9.0,9.0,16,2.64 +53824,99.0,10.0,10.0,10.0,10.0,9.0,10.0,18,3.8 +17351,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.56 +67731,90.0,10.0,10.0,10.0,10.0,9.0,9.0,2,0.43 +26847,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.26 +7757,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.14 +12334,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.19 +18933,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.2 +64954,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,1.49 +68575,,,,,,,,0, +50914,86.0,9.0,9.0,9.0,9.0,9.0,9.0,23,3.17 +15238,87.0,10.0,9.0,10.0,9.0,10.0,9.0,12,1.49 +19436,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,1.24 +31894,94.0,10.0,10.0,10.0,9.0,9.0,10.0,13,1.82 +41572,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,1.67 +49947,91.0,10.0,9.0,9.0,9.0,10.0,9.0,14,1.86 +75001,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.26 +28621,95.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.65 +39873,,,,,,,,0, +16095,73.0,8.0,8.0,8.0,9.0,9.0,8.0,9,1.13 +63709,73.0,7.0,7.0,7.0,7.0,7.0,7.0,3,0.38 +6295,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.76 +26352,98.0,10.0,10.0,10.0,10.0,9.0,10.0,8,1.08 +20008,,,,,,,,0, +11530,93.0,10.0,10.0,9.0,8.0,9.0,10.0,6,0.97 +45371,97.0,10.0,10.0,10.0,10.0,10.0,9.0,14,5.06 +46201,95.0,9.0,10.0,10.0,10.0,10.0,10.0,35,4.47 +47704,,,,,,,,0, +3269,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,2.0 +50023,93.0,9.0,9.0,10.0,10.0,9.0,10.0,3,0.54 +58382,90.0,10.0,8.0,9.0,10.0,10.0,10.0,2,0.31 +52887,,,,,,,,0, +3483,95.0,10.0,10.0,10.0,10.0,10.0,10.0,20,2.61 +40369,80.0,8.0,7.0,10.0,10.0,9.0,9.0,6,0.79 +59936,96.0,9.0,9.0,10.0,10.0,9.0,10.0,11,1.66 +25255,84.0,8.0,8.0,8.0,9.0,8.0,8.0,6,0.78 +8812,100.0,10.0,10.0,10.0,10.0,10.0,9.0,8,1.36 +68899,90.0,9.0,8.0,10.0,10.0,10.0,8.0,6,0.74 +27662,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.26 +66568,96.0,10.0,10.0,10.0,10.0,10.0,10.0,18,2.42 +31129,95.0,10.0,10.0,10.0,10.0,10.0,10.0,13,1.67 +46700,97.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.94 +14567,96.0,10.0,10.0,10.0,10.0,10.0,10.0,11,1.62 +22595,,,,,,,,0, +72500,100.0,9.0,8.0,10.0,10.0,9.0,9.0,2,0.58 +13600,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,1.32 +34410,,,,,,,,0, +77000,97.0,10.0,10.0,10.0,10.0,10.0,9.0,6,1.27 +11043,98.0,10.0,10.0,10.0,10.0,10.0,10.0,20,3.0 +54814,100.0,10.0,10.0,10.0,10.0,10.0,10.0,47,6.24 +76017,100.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.39 +15163,93.0,10.0,9.0,10.0,10.0,10.0,10.0,16,2.15 +38062,100.0,,,,,,,1,0.19 +51854,,,,,,,,0, +51196,88.0,8.0,10.0,9.0,9.0,10.0,10.0,6,0.87 +11529,,,,,,,,0, +32614,,,,,,,,0, +63205,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.18 +55502,90.0,9.0,10.0,10.0,10.0,10.0,10.0,2,0.28 +35444,98.0,10.0,10.0,10.0,10.0,9.0,10.0,8,1.0 +3692,83.0,9.0,8.0,9.0,10.0,8.0,9.0,21,2.64 +46178,95.0,10.0,10.0,10.0,10.0,9.0,10.0,11,1.47 +29678,,,,,,,,0, +58150,100.0,10.0,10.0,10.0,10.0,10.0,10.0,23,2.97 +20826,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,0.92 +46241,100.0,10.0,8.0,10.0,10.0,8.0,10.0,1,0.19 +23510,100.0,10.0,10.0,10.0,10.0,10.0,9.0,9,2.97 +52802,75.0,8.0,10.0,10.0,9.0,10.0,9.0,4,0.53 +47974,,,,,,,,0, +73162,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,1.43 +49461,95.0,10.0,10.0,10.0,10.0,9.0,9.0,19,3.2 +44188,89.0,10.0,9.0,10.0,10.0,9.0,9.0,14,2.09 +30212,97.0,9.0,9.0,10.0,10.0,9.0,9.0,6,0.8 +11008,,,,,,,,0, +47179,77.0,8.0,7.0,8.0,9.0,10.0,8.0,6,1.08 +75788,100.0,10.0,10.0,10.0,10.0,9.0,10.0,10,1.31 +74022,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.2 +59264,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.77 +22504,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.14 +69468,,,,,,,,0, +27112,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.13 +23329,,,,,,,,0, +26061,,,,,,,,0, +14952,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.26 +20859,97.0,10.0,9.0,10.0,10.0,10.0,10.0,13,1.67 +76991,73.0,8.0,7.0,6.0,9.0,8.0,8.0,3,0.42 +5107,90.0,9.0,9.0,9.0,10.0,10.0,9.0,24,3.0 +34964,87.0,9.0,9.0,9.0,9.0,10.0,8.0,11,1.37 +56025,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.3 +65978,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.14 +54476,70.0,8.0,9.0,7.0,9.0,8.0,7.0,2,0.78 +60751,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.85 +34307,92.0,10.0,9.0,10.0,10.0,10.0,9.0,23,2.96 +47456,95.0,10.0,9.0,10.0,10.0,10.0,10.0,17,2.37 +68113,97.0,10.0,10.0,10.0,10.0,10.0,10.0,15,1.9 +24397,90.0,10.0,9.0,10.0,10.0,10.0,9.0,25,3.09 +65811,96.0,10.0,9.0,10.0,10.0,10.0,10.0,18,6.35 +6745,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.26 +70397,,,,,,,,0, +61381,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +17301,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.65 +67388,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.03 +5708,70.0,8.0,8.0,8.0,8.0,8.0,8.0,5,0.79 +70194,100.0,10.0,10.0,9.0,10.0,10.0,10.0,10,1.76 +32856,,,,,,,,0, +57718,,,,,,,,0, +60730,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,1.19 +61157,100.0,10.0,10.0,8.0,9.0,9.0,9.0,7,0.96 +63747,90.0,10.0,10.0,10.0,9.0,10.0,9.0,5,0.76 +52712,98.0,10.0,10.0,10.0,10.0,9.0,9.0,10,1.32 +65099,80.0,7.0,7.0,9.0,9.0,9.0,8.0,2,0.28 +48478,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,1.78 +76032,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.64 +15388,93.0,9.0,8.0,7.0,10.0,8.0,9.0,3,0.7 +22553,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.42 +74197,100.0,10.0,9.0,10.0,10.0,10.0,10.0,11,1.68 +68996,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.66 +21487,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.03 +68769,96.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.83 +41478,,,,,,,,0, +42325,77.0,8.0,7.0,10.0,10.0,9.0,7.0,25,3.33 +45066,,,,,,,,0, +14808,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,1.94 +18805,89.0,9.0,8.0,10.0,10.0,10.0,9.0,12,1.49 +2787,88.0,9.0,9.0,10.0,9.0,9.0,9.0,10,1.44 +75163,,,,,,,,0, +56175,91.0,9.0,9.0,10.0,9.0,9.0,9.0,7,1.36 +69221,99.0,10.0,10.0,10.0,10.0,9.0,10.0,49,6.62 +4443,,,,,,,,1,0.14 +57685,83.0,9.0,9.0,9.0,9.0,9.0,9.0,7,1.0 +45649,83.0,9.0,9.0,9.0,9.0,10.0,9.0,8,1.07 +34752,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.13 +30486,,,,,,,,0, +39010,100.0,10.0,10.0,10.0,10.0,10.0,10.0,17,2.62 +56761,87.0,9.0,9.0,9.0,9.0,8.0,8.0,22,3.07 +35851,70.0,7.0,8.0,9.0,9.0,9.0,7.0,4,0.59 +58691,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.9 +26636,,,,,,,,0, +59437,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,1.25 +51809,80.0,10.0,8.0,10.0,6.0,10.0,10.0,1,0.24 +40062,,,,,,,,0, +30687,80.0,8.0,8.0,10.0,8.0,6.0,8.0,3,0.52 +34676,95.0,10.0,9.0,10.0,10.0,9.0,10.0,38,5.35 +66486,,,,,,,,0, +58239,,,,,,,,0, +422,97.0,9.0,9.0,10.0,9.0,10.0,10.0,7,0.91 +15225,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.6 +50743,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.22 +30458,90.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.76 +6084,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.26 +51552,98.0,10.0,10.0,10.0,10.0,10.0,10.0,38,5.48 +10489,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.13 +32392,98.0,10.0,9.0,10.0,10.0,10.0,10.0,44,5.89 +54785,100.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.78 +58893,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,1.31 +35123,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.14 +75495,,,,,,,,0, +26641,93.0,10.0,10.0,10.0,10.0,9.0,10.0,29,3.85 +2192,92.0,9.0,9.0,10.0,10.0,9.0,9.0,76,10.0 +14502,86.0,9.0,8.0,9.0,9.0,10.0,9.0,11,1.43 +65253,96.0,9.0,9.0,10.0,10.0,10.0,9.0,22,3.16 +36939,,,,,,,,0, +12663,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.81 +35975,85.0,9.0,9.0,9.0,9.0,10.0,9.0,12,1.57 +56554,91.0,9.0,9.0,8.0,9.0,9.0,9.0,14,2.5 +43769,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.13 +18554,,,,,,,,0, +26337,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.72 +28318,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,1.59 +69017,,,,,,,,0, +41151,91.0,8.0,9.0,10.0,9.0,10.0,9.0,9,1.26 +66489,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.14 +24303,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.13 +59967,80.0,8.0,8.0,10.0,8.0,10.0,9.0,5,0.65 +20374,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.54 +72292,90.0,9.0,10.0,10.0,10.0,9.0,9.0,44,5.74 +31071,100.0,10.0,9.0,9.0,10.0,9.0,9.0,3,0.38 +43414,100.0,8.0,6.0,10.0,10.0,10.0,6.0,1,1.0 +28325,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.23 +18292,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.13 +5841,93.0,9.0,9.0,10.0,10.0,10.0,9.0,13,1.71 +56223,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.63 +3914,87.0,9.0,6.0,8.0,8.0,9.0,8.0,3,0.6 +44596,94.0,10.0,10.0,10.0,10.0,10.0,9.0,12,1.54 +23438,97.0,10.0,9.0,10.0,10.0,10.0,10.0,13,1.93 +31719,,,,,,,,1,0.28 +13725,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.54 +53624,77.0,9.0,8.0,9.0,9.0,10.0,8.0,9,1.16 +7937,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.29 +12626,53.0,7.0,7.0,8.0,9.0,9.0,6.0,3,0.42 +17459,,,,,,,,0, +3500,89.0,9.0,8.0,10.0,10.0,10.0,9.0,15,1.94 +39819,100.0,10.0,10.0,8.0,10.0,10.0,10.0,2,0.9 +33561,88.0,10.0,9.0,10.0,9.0,9.0,9.0,20,2.58 +17690,100.0,10.0,10.0,10.0,10.0,10.0,9.0,11,1.51 +52757,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.15 +57287,88.0,9.0,9.0,10.0,10.0,8.0,9.0,5,1.21 +54020,,,,,,,,0, +76550,88.0,9.0,10.0,9.0,9.0,9.0,8.0,10,1.31 +13829,92.0,9.0,10.0,9.0,9.0,10.0,9.0,12,1.78 +19988,87.0,8.0,8.0,8.0,8.0,9.0,8.0,9,1.56 +984,,,,,,,,0, +7123,90.0,9.0,10.0,10.0,10.0,10.0,10.0,6,0.91 +19418,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.13 +23132,76.0,9.0,9.0,8.0,9.0,10.0,9.0,9,2.27 +58312,80.0,8.0,7.0,8.0,9.0,9.0,8.0,21,2.94 +61640,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.54 +13865,,,,,,,,0, +43730,90.0,10.0,9.0,10.0,10.0,9.0,9.0,12,1.57 +3011,97.0,10.0,10.0,10.0,10.0,10.0,10.0,44,5.64 +61328,,,,,,,,0, +53033,96.0,10.0,10.0,10.0,10.0,10.0,9.0,19,2.73 +50633,,,,,,,,0, +6874,83.0,9.0,9.0,10.0,10.0,10.0,8.0,20,2.8 +77088,91.0,9.0,8.0,10.0,9.0,10.0,9.0,19,2.79 +5843,,,,,,,,0, +5284,95.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.1 +18184,60.0,8.0,6.0,10.0,10.0,8.0,6.0,1,0.14 +77078,89.0,10.0,10.0,9.0,10.0,8.0,9.0,7,1.2 +19698,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.15 +30597,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.86 +16026,83.0,9.0,8.0,9.0,9.0,9.0,9.0,14,3.11 +40018,87.0,9.0,8.0,9.0,9.0,9.0,6.0,3,0.56 +40698,95.0,10.0,10.0,10.0,10.0,9.0,10.0,13,2.14 +5849,97.0,10.0,9.0,10.0,10.0,10.0,9.0,18,2.61 +41911,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,1.18 +75927,99.0,10.0,10.0,10.0,10.0,10.0,10.0,18,3.12 +36326,100.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.38 +48543,80.0,10.0,8.0,10.0,10.0,10.0,9.0,3,0.58 +29661,84.0,8.0,8.0,9.0,10.0,10.0,8.0,6,0.84 +10086,87.0,9.0,9.0,10.0,9.0,9.0,8.0,9,1.18 +76628,87.0,9.0,8.0,9.0,8.0,9.0,8.0,6,0.86 +72495,65.0,7.0,6.0,7.0,8.0,9.0,7.0,17,2.41 +22565,95.0,10.0,10.0,10.0,10.0,9.0,10.0,31,4.01 +55471,81.0,8.0,9.0,9.0,9.0,8.0,8.0,18,2.61 +17253,94.0,9.0,10.0,10.0,10.0,10.0,9.0,11,1.63 +16777,86.0,9.0,9.0,8.0,9.0,10.0,9.0,23,2.97 +74127,95.0,10.0,9.0,10.0,10.0,9.0,10.0,19,2.57 +69469,,,,,,,,0, +36383,87.0,10.0,9.0,10.0,10.0,10.0,8.0,9,1.49 +38870,87.0,9.0,9.0,9.0,9.0,10.0,9.0,27,3.49 +12810,100.0,10.0,10.0,9.0,10.0,10.0,10.0,12,1.59 +47441,90.0,9.0,10.0,9.0,8.0,10.0,9.0,30,3.98 +10504,,,,,,,,0, +2300,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.42 +59206,,,,,,,,0, +9577,91.0,9.0,10.0,9.0,8.0,10.0,9.0,30,3.86 +67938,90.0,8.0,10.0,9.0,9.0,10.0,9.0,2,0.4 +60132,99.0,10.0,10.0,10.0,10.0,10.0,10.0,21,2.93 +29363,94.0,9.0,10.0,10.0,10.0,10.0,9.0,10,1.35 +30561,,,,,,,,0, +12584,90.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.34 +9128,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,1.69 +54595,92.0,9.0,9.0,10.0,9.0,10.0,9.0,5,0.79 +43223,,,,,,,,1, +26563,,,,,,,,1,0.19 +38858,100.0,10.0,10.0,10.0,10.0,10.0,10.0,50,6.49 +37043,84.0,10.0,9.0,9.0,9.0,10.0,9.0,11,1.44 +8705,,,,,,,,0, +16233,,,,,,,,0, +32773,97.0,10.0,10.0,10.0,10.0,10.0,10.0,45,6.65 +36696,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.56 +35778,94.0,9.0,9.0,10.0,10.0,9.0,10.0,32,4.44 +10846,89.0,9.0,9.0,10.0,10.0,9.0,9.0,13,1.68 +40753,47.0,5.0,7.0,5.0,7.0,7.0,5.0,3,0.39 +43389,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.22 +44305,100.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.79 +51518,70.0,8.0,7.0,10.0,9.0,9.0,8.0,5,0.74 +482,,,,,,,,1,0.16 +19835,96.0,10.0,10.0,9.0,9.0,10.0,9.0,22,3.14 +32553,100.0,10.0,10.0,10.0,10.0,10.0,10.0,24,3.19 +28714,,,,,,,,0, +32716,,,,,,,,0, +45206,90.0,10.0,9.0,9.0,10.0,9.0,9.0,5,0.7 +72784,40.0,8.0,2.0,8.0,10.0,8.0,4.0,5,0.66 +2766,90.0,9.0,10.0,9.0,10.0,10.0,9.0,2,0.27 +20878,97.0,9.0,9.0,10.0,10.0,9.0,10.0,6,0.78 +31439,88.0,10.0,9.0,10.0,9.0,10.0,9.0,13,1.7 +60869,93.0,10.0,10.0,10.0,10.0,9.0,9.0,8,1.07 +1739,87.0,10.0,8.0,10.0,10.0,10.0,9.0,3,0.45 +5396,,,,,,,,1,0.13 +47080,80.0,8.0,7.0,8.0,8.0,9.0,8.0,7,0.92 +76146,100.0,9.0,9.0,10.0,10.0,9.0,10.0,3,0.47 +19078,86.0,7.0,8.0,9.0,10.0,10.0,9.0,7,1.04 +40664,94.0,10.0,10.0,10.0,10.0,10.0,9.0,25,3.25 +49233,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.3 +7813,,,,,,,,0, +58548,100.0,10.0,10.0,10.0,10.0,10.0,10.0,16,2.09 +33971,80.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.18 +37389,91.0,9.0,9.0,9.0,9.0,9.0,9.0,19,2.88 +30764,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.21 +55110,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,1.06 +180,84.0,8.0,8.0,8.0,9.0,10.0,8.0,5,0.99 +20849,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.49 +23959,,,,,,,,0, +10080,,,,,,,,0, +64689,,,,,,,,0, +33133,,,,,,,,0, +4123,,,,,,,,0, +66573,94.0,9.0,9.0,9.0,8.0,10.0,10.0,19,2.71 +54230,95.0,10.0,10.0,10.0,10.0,10.0,9.0,21,3.01 +43493,,,,,,,,0, +59211,89.0,10.0,9.0,9.0,10.0,10.0,9.0,7,2.53 +53880,,,,,,,,0, +71656,100.0,10.0,10.0,9.0,10.0,10.0,10.0,16,2.07 +51567,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.67 +48181,87.0,10.0,9.0,10.0,10.0,10.0,9.0,19,2.48 +8703,100.0,9.0,10.0,8.0,10.0,10.0,8.0,3,0.6 +71660,,,,,,,,0, +18337,,,,,,,,0, +21791,70.0,7.0,6.0,10.0,7.0,9.0,6.0,3,0.42 +32144,,,,,,,,0, +50310,78.0,9.0,8.0,8.0,8.0,10.0,8.0,13,1.85 +61133,100.0,10.0,10.0,9.0,10.0,10.0,10.0,6,1.12 +31012,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.8 +40229,,,,,,,,1,0.14 +42213,,,,,,,,1,0.44 +76965,84.0,8.0,8.0,9.0,8.0,10.0,8.0,11,1.45 +2059,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.13 +4791,93.0,10.0,9.0,10.0,10.0,10.0,10.0,9,2.35 +72870,97.0,10.0,10.0,10.0,10.0,10.0,9.0,12,1.72 +6178,90.0,10.0,8.0,10.0,9.0,10.0,8.0,2,0.37 +63744,100.0,10.0,10.0,10.0,10.0,10.0,9.0,7,2.96 +73876,93.0,10.0,10.0,9.0,9.0,10.0,9.0,6,0.9 +66219,92.0,10.0,10.0,9.0,9.0,10.0,9.0,45,6.08 +11027,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,1.34 +68941,90.0,10.0,9.0,10.0,10.0,10.0,9.0,31,3.89 +55297,,,,,,,,0, +59065,98.0,10.0,10.0,10.0,10.0,10.0,10.0,40,5.22 +5105,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.2 +64295,100.0,10.0,10.0,10.0,10.0,10.0,9.0,9,1.22 +31835,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.16 +75043,100.0,10.0,10.0,10.0,10.0,10.0,10.0,17,2.23 +31408,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.13 +2209,,,,,,,,0, +49563,98.0,10.0,10.0,10.0,10.0,10.0,10.0,26,3.39 +43569,81.0,8.0,8.0,8.0,9.0,10.0,8.0,14,1.9 +68856,100.0,10.0,10.0,10.0,10.0,9.0,9.0,4,0.64 +70947,90.0,10.0,8.0,10.0,10.0,9.0,9.0,6,0.76 +40109,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.36 +58679,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,2.32 +40889,89.0,9.0,9.0,9.0,9.0,10.0,9.0,44,5.74 +12707,100.0,10.0,10.0,10.0,10.0,10.0,8.0,2,0.5 +27363,87.0,9.0,7.0,8.0,9.0,8.0,9.0,12,2.16 +61151,,,,,,,,0, +48522,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,1.53 +55450,93.0,10.0,9.0,9.0,9.0,9.0,9.0,3,0.54 +31327,,,,,,,,0, +67254,90.0,10.0,8.0,10.0,10.0,9.0,9.0,2,0.56 +69948,53.0,6.0,4.0,5.0,5.0,9.0,6.0,3,0.86 +7245,97.0,10.0,10.0,10.0,10.0,10.0,10.0,23,3.4 +31110,,,,,,,,1,0.14 +43835,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.42 +68926,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.15 +44003,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.42 +32717,97.0,10.0,9.0,10.0,10.0,10.0,10.0,17,2.37 +68162,94.0,9.0,9.0,9.0,9.0,9.0,9.0,10,1.27 +75607,,,,,,,,0, +63865,100.0,10.0,10.0,10.0,10.0,9.0,10.0,13,1.81 +55982,100.0,10.0,10.0,10.0,10.0,10.0,10.0,30,4.46 +54253,97.0,10.0,9.0,10.0,10.0,10.0,10.0,19,2.45 +5236,80.0,9.0,7.0,9.0,10.0,8.0,9.0,3,2.37 +2351,91.0,9.0,10.0,10.0,10.0,10.0,10.0,7,0.91 +39675,89.0,9.0,9.0,9.0,10.0,10.0,7.0,7,0.96 +38650,95.0,10.0,10.0,10.0,9.0,10.0,9.0,20,2.87 +62904,,,,,,,,0, +65276,91.0,10.0,10.0,10.0,10.0,9.0,10.0,16,2.23 +33960,97.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.91 +45489,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,1.99 +56998,,,,,,,,0, +35020,,,,,,,,0, +12961,95.0,10.0,10.0,10.0,10.0,10.0,10.0,30,4.0 +131,99.0,10.0,10.0,10.0,10.0,9.0,10.0,15,2.02 +4397,98.0,10.0,10.0,10.0,10.0,10.0,9.0,8,1.06 +57952,,,,,,,,0, +17848,97.0,10.0,9.0,10.0,10.0,10.0,10.0,13,1.75 +20039,,,,,,,,0, +49443,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,1.61 +12162,86.0,9.0,9.0,7.0,9.0,10.0,8.0,7,1.3 +50180,88.0,10.0,10.0,10.0,9.0,9.0,9.0,5,0.68 +1745,,,,,,,,0, +7952,100.0,9.0,9.0,10.0,10.0,9.0,9.0,3,0.42 +24333,99.0,10.0,10.0,10.0,10.0,10.0,10.0,28,4.94 +75468,96.0,10.0,10.0,10.0,10.0,10.0,9.0,10,1.35 +61488,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.55 +24604,96.0,10.0,10.0,10.0,9.0,9.0,10.0,26,3.32 +63635,,,,,,,,1,0.15 +43080,96.0,10.0,9.0,10.0,10.0,10.0,10.0,6,0.91 +11538,,,,,,,,0, +59066,40.0,5.0,5.0,5.0,6.0,5.0,3.0,3,0.71 +53833,98.0,9.0,9.0,9.0,9.0,9.0,9.0,13,2.15 +21843,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,1.18 +48951,,,,,,,,0, +40777,100.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.82 +49353,97.0,10.0,10.0,9.0,10.0,10.0,9.0,18,2.71 +42159,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.94 +53963,,,,,,,,0, +66102,95.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.61 +25253,99.0,10.0,10.0,10.0,10.0,9.0,10.0,28,3.89 +49240,94.0,10.0,10.0,9.0,10.0,9.0,9.0,26,3.7 +59116,73.0,10.0,10.0,10.0,7.0,9.0,8.0,3,0.39 +36169,100.0,10.0,9.0,9.0,10.0,10.0,10.0,2,0.26 +5774,92.0,9.0,9.0,10.0,9.0,9.0,9.0,19,3.37 +49370,96.0,10.0,9.0,10.0,10.0,10.0,10.0,10,1.35 +32578,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.16 +30663,100.0,9.0,10.0,10.0,10.0,10.0,10.0,4,0.7 +69476,98.0,10.0,10.0,10.0,10.0,10.0,9.0,10,1.44 +20505,68.0,8.0,7.0,7.0,8.0,9.0,8.0,8,1.06 +10296,97.0,10.0,10.0,10.0,10.0,9.0,9.0,30,3.98 +67864,90.0,9.0,8.0,10.0,10.0,9.0,9.0,2,0.29 +52541,93.0,9.0,10.0,10.0,10.0,10.0,9.0,34,4.4 +3837,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.33 +14009,98.0,10.0,10.0,10.0,10.0,10.0,10.0,18,2.39 +37578,98.0,10.0,10.0,10.0,10.0,8.0,9.0,12,1.88 +23001,,,,,,,,0, +32437,100.0,10.0,10.0,9.0,10.0,10.0,10.0,2,0.32 +5268,97.0,10.0,10.0,10.0,10.0,10.0,9.0,15,2.0 +17108,87.0,9.0,8.0,9.0,10.0,10.0,9.0,13,1.97 +70432,,,,,,,,0, +60842,90.0,9.0,7.0,9.0,9.0,8.0,10.0,2,0.64 +72527,,,,,,,,0, +53803,90.0,8.0,10.0,6.0,8.0,9.0,9.0,2,0.28 +43454,93.0,9.0,8.0,10.0,10.0,10.0,10.0,10,1.54 +18552,88.0,9.0,9.0,9.0,9.0,9.0,9.0,29,4.1 +47860,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.14 +39391,80.0,7.0,8.0,8.0,9.0,8.0,8.0,4,0.6 +5455,87.0,9.0,8.0,9.0,10.0,9.0,9.0,6,1.03 +76735,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.18 +59249,,,,,,,,0, +24671,98.0,10.0,10.0,10.0,10.0,10.0,10.0,51,6.99 +68502,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.75 +18390,91.0,10.0,9.0,10.0,10.0,9.0,9.0,51,6.74 +1333,89.0,9.0,10.0,10.0,10.0,9.0,9.0,17,2.52 +69196,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,1.64 +59013,93.0,9.0,9.0,10.0,10.0,9.0,9.0,35,4.57 +51426,92.0,10.0,10.0,9.0,10.0,10.0,9.0,5,0.8 +46072,,,,,,,,8,1.08 +6887,80.0,8.0,8.0,8.0,8.0,10.0,10.0,1,0.48 +42094,75.0,8.0,9.0,9.0,9.0,10.0,9.0,8,1.11 +51929,87.0,9.0,8.0,10.0,10.0,9.0,9.0,20,3.53 +21486,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.13 +7432,95.0,9.0,10.0,10.0,10.0,10.0,9.0,22,2.87 +39408,90.0,9.0,9.0,9.0,10.0,9.0,10.0,2,0.31 +27658,100.0,10.0,10.0,10.0,10.0,9.0,10.0,22,3.79 +25810,96.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.72 +12712,87.0,8.0,7.0,9.0,9.0,9.0,8.0,6,1.12 +63096,95.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.56 +67348,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,1.3 +30216,94.0,10.0,9.0,9.0,10.0,10.0,9.0,10,1.49 +9935,80.0,9.0,8.0,9.0,10.0,10.0,10.0,2,0.37 +7874,85.0,10.0,9.0,9.0,9.0,9.0,9.0,11,1.43 +38583,77.0,8.0,8.0,9.0,8.0,8.0,8.0,6,0.83 +51036,79.0,8.0,8.0,9.0,10.0,8.0,8.0,24,3.53 +48962,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.84 +2994,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.22 +6730,91.0,9.0,9.0,10.0,10.0,9.0,9.0,19,2.57 +31213,,,,,,,,0, +26892,89.0,10.0,7.0,10.0,10.0,10.0,10.0,9,1.33 +31860,100.0,10.0,10.0,10.0,10.0,10.0,9.0,16,2.5 +8875,,,,,,,,0, +37770,97.0,10.0,10.0,10.0,10.0,9.0,9.0,12,2.59 +68257,90.0,9.0,9.0,9.0,10.0,10.0,9.0,2,2.0 +61799,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.64 +9233,90.0,10.0,9.0,8.0,9.0,10.0,10.0,16,2.15 +47637,90.0,10.0,8.0,10.0,10.0,10.0,10.0,3,0.39 +50302,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.36 +3859,100.0,10.0,6.0,10.0,10.0,10.0,10.0,2,0.74 +59939,,,,,,,,0, +721,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.04 +35318,,,,,,,,0, +69955,97.0,10.0,10.0,10.0,10.0,9.0,10.0,15,2.24 +42838,,,,,,,,0, +38128,93.0,10.0,10.0,10.0,10.0,9.0,9.0,23,3.38 +31657,97.0,10.0,10.0,9.0,10.0,10.0,9.0,8,1.23 +40206,,,,,,,,0, +74705,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,1.7 +27035,,,,,,,,0, +1415,75.0,8.0,9.0,9.0,9.0,9.0,8.0,15,2.08 +27501,,,,,,,,0, +47277,100.0,10.0,10.0,9.0,10.0,10.0,9.0,7,1.02 +75185,89.0,9.0,9.0,9.0,9.0,10.0,9.0,11,1.45 +25197,97.0,9.0,9.0,9.0,10.0,10.0,9.0,6,1.08 +33127,97.0,10.0,10.0,9.0,10.0,10.0,9.0,14,2.71 +52746,87.0,9.0,10.0,10.0,10.0,10.0,10.0,12,2.54 +33372,,,,,,,,0, +53530,,,,,,,,0, +27362,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.47 +2641,99.0,9.0,10.0,10.0,10.0,10.0,10.0,14,1.87 +52933,87.0,9.0,9.0,10.0,10.0,10.0,9.0,9,2.23 +20247,98.0,10.0,10.0,8.0,9.0,10.0,9.0,9,2.06 +17639,96.0,10.0,9.0,10.0,10.0,9.0,10.0,9,1.22 +76814,,,,,,,,0, +8040,87.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.69 +61689,93.0,10.0,9.0,10.0,10.0,10.0,9.0,6,0.78 +37839,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.71 +68937,98.0,10.0,10.0,10.0,10.0,10.0,9.0,11,1.8 +50372,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,1.11 +2230,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.21 +75825,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.27 +66269,100.0,10.0,10.0,10.0,10.0,10.0,10.0,19,3.54 +30311,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.14 +65075,100.0,10.0,10.0,10.0,10.0,9.0,10.0,18,2.42 +68393,90.0,9.0,8.0,10.0,9.0,9.0,10.0,6,0.93 +72756,98.0,10.0,10.0,10.0,10.0,10.0,10.0,17,2.29 +60307,87.0,9.0,6.0,10.0,9.0,10.0,9.0,3,0.41 +75309,,,,,,,,0, +15237,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +29758,92.0,9.0,9.0,10.0,9.0,9.0,9.0,29,4.2 +68793,87.0,9.0,9.0,9.0,9.0,9.0,9.0,27,3.79 +65715,,,,,,,,0, +43100,,,,,,,,1,0.13 +35248,100.0,10.0,10.0,9.0,10.0,10.0,10.0,2,0.3 +46462,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,1.35 +8286,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.1 +35470,93.0,9.0,8.0,10.0,9.0,9.0,8.0,6,0.79 +4493,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.2 +7966,96.0,10.0,10.0,10.0,8.0,10.0,10.0,5,0.7 +59606,,,,,,,,0, +71227,,,,,,,,0, +46862,88.0,10.0,9.0,9.0,9.0,10.0,9.0,8,1.07 +29230,97.0,10.0,10.0,10.0,10.0,10.0,10.0,12,1.68 +9441,93.0,10.0,10.0,10.0,9.0,10.0,10.0,3,0.64 +29840,,,,,,,,0, +39234,84.0,10.0,8.0,9.0,10.0,10.0,9.0,5,0.74 +43141,100.0,10.0,10.0,9.0,10.0,9.0,9.0,4,0.67 +76951,100.0,10.0,10.0,10.0,9.0,10.0,8.0,3,0.7 +28347,88.0,10.0,9.0,9.0,9.0,9.0,8.0,8,1.28 +7823,100.0,10.0,9.0,10.0,10.0,8.0,10.0,2,0.34 +63613,83.0,8.0,8.0,7.0,8.0,9.0,7.0,8,1.33 +3974,98.0,10.0,10.0,10.0,10.0,9.0,10.0,21,2.88 +12723,96.0,10.0,10.0,10.0,10.0,10.0,10.0,76,9.91 +50126,96.0,10.0,9.0,10.0,10.0,10.0,10.0,6,0.97 +23594,60.0,2.0,2.0,4.0,10.0,10.0,6.0,1,0.2 +3337,93.0,9.0,9.0,10.0,10.0,9.0,9.0,9,1.27 +57885,92.0,10.0,9.0,10.0,10.0,9.0,9.0,5,0.74 +76582,,,,,,,,0, +76198,100.0,8.0,10.0,8.0,10.0,10.0,8.0,1,0.56 +72358,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.29 +49670,,,,,,,,0, +7377,96.0,9.0,10.0,10.0,10.0,10.0,9.0,5,1.79 +32483,,,,,,,,0, +28314,,,,,,,,0, +22165,93.0,10.0,10.0,9.0,10.0,10.0,10.0,3,0.58 +76637,89.0,9.0,9.0,10.0,10.0,10.0,9.0,15,1.93 +52129,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.27 +26879,95.0,10.0,10.0,10.0,9.0,10.0,10.0,15,2.03 +64608,,,,,,,,0, +18884,69.0,8.0,6.0,8.0,8.0,10.0,8.0,34,4.68 +47653,97.0,9.0,10.0,10.0,10.0,10.0,9.0,12,1.75 +21815,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.97 +60111,95.0,10.0,9.0,10.0,10.0,10.0,9.0,20,3.02 +38026,86.0,9.0,8.0,9.0,9.0,9.0,9.0,7,0.93 +34750,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.46 +61496,96.0,10.0,10.0,8.0,10.0,10.0,10.0,5,2.59 +6203,100.0,10.0,10.0,10.0,10.0,10.0,9.0,7,3.82 +9588,95.0,10.0,9.0,10.0,10.0,10.0,9.0,4,0.57 +71516,75.0,8.0,8.0,9.0,9.0,8.0,8.0,12,1.58 +33220,100.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.41 +65856,73.0,9.0,5.0,10.0,9.0,9.0,7.0,3,0.55 +23456,,,,,,,,0, +43489,80.0,8.0,10.0,8.0,8.0,10.0,8.0,1,0.18 +72144,94.0,10.0,9.0,10.0,10.0,9.0,9.0,32,4.3 +634,100.0,10.0,10.0,8.0,10.0,10.0,10.0,2,0.79 +59132,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.23 +76065,93.0,10.0,7.0,9.0,9.0,10.0,9.0,4,0.53 +41052,97.0,10.0,9.0,9.0,10.0,10.0,10.0,7,1.01 +38938,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.72 +21465,89.0,10.0,9.0,10.0,10.0,10.0,9.0,7,1.3 +47628,90.0,10.0,9.0,10.0,9.0,10.0,9.0,2,0.36 +50911,,,,,,,,0, +68382,95.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.81 +46275,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.15 +26797,95.0,10.0,10.0,10.0,10.0,10.0,9.0,11,1.68 +20648,,,,,,,,0, +28437,,,,,,,,0, +5754,95.0,10.0,10.0,9.0,10.0,10.0,9.0,23,3.17 +19864,100.0,10.0,10.0,10.0,10.0,10.0,10.0,28,4.02 +17760,,,,,,,,1,0.14 +4701,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.26 +41850,99.0,10.0,10.0,10.0,10.0,9.0,10.0,16,2.71 +41638,87.0,9.0,9.0,9.0,9.0,10.0,9.0,3,0.6 +70745,91.0,10.0,9.0,10.0,10.0,9.0,9.0,11,2.84 +74902,90.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.46 +39483,92.0,9.0,10.0,10.0,10.0,10.0,9.0,5,1.46 +57375,98.0,10.0,10.0,10.0,10.0,9.0,10.0,30,3.86 +25369,,,,,,,,2,0.27 +7005,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.26 +59941,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.56 +13466,80.0,8.0,8.0,5.0,7.0,10.0,7.0,4,0.52 +73552,60.0,8.0,10.0,4.0,6.0,10.0,10.0,2,0.82 +10794,99.0,10.0,10.0,10.0,10.0,10.0,10.0,40,6.98 +72821,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,1.27 +72188,97.0,10.0,9.0,10.0,10.0,10.0,9.0,12,1.61 +31712,93.0,9.0,10.0,9.0,10.0,9.0,10.0,12,1.57 +75038,94.0,10.0,9.0,10.0,10.0,10.0,10.0,21,3.62 +9901,90.0,10.0,9.0,10.0,10.0,10.0,10.0,8,1.42 +59277,95.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.84 +55970,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,2.12 +8995,80.0,9.0,7.0,9.0,8.0,10.0,8.0,12,2.02 +66874,80.0,10.0,6.0,8.0,10.0,8.0,8.0,1,0.24 +57219,97.0,10.0,10.0,9.0,10.0,10.0,9.0,19,2.54 +12273,96.0,10.0,10.0,10.0,10.0,9.0,10.0,43,5.61 +36098,88.0,9.0,9.0,10.0,10.0,10.0,9.0,19,2.71 +41273,93.0,10.0,9.0,10.0,9.0,10.0,9.0,26,3.63 +71192,98.0,10.0,10.0,10.0,10.0,10.0,10.0,36,4.76 +59486,100.0,8.0,10.0,10.0,10.0,6.0,8.0,1,0.15 +3474,,,,,,,,0, +75359,85.0,9.0,9.0,9.0,9.0,9.0,9.0,35,4.88 +32027,91.0,9.0,9.0,10.0,9.0,9.0,9.0,28,3.67 +31714,89.0,8.0,9.0,9.0,9.0,10.0,9.0,38,5.3 +27437,91.0,10.0,10.0,10.0,10.0,9.0,9.0,11,1.83 +18654,97.0,10.0,9.0,10.0,10.0,9.0,9.0,8,1.07 +22137,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.61 +53805,98.0,10.0,9.0,10.0,10.0,10.0,10.0,8,1.19 +70260,80.0,9.0,9.0,9.0,10.0,8.0,9.0,2,0.48 +17325,90.0,10.0,8.0,10.0,10.0,7.0,9.0,2,0.28 +11300,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.3 +4583,100.0,10.0,10.0,10.0,10.0,8.0,8.0,2,0.37 +27768,100.0,10.0,10.0,10.0,9.0,10.0,10.0,2,0.42 +36426,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,4.0 +72250,,,,,,,,0, +35213,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.57 +27069,93.0,9.0,10.0,10.0,10.0,9.0,9.0,14,2.06 +65785,,,,,,,,1,0.14 +23482,,,,,,,,0, +43227,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.17 +70600,,,,,,,,0, +29470,,,,,,,,0, +30176,,,,,,,,0, +43264,,,,,,,,0, +45583,83.0,9.0,8.0,9.0,9.0,8.0,9.0,6,0.98 +45241,93.0,10.0,10.0,10.0,10.0,10.0,9.0,12,1.67 +50380,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +45333,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,1.57 +50896,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.14 +20227,96.0,9.0,10.0,10.0,10.0,9.0,10.0,14,2.26 +67974,85.0,9.0,10.0,9.0,10.0,10.0,9.0,9,1.26 +10358,87.0,9.0,9.0,9.0,9.0,9.0,8.0,3,0.62 +34184,93.0,10.0,9.0,10.0,10.0,10.0,9.0,8,1.05 +38053,100.0,10.0,9.0,9.0,10.0,10.0,10.0,4,0.69 +29436,93.0,9.0,10.0,10.0,10.0,10.0,9.0,6,0.8 +74122,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.31 +68444,91.0,9.0,8.0,10.0,10.0,10.0,9.0,8,1.04 +58319,,,,,,,,0, +57831,100.0,10.0,10.0,10.0,10.0,10.0,10.0,15,2.15 +44336,,,,,,,,0, +20959,100.0,9.0,10.0,10.0,10.0,9.0,9.0,3,0.69 +32422,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.2 +74880,90.0,9.0,9.0,10.0,10.0,10.0,9.0,10,1.38 +65430,60.0,5.0,6.0,7.0,7.0,6.0,6.0,3,0.46 +68005,81.0,9.0,9.0,10.0,10.0,8.0,9.0,28,3.72 +3849,97.0,9.0,10.0,9.0,9.0,9.0,9.0,9,1.26 +13837,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,1.75 +27644,90.0,9.0,10.0,9.0,9.0,9.0,8.0,6,0.91 +34742,20.0,2.0,2.0,2.0,2.0,2.0,2.0,1,0.24 +30418,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,1.77 +43015,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.29 +75187,100.0,9.0,10.0,10.0,10.0,8.0,9.0,3,0.59 +23136,94.0,10.0,9.0,10.0,9.0,10.0,9.0,23,3.37 +64810,70.0,9.0,8.0,9.0,10.0,10.0,10.0,2,0.8 +49861,40.0,6.0,6.0,10.0,8.0,10.0,6.0,1,0.17 +76335,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.43 +3644,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.8 +52965,98.0,10.0,10.0,10.0,10.0,10.0,10.0,41,5.52 +56444,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.16 +13001,85.0,10.0,10.0,9.0,8.0,10.0,9.0,7,1.08 +69439,93.0,10.0,9.0,10.0,10.0,10.0,9.0,14,3.13 +69903,100.0,10.0,9.0,10.0,9.0,9.0,9.0,2,0.38 +22712,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.73 +71258,92.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.91 +40918,98.0,10.0,9.0,10.0,10.0,10.0,10.0,10,1.89 +47842,87.0,8.0,9.0,9.0,9.0,10.0,9.0,12,1.72 +31126,,,,,,,,0, +33146,100.0,9.0,9.0,9.0,10.0,9.0,9.0,2,0.34 +23541,97.0,10.0,10.0,10.0,9.0,10.0,10.0,18,2.39 +44652,,,,,,,,1,0.14 +38266,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.63 +23922,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.07 +67286,80.0,8.0,8.0,6.0,4.0,6.0,10.0,1,0.17 +29596,96.0,10.0,10.0,10.0,10.0,10.0,8.0,5,0.69 +73366,,,,,,,,0, +11742,,,,,,,,0, +3090,93.0,10.0,9.0,10.0,10.0,10.0,9.0,3,0.5 +66536,95.0,10.0,10.0,10.0,10.0,10.0,10.0,17,2.37 +44448,50.0,4.0,6.0,5.0,6.0,7.0,5.0,2,0.45 +24185,80.0,10.0,8.0,10.0,10.0,8.0,8.0,2,0.28 +17824,91.0,9.0,9.0,10.0,10.0,10.0,9.0,14,2.09 +40101,96.0,10.0,10.0,10.0,10.0,9.0,10.0,22,2.93 +54050,90.0,10.0,10.0,9.0,9.0,9.0,9.0,4,1.2 +12021,80.0,10.0,6.0,10.0,10.0,10.0,10.0,1,0.29 +13687,92.0,10.0,10.0,10.0,10.0,10.0,9.0,12,1.79 +12306,95.0,10.0,8.0,10.0,10.0,10.0,10.0,12,1.77 +14793,93.0,10.0,9.0,10.0,10.0,10.0,8.0,3,0.44 +1775,100.0,10.0,10.0,10.0,10.0,9.0,10.0,12,1.68 +11882,100.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.83 +65748,,,,,,,,0, +51371,95.0,9.0,9.0,10.0,10.0,10.0,9.0,5,0.65 +60578,86.0,9.0,9.0,9.0,9.0,9.0,9.0,7,1.12 +11217,85.0,9.0,9.0,8.0,10.0,8.0,9.0,12,1.83 +58114,86.0,9.0,9.0,9.0,9.0,9.0,9.0,7,1.02 +2798,,,,,,,,1,0.14 +62973,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.89 +53377,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.43 +19214,,,,,,,,0, +14636,,,,,,,,0, +6466,92.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.66 +32448,96.0,10.0,10.0,9.0,10.0,9.0,10.0,9,1.36 +32688,87.0,9.0,9.0,10.0,9.0,9.0,9.0,17,2.25 +25504,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.96 +64870,,,,,,,,0, +33636,,,,,,,,1,0.77 +76105,,,,,,,,0, +53588,96.0,10.0,9.0,10.0,10.0,9.0,9.0,9,1.46 +32048,91.0,10.0,9.0,9.0,10.0,10.0,9.0,14,2.53 +47883,,,,,,,,0, +7359,77.0,9.0,8.0,9.0,9.0,9.0,9.0,50,6.94 +65550,88.0,9.0,9.0,9.0,10.0,9.0,9.0,15,2.87 +66567,100.0,10.0,9.0,10.0,9.0,9.0,9.0,7,1.42 +25581,80.0,10.0,10.0,6.0,10.0,6.0,6.0,2,0.34 +75419,,,,,,,,1,0.81 +54193,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,2.0 +4500,,,,,,,,0, +11523,93.0,9.0,9.0,10.0,10.0,10.0,10.0,3,0.47 +70303,95.0,10.0,10.0,10.0,10.0,10.0,10.0,44,6.11 +59625,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.21 +56754,80.0,5.0,10.0,7.0,8.0,6.0,8.0,3,0.42 +54019,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.14 +42893,,,,,,,,0, +48271,,,,,,,,0, +5542,97.0,10.0,9.0,10.0,10.0,10.0,9.0,6,1.07 +54428,100.0,10.0,9.0,10.0,10.0,9.0,10.0,3,0.43 +34282,79.0,9.0,8.0,9.0,8.0,10.0,9.0,22,2.99 +59214,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.27 +19571,73.0,7.0,9.0,9.0,7.0,9.0,7.0,3,1.17 +41073,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.3 +17806,,,,,,,,0, +51588,100.0,10.0,10.0,10.0,10.0,10.0,10.0,19,2.61 +69213,90.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.84 +59526,,,,,,,,0, +2400,95.0,10.0,10.0,10.0,10.0,9.0,10.0,8,1.13 +69053,95.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.13 +47119,93.0,9.0,10.0,10.0,10.0,9.0,10.0,3,0.43 +34385,80.0,8.0,7.0,10.0,10.0,7.0,7.0,2,0.97 +45559,80.0,9.0,9.0,10.0,10.0,9.0,8.0,3,0.41 +7884,80.0,8.0,8.0,9.0,9.0,10.0,10.0,2,0.3 +5264,95.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.38 +7392,80.0,10.0,8.0,10.0,10.0,10.0,8.0,2,0.3 +22423,86.0,9.0,10.0,9.0,9.0,10.0,8.0,7,0.96 +16284,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.76 +68939,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.72 +60292,98.0,9.0,10.0,10.0,10.0,10.0,9.0,12,2.06 +762,87.0,9.0,8.0,10.0,10.0,10.0,10.0,9,1.26 +76002,100.0,10.0,10.0,10.0,10.0,6.0,8.0,1,0.2 +60231,89.0,9.0,8.0,10.0,9.0,10.0,9.0,9,1.47 +17001,,,,,,,,0, +73862,80.0,9.0,8.0,7.0,9.0,7.0,7.0,7,1.59 +854,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.59 +73881,95.0,10.0,10.0,10.0,10.0,10.0,10.0,11,1.51 +18094,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.32 +5474,88.0,10.0,9.0,9.0,9.0,10.0,9.0,20,2.9 +45182,95.0,10.0,10.0,10.0,9.0,10.0,10.0,8,1.11 +55178,93.0,9.0,10.0,10.0,10.0,9.0,10.0,19,2.58 +75593,100.0,9.0,10.0,10.0,10.0,10.0,10.0,4,0.71 +61844,100.0,10.0,10.0,10.0,10.0,9.0,9.0,4,0.56 +10694,86.0,9.0,9.0,9.0,9.0,9.0,9.0,18,2.69 +11935,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,1.0 +61457,96.0,10.0,10.0,9.0,9.0,9.0,10.0,42,5.63 +22913,97.0,10.0,10.0,10.0,10.0,9.0,10.0,33,4.42 +66259,81.0,9.0,7.0,9.0,9.0,9.0,8.0,39,5.15 +8985,93.0,10.0,10.0,10.0,10.0,9.0,10.0,11,1.52 +11856,93.0,10.0,9.0,9.0,9.0,9.0,9.0,30,4.05 +41694,94.0,10.0,9.0,9.0,9.0,9.0,9.0,35,4.75 +33581,92.0,9.0,9.0,9.0,9.0,10.0,9.0,18,2.52 +46968,80.0,8.0,8.0,8.0,10.0,8.0,6.0,1,0.19 +14620,90.0,9.0,10.0,10.0,10.0,10.0,9.0,4,0.6 +56981,80.0,9.0,6.0,10.0,10.0,8.0,8.0,3,0.43 +47074,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.21 +12244,99.0,10.0,10.0,10.0,10.0,9.0,10.0,16,2.74 +64231,,,,,,,,0, +59260,89.0,9.0,9.0,10.0,9.0,10.0,9.0,20,2.82 +49394,89.0,9.0,9.0,10.0,10.0,10.0,9.0,18,2.5 +54387,,,,,,,,1,1.0 +30969,91.0,9.0,9.0,9.0,10.0,9.0,9.0,19,2.64 +20603,97.0,10.0,10.0,10.0,10.0,9.0,10.0,15,2.13 +56110,96.0,10.0,10.0,10.0,10.0,9.0,10.0,12,1.65 +31411,100.0,10.0,10.0,10.0,10.0,10.0,10.0,16,2.59 +20511,100.0,10.0,10.0,10.0,10.0,9.0,10.0,9,1.72 +53777,,,,,,,,0, +43995,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.69 +17564,,,,,,,,0, +41959,,,,,,,,0, +58995,96.0,10.0,10.0,10.0,10.0,10.0,10.0,11,2.26 +70635,95.0,9.0,9.0,10.0,10.0,10.0,10.0,17,2.28 +25006,90.0,9.0,9.0,10.0,10.0,10.0,10.0,2,0.32 +65192,,,,,,,,0, +58330,97.0,9.0,10.0,10.0,10.0,9.0,10.0,8,1.1 +64175,,,,,,,,0, +45225,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,1.51 +10632,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.45 +10445,99.0,10.0,10.0,10.0,10.0,10.0,10.0,15,2.51 +36285,91.0,10.0,10.0,10.0,10.0,10.0,9.0,17,2.54 +33857,,,,,,,,0, +52443,,,,,,,,0, +44015,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.94 +62338,89.0,10.0,9.0,10.0,10.0,10.0,9.0,8,1.07 +29892,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.54 +58164,,,,,,,,0, +68061,99.0,10.0,10.0,10.0,10.0,9.0,10.0,17,2.98 +51307,93.0,9.0,9.0,10.0,10.0,9.0,9.0,3,1.96 +28054,,,,,,,,0, +12174,93.0,9.0,9.0,10.0,10.0,10.0,10.0,6,0.87 +75201,90.0,10.0,9.0,9.0,10.0,9.0,10.0,3,0.42 +35002,,,,,,,,1,0.17 +6599,100.0,10.0,10.0,9.0,9.0,10.0,9.0,2,0.39 +56139,,,,,,,,0, +33007,95.0,10.0,10.0,10.0,10.0,9.0,10.0,12,2.2 +31522,,,,,,,,0, +76745,,,,,,,,0, +63043,,,,,,,,0, +60699,,,,,,,,0, +23192,91.0,9.0,8.0,9.0,10.0,8.0,9.0,13,1.81 +33296,94.0,10.0,10.0,10.0,10.0,9.0,9.0,36,4.78 +55072,98.0,10.0,10.0,10.0,10.0,10.0,10.0,11,1.45 +75912,,,,,,,,0, +61827,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.13 +58518,90.0,10.0,9.0,10.0,10.0,10.0,9.0,5,0.66 +29537,80.0,8.0,8.0,9.0,7.0,10.0,8.0,3,0.5 +58087,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,1.67 +64264,94.0,10.0,9.0,10.0,10.0,10.0,9.0,14,2.15 +1529,,,,,,,,0, +35897,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.14 +24425,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.01 +46702,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.22 +15072,,,,,,,,0, +22572,,,,,,,,0, +70752,80.0,10.0,10.0,10.0,8.0,10.0,10.0,3,0.41 +12597,,,,,,,,0, +30133,97.0,10.0,9.0,10.0,10.0,10.0,10.0,25,3.71 +35924,100.0,10.0,10.0,6.0,8.0,8.0,10.0,1,0.53 +50478,95.0,10.0,9.0,10.0,10.0,10.0,9.0,22,5.32 +38608,85.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.54 +71935,,,,,,,,0, +26438,92.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.72 +76312,100.0,10.0,10.0,10.0,10.0,9.0,10.0,8,1.13 +22221,95.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.13 +32572,,,,,,,,0, +24672,96.0,10.0,10.0,10.0,10.0,10.0,10.0,15,2.25 +43826,,,,,,,,0, +51417,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.3 +72326,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.73 +17124,97.0,10.0,9.0,10.0,10.0,10.0,10.0,6,1.09 +8331,93.0,9.0,9.0,10.0,10.0,10.0,10.0,4,0.57 +29333,100.0,10.0,8.0,10.0,10.0,8.0,8.0,1,0.21 +1799,,,,,,,,0, +32835,90.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.75 +46638,100.0,10.0,8.0,10.0,10.0,10.0,10.0,3,0.43 +54144,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.18 +71449,97.0,10.0,9.0,9.0,10.0,9.0,10.0,14,2.01 +53474,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.71 +23088,95.0,10.0,10.0,10.0,10.0,9.0,9.0,8,1.16 +71334,95.0,10.0,10.0,10.0,10.0,9.0,9.0,17,2.62 +42420,60.0,6.0,8.0,6.0,10.0,10.0,4.0,1,0.3 +4283,100.0,10.0,8.0,10.0,10.0,9.0,10.0,2,0.28 +17625,88.0,10.0,10.0,10.0,10.0,9.0,9.0,5,0.74 +73543,100.0,10.0,10.0,10.0,9.0,9.0,9.0,4,0.9 +51883,100.0,10.0,10.0,10.0,10.0,9.0,8.0,3,0.69 +11478,,,,,,,,2,0.26 +46428,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.19 +25042,,,,,,,,0, +55504,100.0,10.0,10.0,10.0,10.0,10.0,9.0,7,0.97 +12384,,,,,,,,0, +69502,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.48 +71272,93.0,9.0,9.0,10.0,10.0,10.0,9.0,9,1.69 +26672,94.0,10.0,9.0,10.0,10.0,9.0,9.0,26,3.61 +40170,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.54 +24308,,,,,,,,0, +76344,,,,,,,,0, +76004,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.14 +32626,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.16 +24038,87.0,9.0,9.0,9.0,10.0,10.0,9.0,3,0.54 +57740,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,1.51 +26393,98.0,10.0,10.0,10.0,10.0,9.0,10.0,24,3.46 +53940,97.0,10.0,9.0,10.0,10.0,9.0,9.0,6,0.87 +21681,87.0,10.0,10.0,9.0,9.0,9.0,10.0,3,0.82 +72701,93.0,9.0,8.0,7.0,7.0,8.0,9.0,3,0.5 +61553,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.13 +32681,,,,,,,,0, +8507,100.0,10.0,10.0,8.0,10.0,10.0,10.0,1,0.16 +23357,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.15 +3515,92.0,10.0,10.0,10.0,10.0,9.0,10.0,5,3.26 +6253,95.0,10.0,10.0,10.0,10.0,9.0,9.0,13,1.73 +68407,100.0,10.0,10.0,10.0,8.0,10.0,10.0,1,0.14 +49534,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.97 +5671,94.0,10.0,9.0,10.0,10.0,9.0,9.0,7,0.98 +54518,,,,,,,,0, +64525,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.39 +46833,91.0,8.0,9.0,9.0,9.0,9.0,9.0,22,3.46 +5903,,,,,,,,0, +72648,88.0,9.0,9.0,9.0,8.0,8.0,8.0,5,0.68 +15105,96.0,10.0,10.0,9.0,9.0,10.0,9.0,10,1.39 +34303,89.0,9.0,9.0,9.0,10.0,9.0,9.0,9,1.22 +64332,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,1.48 +44666,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,3.0 +28736,93.0,10.0,9.0,8.0,9.0,9.0,9.0,6,0.97 +36382,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.59 +69967,,,,,,,,0, +75186,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.48 +34731,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.79 +6540,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.77 +17724,98.0,10.0,10.0,10.0,10.0,9.0,10.0,10,1.55 +46170,,,,,,,,0, +49934,96.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.9 +45122,90.0,10.0,9.0,9.0,9.0,10.0,9.0,11,1.64 +61228,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,1.3 +41825,92.0,10.0,10.0,10.0,10.0,9.0,9.0,78,11.04 +62824,99.0,10.0,10.0,10.0,10.0,9.0,10.0,19,2.63 +43806,98.0,10.0,10.0,10.0,10.0,9.0,9.0,21,2.92 +28968,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.15 +61697,96.0,10.0,10.0,10.0,10.0,10.0,9.0,12,1.71 +61607,95.0,10.0,10.0,10.0,9.0,10.0,10.0,5,0.89 +13580,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.21 +75165,,,,,,,,0, +38124,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,1.71 +74191,,,,,,,,0, +33848,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.92 +64972,89.0,9.0,9.0,9.0,10.0,9.0,9.0,11,1.53 +34694,88.0,9.0,9.0,10.0,10.0,9.0,9.0,20,2.87 +30637,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,1.32 +69782,92.0,9.0,8.0,10.0,10.0,10.0,9.0,21,2.92 +31873,100.0,10.0,10.0,9.0,10.0,10.0,10.0,22,3.61 +35415,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,1.62 +12759,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.23 +35477,80.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.24 +64620,60.0,6.0,6.0,9.0,8.0,6.0,6.0,2,0.54 +51385,87.0,10.0,7.0,9.0,10.0,9.0,9.0,3,0.42 +75308,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.43 +8155,85.0,9.0,9.0,10.0,10.0,10.0,10.0,4,0.63 +52599,96.0,10.0,8.0,10.0,10.0,8.0,10.0,5,0.67 +24018,97.0,10.0,10.0,10.0,10.0,9.0,10.0,12,1.9 +71900,100.0,10.0,10.0,9.0,10.0,10.0,10.0,2,0.27 +8503,,,,,,,,1,0.18 +8690,100.0,10.0,10.0,10.0,10.0,10.0,10.0,16,3.36 +33767,97.0,10.0,9.0,10.0,10.0,10.0,10.0,14,1.88 +41456,,,,,,,,0, +57679,100.0,10.0,9.0,10.0,10.0,8.0,10.0,2,0.28 +71909,,,,,,,,0, +47186,,,,,,,,0, +72101,92.0,9.0,10.0,9.0,9.0,10.0,9.0,13,1.72 +62816,,,,,,,,0, +75875,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.55 +73871,,,,,,,,0, +61050,,,,,,,,0, +26522,100.0,9.0,10.0,10.0,10.0,10.0,10.0,2,0.3 +45094,100.0,9.0,10.0,10.0,10.0,10.0,9.0,2,0.51 +67972,97.0,9.0,10.0,9.0,10.0,10.0,10.0,7,1.1 +61407,100.0,10.0,10.0,10.0,10.0,8.0,9.0,5,2.42 +76215,,,,,,,,1,0.13 +65940,,,,,,,,0, +70677,90.0,8.0,9.0,8.0,9.0,9.0,9.0,2,0.55 +42003,91.0,10.0,10.0,9.0,9.0,9.0,9.0,16,2.19 +50164,95.0,10.0,9.0,8.0,10.0,9.0,9.0,13,1.97 +69803,90.0,10.0,8.0,10.0,10.0,10.0,10.0,2,1.25 +27207,97.0,10.0,10.0,10.0,10.0,10.0,9.0,14,2.02 +17823,90.0,10.0,8.0,10.0,10.0,9.0,9.0,4,2.5 +24718,,,,,,,,1,0.46 +10414,95.0,9.0,9.0,10.0,10.0,10.0,10.0,8,1.88 +55148,85.0,9.0,8.0,10.0,9.0,9.0,9.0,24,3.58 +12703,,,,,,,,0, +60359,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,1.02 +59165,93.0,10.0,9.0,10.0,10.0,9.0,10.0,6,0.81 +10772,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.74 +17487,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,1.44 +17943,95.0,10.0,10.0,9.0,10.0,10.0,9.0,4,0.63 +28501,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.14 +66108,90.0,9.0,9.0,9.0,8.0,9.0,9.0,4,0.62 +19517,100.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.62 +71325,86.0,9.0,10.0,10.0,8.0,9.0,9.0,7,0.99 +59937,85.0,9.0,8.0,9.0,10.0,9.0,9.0,8,1.43 +73364,98.0,9.0,9.0,10.0,10.0,10.0,10.0,10,1.39 +67235,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.14 +12599,93.0,10.0,10.0,10.0,10.0,9.0,9.0,9,1.21 +41333,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.19 +62767,80.0,8.0,10.0,10.0,6.0,10.0,8.0,1,0.41 +66355,88.0,9.0,9.0,10.0,10.0,10.0,9.0,5,1.14 +26779,76.0,8.0,7.0,9.0,8.0,9.0,8.0,5,0.69 +61651,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.82 +73940,90.0,9.0,9.0,9.0,9.0,9.0,9.0,8,1.08 +47999,94.0,10.0,10.0,10.0,10.0,10.0,10.0,14,2.4 +12711,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.57 +21771,86.0,9.0,9.0,9.0,10.0,9.0,9.0,30,5.7 +11244,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.6 +66385,84.0,9.0,9.0,9.0,9.0,10.0,8.0,16,3.14 +76894,,,,,,,,0, +60975,,,,,,,,0, +70138,80.0,10.0,10.0,10.0,10.0,6.0,8.0,2,0.33 +3595,60.0,9.0,5.0,10.0,6.0,10.0,8.0,2,0.34 +17470,,,,,,,,0, +19503,100.0,8.0,10.0,10.0,10.0,6.0,6.0,1,0.28 +14282,,,,,,,,0, +62723,,,,,,,,0, +8756,,,,,,,,0, +19469,,,,,,,,0, +43959,80.0,10.0,10.0,10.0,10.0,10.0,8.0,1,1.0 +43916,85.0,9.0,9.0,9.0,9.0,10.0,9.0,20,3.82 +32506,,,,,,,,0, +70172,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.27 +37937,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,1.85 +36018,93.0,9.0,8.0,10.0,10.0,10.0,9.0,3,0.42 +8722,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.16 +17520,100.0,10.0,10.0,10.0,10.0,10.0,10.0,20,2.86 +16067,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.2 +21044,89.0,9.0,10.0,8.0,9.0,9.0,9.0,14,2.1 +61349,90.0,10.0,8.0,10.0,10.0,9.0,10.0,2,0.38 +54593,,,,,,,,0, +10949,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.25 +52825,,,,,,,,1,0.14 +63615,95.0,10.0,8.0,10.0,10.0,9.0,10.0,4,0.54 +58789,88.0,9.0,8.0,10.0,9.0,9.0,9.0,5,0.73 +1156,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,1.92 +14042,100.0,10.0,10.0,10.0,10.0,9.0,10.0,11,1.65 +42206,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.32 +20355,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,1.32 +8968,60.0,6.0,8.0,10.0,10.0,10.0,6.0,1,1.0 +21154,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.81 +28597,100.0,10.0,7.0,10.0,10.0,10.0,10.0,5,0.67 +69801,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.41 +35964,98.0,10.0,9.0,10.0,10.0,10.0,10.0,27,3.72 +13247,98.0,10.0,10.0,10.0,10.0,10.0,9.0,17,2.37 +29498,90.0,10.0,7.0,10.0,10.0,9.0,9.0,2,0.51 +58842,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.74 +66679,97.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.96 +19162,76.0,8.0,8.0,10.0,9.0,8.0,8.0,5,0.83 +3956,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,1.29 +52816,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.89 +60783,83.0,8.0,8.0,10.0,7.0,10.0,7.0,6,1.03 +59405,,,,,,,,0, +28101,,,,,,,,0, +36410,,,,,,,,0, +50212,,,,,,,,0, +73215,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.83 +36787,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.18 +10239,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.56 +2446,,,,,,,,0, +19715,94.0,10.0,9.0,10.0,10.0,10.0,10.0,18,2.42 +48279,93.0,10.0,9.0,10.0,10.0,10.0,9.0,3,0.62 +29538,67.0,7.0,6.0,7.0,7.0,10.0,10.0,3,0.44 +51447,100.0,10.0,10.0,10.0,10.0,10.0,8.0,3,0.4 +2032,85.0,9.0,9.0,10.0,10.0,9.0,9.0,10,1.39 +57832,98.0,10.0,9.0,10.0,10.0,9.0,10.0,8,1.23 +67562,100.0,9.0,10.0,10.0,10.0,10.0,9.0,3,0.64 +62866,91.0,9.0,9.0,10.0,10.0,9.0,9.0,16,2.24 +35823,97.0,10.0,9.0,10.0,10.0,9.0,10.0,7,2.41 +24155,,,,,,,,0, +55929,60.0,6.0,10.0,8.0,10.0,8.0,8.0,1,0.6 +44494,94.0,9.0,9.0,10.0,10.0,9.0,9.0,20,3.11 +57760,95.0,10.0,9.0,10.0,10.0,9.0,10.0,42,6.18 +60360,67.0,7.0,6.0,9.0,10.0,9.0,7.0,14,2.09 +43786,,,,,,,,0, +59576,93.0,10.0,8.0,10.0,9.0,9.0,10.0,3,0.47 +74792,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.51 +34463,,,,,,,,0, +70587,,,,,,,,0, +22173,,,,,,,,0, +49976,95.0,10.0,10.0,10.0,10.0,10.0,9.0,19,3.99 +67495,,,,,,,,0, +10461,84.0,9.0,7.0,10.0,9.0,9.0,9.0,17,2.26 +39880,87.0,10.0,8.0,9.0,9.0,9.0,9.0,3,0.7 +64825,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.62 +33317,80.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.63 +56615,87.0,9.0,10.0,10.0,10.0,9.0,9.0,19,2.95 +3729,82.0,9.0,9.0,10.0,10.0,9.0,8.0,23,5.07 +70357,88.0,9.0,8.0,10.0,10.0,9.0,9.0,8,1.18 +32873,83.0,9.0,10.0,10.0,10.0,10.0,9.0,7,1.35 +6995,,,,,,,,0, +76895,90.0,9.0,10.0,10.0,10.0,10.0,9.0,25,5.07 +13070,80.0,8.0,6.0,10.0,10.0,8.0,10.0,1,0.2 +2231,,,,,,,,0, +9766,40.0,8.0,8.0,10.0,10.0,10.0,4.0,2,0.36 +74877,94.0,10.0,10.0,10.0,10.0,10.0,9.0,19,2.69 +2210,93.0,9.0,10.0,9.0,9.0,9.0,8.0,11,1.57 +3927,94.0,10.0,10.0,10.0,10.0,10.0,9.0,7,1.07 +13213,,,,,,,,0, +19279,,,,,,,,0, +74591,,,,,,,,0, +6561,,,,,,,,1,0.15 +71546,100.0,10.0,10.0,9.0,10.0,10.0,10.0,3,0.68 +3597,,,,,,,,0, +64134,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,2.0 +39457,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.15 +73171,98.0,10.0,10.0,10.0,10.0,10.0,10.0,46,6.42 +31395,,,,,,,,0, +24631,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.85 +61926,,,,,,,,0, +16477,95.0,10.0,10.0,10.0,10.0,10.0,9.0,13,1.87 +55778,87.0,10.0,9.0,10.0,10.0,10.0,9.0,34,4.59 +9534,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.18 +21732,100.0,10.0,8.0,10.0,8.0,10.0,10.0,1,0.16 +73057,,,,,,,,1,0.19 +130,20.0,,,2.0,2.0,,,1,0.13 +60553,92.0,10.0,9.0,9.0,10.0,10.0,10.0,10,1.33 +76747,,,,,,,,0, +17738,50.0,5.0,5.0,6.0,5.0,6.0,5.0,2,0.38 +6241,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,1.53 +32592,96.0,9.0,10.0,10.0,10.0,9.0,10.0,9,1.34 +19863,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.96 +66083,80.0,9.0,10.0,10.0,10.0,10.0,8.0,2,0.97 +4033,,,,,,,,0, +19393,60.0,8.0,8.0,10.0,10.0,10.0,6.0,1,0.48 +65026,90.0,9.0,9.0,8.0,9.0,10.0,8.0,4,0.79 +35258,99.0,10.0,10.0,10.0,10.0,9.0,10.0,34,4.72 +53893,90.0,10.0,10.0,10.0,10.0,9.0,9.0,2,1.05 +72598,80.0,8.0,8.0,8.0,10.0,10.0,8.0,1,1.0 +52720,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.26 +39118,83.0,9.0,9.0,9.0,9.0,9.0,8.0,14,2.32 +26614,80.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.88 +63052,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,1.79 +51655,94.0,10.0,9.0,10.0,10.0,10.0,9.0,13,1.93 +3958,90.0,10.0,10.0,10.0,9.0,10.0,10.0,2,0.29 +19131,83.0,9.0,8.0,9.0,9.0,8.0,8.0,16,2.2 +46376,98.0,10.0,10.0,10.0,10.0,9.0,10.0,8,1.09 +66076,90.0,10.0,9.0,10.0,10.0,10.0,9.0,2,0.4 +29328,91.0,10.0,10.0,9.0,10.0,10.0,9.0,19,2.58 +13582,,,,,,,,0, +33548,,,,,,,,0, +65935,,,,,,,,1,0.16 +56475,97.0,10.0,10.0,10.0,10.0,10.0,9.0,50,7.98 +18278,85.0,9.0,9.0,9.0,9.0,9.0,9.0,8,1.1 +37499,,,,,,,,0, +57563,60.0,8.0,4.0,8.0,8.0,6.0,6.0,1,0.16 +57786,,,,,,,,6,1.78 +36270,,,,,,,,0, +20526,,,,,,,,0, +33374,,,,,,,,0, +75903,98.0,10.0,9.0,10.0,10.0,9.0,10.0,12,1.61 +40136,83.0,10.0,8.0,8.0,9.0,9.0,9.0,7,1.12 +34356,80.0,8.0,8.0,8.0,8.0,10.0,8.0,5,1.13 +59946,100.0,10.0,10.0,10.0,10.0,9.0,9.0,21,2.92 +25021,92.0,9.0,10.0,9.0,10.0,9.0,9.0,17,3.15 +63684,94.0,10.0,10.0,9.0,10.0,9.0,9.0,27,4.35 +59588,,,,,,,,0, +14516,,,,,,,,0, +43772,,,,,,,,0, +41488,,,,,,,,0, +40303,,,,,,,,0, +76662,,,,,,,,0, +38618,,,,,,,,0, +1705,98.0,10.0,10.0,10.0,10.0,10.0,10.0,18,2.56 +34541,,,,,,,,0, +31583,80.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.42 +55725,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.9 +15947,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.35 +7690,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.56 +17717,100.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.92 +65242,87.0,10.0,9.0,9.0,9.0,9.0,9.0,9,3.18 +16138,87.0,10.0,9.0,10.0,10.0,9.0,9.0,19,2.66 +68683,,,,,,,,0, +52085,96.0,10.0,10.0,10.0,10.0,10.0,9.0,15,2.03 +14417,79.0,8.0,9.0,9.0,9.0,9.0,8.0,14,2.02 +6653,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.6 +44297,,,,,,,,0, +58297,,,,,,,,0, +4525,,,,,,,,0, +17524,89.0,9.0,9.0,10.0,10.0,10.0,10.0,34,5.7 +43651,,,,,,,,0, +40120,95.0,10.0,10.0,10.0,10.0,9.0,9.0,56,7.53 +36407,,,,,,,,0, +26798,98.0,10.0,10.0,10.0,10.0,10.0,9.0,18,3.07 +18321,89.0,9.0,9.0,10.0,10.0,9.0,9.0,11,1.49 +17446,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,3.03 +28880,98.0,10.0,10.0,10.0,10.0,9.0,10.0,18,2.51 +13750,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.24 +10425,98.0,10.0,9.0,10.0,10.0,10.0,10.0,10,1.86 +72059,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.24 +1105,,,,,,,,0, +63768,84.0,9.0,10.0,10.0,9.0,9.0,8.0,10,1.74 +65456,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.21 +72638,,,,,,,,0, +52237,89.0,9.0,10.0,10.0,10.0,9.0,9.0,7,1.42 +70108,100.0,10.0,10.0,10.0,10.0,10.0,10.0,25,7.81 +36063,97.0,10.0,10.0,10.0,10.0,10.0,9.0,15,3.31 +25997,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.33 +22902,96.0,10.0,10.0,9.0,10.0,10.0,9.0,17,2.48 +38722,98.0,10.0,10.0,10.0,10.0,10.0,9.0,26,4.13 +71724,91.0,10.0,9.0,9.0,10.0,10.0,9.0,32,6.44 +23459,,,,,,,,0, +65071,90.0,9.0,9.0,9.0,10.0,10.0,9.0,23,4.48 +15300,,,,,,,,0, +19564,95.0,10.0,10.0,10.0,10.0,10.0,9.0,19,3.99 +4793,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.1 +70714,98.0,10.0,10.0,10.0,10.0,9.0,10.0,25,3.55 +39999,93.0,10.0,9.0,9.0,10.0,10.0,9.0,25,5.32 +73706,,,,,,,,0, +59253,94.0,10.0,10.0,9.0,10.0,10.0,9.0,25,4.78 +48488,83.0,9.0,9.0,9.0,9.0,8.0,9.0,15,2.08 +46618,,,,,,,,0, +68304,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.65 +52302,87.0,9.0,9.0,9.0,9.0,10.0,9.0,14,1.9 +30112,99.0,10.0,10.0,10.0,10.0,9.0,10.0,38,5.51 +38467,100.0,10.0,10.0,10.0,10.0,8.0,10.0,4,0.56 +48389,99.0,10.0,9.0,10.0,10.0,10.0,10.0,33,4.4 +64761,96.0,10.0,10.0,10.0,10.0,10.0,9.0,14,2.15 +4289,100.0,9.0,9.0,9.0,9.0,10.0,9.0,2,0.3 +43210,94.0,10.0,10.0,10.0,10.0,9.0,10.0,7,1.35 +47873,,,,,,,,0, +65395,94.0,10.0,9.0,10.0,10.0,9.0,9.0,25,4.81 +24536,96.0,10.0,8.0,10.0,10.0,10.0,10.0,6,0.97 +47267,95.0,9.0,9.0,9.0,9.0,9.0,9.0,8,1.15 +66549,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.26 +28505,98.0,10.0,10.0,10.0,10.0,10.0,9.0,13,1.97 +18251,93.0,10.0,10.0,9.0,10.0,9.0,9.0,6,1.19 +67565,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.15 +75421,94.0,10.0,9.0,9.0,9.0,9.0,9.0,13,2.0 +55762,66.0,7.0,8.0,8.0,7.0,9.0,7.0,10,1.38 +45710,95.0,10.0,9.0,10.0,10.0,10.0,10.0,17,2.28 +65441,93.0,9.0,9.0,10.0,10.0,9.0,9.0,11,1.47 +3935,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,1.43 +6438,100.0,8.0,10.0,10.0,10.0,10.0,8.0,1,0.29 +71598,80.0,9.0,9.0,9.0,9.0,9.0,9.0,12,1.78 +35340,,,,,,,,0, +4514,98.0,10.0,10.0,10.0,10.0,10.0,10.0,31,5.08 +37981,96.0,9.0,10.0,10.0,9.0,10.0,10.0,5,0.72 +15751,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.47 +24136,80.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.29 +43321,100.0,9.0,9.0,10.0,9.0,9.0,10.0,3,0.42 +65908,100.0,10.0,10.0,10.0,6.0,10.0,10.0,2,0.33 +39243,100.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.58 +69500,100.0,10.0,9.0,10.0,10.0,10.0,10.0,6,0.93 +58152,100.0,10.0,9.0,10.0,10.0,10.0,9.0,2,0.4 +12483,95.0,10.0,10.0,10.0,10.0,10.0,10.0,11,2.39 +50568,93.0,10.0,10.0,10.0,10.0,8.0,8.0,6,0.87 +6724,,,,,,,,1,0.13 +15471,80.0,10.0,6.0,10.0,10.0,10.0,10.0,2,0.29 +18741,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.15 +44691,,,,,,,,0, +18021,97.0,10.0,10.0,10.0,10.0,10.0,10.0,14,4.04 +56132,97.0,10.0,9.0,10.0,10.0,10.0,9.0,14,2.07 +67263,92.0,10.0,10.0,10.0,10.0,10.0,9.0,13,2.41 +10676,86.0,9.0,9.0,9.0,9.0,9.0,9.0,18,2.51 +52761,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.73 +6614,88.0,9.0,10.0,9.0,10.0,10.0,9.0,9,1.29 +11568,65.0,6.0,7.0,8.0,8.0,8.0,7.0,5,0.71 +47748,,,,,,,,0, +73546,94.0,9.0,9.0,10.0,10.0,10.0,10.0,8,1.21 +16881,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.34 +74723,97.0,10.0,10.0,10.0,10.0,10.0,9.0,23,5.39 +61307,76.0,9.0,9.0,10.0,9.0,9.0,8.0,16,3.08 +41360,95.0,10.0,10.0,10.0,10.0,10.0,9.0,16,2.46 +37793,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,2.29 +39551,88.0,10.0,10.0,10.0,10.0,10.0,9.0,18,5.14 +68745,99.0,10.0,10.0,10.0,10.0,9.0,10.0,21,2.93 +68776,84.0,9.0,9.0,10.0,9.0,10.0,9.0,19,2.63 +31815,80.0,8.0,8.0,9.0,10.0,10.0,8.0,4,0.86 +63689,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.15 +33239,91.0,9.0,9.0,9.0,10.0,10.0,9.0,13,2.17 +1604,93.0,10.0,9.0,10.0,9.0,8.0,9.0,6,0.84 +73378,94.0,10.0,10.0,10.0,10.0,10.0,10.0,18,2.78 +1099,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,1.01 +52698,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.4 +11006,80.0,6.0,10.0,10.0,10.0,10.0,10.0,1,0.46 +20383,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.23 +15475,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.33 +64632,90.0,9.0,10.0,10.0,10.0,9.0,9.0,36,4.98 +18255,,,,,,,,0, +8246,100.0,10.0,9.0,10.0,10.0,9.0,10.0,3,0.53 +18601,90.0,10.0,10.0,10.0,10.0,9.0,9.0,8,1.11 +31476,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.21 +55106,100.0,10.0,10.0,10.0,10.0,9.0,10.0,28,3.96 +13041,100.0,10.0,10.0,10.0,10.0,9.0,10.0,11,1.93 +20433,97.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.97 +10645,99.0,10.0,9.0,9.0,10.0,10.0,9.0,19,3.28 +70060,90.0,9.0,9.0,10.0,10.0,9.0,10.0,3,0.45 +55759,85.0,9.0,9.0,9.0,9.0,9.0,9.0,46,6.54 +30593,97.0,10.0,10.0,10.0,10.0,9.0,10.0,23,3.99 +58133,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.66 +38269,,,,,,,,0, +62618,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.18 +42217,100.0,10.0,10.0,10.0,10.0,10.0,10.0,15,2.78 +53284,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.25 +64395,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.16 +69912,,,,,,,,0, +14973,,,,,,,,0, +30855,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.33 +65617,,,,,,,,0, +44649,93.0,10.0,10.0,10.0,10.0,10.0,9.0,28,5.56 +65971,88.0,9.0,9.0,9.0,9.0,9.0,8.0,20,4.2 +25386,97.0,10.0,10.0,9.0,10.0,10.0,9.0,6,1.44 +2803,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.89 +39284,100.0,9.0,9.0,10.0,10.0,10.0,10.0,3,0.47 +59990,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.54 +21429,92.0,10.0,9.0,10.0,10.0,10.0,8.0,5,1.58 +43976,67.0,9.0,5.0,8.0,8.0,10.0,7.0,4,0.63 +52528,87.0,10.0,8.0,9.0,9.0,10.0,9.0,3,0.44 +5172,93.0,10.0,9.0,9.0,10.0,10.0,9.0,8,1.31 +67253,100.0,10.0,10.0,10.0,10.0,9.0,10.0,10,1.42 +49804,100.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.58 +63592,97.0,10.0,10.0,10.0,10.0,9.0,9.0,7,1.51 +50469,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,1.67 +56632,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.08 +75685,84.0,9.0,8.0,10.0,9.0,10.0,8.0,18,2.57 +33569,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.14 +39536,90.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.36 +75793,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.31 +23816,80.0,8.0,9.0,7.0,8.0,8.0,8.0,14,2.05 +46697,,,,,,,,1,0.14 +48990,97.0,10.0,10.0,10.0,10.0,10.0,9.0,14,2.63 +10562,85.0,9.0,9.0,10.0,10.0,9.0,8.0,23,4.73 +32095,96.0,9.0,10.0,10.0,10.0,9.0,10.0,29,5.47 +44706,93.0,10.0,10.0,10.0,10.0,9.0,10.0,7,1.05 +528,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,1.0 +53730,98.0,10.0,10.0,10.0,10.0,9.0,10.0,11,1.49 +15328,60.0,8.0,4.0,6.0,8.0,10.0,8.0,1,0.41 +70854,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,1.49 +43616,,,,,,,,0, +66591,62.0,6.0,7.0,7.0,7.0,8.0,7.0,23,3.65 +22865,95.0,9.0,10.0,10.0,10.0,10.0,9.0,18,2.83 +63553,91.0,10.0,9.0,10.0,10.0,9.0,10.0,19,2.63 +63642,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.51 +59144,80.0,8.0,7.0,9.0,9.0,8.0,9.0,2,0.31 +36258,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,3.0 +62717,,,,,,,,0, +7287,,,,,,,,0, +47960,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.47 +67924,,,,,,,,0, +70647,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.84 +39410,94.0,10.0,9.0,10.0,10.0,10.0,10.0,42,5.78 +56245,91.0,9.0,10.0,10.0,10.0,10.0,9.0,25,5.03 +71524,,,,,,,,0, +10575,93.0,10.0,10.0,10.0,10.0,10.0,9.0,6,1.22 +51988,96.0,10.0,10.0,9.0,10.0,10.0,10.0,5,1.43 +4162,92.0,10.0,10.0,10.0,10.0,10.0,10.0,29,6.13 +41377,92.0,10.0,10.0,9.0,10.0,9.0,9.0,7,0.94 +76796,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.94 +24361,95.0,10.0,10.0,9.0,10.0,10.0,9.0,24,6.61 +44426,100.0,10.0,10.0,10.0,10.0,9.0,10.0,23,4.08 +60661,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,1.25 +16892,,,,,,,,0, +24885,90.0,9.0,10.0,8.0,10.0,8.0,9.0,2,0.31 +65818,97.0,10.0,10.0,10.0,10.0,10.0,10.0,19,3.93 +55984,85.0,9.0,8.0,10.0,10.0,9.0,9.0,42,5.7 +12091,90.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.64 +36635,93.0,10.0,9.0,10.0,9.0,10.0,10.0,12,2.32 +56662,94.0,10.0,10.0,9.0,9.0,9.0,10.0,18,2.73 +10340,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.47 +46514,89.0,10.0,10.0,9.0,10.0,9.0,9.0,27,5.47 +67137,,,,,,,,0, +19969,96.0,10.0,10.0,9.0,10.0,10.0,10.0,17,4.05 +76302,94.0,10.0,9.0,10.0,10.0,10.0,9.0,47,6.59 +76898,90.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.75 +34751,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.71 +58375,90.0,10.0,9.0,10.0,10.0,9.0,9.0,66,9.17 +74632,,,,,,,,0, +27389,100.0,10.0,10.0,10.0,10.0,9.0,9.0,4,0.79 +3880,80.0,8.0,9.0,8.0,8.0,9.0,8.0,36,5.02 +68323,87.0,10.0,7.0,10.0,9.0,8.0,8.0,3,0.56 +27158,97.0,10.0,9.0,10.0,10.0,10.0,9.0,13,1.87 +18599,100.0,9.0,10.0,9.0,9.0,9.0,10.0,3,0.59 +46284,100.0,9.0,8.0,10.0,10.0,10.0,9.0,5,0.79 +16770,97.0,9.0,9.0,10.0,10.0,10.0,10.0,8,1.26 +52596,96.0,10.0,9.0,10.0,10.0,10.0,9.0,5,0.81 +74399,98.0,10.0,10.0,10.0,10.0,10.0,9.0,12,1.82 +30691,80.0,10.0,4.0,10.0,10.0,10.0,8.0,1,0.16 +40447,96.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.9 +28010,100.0,10.0,10.0,10.0,10.0,8.0,9.0,5,0.74 +70166,100.0,10.0,9.0,10.0,9.0,9.0,10.0,3,0.44 +4475,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.3 +66677,88.0,9.0,9.0,10.0,10.0,8.0,9.0,24,3.44 +39015,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.51 +13236,,,,,,,,0, +17517,94.0,10.0,10.0,9.0,10.0,10.0,9.0,22,6.35 +2324,89.0,10.0,10.0,9.0,10.0,9.0,9.0,24,5.67 +38335,83.0,8.0,8.0,9.0,9.0,9.0,8.0,16,2.38 +25391,92.0,9.0,9.0,10.0,10.0,9.0,9.0,10,1.39 +67080,87.0,10.0,10.0,9.0,10.0,10.0,9.0,18,3.8 +38786,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.28 +21364,90.0,9.0,10.0,10.0,10.0,10.0,9.0,20,4.72 +58185,93.0,9.0,10.0,9.0,10.0,9.0,9.0,25,5.0 +11271,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.14 +48570,99.0,10.0,10.0,10.0,10.0,10.0,10.0,14,2.16 +76055,,,,,,,,0, +75914,,,,,,,,0, +8107,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.42 +30249,95.0,9.0,9.0,10.0,10.0,9.0,10.0,4,0.76 +31850,93.0,10.0,10.0,9.0,10.0,10.0,9.0,32,6.19 +16916,,,,,,,,0, +11408,,,,,,,,0, +42987,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.46 +40312,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.19 +33851,90.0,9.0,8.0,9.0,9.0,10.0,9.0,14,2.07 +39368,99.0,10.0,10.0,10.0,10.0,9.0,10.0,14,2.82 +37303,,,,,,,,1, +50573,100.0,10.0,10.0,10.0,10.0,10.0,10.0,19,3.31 +11569,83.0,9.0,9.0,10.0,9.0,9.0,8.0,7,1.21 +41503,95.0,9.0,9.0,9.0,9.0,10.0,9.0,15,3.06 +44612,75.0,9.0,7.0,9.0,9.0,9.0,8.0,9,1.29 +58970,100.0,10.0,10.0,10.0,8.0,10.0,8.0,1,0.24 +74747,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.41 +48310,100.0,9.0,10.0,10.0,10.0,10.0,9.0,3,0.43 +75413,92.0,9.0,10.0,8.0,8.0,10.0,10.0,5,0.91 +46200,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.58 +1053,100.0,10.0,10.0,10.0,10.0,10.0,10.0,16,3.18 +33476,95.0,10.0,10.0,10.0,10.0,9.0,10.0,8,1.58 +76612,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.32 +37396,90.0,10.0,9.0,10.0,9.0,10.0,9.0,2,0.41 +59350,,,,,,,,0, +29897,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.21 +30842,20.0,2.0,2.0,8.0,6.0,4.0,2.0,1,0.2 +75540,100.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.23 +10827,94.0,10.0,10.0,10.0,10.0,10.0,9.0,10,1.45 +41142,87.0,9.0,8.0,10.0,10.0,9.0,9.0,3,0.56 +72956,95.0,10.0,10.0,10.0,9.0,10.0,10.0,4,0.63 +35514,93.0,9.0,9.0,10.0,10.0,9.0,9.0,9,1.35 +6573,98.0,10.0,9.0,10.0,10.0,10.0,10.0,9,1.36 +73548,,,,,,,,0, +61398,93.0,9.0,10.0,10.0,9.0,8.0,9.0,18,2.51 +74473,96.0,10.0,10.0,9.0,10.0,10.0,9.0,10,1.54 +26831,97.0,10.0,9.0,9.0,10.0,10.0,10.0,30,4.41 +44293,95.0,10.0,10.0,10.0,10.0,9.0,10.0,45,6.22 +73959,94.0,9.0,9.0,10.0,10.0,10.0,9.0,8,1.19 +67095,93.0,9.0,10.0,10.0,8.0,10.0,9.0,6,0.85 +70665,95.0,10.0,10.0,10.0,10.0,10.0,9.0,7,1.09 +55199,60.0,6.0,10.0,10.0,6.0,10.0,6.0,1,0.15 +15224,94.0,10.0,10.0,9.0,10.0,10.0,9.0,14,2.26 +50706,,,,,,,,0, +71596,,,,,,,,0, +30305,,,,,,,,0, +33931,84.0,10.0,8.0,10.0,10.0,10.0,9.0,6,2.37 +36058,96.0,10.0,10.0,9.0,10.0,9.0,9.0,16,2.89 +33126,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.55 +24835,85.0,10.0,9.0,10.0,8.0,10.0,8.0,5,0.68 +55728,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,2.45 +47779,98.0,10.0,9.0,9.0,9.0,10.0,10.0,10,1.52 +39194,67.0,7.0,6.0,10.0,9.0,10.0,6.0,4,0.71 +61185,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,1.0 +15115,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.19 +70590,84.0,8.0,8.0,7.0,9.0,10.0,8.0,5,0.69 +65824,,,,,,,,0, +60218,90.0,9.0,9.0,10.0,10.0,9.0,9.0,8,1.34 +36431,97.0,10.0,10.0,10.0,10.0,9.0,10.0,6,1.01 +63588,,,,,,,,1,0.56 +72600,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.16 +23220,98.0,10.0,10.0,10.0,10.0,9.0,9.0,11,1.71 +45212,,,,,,,,0, +3007,97.0,10.0,10.0,9.0,10.0,10.0,9.0,15,2.3 +67986,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.54 +58780,92.0,10.0,10.0,10.0,10.0,9.0,9.0,5,1.16 +63649,100.0,10.0,10.0,10.0,10.0,9.0,10.0,12,1.84 +60407,78.0,8.0,7.0,8.0,8.0,9.0,8.0,8,1.12 +71406,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.18 +25141,,,,,,,,0, +65389,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.84 +70035,95.0,9.0,10.0,10.0,9.0,10.0,10.0,4,0.64 +5606,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,1.11 +41606,92.0,9.0,9.0,10.0,10.0,9.0,9.0,5,0.79 +76816,,,,,,,,0, +54819,98.0,10.0,9.0,10.0,10.0,10.0,10.0,11,1.76 +62483,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.5 +16957,95.0,10.0,10.0,9.0,9.0,10.0,9.0,11,1.82 +13756,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.28 +33503,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.49 +37243,87.0,9.0,8.0,10.0,9.0,9.0,9.0,6,1.13 +15698,96.0,10.0,10.0,9.0,10.0,10.0,10.0,5,0.69 +31057,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.64 +66571,93.0,10.0,9.0,9.0,9.0,10.0,9.0,8,1.26 +1320,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.62 +2225,90.0,10.0,9.0,9.0,10.0,10.0,9.0,8,1.23 +27125,97.0,10.0,10.0,10.0,10.0,10.0,10.0,28,4.12 +9287,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.43 +52874,,,,,,,,0, +1351,99.0,10.0,10.0,10.0,10.0,10.0,10.0,18,2.57 +18608,90.0,9.0,10.0,10.0,10.0,10.0,9.0,15,2.15 +57279,99.0,10.0,10.0,10.0,10.0,10.0,10.0,24,4.09 +38073,84.0,8.0,8.0,8.0,8.0,8.0,8.0,5,0.69 +16154,94.0,10.0,9.0,10.0,10.0,10.0,10.0,7,1.35 +29497,95.0,10.0,10.0,9.0,10.0,10.0,10.0,8,1.16 +10149,87.0,9.0,9.0,9.0,10.0,10.0,10.0,3,0.51 +70041,,,,,,,,0, +33074,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.2 +11452,100.0,10.0,10.0,10.0,10.0,10.0,9.0,14,2.11 +26467,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.45 +38728,100.0,10.0,10.0,9.0,10.0,10.0,10.0,8,1.19 +6931,94.0,9.0,9.0,10.0,10.0,9.0,10.0,16,2.38 +4736,95.0,9.0,9.0,10.0,9.0,9.0,9.0,17,2.73 +36773,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +41317,77.0,8.0,8.0,8.0,8.0,9.0,9.0,8,1.12 +54124,80.0,9.0,8.0,8.0,8.0,9.0,8.0,4,0.63 +7935,,,,,,,,0, +70468,,,,,,,,0, +66475,90.0,10.0,10.0,8.0,10.0,9.0,9.0,15,2.15 +4331,73.0,7.0,8.0,8.0,6.0,10.0,9.0,8,2.22 +42402,97.0,10.0,10.0,9.0,9.0,10.0,10.0,7,2.63 +76400,93.0,10.0,10.0,10.0,9.0,10.0,10.0,20,2.79 +48238,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.16 +15226,100.0,10.0,10.0,10.0,10.0,9.0,10.0,14,1.95 +32131,73.0,9.0,7.0,9.0,9.0,9.0,8.0,3,0.48 +22516,88.0,9.0,9.0,10.0,9.0,9.0,9.0,12,1.67 +25208,,,,,,,,0, +62898,,,,,,,,0, +24716,,,,,,,,0, +22509,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.51 +21735,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.23 +57681,60.0,6.0,10.0,10.0,10.0,10.0,6.0,1,0.18 +6769,87.0,9.0,9.0,10.0,10.0,10.0,9.0,30,4.79 +29769,,,,,,,,0, +21366,,,,,,,,0, +5714,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.71 +8490,95.0,10.0,10.0,10.0,10.0,10.0,9.0,9,1.29 +23501,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.86 +53272,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.39 +59295,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,1.18 +24138,,,,,,,,0, +36210,91.0,10.0,9.0,10.0,10.0,9.0,9.0,8,1.42 +71040,,,,,,,,0, +34768,93.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.77 +47216,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.97 +16413,20.0,2.0,2.0,4.0,8.0,6.0,4.0,1,0.15 +8375,,,,,,,,0, +5766,80.0,8.0,4.0,10.0,10.0,10.0,10.0,1,0.15 +1703,100.0,10.0,6.0,10.0,10.0,10.0,8.0,1,0.15 +8259,90.0,10.0,7.0,10.0,10.0,10.0,9.0,8,1.33 +39343,91.0,10.0,10.0,9.0,9.0,9.0,9.0,8,1.14 +38719,98.0,9.0,10.0,10.0,10.0,10.0,10.0,9,1.48 +70363,,,,,,,,0, +23866,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.26 +44261,90.0,9.0,10.0,10.0,9.0,10.0,10.0,2,0.31 +25754,70.0,8.0,8.0,10.0,8.0,10.0,8.0,4,0.62 +57254,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.57 +68208,,,,,,,,0, +25067,100.0,10.0,10.0,10.0,10.0,10.0,10.0,17,3.07 +67128,96.0,10.0,10.0,10.0,10.0,8.0,9.0,11,1.68 +6590,100.0,10.0,10.0,10.0,10.0,10.0,9.0,20,12.5 +74387,75.0,9.0,9.0,7.0,8.0,8.0,8.0,4,0.71 +65184,40.0,2.0,2.0,10.0,10.0,10.0,4.0,1,0.14 +6662,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.34 +46609,88.0,9.0,9.0,9.0,8.0,9.0,9.0,5,0.75 +35925,97.0,10.0,10.0,10.0,10.0,10.0,10.0,21,3.5 +47732,93.0,9.0,10.0,9.0,9.0,9.0,10.0,3,0.44 +20153,,,,,,,,1,0.16 +72716,,,,,,,,0, +59184,98.0,10.0,10.0,10.0,9.0,9.0,10.0,18,2.58 +10103,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.15 +22298,95.0,10.0,10.0,9.0,10.0,10.0,10.0,22,3.11 +54858,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.45 +18234,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.23 +55624,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.21 +31876,97.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.93 +59395,80.0,8.0,10.0,8.0,10.0,8.0,8.0,1,0.15 +10521,97.0,10.0,9.0,10.0,10.0,10.0,10.0,21,3.12 +69787,93.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.46 +8276,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.15 +47494,97.0,10.0,9.0,9.0,9.0,10.0,10.0,8,1.21 +42733,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.81 +62009,,,,,,,,0, +9879,85.0,8.0,8.0,8.0,9.0,7.0,7.0,4,0.74 +11084,20.0,2.0,2.0,6.0,10.0,2.0,2.0,1,0.44 +76821,84.0,9.0,8.0,10.0,10.0,10.0,8.0,5,0.97 +8328,,,,,,,,0, +11810,,,,,,,,0, +58618,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.36 +29985,94.0,9.0,10.0,9.0,9.0,9.0,9.0,7,0.97 +15323,93.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.45 +57350,94.0,10.0,9.0,10.0,10.0,9.0,9.0,7,1.3 +38380,97.0,10.0,10.0,10.0,10.0,9.0,10.0,15,2.74 +21049,,,,,,,,0, +74013,95.0,10.0,8.0,10.0,10.0,8.0,10.0,8,1.11 +7706,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.59 +66770,70.0,7.0,7.0,7.0,7.0,8.0,5.0,2,0.34 +72305,92.0,9.0,9.0,10.0,9.0,10.0,9.0,13,2.05 +62635,,,,,,,,0, +64328,,,,,,,,0, +46784,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.15 +25987,,,,,,,,1, +45924,,,,,,,,0, +4091,90.0,9.0,8.0,10.0,10.0,10.0,10.0,3,0.46 +69557,100.0,9.0,9.0,9.0,10.0,10.0,10.0,4,0.55 +24152,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.9 +34238,60.0,6.0,6.0,10.0,10.0,8.0,6.0,1,0.16 +13735,60.0,6.0,10.0,4.0,10.0,10.0,10.0,1,0.23 +48060,,,,,,,,0, +26999,80.0,10.0,10.0,10.0,6.0,10.0,10.0,1,0.14 +28227,95.0,10.0,10.0,10.0,9.0,9.0,10.0,4,1.1 +10702,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,2.37 +7040,86.0,10.0,8.0,9.0,9.0,9.0,9.0,7,1.24 +48996,97.0,10.0,9.0,9.0,9.0,10.0,9.0,7,2.47 +60039,96.0,10.0,10.0,10.0,10.0,9.0,10.0,18,2.5 +18382,85.0,9.0,9.0,9.0,9.0,9.0,9.0,19,3.1 +66215,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.17 +58489,90.0,9.0,10.0,9.0,9.0,10.0,9.0,2,1.22 +28321,100.0,10.0,10.0,10.0,10.0,10.0,8.0,5,0.9 +50701,96.0,9.0,10.0,10.0,10.0,9.0,9.0,5,0.99 +39098,,,,,,,,0, +33721,97.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.19 +52906,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.28 +12494,97.0,10.0,10.0,8.0,10.0,10.0,9.0,7,1.15 +31607,80.0,8.0,8.0,9.0,9.0,10.0,7.0,4,0.62 +64410,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.42 +54835,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.6 +50858,92.0,9.0,8.0,9.0,10.0,10.0,9.0,22,3.16 +12465,94.0,9.0,9.0,9.0,9.0,9.0,10.0,8,1.11 +70865,,,,,,,,0, +65228,,,,,,,,0, +5666,100.0,10.0,10.0,10.0,10.0,10.0,10.0,17,2.79 +66402,78.0,9.0,9.0,9.0,9.0,10.0,9.0,16,2.22 +61453,93.0,10.0,9.0,10.0,10.0,10.0,10.0,6,0.92 +48752,92.0,8.0,8.0,10.0,10.0,9.0,9.0,5,0.74 +43398,99.0,10.0,10.0,10.0,10.0,10.0,10.0,29,4.03 +73723,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,1.81 +10797,95.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.71 +70828,88.0,9.0,9.0,9.0,9.0,9.0,9.0,11,1.54 +43458,87.0,9.0,8.0,10.0,9.0,10.0,10.0,6,0.93 +48958,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.16 +61882,100.0,10.0,9.0,9.0,10.0,10.0,9.0,4,0.62 +51833,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.45 +32986,90.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.42 +11926,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.44 +71140,96.0,10.0,10.0,10.0,10.0,10.0,9.0,5,1.03 +48059,100.0,2.0,10.0,10.0,10.0,10.0,10.0,1,0.19 +47165,93.0,9.0,9.0,9.0,10.0,10.0,8.0,6,0.87 +8961,89.0,8.0,9.0,9.0,10.0,9.0,9.0,7,1.11 +34601,,,,,,,,0, +13307,91.0,9.0,10.0,9.0,9.0,9.0,10.0,14,2.08 +40323,94.0,10.0,9.0,9.0,9.0,10.0,9.0,22,3.25 +21237,95.0,10.0,9.0,9.0,10.0,9.0,9.0,23,3.3 +74402,92.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.74 +64980,87.0,9.0,9.0,9.0,10.0,9.0,9.0,3,0.58 +10018,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,1.63 +1983,97.0,10.0,10.0,10.0,10.0,8.0,10.0,15,2.16 +20773,90.0,9.0,10.0,10.0,10.0,10.0,10.0,2,0.35 +19217,96.0,10.0,10.0,10.0,10.0,9.0,9.0,15,2.24 +35436,90.0,9.0,9.0,10.0,10.0,9.0,9.0,3,0.48 +75949,90.0,9.0,9.0,9.0,9.0,10.0,9.0,21,2.93 +49028,,,,,,,,0, +55838,80.0,9.0,9.0,8.0,8.0,10.0,8.0,21,2.92 +43320,79.0,8.0,9.0,9.0,8.0,10.0,9.0,26,3.71 +27491,87.0,10.0,10.0,9.0,9.0,10.0,9.0,20,2.97 +63901,85.0,9.0,10.0,9.0,8.0,10.0,9.0,31,4.31 +51050,100.0,9.0,10.0,10.0,10.0,10.0,10.0,2,0.3 +75580,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.52 +60317,87.0,8.0,10.0,9.0,9.0,9.0,9.0,12,1.67 +71338,80.0,9.0,9.0,9.0,9.0,9.0,8.0,13,1.97 +27141,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.89 +31168,89.0,10.0,9.0,10.0,10.0,10.0,9.0,9,1.4 +71456,86.0,9.0,10.0,10.0,9.0,9.0,9.0,22,3.16 +9545,98.0,10.0,9.0,9.0,10.0,9.0,9.0,11,1.75 +47658,97.0,10.0,9.0,10.0,10.0,10.0,9.0,6,1.64 +61101,88.0,9.0,9.0,10.0,9.0,10.0,9.0,16,2.3 +49628,86.0,9.0,10.0,9.0,9.0,10.0,9.0,14,2.0 +73038,,,,,,,,1,0.55 +35532,96.0,10.0,8.0,10.0,10.0,10.0,9.0,5,0.74 +10822,100.0,9.0,10.0,10.0,9.0,10.0,10.0,2,0.3 +75650,93.0,9.0,9.0,10.0,10.0,10.0,9.0,3,0.46 +63509,95.0,10.0,9.0,10.0,10.0,10.0,10.0,6,0.85 +15401,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.14 +75289,90.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.83 +34225,80.0,8.0,9.0,8.0,8.0,8.0,9.0,7,1.0 +22366,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.18 +67441,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.97 +8819,89.0,9.0,8.0,9.0,9.0,9.0,8.0,13,1.98 +34895,84.0,9.0,10.0,9.0,9.0,9.0,8.0,10,1.42 +37466,80.0,6.0,8.0,10.0,8.0,8.0,8.0,2,0.5 +11319,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.36 +40978,96.0,10.0,8.0,10.0,10.0,10.0,10.0,5,0.81 +71025,86.0,10.0,8.0,10.0,10.0,9.0,9.0,7,1.09 +15872,,,,,,,,0, +36993,97.0,10.0,10.0,10.0,10.0,9.0,10.0,15,2.13 +66050,84.0,7.0,8.0,9.0,9.0,10.0,8.0,5,0.94 +72246,100.0,10.0,10.0,8.0,10.0,10.0,10.0,1,0.19 +64324,86.0,9.0,9.0,9.0,9.0,9.0,9.0,7,1.24 +63078,87.0,10.0,9.0,9.0,9.0,10.0,9.0,3,0.54 +43384,,,,,,,,0, +39276,20.0,2.0,4.0,2.0,2.0,6.0,2.0,1,0.58 +294,87.0,9.0,9.0,10.0,9.0,10.0,9.0,3,0.53 +50991,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.15 +75193,70.0,8.0,8.0,9.0,9.0,9.0,8.0,2,0.37 +15085,,,,,,,,0, +39099,90.0,10.0,9.0,10.0,8.0,10.0,9.0,2,0.37 +69640,60.0,6.0,8.0,7.0,6.0,7.0,8.0,2,0.32 +37439,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.71 +4278,93.0,10.0,8.0,9.0,9.0,8.0,9.0,4,0.69 +1519,75.0,9.0,7.0,7.0,9.0,9.0,9.0,4,0.88 +16030,88.0,10.0,9.0,10.0,10.0,10.0,9.0,5,0.76 +8742,99.0,10.0,10.0,9.0,9.0,10.0,9.0,15,2.12 +74019,94.0,10.0,10.0,10.0,10.0,10.0,10.0,18,2.77 +7643,,,,,,,,0, +38398,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.2 +19696,,,,,,,,0, +20167,96.0,9.0,10.0,10.0,10.0,10.0,10.0,6,0.9 +76950,,,,,,,,0, +38723,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.21 +61248,90.0,9.0,9.0,10.0,10.0,10.0,9.0,20,3.08 +35092,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.38 +22587,100.0,10.0,10.0,8.0,10.0,10.0,10.0,1,0.16 +47342,,,,,,,,0, +65105,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.29 +35829,100.0,10.0,10.0,10.0,10.0,10.0,9.0,10,1.46 +1894,97.0,10.0,10.0,10.0,10.0,10.0,10.0,10,1.49 +34787,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.81 +46403,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.5 +59439,89.0,9.0,9.0,9.0,9.0,8.0,8.0,14,2.25 +26719,80.0,10.0,8.0,10.0,9.0,9.0,10.0,2,1.03 +12015,,,,,,,,0, +48346,,,,,,,,0, +45748,100.0,10.0,10.0,,10.0,,,1,0.2 +11930,89.0,9.0,9.0,9.0,10.0,9.0,9.0,8,1.98 +61229,,,,,,,,0, +10411,97.0,9.0,10.0,10.0,10.0,10.0,10.0,6,0.89 +12570,88.0,9.0,10.0,9.0,9.0,9.0,9.0,5,0.71 +61256,100.0,10.0,10.0,10.0,10.0,9.0,9.0,17,2.64 +1466,100.0,10.0,9.0,10.0,10.0,10.0,9.0,4,0.61 +15892,92.0,9.0,10.0,10.0,9.0,10.0,9.0,18,2.61 +62007,82.0,9.0,9.0,9.0,9.0,10.0,9.0,23,3.42 +58444,86.0,10.0,9.0,10.0,10.0,9.0,9.0,13,2.1 +71088,75.0,10.0,8.0,9.0,9.0,10.0,8.0,4,0.71 +31704,60.0,10.0,6.0,8.0,8.0,10.0,8.0,1,0.24 +60817,100.0,10.0,10.0,9.0,10.0,10.0,10.0,4,1.5 +1042,87.0,9.0,9.0,9.0,10.0,9.0,9.0,33,4.74 +54405,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.74 +1163,,,,,,,,0, +4009,100.0,10.0,6.0,10.0,6.0,10.0,6.0,1,1.0 +30626,84.0,9.0,9.0,9.0,9.0,10.0,9.0,31,4.47 +57233,,,,,,,,1,0.15 +29068,,,,,,,,3,0.5 +35286,87.0,9.0,9.0,9.0,9.0,9.0,9.0,24,3.46 +68574,,,,,,,,0, +41776,92.0,9.0,9.0,10.0,9.0,9.0,9.0,12,1.83 +60797,99.0,10.0,10.0,10.0,10.0,10.0,9.0,21,3.44 +26142,98.0,10.0,10.0,10.0,10.0,10.0,10.0,56,8.48 +54573,80.0,9.0,8.0,9.0,10.0,9.0,9.0,6,0.85 +34453,85.0,10.0,9.0,10.0,10.0,10.0,9.0,8,1.44 +9304,96.0,10.0,10.0,10.0,10.0,10.0,10.0,17,2.64 +10227,89.0,9.0,10.0,10.0,10.0,9.0,9.0,9,1.42 +26501,100.0,9.0,10.0,10.0,10.0,10.0,10.0,7,1.06 +30968,95.0,10.0,10.0,10.0,9.0,10.0,9.0,13,2.28 +24737,95.0,9.0,10.0,9.0,10.0,10.0,9.0,15,2.15 +75229,85.0,9.0,9.0,8.0,9.0,9.0,8.0,11,1.65 +74209,87.0,9.0,9.0,9.0,9.0,10.0,9.0,17,2.79 +70281,78.0,9.0,9.0,10.0,8.0,10.0,7.0,8,1.37 +10686,82.0,8.0,9.0,10.0,9.0,9.0,8.0,11,1.85 +5723,80.0,10.0,8.0,10.0,9.0,10.0,9.0,2,0.4 +76008,,,,,,,,1,0.14 +1409,87.0,9.0,9.0,10.0,8.0,10.0,9.0,6,0.91 +16051,96.0,10.0,9.0,9.0,10.0,10.0,9.0,10,3.41 +19853,91.0,9.0,10.0,10.0,10.0,10.0,10.0,9,1.79 +12258,80.0,10.0,6.0,10.0,10.0,10.0,8.0,1,0.43 +56693,92.0,10.0,9.0,9.0,9.0,10.0,10.0,24,3.69 +22401,,,,,,,,0, +14142,89.0,9.0,8.0,9.0,10.0,9.0,10.0,26,3.79 +34732,96.0,10.0,10.0,10.0,10.0,10.0,9.0,5,1.02 +44431,,,,,,,,0, +6620,,,,,,,,1,0.14 +35355,96.0,10.0,10.0,10.0,10.0,10.0,9.0,24,3.43 +35246,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.25 +59560,,,,,,,,0, +54871,60.0,2.0,8.0,8.0,10.0,10.0,8.0,1,0.21 +60372,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.48 +71699,100.0,10.0,10.0,9.0,10.0,10.0,10.0,9,1.62 +52911,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.66 +34607,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.32 +68630,,,,,,,,1,0.15 +55192,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.55 +20700,,,,,,,,0, +47072,,,,,,,,0, +65003,91.0,9.0,7.0,10.0,10.0,9.0,10.0,7,1.0 +35602,97.0,10.0,10.0,10.0,10.0,10.0,10.0,7,1.05 +48749,60.0,5.0,4.0,9.0,8.0,7.0,6.0,2,0.4 +32886,92.0,10.0,9.0,10.0,9.0,9.0,9.0,10,1.6 +34803,,,,,,,,0, +53349,100.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.94 +5621,,,,,,,,0, +18007,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.2 +8642,76.0,8.0,8.0,8.0,9.0,8.0,7.0,5,0.88 +36795,,,,,,,,0, +39517,,,,,,,,2,0.53 +11746,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,2.23 +51134,100.0,10.0,10.0,10.0,10.0,6.0,10.0,1,1.0 +14862,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.16 +17254,96.0,10.0,9.0,10.0,10.0,10.0,10.0,16,2.35 +9877,99.0,10.0,10.0,10.0,10.0,10.0,9.0,14,2.11 +1200,99.0,10.0,9.0,10.0,10.0,10.0,10.0,23,3.75 +34705,95.0,10.0,9.0,10.0,10.0,9.0,10.0,31,4.45 +35534,92.0,10.0,9.0,9.0,10.0,10.0,10.0,15,2.26 +58223,94.0,10.0,9.0,9.0,9.0,9.0,10.0,13,2.42 +58089,96.0,10.0,10.0,10.0,10.0,9.0,9.0,19,3.75 +6063,90.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.41 +45210,100.0,10.0,9.0,10.0,10.0,10.0,10.0,5,1.44 +57871,,,,,,,,0, +58917,,,,,,,,0, +32236,93.0,10.0,9.0,10.0,10.0,10.0,10.0,7,1.05 +51145,88.0,9.0,8.0,10.0,10.0,9.0,9.0,36,5.09 +42125,100.0,10.0,10.0,10.0,10.0,6.0,8.0,1,0.16 +68121,95.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.6 +69175,90.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.86 +52964,99.0,10.0,10.0,10.0,10.0,10.0,10.0,29,4.16 +24165,,,,,,,,0, +64382,76.0,9.0,8.0,9.0,9.0,9.0,9.0,5,0.76 +61404,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.15 +23641,,,,,,,,0, +4223,91.0,9.0,9.0,9.0,9.0,10.0,9.0,13,3.12 +69396,,,,,,,,1,0.16 +4765,100.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.62 +23029,,,,,,,,1,0.17 +71757,98.0,10.0,10.0,10.0,10.0,10.0,10.0,18,3.94 +31846,99.0,10.0,10.0,10.0,10.0,10.0,10.0,24,3.65 +7767,98.0,10.0,10.0,10.0,10.0,10.0,10.0,11,1.56 +30662,,,,,,,,0, +61513,,,,,,,,0, +47902,,,,,,,,0, +54194,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.75 +9702,,,,,,,,1,0.34 +5345,87.0,9.0,9.0,9.0,10.0,9.0,9.0,11,1.74 +53252,100.0,10.0,9.0,10.0,10.0,10.0,9.0,4,0.92 +59220,100.0,10.0,10.0,10.0,10.0,10.0,9.0,6,1.01 +2581,98.0,10.0,10.0,10.0,10.0,10.0,10.0,39,5.82 +35438,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.6 +25917,95.0,10.0,9.0,10.0,10.0,9.0,10.0,13,1.87 +13653,,,,,,,,0, +24827,,,,,,,,0, +66017,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.7 +7315,99.0,10.0,10.0,10.0,10.0,10.0,10.0,38,5.45 +50260,100.0,10.0,10.0,10.0,10.0,9.0,10.0,6,1.04 +73655,,,,,,,,0, +40803,,,,,,,,0, +9995,98.0,9.0,10.0,10.0,10.0,10.0,10.0,9,1.82 +65562,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.63 +13371,91.0,10.0,9.0,10.0,9.0,10.0,9.0,7,2.26 +29024,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.22 +13199,100.0,10.0,10.0,9.0,10.0,9.0,10.0,6,1.08 +7721,,,,,,,,0, +28695,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.78 +38045,94.0,9.0,10.0,10.0,10.0,10.0,9.0,10,1.78 +5633,96.0,10.0,9.0,10.0,10.0,9.0,10.0,27,4.01 +33484,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,1.0 +15738,96.0,10.0,9.0,10.0,10.0,10.0,10.0,41,5.91 +67320,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.41 +63950,70.0,7.0,4.0,5.0,7.0,9.0,9.0,2,0.71 +56533,,,,,,,,0, +76416,80.0,10.0,7.0,10.0,10.0,9.0,7.0,4,0.6 +32647,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.43 +50626,60.0,8.0,6.0,10.0,10.0,8.0,6.0,1,0.22 +3616,87.0,9.0,8.0,10.0,10.0,10.0,9.0,22,3.35 +19276,,,,,,,,0, +31354,99.0,10.0,10.0,10.0,10.0,10.0,10.0,15,2.26 +63893,92.0,10.0,9.0,10.0,10.0,10.0,9.0,5,0.74 +71009,100.0,10.0,10.0,10.0,10.0,10.0,10.0,17,2.43 +1599,74.0,8.0,7.0,8.0,9.0,9.0,7.0,7,1.04 +73840,,,,,,,,1,0.67 +70785,100.0,10.0,10.0,10.0,10.0,6.0,8.0,2,0.41 +69846,80.0,10.0,6.0,10.0,10.0,10.0,10.0,1,1.0 +68881,100.0,8.0,6.0,10.0,10.0,10.0,8.0,1,1.0 +12875,,,,,,,,0, +8540,,,,,,,,0, +58949,95.0,10.0,9.0,10.0,10.0,10.0,10.0,13,2.41 +3452,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.59 +50492,,,,,,,,0, +58726,87.0,9.0,9.0,10.0,10.0,10.0,9.0,3,0.43 +8508,91.0,9.0,9.0,10.0,10.0,9.0,10.0,7,1.4 +74338,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.49 +49835,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.73 +35080,100.0,10.0,10.0,10.0,10.0,10.0,10.0,22,3.35 +54668,96.0,10.0,8.0,10.0,10.0,9.0,9.0,10,1.42 +1795,,,,,,,,0, +15927,60.0,6.0,5.0,10.0,6.0,6.0,5.0,2,0.91 +36370,60.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.28 +28157,,,,,,,,0, +66822,94.0,9.0,10.0,9.0,10.0,9.0,8.0,10,1.44 +40020,80.0,8.0,4.0,8.0,6.0,8.0,8.0,1,1.0 +42789,80.0,9.0,9.0,9.0,9.0,10.0,9.0,7,1.03 +28135,90.0,10.0,8.0,9.0,10.0,10.0,10.0,2,0.36 +47978,85.0,9.0,8.0,10.0,10.0,10.0,10.0,4,0.6 +6261,80.0,8.0,10.0,10.0,8.0,10.0,10.0,2,0.34 +55518,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.86 +34950,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,2.08 +56373,97.0,10.0,10.0,9.0,9.0,9.0,10.0,7,1.16 +4911,68.0,8.0,8.0,8.0,9.0,8.0,8.0,8,1.3 +55911,,,,,,,,0, +28976,80.0,8.0,6.0,4.0,6.0,10.0,8.0,2,0.41 +37301,99.0,10.0,10.0,10.0,10.0,10.0,10.0,32,4.82 +39858,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,1.66 +37249,60.0,4.0,6.0,6.0,10.0,6.0,2.0,1,0.24 +19342,93.0,9.0,9.0,10.0,10.0,9.0,9.0,6,1.14 +26153,97.0,10.0,10.0,10.0,10.0,10.0,10.0,7,0.98 +76413,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.98 +19812,85.0,9.0,7.0,9.0,9.0,10.0,9.0,11,1.57 +9110,80.0,6.0,5.0,9.0,9.0,9.0,8.0,2,0.39 +67475,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.4 +66145,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.22 +798,91.0,10.0,9.0,9.0,10.0,10.0,9.0,16,2.3 +30522,85.0,9.0,9.0,10.0,10.0,10.0,9.0,49,6.87 +49597,90.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.34 +41005,98.0,10.0,10.0,10.0,10.0,10.0,10.0,43,6.14 +30047,93.0,10.0,10.0,10.0,10.0,10.0,9.0,17,2.83 +72773,95.0,9.0,10.0,10.0,10.0,9.0,10.0,4,0.9 +70784,96.0,10.0,10.0,10.0,10.0,10.0,9.0,10,1.55 +36625,98.0,10.0,10.0,10.0,10.0,10.0,10.0,26,4.67 +46706,94.0,10.0,10.0,9.0,9.0,10.0,9.0,14,2.08 +11304,90.0,10.0,10.0,10.0,9.0,8.0,10.0,2,0.3 +30572,100.0,10.0,10.0,10.0,10.0,9.0,9.0,9,1.38 +61286,,,,,,,,1,0.14 +27726,90.0,10.0,10.0,9.0,8.0,9.0,10.0,2,0.3 +12138,,,,,,,,0, +37214,100.0,9.0,10.0,10.0,10.0,9.0,10.0,3,0.53 +55218,97.0,10.0,9.0,10.0,10.0,10.0,10.0,6,2.77 +68938,93.0,9.0,10.0,10.0,10.0,9.0,9.0,6,0.93 +60373,100.0,10.0,10.0,10.0,10.0,9.0,10.0,29,4.12 +42939,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,1.71 +66205,,,,,,,,0, +41859,96.0,10.0,10.0,10.0,10.0,10.0,10.0,41,6.09 +17203,95.0,9.0,10.0,10.0,10.0,9.0,10.0,12,2.09 +61045,95.0,10.0,9.0,10.0,10.0,10.0,10.0,13,2.17 +53925,85.0,9.0,9.0,9.0,10.0,10.0,9.0,8,1.18 +72519,93.0,10.0,9.0,10.0,10.0,9.0,10.0,24,3.58 +49391,83.0,9.0,9.0,10.0,9.0,9.0,9.0,14,1.98 +51556,95.0,10.0,10.0,10.0,9.0,10.0,10.0,13,2.75 +47638,89.0,9.0,8.0,10.0,10.0,9.0,9.0,15,2.16 +49282,88.0,9.0,8.0,9.0,9.0,10.0,9.0,20,2.97 +27132,100.0,8.0,9.0,10.0,9.0,10.0,10.0,4,0.59 +53359,84.0,9.0,9.0,9.0,10.0,9.0,9.0,15,2.12 +68757,96.0,10.0,10.0,10.0,10.0,10.0,9.0,24,3.67 +75809,80.0,9.0,9.0,10.0,9.0,9.0,8.0,10,1.43 +23786,96.0,9.0,9.0,10.0,10.0,10.0,9.0,9,1.67 +48739,80.0,8.0,10.0,10.0,10.0,8.0,10.0,2,0.62 +44619,99.0,10.0,9.0,9.0,10.0,10.0,10.0,17,2.67 +29857,80.0,10.0,8.0,10.0,10.0,8.0,8.0,1,0.19 +58341,,,,,,,,0, +32849,80.0,7.0,10.0,9.0,5.0,9.0,8.0,3,0.58 +68473,90.0,9.0,9.0,9.0,10.0,10.0,9.0,6,0.91 +73010,,,,,,,,0, +20084,98.0,10.0,10.0,10.0,10.0,10.0,9.0,12,1.89 +30534,97.0,9.0,9.0,10.0,10.0,10.0,9.0,15,2.36 +76276,,,,,,,,0, +71200,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.9 +72972,95.0,10.0,9.0,10.0,9.0,9.0,10.0,4,0.64 +7880,100.0,9.0,9.0,9.0,9.0,10.0,9.0,3,1.32 +50291,100.0,10.0,10.0,9.0,10.0,10.0,8.0,2,0.39 +27557,98.0,10.0,10.0,10.0,10.0,10.0,10.0,11,1.71 +72618,87.0,9.0,9.0,10.0,9.0,9.0,9.0,3,0.54 +1742,,,,,,,,0, +4606,100.0,10.0,10.0,8.0,10.0,10.0,10.0,1,0.24 +66617,89.0,9.0,9.0,9.0,9.0,9.0,9.0,7,1.04 +68806,,,,,,,,0, +20752,,,,,,,,0, +55612,,,,,,,,0, +64611,90.0,10.0,9.0,8.0,10.0,10.0,9.0,3,0.45 +65215,97.0,10.0,10.0,10.0,10.0,10.0,9.0,13,1.95 +40848,100.0,10.0,10.0,10.0,10.0,10.0,9.0,4,1.74 +47643,100.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.59 +8520,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.19 +41185,93.0,9.0,9.0,10.0,10.0,9.0,9.0,14,2.9 +26558,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,2.19 +11048,97.0,10.0,10.0,10.0,10.0,9.0,9.0,6,0.95 +53866,50.0,6.0,6.0,8.0,6.0,8.0,7.0,2,1.02 +13537,,,,,,,,0, +38141,,,,,,,,1,0.14 +5612,96.0,10.0,8.0,10.0,10.0,9.0,8.0,5,1.15 +61455,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,2.02 +46881,,,,,,,,0, +54236,80.0,9.0,8.0,10.0,9.0,9.0,8.0,8,1.36 +13109,100.0,10.0,10.0,9.0,10.0,10.0,10.0,2,0.35 +19858,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.23 +72926,84.0,9.0,9.0,9.0,9.0,10.0,8.0,16,2.41 +68103,97.0,10.0,10.0,10.0,10.0,9.0,9.0,13,2.57 +21153,67.0,7.0,7.0,7.0,7.0,7.0,7.0,3,1.34 +39249,89.0,9.0,9.0,9.0,9.0,9.0,9.0,23,3.61 +19244,,,,,,,,0, +19856,73.0,9.0,8.0,9.0,9.0,9.0,8.0,3,1.17 +21766,92.0,9.0,10.0,10.0,9.0,9.0,10.0,10,1.6 +57290,100.0,10.0,8.0,10.0,8.0,8.0,10.0,2,2.0 +267,80.0,7.0,8.0,10.0,10.0,9.0,8.0,2,0.45 +51078,100.0,10.0,9.0,9.0,9.0,9.0,9.0,3,0.48 +7463,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.33 +54717,,,,,,,,0, +19189,96.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.77 +73037,87.0,8.0,10.0,10.0,9.0,10.0,9.0,7,2.02 +46426,95.0,10.0,10.0,9.0,9.0,9.0,9.0,8,1.24 +13342,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.5 +27159,80.0,10.0,10.0,10.0,10.0,8.0,8.0,3,0.46 +57811,,,,,,,,1,0.21 +59434,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.77 +4645,,,,,,,,1,0.14 +30223,91.0,10.0,9.0,10.0,10.0,10.0,10.0,11,1.76 +10647,85.0,9.0,9.0,9.0,9.0,9.0,9.0,12,2.05 +31127,80.0,8.0,10.0,10.0,8.0,9.0,8.0,2,0.28 +55577,98.0,10.0,10.0,9.0,10.0,9.0,9.0,25,3.89 +38808,88.0,9.0,9.0,10.0,10.0,9.0,10.0,5,1.39 +31921,73.0,10.0,10.0,10.0,9.0,9.0,10.0,3,0.62 +58786,89.0,10.0,7.0,10.0,10.0,10.0,9.0,9,1.44 +63926,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.57 +58310,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.15 +40414,89.0,9.0,9.0,8.0,9.0,9.0,9.0,15,2.31 +33595,,,,,,,,0, +51890,99.0,10.0,10.0,10.0,10.0,9.0,10.0,17,2.52 +64130,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.26 +34237,97.0,10.0,10.0,10.0,10.0,9.0,9.0,20,2.99 +54145,68.0,7.0,6.0,9.0,9.0,7.0,7.0,12,1.86 +8561,92.0,10.0,10.0,10.0,9.0,9.0,9.0,25,3.55 +20300,97.0,10.0,10.0,10.0,10.0,9.0,10.0,26,3.68 +56503,93.0,10.0,10.0,10.0,10.0,9.0,9.0,30,4.27 +51795,97.0,10.0,10.0,10.0,10.0,9.0,9.0,27,3.88 +49182,100.0,10.0,10.0,9.0,10.0,9.0,9.0,3,0.5 +21251,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.17 +62213,90.0,10.0,9.0,9.0,8.0,10.0,9.0,2,0.33 +27111,93.0,9.0,9.0,10.0,10.0,10.0,10.0,3,0.58 +14297,80.0,6.0,7.0,7.0,7.0,7.0,7.0,3,0.65 +74502,93.0,10.0,9.0,10.0,10.0,10.0,9.0,3,0.68 +20230,93.0,10.0,10.0,10.0,10.0,10.0,9.0,22,3.35 +13294,89.0,9.0,8.0,10.0,10.0,9.0,9.0,19,2.98 +20336,92.0,9.0,8.0,10.0,10.0,10.0,9.0,18,2.57 +42935,80.0,8.0,9.0,9.0,10.0,10.0,9.0,3,0.6 +36487,,,,,,,,0, +39039,99.0,10.0,10.0,10.0,10.0,10.0,10.0,30,4.46 +23842,,,,,,,,0, +11165,100.0,10.0,9.0,10.0,10.0,9.0,10.0,2,0.41 +29260,,,,,,,,0, +63118,99.0,10.0,10.0,10.0,10.0,10.0,10.0,27,4.33 +3498,80.0,10.0,10.0,10.0,8.0,10.0,8.0,1,0.88 +14917,,,,,,,,0, +21615,,,,,,,,0, +63313,,,,,,,,0, +14245,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.38 +41018,80.0,10.0,10.0,8.0,10.0,10.0,10.0,1,0.18 +50497,90.0,7.0,10.0,10.0,10.0,10.0,8.0,2,0.33 +76742,71.0,7.0,7.0,8.0,6.0,8.0,7.0,7,1.17 +2174,94.0,10.0,10.0,10.0,10.0,10.0,10.0,24,3.75 +56264,,,,,,,,0, +202,100.0,10.0,10.0,10.0,9.0,10.0,9.0,2,0.4 +18831,80.0,8.0,9.0,7.0,8.0,9.0,7.0,5,0.82 +6091,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.19 +74521,92.0,10.0,8.0,10.0,10.0,10.0,9.0,5,0.83 +57956,,,,,,,,0, +42890,92.0,10.0,10.0,9.0,10.0,10.0,9.0,5,1.15 +22495,98.0,10.0,10.0,9.0,10.0,10.0,10.0,8,1.36 +703,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.19 +18931,100.0,10.0,10.0,10.0,10.0,7.0,10.0,2,0.54 +63399,89.0,9.0,9.0,9.0,9.0,8.0,8.0,9,1.34 +23788,100.0,10.0,8.0,8.0,10.0,8.0,10.0,2,0.48 +55088,98.0,10.0,10.0,9.0,10.0,10.0,10.0,13,2.27 +32029,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.54 +9568,96.0,10.0,10.0,10.0,10.0,10.0,10.0,20,3.02 +47324,96.0,10.0,9.0,9.0,10.0,9.0,9.0,6,0.92 +46783,,,,,,,,1,0.14 +61425,,,,,,,,0, +7776,89.0,9.0,9.0,10.0,9.0,9.0,9.0,7,1.02 +41724,94.0,10.0,10.0,10.0,10.0,9.0,9.0,25,3.55 +69111,80.0,10.0,10.0,2.0,2.0,6.0,6.0,3,0.46 +3032,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.89 +15835,100.0,10.0,10.0,9.0,9.0,10.0,10.0,6,0.91 +16244,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.15 +21809,85.0,8.0,10.0,9.0,9.0,8.0,8.0,8,1.42 +47211,92.0,10.0,9.0,9.0,10.0,10.0,9.0,5,0.76 +49423,89.0,10.0,8.0,9.0,10.0,10.0,9.0,17,2.93 +6825,86.0,9.0,9.0,9.0,9.0,9.0,8.0,10,1.42 +34050,93.0,9.0,8.0,7.0,9.0,8.0,9.0,3,0.5 +48006,100.0,10.0,10.0,10.0,10.0,6.0,8.0,1,0.16 +12745,93.0,10.0,9.0,8.0,9.0,9.0,9.0,7,1.21 +58153,93.0,9.0,9.0,10.0,10.0,9.0,9.0,51,7.97 +63690,92.0,9.0,8.0,9.0,9.0,10.0,9.0,11,1.76 +74978,91.0,10.0,8.0,10.0,10.0,10.0,10.0,7,1.08 +73955,,,,,,,,0, +45678,87.0,10.0,9.0,9.0,10.0,10.0,9.0,3,0.45 +28756,98.0,10.0,10.0,10.0,10.0,9.0,10.0,9,1.29 +6303,,,,,,,,0, +21060,80.0,8.0,8.0,8.0,9.0,8.0,8.0,2,0.45 +20636,91.0,9.0,9.0,9.0,10.0,9.0,9.0,41,6.15 +65264,70.0,8.0,7.0,8.0,9.0,9.0,7.0,2,0.57 +49130,,,,,,,,0, +26511,,,,,,,,0, +29634,60.0,10.0,8.0,6.0,8.0,8.0,8.0,1,0.42 +50407,,,,,,,,0, +37255,83.0,9.0,9.0,9.0,8.0,10.0,8.0,6,1.22 +32577,,,,,,,,1, +2601,87.0,9.0,9.0,10.0,9.0,9.0,8.0,9,1.3 +9241,94.0,10.0,9.0,10.0,10.0,10.0,10.0,7,1.47 +44868,,,,,,,,0, +4469,,,,,,,,0, +26334,20.0,2.0,4.0,6.0,10.0,2.0,2.0,1,0.16 +3460,,,,,,,,0, +17107,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.55 +22368,,,,,,,,0, +73391,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.45 +33875,97.0,10.0,9.0,10.0,10.0,10.0,9.0,7,1.01 +5422,96.0,9.0,10.0,9.0,10.0,9.0,9.0,15,2.71 +24607,99.0,10.0,10.0,10.0,10.0,10.0,10.0,26,4.29 +19663,93.0,10.0,10.0,10.0,10.0,10.0,9.0,26,3.9 +68463,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.31 +33129,99.0,10.0,10.0,10.0,10.0,10.0,10.0,80,13.26 +15539,90.0,10.0,9.0,10.0,10.0,9.0,9.0,20,3.03 +57510,97.0,9.0,9.0,9.0,10.0,10.0,10.0,7,1.19 +60766,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.75 +39530,100.0,10.0,8.0,10.0,10.0,10.0,10.0,6,2.95 +12122,96.0,10.0,10.0,10.0,10.0,9.0,9.0,22,3.27 +4199,95.0,10.0,10.0,10.0,10.0,9.0,10.0,26,3.71 +38377,90.0,9.0,10.0,10.0,10.0,9.0,9.0,29,4.2 +44650,93.0,9.0,9.0,9.0,10.0,9.0,8.0,4,0.62 +63657,70.0,7.0,9.0,10.0,9.0,10.0,6.0,2,0.69 +15019,98.0,10.0,10.0,10.0,10.0,9.0,9.0,9,1.34 +73298,,,,,,,,0, +73092,80.0,6.0,8.0,10.0,10.0,4.0,8.0,1,0.29 +59018,70.0,6.0,10.0,6.0,6.0,9.0,8.0,2,0.3 +67636,,,,,,,,0, +31161,70.0,8.0,7.0,9.0,9.0,9.0,8.0,4,0.62 +18397,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +10050,100.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.29 +25557,93.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.18 +7388,,,,,,,,0, +21527,100.0,10.0,8.0,10.0,10.0,10.0,10.0,3,0.46 +4225,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.5 +11298,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.92 +12951,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.71 +63743,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.18 +3375,90.0,8.0,8.0,10.0,10.0,10.0,10.0,2,0.48 +12380,89.0,10.0,9.0,8.0,9.0,10.0,9.0,13,2.07 +72775,80.0,9.0,9.0,9.0,10.0,9.0,8.0,6,1.08 +43669,,,,,,,,0, +14418,100.0,10.0,10.0,9.0,9.0,9.0,9.0,3,0.49 +20992,100.0,9.0,10.0,10.0,9.0,9.0,10.0,4,0.62 +1869,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.37 +15138,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.47 +29281,96.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.96 +5302,90.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.62 +4303,100.0,10.0,10.0,8.0,10.0,10.0,10.0,1,0.28 +50646,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.48 +31223,100.0,10.0,10.0,6.0,10.0,8.0,8.0,1,0.77 +34037,80.0,7.0,10.0,10.0,9.0,9.0,9.0,4,0.66 +68783,,,,,,,,0, +33523,90.0,8.0,10.0,10.0,10.0,10.0,9.0,2,0.38 +54285,96.0,10.0,10.0,10.0,9.0,10.0,10.0,16,2.82 +72934,88.0,10.0,10.0,10.0,8.0,9.0,9.0,5,0.78 +32377,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.14 +22734,,,,,,,,0, +68768,73.0,9.0,9.0,10.0,7.0,9.0,9.0,5,1.36 +18882,92.0,10.0,9.0,10.0,10.0,10.0,9.0,11,2.26 +7361,93.0,10.0,9.0,10.0,10.0,10.0,9.0,16,2.84 +31818,93.0,9.0,9.0,10.0,9.0,10.0,10.0,6,0.9 +74717,60.0,4.0,6.0,10.0,10.0,10.0,4.0,1,0.22 +43589,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.16 +30367,86.0,9.0,9.0,9.0,9.0,10.0,9.0,18,2.73 +32643,,,,,,,,0, +57778,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.27 +10324,,,,,,,,0, +69683,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.18 +74400,90.0,10.0,9.0,10.0,10.0,10.0,10.0,8,1.36 +52187,60.0,7.0,5.0,10.0,9.0,8.0,4.0,2,0.75 +51923,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.16 +8568,,,,,,,,0, +32920,100.0,8.0,10.0,8.0,8.0,10.0,10.0,1,0.17 +43887,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +63931,100.0,10.0,9.0,10.0,10.0,9.0,10.0,4,0.76 +26071,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.38 +74426,,,,,,,,0, +66597,70.0,8.0,6.0,7.0,9.0,9.0,7.0,2,0.29 +73069,93.0,9.0,9.0,10.0,10.0,9.0,9.0,8,1.69 +53056,100.0,10.0,10.0,10.0,10.0,8.0,10.0,2,0.44 +72919,92.0,10.0,10.0,10.0,10.0,10.0,9.0,71,10.19 +57768,,,,,,,,1,0.18 +27011,80.0,9.0,9.0,7.0,9.0,10.0,7.0,3,0.51 +52,98.0,10.0,10.0,10.0,9.0,9.0,10.0,11,1.94 +68023,76.0,9.0,8.0,8.0,7.0,10.0,8.0,5,0.75 +38675,,,,,,,,1,0.58 +11601,89.0,9.0,9.0,9.0,10.0,9.0,8.0,7,1.04 +8167,91.0,9.0,9.0,9.0,9.0,9.0,9.0,7,1.02 +19642,96.0,10.0,10.0,10.0,10.0,10.0,8.0,5,1.05 +63565,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.2 +63891,90.0,10.0,7.0,10.0,9.0,10.0,9.0,4,0.63 +51568,90.0,10.0,10.0,10.0,10.0,9.0,9.0,6,0.92 +19042,95.0,10.0,9.0,10.0,10.0,10.0,10.0,12,1.96 +25832,,,,,,,,0, +34734,,,,,,,,0, +65977,,,,,,,,1,1.0 +58766,90.0,9.0,9.0,10.0,10.0,8.0,10.0,8,1.28 +61258,89.0,10.0,10.0,9.0,9.0,9.0,9.0,12,1.78 +59970,,,,,,,,0, +33674,94.0,10.0,9.0,10.0,10.0,10.0,9.0,10,1.58 +73172,100.0,10.0,7.0,10.0,10.0,10.0,10.0,4,0.96 +38458,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.24 +70850,93.0,9.0,9.0,10.0,10.0,10.0,9.0,9,1.64 +34902,91.0,10.0,7.0,9.0,9.0,10.0,9.0,7,1.89 +54643,95.0,9.0,9.0,10.0,9.0,9.0,9.0,15,2.65 +59091,93.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.28 +69060,96.0,10.0,10.0,10.0,9.0,9.0,10.0,5,0.73 +47850,,,,,,,,1,0.15 +31760,95.0,9.0,7.0,8.0,10.0,9.0,9.0,4,0.9 +57851,,,,,,,,0, +2538,,,,,,,,0, +7369,,,,,,,,0, +19494,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.37 +30208,,,,,,,,0, +4366,,,,,,,,0, +72225,92.0,9.0,9.0,9.0,9.0,10.0,9.0,30,4.81 +30084,90.0,9.0,9.0,10.0,10.0,10.0,8.0,10,1.44 +7970,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.75 +38506,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,1.72 +46836,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,1.29 +28261,95.0,10.0,10.0,10.0,10.0,9.0,9.0,23,3.38 +8308,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.31 +65760,91.0,9.0,9.0,10.0,9.0,10.0,9.0,7,1.22 +45844,80.0,9.0,8.0,9.0,9.0,8.0,8.0,6,1.05 +53461,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.17 +14939,73.0,7.0,8.0,9.0,8.0,10.0,9.0,5,0.84 +50707,89.0,9.0,8.0,9.0,9.0,9.0,9.0,7,1.19 +29871,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,1.89 +68725,98.0,10.0,10.0,10.0,10.0,10.0,10.0,11,1.98 +52291,97.0,10.0,10.0,10.0,10.0,10.0,10.0,13,1.97 +45374,100.0,10.0,10.0,9.0,10.0,9.0,10.0,7,1.69 +28119,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,1.5 +46941,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.25 +71132,94.0,9.0,10.0,10.0,10.0,9.0,10.0,31,5.31 +33730,88.0,9.0,9.0,10.0,10.0,10.0,9.0,5,0.76 +27454,97.0,10.0,10.0,9.0,10.0,9.0,10.0,15,2.27 +34749,,,,,,,,0, +24200,,,,,,,,0, +75811,100.0,6.0,6.0,10.0,10.0,10.0,6.0,1,0.88 +15024,67.0,7.0,7.0,7.0,7.0,7.0,7.0,3,0.52 +556,98.0,10.0,10.0,10.0,10.0,9.0,9.0,13,2.24 +13562,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.92 +11425,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.47 +66586,95.0,10.0,8.0,10.0,10.0,10.0,9.0,5,0.72 +19339,100.0,10.0,10.0,10.0,10.0,9.0,10.0,6,0.91 +76937,83.0,9.0,9.0,7.0,8.0,10.0,8.0,6,0.93 +22957,,,,,,,,2,0.36 +62544,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.35 +3163,97.0,9.0,8.0,10.0,10.0,10.0,9.0,7,1.24 +21182,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.47 +67243,100.0,10.0,8.0,10.0,10.0,10.0,10.0,3,0.45 +7772,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.24 +45874,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,1.34 +55913,98.0,10.0,10.0,10.0,10.0,9.0,9.0,8,1.26 +37314,96.0,9.0,10.0,10.0,10.0,10.0,9.0,6,1.07 +19957,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.41 +609,80.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.19 +35110,98.0,10.0,9.0,10.0,10.0,10.0,10.0,16,2.47 +72955,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.38 +24400,95.0,10.0,9.0,10.0,9.0,9.0,9.0,12,1.82 +50235,94.0,10.0,10.0,9.0,10.0,10.0,9.0,8,2.11 +31010,98.0,10.0,10.0,10.0,10.0,9.0,10.0,24,3.83 +36669,96.0,10.0,9.0,10.0,10.0,9.0,10.0,5,0.8 +48361,100.0,10.0,10.0,9.0,9.0,9.0,10.0,3,0.63 +56658,100.0,10.0,6.0,10.0,10.0,10.0,8.0,1,0.25 +66727,80.0,6.0,10.0,10.0,10.0,10.0,8.0,1,0.18 +8051,96.0,10.0,9.0,9.0,10.0,9.0,9.0,14,2.12 +50430,,,,,,,,0, +23918,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.64 +46946,74.0,8.0,8.0,8.0,8.0,9.0,8.0,7,1.21 +39706,,,,,,,,0, +54478,78.0,9.0,7.0,10.0,10.0,8.0,8.0,9,1.37 +54628,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,1.82 +30563,100.0,10.0,9.0,10.0,10.0,10.0,9.0,4,0.61 +61821,93.0,9.0,8.0,9.0,10.0,9.0,10.0,3,1.27 +28852,80.0,8.0,9.0,10.0,10.0,9.0,8.0,3,0.47 +34767,79.0,8.0,7.0,9.0,10.0,9.0,9.0,20,3.26 +28585,80.0,10.0,8.0,10.0,10.0,10.0,8.0,2,0.37 +6785,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.59 +66886,96.0,10.0,10.0,10.0,9.0,10.0,10.0,5,1.03 +32166,71.0,8.0,8.0,8.0,9.0,9.0,7.0,11,1.76 +47127,91.0,9.0,10.0,9.0,10.0,9.0,9.0,14,2.16 +71541,70.0,10.0,9.0,10.0,8.0,9.0,9.0,7,1.27 +16897,89.0,9.0,9.0,9.0,9.0,9.0,9.0,13,2.15 +71315,,,,,,,,0, +56535,98.0,9.0,10.0,9.0,10.0,10.0,10.0,8,1.4 +47689,97.0,10.0,10.0,9.0,10.0,10.0,10.0,6,1.24 +63271,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.71 +64280,100.0,8.0,10.0,10.0,10.0,10.0,8.0,1,0.19 +76524,,,,,,,,0, +16120,97.0,10.0,10.0,10.0,10.0,10.0,9.0,15,2.71 +39419,97.0,10.0,10.0,10.0,10.0,9.0,9.0,36,5.81 +76974,96.0,10.0,10.0,10.0,10.0,9.0,10.0,11,2.7 +73756,80.0,10.0,4.0,10.0,10.0,10.0,8.0,1,0.2 +29992,99.0,10.0,10.0,10.0,10.0,10.0,9.0,16,2.64 +43442,90.0,10.0,9.0,9.0,9.0,9.0,9.0,37,5.44 +24541,99.0,10.0,10.0,10.0,10.0,10.0,10.0,15,2.59 +18117,80.0,9.0,7.0,9.0,9.0,9.0,9.0,4,0.66 +19576,90.0,9.0,9.0,10.0,8.0,8.0,9.0,2,0.32 +73540,50.0,5.0,5.0,5.0,5.0,6.0,4.0,3,0.52 +21083,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.78 +20626,91.0,9.0,9.0,9.0,9.0,9.0,9.0,9,1.62 +57275,,,,,,,,1, +62561,97.0,10.0,10.0,10.0,10.0,10.0,9.0,13,2.17 +61681,96.0,10.0,10.0,10.0,10.0,9.0,9.0,11,1.75 +30914,99.0,10.0,9.0,10.0,10.0,10.0,9.0,15,2.43 +75748,,,,,,,,0, +66458,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.2 +21964,88.0,9.0,9.0,9.0,9.0,10.0,8.0,10,1.63 +20476,91.0,10.0,10.0,10.0,10.0,10.0,9.0,11,1.64 +5928,93.0,10.0,9.0,9.0,9.0,10.0,9.0,11,1.62 +69531,80.0,9.0,8.0,10.0,10.0,8.0,8.0,2,0.31 +37366,60.0,5.0,5.0,10.0,8.0,8.0,9.0,3,0.51 +5488,100.0,10.0,10.0,8.0,10.0,10.0,10.0,2,0.36 +45949,,,,,,,,0, +1166,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.32 +56079,,,,,,,,0, +28211,88.0,10.0,8.0,10.0,10.0,10.0,9.0,20,2.93 +20005,,,,,,,,0, +2491,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.6 +59536,89.0,9.0,9.0,9.0,9.0,8.0,9.0,11,1.76 +54602,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.15 +1153,100.0,6.0,10.0,10.0,10.0,6.0,6.0,1,0.47 +39338,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.18 +39164,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.81 +6418,100.0,10.0,10.0,10.0,9.0,10.0,10.0,3,0.44 +26422,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.53 +8062,93.0,10.0,9.0,9.0,9.0,10.0,9.0,3,0.56 +51757,95.0,10.0,10.0,10.0,9.0,10.0,9.0,4,0.61 +62102,98.0,10.0,9.0,10.0,10.0,9.0,10.0,13,1.93 +50562,,,,,,,,0, +51921,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.94 +63517,,,,,,,,0, +11186,20.0,2.0,2.0,2.0,2.0,2.0,2.0,2,0.36 +76123,,,,,,,,0, +7491,75.0,8.0,8.0,8.0,9.0,9.0,8.0,19,2.77 +58568,93.0,10.0,9.0,10.0,10.0,9.0,9.0,11,1.68 +44889,88.0,9.0,9.0,9.0,10.0,9.0,9.0,22,3.38 +73559,,,,,,,,0, +55584,93.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.26 +4761,100.0,10.0,10.0,10.0,10.0,9.0,10.0,14,2.33 +61366,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.38 +11413,,,,,,,,0, +41334,,,,,,,,1,0.19 +34191,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.3 +50926,87.0,9.0,9.0,9.0,10.0,9.0,9.0,3,0.53 +31799,,,,,,,,0, +33904,,,,,,,,0, +11012,,,,,,,,0, +13044,100.0,10.0,9.0,10.0,10.0,10.0,9.0,3,1.5 +9767,,,,,,,,0, +68054,90.0,10.0,9.0,10.0,9.0,10.0,8.0,2,0.41 +41888,,,,,,,,0, +3441,75.0,8.0,6.0,8.0,9.0,9.0,8.0,28,4.16 +13114,97.0,10.0,10.0,10.0,10.0,9.0,10.0,25,3.73 +29329,94.0,10.0,10.0,10.0,10.0,9.0,9.0,10,1.49 +68038,100.0,10.0,9.0,10.0,10.0,10.0,10.0,6,0.98 +30205,100.0,9.0,9.0,9.0,9.0,10.0,10.0,3,0.52 +62996,100.0,10.0,10.0,10.0,10.0,10.0,10.0,31,4.79 +50609,40.0,3.0,3.0,6.0,6.0,6.0,3.0,2,0.36 +48282,90.0,9.0,9.0,8.0,9.0,9.0,9.0,3,0.46 +26922,100.0,10.0,10.0,10.0,10.0,8.0,10.0,2,0.31 +57402,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.18 +75942,97.0,10.0,9.0,10.0,10.0,10.0,9.0,15,2.23 +32430,78.0,8.0,8.0,9.0,9.0,9.0,9.0,9,1.62 +73516,60.0,6.0,6.0,8.0,8.0,8.0,4.0,1,0.56 +62396,100.0,10.0,10.0,10.0,10.0,9.0,10.0,19,3.29 +23974,60.0,10.0,4.0,8.0,10.0,6.0,6.0,1,0.2 +46496,60.0,7.0,5.0,9.0,8.0,9.0,6.0,4,0.83 +60611,96.0,10.0,9.0,10.0,10.0,10.0,10.0,27,5.55 +32498,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.06 +72396,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.17 +64740,100.0,9.0,9.0,10.0,10.0,10.0,9.0,2,0.4 +15692,99.0,10.0,10.0,10.0,10.0,10.0,10.0,19,2.94 +25826,85.0,9.0,9.0,9.0,9.0,9.0,9.0,34,5.02 +65563,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.63 +11180,88.0,10.0,9.0,10.0,10.0,9.0,9.0,19,3.52 +77066,80.0,8.0,8.0,8.0,9.0,9.0,8.0,17,2.51 +34707,94.0,10.0,10.0,10.0,10.0,10.0,9.0,16,2.45 +15641,,,,,,,,1,0.15 +53662,85.0,9.0,9.0,10.0,9.0,10.0,8.0,4,1.05 +23093,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,1.82 +25897,100.0,10.0,10.0,10.0,10.0,10.0,10.0,33,4.88 +57544,,,,,,,,1,1.0 +52693,20.0,2.0,2.0,2.0,2.0,2.0,2.0,1,0.55 +50691,94.0,10.0,10.0,9.0,10.0,9.0,10.0,22,3.46 +58682,,,,,,,,0, +22339,88.0,9.0,9.0,8.0,10.0,9.0,8.0,5,1.74 +26623,100.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.61 +67210,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.54 +56777,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,1.11 +45382,,,,,,,,0, +39200,90.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.83 +43962,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.71 +7520,,,,,,,,0, +42698,100.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.66 +12382,100.0,10.0,10.0,10.0,10.0,9.0,10.0,13,2.03 +35105,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.27 +56074,97.0,10.0,9.0,10.0,10.0,10.0,10.0,6,1.65 +57637,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.18 +9841,85.0,9.0,8.0,10.0,10.0,9.0,9.0,6,1.76 +9971,,,,,,,,0, +64354,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.15 +53351,84.0,8.0,8.0,9.0,9.0,9.0,8.0,9,1.58 +26715,60.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.15 +29778,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.2 +69959,93.0,9.0,9.0,10.0,10.0,9.0,10.0,3,0.86 +14790,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.29 +10744,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.86 +57161,96.0,9.0,9.0,9.0,10.0,9.0,9.0,10,1.72 +55980,97.0,10.0,10.0,10.0,10.0,9.0,10.0,20,3.0 +66172,95.0,10.0,9.0,10.0,10.0,10.0,10.0,40,5.91 +76383,87.0,9.0,9.0,10.0,10.0,10.0,9.0,19,2.84 +26130,96.0,9.0,10.0,10.0,10.0,10.0,9.0,18,2.77 +48806,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.29 +16464,95.0,10.0,10.0,9.0,10.0,9.0,9.0,33,5.1 +37689,,,,,,,,0, +58853,,,,,,,,0, +65946,91.0,10.0,9.0,10.0,10.0,10.0,10.0,13,2.09 +8222,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.31 +2453,,,,,,,,0, +65313,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.21 +52205,,,,,,,,1,0.24 +40720,,,,,,,,0, +67096,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.68 +51734,92.0,8.0,9.0,8.0,9.0,9.0,9.0,5,1.15 +21663,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.36 +45353,89.0,9.0,9.0,10.0,10.0,9.0,9.0,38,5.82 +62244,94.0,10.0,9.0,10.0,10.0,9.0,9.0,10,1.49 +21786,98.0,10.0,10.0,10.0,10.0,10.0,10.0,18,6.0 +58090,,,,,,,,1,0.15 +60567,87.0,9.0,9.0,8.0,9.0,9.0,9.0,35,5.36 +46441,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.47 +52263,84.0,9.0,9.0,8.0,8.0,10.0,8.0,11,1.8 +42296,60.0,6.0,7.0,5.0,7.0,8.0,7.0,4,0.8 +48216,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.68 +32671,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.18 +52497,,,,,,,,0, +23825,,,,,,,,0, +6245,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.98 +51903,85.0,8.0,9.0,10.0,10.0,10.0,9.0,6,1.18 +3275,88.0,10.0,9.0,10.0,10.0,9.0,10.0,5,1.76 +49360,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.24 +71298,80.0,8.0,8.0,10.0,6.0,6.0,6.0,1,0.21 +22735,,,,,,,,0, +60034,90.0,10.0,10.0,10.0,9.0,10.0,10.0,2,0.39 +13345,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.91 +44064,96.0,10.0,10.0,10.0,10.0,10.0,10.0,14,2.76 +39057,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.57 +67337,,,,,,,,0, +68809,93.0,9.0,9.0,10.0,9.0,10.0,8.0,7,1.42 +73662,91.0,10.0,10.0,9.0,10.0,9.0,9.0,16,2.35 +9894,93.0,10.0,9.0,10.0,10.0,9.0,10.0,9,1.43 +66258,97.0,10.0,10.0,10.0,10.0,10.0,10.0,12,1.88 +14475,,,,,,,,0, +43912,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.71 +40041,,,,,,,,0, +20363,50.0,8.0,6.0,10.0,10.0,7.0,6.0,3,0.46 +3277,,,,,,,,1,0.17 +34874,100.0,10.0,9.0,10.0,10.0,9.0,9.0,4,0.58 +2703,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.35 +39685,85.0,10.0,10.0,9.0,8.0,9.0,8.0,8,1.34 +47920,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.3 +67690,,,,,,,,0, +2991,92.0,10.0,9.0,10.0,10.0,9.0,9.0,42,6.4 +30124,90.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.62 +6630,90.0,9.0,9.0,9.0,9.0,9.0,8.0,2,0.38 +12901,91.0,10.0,9.0,10.0,10.0,10.0,9.0,7,1.09 +56803,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.91 +5262,99.0,10.0,10.0,10.0,10.0,10.0,9.0,15,3.15 +32111,90.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.34 +31597,100.0,10.0,9.0,10.0,10.0,10.0,9.0,3,0.74 +18084,89.0,9.0,9.0,10.0,9.0,9.0,9.0,9,1.74 +19057,75.0,8.0,7.0,8.0,9.0,9.0,9.0,4,0.73 +68071,83.0,9.0,9.0,9.0,9.0,9.0,8.0,6,1.15 +57371,,,,,,,,0, +4218,100.0,9.0,9.0,10.0,9.0,10.0,10.0,3,0.86 +75944,100.0,10.0,10.0,10.0,10.0,10.0,9.0,6,2.14 +75451,98.0,10.0,10.0,10.0,10.0,9.0,10.0,8,1.44 +60430,100.0,10.0,8.0,10.0,10.0,8.0,10.0,1,0.28 +65761,95.0,10.0,10.0,10.0,9.0,10.0,10.0,4,0.81 +71458,94.0,10.0,10.0,9.0,9.0,10.0,9.0,7,1.17 +41955,100.0,10.0,9.0,10.0,10.0,9.0,10.0,3,0.5 +74424,86.0,8.0,7.0,10.0,9.0,10.0,9.0,8,1.38 +8559,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.51 +13521,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.3 +16299,94.0,10.0,10.0,10.0,10.0,10.0,9.0,18,3.7 +31305,,,,,,,,0, +19344,98.0,10.0,10.0,10.0,10.0,10.0,10.0,11,1.78 +2373,,,,,,,,0, +30190,100.0,10.0,10.0,10.0,10.0,7.0,9.0,5,0.73 +68498,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.48 +2764,,,,,,,,0, +69322,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,2.21 +25618,96.0,10.0,10.0,10.0,10.0,9.0,10.0,34,5.73 +6307,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.15 +61048,90.0,9.0,9.0,9.0,8.0,10.0,9.0,35,5.12 +70843,,,,,,,,0, +15434,100.0,10.0,10.0,10.0,8.0,10.0,9.0,2,2.0 +11560,,,,,,,,0, +27267,,,,,,,,0, +14755,87.0,7.0,9.0,10.0,7.0,9.0,9.0,4,1.33 +48464,92.0,10.0,9.0,10.0,10.0,10.0,9.0,5,0.86 +8247,99.0,10.0,10.0,10.0,10.0,10.0,10.0,14,3.53 +59900,84.0,8.0,9.0,8.0,9.0,10.0,9.0,5,0.82 +33818,100.0,10.0,10.0,10.0,10.0,10.0,10.0,16,2.82 +40377,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.83 +45257,,,,,,,,0, +5697,93.0,9.0,9.0,9.0,9.0,10.0,9.0,11,1.7 +39776,78.0,9.0,8.0,8.0,9.0,9.0,8.0,11,1.89 +76510,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,3.23 +63386,88.0,9.0,10.0,10.0,10.0,8.0,9.0,5,0.76 +27966,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,2.05 +3867,90.0,9.0,9.0,9.0,9.0,10.0,10.0,2,0.31 +53755,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.16 +46963,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.42 +13024,,,,,,,,0, +52290,,,,,,,,1,0.41 +22576,95.0,10.0,10.0,10.0,10.0,10.0,10.0,13,2.01 +51645,80.0,9.0,8.0,9.0,9.0,8.0,7.0,6,1.38 +69274,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.19 +41120,98.0,10.0,10.0,10.0,10.0,9.0,9.0,9,1.43 +47240,,,,,,,,0, +30477,95.0,10.0,9.0,10.0,10.0,10.0,10.0,23,3.71 +3091,90.0,9.0,9.0,9.0,10.0,10.0,9.0,2,0.36 +10613,93.0,10.0,9.0,10.0,10.0,9.0,9.0,3,0.66 +24537,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.31 +76740,,,,,,,,0, +70699,80.0,9.0,7.0,10.0,10.0,8.0,9.0,5,0.75 +63549,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.45 +22849,96.0,10.0,10.0,10.0,10.0,10.0,10.0,16,2.47 +72930,96.0,10.0,10.0,10.0,9.0,10.0,9.0,15,2.63 +61208,78.0,8.0,8.0,9.0,9.0,9.0,8.0,15,2.24 +16514,91.0,9.0,9.0,10.0,10.0,8.0,9.0,15,2.32 +4680,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.91 +16458,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,1.7 +72355,20.0,4.0,2.0,4.0,4.0,6.0,2.0,1,1.0 +56713,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.73 +72019,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.46 +2649,,,,,,,,0, +30066,98.0,10.0,10.0,10.0,10.0,9.0,9.0,9,1.78 +64115,,,,,,,,0, +7894,,,,,,,,0, +438,99.0,10.0,10.0,10.0,10.0,9.0,10.0,14,2.2 +51306,100.0,10.0,9.0,10.0,10.0,10.0,9.0,3,0.46 +7439,60.0,8.0,2.0,2.0,6.0,10.0,6.0,1,0.46 +6905,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.31 +29213,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.4 +60383,,,,,,,,1, +2793,93.0,10.0,9.0,10.0,10.0,10.0,10.0,3,1.13 +46336,93.0,9.0,10.0,9.0,8.0,9.0,9.0,3,1.2 +52635,97.0,10.0,10.0,10.0,10.0,9.0,9.0,7,2.23 +57470,60.0,8.0,4.0,10.0,10.0,10.0,6.0,1,1.0 +49422,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.16 +33255,,,,,,,,0, +24766,96.0,10.0,10.0,10.0,10.0,10.0,10.0,10,1.6 +45476,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.36 +64937,,,,,,,,0, +41290,99.0,10.0,10.0,10.0,10.0,10.0,10.0,35,5.5 +63767,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.57 +11117,,,,,,,,0, +33927,80.0,8.0,10.0,10.0,10.0,10.0,10.0,3,0.55 +28013,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.19 +3536,97.0,10.0,10.0,10.0,10.0,10.0,9.0,7,1.19 +73890,90.0,9.0,10.0,10.0,9.0,10.0,9.0,7,1.08 +6517,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.39 +68523,100.0,10.0,7.0,10.0,10.0,10.0,10.0,7,1.03 +9435,96.0,10.0,9.0,10.0,10.0,10.0,10.0,11,1.91 +64560,20.0,2.0,2.0,2.0,2.0,2.0,2.0,1,1.0 +4254,90.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.38 +48236,,,,,,,,0, +5918,,,,,,,,0, +68997,95.0,10.0,10.0,10.0,10.0,9.0,9.0,8,1.24 +11000,88.0,9.0,9.0,10.0,9.0,10.0,9.0,12,1.81 +35302,60.0,8.0,10.0,8.0,8.0,8.0,6.0,1,0.16 +52640,93.0,10.0,9.0,10.0,10.0,10.0,10.0,22,3.27 +29181,80.0,10.0,4.0,10.0,10.0,10.0,9.0,2,0.36 +56744,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.52 +50428,90.0,9.0,10.0,10.0,9.0,10.0,9.0,2,0.41 +64910,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.33 +76069,93.0,9.0,9.0,10.0,10.0,10.0,10.0,3,0.58 +6310,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.14 +74386,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,2.48 +54485,94.0,10.0,9.0,9.0,10.0,10.0,10.0,13,2.45 +3562,100.0,9.0,9.0,10.0,10.0,10.0,10.0,3,0.47 +4677,91.0,10.0,9.0,10.0,10.0,10.0,10.0,37,5.78 +49565,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.57 +55087,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,1.64 +20250,93.0,10.0,9.0,9.0,10.0,10.0,10.0,7,1.08 +33457,96.0,9.0,10.0,9.0,10.0,9.0,10.0,5,0.78 +32202,80.0,8.0,8.0,8.0,8.0,6.0,6.0,1,0.18 +55390,97.0,10.0,10.0,10.0,10.0,10.0,10.0,30,5.17 +16741,84.0,10.0,9.0,10.0,10.0,10.0,10.0,6,1.06 +36620,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.98 +70054,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,1.48 +24746,85.0,9.0,10.0,9.0,9.0,10.0,8.0,11,1.93 +36518,95.0,10.0,10.0,10.0,10.0,10.0,10.0,49,7.66 +63994,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.15 +17842,,,,,,,,0, +15700,,,,,,,,0, +6013,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,1.81 +7606,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.16 +30719,82.0,9.0,8.0,9.0,10.0,10.0,8.0,20,3.37 +60091,90.0,10.0,10.0,9.0,10.0,10.0,8.0,2,0.38 +42448,93.0,10.0,10.0,10.0,10.0,10.0,9.0,42,6.49 +73474,95.0,10.0,9.0,10.0,10.0,10.0,10.0,12,1.89 +75318,,,,,,,,1, +49063,33.0,5.0,5.0,7.0,7.0,9.0,4.0,3,0.45 +5609,53.0,6.0,7.0,7.0,6.0,8.0,5.0,3,0.45 +48754,,,,,,,,0, +16017,88.0,9.0,10.0,9.0,7.0,10.0,9.0,5,1.01 +42058,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.79 +29098,82.0,8.0,9.0,9.0,9.0,8.0,8.0,10,1.46 +4595,91.0,10.0,9.0,9.0,10.0,10.0,9.0,7,1.11 +64064,,,,,,,,0, +8005,98.0,10.0,10.0,10.0,10.0,9.0,10.0,10,1.88 +34897,100.0,10.0,8.0,8.0,10.0,10.0,8.0,1,0.24 +42061,77.0,8.0,8.0,8.0,8.0,8.0,8.0,6,1.05 +17335,90.0,7.0,8.0,7.0,9.0,10.0,9.0,3,0.48 +48421,100.0,10.0,10.0,10.0,10.0,9.0,10.0,17,2.74 +43732,83.0,9.0,8.0,9.0,9.0,9.0,8.0,8,1.5 +5566,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.19 +408,98.0,10.0,10.0,10.0,10.0,9.0,10.0,12,1.9 +10443,80.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.17 +21625,80.0,8.0,10.0,10.0,10.0,8.0,10.0,1,0.23 +42444,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.33 +46924,,,,,,,,0, +70619,90.0,9.0,10.0,10.0,10.0,10.0,9.0,6,1.02 +57606,100.0,10.0,10.0,10.0,10.0,10.0,10.0,28,4.67 +16152,80.0,7.0,10.0,9.0,8.0,7.0,9.0,2,0.45 +45964,100.0,9.0,9.0,9.0,9.0,9.0,10.0,3,0.62 +40454,97.0,10.0,10.0,10.0,10.0,9.0,10.0,31,5.74 +45556,,,,,,,,0, +48466,80.0,6.0,8.0,9.0,9.0,10.0,7.0,2,0.42 +60058,90.0,9.0,10.0,9.0,9.0,9.0,10.0,2,0.6 +29687,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.5 +59238,80.0,9.0,9.0,7.0,7.0,9.0,8.0,3,0.62 +17686,80.0,7.0,8.0,9.0,9.0,10.0,8.0,7,1.21 +68678,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.25 +10261,100.0,10.0,10.0,10.0,10.0,10.0,10.0,15,2.39 +73754,,,,,,,,0, +59626,,,,,,,,0, +74269,91.0,10.0,9.0,9.0,9.0,9.0,8.0,8,1.22 +50673,,,,,,,,0, +26316,88.0,9.0,9.0,8.0,10.0,10.0,8.0,6,1.17 +71908,90.0,9.0,9.0,10.0,9.0,10.0,8.0,11,1.83 +6288,,,,,,,,1,0.15 +35115,88.0,9.0,9.0,9.0,9.0,10.0,10.0,10,1.52 +26553,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,1.99 +17797,88.0,10.0,8.0,10.0,10.0,10.0,9.0,6,1.08 +11333,88.0,10.0,9.0,8.0,10.0,10.0,9.0,15,4.37 +56230,91.0,9.0,10.0,10.0,10.0,9.0,9.0,35,5.68 +55007,100.0,10.0,10.0,6.0,8.0,10.0,10.0,1,0.24 +61385,73.0,10.0,10.0,10.0,10.0,8.0,7.0,3,0.91 +27749,94.0,10.0,10.0,10.0,10.0,10.0,9.0,48,7.35 +17426,,,,,,,,0, +73767,96.0,10.0,10.0,10.0,9.0,10.0,9.0,11,1.86 +71987,,,,,,,,0, +13835,,,,,,,,1,0.15 +31185,90.0,10.0,8.0,9.0,9.0,9.0,10.0,8,1.28 +31936,96.0,10.0,10.0,10.0,10.0,9.0,10.0,11,1.82 +66387,99.0,10.0,10.0,10.0,10.0,10.0,10.0,17,2.52 +60605,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.16 +58706,88.0,9.0,9.0,10.0,9.0,9.0,9.0,10,2.19 +41972,91.0,9.0,9.0,9.0,10.0,9.0,9.0,22,3.33 +14491,95.0,10.0,10.0,10.0,10.0,9.0,10.0,8,1.31 +22631,97.0,9.0,9.0,9.0,9.0,10.0,9.0,7,1.28 +37335,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.03 +15879,98.0,10.0,10.0,10.0,10.0,10.0,9.0,12,2.42 +67392,95.0,10.0,9.0,10.0,10.0,10.0,9.0,35,5.22 +69173,73.0,7.0,7.0,7.0,7.0,6.0,7.0,3,0.45 +15630,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,1.0 +69667,,,,,,,,0, +47467,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,1.0 +19053,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.92 +4265,,,,,,,,0, +46501,100.0,10.0,10.0,10.0,9.0,10.0,9.0,13,2.15 +55099,93.0,10.0,8.0,9.0,10.0,9.0,9.0,11,2.13 +31186,,,,,,,,0, +66526,,,,,,,,0, +22619,,,,,,,,0, +67815,96.0,10.0,10.0,10.0,9.0,10.0,10.0,19,2.94 +27019,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.2 +52841,100.0,10.0,10.0,10.0,10.0,9.0,9.0,14,2.23 +24320,,,,,,,,0, +73023,60.0,6.0,6.0,6.0,6.0,6.0,6.0,2,0.39 +5978,,,,,,,,0, +20172,,,,,,,,0, +9655,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.25 +15873,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +63779,,,,,,,,0, +54672,94.0,9.0,10.0,10.0,10.0,9.0,9.0,29,5.3 +26269,90.0,9.0,9.0,10.0,9.0,9.0,9.0,2,0.5 +70126,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.3 +33934,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.21 +53128,100.0,10.0,9.0,9.0,8.0,10.0,10.0,3,0.74 +26520,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.61 +29674,95.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.65 +57455,60.0,8.0,8.0,8.0,8.0,8.0,4.0,1,1.0 +24030,,,,,,,,1,0.28 +61903,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.8 +22157,100.0,8.0,10.0,10.0,10.0,10.0,10.0,2,0.97 +15582,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.78 +31874,,,,,,,,0, +71939,100.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.63 +29086,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.67 +45038,91.0,10.0,8.0,9.0,10.0,9.0,9.0,14,2.06 +76081,60.0,6.0,6.0,10.0,10.0,10.0,8.0,1,0.42 +41388,,,,,,,,0, +63937,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.48 +53840,98.0,10.0,10.0,10.0,10.0,10.0,10.0,24,4.02 +1234,100.0,10.0,10.0,10.0,10.0,9.0,10.0,6,2.22 +49753,,,,,,,,0, +29995,95.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.65 +8267,100.0,9.0,10.0,10.0,10.0,10.0,10.0,3,0.46 +8317,,,,,,,,0, +21319,100.0,10.0,10.0,10.0,10.0,10.0,10.0,15,2.31 +19077,96.0,10.0,9.0,10.0,10.0,10.0,10.0,29,4.46 +25155,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.08 +38739,96.0,10.0,10.0,10.0,10.0,9.0,9.0,16,3.31 +30913,,,,,,,,0, +34086,83.0,9.0,8.0,9.0,10.0,9.0,9.0,8,1.43 +60243,85.0,9.0,10.0,10.0,10.0,8.0,9.0,8,1.24 +30085,94.0,9.0,10.0,10.0,10.0,10.0,9.0,10,1.92 +4619,80.0,8.0,8.0,10.0,8.0,10.0,10.0,1,0.71 +65873,91.0,10.0,9.0,10.0,10.0,9.0,9.0,15,2.33 +1081,,,,,,,,0, +45525,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,1.93 +24625,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.71 +27170,,,,,,,,0, +6455,60.0,6.0,5.0,7.0,8.0,9.0,6.0,3,0.45 +4320,95.0,10.0,10.0,10.0,10.0,9.0,9.0,4,0.71 +17759,90.0,9.0,8.0,9.0,10.0,9.0,9.0,6,1.38 +76173,,,,,,,,1,0.68 +50508,88.0,10.0,8.0,10.0,9.0,9.0,9.0,9,1.41 +43557,78.0,9.0,8.0,10.0,9.0,9.0,8.0,13,2.44 +40539,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.5 +25739,89.0,9.0,9.0,9.0,9.0,9.0,8.0,9,1.38 +73630,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.33 +70678,100.0,10.0,10.0,10.0,10.0,9.0,10.0,18,2.77 +44532,84.0,9.0,9.0,10.0,10.0,10.0,8.0,6,0.92 +71934,,,,,,,,0, +49572,,,,,,,,1,0.2 +75246,89.0,9.0,9.0,10.0,9.0,10.0,9.0,16,2.64 +73300,,,,,,,,0, +37653,,,,,,,,0, +2312,82.0,9.0,7.0,10.0,10.0,9.0,9.0,26,3.98 +20421,91.0,9.0,9.0,10.0,10.0,10.0,9.0,9,1.34 +2560,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.15 +37599,,,,,,,,0, +67345,80.0,8.0,8.0,9.0,8.0,8.0,8.0,2,0.39 +51454,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.58 +40361,,,,,,,,0, +55270,96.0,10.0,10.0,10.0,10.0,10.0,10.0,9,3.0 +4889,,,,,,,,2,0.37 +32424,89.0,9.0,9.0,10.0,10.0,10.0,9.0,45,6.89 +69434,100.0,10.0,10.0,10.0,9.0,10.0,10.0,2,0.97 +53498,100.0,10.0,10.0,10.0,10.0,10.0,10.0,24,3.64 +66441,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.17 +64814,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.47 +38512,20.0,2.0,2.0,2.0,2.0,2.0,2.0,1,0.25 +38840,,,,,,,,0, +68801,71.0,8.0,7.0,9.0,9.0,7.0,7.0,18,3.42 +34338,,,,,,,,0, +18587,100.0,8.0,10.0,10.0,10.0,10.0,8.0,1,0.16 +67245,89.0,9.0,9.0,10.0,10.0,10.0,9.0,13,3.25 +34798,100.0,10.0,10.0,10.0,10.0,10.0,9.0,9,2.13 +30619,,,,,,,,0, +10267,,,,,,,,0, +31999,97.0,10.0,10.0,9.0,10.0,9.0,9.0,18,2.8 +19539,91.0,9.0,10.0,10.0,10.0,10.0,9.0,20,9.09 +72555,84.0,9.0,7.0,10.0,10.0,8.0,10.0,5,1.2 +58263,92.0,9.0,10.0,7.0,9.0,9.0,9.0,5,1.01 +18840,,,,,,,,0, +73017,,,,,,,,0, +35255,,,,,,,,0, +51446,50.0,6.0,6.0,6.0,6.0,6.0,6.0,2,0.33 +61568,76.0,7.0,7.0,8.0,9.0,9.0,8.0,11,1.74 +2269,92.0,9.0,10.0,9.0,10.0,8.0,9.0,13,2.28 +34174,,,,,,,,0, +43233,100.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.98 +18273,95.0,10.0,10.0,10.0,10.0,9.0,10.0,13,2.07 +45855,20.0,2.0,2.0,2.0,2.0,2.0,2.0,1,0.2 +65183,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.19 +10356,99.0,10.0,10.0,10.0,10.0,10.0,10.0,16,4.57 +17274,,,,,,,,0, +39309,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.22 +52168,95.0,10.0,10.0,10.0,8.0,9.0,10.0,5,0.83 +55224,89.0,9.0,9.0,8.0,8.0,10.0,9.0,23,3.56 +32521,20.0,,,,,,,1,0.19 +22144,95.0,10.0,9.0,10.0,10.0,10.0,9.0,22,3.84 +23471,86.0,9.0,8.0,9.0,9.0,8.0,9.0,7,1.35 +58188,95.0,10.0,10.0,10.0,10.0,10.0,10.0,24,3.65 +72858,92.0,9.0,10.0,10.0,10.0,10.0,9.0,12,2.12 +35540,91.0,9.0,9.0,10.0,10.0,10.0,9.0,12,1.91 +35622,80.0,7.0,8.0,10.0,8.0,10.0,7.0,2,0.44 +11785,,,,,,,,0, +19118,88.0,8.0,8.0,8.0,8.0,10.0,8.0,5,1.01 +3450,98.0,10.0,10.0,10.0,10.0,10.0,10.0,16,3.06 +17342,93.0,10.0,10.0,9.0,10.0,9.0,9.0,3,0.71 +4853,90.0,9.0,9.0,10.0,10.0,9.0,8.0,4,0.82 +35385,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.47 +53373,92.0,9.0,9.0,10.0,10.0,10.0,9.0,15,2.39 +25682,70.0,8.0,10.0,8.0,9.0,10.0,9.0,2,1.15 +73781,100.0,10.0,10.0,9.0,10.0,10.0,10.0,10,1.84 +9851,85.0,9.0,8.0,9.0,10.0,9.0,8.0,12,2.24 +9961,93.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.61 +73222,95.0,10.0,9.0,10.0,10.0,9.0,10.0,11,1.76 +1410,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.55 +58677,88.0,9.0,9.0,9.0,9.0,9.0,9.0,29,4.29 +73324,,,,,,,,1,0.15 +42248,90.0,9.0,9.0,9.0,10.0,9.0,9.0,14,2.21 +67799,100.0,9.0,10.0,10.0,10.0,10.0,9.0,4,0.71 +18878,92.0,10.0,10.0,10.0,9.0,10.0,10.0,5,1.65 +30171,90.0,10.0,8.0,10.0,10.0,10.0,9.0,4,0.65 +6566,90.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.37 +18669,92.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.8 +13249,,,,,,,,0, +49795,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.67 +74273,65.0,8.0,6.0,10.0,6.0,10.0,7.0,4,0.79 +67334,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.04 +19119,,,,,,,,0, +58625,89.0,9.0,9.0,10.0,9.0,10.0,9.0,9,1.41 +76435,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.37 +2462,88.0,9.0,9.0,8.0,9.0,9.0,9.0,10,1.53 +48981,99.0,10.0,10.0,10.0,10.0,9.0,10.0,19,3.15 +43679,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.26 +33776,85.0,9.0,9.0,9.0,9.0,10.0,9.0,13,2.01 +24033,68.0,7.0,8.0,7.0,8.0,10.0,8.0,5,0.77 +5882,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.73 +66201,100.0,10.0,10.0,7.0,10.0,10.0,10.0,3,0.59 +24913,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,2.0 +64876,96.0,10.0,9.0,10.0,9.0,9.0,10.0,5,1.03 +16559,90.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.32 +47512,91.0,10.0,10.0,10.0,10.0,9.0,9.0,13,2.15 +11603,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,2.34 +14018,,,,,,,,0, +64914,93.0,10.0,9.0,10.0,10.0,9.0,10.0,8,1.97 +12405,88.0,9.0,9.0,10.0,9.0,9.0,9.0,10,1.53 +43630,100.0,10.0,10.0,10.0,8.0,10.0,10.0,1,0.16 +52449,60.0,8.0,6.0,10.0,10.0,10.0,8.0,1,1.0 +1022,100.0,9.0,9.0,10.0,10.0,10.0,8.0,2,0.42 +62842,,,,,,,,0, +40573,84.0,8.0,9.0,10.0,10.0,9.0,9.0,9,1.62 +17560,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.33 +49894,,,,,,,,1,0.75 +57348,93.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.77 +15501,80.0,10.0,6.0,10.0,10.0,8.0,8.0,1,0.43 +62399,,,,,,,,0, +45342,,,,,,,,0, +72063,83.0,9.0,8.0,9.0,10.0,9.0,9.0,8,1.38 +21502,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.3 +45791,96.0,9.0,9.0,10.0,10.0,10.0,10.0,16,2.7 +3057,93.0,10.0,10.0,10.0,9.0,10.0,10.0,8,1.34 +71277,98.0,10.0,10.0,10.0,10.0,10.0,9.0,8,1.22 +18052,99.0,10.0,9.0,10.0,10.0,10.0,10.0,34,5.13 +14821,,,,,,,,0, +37234,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.98 +45171,,,,,,,,0, +30469,94.0,10.0,10.0,10.0,10.0,10.0,9.0,17,3.89 +71391,,,,,,,,1,0.17 +38020,84.0,10.0,9.0,9.0,9.0,9.0,8.0,9,1.59 +30032,100.0,10.0,10.0,10.0,10.0,10.0,10.0,23,3.58 +59080,,,,,,,,1, +757,82.0,9.0,9.0,10.0,10.0,10.0,9.0,12,2.01 +26245,96.0,10.0,9.0,10.0,10.0,9.0,10.0,27,4.22 +10500,100.0,9.0,9.0,10.0,10.0,9.0,10.0,2,0.31 +70988,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.62 +65384,94.0,10.0,10.0,10.0,10.0,10.0,10.0,45,6.92 +30704,73.0,8.0,7.0,9.0,10.0,9.0,8.0,3,0.47 +75513,80.0,10.0,10.0,10.0,8.0,10.0,6.0,1,0.2 +63270,89.0,9.0,9.0,9.0,9.0,9.0,9.0,19,3.03 +50839,94.0,9.0,9.0,10.0,10.0,9.0,9.0,7,1.06 +6165,89.0,10.0,9.0,10.0,10.0,9.0,9.0,11,1.95 +65894,60.0,5.0,5.0,5.0,6.0,9.0,6.0,4,0.66 +36727,97.0,10.0,10.0,10.0,10.0,10.0,9.0,7,2.31 +15906,96.0,10.0,10.0,10.0,10.0,10.0,10.0,10,1.75 +1654,93.0,9.0,9.0,10.0,10.0,10.0,9.0,25,3.79 +50689,99.0,10.0,10.0,10.0,10.0,9.0,10.0,27,4.79 +38727,87.0,9.0,9.0,10.0,10.0,9.0,9.0,3,0.66 +70656,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.59 +64687,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.41 +45288,,,,,,,,0, +48983,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.16 +29938,77.0,8.0,10.0,7.0,7.0,9.0,7.0,6,0.92 +23525,92.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.97 +22967,95.0,10.0,10.0,10.0,10.0,9.0,10.0,17,3.09 +48676,,,,,,,,0, +811,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.38 +28293,97.0,10.0,9.0,10.0,10.0,9.0,10.0,7,1.04 +4460,90.0,9.0,9.0,9.0,10.0,10.0,9.0,2,0.34 +23633,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.33 +23110,,,,,,,,0, +21414,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.2 +55564,99.0,10.0,10.0,10.0,10.0,9.0,10.0,21,3.3 +42347,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.12 +63915,,,,,,,,0, +9850,90.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.34 +63185,,,,,,,,0, +31825,89.0,9.0,9.0,9.0,9.0,10.0,9.0,9,1.49 +27043,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,1.91 +55907,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.77 +2173,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.7 +5348,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.96 +3494,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.21 +63127,98.0,10.0,9.0,10.0,10.0,10.0,9.0,9,1.99 +73401,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.66 +66618,85.0,9.0,9.0,9.0,10.0,10.0,9.0,4,1.9 +33352,100.0,10.0,9.0,10.0,9.0,9.0,10.0,4,0.62 +67973,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,2.37 +30508,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.99 +67053,80.0,9.0,9.0,10.0,10.0,10.0,8.0,2,0.41 +7172,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.17 +1669,,,,,,,,0, +66113,,,,,,,,0, +25753,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,1.38 +52460,93.0,10.0,9.0,10.0,10.0,9.0,9.0,3,0.52 +45974,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,3.67 +36430,87.0,9.0,9.0,10.0,10.0,10.0,9.0,7,1.14 +57705,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.46 +43556,80.0,6.0,8.0,6.0,6.0,4.0,6.0,1,0.16 +64797,87.0,9.0,9.0,9.0,10.0,9.0,10.0,3,0.48 +33363,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.63 +50074,,,,,,,,0, +20205,90.0,9.0,8.0,10.0,10.0,9.0,9.0,4,0.63 +53207,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,3.45 +38495,94.0,10.0,9.0,10.0,10.0,10.0,10.0,33,6.35 +7824,,,,,,,,0, +71969,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.35 +56413,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,1.39 +37153,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,1.1 +22113,,,,,,,,0, +28297,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.28 +13078,92.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.8 +50667,80.0,9.0,8.0,9.0,9.0,9.0,8.0,14,2.76 +62495,91.0,9.0,9.0,9.0,9.0,9.0,9.0,27,4.63 +16927,,,,,,,,0, +46512,80.0,9.0,7.0,10.0,10.0,7.0,8.0,2,0.3 +26073,100.0,10.0,9.0,10.0,10.0,9.0,9.0,3,0.5 +8572,,,,,,,,0, +52924,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.49 +35351,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.03 +15833,,,,,,,,0, +12641,96.0,10.0,10.0,9.0,9.0,10.0,10.0,9,1.49 +29325,98.0,10.0,10.0,10.0,10.0,10.0,9.0,9,2.23 +67971,91.0,9.0,8.0,9.0,9.0,9.0,9.0,7,1.28 +6635,90.0,10.0,8.0,8.0,10.0,9.0,10.0,3,0.48 +56583,,,,,,,,0, +75745,,,,,,,,0, +3140,,,,,,,,0, +22956,100.0,10.0,10.0,10.0,8.0,6.0,8.0,2,0.63 +76775,90.0,9.0,9.0,9.0,9.0,9.0,9.0,6,0.95 +74927,92.0,9.0,9.0,10.0,10.0,10.0,8.0,5,1.16 +42712,,,,,,,,0, +31985,,,,,,,,0, +63070,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,1.21 +71047,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.94 +60237,73.0,7.0,5.0,9.0,10.0,9.0,7.0,3,0.66 +58774,98.0,10.0,9.0,9.0,10.0,10.0,9.0,10,1.52 +34622,97.0,10.0,9.0,10.0,10.0,9.0,10.0,8,1.46 +57462,95.0,10.0,9.0,10.0,10.0,9.0,10.0,23,3.63 +48609,83.0,9.0,8.0,10.0,10.0,10.0,9.0,6,1.05 +66143,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.18 +30240,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,2.9 +61096,67.0,8.0,7.0,9.0,8.0,10.0,7.0,10,1.51 +69413,,,,,,,,0, +61874,90.0,10.0,9.0,9.0,9.0,10.0,10.0,10,1.55 +75838,91.0,10.0,9.0,10.0,10.0,10.0,10.0,38,6.1 +65109,90.0,10.0,8.0,9.0,10.0,9.0,9.0,5,0.76 +45768,100.0,10.0,10.0,10.0,10.0,9.0,10.0,16,2.58 +36211,94.0,10.0,9.0,10.0,10.0,10.0,10.0,58,9.3 +40306,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.17 +60084,90.0,8.0,8.0,8.0,9.0,10.0,9.0,2,0.41 +47243,100.0,10.0,10.0,10.0,10.0,10.0,9.0,6,1.18 +74755,90.0,10.0,8.0,10.0,9.0,10.0,9.0,6,1.24 +23574,,,,,,,,0, +10186,90.0,10.0,9.0,9.0,10.0,9.0,9.0,10,1.72 +50451,,,,,,,,0, +63895,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,1.55 +22240,100.0,10.0,10.0,10.0,10.0,10.0,9.0,7,1.09 +33618,92.0,10.0,9.0,10.0,10.0,10.0,9.0,5,0.76 +64913,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.19 +41676,80.0,8.0,10.0,10.0,10.0,10.0,8.0,1,0.24 +66627,96.0,10.0,10.0,10.0,10.0,10.0,9.0,10,1.75 +72806,,,,,,,,0, +70464,93.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.61 +61872,,,,,,,,0, +13019,80.0,9.0,7.0,10.0,10.0,9.0,9.0,2,0.5 +59516,90.0,9.0,10.0,9.0,9.0,10.0,9.0,6,1.18 +21107,80.0,9.0,9.0,9.0,8.0,10.0,9.0,18,2.78 +70929,80.0,8.0,6.0,7.0,8.0,8.0,8.0,9,1.45 +49654,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.35 +34954,90.0,10.0,7.0,10.0,10.0,10.0,10.0,2,0.34 +72324,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.53 +76040,76.0,8.0,8.0,8.0,7.0,9.0,8.0,12,1.87 +71838,92.0,10.0,9.0,10.0,10.0,10.0,10.0,10,1.65 +70365,84.0,8.0,8.0,9.0,8.0,8.0,8.0,18,3.35 +35122,81.0,9.0,9.0,8.0,8.0,10.0,8.0,28,4.52 +41798,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.17 +7549,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.93 +65429,98.0,10.0,10.0,9.0,10.0,10.0,10.0,11,1.76 +38426,96.0,10.0,9.0,10.0,10.0,10.0,10.0,6,1.15 +48144,80.0,7.0,7.0,6.0,7.0,8.0,6.0,2,0.32 +17370,,,,,,,,0, +17193,96.0,10.0,10.0,10.0,9.0,9.0,9.0,23,3.5 +45735,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.34 +11727,20.0,2.0,6.0,6.0,2.0,8.0,2.0,1,0.2 +49575,,,,,,,,0, +22661,,,,,,,,0, +74831,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.54 +36257,84.0,10.0,10.0,9.0,9.0,10.0,8.0,14,2.84 +46383,93.0,10.0,10.0,9.0,9.0,10.0,9.0,3,1.17 +47610,88.0,9.0,10.0,8.0,8.0,9.0,8.0,5,0.77 +653,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.61 +58746,89.0,9.0,9.0,9.0,10.0,9.0,9.0,20,3.9 +45259,,,,,,,,0, +65662,94.0,9.0,9.0,9.0,10.0,9.0,9.0,14,2.5 +54353,89.0,10.0,10.0,9.0,10.0,10.0,10.0,7,1.14 +38702,99.0,10.0,10.0,10.0,10.0,10.0,10.0,25,4.03 +74453,91.0,10.0,9.0,10.0,10.0,10.0,9.0,52,7.96 +29151,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,2.31 +40500,90.0,9.0,9.0,10.0,10.0,10.0,10.0,2,0.36 +57978,,,,,,,,1,0.16 +60313,89.0,9.0,9.0,10.0,10.0,9.0,9.0,10,1.68 +73846,93.0,9.0,9.0,10.0,10.0,10.0,9.0,7,1.44 +62041,95.0,10.0,10.0,10.0,10.0,9.0,9.0,26,4.48 +12124,96.0,9.0,8.0,10.0,10.0,9.0,9.0,10,1.74 +12016,,,,,,,,1,0.34 +34301,80.0,9.0,9.0,10.0,9.0,10.0,9.0,3,0.68 +21140,80.0,9.0,9.0,9.0,9.0,10.0,7.0,3,0.54 +52708,,,,,,,,0, +22482,80.0,10.0,8.0,8.0,10.0,8.0,10.0,1,0.2 +6696,100.0,8.0,6.0,2.0,2.0,6.0,6.0,1,0.23 +41879,90.0,9.0,9.0,10.0,9.0,9.0,9.0,7,1.35 +53215,,,,,,,,0, +35555,,,,,,,,1,0.6 +9295,97.0,10.0,9.0,10.0,10.0,10.0,10.0,14,2.21 +22321,98.0,10.0,10.0,10.0,10.0,10.0,10.0,30,9.0 +55117,97.0,10.0,10.0,9.0,10.0,9.0,10.0,15,2.41 +15406,90.0,10.0,8.0,10.0,10.0,10.0,10.0,4,0.64 +15443,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.24 +31466,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.56 +45992,96.0,10.0,10.0,10.0,10.0,10.0,10.0,16,2.94 +17294,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.45 +3376,80.0,9.0,10.0,10.0,10.0,8.0,10.0,2,0.31 +34583,99.0,10.0,10.0,10.0,10.0,10.0,10.0,27,5.03 +22727,86.0,9.0,9.0,10.0,9.0,9.0,9.0,14,2.56 +74225,,,,,,,,0, +74953,87.0,9.0,8.0,9.0,9.0,9.0,10.0,3,0.52 +55328,80.0,9.0,8.0,10.0,9.0,9.0,8.0,9,1.42 +797,,,,,,,,0, +42638,,,,,,,,1,0.24 +45414,,,,,,,,0, +25477,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.7 +68404,98.0,10.0,9.0,10.0,10.0,10.0,10.0,9,1.63 +36162,70.0,4.0,9.0,6.0,9.0,10.0,7.0,2,0.75 +25469,87.0,9.0,8.0,10.0,10.0,10.0,9.0,3,0.53 +34593,80.0,9.0,9.0,9.0,8.0,8.0,8.0,2,1.2 +67120,88.0,9.0,8.0,10.0,10.0,10.0,9.0,13,2.13 +37946,99.0,10.0,10.0,10.0,10.0,9.0,10.0,15,2.46 +19105,,,,,,,,0, +38167,90.0,9.0,9.0,9.0,9.0,9.0,9.0,2,0.32 +44440,100.0,10.0,10.0,8.0,10.0,10.0,10.0,1,0.18 +39031,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.5 +7474,93.0,10.0,9.0,10.0,10.0,10.0,10.0,17,2.63 +49935,97.0,10.0,10.0,10.0,10.0,9.0,9.0,33,5.0 +14958,60.0,8.0,6.0,5.0,8.0,8.0,6.0,5,0.88 +29210,,,,,,,,0, +23469,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.66 +74817,99.0,10.0,10.0,10.0,10.0,10.0,10.0,25,3.85 +6472,93.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.58 +52266,,,,,,,,0, +50132,90.0,9.0,9.0,9.0,9.0,10.0,9.0,8,1.78 +30475,40.0,10.0,4.0,8.0,8.0,10.0,8.0,1,1.0 +63448,83.0,8.0,9.0,9.0,9.0,10.0,9.0,6,1.38 +4457,91.0,9.0,9.0,10.0,10.0,10.0,9.0,11,3.4 +24626,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,1.72 +52316,89.0,9.0,9.0,9.0,10.0,9.0,9.0,7,1.26 +35563,94.0,10.0,10.0,10.0,10.0,10.0,10.0,13,2.0 +71719,80.0,10.0,4.0,10.0,10.0,10.0,10.0,2,0.59 +65528,75.0,7.0,9.0,7.0,7.0,8.0,7.0,4,0.71 +1556,85.0,9.0,6.0,10.0,10.0,9.0,9.0,4,0.65 +70425,92.0,10.0,10.0,10.0,10.0,9.0,9.0,25,3.85 +60632,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.33 +22202,97.0,10.0,10.0,10.0,10.0,10.0,10.0,7,1.25 +1122,87.0,9.0,10.0,10.0,9.0,10.0,9.0,3,0.53 +60275,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,2.2 +33571,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.5 +57024,97.0,10.0,10.0,10.0,10.0,10.0,10.0,40,6.06 +75873,,,,,,,,0, +37489,100.0,10.0,10.0,10.0,10.0,8.0,8.0,2,0.51 +67795,93.0,9.0,9.0,8.0,9.0,9.0,10.0,6,0.96 +17054,80.0,8.0,8.0,10.0,10.0,10.0,8.0,1,0.23 +65996,93.0,9.0,10.0,8.0,9.0,10.0,9.0,9,1.57 +74219,96.0,10.0,9.0,10.0,10.0,10.0,10.0,38,8.09 +26726,90.0,9.0,9.0,9.0,10.0,10.0,8.0,6,2.43 +67401,88.0,9.0,9.0,9.0,9.0,10.0,9.0,17,2.67 +2838,,,,,,,,0, +20778,97.0,10.0,10.0,10.0,10.0,9.0,9.0,7,1.17 +47636,,,,,,,,0, +22150,98.0,10.0,10.0,10.0,10.0,10.0,10.0,40,6.45 +30734,,,,,,,,0, +42345,,,,,,,,2,0.34 +60750,100.0,9.0,9.0,8.0,10.0,9.0,9.0,2,0.67 +64659,,,,,,,,0, +39987,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.97 +75974,67.0,7.0,9.0,7.0,6.0,10.0,8.0,6,1.19 +36829,90.0,10.0,10.0,10.0,10.0,9.0,9.0,7,1.25 +68754,90.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.31 +23105,100.0,10.0,10.0,9.0,10.0,9.0,10.0,3,0.46 +62718,83.0,9.0,9.0,9.0,9.0,10.0,8.0,19,3.54 +37117,85.0,9.0,8.0,9.0,10.0,10.0,9.0,8,1.22 +21553,96.0,9.0,10.0,9.0,10.0,10.0,10.0,6,1.06 +66443,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.19 +24229,73.0,7.0,8.0,7.0,8.0,9.0,7.0,3,0.81 +71280,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.15 +42015,94.0,10.0,10.0,10.0,10.0,9.0,10.0,30,4.59 +10557,83.0,9.0,8.0,8.0,9.0,9.0,8.0,7,1.12 +26039,80.0,9.0,7.0,10.0,10.0,8.0,9.0,3,0.6 +69757,,,,,,,,0, +35648,80.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.64 +3988,100.0,10.0,9.0,9.0,10.0,9.0,9.0,3,0.56 +42368,,,,,,,,0, +24145,,,,,,,,0, +22180,90.0,10.0,8.0,10.0,10.0,10.0,10.0,5,0.98 +14663,,,,,,,,0, +43748,,,,,,,,0, +831,,,,,,,,0, +21606,,,,,,,,0, +7493,,,,,,,,0, +27030,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +1342,80.0,9.0,9.0,9.0,7.0,9.0,8.0,5,0.86 +12797,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.97 +75696,,,,,,,,0, +24527,83.0,8.0,7.0,10.0,10.0,7.0,8.0,6,0.99 +8785,100.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.39 +46196,80.0,8.0,10.0,10.0,10.0,10.0,8.0,1,0.2 +38022,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.6 +58011,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,2.47 +41041,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.19 +49344,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.68 +4413,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.96 +39248,,,,,,,,0, +22579,93.0,9.0,9.0,10.0,10.0,9.0,10.0,8,1.24 +53150,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.03 +14050,,,,,,,,0, +62453,87.0,9.0,8.0,10.0,10.0,10.0,9.0,23,4.34 +69762,94.0,9.0,10.0,10.0,10.0,9.0,9.0,7,1.21 +40815,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.68 +63104,87.0,10.0,7.0,9.0,10.0,9.0,8.0,4,0.64 +64429,91.0,10.0,10.0,10.0,9.0,9.0,9.0,14,2.41 +21177,99.0,10.0,10.0,10.0,10.0,10.0,10.0,20,3.26 +20864,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,1.48 +29692,93.0,9.0,8.0,10.0,10.0,10.0,9.0,6,0.92 +72035,93.0,10.0,10.0,10.0,10.0,10.0,8.0,8,1.46 +11649,97.0,10.0,9.0,10.0,10.0,10.0,9.0,47,7.16 +73771,80.0,7.0,7.0,7.0,7.0,7.0,7.0,3,0.56 +67997,,,,,,,,0, +47393,,,,,,,,1,0.18 +58251,,,,,,,,0, +64884,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.48 +16368,100.0,8.0,10.0,10.0,10.0,10.0,8.0,1,0.23 +35905,98.0,10.0,10.0,10.0,10.0,10.0,10.0,25,4.05 +66407,98.0,10.0,9.0,9.0,10.0,10.0,10.0,8,1.42 +56946,96.0,10.0,8.0,10.0,10.0,10.0,9.0,16,2.46 +22102,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.3 +72251,90.0,9.0,9.0,9.0,9.0,9.0,9.0,2,0.39 +10617,100.0,10.0,9.0,10.0,10.0,10.0,9.0,2,1.02 +53501,87.0,9.0,8.0,10.0,9.0,10.0,8.0,6,0.99 +37205,92.0,10.0,10.0,9.0,9.0,8.0,9.0,5,1.29 +23234,97.0,10.0,9.0,9.0,10.0,9.0,9.0,13,2.07 +39550,100.0,10.0,10.0,8.0,7.0,10.0,10.0,2,0.4 +47907,90.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.85 +74493,100.0,10.0,10.0,10.0,8.0,9.0,9.0,2,0.46 +860,,,,,,,,0, +76512,98.0,10.0,10.0,10.0,10.0,10.0,10.0,14,2.15 +52114,76.0,9.0,9.0,8.0,8.0,9.0,8.0,16,2.51 +55405,72.0,7.0,7.0,8.0,8.0,6.0,7.0,5,0.86 +37347,98.0,10.0,10.0,10.0,10.0,10.0,10.0,20,3.47 +52755,89.0,10.0,9.0,10.0,10.0,9.0,9.0,8,1.28 +12742,98.0,10.0,10.0,10.0,10.0,10.0,10.0,53,8.46 +75166,93.0,10.0,9.0,10.0,10.0,9.0,9.0,6,1.38 +35747,96.0,10.0,8.0,10.0,10.0,10.0,10.0,5,1.01 +55927,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.77 +17070,93.0,10.0,9.0,10.0,10.0,10.0,10.0,6,1.19 +7754,,,,,,,,0, +48556,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.27 +32046,84.0,8.0,9.0,9.0,9.0,10.0,9.0,5,0.99 +9213,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.79 +47448,97.0,10.0,10.0,10.0,10.0,9.0,10.0,31,5.25 +61174,100.0,10.0,10.0,9.0,10.0,10.0,9.0,5,0.98 +4543,,,,,,,,4,0.61 +30431,84.0,9.0,7.0,10.0,10.0,10.0,10.0,6,0.95 +1530,85.0,9.0,8.0,10.0,10.0,9.0,9.0,10,1.76 +50025,92.0,10.0,9.0,9.0,10.0,10.0,9.0,10,1.71 +65160,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.21 +75170,,,,,,,,0, +47996,,,,,,,,0, +543,88.0,9.0,8.0,10.0,10.0,10.0,9.0,10,1.86 +76062,93.0,9.0,7.0,10.0,10.0,9.0,9.0,3,0.55 +19495,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.34 +70018,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.62 +63995,,,,,,,,0, +59803,86.0,9.0,9.0,9.0,9.0,10.0,9.0,16,2.68 +8360,,,,,,,,0, +45658,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.93 +29199,92.0,10.0,10.0,10.0,9.0,10.0,8.0,13,2.25 +13488,92.0,10.0,10.0,9.0,10.0,10.0,9.0,5,1.72 +13241,96.0,10.0,9.0,8.0,8.0,10.0,9.0,5,0.89 +68322,90.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.31 +3496,80.0,10.0,10.0,10.0,10.0,10.0,7.0,2,0.36 +24486,90.0,10.0,9.0,9.0,9.0,9.0,9.0,6,0.96 +46143,70.0,6.0,8.0,7.0,9.0,7.0,8.0,2,0.4 +6795,,,,,,,,1,0.17 +33451,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.9 +57407,98.0,10.0,10.0,10.0,10.0,9.0,10.0,24,3.85 +40319,,,,,,,,0, +44039,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.06 +28231,93.0,9.0,9.0,10.0,9.0,10.0,9.0,3,0.58 +4376,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.37 +2923,97.0,10.0,10.0,10.0,9.0,9.0,9.0,8,1.55 +40772,,,,,,,,1,0.17 +55022,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,2.0 +53267,84.0,8.0,9.0,10.0,9.0,9.0,7.0,10,1.71 +56783,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.28 +25904,84.0,9.0,8.0,10.0,10.0,9.0,9.0,10,2.0 +15257,95.0,9.0,10.0,10.0,9.0,9.0,9.0,4,1.9 +24257,,,,,,,,0, +18596,60.0,6.0,7.0,10.0,7.0,7.0,6.0,3,0.49 +75110,100.0,10.0,10.0,10.0,10.0,9.0,10.0,18,3.38 +32439,60.0,6.0,2.0,4.0,6.0,8.0,4.0,2,0.32 +33263,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,1.05 +73764,,,,,,,,1,0.16 +2088,86.0,8.0,9.0,9.0,9.0,9.0,8.0,10,3.85 +63252,80.0,10.0,8.0,9.0,10.0,10.0,8.0,2,0.38 +30255,99.0,10.0,10.0,10.0,10.0,10.0,10.0,16,2.79 +56439,96.0,10.0,10.0,10.0,10.0,10.0,10.0,10,1.6 +45438,,,,,,,,0, +10501,,,,,,,,1,0.15 +20711,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.62 +31228,,,,,,,,0, +60368,93.0,10.0,9.0,9.0,10.0,9.0,10.0,5,0.83 +26482,,,,,,,,0, +32367,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.23 +46751,94.0,10.0,9.0,10.0,10.0,9.0,10.0,39,6.13 +29442,90.0,10.0,9.0,10.0,10.0,10.0,10.0,6,1.23 +46330,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.05 +44032,90.0,9.0,9.0,10.0,10.0,10.0,9.0,11,1.94 +56090,,,,,,,,0, +11701,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.86 +22969,80.0,8.0,7.0,8.0,9.0,8.0,8.0,5,0.94 +40894,,,,,,,,0, +34671,,,,,,,,0, +72482,77.0,9.0,8.0,10.0,9.0,9.0,9.0,23,3.52 +66792,83.0,10.0,9.0,9.0,9.0,9.0,9.0,12,2.07 +2553,93.0,10.0,9.0,10.0,10.0,8.0,9.0,3,0.62 +5679,,,,,,,,0, +69540,95.0,10.0,10.0,10.0,10.0,10.0,9.0,12,1.95 +57417,97.0,10.0,10.0,10.0,10.0,9.0,9.0,15,2.69 +35958,,,,,,,,0, +65133,94.0,10.0,7.0,7.0,9.0,8.0,9.0,8,1.42 +1204,95.0,10.0,9.0,10.0,10.0,10.0,10.0,4,1.09 +22204,80.0,10.0,8.0,10.0,6.0,6.0,8.0,1,0.24 +47802,,,,,,,,0, +65063,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.94 +55773,96.0,10.0,8.0,10.0,10.0,10.0,10.0,5,0.91 +24335,92.0,10.0,8.0,10.0,10.0,10.0,9.0,5,0.91 +17682,80.0,10.0,10.0,5.0,5.0,9.0,8.0,3,0.5 +59654,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.18 +37119,93.0,10.0,9.0,10.0,10.0,10.0,9.0,17,2.59 +39101,88.0,9.0,9.0,9.0,9.0,9.0,9.0,10,1.64 +74430,,,,,,,,0, +4342,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,1.34 +7125,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,1.0 +8372,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.16 +7320,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,2.25 +53894,,,,,,,,0, +75717,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.18 +67250,,,,,,,,0, +66292,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,2.52 +65685,100.0,10.0,10.0,10.0,10.0,9.0,8.0,6,0.98 +36358,92.0,9.0,9.0,10.0,10.0,10.0,9.0,12,1.95 +67755,92.0,10.0,10.0,10.0,10.0,8.0,9.0,14,2.41 +57264,93.0,9.0,9.0,9.0,9.0,9.0,9.0,4,0.85 +17403,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.04 +24086,,,,,,,,2,0.31 +26295,,,,,,,,0, +45536,,,,,,,,0, +32139,100.0,10.0,10.0,10.0,10.0,10.0,10.0,15,2.47 +73345,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.96 +60455,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.31 +13234,93.0,10.0,10.0,10.0,10.0,10.0,10.0,14,2.3 +4160,89.0,10.0,10.0,9.0,10.0,8.0,9.0,9,1.69 +379,100.0,10.0,10.0,10.0,10.0,10.0,6.0,1,0.29 +51768,,,,,,,,0, +11455,,,,,,,,0, +22318,98.0,10.0,10.0,10.0,10.0,10.0,10.0,11,3.88 +60624,93.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.53 +37334,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,1.72 +31175,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.2 +47307,91.0,10.0,9.0,10.0,9.0,9.0,10.0,19,3.02 +11753,,,,,,,,0, +57693,100.0,10.0,9.0,10.0,10.0,9.0,10.0,4,0.63 +9148,100.0,10.0,10.0,10.0,10.0,9.0,10.0,14,2.25 +31252,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.8 +40734,100.0,10.0,10.0,10.0,10.0,10.0,9.0,7,1.42 +33540,100.0,10.0,10.0,10.0,10.0,10.0,8.0,6,1.36 +59048,100.0,10.0,10.0,10.0,10.0,9.0,10.0,8,3.75 +29126,100.0,6.0,6.0,6.0,6.0,5.0,6.0,3,0.5 +55080,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.18 +74732,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.23 +19423,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,1.36 +16924,,,,,,,,0, +22465,,,,,,,,0, +12878,96.0,10.0,10.0,10.0,10.0,10.0,10.0,32,5.11 +50449,95.0,10.0,9.0,9.0,10.0,9.0,9.0,11,1.8 +22380,80.0,9.0,8.0,9.0,10.0,9.0,9.0,7,1.84 +607,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.25 +12949,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.51 +24094,,,,,,,,0, +62518,,,,,,,,0, +71618,79.0,8.0,8.0,9.0,8.0,9.0,8.0,14,3.44 +39255,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.76 +5902,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.97 +33850,90.0,10.0,10.0,10.0,10.0,10.0,9.0,48,7.46 +20506,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.59 +21137,,,,,,,,0, +16246,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.16 +43449,98.0,10.0,10.0,10.0,10.0,10.0,9.0,19,3.73 +39682,,,,,,,,0, +42976,96.0,10.0,10.0,10.0,10.0,10.0,10.0,38,6.0 +45205,95.0,10.0,9.0,10.0,10.0,10.0,9.0,4,0.72 +55995,,,,,,,,0, +52530,,,,,,,,1,0.15 +75891,,,,,,,,0, +30347,,,,,,,,0, +54041,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,1.33 +7994,100.0,10.0,10.0,10.0,10.0,8.0,10.0,2,0.37 +76704,,,,,,,,0, +65467,,,,,,,,0, +72030,60.0,8.0,8.0,10.0,8.0,8.0,10.0,1,0.19 +2806,98.0,10.0,9.0,10.0,10.0,9.0,10.0,41,6.8 +38906,97.0,10.0,10.0,10.0,10.0,10.0,8.0,6,1.18 +22016,,,,,,,,0, +75556,98.0,10.0,10.0,10.0,10.0,9.0,10.0,9,1.75 +70936,100.0,10.0,9.0,10.0,10.0,10.0,9.0,6,1.64 +60370,90.0,10.0,8.0,10.0,10.0,9.0,10.0,4,0.72 +36394,95.0,10.0,10.0,10.0,10.0,9.0,10.0,16,2.67 +61586,100.0,10.0,10.0,10.0,10.0,9.0,10.0,12,2.07 +68948,,,,,,,,0, +68109,,,,,,,,0, +188,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.17 +36942,100.0,10.0,10.0,9.0,9.0,10.0,9.0,2,0.36 +69997,90.0,10.0,9.0,10.0,10.0,9.0,9.0,2,0.39 +48417,,,,,,,,0, +24571,40.0,6.0,4.0,10.0,8.0,6.0,4.0,1,0.54 +5134,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.33 +51773,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.39 +63512,,,,,,,,0, +74794,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,2.56 +29803,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.17 +12240,84.0,9.0,9.0,9.0,10.0,9.0,8.0,9,2.48 +63499,,,,,,,,0, +16466,,,,,,,,0, +35618,20.0,2.0,2.0,2.0,2.0,2.0,2.0,1,0.33 +20692,98.0,10.0,9.0,10.0,10.0,9.0,9.0,8,1.45 +65410,96.0,10.0,9.0,9.0,10.0,9.0,9.0,5,0.88 +65694,74.0,7.0,6.0,7.0,8.0,8.0,7.0,7,1.17 +39942,,,,,,,,0, +51640,,,,,,,,0, +43551,,,,,,,,0, +72097,,,,,,,,0, +22892,80.0,9.0,7.0,9.0,10.0,8.0,8.0,5,1.03 +72864,85.0,9.0,9.0,9.0,9.0,9.0,9.0,19,3.08 +40773,98.0,10.0,9.0,10.0,10.0,9.0,10.0,12,2.88 +35580,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,2.21 +11039,97.0,9.0,10.0,9.0,9.0,10.0,9.0,6,1.24 +12658,85.0,9.0,8.0,10.0,9.0,9.0,9.0,30,4.95 +5706,69.0,7.0,6.0,8.0,8.0,9.0,8.0,11,2.01 +69020,,,,,,,,0, +69118,,,,,,,,0, +19039,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.42 +54741,,,,,,,,0, +58665,,,,,,,,0, +67416,,,,,,,,0, +12727,,,,,,,,0, +59787,80.0,8.0,10.0,8.0,10.0,10.0,10.0,1,0.46 +70898,80.0,8.0,7.0,9.0,9.0,10.0,8.0,5,0.82 +30053,88.0,9.0,9.0,9.0,9.0,9.0,9.0,12,1.99 +16200,97.0,10.0,10.0,10.0,10.0,9.0,10.0,22,3.65 +59221,84.0,7.0,8.0,9.0,10.0,8.0,8.0,5,1.02 +48817,85.0,9.0,9.0,10.0,10.0,10.0,9.0,22,3.71 +58615,,,,,,,,0, +12309,85.0,9.0,9.0,9.0,9.0,9.0,9.0,12,1.97 +17812,78.0,8.0,9.0,9.0,8.0,10.0,8.0,8,3.75 +58403,95.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.8 +51211,,,,,,,,0, +30057,80.0,9.0,9.0,9.0,7.0,10.0,9.0,3,1.43 +76506,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.39 +47492,92.0,10.0,10.0,10.0,10.0,10.0,10.0,6,2.34 +39459,91.0,10.0,9.0,10.0,10.0,9.0,9.0,17,2.71 +312,88.0,10.0,9.0,9.0,10.0,9.0,9.0,21,3.48 +62837,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.36 +55105,90.0,9.0,9.0,10.0,10.0,10.0,9.0,14,2.2 +69878,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.17 +67121,98.0,10.0,10.0,10.0,10.0,10.0,10.0,26,4.46 +54433,80.0,10.0,8.0,10.0,10.0,8.0,8.0,1,0.23 +36165,98.0,10.0,10.0,10.0,10.0,10.0,10.0,24,4.77 +69678,,,,,,,,0, +66576,80.0,8.0,8.0,8.0,8.0,8.0,6.0,1,0.28 +71928,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.41 +3779,95.0,10.0,10.0,10.0,10.0,10.0,9.0,4,1.33 +42916,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,1.88 +38605,,,,,,,,0, +65612,90.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.86 +62669,,,,,,,,1,0.21 +2144,93.0,10.0,10.0,10.0,10.0,10.0,9.0,12,2.02 +39300,95.0,10.0,10.0,10.0,10.0,10.0,9.0,8,1.48 +26376,94.0,9.0,10.0,10.0,10.0,9.0,9.0,7,1.18 +2335,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.24 +40245,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,1.77 +2729,95.0,10.0,9.0,10.0,9.0,10.0,9.0,17,3.47 +15444,97.0,9.0,10.0,9.0,10.0,10.0,9.0,7,1.2 +16353,99.0,10.0,9.0,10.0,10.0,10.0,10.0,26,4.08 +75215,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.66 +2971,98.0,10.0,10.0,10.0,10.0,9.0,10.0,18,5.57 +14701,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.29 +43795,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.31 +33123,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.19 +22413,94.0,10.0,9.0,9.0,10.0,10.0,10.0,7,1.26 +1012,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.01 +32715,,,,,,,,0, +30790,100.0,10.0,10.0,9.0,10.0,10.0,10.0,5,0.78 +36862,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.6 +43234,95.0,10.0,9.0,10.0,10.0,10.0,9.0,8,1.45 +10677,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.29 +49536,93.0,10.0,8.0,10.0,9.0,10.0,9.0,12,2.21 +52756,95.0,10.0,9.0,10.0,10.0,10.0,10.0,21,4.53 +25929,,,,,,,,0, +8857,92.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.34 +49612,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.15 +65125,,,,,,,,0, +23453,96.0,10.0,10.0,10.0,10.0,9.0,9.0,5,1.26 +7750,98.0,10.0,10.0,10.0,10.0,10.0,10.0,35,5.8 +15051,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,2.49 +15427,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.51 +46806,,,,,,,,0, +21412,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,1.43 +55275,85.0,10.0,8.0,10.0,10.0,10.0,8.0,9,1.73 +65901,91.0,9.0,9.0,9.0,10.0,9.0,9.0,7,1.15 +32187,82.0,9.0,8.0,10.0,9.0,9.0,9.0,11,2.05 +8780,,,,,,,,0, +21813,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.94 +28971,100.0,10.0,10.0,10.0,10.0,8.0,10.0,3,0.56 +26344,95.0,10.0,9.0,10.0,10.0,9.0,9.0,12,2.69 +62721,,,,,,,,0, +7051,100.0,10.0,10.0,10.0,10.0,10.0,10.0,20,3.41 +34999,83.0,9.0,8.0,10.0,9.0,10.0,9.0,20,3.3 +55590,,,,,,,,0, +29582,84.0,9.0,10.0,10.0,10.0,9.0,9.0,5,1.07 +29355,95.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.64 +2450,90.0,10.0,9.0,10.0,9.0,9.0,9.0,10,1.7 +21349,20.0,2.0,4.0,6.0,4.0,8.0,2.0,1,0.19 +17503,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,1.0 +15628,95.0,10.0,9.0,10.0,10.0,9.0,10.0,4,0.84 +52188,88.0,9.0,8.0,10.0,10.0,9.0,9.0,5,0.97 +16517,95.0,10.0,9.0,10.0,10.0,10.0,10.0,4,1.13 +35180,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +72310,80.0,9.0,7.0,10.0,9.0,10.0,9.0,3,0.53 +16438,100.0,10.0,10.0,10.0,10.0,10.0,10.0,19,4.13 +8322,,,,,,,,0, +69526,92.0,10.0,8.0,10.0,10.0,8.0,9.0,5,0.82 +20471,84.0,9.0,9.0,9.0,8.0,10.0,10.0,5,1.04 +75553,98.0,10.0,10.0,10.0,10.0,9.0,10.0,13,2.03 +69541,87.0,10.0,10.0,9.0,10.0,9.0,9.0,6,1.12 +30866,,,,,,,,0, +69398,,,,,,,,0, +3470,88.0,9.0,8.0,9.0,9.0,10.0,9.0,16,2.61 +42389,,,,,,,,0, +24022,80.0,9.0,8.0,10.0,10.0,10.0,9.0,12,2.07 +65707,98.0,10.0,10.0,10.0,10.0,10.0,9.0,12,2.13 +26367,97.0,10.0,9.0,10.0,10.0,9.0,10.0,28,4.88 +42508,75.0,8.0,7.0,8.0,8.0,9.0,9.0,5,0.86 +2707,94.0,9.0,10.0,10.0,10.0,10.0,10.0,11,1.9 +54942,90.0,8.0,10.0,9.0,10.0,10.0,10.0,2,0.97 +5132,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.73 +40039,95.0,10.0,10.0,10.0,10.0,10.0,10.0,13,2.2 +35191,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,1.22 +63527,,,,,,,,0, +21079,99.0,10.0,10.0,10.0,10.0,10.0,10.0,30,5.36 +2974,96.0,10.0,10.0,10.0,10.0,10.0,10.0,30,5.26 +5941,94.0,10.0,10.0,10.0,9.0,10.0,9.0,25,4.12 +1947,,,,,,,,0, +46106,,,,,,,,0, +52643,100.0,10.0,10.0,10.0,10.0,10.0,10.0,26,4.04 +43498,,,,,,,,0, +72451,,,,,,,,0, +67856,79.0,9.0,8.0,10.0,10.0,10.0,9.0,18,2.84 +52256,90.0,10.0,9.0,9.0,10.0,10.0,8.0,7,1.12 +45031,100.0,10.0,10.0,10.0,10.0,10.0,10.0,20,3.51 +49140,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.18 +68972,93.0,8.0,9.0,9.0,10.0,10.0,9.0,16,2.91 +63977,,,,,,,,0, +42605,,,,,,,,0, +36220,,,,,,,,0, +8702,80.0,9.0,9.0,9.0,9.0,9.0,8.0,26,4.17 +13876,,,,,,,,0, +72311,100.0,10.0,4.0,8.0,10.0,10.0,10.0,1,0.23 +57356,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.01 +62406,92.0,10.0,9.0,10.0,10.0,10.0,9.0,10,1.6 +12418,80.0,6.0,6.0,8.0,8.0,6.0,8.0,2,0.31 +49598,100.0,10.0,10.0,10.0,10.0,9.0,10.0,8,3.87 +9036,87.0,9.0,9.0,10.0,10.0,9.0,9.0,41,7.88 +3808,87.0,9.0,9.0,10.0,10.0,9.0,9.0,32,6.19 +20851,89.0,9.0,9.0,10.0,10.0,9.0,9.0,28,5.45 +19167,,,,,,,,1,0.18 +15259,81.0,8.0,9.0,10.0,10.0,9.0,9.0,28,5.28 +66645,63.0,9.0,7.0,8.0,9.0,9.0,7.0,7,1.3 +76531,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.3 +61614,100.0,8.0,8.0,10.0,10.0,8.0,8.0,1,0.31 +67375,93.0,10.0,9.0,10.0,9.0,10.0,10.0,11,1.88 +72715,95.0,10.0,10.0,10.0,10.0,9.0,10.0,13,2.38 +33124,93.0,10.0,10.0,10.0,10.0,9.0,10.0,3,2.43 +49571,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,1.74 +57841,67.0,7.0,8.0,9.0,10.0,10.0,7.0,3,0.98 +52476,99.0,10.0,10.0,10.0,10.0,9.0,10.0,14,2.73 +42506,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.38 +37739,80.0,9.0,8.0,10.0,9.0,9.0,9.0,6,0.96 +8442,,,,,,,,0, +38136,96.0,10.0,10.0,10.0,10.0,10.0,9.0,18,3.14 +9763,100.0,10.0,10.0,9.0,10.0,10.0,10.0,3,0.66 +61412,,,,,,,,0, +69551,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,1.21 +66328,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.25 +15069,,,,,,,,1,0.16 +34390,60.0,7.0,6.0,6.0,8.0,8.0,7.0,5,0.85 +61027,100.0,8.0,10.0,10.0,10.0,10.0,8.0,1,0.22 +73735,,,,,,,,1,0.16 +15207,89.0,9.0,9.0,9.0,9.0,9.0,9.0,7,1.18 +48760,83.0,8.0,8.0,9.0,9.0,9.0,9.0,14,2.31 +3082,93.0,9.0,9.0,10.0,10.0,9.0,9.0,9,1.44 +22794,93.0,10.0,10.0,9.0,10.0,9.0,9.0,20,3.43 +4318,100.0,10.0,9.0,10.0,10.0,10.0,10.0,8,1.33 +15862,95.0,10.0,10.0,10.0,10.0,10.0,10.0,19,4.49 +4421,,,,,,,,0, +8668,98.0,10.0,10.0,9.0,10.0,10.0,10.0,10,2.54 +39131,97.0,10.0,9.0,10.0,10.0,9.0,10.0,6,1.32 +31519,83.0,8.0,8.0,9.0,9.0,10.0,8.0,7,1.23 +33728,80.0,10.0,10.0,10.0,10.0,9.0,9.0,4,0.69 +10508,,,,,,,,0, +46001,90.0,9.0,9.0,9.0,10.0,10.0,9.0,21,3.37 +45151,99.0,10.0,10.0,10.0,10.0,10.0,10.0,28,4.47 +40776,,,,,,,,0, +15701,,,,,,,,0, +2583,80.0,9.0,9.0,8.0,8.0,10.0,9.0,8,1.54 +90,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.37 +22533,,,,,,,,0, +49489,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.48 +53303,71.0,7.0,8.0,7.0,6.0,8.0,7.0,7,1.21 +12087,95.0,10.0,10.0,10.0,10.0,10.0,8.0,4,0.69 +28129,,,,,,,,0, +72847,93.0,9.0,9.0,9.0,10.0,9.0,9.0,3,0.52 +43603,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.32 +56867,98.0,10.0,9.0,9.0,10.0,10.0,9.0,19,3.39 +74015,,,,,,,,0, +29764,98.0,10.0,9.0,10.0,10.0,10.0,10.0,10,1.67 +68231,,,,,,,,0, +51176,85.0,9.0,8.0,9.0,9.0,8.0,9.0,15,2.43 +37757,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.93 +53689,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.1 +3134,96.0,10.0,9.0,10.0,10.0,10.0,10.0,40,6.63 +53804,100.0,10.0,10.0,10.0,10.0,10.0,10.0,17,3.11 +15093,96.0,10.0,10.0,10.0,10.0,9.0,10.0,22,3.91 +5660,95.0,10.0,10.0,10.0,10.0,9.0,10.0,4,1.45 +51631,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.59 +58653,70.0,7.0,10.0,10.0,10.0,10.0,7.0,2,0.37 +63288,100.0,10.0,10.0,10.0,10.0,9.0,10.0,15,2.85 +2239,,,,,,,,0, +16191,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.24 +74425,,,,,,,,0, +44156,,,,,,,,1,0.16 +6848,,,,,,,,1,0.16 +37157,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.24 +39449,80.0,10.0,8.0,10.0,10.0,8.0,8.0,1,0.18 +45487,93.0,9.0,8.0,10.0,10.0,8.0,8.0,3,0.51 +22960,100.0,10.0,10.0,10.0,10.0,9.0,10.0,10,2.07 +45492,,,,,,,,0, +34423,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,1.72 +76059,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.27 +16240,95.0,10.0,9.0,10.0,10.0,10.0,10.0,32,5.0 +19046,92.0,10.0,10.0,10.0,9.0,9.0,9.0,13,2.34 +39183,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.23 +56155,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.18 +49045,,,,,,,,0, +58338,,,,,,,,0, +8712,91.0,10.0,9.0,10.0,10.0,10.0,10.0,27,4.48 +69446,98.0,10.0,10.0,10.0,10.0,9.0,10.0,9,1.89 +38753,,,,,,,,0, +49373,96.0,9.0,9.0,10.0,9.0,10.0,10.0,5,0.94 +7895,98.0,10.0,10.0,10.0,10.0,10.0,10.0,19,3.24 +35309,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.18 +36256,93.0,10.0,10.0,10.0,10.0,10.0,10.0,14,2.53 +64941,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.5 +74351,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.7 +10407,94.0,10.0,9.0,10.0,10.0,10.0,9.0,7,1.12 +57893,96.0,10.0,10.0,10.0,10.0,10.0,9.0,6,0.99 +50452,93.0,9.0,9.0,10.0,10.0,9.0,9.0,9,1.55 +32338,87.0,9.0,10.0,9.0,9.0,9.0,9.0,9,1.72 +7192,,,,,,,,0, +17976,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.55 +73258,60.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.24 +73330,80.0,10.0,10.0,10.0,10.0,9.0,9.0,2,0.81 +8604,,,,,,,,0, +15984,,,,,,,,0, +33469,93.0,10.0,9.0,10.0,10.0,10.0,9.0,10,1.74 +48290,87.0,10.0,10.0,10.0,9.0,10.0,9.0,3,0.57 +7649,95.0,10.0,9.0,10.0,10.0,10.0,9.0,16,2.57 +37426,80.0,9.0,8.0,9.0,8.0,9.0,9.0,5,0.81 +1528,,,,,,,,0, +15651,89.0,9.0,9.0,10.0,10.0,10.0,9.0,13,2.48 +73408,92.0,10.0,9.0,9.0,10.0,10.0,9.0,5,0.85 +15866,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.32 +14386,100.0,10.0,10.0,10.0,10.0,9.0,9.0,13,3.28 +35023,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.23 +15967,82.0,9.0,9.0,9.0,9.0,8.0,8.0,10,1.69 +11157,100.0,8.0,10.0,10.0,10.0,8.0,10.0,1,0.18 +32023,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.5 +20192,100.0,10.0,9.0,10.0,10.0,9.0,10.0,3,1.18 +18597,95.0,10.0,10.0,10.0,10.0,9.0,9.0,9,1.62 +5199,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.97 +45571,77.0,8.0,9.0,9.0,9.0,7.0,8.0,20,3.21 +76085,98.0,10.0,10.0,9.0,10.0,10.0,9.0,12,2.16 +1193,80.0,10.0,8.0,9.0,10.0,9.0,8.0,2,0.55 +39377,,,,,,,,0, +51718,60.0,4.0,7.0,8.0,4.0,9.0,6.0,2,0.55 +43477,100.0,6.0,8.0,6.0,8.0,8.0,8.0,1,0.21 +63746,85.0,8.0,9.0,10.0,10.0,9.0,9.0,4,0.91 +58925,55.0,7.0,10.0,8.0,8.0,9.0,6.0,4,0.72 +44339,90.0,6.0,9.0,6.0,10.0,8.0,8.0,2,0.42 +10381,94.0,10.0,10.0,10.0,10.0,9.0,10.0,21,3.39 +19109,91.0,10.0,9.0,10.0,9.0,9.0,9.0,15,2.76 +72161,94.0,10.0,9.0,10.0,10.0,10.0,10.0,14,2.51 +76211,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.43 +45478,,,,,,,,0, +29880,98.0,10.0,10.0,9.0,10.0,9.0,9.0,11,2.08 +20689,80.0,9.0,7.0,9.0,9.0,9.0,9.0,4,0.75 +5338,95.0,10.0,9.0,10.0,10.0,10.0,9.0,22,3.79 +61895,93.0,10.0,10.0,10.0,10.0,9.0,9.0,16,2.93 +6138,95.0,10.0,10.0,10.0,10.0,10.0,9.0,24,4.09 +74117,,,,,,,,0, +23353,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.55 +71437,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.19 +14786,,,,,,,,0, +50664,,,,,,,,0, +36411,95.0,10.0,9.0,10.0,9.0,10.0,9.0,4,0.83 +63115,,,,,,,,0, +58157,60.0,10.0,4.0,10.0,10.0,10.0,8.0,1,0.2 +36868,80.0,9.0,7.0,7.0,9.0,10.0,8.0,3,0.58 +1124,,,,,,,,0, +6548,80.0,8.0,9.0,10.0,9.0,9.0,8.0,4,0.76 +9930,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.36 +5958,80.0,10.0,9.0,9.0,9.0,10.0,9.0,6,0.97 +31930,89.0,10.0,10.0,10.0,10.0,9.0,9.0,13,2.09 +20072,,,,,,,,1,0.16 +65637,,,,,,,,0, +49434,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.25 +49985,75.0,7.0,9.0,9.0,9.0,9.0,7.0,4,2.14 +689,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.74 +448,89.0,9.0,8.0,10.0,10.0,10.0,10.0,15,2.57 +65397,91.0,10.0,10.0,8.0,9.0,9.0,10.0,14,4.67 +71368,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.85 +21913,85.0,9.0,9.0,10.0,10.0,9.0,9.0,17,3.86 +67932,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.32 +19655,,,,,,,,1,0.18 +10967,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,2.0 +20862,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.19 +5319,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.72 +61846,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.61 +61269,97.0,10.0,10.0,10.0,10.0,10.0,10.0,25,4.31 +48098,93.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.6 +69562,97.0,10.0,10.0,10.0,10.0,9.0,10.0,23,3.97 +30907,93.0,10.0,9.0,10.0,10.0,9.0,9.0,9,4.66 +52371,90.0,10.0,10.0,10.0,10.0,9.0,9.0,4,0.77 +59123,97.0,10.0,8.0,10.0,10.0,10.0,10.0,6,1.07 +27795,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.96 +72371,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.43 +49604,,,,,,,,1,0.17 +15409,80.0,8.0,4.0,9.0,9.0,7.0,7.0,5,0.87 +20006,96.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.86 +22855,100.0,10.0,9.0,10.0,10.0,9.0,9.0,3,0.53 +32646,,,,,,,,0, +3648,83.0,8.0,7.0,9.0,9.0,9.0,8.0,8,2.67 +5628,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.79 +44285,90.0,8.0,9.0,9.0,9.0,9.0,8.0,2,0.36 +2734,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.11 +33531,,,,,,,,0, +47700,87.0,10.0,9.0,9.0,8.0,10.0,9.0,18,3.05 +6332,,,,,,,,0, +11830,,,,,,,,0, +57795,80.0,8.0,6.0,8.0,10.0,10.0,8.0,1,0.19 +4801,,,,,,,,0, +32947,100.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.22 +49215,91.0,9.0,9.0,9.0,10.0,9.0,9.0,18,3.33 +63627,,,,,,,,0, +55563,93.0,10.0,9.0,10.0,10.0,10.0,9.0,3,0.55 +29648,,,,,,,,0, +15854,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,3.14 +70872,,,,,,,,0, +39416,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.71 +58286,87.0,9.0,9.0,9.0,9.0,10.0,9.0,11,1.81 +51047,90.0,9.0,9.0,10.0,10.0,10.0,10.0,2,0.41 +63786,87.0,9.0,9.0,10.0,8.0,10.0,8.0,3,0.63 +8352,100.0,9.0,10.0,8.0,10.0,9.0,9.0,2,0.48 +19795,60.0,6.0,8.0,4.0,8.0,10.0,8.0,1,0.21 +38915,,,,,,,,0, +49469,,,,,,,,0, +53127,80.0,10.0,10.0,9.0,8.0,9.0,8.0,2,0.46 +70270,96.0,9.0,9.0,10.0,10.0,9.0,9.0,5,1.22 +42229,64.0,8.0,7.0,8.0,8.0,8.0,8.0,9,1.47 +19143,97.0,10.0,10.0,9.0,10.0,10.0,10.0,13,2.07 +15219,,,,,,,,0, +523,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,1.15 +44511,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.24 +37081,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.65 +5701,80.0,8.0,4.0,10.0,10.0,10.0,8.0,1,0.18 +71574,60.0,7.0,4.0,9.0,7.0,9.0,5.0,3,0.6 +60857,98.0,10.0,10.0,10.0,10.0,10.0,9.0,17,3.05 +29951,90.0,10.0,10.0,10.0,10.0,8.0,9.0,4,0.74 +40064,96.0,10.0,10.0,8.0,9.0,9.0,10.0,5,0.86 +6656,95.0,10.0,10.0,10.0,10.0,9.0,9.0,11,1.89 +30387,88.0,9.0,9.0,10.0,10.0,10.0,10.0,5,0.79 +56602,80.0,10.0,10.0,8.0,8.0,10.0,10.0,1,0.19 +40307,93.0,10.0,7.0,10.0,10.0,10.0,9.0,3,0.58 +15284,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.02 +32745,100.0,10.0,10.0,10.0,10.0,9.0,10.0,8,1.33 +1727,100.0,10.0,10.0,9.0,10.0,10.0,10.0,7,1.19 +64559,,,,,,,,0, +65881,90.0,10.0,10.0,6.0,5.0,10.0,9.0,2,0.52 +43780,,,,,,,,0, +30896,,,,,,,,0, +2527,,,,,,,,0, +40509,,,,,,,,0, +26248,95.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.77 +37294,50.0,6.0,6.0,10.0,10.0,9.0,5.0,2,0.36 +11864,,,,,,,,0, +30503,,,,,,,,0, +1075,80.0,8.0,8.0,9.0,9.0,9.0,9.0,3,0.83 +63348,,,,,,,,1,0.16 +71244,100.0,10.0,10.0,10.0,9.0,8.0,10.0,5,0.8 +29580,,,,,,,,0, +31454,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.83 +69164,90.0,9.0,9.0,8.0,9.0,9.0,9.0,6,1.01 +74795,100.0,10.0,10.0,9.0,10.0,10.0,9.0,7,1.15 +71422,100.0,10.0,10.0,10.0,10.0,9.0,9.0,2,0.5 +39944,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,1.69 +53934,98.0,10.0,10.0,10.0,10.0,10.0,10.0,21,4.77 +72462,83.0,9.0,9.0,9.0,9.0,10.0,9.0,8,1.32 +56035,,,,,,,,0, +68632,67.0,5.0,6.0,7.0,7.0,8.0,7.0,6,2.0 +13703,85.0,9.0,8.0,10.0,9.0,9.0,8.0,8,1.92 +5518,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.19 +60248,,,,,,,,0, +43773,20.0,2.0,2.0,2.0,2.0,2.0,2.0,1,1.0 +57813,,,,,,,,1,0.19 +11734,91.0,9.0,9.0,10.0,9.0,9.0,9.0,11,1.96 +20145,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,2.37 +7383,90.0,9.0,9.0,10.0,10.0,10.0,9.0,31,5.25 +72536,93.0,9.0,9.0,10.0,10.0,10.0,10.0,4,0.64 +19533,60.0,9.0,6.0,10.0,10.0,9.0,6.0,2,0.5 +62569,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.72 +17571,,,,,,,,0, +57014,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.38 +45391,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.59 +30510,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.14 +58451,,,,,,,,0, +67976,80.0,8.0,6.0,10.0,10.0,10.0,10.0,1,0.34 +41132,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.86 +38251,88.0,9.0,9.0,10.0,10.0,10.0,8.0,5,0.83 +36417,97.0,10.0,10.0,9.0,10.0,9.0,9.0,7,1.2 +14400,67.0,7.0,7.0,7.0,7.0,7.0,7.0,6,1.12 +39509,,,,,,,,0, +40707,93.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.51 +48176,98.0,10.0,9.0,10.0,10.0,9.0,10.0,8,1.28 +12885,95.0,10.0,9.0,10.0,10.0,10.0,9.0,11,1.77 +70447,100.0,8.0,8.0,10.0,8.0,6.0,8.0,1,0.18 +74146,,,,,,,,0, +37792,,,,,,,,0, +22312,93.0,9.0,10.0,10.0,10.0,10.0,10.0,6,1.08 +18263,99.0,10.0,9.0,10.0,10.0,10.0,10.0,14,2.66 +52247,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.54 +8333,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.33 +17404,100.0,10.0,10.0,10.0,9.0,10.0,10.0,2,0.35 +23702,90.0,10.0,10.0,8.0,10.0,8.0,9.0,4,0.67 +38284,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.18 +6794,,,,,,,,0, +69614,60.0,4.0,4.0,2.0,3.0,10.0,10.0,2,0.43 +19872,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.56 +19857,86.0,9.0,9.0,10.0,10.0,10.0,9.0,11,1.74 +37474,95.0,10.0,10.0,10.0,10.0,10.0,10.0,19,3.35 +34342,97.0,10.0,10.0,9.0,10.0,10.0,10.0,21,3.94 +19235,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,1.58 +62941,,,,,,,,0, +27202,95.0,9.0,10.0,10.0,9.0,10.0,9.0,11,1.86 +455,,,,,,,,0, +54594,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +63278,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.65 +7255,78.0,8.0,8.0,10.0,9.0,9.0,8.0,9,1.48 +25205,87.0,9.0,10.0,9.0,9.0,10.0,8.0,6,0.99 +29677,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.22 +7045,,,,,,,,0, +29313,97.0,10.0,9.0,10.0,10.0,9.0,10.0,12,2.16 +26990,100.0,10.0,10.0,10.0,9.0,9.0,10.0,2,0.35 +21339,,,,,,,,0, +2148,92.0,10.0,10.0,10.0,10.0,10.0,9.0,15,2.62 +33453,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.77 +56612,,,,,,,,0, +20066,92.0,10.0,10.0,10.0,9.0,10.0,10.0,7,1.26 +66262,,,,,,,,0, +51468,91.0,9.0,10.0,9.0,9.0,10.0,9.0,7,1.15 +42673,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.65 +24466,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.33 +21455,,,,,,,,0, +29522,,,,,,,,0, +66210,90.0,9.0,8.0,8.0,9.0,10.0,9.0,4,0.72 +28286,98.0,10.0,10.0,10.0,10.0,10.0,9.0,9,1.53 +25150,,,,,,,,0, +66690,,,,,,,,0, +72383,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.05 +23833,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.7 +25188,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.18 +32620,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.21 +32837,86.0,9.0,8.0,10.0,10.0,9.0,9.0,17,3.19 +71176,100.0,9.0,9.0,10.0,10.0,9.0,10.0,2,0.36 +33942,88.0,9.0,9.0,9.0,9.0,10.0,9.0,10,1.68 +51117,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.38 +16433,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.3 +68163,100.0,10.0,10.0,10.0,10.0,8.0,10.0,3,0.51 +61526,93.0,10.0,9.0,10.0,10.0,9.0,9.0,9,1.53 +71349,85.0,10.0,9.0,8.0,9.0,10.0,8.0,4,0.68 +35003,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.27 +7691,72.0,8.0,7.0,10.0,10.0,9.0,8.0,5,0.88 +31724,100.0,10.0,9.0,10.0,10.0,10.0,10.0,6,1.3 +72846,85.0,10.0,10.0,10.0,10.0,10.0,9.0,4,2.45 +69,,,,,,,,0, +470,100.0,10.0,9.0,10.0,10.0,9.0,8.0,3,1.08 +72329,84.0,9.0,8.0,8.0,10.0,9.0,8.0,5,1.15 +23886,64.0,6.0,7.0,7.0,8.0,7.0,6.0,5,0.84 +9140,95.0,10.0,9.0,9.0,10.0,9.0,9.0,23,4.16 +3710,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.17 +71289,83.0,9.0,8.0,8.0,9.0,10.0,9.0,19,3.26 +37462,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.86 +6509,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.58 +47349,100.0,10.0,10.0,10.0,8.0,10.0,8.0,3,0.49 +66014,92.0,10.0,8.0,10.0,10.0,10.0,9.0,66,10.65 +72089,,,,,,,,0, +75658,85.0,9.0,9.0,10.0,10.0,9.0,9.0,4,0.67 +28792,93.0,10.0,9.0,10.0,10.0,10.0,9.0,42,6.67 +42665,98.0,10.0,10.0,10.0,10.0,10.0,10.0,24,4.42 +34438,84.0,9.0,8.0,8.0,9.0,8.0,9.0,21,3.37 +3374,87.0,9.0,8.0,10.0,9.0,8.0,9.0,3,0.56 +29056,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.36 +53806,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.37 +19656,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.17 +44709,96.0,10.0,10.0,10.0,10.0,10.0,10.0,18,4.19 +4063,94.0,10.0,9.0,10.0,10.0,9.0,9.0,46,7.93 +32863,95.0,10.0,10.0,9.0,10.0,10.0,9.0,19,3.15 +51703,73.0,7.0,10.0,7.0,7.0,10.0,7.0,3,0.76 +6492,84.0,8.0,8.0,9.0,8.0,8.0,8.0,5,1.03 +21604,94.0,10.0,9.0,10.0,10.0,10.0,10.0,7,1.11 +56996,,,,,,,,0, +3529,,,,,,,,0, +16726,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,1.6 +72720,,,,,,,,0, +64177,,,,,,,,0, +17348,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.27 +5354,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.96 +50982,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.35 +23148,100.0,10.0,8.0,10.0,10.0,8.0,8.0,1,0.17 +58450,80.0,9.0,7.0,9.0,9.0,10.0,8.0,2,0.47 +47417,90.0,10.0,10.0,10.0,10.0,10.0,9.0,16,2.65 +50435,,,,,,,,0, +62266,,,,,,,,0, +13743,,,,,,,,2,0.32 +25783,93.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.6 +66228,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.89 +48938,100.0,10.0,10.0,10.0,10.0,9.0,9.0,2,0.39 +44173,93.0,10.0,9.0,10.0,10.0,10.0,9.0,8,1.42 +16501,96.0,10.0,10.0,10.0,9.0,10.0,9.0,11,1.99 +9733,99.0,10.0,10.0,10.0,10.0,10.0,10.0,22,3.59 +22820,85.0,9.0,9.0,10.0,10.0,10.0,9.0,40,8.96 +11747,80.0,9.0,10.0,10.0,10.0,10.0,7.0,3,0.68 +50480,80.0,8.0,7.0,9.0,9.0,9.0,7.0,2,1.25 +55422,20.0,2.0,4.0,6.0,4.0,6.0,4.0,1,0.39 +69802,,,,,,,,0, +46363,,,,,,,,0, +48395,80.0,9.0,10.0,9.0,8.0,9.0,8.0,2,0.34 +41576,,,,,,,,1,0.16 +515,93.0,9.0,10.0,9.0,9.0,9.0,9.0,17,3.19 +69600,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,1.26 +72986,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.18 +55754,,,,,,,,0, +63250,,,,,,,,0, +67292,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.27 +35834,92.0,10.0,10.0,10.0,9.0,10.0,9.0,12,2.17 +60185,,,,,,,,0, +66917,80.0,9.0,9.0,10.0,10.0,10.0,9.0,4,0.74 +38354,,,,,,,,1,0.39 +27053,67.0,7.0,9.0,7.0,8.0,10.0,7.0,3,0.54 +75570,,,,,,,,0, +6818,99.0,10.0,10.0,10.0,10.0,10.0,10.0,25,4.46 +12049,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.67 +61293,90.0,9.0,10.0,10.0,10.0,10.0,8.0,6,1.1 +27560,83.0,9.0,7.0,10.0,10.0,9.0,9.0,7,1.43 +4007,91.0,10.0,9.0,10.0,10.0,10.0,9.0,18,2.97 +27193,80.0,,,,,,,1,0.18 +23709,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.69 +46150,97.0,10.0,10.0,9.0,10.0,10.0,9.0,13,2.22 +29292,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.24 +47282,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.2 +18847,99.0,10.0,10.0,10.0,10.0,10.0,10.0,16,3.78 +51043,,,,,,,,0, +18103,,,,,,,,0, +74468,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.6 +50651,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,1.38 +6805,56.0,6.0,8.0,7.0,7.0,9.0,6.0,10,1.92 +57977,96.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.89 +32226,93.0,10.0,10.0,10.0,10.0,9.0,9.0,12,2.07 +45431,90.0,9.0,9.0,9.0,9.0,9.0,9.0,2,0.43 +36747,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.39 +38348,87.0,9.0,9.0,9.0,9.0,10.0,9.0,12,3.24 +11162,76.0,9.0,8.0,8.0,8.0,10.0,8.0,10,1.8 +24154,97.0,10.0,9.0,10.0,10.0,9.0,9.0,6,0.99 +37781,84.0,9.0,9.0,9.0,9.0,9.0,9.0,19,3.15 +4019,87.0,9.0,9.0,8.0,9.0,9.0,9.0,3,0.54 +45395,86.0,10.0,8.0,10.0,10.0,10.0,9.0,13,2.22 +37606,100.0,10.0,10.0,10.0,10.0,9.0,10.0,14,4.16 +46947,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.53 +43588,100.0,10.0,9.0,10.0,10.0,10.0,10.0,6,0.96 +52061,100.0,9.0,9.0,10.0,10.0,10.0,9.0,3,0.54 +18308,95.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.72 +58076,,,,,,,,0, +7085,,,,,,,,0, +35806,92.0,9.0,9.0,10.0,10.0,9.0,10.0,17,2.93 +6385,,,,,,,,0, +16666,,,,,,,,0, +76217,80.0,8.0,9.0,9.0,9.0,8.0,7.0,6,1.29 +17583,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.48 +62382,,,,,,,,0, +12434,80.0,9.0,7.0,9.0,8.0,9.0,8.0,3,0.53 +57347,70.0,7.0,7.0,10.0,7.0,10.0,7.0,2,0.71 +54148,,,,,,,,1,0.33 +40349,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.39 +70333,95.0,10.0,9.0,10.0,10.0,10.0,10.0,19,3.33 +27109,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.45 +36085,,,,,,,,1,0.17 +18486,,,,,,,,0, +7624,99.0,10.0,10.0,10.0,10.0,10.0,10.0,14,2.33 +4202,78.0,8.0,8.0,8.0,8.0,8.0,8.0,10,2.19 +45802,98.0,10.0,10.0,10.0,10.0,9.0,10.0,9,1.46 +26107,90.0,10.0,8.0,10.0,10.0,10.0,9.0,5,1.42 +75063,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.9 +44390,,,,,,,,0, +69141,99.0,10.0,10.0,10.0,10.0,9.0,10.0,15,2.69 +54268,100.0,10.0,10.0,8.0,10.0,10.0,10.0,3,0.51 +17961,,,,,,,,0, +1570,80.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.22 +37394,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,1.24 +53146,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.68 +58999,95.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.94 +23249,94.0,10.0,10.0,10.0,10.0,9.0,9.0,7,1.3 +11024,87.0,9.0,8.0,9.0,9.0,10.0,9.0,6,1.53 +60253,94.0,10.0,10.0,10.0,10.0,9.0,10.0,7,1.22 +41821,80.0,4.0,10.0,10.0,10.0,8.0,10.0,1,0.19 +57830,95.0,10.0,10.0,10.0,10.0,9.0,9.0,19,3.37 +21456,80.0,10.0,10.0,10.0,10.0,6.0,10.0,1,0.21 +32305,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,1.86 +42639,77.0,8.0,7.0,9.0,9.0,10.0,8.0,23,3.94 +35723,40.0,2.0,8.0,10.0,6.0,10.0,2.0,1,0.24 +9717,80.0,9.0,6.0,9.0,9.0,10.0,9.0,3,0.55 +72924,80.0,8.0,8.0,6.0,10.0,10.0,10.0,2,0.4 +37013,60.0,10.0,6.0,6.0,10.0,10.0,10.0,1,0.19 +10715,100.0,6.0,6.0,8.0,8.0,8.0,8.0,1,0.21 +27143,,,,,,,,0, +68237,,,,,,,,0, +18238,,,,,,,,0, +66119,92.0,10.0,9.0,10.0,10.0,9.0,9.0,18,2.93 +41131,100.0,10.0,10.0,9.0,10.0,10.0,10.0,7,1.24 +25400,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.41 +66563,78.0,9.0,8.0,8.0,8.0,10.0,9.0,13,2.18 +48121,,,,,,,,0, +48029,68.0,7.0,7.0,9.0,8.0,10.0,7.0,10,1.86 +69993,91.0,10.0,9.0,10.0,10.0,9.0,9.0,9,1.76 +62097,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.17 +30523,73.0,8.0,7.0,8.0,8.0,9.0,7.0,15,2.43 +21740,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,2.16 +76513,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.48 +29388,93.0,10.0,8.0,10.0,9.0,9.0,9.0,8,1.43 +40011,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.79 +25047,100.0,10.0,10.0,10.0,10.0,10.0,10.0,24,4.11 +311,88.0,10.0,9.0,9.0,10.0,10.0,9.0,19,3.29 +71746,89.0,9.0,10.0,10.0,9.0,9.0,9.0,7,1.27 +3336,100.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.2 +26188,98.0,10.0,10.0,10.0,10.0,9.0,9.0,16,2.81 +1790,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.9 +28357,93.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.52 +38076,,,,,,,,0, +47037,93.0,10.0,9.0,10.0,10.0,10.0,9.0,11,1.77 +361,98.0,10.0,10.0,10.0,10.0,9.0,10.0,21,3.48 +76145,90.0,9.0,9.0,10.0,9.0,9.0,9.0,10,2.38 +40659,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.7 +31817,95.0,10.0,10.0,10.0,10.0,9.0,10.0,16,2.96 +54304,95.0,10.0,10.0,10.0,10.0,10.0,10.0,9,1.49 +69074,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.8 +68349,95.0,10.0,8.0,10.0,10.0,10.0,10.0,4,0.96 +63446,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.3 +60300,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.18 +18137,90.0,10.0,10.0,9.0,10.0,9.0,9.0,9,1.55 +54883,100.0,10.0,10.0,6.0,10.0,10.0,10.0,1,0.19 +17599,88.0,10.0,8.0,10.0,10.0,9.0,9.0,6,1.17 +6733,96.0,10.0,10.0,10.0,9.0,10.0,10.0,6,1.03 +64428,,,,,,,,1,0.16 +11502,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,1.84 +8313,80.0,10.0,8.0,8.0,10.0,10.0,10.0,1,0.16 +13567,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.9 +59884,95.0,9.0,10.0,10.0,10.0,9.0,9.0,21,3.46 +6488,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.17 +40981,,,,,,,,0, +32295,87.0,10.0,9.0,9.0,10.0,9.0,7.0,3,1.25 +19179,98.0,10.0,9.0,9.0,10.0,10.0,10.0,9,1.55 +59112,99.0,10.0,10.0,10.0,10.0,9.0,10.0,17,2.8 +39879,90.0,10.0,10.0,10.0,10.0,9.0,9.0,18,2.97 +28638,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.37 +31337,,,,,,,,0, +47574,100.0,10.0,10.0,10.0,10.0,10.0,10.0,15,2.59 +65834,92.0,10.0,8.0,10.0,10.0,9.0,9.0,13,2.34 +26343,20.0,4.0,2.0,2.0,2.0,6.0,2.0,1,0.19 +32374,73.0,8.0,7.0,10.0,7.0,9.0,7.0,13,2.12 +15192,92.0,9.0,8.0,10.0,10.0,8.0,9.0,6,0.96 +181,53.0,5.0,5.0,5.0,5.0,7.0,3.0,3,0.58 +36772,,,,,,,,0, +15588,90.0,9.0,8.0,10.0,10.0,10.0,10.0,3,0.59 +39315,90.0,8.0,7.0,9.0,9.0,9.0,8.0,5,0.96 +5895,90.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.82 +34663,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,3.0 +54590,88.0,9.0,9.0,9.0,10.0,8.0,9.0,24,3.98 +50607,93.0,9.0,9.0,9.0,9.0,8.0,8.0,3,0.71 +30453,,,,,,,,0, +29212,98.0,10.0,9.0,10.0,10.0,10.0,10.0,9,1.57 +76009,,,,,,,,1,0.54 +27668,100.0,10.0,9.0,10.0,10.0,9.0,10.0,4,0.73 +22375,99.0,10.0,10.0,10.0,10.0,10.0,10.0,20,3.77 +49023,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,1.13 +1975,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.58 +22713,97.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.36 +7178,97.0,10.0,10.0,10.0,10.0,9.0,10.0,12,2.06 +3882,100.0,10.0,8.0,9.0,10.0,10.0,10.0,2,0.58 +30496,87.0,10.0,7.0,8.0,9.0,9.0,9.0,7,1.35 +45880,97.0,10.0,10.0,10.0,10.0,9.0,10.0,14,2.61 +69577,96.0,10.0,10.0,10.0,10.0,9.0,10.0,26,4.19 +16899,89.0,9.0,9.0,10.0,10.0,10.0,9.0,16,4.53 +61919,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.57 +6796,,,,,,,,0, +15229,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.38 +74364,,,,,,,,1, +38842,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.88 +53381,,,,,,,,0, +6542,90.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.77 +14594,85.0,9.0,9.0,9.0,9.0,9.0,9.0,15,2.65 +43272,92.0,10.0,9.0,10.0,10.0,10.0,9.0,15,2.68 +60473,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.16 +41230,100.0,10.0,8.0,10.0,10.0,8.0,10.0,1,0.17 +57859,83.0,9.0,10.0,10.0,10.0,9.0,9.0,7,1.21 +58692,90.0,10.0,9.0,10.0,10.0,9.0,9.0,2,0.35 +32408,53.0,6.0,5.0,7.0,7.0,8.0,7.0,4,0.66 +63484,75.0,7.0,7.0,9.0,8.0,8.0,8.0,8,1.38 +29763,80.0,9.0,9.0,10.0,9.0,9.0,9.0,8,1.42 +5428,,,,,,,,0, +20967,74.0,9.0,7.0,9.0,9.0,9.0,8.0,33,5.59 +505,,,,,,,,0, +46134,100.0,10.0,9.0,9.0,10.0,10.0,10.0,2,0.35 +30622,,,,,,,,0, +28924,96.0,10.0,10.0,9.0,10.0,9.0,9.0,9,1.86 +51208,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,2.31 +76517,40.0,10.0,2.0,10.0,4.0,6.0,4.0,1,0.23 +16508,83.0,8.0,7.0,8.0,10.0,10.0,10.0,6,1.07 +44371,,,,,,,,0, +42183,,,,,,,,1,0.18 +35528,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.61 +48986,98.0,10.0,10.0,10.0,10.0,9.0,10.0,10,1.79 +71517,,,,,,,,0, +1346,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.53 +58866,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.84 +18775,,,,,,,,0, +38594,,,,,,,,0, +29367,88.0,9.0,9.0,8.0,9.0,7.0,8.0,10,1.8 +26877,90.0,9.0,10.0,10.0,10.0,10.0,10.0,2,0.5 +76053,,,,,,,,0, +57922,,,,,,,,0, +3959,,,,,,,,0, +55965,85.0,10.0,8.0,7.0,8.0,8.0,8.0,4,0.71 +20469,20.0,6.0,6.0,2.0,4.0,10.0,6.0,1,1.0 +52815,,,,,,,,0, +31685,,,,,,,,0, +65601,80.0,9.0,9.0,9.0,8.0,9.0,8.0,4,0.95 +1970,99.0,10.0,10.0,9.0,10.0,9.0,10.0,15,2.56 +60546,98.0,10.0,10.0,10.0,10.0,10.0,10.0,32,5.75 +27775,,,,,,,,0, +59662,50.0,6.0,8.0,4.0,5.0,7.0,9.0,2,0.45 +24034,80.0,10.0,10.0,10.0,8.0,10.0,10.0,1,0.27 +43964,,,,,,,,0, +51079,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.96 +47731,97.0,10.0,10.0,10.0,10.0,10.0,9.0,22,4.05 +7055,93.0,10.0,10.0,10.0,10.0,9.0,9.0,16,2.86 +33431,,,,,,,,0, +49507,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.33 +17897,100.0,10.0,10.0,9.0,10.0,10.0,10.0,3,0.49 +63117,60.0,10.0,8.0,10.0,10.0,10.0,6.0,1,0.75 +11937,100.0,8.0,6.0,10.0,10.0,10.0,8.0,1,0.21 +8823,80.0,9.0,7.0,10.0,9.0,10.0,9.0,4,0.65 +10909,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.55 +18930,95.0,10.0,9.0,10.0,10.0,10.0,10.0,12,2.12 +695,97.0,10.0,10.0,10.0,10.0,9.0,9.0,10,1.71 +31778,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.73 +22691,71.0,8.0,8.0,9.0,9.0,8.0,8.0,7,1.88 +60324,90.0,9.0,9.0,10.0,10.0,10.0,10.0,2,0.48 +13712,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.2 +11268,100.0,10.0,10.0,10.0,8.0,10.0,8.0,1,1.0 +29645,90.0,9.0,8.0,10.0,10.0,9.0,9.0,3,0.59 +17871,,,,,,,,2,0.32 +59673,,,,,,,,0, +40483,,,,,,,,2,0.34 +8599,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.94 +71190,88.0,9.0,9.0,10.0,10.0,10.0,9.0,8,1.3 +12733,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,3.75 +7402,100.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.97 +42311,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,1.85 +47721,,,,,,,,0, +17480,60.0,7.0,7.0,7.0,6.0,8.0,6.0,7,1.34 +11626,100.0,10.0,9.0,10.0,9.0,10.0,8.0,2,0.5 +13126,95.0,9.0,10.0,9.0,10.0,10.0,10.0,4,0.82 +44196,100.0,10.0,9.0,10.0,10.0,10.0,9.0,7,1.42 +1945,97.0,10.0,9.0,10.0,10.0,10.0,10.0,26,5.1 +17941,,,,,,,,0, +50996,73.0,9.0,7.0,8.0,9.0,8.0,8.0,17,3.13 +25191,100.0,10.0,10.0,9.0,9.0,10.0,9.0,2,2.0 +4420,,,,,,,,0, +65494,95.0,9.0,10.0,10.0,10.0,10.0,9.0,12,2.32 +48235,100.0,10.0,10.0,10.0,10.0,10.0,6.0,3,0.68 +75256,95.0,10.0,10.0,10.0,10.0,9.0,10.0,17,4.08 +32283,100.0,10.0,9.0,10.0,10.0,10.0,9.0,3,0.55 +630,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.73 +21133,83.0,9.0,8.0,10.0,10.0,9.0,9.0,6,1.1 +12012,88.0,9.0,9.0,9.0,10.0,9.0,9.0,12,2.93 +19638,,,,,,,,1,0.18 +735,97.0,10.0,9.0,10.0,10.0,10.0,10.0,49,8.35 +70551,90.0,9.0,9.0,9.0,10.0,9.0,9.0,6,1.09 +65669,98.0,10.0,10.0,10.0,10.0,9.0,10.0,16,3.02 +54352,99.0,10.0,10.0,10.0,10.0,10.0,10.0,28,4.75 +20443,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.54 +27369,93.0,10.0,10.0,10.0,10.0,9.0,9.0,12,2.16 +31529,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,0.97 +61049,92.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.95 +70900,,,,,,,,1,0.17 +30942,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.27 +19212,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.21 +43687,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +10604,72.0,8.0,8.0,10.0,8.0,10.0,7.0,5,0.99 +60749,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.82 +68604,88.0,9.0,9.0,10.0,10.0,10.0,9.0,29,4.7 +20197,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.17 +19625,100.0,10.0,6.0,10.0,10.0,6.0,10.0,1,0.17 +38944,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.19 +2640,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.04 +57456,89.0,10.0,8.0,10.0,9.0,10.0,9.0,23,4.26 +54687,,,,,,,,0, +64448,97.0,10.0,10.0,10.0,10.0,10.0,9.0,20,3.33 +5267,,,,,,,,0, +53631,93.0,10.0,9.0,10.0,10.0,9.0,10.0,9,1.53 +25520,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.23 +61136,,,,,,,,1,0.18 +40930,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.79 +14812,80.0,10.0,8.0,10.0,10.0,8.0,8.0,1,0.55 +3864,93.0,10.0,9.0,10.0,10.0,9.0,8.0,8,1.33 +73810,,,,,,,,0, +15149,,,,,,,,0, +21701,87.0,10.0,9.0,9.0,10.0,9.0,9.0,3,0.76 +13460,96.0,10.0,10.0,10.0,10.0,10.0,10.0,28,5.49 +51869,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.2 +36024,60.0,8.0,9.0,9.0,4.0,10.0,9.0,2,0.53 +32999,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.43 +61838,95.0,9.0,10.0,10.0,10.0,10.0,9.0,11,2.04 +10497,,,,,,,,0, +26717,,,,,,,,2,0.35 +45007,100.0,8.0,10.0,8.0,10.0,10.0,10.0,1,1.0 +57617,80.0,8.0,8.0,7.0,9.0,9.0,8.0,11,2.02 +13804,94.0,9.0,10.0,10.0,9.0,9.0,10.0,14,2.53 +24593,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.25 +71197,,,,,,,,0, +39415,100.0,8.0,10.0,10.0,10.0,10.0,8.0,1,0.19 +15352,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.53 +19888,,,,,,,,0, +23731,90.0,10.0,10.0,10.0,10.0,10.0,9.0,8,2.93 +11424,75.0,8.0,7.0,8.0,8.0,7.0,7.0,4,0.97 +32092,,,,,,,,0, +57766,100.0,10.0,10.0,9.0,10.0,10.0,10.0,9,1.53 +44485,73.0,8.0,8.0,8.0,8.0,9.0,8.0,4,0.71 +14779,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.64 +4018,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,2.28 +70765,90.0,9.0,9.0,10.0,10.0,10.0,9.0,10,1.63 +4310,100.0,10.0,10.0,10.0,9.0,10.0,10.0,6,1.13 +67278,93.0,10.0,9.0,10.0,10.0,9.0,9.0,24,4.26 +72704,87.0,10.0,8.0,10.0,10.0,8.0,9.0,5,0.99 +49608,92.0,10.0,9.0,10.0,10.0,9.0,8.0,10,2.34 +73350,95.0,10.0,9.0,10.0,10.0,10.0,10.0,15,2.69 +61993,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,1.76 +65702,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.22 +56507,,,,,,,,0, +15715,80.0,8.0,8.0,10.0,10.0,10.0,8.0,1,0.6 +6430,,,,,,,,0, +342,73.0,7.0,7.0,10.0,8.0,9.0,8.0,3,0.6 +3220,,,,,,,,0, +48082,90.0,9.0,10.0,9.0,10.0,9.0,9.0,2,0.4 +56915,100.0,10.0,10.0,8.0,10.0,10.0,10.0,1,0.26 +38385,,,,,,,,1,0.2 +51878,88.0,10.0,8.0,10.0,10.0,10.0,9.0,19,3.33 +43893,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.16 +59139,,,,,,,,0, +26807,,,,,,,,0, +12377,87.0,8.0,10.0,9.0,9.0,10.0,8.0,6,0.98 +39577,,,,,,,,0, +67894,100.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.97 +7697,90.0,9.0,9.0,9.0,10.0,8.0,9.0,2,0.46 +46090,85.0,9.0,8.0,10.0,10.0,9.0,9.0,13,2.41 +73749,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.19 +51189,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.18 +48732,,,,,,,,0, +71026,96.0,10.0,9.0,10.0,10.0,9.0,9.0,14,2.44 +48106,90.0,10.0,8.0,9.0,10.0,10.0,10.0,4,0.98 +25702,87.0,9.0,9.0,9.0,9.0,10.0,8.0,9,1.72 +27808,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.54 +65373,97.0,10.0,10.0,10.0,10.0,10.0,10.0,37,6.07 +20144,87.0,9.0,10.0,9.0,10.0,9.0,7.0,3,0.55 +39277,,,,,,,,0, +64228,97.0,10.0,9.0,10.0,10.0,10.0,10.0,6,1.15 +7513,97.0,10.0,9.0,10.0,10.0,9.0,10.0,13,2.36 +67673,80.0,9.0,8.0,9.0,7.0,9.0,8.0,12,2.48 +5730,100.0,10.0,10.0,10.0,9.0,10.0,9.0,5,0.94 +57338,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.55 +19012,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.31 +50594,97.0,10.0,10.0,10.0,10.0,9.0,10.0,7,1.35 +70096,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,1.86 +60280,,,,,,,,0, +38969,93.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.38 +23450,94.0,9.0,9.0,10.0,10.0,8.0,9.0,8,1.45 +13815,,,,,,,,1,0.16 +34089,96.0,10.0,9.0,10.0,10.0,10.0,9.0,12,1.99 +59641,90.0,9.0,9.0,10.0,10.0,8.0,10.0,6,1.07 +51345,98.0,10.0,9.0,10.0,10.0,10.0,10.0,22,4.23 +18615,,,,,,,,0, +27237,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,2.31 +16653,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.39 +16534,88.0,9.0,8.0,10.0,10.0,9.0,9.0,15,2.59 +3642,,,,,,,,0, +71471,95.0,10.0,10.0,10.0,10.0,10.0,10.0,13,2.57 +31918,,,,,,,,0, +70282,,,,,,,,1,0.16 +43187,80.0,2.0,10.0,8.0,8.0,10.0,6.0,1,0.23 +24680,90.0,10.0,9.0,10.0,10.0,10.0,9.0,3,0.52 +25678,95.0,10.0,9.0,10.0,10.0,10.0,9.0,8,1.31 +4136,97.0,10.0,10.0,10.0,10.0,10.0,10.0,13,2.93 +51696,,,,,,,,2,0.34 +14221,,,,,,,,1,1.0 +20982,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.98 +76255,92.0,10.0,8.0,10.0,10.0,8.0,9.0,19,3.29 +44720,90.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.48 +37094,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.79 +53837,,,,,,,,0, +15745,,,,,,,,0, +52444,88.0,9.0,9.0,10.0,10.0,10.0,9.0,8,1.43 +42556,84.0,8.0,7.0,9.0,9.0,8.0,8.0,10,1.88 +26669,,,,,,,,0, +40193,97.0,10.0,10.0,10.0,10.0,10.0,9.0,12,2.35 +19789,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.76 +64675,70.0,8.0,7.0,9.0,8.0,7.0,7.0,4,0.96 +55307,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.51 +50730,90.0,10.0,8.0,10.0,9.0,9.0,9.0,10,1.86 +61940,88.0,9.0,8.0,9.0,9.0,8.0,9.0,23,4.01 +9296,88.0,9.0,9.0,9.0,9.0,10.0,10.0,22,3.79 +25691,,,,,,,,0, +63439,98.0,10.0,10.0,10.0,10.0,10.0,9.0,10,1.89 +53055,80.0,8.0,8.0,10.0,8.0,8.0,10.0,1,0.2 +6815,60.0,6.0,4.0,8.0,6.0,6.0,6.0,1,0.21 +43821,80.0,10.0,6.0,10.0,10.0,10.0,8.0,1,0.48 +68346,100.0,10.0,10.0,10.0,8.0,10.0,10.0,2,0.9 +73879,,,,,,,,0, +29640,94.0,10.0,9.0,10.0,10.0,10.0,9.0,12,2.21 +28047,88.0,8.0,8.0,9.0,10.0,10.0,9.0,6,1.06 +35663,90.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +36182,99.0,10.0,10.0,10.0,10.0,10.0,10.0,15,2.63 +14002,80.0,9.0,9.0,8.0,9.0,10.0,8.0,5,1.76 +43824,93.0,10.0,9.0,9.0,10.0,9.0,9.0,14,2.41 +25936,90.0,9.0,9.0,9.0,9.0,10.0,9.0,2,0.59 +14839,93.0,10.0,8.0,10.0,10.0,10.0,9.0,3,2.65 +61486,93.0,10.0,8.0,10.0,10.0,10.0,10.0,3,2.73 +37454,98.0,10.0,10.0,10.0,10.0,9.0,10.0,16,2.77 +49928,,,,,,,,0, +28208,80.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.54 +38326,,,,,,,,0, +40744,100.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.55 +39668,96.0,10.0,10.0,10.0,10.0,10.0,10.0,11,2.13 +52467,96.0,10.0,10.0,8.0,10.0,10.0,10.0,5,0.91 +23096,90.0,10.0,9.0,10.0,10.0,9.0,9.0,12,2.13 +429,,,,,,,,0, +1589,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.35 +35505,94.0,10.0,9.0,10.0,10.0,9.0,10.0,10,1.84 +65828,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,1.79 +50256,90.0,10.0,7.0,10.0,10.0,10.0,10.0,2,0.34 +25237,,,,,,,,0, +27537,90.0,9.0,9.0,10.0,9.0,9.0,9.0,8,1.71 +30638,,,,,,,,0, +47623,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.68 +36881,,,,,,,,0, +35576,60.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.18 +65920,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.2 +44703,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.18 +55208,80.0,8.0,8.0,8.0,8.0,10.0,10.0,1,0.43 +43793,92.0,9.0,9.0,10.0,10.0,10.0,9.0,19,3.15 +58704,,,,,,,,0, +18991,90.0,10.0,10.0,10.0,9.0,9.0,9.0,8,1.92 +35420,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.25 +67202,,,,,,,,0, +8509,,,,,,,,0, +46409,93.0,10.0,8.0,10.0,10.0,10.0,9.0,22,3.79 +17601,100.0,8.0,8.0,8.0,8.0,8.0,10.0,2,0.33 +55807,100.0,10.0,10.0,10.0,10.0,10.0,10.0,19,3.37 +30292,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.67 +17257,90.0,8.0,9.0,9.0,9.0,10.0,9.0,7,1.78 +1679,,,,,,,,0, +29393,,,,,,,,0, +22337,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.55 +12482,90.0,10.0,9.0,10.0,10.0,10.0,9.0,4,0.89 +885,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.19 +13493,,,,,,,,0, +51852,,,,,,,,0, +6341,,,,,,,,0, +35245,,,,,,,,0, +34899,,,,,,,,0, +45102,20.0,2.0,4.0,8.0,6.0,10.0,2.0,1,0.52 +63864,,,,,,,,0, +63415,60.0,10.0,10.0,10.0,4.0,10.0,6.0,1,0.18 +22767,,,,,,,,0, +48927,96.0,10.0,8.0,10.0,10.0,9.0,10.0,6,1.01 +1628,,,,,,,,0, +74470,,,,,,,,0, +69403,,,,,,,,0, +56465,96.0,10.0,9.0,10.0,10.0,9.0,10.0,18,2.97 +45757,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.19 +50869,90.0,10.0,10.0,9.0,10.0,10.0,9.0,14,2.51 +31679,,,,,,,,0, +8538,86.0,9.0,9.0,7.0,9.0,8.0,8.0,7,1.21 +4576,,,,,,,,0, +67299,94.0,10.0,9.0,10.0,10.0,10.0,9.0,7,1.22 +32884,100.0,10.0,10.0,10.0,9.0,10.0,10.0,2,2.0 +46988,74.0,8.0,7.0,10.0,10.0,9.0,8.0,20,3.73 +27497,,,,,,,,0, +65743,89.0,9.0,9.0,8.0,9.0,9.0,8.0,9,2.25 +18182,100.0,10.0,8.0,10.0,10.0,10.0,10.0,4,0.68 +76206,90.0,10.0,10.0,10.0,10.0,10.0,10.0,4,2.22 +2436,91.0,9.0,9.0,9.0,9.0,10.0,9.0,17,2.9 +56878,92.0,9.0,10.0,9.0,9.0,9.0,9.0,10,1.71 +64191,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.18 +42315,98.0,10.0,10.0,10.0,10.0,9.0,10.0,10,1.79 +22236,93.0,9.0,9.0,10.0,9.0,9.0,9.0,3,0.6 +56772,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.19 +16203,96.0,10.0,9.0,10.0,10.0,9.0,10.0,10,1.71 +53793,,,,,,,,0, +60013,100.0,10.0,10.0,10.0,9.0,10.0,8.0,3,1.14 +48875,85.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.77 +21043,80.0,6.0,6.0,10.0,10.0,10.0,6.0,1,0.19 +58612,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.43 +25567,77.0,9.0,7.0,9.0,10.0,9.0,7.0,6,1.19 +58156,100.0,10.0,9.0,10.0,10.0,9.0,10.0,3,0.83 +52399,95.0,10.0,10.0,10.0,10.0,8.0,10.0,5,0.93 +39563,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.71 +15021,92.0,10.0,9.0,10.0,10.0,10.0,9.0,10,1.76 +2754,88.0,10.0,9.0,10.0,10.0,10.0,10.0,12,2.26 +36103,97.0,10.0,9.0,10.0,10.0,10.0,9.0,6,1.09 +6849,100.0,10.0,10.0,10.0,9.0,10.0,9.0,2,0.71 +41051,97.0,10.0,10.0,10.0,10.0,10.0,9.0,7,4.88 +27906,100.0,10.0,9.0,10.0,10.0,9.0,9.0,3,0.69 +68165,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.49 +25318,96.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.95 +60330,47.0,7.0,7.0,9.0,6.0,9.0,7.0,3,0.56 +37032,88.0,9.0,8.0,9.0,10.0,10.0,9.0,9,1.47 +35465,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.48 +19234,,,,,,,,2,0.33 +11092,96.0,10.0,10.0,10.0,10.0,9.0,9.0,18,3.05 +46659,,,,,,,,0, +7344,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.34 +56625,70.0,6.0,6.0,9.0,9.0,10.0,7.0,3,0.63 +12361,89.0,10.0,7.0,9.0,9.0,10.0,9.0,14,2.37 +53575,,,,,,,,1,0.31 +16964,,,,,,,,0, +69215,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,1.21 +65328,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.33 +75390,94.0,9.0,9.0,10.0,9.0,9.0,9.0,32,5.39 +48025,93.0,9.0,9.0,10.0,10.0,10.0,9.0,6,1.18 +68861,89.0,10.0,9.0,10.0,9.0,9.0,9.0,11,2.06 +24905,,,,,,,,0, +16388,,,,,,,,0, +48186,80.0,8.0,5.0,8.0,8.0,8.0,8.0,2,0.39 +10945,,,,,,,,0, +6318,93.0,9.0,9.0,9.0,9.0,9.0,8.0,3,3.0 +4598,,,,,,,,0, +68150,90.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.61 +184,,,,,,,,0, +9321,87.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.54 +45550,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.2 +71193,,,,,,,,0, +2926,,,,,,,,0, +27641,,,,,,,,0, +10939,60.0,2.0,2.0,6.0,10.0,10.0,4.0,1,0.24 +15496,68.0,7.0,7.0,7.0,6.0,8.0,7.0,19,3.58 +38687,97.0,10.0,10.0,10.0,10.0,10.0,9.0,6,1.03 +45792,,,,,,,,0, +36020,,,,,,,,0, +42875,,,,,,,,0, +9503,,,,,,,,0, +20794,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.67 +8421,,,,,,,,0, +42782,100.0,10.0,9.0,9.0,10.0,10.0,10.0,2,0.37 +30559,85.0,9.0,9.0,9.0,9.0,10.0,10.0,4,0.75 +45482,,,,,,,,0, +50737,92.0,9.0,9.0,10.0,10.0,8.0,10.0,15,2.59 +46433,,,,,,,,1,0.18 +24439,84.0,10.0,8.0,10.0,10.0,9.0,8.0,5,1.2 +39072,,,,,,,,0, +9803,86.0,10.0,9.0,10.0,8.0,9.0,9.0,14,3.93 +42919,88.0,9.0,9.0,9.0,9.0,10.0,9.0,31,5.08 +930,95.0,10.0,10.0,10.0,10.0,9.0,10.0,11,2.06 +41880,,,,,,,,0, +20868,100.0,6.0,6.0,10.0,10.0,8.0,6.0,2,0.38 +34604,93.0,9.0,10.0,9.0,10.0,9.0,9.0,15,2.71 +105,97.0,10.0,10.0,10.0,10.0,10.0,10.0,12,2.07 +22115,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.78 +50125,87.0,10.0,10.0,9.0,9.0,10.0,9.0,7,1.27 +72509,80.0,6.0,9.0,9.0,10.0,9.0,7.0,2,0.95 +75268,40.0,2.0,4.0,4.0,2.0,6.0,2.0,1,0.21 +59554,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.56 +44087,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.22 +68152,,,,,,,,0, +2537,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.38 +67960,89.0,9.0,10.0,9.0,10.0,7.0,9.0,22,3.77 +37651,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.25 +27608,97.0,10.0,10.0,10.0,10.0,10.0,10.0,7,1.25 +55053,,,,,,,,0, +47889,97.0,10.0,10.0,10.0,10.0,9.0,10.0,28,5.03 +25629,,,,,,,,0, +59549,95.0,10.0,10.0,9.0,10.0,9.0,9.0,4,0.77 +41665,98.0,10.0,10.0,10.0,10.0,9.0,9.0,12,2.16 +69535,97.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.61 +841,100.0,9.0,10.0,10.0,10.0,10.0,9.0,2,2.0 +23054,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.85 +62583,,,,,,,,0, +914,96.0,10.0,9.0,10.0,10.0,9.0,10.0,11,2.06 +62447,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,2.5 +19781,90.0,10.0,9.0,10.0,10.0,10.0,9.0,4,0.75 +1873,,,,,,,,1,0.31 +51069,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.78 +29578,87.0,8.0,9.0,7.0,9.0,10.0,8.0,3,0.5 +52501,94.0,10.0,10.0,10.0,10.0,9.0,10.0,29,5.18 +48061,100.0,8.0,10.0,8.0,10.0,10.0,10.0,1,0.17 +66585,,,,,,,,0, +23491,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.42 +73158,70.0,7.0,8.0,10.0,10.0,8.0,6.0,2,0.46 +56056,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.2 +66104,100.0,10.0,10.0,6.0,8.0,10.0,8.0,1,1.0 +25287,90.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.36 +4410,98.0,10.0,9.0,10.0,10.0,9.0,10.0,10,2.0 +60956,93.0,9.0,9.0,9.0,9.0,10.0,9.0,6,1.16 +51266,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.2 +69552,78.0,7.0,6.0,9.0,9.0,8.0,8.0,8,1.57 +35916,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.75 +21270,100.0,10.0,9.0,10.0,10.0,10.0,9.0,2,0.47 +32702,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.17 +59273,94.0,10.0,10.0,9.0,10.0,9.0,9.0,7,1.33 +58316,84.0,10.0,9.0,10.0,9.0,9.0,10.0,5,0.94 +76479,97.0,10.0,10.0,9.0,10.0,9.0,10.0,15,2.68 +37360,,,,,,,,0, +65659,96.0,10.0,10.0,10.0,10.0,10.0,10.0,63,10.56 +60326,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.2 +76579,,,,,,,,0, +59353,75.0,8.0,9.0,9.0,9.0,7.0,9.0,7,1.24 +50535,100.0,10.0,10.0,10.0,6.0,8.0,10.0,2,0.33 +64091,,,,,,,,0, +19889,96.0,10.0,9.0,10.0,10.0,9.0,10.0,5,2.63 +35755,,,,,,,,0, +43279,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.81 +33076,91.0,9.0,9.0,8.0,8.0,8.0,9.0,9,1.62 +53544,,,,,,,,0, +34556,92.0,9.0,9.0,9.0,9.0,9.0,10.0,5,1.69 +46049,96.0,10.0,10.0,10.0,10.0,9.0,9.0,5,1.15 +24863,96.0,9.0,10.0,10.0,10.0,10.0,9.0,16,2.82 +38613,90.0,10.0,8.0,9.0,10.0,8.0,10.0,10,1.95 +75189,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.19 +60898,87.0,9.0,9.0,9.0,9.0,8.0,9.0,3,0.51 +12578,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.74 +35998,92.0,10.0,9.0,9.0,9.0,10.0,10.0,12,2.24 +70435,80.0,8.0,9.0,7.0,9.0,10.0,9.0,2,0.77 +71481,92.0,10.0,9.0,9.0,9.0,10.0,9.0,5,1.79 +12165,95.0,10.0,9.0,10.0,10.0,9.0,9.0,17,3.57 +7965,80.0,8.0,8.0,9.0,8.0,9.0,8.0,5,1.18 +34589,,,,,,,,1,0.24 +1132,93.0,9.0,9.0,10.0,9.0,9.0,9.0,8,1.45 +44116,100.0,10.0,10.0,10.0,10.0,10.0,10.0,19,3.41 +33222,98.0,10.0,10.0,10.0,10.0,9.0,10.0,10,1.67 +47195,,,,,,,,0, +5366,80.0,10.0,10.0,10.0,10.0,9.0,7.0,3,1.38 +42388,92.0,10.0,8.0,9.0,8.0,10.0,8.0,5,1.47 +48884,83.0,9.0,10.0,7.0,8.0,9.0,9.0,6,1.07 +40464,80.0,8.0,10.0,5.0,9.0,10.0,7.0,3,1.22 +42221,92.0,10.0,10.0,9.0,8.0,10.0,8.0,5,2.42 +13275,93.0,10.0,10.0,9.0,10.0,10.0,9.0,18,3.38 +72106,80.0,8.0,8.0,10.0,10.0,8.0,8.0,1,0.27 +60587,,,,,,,,0, +29563,91.0,10.0,8.0,10.0,10.0,10.0,10.0,14,2.51 +6358,90.0,10.0,9.0,10.0,10.0,8.0,9.0,4,0.72 +4150,95.0,9.0,10.0,10.0,10.0,10.0,10.0,4,0.76 +28475,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.18 +29495,96.0,10.0,9.0,10.0,10.0,9.0,9.0,12,1.97 +63310,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,2.36 +28986,,,,,,,,1,0.28 +18893,,,,,,,,0, +38023,92.0,10.0,9.0,9.0,10.0,10.0,9.0,12,3.05 +44832,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,1.61 +28191,97.0,10.0,10.0,10.0,10.0,9.0,10.0,6,1.07 +52160,,,,,,,,0, +71058,98.0,10.0,9.0,10.0,10.0,10.0,9.0,8,1.63 +21361,,,,,,,,3,0.51 +72871,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.18 +43165,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.65 +992,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.22 +50662,96.0,10.0,10.0,10.0,10.0,10.0,10.0,15,2.69 +58550,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.81 +20262,97.0,10.0,10.0,10.0,10.0,9.0,10.0,6,1.08 +21345,73.0,8.0,7.0,9.0,9.0,9.0,7.0,9,2.5 +15208,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.57 +67514,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.84 +39102,90.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.48 +46843,73.0,7.0,10.0,7.0,7.0,10.0,7.0,3,1.18 +42574,100.0,10.0,9.0,10.0,10.0,9.0,9.0,5,0.85 +55468,93.0,10.0,9.0,10.0,10.0,10.0,9.0,36,6.03 +46307,92.0,9.0,9.0,10.0,10.0,10.0,9.0,26,4.43 +32554,92.0,9.0,9.0,9.0,9.0,9.0,9.0,18,3.03 +43119,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.61 +40235,96.0,10.0,9.0,10.0,10.0,9.0,10.0,5,0.9 +46344,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.33 +59506,,,,,,,,0, +57285,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.32 +20580,100.0,10.0,10.0,10.0,10.0,10.0,8.0,2,0.39 +56769,90.0,10.0,9.0,10.0,10.0,10.0,9.0,4,1.94 +773,,,,,,,,0, +73046,93.0,10.0,9.0,10.0,10.0,10.0,9.0,6,1.06 +64803,97.0,10.0,9.0,9.0,10.0,10.0,9.0,26,5.38 +18562,82.0,8.0,8.0,10.0,9.0,9.0,8.0,18,3.07 +73640,100.0,9.0,10.0,10.0,10.0,9.0,9.0,3,0.54 +16440,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,2.49 +46509,90.0,9.0,8.0,10.0,10.0,10.0,8.0,2,0.39 +43838,80.0,7.0,8.0,9.0,10.0,10.0,7.0,2,0.81 +53358,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.63 +56820,93.0,10.0,8.0,10.0,10.0,10.0,9.0,6,1.18 +15050,99.0,10.0,10.0,10.0,10.0,10.0,10.0,30,5.03 +30167,100.0,10.0,9.0,10.0,10.0,10.0,9.0,3,0.54 +62494,,,,,,,,1,0.22 +55943,90.0,10.0,10.0,10.0,9.0,10.0,10.0,2,0.36 +34445,100.0,8.0,10.0,10.0,10.0,10.0,9.0,3,0.63 +47599,94.0,10.0,9.0,10.0,10.0,10.0,10.0,63,12.12 +59839,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.17 +74628,,,,,,,,0, +31790,97.0,10.0,10.0,10.0,10.0,10.0,9.0,6,1.07 +25668,60.0,6.0,6.0,6.0,6.0,6.0,6.0,2,0.37 +24694,96.0,10.0,9.0,10.0,10.0,9.0,8.0,5,0.98 +42581,92.0,10.0,9.0,10.0,10.0,9.0,9.0,18,3.12 +44452,,,,,,,,0, +61969,97.0,10.0,10.0,10.0,10.0,9.0,9.0,6,2.4 +51094,95.0,10.0,10.0,10.0,10.0,10.0,10.0,13,2.67 +66216,86.0,10.0,9.0,10.0,10.0,10.0,9.0,17,3.27 +70719,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.6 +58591,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,1.72 +66998,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.36 +17100,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,1.97 +74542,80.0,10.0,8.0,10.0,10.0,2.0,6.0,1,0.23 +61744,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.38 +49026,95.0,10.0,9.0,10.0,10.0,10.0,10.0,12,2.14 +55802,,,,,,,,0, +67164,90.0,10.0,9.0,10.0,10.0,10.0,9.0,2,0.37 +23184,100.0,10.0,10.0,10.0,10.0,9.0,10.0,17,2.93 +69572,97.0,10.0,10.0,10.0,10.0,9.0,10.0,12,2.47 +8805,95.0,10.0,10.0,10.0,10.0,9.0,9.0,11,1.99 +51816,,,,,,,,0, +14996,80.0,6.0,8.0,8.0,8.0,8.0,8.0,1,0.29 +26424,,,,,,,,0, +28163,,,,,,,,0, +36586,60.0,6.0,6.0,6.0,6.0,6.0,6.0,2,0.48 +48628,80.0,9.0,9.0,8.0,10.0,9.0,10.0,2,0.61 +72247,96.0,10.0,10.0,10.0,10.0,9.0,10.0,6,1.08 +29808,94.0,9.0,9.0,8.0,9.0,9.0,10.0,7,1.35 +66496,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.23 +53296,81.0,10.0,8.0,9.0,9.0,9.0,9.0,32,5.42 +53764,84.0,9.0,8.0,9.0,9.0,9.0,9.0,47,7.88 +68255,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.38 +46508,,,,,,,,0, +52475,95.0,10.0,10.0,9.0,9.0,9.0,9.0,26,4.67 +12876,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.42 +74665,96.0,9.0,9.0,9.0,9.0,10.0,9.0,37,6.73 +51313,,,,,,,,0, +61779,100.0,10.0,9.0,10.0,10.0,10.0,9.0,15,2.57 +32438,89.0,9.0,9.0,9.0,9.0,9.0,9.0,7,1.24 +41578,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.72 +40455,97.0,10.0,10.0,10.0,10.0,10.0,9.0,7,1.63 +59247,94.0,10.0,9.0,10.0,10.0,9.0,9.0,25,4.46 +5837,,,,,,,,0, +55073,100.0,10.0,10.0,10.0,10.0,10.0,10.0,17,3.02 +66519,100.0,10.0,9.0,10.0,10.0,10.0,9.0,7,1.44 +35004,97.0,10.0,10.0,9.0,10.0,9.0,10.0,15,2.92 +69686,93.0,9.0,9.0,9.0,10.0,9.0,9.0,19,3.52 +50061,,,,,,,,0, +72139,98.0,10.0,10.0,10.0,10.0,9.0,10.0,11,2.26 +37888,79.0,8.0,8.0,9.0,8.0,7.0,8.0,16,2.86 +72811,99.0,10.0,10.0,10.0,10.0,9.0,10.0,14,2.5 +10496,99.0,10.0,10.0,10.0,10.0,10.0,10.0,15,2.59 +63620,93.0,9.0,10.0,10.0,10.0,9.0,10.0,16,2.71 +53232,,,,,,,,1,0.17 +45898,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.78 +34044,,,,,,,,0, +2992,80.0,8.0,7.0,9.0,10.0,9.0,8.0,3,0.55 +38525,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.48 +31821,90.0,10.0,9.0,10.0,10.0,10.0,8.0,2,0.36 +31944,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.53 +67326,,,,,,,,0, +76690,100.0,10.0,10.0,10.0,10.0,7.0,9.0,3,0.54 +46652,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.18 +40372,100.0,10.0,10.0,10.0,10.0,9.0,9.0,6,1.16 +9768,,,,,,,,0, +75552,,,,,,,,0, +68370,93.0,10.0,9.0,10.0,10.0,9.0,10.0,13,2.32 +5153,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.74 +5021,100.0,10.0,10.0,10.0,10.0,10.0,8.0,2,0.52 +12243,93.0,10.0,10.0,9.0,10.0,9.0,9.0,3,0.84 +76597,89.0,9.0,9.0,9.0,10.0,10.0,9.0,9,1.55 +55304,73.0,7.0,9.0,7.0,7.0,9.0,7.0,3,0.7 +31500,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,2.32 +44717,,,,,,,,1,0.18 +9740,96.0,10.0,10.0,10.0,10.0,10.0,10.0,14,2.53 +49270,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.19 +30770,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.38 +60337,96.0,10.0,9.0,10.0,10.0,10.0,10.0,20,3.95 +33044,,,,,,,,0, +58491,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.91 +13191,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.9 +13577,97.0,10.0,10.0,10.0,9.0,9.0,10.0,7,1.59 +74326,94.0,9.0,10.0,8.0,10.0,10.0,10.0,7,1.21 +60525,100.0,10.0,9.0,9.0,10.0,10.0,9.0,8,1.48 +51370,87.0,9.0,10.0,10.0,10.0,10.0,10.0,4,0.76 +35982,95.0,10.0,9.0,10.0,10.0,9.0,10.0,12,2.07 +7345,100.0,10.0,9.0,10.0,10.0,10.0,9.0,2,0.4 +6074,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,1.31 +26505,91.0,10.0,10.0,10.0,10.0,9.0,9.0,16,2.82 +15962,93.0,9.0,9.0,10.0,10.0,9.0,9.0,3,0.58 +34084,,,,,,,,0, +71453,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.85 +65656,94.0,10.0,9.0,10.0,10.0,9.0,9.0,7,1.91 +18439,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,1.88 +27507,97.0,10.0,10.0,10.0,10.0,10.0,9.0,21,3.71 +4723,,,,,,,,1,1.0 +51231,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.52 +7291,,,,,,,,0, +58093,,,,,,,,0, +18214,85.0,10.0,8.0,9.0,9.0,10.0,10.0,4,1.35 +12950,100.0,10.0,10.0,10.0,10.0,9.0,10.0,6,1.15 +70909,97.0,9.0,9.0,9.0,9.0,8.0,9.0,14,2.44 +61584,95.0,10.0,10.0,9.0,9.0,10.0,9.0,13,2.42 +50270,,,,,,,,0, +52482,,,,,,,,0, +16791,80.0,9.0,8.0,9.0,10.0,10.0,9.0,4,0.67 +43370,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.55 +11229,95.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.71 +59675,,,,,,,,0, +14765,100.0,10.0,8.0,10.0,10.0,10.0,10.0,3,0.61 +45375,90.0,9.0,8.0,10.0,10.0,10.0,8.0,2,0.48 +31621,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.59 +40691,83.0,9.0,9.0,8.0,8.0,9.0,8.0,7,1.27 +68402,100.0,10.0,9.0,10.0,10.0,6.0,9.0,2,0.36 +20831,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,2.57 +27277,82.0,9.0,8.0,9.0,9.0,10.0,9.0,15,2.65 +51616,93.0,9.0,10.0,10.0,10.0,9.0,9.0,3,2.0 +57217,98.0,10.0,10.0,10.0,10.0,9.0,10.0,9,1.56 +73074,98.0,10.0,10.0,10.0,10.0,10.0,10.0,11,2.13 +74926,96.0,10.0,10.0,10.0,10.0,9.0,10.0,16,2.87 +65579,87.0,9.0,8.0,10.0,10.0,10.0,10.0,3,1.08 +34831,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,3.21 +67778,,,,,,,,0, +17661,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.43 +70961,95.0,10.0,10.0,10.0,10.0,9.0,9.0,4,0.74 +61433,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.2 +62608,,,,,,,,0, +879,,,,,,,,0, +9794,,,,,,,,0, +11065,76.0,10.0,8.0,10.0,10.0,10.0,9.0,5,0.89 +45506,100.0,10.0,10.0,9.0,10.0,10.0,10.0,2,0.41 +72777,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.37 +40044,,,,,,,,1,1.0 +49214,95.0,10.0,10.0,9.0,10.0,10.0,9.0,13,2.28 +17126,99.0,10.0,10.0,9.0,10.0,10.0,10.0,17,5.73 +3962,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.33 +57703,60.0,8.0,8.0,8.0,6.0,8.0,6.0,1,0.71 +64519,,,,,,,,0, +62801,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.56 +63347,60.0,8.0,6.0,10.0,10.0,10.0,6.0,1,1.0 +37683,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.34 +70442,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,1.49 +62970,,,,,,,,0, +21980,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.54 +27340,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.65 +76605,97.0,10.0,9.0,10.0,10.0,10.0,9.0,12,2.24 +64038,96.0,10.0,10.0,9.0,10.0,10.0,9.0,10,1.97 +52554,93.0,10.0,9.0,10.0,10.0,10.0,9.0,6,1.08 +16975,,,,,,,,0, +9171,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,1.96 +73276,95.0,10.0,9.0,10.0,10.0,9.0,9.0,5,0.99 +9103,80.0,8.0,6.0,8.0,8.0,8.0,8.0,1,1.0 +22785,100.0,10.0,10.0,10.0,10.0,8.0,10.0,4,0.97 +59741,,,,,,,,0, +30576,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.03 +19873,,,,,,,,0, +2135,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.36 +47156,,,,,,,,0, +5085,,,,,,,,0, +66834,98.0,10.0,9.0,9.0,10.0,10.0,10.0,9,4.15 +33176,100.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.61 +49520,99.0,10.0,10.0,10.0,10.0,9.0,9.0,19,3.41 +31705,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.67 +33045,,,,,,,,1,0.18 +63902,98.0,10.0,10.0,10.0,10.0,9.0,10.0,9,1.67 +47534,87.0,9.0,9.0,7.0,9.0,9.0,9.0,3,0.59 +74905,97.0,10.0,10.0,9.0,9.0,10.0,9.0,7,1.48 +49164,,,,,,,,0, +27759,,,,,,,,0, +40695,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.84 +3754,,,,,,,,0, +46727,80.0,8.0,7.0,9.0,10.0,10.0,8.0,5,1.69 +39128,97.0,10.0,10.0,10.0,10.0,10.0,10.0,22,3.88 +41736,96.0,10.0,10.0,10.0,9.0,10.0,9.0,11,1.96 +44090,93.0,10.0,9.0,10.0,10.0,9.0,10.0,3,0.55 +24360,93.0,9.0,9.0,10.0,9.0,9.0,9.0,3,0.54 +26448,84.0,9.0,8.0,10.0,10.0,10.0,9.0,5,1.72 +56473,,,,,,,,1,0.17 +3551,,,,,,,,0, +67407,,,,,,,,0, +32379,73.0,7.0,9.0,9.0,9.0,10.0,7.0,3,0.63 +8064,,,,,,,,0, +39532,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.6 +21254,100.0,10.0,9.0,9.0,10.0,10.0,10.0,10,1.8 +47952,80.0,10.0,8.0,10.0,10.0,8.0,10.0,1,0.21 +891,,,,,,,,0, +22253,88.0,9.0,10.0,10.0,9.0,10.0,10.0,5,1.14 +5726,91.0,10.0,9.0,10.0,10.0,9.0,9.0,7,1.3 +50972,100.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.64 +53802,,,,,,,,0, +26169,80.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.65 +56096,,,,,,,,0, +39328,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.43 +63826,,,,,,,,1,0.17 +6285,,,,,,,,1,0.21 +73788,96.0,10.0,10.0,10.0,10.0,10.0,10.0,15,3.24 +16813,80.0,10.0,6.0,10.0,10.0,10.0,6.0,1,0.24 +70786,87.0,9.0,10.0,10.0,10.0,8.0,9.0,11,1.89 +54742,,,,,,,,0, +26167,95.0,10.0,9.0,10.0,10.0,10.0,9.0,4,0.76 +49913,87.0,9.0,9.0,9.0,10.0,9.0,9.0,28,6.13 +29768,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.67 +36961,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.8 +47838,80.0,10.0,10.0,10.0,10.0,8.0,9.0,2,0.4 +60934,,,,,,,,1,0.18 +1051,92.0,10.0,9.0,9.0,10.0,10.0,9.0,20,3.57 +58083,86.0,9.0,10.0,8.0,8.0,9.0,8.0,10,1.8 +68882,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.8 +66349,97.0,10.0,9.0,10.0,9.0,10.0,10.0,6,1.1 +69888,100.0,10.0,8.0,6.0,10.0,6.0,8.0,1,0.27 +28983,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.44 +53449,,,,,,,,1,0.18 +76980,92.0,10.0,10.0,10.0,10.0,10.0,8.0,5,0.93 +55305,75.0,9.0,6.0,9.0,10.0,9.0,7.0,4,0.85 +8008,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.53 +65101,84.0,8.0,7.0,9.0,9.0,9.0,9.0,11,3.59 +23863,76.0,8.0,8.0,8.0,8.0,8.0,7.0,5,0.99 +59294,90.0,9.0,10.0,10.0,10.0,9.0,10.0,4,0.73 +6324,88.0,9.0,9.0,9.0,9.0,9.0,9.0,17,3.05 +26493,100.0,10.0,10.0,8.0,10.0,10.0,10.0,2,0.38 +4384,98.0,10.0,9.0,10.0,10.0,9.0,9.0,11,2.68 +48863,95.0,9.0,9.0,10.0,10.0,10.0,9.0,13,2.28 +71579,100.0,10.0,9.0,10.0,10.0,9.0,9.0,3,0.7 +46158,80.0,10.0,10.0,10.0,10.0,9.0,9.0,2,0.4 +68007,80.0,10.0,8.0,10.0,10.0,10.0,6.0,1,0.81 +14295,98.0,10.0,10.0,10.0,10.0,9.0,10.0,10,1.79 +42063,80.0,9.0,8.0,8.0,10.0,9.0,9.0,13,2.31 +14508,97.0,9.0,10.0,9.0,10.0,9.0,10.0,7,1.36 +69418,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,1.02 +21408,100.0,10.0,9.0,9.0,10.0,10.0,10.0,2,0.41 +69849,,,,,,,,0, +67147,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.51 +52572,87.0,10.0,9.0,10.0,10.0,10.0,9.0,3,0.69 +18787,80.0,10.0,10.0,10.0,10.0,9.0,9.0,5,0.85 +42984,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.19 +30892,80.0,7.0,7.0,10.0,8.0,10.0,6.0,2,0.43 +72270,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.97 +71864,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.2 +24364,,,,,,,,0, +746,,,,,,,,0, +41436,,,,,,,,0, +70068,90.0,9.0,10.0,10.0,10.0,10.0,10.0,2,0.53 +8980,,,,,,,,0, +71196,,,,,,,,0, +71174,90.0,8.0,9.0,10.0,9.0,9.0,8.0,2,0.37 +6184,,,,,,,,0, +17581,,,,,,,,0, +26170,,,,,,,,0, +13941,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.67 +68158,100.0,10.0,10.0,10.0,10.0,8.0,10.0,2,0.39 +67127,,,,,,,,0, +30303,98.0,10.0,10.0,10.0,10.0,9.0,10.0,13,2.2 +74772,88.0,10.0,8.0,10.0,10.0,9.0,9.0,5,0.99 +76507,100.0,10.0,6.0,10.0,10.0,10.0,10.0,2,0.34 +52459,99.0,10.0,10.0,10.0,10.0,10.0,10.0,17,3.17 +16901,88.0,9.0,9.0,10.0,9.0,9.0,9.0,20,3.45 +24236,80.0,9.0,8.0,8.0,8.0,9.0,8.0,5,0.85 +59868,99.0,10.0,9.0,10.0,10.0,9.0,10.0,15,3.36 +68704,,,,,,,,0, +28426,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.93 +11622,20.0,2.0,2.0,2.0,2.0,2.0,2.0,1,0.2 +15931,100.0,10.0,10.0,10.0,10.0,8.0,9.0,2,0.7 +26472,,,,,,,,0, +61364,90.0,10.0,9.0,10.0,10.0,9.0,9.0,13,2.31 +50708,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,2.35 +42908,,,,,,,,0, +63058,89.0,9.0,8.0,9.0,9.0,9.0,9.0,21,3.58 +55702,95.0,10.0,10.0,9.0,10.0,10.0,9.0,19,3.28 +56955,100.0,10.0,10.0,9.0,10.0,9.0,9.0,4,0.81 +40905,100.0,10.0,10.0,10.0,10.0,9.0,10.0,8,2.07 +38857,100.0,10.0,10.0,8.0,10.0,10.0,10.0,2,0.49 +8285,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.4 +23929,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.43 +34368,93.0,10.0,10.0,9.0,9.0,10.0,10.0,29,5.21 +51408,83.0,9.0,9.0,9.0,9.0,9.0,9.0,6,1.22 +69889,90.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.04 +31515,90.0,10.0,10.0,10.0,10.0,6.0,10.0,3,1.17 +49686,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,2.98 +5094,,,,,,,,0, +29567,89.0,10.0,9.0,9.0,9.0,10.0,9.0,19,3.35 +75954,100.0,10.0,10.0,10.0,10.0,9.0,10.0,12,2.67 +34263,,,,,,,,0, +2668,89.0,9.0,9.0,9.0,9.0,9.0,9.0,7,1.45 +2722,99.0,10.0,10.0,10.0,10.0,10.0,10.0,25,5.4 +53424,94.0,10.0,9.0,10.0,10.0,9.0,9.0,29,7.91 +55770,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.37 +34559,,,,,,,,0, +49012,,,,,,,,1,0.19 +52436,,,,,,,,0, +28974,,,,,,,,0, +53069,88.0,9.0,10.0,9.0,9.0,10.0,9.0,8,1.73 +8201,,,,,,,,0, +15309,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.57 +68644,,,,,,,,0, +69168,,,,,,,,0, +66400,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.63 +51592,99.0,10.0,10.0,10.0,10.0,10.0,10.0,16,2.76 +59447,,,,,,,,0, +44453,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.78 +16124,91.0,10.0,9.0,10.0,10.0,10.0,9.0,10,1.86 +36466,40.0,2.0,10.0,8.0,6.0,2.0,4.0,3,0.51 +76142,91.0,9.0,10.0,9.0,8.0,8.0,9.0,8,1.58 +13573,,,,,,,,0, +22411,60.0,10.0,8.0,8.0,8.0,6.0,6.0,1,0.25 +44987,,,,,,,,0, +2166,95.0,8.0,9.0,9.0,10.0,9.0,9.0,4,2.73 +60994,80.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.24 +48997,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.78 +66799,100.0,8.0,10.0,10.0,10.0,10.0,8.0,1,0.22 +54358,94.0,10.0,10.0,9.0,10.0,9.0,9.0,14,2.47 +68153,90.0,10.0,8.0,10.0,10.0,9.0,10.0,2,0.36 +6836,80.0,8.0,8.0,9.0,9.0,9.0,6.0,2,0.35 +53809,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.2 +48801,90.0,9.0,10.0,10.0,10.0,10.0,8.0,8,1.45 +4365,80.0,9.0,8.0,9.0,9.0,8.0,9.0,8,1.42 +61800,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,4.62 +17843,93.0,10.0,9.0,9.0,9.0,10.0,9.0,43,7.59 +16101,88.0,10.0,8.0,10.0,10.0,10.0,9.0,16,2.96 +22513,93.0,9.0,10.0,10.0,10.0,10.0,9.0,3,1.3 +40294,,,,,,,,1,0.37 +21012,95.0,10.0,9.0,9.0,10.0,10.0,9.0,13,2.55 +27573,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.23 +2704,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.54 +74175,93.0,9.0,9.0,8.0,9.0,9.0,9.0,3,0.65 +41307,,,,,,,,0, +13845,84.0,9.0,9.0,9.0,9.0,8.0,8.0,15,3.33 +22224,97.0,10.0,10.0,10.0,10.0,10.0,9.0,22,3.95 +43148,88.0,9.0,10.0,10.0,9.0,9.0,9.0,13,2.35 +35885,100.0,9.0,9.0,10.0,9.0,9.0,10.0,3,0.69 +41769,87.0,10.0,9.0,10.0,10.0,9.0,9.0,3,0.53 +1160,96.0,9.0,10.0,9.0,9.0,10.0,10.0,12,3.87 +9556,84.0,9.0,9.0,10.0,10.0,10.0,9.0,9,1.63 +25767,84.0,9.0,9.0,10.0,10.0,10.0,9.0,10,1.85 +33420,80.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.4 +61527,,,,,,,,0, +8122,100.0,10.0,9.0,10.0,10.0,10.0,10.0,14,2.37 +23754,100.0,10.0,10.0,10.0,9.0,9.0,8.0,5,1.09 +37581,,,,,,,,0, +35362,98.0,10.0,10.0,10.0,10.0,10.0,10.0,16,3.31 +58874,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.39 +29510,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.18 +19273,98.0,10.0,10.0,10.0,9.0,9.0,9.0,11,1.9 +7416,95.0,10.0,9.0,10.0,10.0,9.0,10.0,12,6.55 +46990,90.0,8.0,9.0,9.0,10.0,7.0,9.0,2,0.36 +74009,80.0,8.0,9.0,9.0,10.0,10.0,8.0,8,1.43 +24933,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.55 +8420,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.44 +61768,70.0,9.0,10.0,9.0,10.0,10.0,7.0,2,0.4 +35068,70.0,10.0,7.0,10.0,10.0,10.0,9.0,2,0.54 +1822,,,,,,,,0, +62030,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,2.22 +77010,,,,,,,,0, +7816,80.0,8.0,6.0,10.0,8.0,10.0,8.0,1,1.0 +57940,20.0,4.0,2.0,8.0,6.0,8.0,2.0,1,0.19 +68474,100.0,10.0,10.0,10.0,10.0,10.0,10.0,16,2.79 +28097,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.49 +58512,100.0,10.0,10.0,10.0,10.0,9.0,10.0,8,1.59 +74756,90.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.58 +34043,93.0,10.0,9.0,10.0,9.0,10.0,9.0,3,0.55 +9594,100.0,10.0,10.0,10.0,10.0,10.0,9.0,7,1.58 +13685,88.0,10.0,9.0,8.0,10.0,10.0,9.0,5,1.07 +76969,100.0,10.0,10.0,10.0,10.0,9.0,9.0,8,1.57 +71185,,,,,,,,0, +47431,80.0,8.0,8.0,8.0,9.0,9.0,8.0,4,0.71 +23535,75.0,9.0,7.0,9.0,10.0,8.0,8.0,4,0.86 +31179,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.66 +34157,100.0,9.0,10.0,9.0,9.0,10.0,9.0,7,1.76 +47044,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.7 +12484,93.0,10.0,9.0,10.0,10.0,10.0,10.0,10,1.85 +7224,40.0,2.0,2.0,2.0,8.0,8.0,2.0,2,0.34 +10659,,,,,,,,1,0.17 +69546,,,,,,,,0, +49016,,,,,,,,0, +432,,,,,,,,0, +30416,90.0,9.0,10.0,10.0,9.0,10.0,9.0,6,1.31 +74383,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.37 +70306,100.0,10.0,10.0,10.0,10.0,10.0,8.0,2,0.4 +31394,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,1.35 +47528,86.0,8.0,8.0,9.0,9.0,8.0,8.0,10,1.72 +37336,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.19 +24877,95.0,10.0,10.0,10.0,10.0,9.0,9.0,4,0.78 +14974,90.0,9.0,10.0,10.0,9.0,10.0,9.0,29,6.0 +40940,,,,,,,,0, +25009,99.0,10.0,10.0,10.0,10.0,10.0,10.0,16,4.32 +67474,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,2.44 +35261,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.98 +36444,98.0,10.0,10.0,10.0,10.0,9.0,10.0,45,8.08 +74659,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.23 +18324,98.0,10.0,10.0,10.0,10.0,9.0,10.0,9,1.85 +44438,,,,,,,,0, +71477,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.56 +32161,85.0,9.0,9.0,9.0,9.0,9.0,9.0,8,1.62 +46240,,,,,,,,0, +18687,98.0,10.0,10.0,10.0,10.0,9.0,10.0,29,5.58 +61382,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.1 +14088,88.0,9.0,9.0,9.0,9.0,8.0,7.0,8,1.46 +54669,83.0,8.0,9.0,9.0,10.0,9.0,9.0,6,1.18 +27743,98.0,10.0,10.0,10.0,10.0,10.0,10.0,11,2.17 +61771,,,,,,,,0, +43194,98.0,10.0,10.0,10.0,10.0,10.0,10.0,11,2.5 +60234,,,,,,,,0, +63970,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,3.02 +51222,95.0,9.0,10.0,10.0,9.0,10.0,9.0,8,1.58 +33010,,,,,,,,0, +64628,90.0,9.0,9.0,9.0,9.0,9.0,8.0,2,0.38 +13299,80.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.52 +75921,95.0,10.0,10.0,10.0,10.0,10.0,10.0,15,2.8 +23378,80.0,9.0,10.0,9.0,8.0,9.0,8.0,10,1.8 +13383,90.0,9.0,9.0,9.0,9.0,10.0,10.0,4,0.72 +66033,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.19 +5435,92.0,10.0,9.0,9.0,10.0,9.0,9.0,10,1.85 +2399,80.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.73 +585,80.0,9.0,8.0,6.0,6.0,9.0,8.0,3,0.78 +51972,,,,,,,,0, +73603,100.0,10.0,10.0,9.0,10.0,10.0,10.0,3,0.57 +62613,,,,,,,,0, +43721,,,,,,,,0, +35169,,,,,,,,0, +72126,80.0,8.0,8.0,10.0,10.0,10.0,10.0,1,0.23 +54974,86.0,9.0,8.0,9.0,9.0,10.0,8.0,7,1.31 +1690,90.0,9.0,9.0,10.0,10.0,10.0,9.0,3,0.55 +25478,85.0,9.0,8.0,9.0,10.0,9.0,9.0,17,2.9 +55181,100.0,10.0,10.0,10.0,10.0,10.0,10.0,23,4.11 +31961,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.55 +36670,,,,,,,,0, +60724,100.0,10.0,10.0,10.0,9.0,9.0,10.0,3,0.58 +69052,80.0,7.0,8.0,7.0,7.0,9.0,7.0,3,0.55 +51098,98.0,10.0,10.0,10.0,10.0,10.0,10.0,23,4.06 +48010,98.0,10.0,10.0,10.0,10.0,9.0,10.0,13,2.34 +44296,,,,,,,,0, +46884,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.94 +31373,87.0,8.0,10.0,8.0,9.0,9.0,10.0,4,1.45 +38381,,,,,,,,0, +7973,,,,,,,,0, +42517,,,,,,,,0, +39679,,,,,,,,0, +52117,,,,,,,,0, +10363,,,,,,,,0, +75243,100.0,10.0,8.0,10.0,10.0,6.0,8.0,1,0.3 +64752,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.51 +10865,,,,,,,,0, +14213,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.2 +7400,,,,,,,,1,0.25 +35453,96.0,10.0,9.0,9.0,9.0,9.0,9.0,14,5.92 +13523,95.0,10.0,9.0,10.0,10.0,9.0,9.0,13,2.44 +30117,95.0,9.0,10.0,10.0,10.0,10.0,10.0,4,1.4 +27257,,,,,,,,1,0.38 +41800,,,,,,,,0, +75259,,,,,,,,0, +37142,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.52 +26378,94.0,10.0,10.0,10.0,10.0,10.0,10.0,7,1.79 +51590,,,,,,,,0, +46048,97.0,10.0,10.0,10.0,10.0,10.0,9.0,7,1.35 +65335,89.0,9.0,9.0,9.0,9.0,9.0,8.0,15,2.69 +73243,100.0,10.0,10.0,10.0,10.0,9.0,10.0,25,4.49 +45838,,,,,,,,0, +72779,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.35 +71155,40.0,10.0,10.0,8.0,2.0,8.0,6.0,1,1.0 +13137,88.0,9.0,9.0,9.0,9.0,10.0,9.0,15,2.59 +70238,91.0,10.0,9.0,10.0,10.0,10.0,9.0,19,3.52 +33587,,,,,,,,0, +65796,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,3.0 +64599,,,,,,,,0, +60773,,,,,,,,0, +51477,,,,,,,,0, +19893,54.0,7.0,6.0,9.0,9.0,7.0,6.0,7,1.26 +40700,75.0,7.0,8.0,8.0,9.0,9.0,8.0,4,1.5 +65114,80.0,10.0,10.0,10.0,10.0,9.0,9.0,5,1.25 +66469,,,,,,,,0, +24569,100.0,10.0,9.0,10.0,9.0,10.0,10.0,3,0.63 +67771,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.22 +51010,93.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.73 +3933,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.78 +5515,,,,,,,,0, +33188,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.21 +53673,100.0,10.0,10.0,10.0,10.0,9.0,10.0,11,3.59 +68477,,,,,,,,0, +57612,97.0,10.0,10.0,10.0,10.0,10.0,10.0,13,2.55 +74615,83.0,9.0,9.0,9.0,10.0,8.0,8.0,20,3.64 +30160,94.0,10.0,10.0,10.0,10.0,10.0,10.0,13,3.22 +41553,,,,,,,,0, +7504,75.0,9.0,8.0,9.0,9.0,9.0,8.0,20,3.51 +13795,100.0,10.0,9.0,10.0,10.0,9.0,9.0,5,1.4 +29748,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.19 +3741,98.0,10.0,10.0,10.0,10.0,10.0,9.0,26,4.46 +50155,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.55 +6697,100.0,10.0,9.0,10.0,10.0,10.0,9.0,5,1.14 +67732,91.0,9.0,9.0,9.0,10.0,10.0,9.0,18,3.18 +7629,,,,,,,,1,0.17 +64204,87.0,9.0,8.0,10.0,10.0,9.0,9.0,3,2.65 +62440,,,,,,,,0, +24528,,,,,,,,0, +7860,,,,,,,,0, +41765,97.0,10.0,9.0,10.0,10.0,9.0,9.0,19,4.56 +65393,80.0,8.0,8.0,8.0,10.0,8.0,8.0,1,0.29 +56668,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.5 +32016,90.0,9.0,9.0,9.0,10.0,10.0,9.0,4,0.72 +52135,80.0,8.0,8.0,2.0,8.0,10.0,6.0,1,0.36 +29148,100.0,9.0,9.0,10.0,10.0,9.0,10.0,2,0.41 +69208,,,,,,,,0, +57775,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.8 +62671,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.21 +58386,90.0,9.0,9.0,9.0,10.0,8.0,9.0,4,0.71 +76505,98.0,10.0,9.0,9.0,10.0,9.0,10.0,9,2.37 +63073,73.0,7.0,10.0,10.0,7.0,9.0,7.0,3,0.68 +49998,93.0,10.0,10.0,10.0,10.0,10.0,9.0,6,1.22 +25319,79.0,8.0,8.0,9.0,9.0,9.0,8.0,20,3.49 +39859,100.0,10.0,10.0,10.0,10.0,9.0,9.0,2,0.58 +27523,100.0,10.0,10.0,10.0,9.0,10.0,10.0,3,1.27 +20688,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.83 +24535,98.0,10.0,10.0,10.0,9.0,9.0,10.0,9,1.78 +16640,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.21 +17039,,,,,,,,0, +19777,96.0,9.0,9.0,10.0,10.0,9.0,9.0,10,2.26 +32500,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.55 +73271,40.0,2.0,5.0,6.0,7.0,7.0,4.0,2,0.39 +30709,90.0,9.0,9.0,7.0,9.0,8.0,9.0,16,4.32 +50005,90.0,10.0,9.0,10.0,10.0,10.0,9.0,27,4.97 +30201,,,,,,,,0, +40187,90.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.68 +33093,99.0,10.0,10.0,10.0,10.0,9.0,10.0,16,2.96 +2695,85.0,9.0,9.0,9.0,10.0,10.0,10.0,12,2.18 +33711,60.0,6.0,6.0,6.0,8.0,8.0,8.0,1,0.22 +38303,86.0,9.0,9.0,8.0,9.0,10.0,9.0,14,2.51 +64242,93.0,9.0,8.0,10.0,9.0,10.0,10.0,8,1.37 +54385,,,,,,,,0, +60241,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.41 +37318,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.21 +58077,92.0,10.0,9.0,10.0,10.0,9.0,9.0,5,1.01 +25766,80.0,8.0,7.0,9.0,8.0,10.0,8.0,13,2.64 +6169,90.0,9.0,10.0,10.0,10.0,8.0,8.0,2,0.36 +41071,93.0,10.0,9.0,10.0,10.0,10.0,9.0,21,3.82 +43193,,,,,,,,0, +45356,87.0,8.0,7.0,10.0,9.0,8.0,8.0,8,1.39 +70894,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.31 +66750,91.0,10.0,9.0,9.0,10.0,9.0,9.0,14,2.53 +62712,98.0,10.0,10.0,10.0,10.0,10.0,10.0,22,4.1 +59599,87.0,10.0,9.0,10.0,10.0,10.0,8.0,12,2.16 +56609,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.37 +17237,100.0,9.0,10.0,8.0,10.0,10.0,9.0,3,1.14 +25325,,,,,,,,0, +26428,,,,,,,,0, +71213,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.23 +39365,,,,,,,,1,0.24 +55317,,,,,,,,0, +73813,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.9 +60375,96.0,10.0,10.0,10.0,10.0,10.0,9.0,10,1.85 +22896,93.0,10.0,10.0,10.0,10.0,9.0,9.0,9,1.55 +37525,70.0,8.0,10.0,9.0,9.0,8.0,8.0,2,1.43 +13225,,,,,,,,0, +661,,,,,,,,0, +7906,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.22 +67318,92.0,10.0,10.0,10.0,10.0,8.0,10.0,5,0.93 +50539,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.48 +69867,80.0,10.0,9.0,9.0,10.0,10.0,8.0,2,0.41 +17796,,,,,,,,0, +52018,90.0,10.0,10.0,10.0,9.0,8.0,9.0,2,0.81 +10285,100.0,10.0,9.0,10.0,10.0,10.0,9.0,2,0.39 +23476,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.03 +34883,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.36 +14796,97.0,10.0,10.0,10.0,10.0,9.0,9.0,13,2.71 +46270,93.0,9.0,10.0,10.0,10.0,10.0,8.0,11,2.04 +69904,90.0,9.0,9.0,10.0,10.0,10.0,8.0,2,0.38 +45077,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.78 +24488,87.0,9.0,7.0,9.0,9.0,9.0,9.0,14,2.88 +28378,95.0,9.0,10.0,10.0,10.0,8.0,10.0,4,0.75 +57639,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.45 +45776,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.26 +18025,,,,,,,,0, +53516,,,,,,,,0, +45334,,,,,,,,0, +7256,,,,,,,,0, +35919,,,,,,,,0, +4828,,,,,,,,0, +25694,60.0,6.0,2.0,10.0,8.0,8.0,4.0,1,0.23 +35052,100.0,10.0,10.0,10.0,10.0,9.0,10.0,13,2.55 +41987,85.0,10.0,8.0,10.0,9.0,10.0,9.0,8,1.49 +60523,98.0,10.0,10.0,10.0,10.0,9.0,10.0,10,1.94 +6349,97.0,9.0,9.0,9.0,10.0,10.0,10.0,6,1.06 +44307,93.0,9.0,9.0,10.0,10.0,8.0,9.0,4,0.75 +40042,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,2.32 +70350,90.0,9.0,9.0,9.0,10.0,10.0,9.0,15,2.57 +5685,97.0,10.0,10.0,10.0,10.0,10.0,10.0,7,1.37 +11947,,,,,,,,0, +70151,,,,,,,,0, +10122,,,,,,,,0, +59023,80.0,8.0,6.0,8.0,10.0,10.0,2.0,1,0.21 +24870,80.0,8.0,7.0,8.0,8.0,10.0,8.0,2,0.36 +11112,20.0,2.0,2.0,2.0,2.0,2.0,2.0,2,0.37 +36498,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.23 +18683,,,,,,,,0, +24151,93.0,10.0,8.0,10.0,10.0,9.0,9.0,3,0.73 +32959,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.21 +8557,97.0,10.0,10.0,9.0,10.0,9.0,10.0,7,1.2 +30743,93.0,9.0,9.0,10.0,10.0,10.0,10.0,3,0.93 +4952,100.0,10.0,8.0,10.0,10.0,8.0,8.0,1,0.29 +74793,100.0,10.0,9.0,9.0,10.0,10.0,10.0,3,0.62 +513,100.0,10.0,8.0,10.0,10.0,10.0,8.0,2,0.39 +19267,,,,,,,,1,0.2 +40486,98.0,10.0,10.0,10.0,10.0,9.0,10.0,9,2.2 +29463,20.0,2.0,2.0,2.0,2.0,2.0,2.0,1,0.19 +481,,,,,,,,1,0.18 +46316,96.0,10.0,9.0,10.0,10.0,9.0,10.0,21,3.64 +10184,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.11 +44870,,,,,,,,0, +12752,90.0,10.0,10.0,10.0,10.0,9.0,10.0,4,1.13 +51522,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.46 +62474,98.0,10.0,10.0,10.0,10.0,9.0,10.0,12,2.5 +12160,97.0,10.0,9.0,10.0,10.0,10.0,9.0,12,2.17 +9525,100.0,9.0,10.0,9.0,10.0,9.0,9.0,3,0.89 +37566,,,,,,,,0, +68968,89.0,9.0,10.0,9.0,9.0,10.0,8.0,14,3.11 +5604,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.2 +28422,80.0,10.0,10.0,4.0,10.0,10.0,8.0,2,2.0 +38389,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.08 +74552,,,,,,,,0, +55253,94.0,10.0,10.0,10.0,10.0,9.0,10.0,8,1.44 +6721,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.08 +22348,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.08 +35291,95.0,10.0,10.0,10.0,10.0,9.0,10.0,11,1.99 +48215,100.0,10.0,6.0,10.0,10.0,10.0,10.0,1,0.21 +16595,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.49 +27652,100.0,9.0,10.0,10.0,10.0,10.0,10.0,7,1.35 +26145,93.0,10.0,9.0,9.0,10.0,10.0,9.0,8,1.61 +25316,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.19 +21374,100.0,10.0,9.0,10.0,10.0,10.0,9.0,3,1.7 +19288,95.0,10.0,9.0,10.0,10.0,10.0,10.0,15,3.1 +39177,98.0,10.0,10.0,10.0,10.0,10.0,10.0,17,3.31 +21359,94.0,10.0,9.0,10.0,10.0,9.0,9.0,33,5.72 +60112,,,,,,,,0, +37443,,,,,,,,0, +41796,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.25 +57130,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.52 +74924,95.0,10.0,9.0,10.0,10.0,9.0,9.0,21,4.06 +14810,94.0,10.0,10.0,10.0,10.0,9.0,9.0,26,4.56 +39992,,,,,,,,0, +37138,90.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.83 +65963,96.0,10.0,9.0,10.0,10.0,10.0,9.0,14,2.84 +13996,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.43 +60919,95.0,10.0,9.0,10.0,10.0,10.0,10.0,11,2.06 +57490,,,,,,,,0, +35822,90.0,10.0,7.0,10.0,10.0,9.0,8.0,2,0.47 +37003,,,,,,,,0, +17856,,,,,,,,1,0.18 +44917,,,,,,,,1,0.17 +42393,,,,,,,,0, +8004,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.22 +73396,98.0,10.0,10.0,10.0,10.0,10.0,9.0,8,1.61 +23762,100.0,9.0,9.0,10.0,10.0,9.0,10.0,2,0.38 +991,96.0,9.0,10.0,10.0,10.0,9.0,10.0,15,2.76 +76665,99.0,10.0,10.0,10.0,10.0,10.0,10.0,19,3.68 +41833,94.0,10.0,10.0,10.0,10.0,10.0,10.0,11,1.93 +34171,90.0,9.0,9.0,9.0,8.0,9.0,10.0,2,0.38 +33602,96.0,10.0,10.0,10.0,10.0,10.0,10.0,44,11.68 +56701,90.0,10.0,8.0,10.0,9.0,10.0,9.0,2,0.67 +43756,,,,,,,,0, +36912,,,,,,,,0, +57429,80.0,8.0,8.0,10.0,10.0,9.0,8.0,4,0.71 +54086,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.55 +43504,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.72 +70602,80.0,8.0,8.0,10.0,10.0,10.0,8.0,1,0.24 +9064,95.0,10.0,10.0,10.0,10.0,9.0,10.0,16,2.96 +34461,,,,,,,,0, +30565,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.39 +47956,69.0,7.0,7.0,8.0,9.0,7.0,7.0,20,3.61 +37338,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.5 +17468,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,1.05 +3101,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.53 +54899,90.0,9.0,7.0,9.0,10.0,10.0,8.0,2,0.4 +37838,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.03 +60106,94.0,10.0,10.0,10.0,10.0,9.0,9.0,28,5.03 +31728,80.0,10.0,6.0,8.0,8.0,10.0,8.0,1,0.86 +26601,96.0,10.0,8.0,10.0,10.0,10.0,9.0,5,0.92 +38616,,,,,,,,2,0.46 +59991,,,,,,,,1,0.19 +47470,77.0,8.0,6.0,8.0,9.0,9.0,8.0,7,1.31 +36536,100.0,10.0,10.0,10.0,10.0,9.0,10.0,8,1.73 +14466,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.59 +24925,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.22 +52634,100.0,10.0,10.0,10.0,10.0,10.0,10.0,18,3.48 +30398,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.22 +74598,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.2 +44975,87.0,9.0,10.0,10.0,9.0,10.0,10.0,6,1.35 +36842,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.26 +43837,84.0,9.0,10.0,9.0,9.0,8.0,9.0,9,1.9 +46139,100.0,9.0,9.0,10.0,10.0,10.0,9.0,5,0.97 +6388,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.87 +6817,100.0,10.0,9.0,10.0,10.0,8.0,10.0,2,0.4 +21956,87.0,9.0,9.0,9.0,9.0,9.0,8.0,14,2.69 +51945,97.0,10.0,9.0,10.0,10.0,10.0,9.0,13,2.55 +39966,97.0,9.0,10.0,9.0,10.0,10.0,10.0,7,1.26 +31671,100.0,10.0,10.0,10.0,9.0,10.0,10.0,2,0.71 +29641,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.73 +57322,97.0,10.0,10.0,10.0,10.0,9.0,10.0,14,3.18 +45952,100.0,10.0,10.0,10.0,10.0,10.0,8.0,2,0.6 +42297,95.0,10.0,10.0,10.0,10.0,8.0,10.0,4,0.77 +38824,80.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.35 +73039,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.48 +503,73.0,8.0,9.0,9.0,8.0,8.0,9.0,4,0.77 +50417,87.0,10.0,9.0,10.0,10.0,10.0,9.0,9,1.62 +64282,95.0,9.0,10.0,10.0,10.0,10.0,9.0,18,3.4 +19056,83.0,9.0,9.0,8.0,9.0,9.0,10.0,15,3.36 +28430,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.91 +2813,89.0,10.0,9.0,10.0,10.0,10.0,9.0,18,3.8 +42621,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.81 +13413,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.27 +64024,50.0,8.0,6.0,9.0,5.0,7.0,6.0,2,0.52 +62040,85.0,9.0,9.0,9.0,9.0,9.0,9.0,13,2.25 +3609,98.0,10.0,10.0,10.0,10.0,8.0,10.0,10,1.96 +31641,99.0,10.0,10.0,10.0,10.0,10.0,10.0,24,4.44 +12368,98.0,10.0,10.0,10.0,10.0,10.0,10.0,25,4.44 +72235,90.0,9.0,8.0,10.0,10.0,9.0,8.0,2,0.39 +25589,,,,,,,,0, +26713,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.29 +74998,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.27 +3328,90.0,10.0,9.0,10.0,10.0,10.0,7.0,2,0.39 +30135,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.2 +33938,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.92 +63219,88.0,10.0,8.0,10.0,10.0,10.0,9.0,12,2.24 +29456,96.0,10.0,8.0,10.0,10.0,10.0,10.0,9,1.62 +38346,82.0,9.0,9.0,7.0,8.0,9.0,7.0,10,1.78 +34978,95.0,10.0,9.0,10.0,10.0,10.0,10.0,27,5.0 +77004,,,,,,,,0, +65610,90.0,9.0,9.0,10.0,10.0,10.0,9.0,5,1.27 +41361,70.0,7.0,7.0,6.0,6.0,8.0,8.0,2,0.36 +51460,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.87 +26579,100.0,8.0,10.0,10.0,10.0,8.0,10.0,1,0.55 +35508,94.0,9.0,10.0,9.0,10.0,9.0,10.0,8,1.43 +75171,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.59 +15453,100.0,9.0,9.0,9.0,9.0,9.0,9.0,2,0.38 +43043,90.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.37 +36172,100.0,10.0,9.0,10.0,10.0,10.0,9.0,2,1.09 +36777,,,,,,,,0, +76342,100.0,10.0,10.0,10.0,10.0,7.0,10.0,2,0.37 +72382,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.18 +25918,92.0,10.0,8.0,8.0,9.0,10.0,9.0,17,3.17 +32394,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.45 +47801,98.0,10.0,10.0,10.0,10.0,9.0,10.0,13,3.79 +59183,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.63 +9570,,,,,,,,0, +2466,100.0,10.0,10.0,9.0,10.0,9.0,9.0,7,1.91 +59258,96.0,10.0,10.0,10.0,10.0,9.0,10.0,9,2.81 +2083,,,,,,,,0, +13095,80.0,9.0,10.0,10.0,9.0,10.0,10.0,3,1.64 +44241,80.0,9.0,9.0,10.0,9.0,10.0,10.0,2,0.97 +53578,,,,,,,,0, +5939,96.0,7.0,9.0,10.0,8.0,9.0,10.0,5,0.9 +14029,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.18 +58524,100.0,10.0,10.0,10.0,9.0,10.0,10.0,7,1.62 +69447,,,,,,,,0, +70015,,,,,,,,0, +67158,,,,,,,,1,0.18 +71567,98.0,10.0,10.0,10.0,10.0,10.0,10.0,23,4.26 +49070,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.2 +11228,99.0,10.0,10.0,10.0,10.0,10.0,10.0,21,3.84 +38371,,,,,,,,0, +49419,91.0,10.0,8.0,10.0,10.0,10.0,9.0,9,2.11 +39008,97.0,10.0,10.0,10.0,9.0,10.0,9.0,19,4.56 +30951,87.0,10.0,8.0,10.0,10.0,9.0,9.0,3,0.56 +58650,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.42 +2316,,,,,,,,0, +52463,99.0,10.0,10.0,10.0,10.0,9.0,10.0,18,4.03 +27871,90.0,9.0,10.0,10.0,10.0,10.0,9.0,6,1.13 +27893,100.0,10.0,9.0,9.0,10.0,10.0,9.0,3,0.65 +38710,100.0,10.0,10.0,10.0,10.0,10.0,10.0,16,2.94 +7626,90.0,9.0,9.0,9.0,9.0,10.0,9.0,6,1.18 +20699,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.27 +50069,60.0,8.0,4.0,2.0,4.0,10.0,8.0,1,0.28 +73321,,,,,,,,0, +63455,,,,,,,,0, +14872,,,,,,,,0, +48481,95.0,10.0,9.0,10.0,10.0,9.0,10.0,48,8.62 +10196,84.0,9.0,8.0,9.0,9.0,10.0,7.0,5,1.56 +2547,,,,,,,,0, +38854,70.0,8.0,6.0,7.0,8.0,8.0,8.0,2,0.41 +65879,,,,,,,,0, +35739,,,,,,,,0, +7408,90.0,10.0,8.0,10.0,10.0,10.0,9.0,2,0.62 +75851,,,,,,,,0, +70006,87.0,9.0,8.0,9.0,9.0,10.0,9.0,18,3.38 +47372,100.0,10.0,8.0,10.0,10.0,10.0,10.0,5,1.34 +20955,80.0,6.0,8.0,10.0,8.0,8.0,8.0,3,0.6 +64496,90.0,9.0,8.0,10.0,9.0,9.0,8.0,6,1.26 +32581,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.19 +7143,,,,,,,,0, +65024,97.0,10.0,9.0,10.0,10.0,9.0,10.0,6,1.15 +76000,80.0,5.0,9.0,10.0,9.0,9.0,8.0,3,1.41 +17060,,,,,,,,2,0.35 +31431,,,,,,,,0, +57966,,,,,,,,0, +60557,94.0,10.0,9.0,9.0,10.0,8.0,9.0,38,6.83 +58067,88.0,9.0,9.0,9.0,10.0,9.0,9.0,16,3.14 +74097,40.0,4.0,6.0,2.0,6.0,10.0,6.0,1,0.18 +76921,96.0,10.0,9.0,10.0,10.0,8.0,9.0,9,1.94 +51693,,,,,,,,0, +68929,97.0,10.0,10.0,9.0,10.0,10.0,10.0,14,2.63 +21947,92.0,10.0,9.0,9.0,9.0,9.0,10.0,19,3.58 +37355,95.0,10.0,9.0,10.0,10.0,10.0,10.0,9,1.7 +67194,98.0,10.0,10.0,10.0,10.0,9.0,9.0,12,2.22 +67391,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,4.0 +13483,78.0,9.0,9.0,9.0,9.0,10.0,8.0,12,2.16 +2138,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,2.54 +21801,,,,,,,,0, +62559,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.78 +74001,84.0,9.0,9.0,9.0,9.0,8.0,9.0,5,2.11 +54293,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.41 +23555,90.0,10.0,9.0,9.0,10.0,10.0,10.0,4,1.97 +28528,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.71 +28117,94.0,10.0,10.0,10.0,10.0,10.0,9.0,7,1.38 +10101,94.0,10.0,9.0,10.0,10.0,10.0,10.0,13,2.44 +71318,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.6 +10542,87.0,9.0,9.0,10.0,10.0,9.0,9.0,14,2.75 +42985,,,,,,,,0, +32212,97.0,10.0,10.0,10.0,10.0,9.0,10.0,14,2.82 +5494,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.85 +16760,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.9 +12449,97.0,10.0,9.0,9.0,10.0,10.0,10.0,7,1.41 +15068,100.0,10.0,10.0,8.0,10.0,10.0,10.0,2,0.54 +61346,93.0,9.0,8.0,9.0,10.0,10.0,9.0,12,2.34 +9854,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.39 +50203,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.74 +72766,91.0,9.0,10.0,9.0,10.0,10.0,9.0,14,2.61 +59511,70.0,8.0,5.0,9.0,9.0,9.0,7.0,6,1.07 +7666,,,,,,,,0, +56530,80.0,9.0,9.0,7.0,8.0,9.0,8.0,11,1.92 +72830,,,,,,,,0, +68037,97.0,10.0,10.0,9.0,10.0,10.0,9.0,7,3.18 +27332,,,,,,,,0, +15333,87.0,10.0,10.0,10.0,8.0,9.0,10.0,3,1.41 +3924,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.56 +55755,96.0,10.0,10.0,10.0,10.0,9.0,9.0,5,0.9 +27926,98.0,10.0,10.0,10.0,10.0,10.0,10.0,11,2.02 +63038,100.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.76 +49723,87.0,9.0,8.0,9.0,10.0,7.0,9.0,3,0.6 +69774,100.0,10.0,10.0,10.0,10.0,9.0,9.0,8,1.59 +23463,,,,,,,,0, +64769,80.0,9.0,9.0,9.0,9.0,10.0,8.0,10,4.76 +67926,100.0,10.0,9.0,10.0,10.0,9.0,10.0,4,0.86 +46747,,,,,,,,0, +15867,,,,,,,,0, +58993,,,,,,,,0, +5294,67.0,8.0,9.0,5.0,7.0,9.0,7.0,4,0.99 +41697,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.46 +52216,,,,,,,,1,0.19 +43453,80.0,10.0,10.0,10.0,10.0,8.0,8.0,1,1.0 +13670,91.0,10.0,9.0,10.0,9.0,8.0,9.0,14,2.94 +8876,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.64 +5259,77.0,10.0,6.0,9.0,10.0,10.0,8.0,7,1.3 +1104,100.0,10.0,9.0,10.0,10.0,10.0,10.0,7,1.25 +40203,84.0,10.0,10.0,8.0,9.0,9.0,9.0,5,1.01 +9152,80.0,8.0,9.0,7.0,8.0,9.0,8.0,7,1.3 +640,94.0,10.0,9.0,9.0,10.0,10.0,9.0,17,3.11 +18049,80.0,10.0,8.0,10.0,8.0,8.0,8.0,4,0.72 +38443,80.0,10.0,10.0,8.0,10.0,8.0,8.0,1,0.21 +28497,95.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.87 +23727,98.0,10.0,10.0,10.0,10.0,9.0,9.0,10,2.26 +2439,,,,,,,,0, +38929,100.0,10.0,8.0,10.0,10.0,10.0,8.0,2,1.36 +12809,89.0,10.0,9.0,8.0,10.0,9.0,9.0,9,1.61 +12825,100.0,10.0,10.0,10.0,10.0,9.0,10.0,6,1.15 +44492,100.0,10.0,10.0,10.0,8.0,10.0,10.0,1,0.25 +38957,,,,,,,,0, +56065,87.0,9.0,9.0,10.0,10.0,9.0,9.0,13,3.55 +8658,,,,,,,,1,0.26 +56046,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.78 +42912,80.0,8.0,8.0,10.0,10.0,10.0,8.0,1,0.22 +50224,72.0,8.0,8.0,8.0,9.0,7.0,6.0,5,1.1 +55315,89.0,9.0,9.0,10.0,10.0,10.0,9.0,19,3.68 +40675,69.0,9.0,8.0,10.0,8.0,10.0,7.0,9,4.03 +28904,95.0,9.0,10.0,10.0,10.0,9.0,9.0,15,2.83 +13112,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.38 +74787,98.0,10.0,10.0,9.0,10.0,10.0,10.0,22,4.07 +40969,90.0,9.0,9.0,9.0,9.0,10.0,9.0,20,3.68 +9452,90.0,9.0,9.0,10.0,10.0,9.0,10.0,3,0.59 +74748,,,,,,,,0, +51286,,,,,,,,1,0.24 +12310,100.0,10.0,10.0,10.0,10.0,10.0,9.0,4,1.22 +65854,,,,,,,,0, +53319,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.2 +59320,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.5 +24281,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.97 +14646,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,2.16 +48474,90.0,9.0,8.0,10.0,10.0,10.0,10.0,4,0.73 +638,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.2 +35277,70.0,10.0,9.0,10.0,10.0,10.0,10.0,2,1.71 +2664,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.19 +41658,87.0,9.0,9.0,9.0,10.0,9.0,9.0,19,3.35 +14856,89.0,9.0,9.0,9.0,10.0,10.0,9.0,7,1.25 +21919,,,,,,,,0, +19980,95.0,9.0,10.0,10.0,10.0,10.0,9.0,11,4.02 +45088,99.0,10.0,9.0,10.0,10.0,9.0,10.0,16,3.29 +36740,98.0,10.0,10.0,10.0,10.0,10.0,9.0,19,5.59 +33014,80.0,10.0,10.0,10.0,8.0,10.0,6.0,1,0.48 +65035,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.22 +38177,,,,,,,,0, +53904,98.0,10.0,10.0,10.0,10.0,10.0,9.0,9,1.73 +36944,40.0,6.0,2.0,2.0,2.0,6.0,4.0,1,0.18 +35839,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.09 +4973,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.19 +50015,,,,,,,,1,1.0 +39337,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.98 +22406,87.0,9.0,9.0,9.0,9.0,10.0,9.0,17,3.92 +19898,95.0,10.0,10.0,9.0,9.0,10.0,9.0,4,0.81 +22695,97.0,10.0,10.0,10.0,10.0,10.0,10.0,21,4.09 +13785,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.17 +51347,,,,,,,,0, +580,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.81 +52997,60.0,8.0,4.0,10.0,10.0,10.0,6.0,2,0.38 +36335,63.0,8.0,7.0,8.0,9.0,7.0,6.0,7,1.32 +73354,90.0,10.0,8.0,10.0,9.0,9.0,10.0,2,0.39 +59695,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.86 +69263,80.0,8.0,7.0,10.0,9.0,10.0,9.0,2,0.45 +20334,,,,,,,,0, +41613,96.0,10.0,9.0,10.0,10.0,10.0,9.0,6,1.12 +30808,100.0,10.0,10.0,10.0,10.0,9.0,8.0,2,1.46 +9808,97.0,10.0,10.0,10.0,10.0,10.0,10.0,13,2.52 +52013,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.29 +70846,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.99 +10515,80.0,8.0,8.0,10.0,10.0,10.0,10.0,1,0.36 +14352,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +34054,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.68 +72192,90.0,10.0,8.0,10.0,10.0,10.0,10.0,3,0.72 +6679,94.0,10.0,9.0,9.0,10.0,10.0,10.0,10,2.1 +24557,80.0,10.0,8.0,10.0,10.0,8.0,8.0,1,1.0 +30218,93.0,9.0,9.0,10.0,10.0,9.0,9.0,3,0.71 +35011,76.0,10.0,8.0,8.0,9.0,10.0,8.0,5,1.69 +4949,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.51 +65602,98.0,10.0,10.0,10.0,10.0,10.0,9.0,10,2.0 +44707,85.0,9.0,8.0,10.0,10.0,9.0,8.0,4,1.08 +32524,100.0,10.0,10.0,9.0,10.0,10.0,9.0,2,0.65 +28889,84.0,9.0,10.0,10.0,10.0,10.0,9.0,16,2.89 +26468,,,,,,,,0, +11567,,,,,,,,0, +27176,,,,,,,,0, +77072,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.27 +19788,80.0,10.0,8.0,10.0,10.0,8.0,8.0,1,0.22 +38488,40.0,8.0,6.0,6.0,8.0,8.0,4.0,1,0.71 +11612,,,,,,,,0, +61421,95.0,10.0,9.0,10.0,10.0,10.0,9.0,13,2.53 +3321,67.0,7.0,5.0,5.0,5.0,9.0,6.0,3,0.55 +47091,,,,,,,,3,0.55 +14664,100.0,10.0,10.0,10.0,10.0,10.0,9.0,12,2.61 +23297,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.19 +13812,,,,,,,,0, +39949,91.0,10.0,9.0,10.0,10.0,10.0,9.0,29,5.18 +5901,,,,,,,,2,0.36 +39240,85.0,9.0,10.0,10.0,10.0,9.0,10.0,4,0.78 +68188,91.0,9.0,9.0,10.0,10.0,10.0,9.0,7,1.29 +14261,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.61 +9776,100.0,10.0,10.0,10.0,9.0,10.0,10.0,5,1.15 +58217,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.41 +46217,,,,,,,,0, +6420,93.0,9.0,9.0,10.0,10.0,8.0,9.0,4,0.77 +66356,71.0,8.0,7.0,9.0,8.0,10.0,7.0,13,2.39 +58672,96.0,10.0,10.0,10.0,10.0,10.0,10.0,18,3.55 +69345,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.86 +6480,92.0,10.0,9.0,9.0,9.0,10.0,9.0,10,2.05 +45650,100.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.75 +4439,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.32 +74310,93.0,9.0,9.0,10.0,10.0,10.0,10.0,8,1.54 +71673,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.82 +43349,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,2.14 +57040,80.0,8.0,9.0,8.0,9.0,10.0,8.0,5,1.0 +61877,89.0,9.0,9.0,9.0,9.0,9.0,9.0,17,4.51 +26545,89.0,9.0,9.0,9.0,10.0,10.0,9.0,9,1.63 +19159,91.0,10.0,8.0,10.0,10.0,10.0,9.0,9,2.01 +68845,88.0,10.0,7.0,10.0,10.0,9.0,10.0,5,0.93 +68119,89.0,10.0,9.0,10.0,10.0,9.0,9.0,7,1.44 +997,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,1.0 +61428,95.0,10.0,10.0,10.0,10.0,10.0,9.0,4,1.06 +64008,100.0,10.0,8.0,10.0,10.0,9.0,10.0,2,0.38 +6477,97.0,10.0,10.0,9.0,10.0,10.0,9.0,15,2.9 +59426,,,,,,,,0, +49862,95.0,10.0,10.0,9.0,10.0,9.0,9.0,22,4.52 +21356,98.0,10.0,10.0,9.0,9.0,10.0,9.0,8,1.8 +74942,94.0,10.0,10.0,10.0,10.0,10.0,9.0,23,4.13 +19150,80.0,10.0,10.0,6.0,8.0,10.0,10.0,1,0.28 +53714,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.2 +68672,,,,,,,,0, +20632,,,,,,,,0, +41143,,,,,,,,0, +6640,20.0,2.0,2.0,2.0,2.0,2.0,2.0,1,0.54 +27562,100.0,10.0,10.0,10.0,10.0,9.0,10.0,16,2.96 +55094,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.58 +76265,91.0,10.0,9.0,9.0,10.0,10.0,9.0,11,2.19 +11596,90.0,10.0,9.0,10.0,10.0,10.0,9.0,12,2.9 +36803,90.0,10.0,10.0,9.0,10.0,9.0,9.0,8,1.62 +40299,92.0,9.0,9.0,10.0,10.0,10.0,9.0,25,4.93 +35848,97.0,10.0,10.0,10.0,10.0,9.0,10.0,6,1.38 +32768,50.0,5.0,5.0,6.0,5.0,6.0,6.0,3,0.57 +17141,,,,,,,,0, +48574,100.0,9.0,10.0,10.0,10.0,10.0,10.0,3,0.59 +23089,53.0,4.0,8.0,5.0,5.0,10.0,5.0,3,1.18 +2966,87.0,9.0,8.0,10.0,9.0,9.0,6.0,3,0.68 +74996,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.28 +76955,98.0,10.0,10.0,10.0,10.0,10.0,10.0,19,3.73 +30904,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.58 +31034,94.0,10.0,10.0,10.0,10.0,10.0,9.0,20,4.29 +36633,70.0,8.0,7.0,10.0,9.0,9.0,8.0,4,0.76 +36767,,,,,,,,0, +36574,90.0,10.0,10.0,10.0,10.0,10.0,10.0,8,2.67 +33438,97.0,10.0,10.0,10.0,10.0,9.0,10.0,14,2.63 +18994,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.21 +64924,100.0,10.0,9.0,10.0,10.0,9.0,10.0,2,1.46 +53433,,,,,,,,0, +76910,100.0,10.0,10.0,10.0,10.0,10.0,10.0,17,3.38 +61440,20.0,2.0,2.0,2.0,2.0,10.0,4.0,3,0.55 +16810,89.0,10.0,9.0,9.0,8.0,10.0,9.0,7,1.59 +35764,90.0,10.0,9.0,10.0,10.0,10.0,9.0,4,0.72 +64012,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,1.82 +67715,,,,,,,,0, +15635,87.0,7.0,7.0,10.0,10.0,9.0,9.0,3,0.59 +51344,,,,,,,,0, +75346,88.0,9.0,9.0,8.0,9.0,10.0,9.0,13,5.06 +52590,30.0,3.0,6.0,6.0,3.0,4.0,3.0,2,0.38 +39995,,,,,,,,0, +23383,76.0,7.0,8.0,8.0,8.0,6.0,8.0,5,0.98 +27753,87.0,9.0,9.0,10.0,9.0,10.0,9.0,26,5.2 +60327,,,,,,,,0, +11080,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.2 +30762,100.0,8.0,10.0,10.0,10.0,9.0,9.0,3,0.58 +14951,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.22 +2689,93.0,10.0,10.0,9.0,10.0,10.0,9.0,11,2.44 +50893,93.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.56 +74104,,,,,,,,1,0.18 +22505,,,,,,,,0, +108,,,,,,,,0, +15830,93.0,9.0,10.0,10.0,10.0,10.0,9.0,13,3.31 +48929,92.0,10.0,9.0,9.0,10.0,9.0,9.0,10,1.96 +20345,,,,,,,,0, +38697,96.0,10.0,10.0,10.0,10.0,9.0,10.0,38,12.39 +9671,,,,,,,,0, +1764,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.59 +39534,80.0,8.0,8.0,10.0,10.0,4.0,10.0,1,0.2 +76869,80.0,8.0,8.0,4.0,2.0,6.0,8.0,2,0.41 +63494,,,,,,,,1,0.2 +34544,90.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.67 +3469,,,,,,,,0, +13182,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.98 +18116,100.0,10.0,10.0,10.0,9.0,10.0,9.0,5,0.93 +17677,100.0,9.0,9.0,10.0,10.0,10.0,9.0,3,0.76 +12856,100.0,10.0,10.0,9.0,10.0,10.0,10.0,3,0.64 +57064,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.34 +26108,93.0,9.0,9.0,10.0,9.0,9.0,9.0,6,1.22 +28996,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,1.95 +32556,,,,,,,,0, +31577,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.2 +25365,96.0,10.0,9.0,10.0,10.0,10.0,10.0,5,0.97 +37096,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.08 +19895,87.0,9.0,9.0,8.0,9.0,9.0,9.0,14,2.88 +62295,89.0,9.0,9.0,8.0,8.0,9.0,9.0,9,2.62 +46851,80.0,9.0,8.0,10.0,10.0,10.0,9.0,2,0.38 +46525,100.0,10.0,9.0,10.0,10.0,7.0,8.0,2,0.5 +75664,88.0,9.0,8.0,9.0,9.0,9.0,9.0,31,6.2 +29788,,,,,,,,0, +42872,,,,,,,,0, +57431,,,,,,,,0, +4673,,,,,,,,0, +27002,,,,,,,,0, +73031,,,,,,,,0, +55376,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.25 +46621,80.0,8.0,10.0,10.0,10.0,8.0,8.0,1,0.33 +62807,75.0,8.0,9.0,10.0,10.0,10.0,8.0,4,0.75 +74590,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.57 +16450,,,,,,,,1,0.18 +64742,88.0,9.0,8.0,8.0,10.0,9.0,9.0,5,0.99 +10444,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.83 +11138,93.0,10.0,9.0,10.0,10.0,10.0,9.0,13,2.44 +29399,,,,,,,,0, +7170,80.0,8.0,8.0,7.0,9.0,8.0,8.0,2,0.47 +36101,95.0,10.0,10.0,9.0,9.0,10.0,9.0,14,2.71 +39750,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.6 +31822,86.0,9.0,9.0,8.0,10.0,10.0,8.0,7,1.3 +45456,89.0,9.0,9.0,9.0,9.0,9.0,9.0,11,2.23 +2667,,,,,,,,1,0.19 +6952,80.0,8.0,10.0,10.0,10.0,4.0,8.0,2,0.38 +57945,88.0,8.0,10.0,10.0,9.0,10.0,8.0,13,2.57 +71793,97.0,10.0,10.0,10.0,10.0,9.0,10.0,6,1.22 +52645,94.0,10.0,10.0,10.0,10.0,9.0,9.0,16,3.24 +61658,80.0,9.0,10.0,9.0,8.0,8.0,9.0,10,1.94 +66147,70.0,8.0,10.0,10.0,7.0,6.0,7.0,3,0.68 +56103,90.0,10.0,9.0,9.0,9.0,9.0,9.0,7,1.39 +6605,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,1.79 +55146,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.8 +14159,95.0,9.0,9.0,10.0,10.0,10.0,10.0,26,5.74 +59915,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.38 +8771,100.0,10.0,8.0,10.0,10.0,10.0,10.0,6,2.0 +47815,93.0,9.0,10.0,9.0,9.0,10.0,9.0,6,1.59 +2978,100.0,10.0,10.0,10.0,10.0,8.0,8.0,5,0.91 +65227,,,,,,,,0, +65739,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.2 +63170,84.0,10.0,9.0,10.0,10.0,10.0,8.0,5,1.03 +67940,80.0,9.0,9.0,8.0,10.0,10.0,7.0,2,0.39 +63623,100.0,10.0,10.0,10.0,10.0,9.0,10.0,9,1.74 +60400,74.0,8.0,8.0,8.0,8.0,8.0,8.0,14,2.56 +15672,,,,,,,,1,1.0 +16048,,,,,,,,0, +62319,,,,,,,,0, +11721,100.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.21 +6152,94.0,10.0,9.0,10.0,10.0,10.0,10.0,14,2.73 +1555,100.0,8.0,10.0,10.0,10.0,10.0,8.0,1,1.0 +36516,93.0,10.0,9.0,10.0,10.0,9.0,9.0,8,1.7 +61712,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.15 +9097,88.0,9.0,9.0,9.0,9.0,9.0,8.0,5,1.7 +7487,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.26 +39458,100.0,9.0,10.0,10.0,10.0,10.0,10.0,2,0.41 +68055,80.0,10.0,10.0,8.0,8.0,8.0,8.0,1,0.83 +71418,,,,,,,,0, +17038,,,,,,,,0, +11903,80.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.55 +72314,,,,,,,,0, +19439,,,,,,,,0, +23869,100.0,10.0,10.0,10.0,10.0,6.0,8.0,1,0.26 +65718,92.0,10.0,9.0,9.0,9.0,8.0,9.0,40,7.19 +48368,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.19 +16145,100.0,10.0,9.0,10.0,10.0,9.0,9.0,6,1.24 +71153,60.0,4.0,10.0,6.0,8.0,10.0,10.0,1,0.21 +12969,90.0,10.0,5.0,10.0,10.0,8.0,9.0,4,0.82 +35567,97.0,10.0,9.0,9.0,10.0,10.0,9.0,6,1.21 +64588,95.0,10.0,10.0,10.0,10.0,9.0,10.0,4,1.5 +4898,,,,,,,,0, +31655,90.0,10.0,9.0,10.0,10.0,10.0,9.0,8,1.79 +12634,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,1.84 +49014,,,,,,,,0, +45786,,,,,,,,0, +22993,80.0,8.0,7.0,6.0,10.0,7.0,8.0,2,0.41 +42260,,,,,,,,0, +23667,91.0,10.0,10.0,10.0,10.0,9.0,10.0,14,2.86 +61439,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.13 +57696,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.38 +2244,80.0,10.0,6.0,10.0,10.0,10.0,8.0,1,0.26 +2409,91.0,10.0,8.0,9.0,10.0,9.0,10.0,21,4.06 +70169,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.58 +49179,93.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.56 +13143,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.74 +11296,88.0,9.0,9.0,10.0,10.0,9.0,9.0,12,2.34 +48453,80.0,8.0,7.0,8.0,8.0,9.0,8.0,15,2.81 +13918,90.0,9.0,6.0,10.0,9.0,9.0,10.0,2,0.43 +39539,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.65 +43299,80.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.37 +72098,80.0,10.0,10.0,10.0,10.0,8.0,8.0,2,0.45 +9502,100.0,8.0,8.0,10.0,10.0,10.0,8.0,1,0.22 +11063,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.27 +71006,,,,,,,,1,1.0 +70380,92.0,10.0,10.0,10.0,10.0,9.0,9.0,13,2.52 +40104,100.0,10.0,10.0,9.0,10.0,10.0,9.0,4,0.79 +12667,88.0,9.0,9.0,10.0,10.0,10.0,9.0,19,3.54 +68631,80.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.39 +45763,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.76 +34505,80.0,10.0,8.0,8.0,8.0,6.0,10.0,1,0.25 +53984,98.0,10.0,10.0,10.0,10.0,10.0,10.0,26,5.86 +18715,100.0,10.0,9.0,10.0,9.0,10.0,10.0,3,0.58 +28149,94.0,10.0,10.0,10.0,10.0,10.0,9.0,7,1.38 +43741,100.0,10.0,9.0,10.0,10.0,9.0,10.0,4,0.82 +8378,98.0,10.0,10.0,10.0,10.0,10.0,10.0,19,3.68 +40358,100.0,10.0,10.0,10.0,10.0,8.0,10.0,2,0.45 +67784,100.0,10.0,10.0,10.0,10.0,10.0,9.0,22,4.55 +52919,95.0,10.0,10.0,10.0,10.0,10.0,9.0,11,2.46 +23303,96.0,10.0,10.0,10.0,10.0,10.0,10.0,9,1.7 +69193,96.0,9.0,9.0,10.0,10.0,10.0,10.0,17,3.25 +35479,,,,,,,,0, +59349,93.0,10.0,9.0,10.0,10.0,10.0,9.0,5,1.01 +10962,99.0,10.0,10.0,10.0,10.0,9.0,10.0,21,4.17 +3030,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.74 +64365,94.0,10.0,10.0,9.0,10.0,9.0,10.0,7,2.14 +29215,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.1 +1527,94.0,10.0,9.0,10.0,10.0,9.0,10.0,13,3.1 +75538,87.0,10.0,7.0,10.0,10.0,10.0,9.0,3,0.81 +34858,80.0,8.0,9.0,10.0,9.0,10.0,8.0,4,0.78 +66900,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,2.16 +46620,94.0,9.0,10.0,9.0,10.0,9.0,9.0,11,2.62 +38255,,,,,,,,0, +72277,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.79 +63054,87.0,9.0,9.0,10.0,10.0,9.0,9.0,15,3.1 +8852,70.0,8.0,8.0,8.0,8.0,8.0,8.0,2,0.4 +16654,70.0,6.0,6.0,6.0,8.0,8.0,8.0,2,0.39 +30562,96.0,10.0,9.0,10.0,10.0,10.0,9.0,5,0.97 +27325,,,,,,,,1,0.19 +48529,96.0,10.0,9.0,10.0,10.0,9.0,9.0,9,1.76 +24662,96.0,10.0,10.0,10.0,10.0,10.0,10.0,15,3.24 +18489,99.0,10.0,10.0,10.0,10.0,10.0,10.0,20,4.08 +74614,,,,,,,,0, +24799,90.0,9.0,9.0,10.0,10.0,10.0,9.0,30,5.59 +28507,99.0,10.0,10.0,10.0,10.0,10.0,10.0,40,8.39 +15101,97.0,10.0,10.0,10.0,10.0,9.0,10.0,31,5.81 +43717,,,,,,,,0, +24993,67.0,7.0,7.0,6.0,7.0,7.0,7.0,4,0.75 +50294,,,,,,,,0, +8808,,,,,,,,0, +44799,,,,,,,,0, +14685,95.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.01 +75742,98.0,10.0,10.0,10.0,10.0,9.0,10.0,9,1.75 +10311,80.0,10.0,4.0,10.0,10.0,10.0,10.0,2,0.44 +69099,90.0,9.0,8.0,9.0,10.0,8.0,10.0,3,0.59 +46894,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.28 +9259,,,,,,,,0, +51474,,,,,,,,0, +41072,95.0,10.0,10.0,10.0,10.0,10.0,9.0,12,2.35 +54123,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.43 +74843,,,,,,,,0, +34489,89.0,10.0,10.0,10.0,10.0,9.0,9.0,7,1.36 +25398,84.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.98 +663,,,,,,,,0, +75499,,,,,,,,0, +63533,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.41 +7674,,,,,,,,0, +58259,99.0,10.0,10.0,10.0,10.0,9.0,9.0,33,6.11 +10172,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.86 +60358,100.0,10.0,8.0,10.0,10.0,9.0,10.0,2,0.43 +27691,63.0,7.0,8.0,8.0,6.0,9.0,6.0,7,1.42 +38853,84.0,10.0,9.0,10.0,10.0,10.0,9.0,9,1.74 +62522,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.44 +62502,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.23 +69071,,,,,,,,0, +14410,86.0,10.0,10.0,10.0,10.0,9.0,10.0,7,1.59 +7928,,,,,,,,1,0.19 +9584,,,,,,,,0, +70252,100.0,10.0,10.0,10.0,10.0,9.0,10.0,8,1.45 +20552,100.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.38 +50910,94.0,10.0,10.0,10.0,10.0,10.0,9.0,7,1.51 +33077,100.0,10.0,9.0,10.0,10.0,10.0,9.0,2,0.39 +37500,90.0,9.0,9.0,10.0,9.0,10.0,9.0,4,0.78 +20691,80.0,8.0,8.0,10.0,10.0,8.0,8.0,5,1.26 +12481,,,,,,,,1,0.19 +34209,60.0,6.0,4.0,10.0,10.0,10.0,10.0,1,0.19 +31718,93.0,9.0,9.0,9.0,10.0,10.0,9.0,6,1.33 +36666,93.0,10.0,10.0,10.0,10.0,8.0,9.0,9,2.0 +58135,97.0,10.0,10.0,10.0,10.0,10.0,10.0,39,8.3 +30665,92.0,9.0,10.0,10.0,10.0,10.0,10.0,5,0.97 +33908,100.0,9.0,10.0,10.0,10.0,10.0,9.0,5,1.11 +24197,85.0,9.0,8.0,10.0,10.0,9.0,9.0,13,2.55 +33444,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.38 +39554,85.0,9.0,8.0,10.0,10.0,10.0,10.0,4,0.82 +66180,96.0,10.0,10.0,10.0,10.0,10.0,10.0,32,6.19 +26356,80.0,8.0,6.0,8.0,10.0,8.0,8.0,1,0.4 +56763,,,,,,,,0, +24277,,,,,,,,0, +24581,,,,,,,,0, +46664,95.0,10.0,10.0,10.0,10.0,9.0,9.0,11,2.08 +53448,70.0,7.0,6.0,7.0,9.0,8.0,6.0,2,0.4 +41668,100.0,10.0,9.0,10.0,10.0,9.0,9.0,6,1.13 +41678,93.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.62 +34502,100.0,10.0,10.0,10.0,9.0,9.0,9.0,3,0.55 +72776,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.14 +68321,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.4 +75073,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.2 +8347,96.0,9.0,9.0,10.0,10.0,9.0,10.0,9,1.67 +7418,97.0,10.0,9.0,10.0,10.0,10.0,10.0,8,1.54 +68761,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.07 +16259,100.0,10.0,10.0,10.0,10.0,8.0,9.0,2,0.47 +58826,76.0,8.0,7.0,9.0,9.0,9.0,8.0,5,1.03 +58257,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,4.56 +67753,,,,,,,,0, +74405,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.5 +9705,96.0,9.0,9.0,10.0,10.0,10.0,10.0,18,3.4 +33331,80.0,9.0,8.0,10.0,10.0,9.0,9.0,3,0.56 +13380,92.0,9.0,9.0,9.0,10.0,10.0,9.0,5,0.98 +25428,90.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +12778,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.88 +30022,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.12 +63206,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.2 +25247,,,,,,,,0, +68566,88.0,9.0,9.0,9.0,9.0,9.0,9.0,15,3.44 +64450,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.59 +37476,93.0,10.0,10.0,9.0,10.0,10.0,10.0,3,3.0 +42628,,,,,,,,0, +16332,91.0,10.0,10.0,10.0,10.0,10.0,9.0,13,2.87 +31433,90.0,10.0,10.0,10.0,10.0,8.0,9.0,2,0.73 +57852,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.11 +16320,92.0,9.0,8.0,9.0,9.0,10.0,9.0,19,3.52 +35069,96.0,9.0,10.0,10.0,10.0,9.0,9.0,5,1.35 +10571,97.0,9.0,9.0,10.0,10.0,10.0,9.0,7,1.3 +11476,92.0,9.0,9.0,10.0,10.0,9.0,10.0,8,1.64 +20242,,,,,,,,2, +24085,,,,,,,,0, +21812,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.54 +8374,97.0,9.0,9.0,10.0,10.0,10.0,9.0,7,1.59 +720,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.57 +72710,100.0,9.0,10.0,10.0,10.0,8.0,10.0,2,0.44 +47065,100.0,6.0,8.0,8.0,10.0,10.0,6.0,1,1.0 +38985,100.0,10.0,10.0,10.0,10.0,10.0,10.0,17,3.25 +64087,93.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.79 +60827,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.29 +44176,86.0,9.0,9.0,8.0,10.0,10.0,9.0,10,2.24 +27543,,,,,,,,0, +10991,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,2.58 +39954,60.0,7.0,6.0,9.0,7.0,7.0,7.0,4,0.78 +7482,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.56 +37401,95.0,10.0,10.0,10.0,10.0,10.0,9.0,25,8.33 +15593,88.0,10.0,9.0,10.0,10.0,10.0,9.0,5,1.03 +24426,80.0,8.0,6.0,10.0,10.0,10.0,6.0,1,0.29 +15720,,,,,,,,0, +65803,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.77 +40181,,,,,,,,0, +69261,,,,,,,,0, +15361,20.0,2.0,2.0,2.0,6.0,6.0,2.0,1,0.39 +55740,80.0,10.0,8.0,10.0,8.0,10.0,10.0,1,0.39 +30106,,,,,,,,0, +58832,80.0,6.0,8.0,6.0,10.0,10.0,6.0,1,0.32 +42037,93.0,9.0,9.0,10.0,10.0,10.0,9.0,17,3.29 +40834,,,,,,,,0, +3271,90.0,10.0,10.0,10.0,10.0,10.0,9.0,39,7.6 +2572,100.0,10.0,10.0,8.0,10.0,10.0,10.0,2,0.63 +55894,93.0,10.0,10.0,10.0,10.0,10.0,10.0,20,4.0 +42910,100.0,10.0,10.0,10.0,10.0,10.0,10.0,22,4.13 +42192,92.0,9.0,9.0,10.0,10.0,10.0,9.0,13,2.57 +22338,,,,,,,,0, +62699,100.0,10.0,8.0,10.0,10.0,8.0,10.0,1,0.21 +21320,98.0,9.0,10.0,9.0,10.0,10.0,10.0,10,1.96 +59379,95.0,9.0,8.0,10.0,10.0,10.0,9.0,13,2.67 +4090,,,,,,,,0, +31849,,,,,,,,0, +54437,80.0,8.0,9.0,10.0,9.0,8.0,7.0,5,1.7 +10126,,,,,,,,0, +10789,98.0,10.0,10.0,9.0,10.0,10.0,10.0,10,1.94 +15683,,,,,,,,0, +65539,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.43 +54784,,,,,,,,0, +60556,92.0,9.0,9.0,8.0,8.0,9.0,10.0,10,1.97 +39135,90.0,9.0,10.0,10.0,10.0,10.0,9.0,4,0.74 +63135,,,,,,,,0, +6554,100.0,10.0,9.0,10.0,10.0,9.0,10.0,7,1.37 +60575,99.0,10.0,10.0,10.0,10.0,10.0,10.0,19,3.73 +70182,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.08 +38532,96.0,10.0,9.0,10.0,10.0,9.0,10.0,15,3.69 +41424,100.0,10.0,9.0,10.0,9.0,9.0,10.0,2,0.55 +56042,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.97 +73563,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,1.0 +26740,93.0,9.0,9.0,10.0,10.0,10.0,9.0,3,1.88 +40009,93.0,10.0,9.0,10.0,10.0,9.0,8.0,3,0.87 +75491,83.0,10.0,10.0,10.0,10.0,9.0,8.0,7,1.57 +41269,100.0,10.0,10.0,9.0,9.0,10.0,10.0,3,0.65 +75958,93.0,10.0,9.0,9.0,9.0,10.0,10.0,3,0.87 +15945,,,,,,,,0, +76251,89.0,9.0,9.0,8.0,9.0,10.0,9.0,7,1.75 +10778,96.0,9.0,9.0,10.0,10.0,10.0,10.0,33,6.56 +59479,,,,,,,,0, +52230,94.0,10.0,10.0,10.0,10.0,9.0,9.0,13,2.52 +73698,86.0,9.0,8.0,9.0,9.0,9.0,8.0,13,2.55 +59822,86.0,9.0,8.0,10.0,10.0,10.0,9.0,20,4.03 +34007,96.0,10.0,10.0,10.0,10.0,10.0,10.0,15,3.88 +38299,87.0,9.0,9.0,9.0,9.0,8.0,9.0,3,0.56 +47785,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.21 +69922,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.28 +57288,93.0,10.0,10.0,10.0,10.0,10.0,9.0,6,1.34 +21406,70.0,8.0,8.0,7.0,7.0,10.0,6.0,3,1.08 +39279,97.0,10.0,9.0,10.0,10.0,9.0,9.0,7,2.14 +73467,88.0,9.0,10.0,10.0,10.0,10.0,9.0,22,4.02 +50533,96.0,10.0,10.0,10.0,10.0,10.0,10.0,14,3.82 +75675,100.0,10.0,9.0,9.0,10.0,10.0,10.0,2,0.41 +5071,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.57 +9191,,,,,,,,0, +52666,,,,,,,,0, +25382,100.0,9.0,9.0,10.0,10.0,10.0,10.0,4,0.83 +25049,,,,,,,,0, +65243,99.0,10.0,9.0,10.0,10.0,10.0,10.0,14,2.75 +11486,94.0,10.0,10.0,10.0,10.0,9.0,9.0,21,4.12 +25699,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.78 +53981,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.23 +1787,92.0,10.0,9.0,10.0,10.0,10.0,10.0,6,1.14 +37529,,,,,,,,0, +6168,100.0,9.0,10.0,10.0,10.0,10.0,10.0,2,0.37 +15891,100.0,10.0,10.0,10.0,9.0,10.0,10.0,5,1.08 +44907,100.0,10.0,10.0,10.0,10.0,9.0,10.0,8,2.26 +60532,95.0,10.0,10.0,9.0,10.0,10.0,10.0,4,0.75 +63558,,,,,,,,0, +71652,89.0,10.0,10.0,9.0,9.0,9.0,9.0,9,2.25 +68238,,,,,,,,0, +29295,98.0,10.0,10.0,10.0,10.0,9.0,10.0,10,2.01 +14981,100.0,9.0,10.0,10.0,10.0,10.0,10.0,4,0.81 +12708,90.0,9.0,9.0,10.0,10.0,10.0,9.0,8,1.52 +38670,,,,,,,,0, +43344,,,,,,,,0, +6770,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,1.27 +28752,,,,,,,,0, +49829,95.0,10.0,8.0,10.0,10.0,9.0,10.0,4,1.19 +59372,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.56 +9956,93.0,10.0,9.0,9.0,9.0,9.0,9.0,15,3.78 +58838,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.38 +48822,,,,,,,,0, +15118,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.61 +70788,95.0,10.0,10.0,10.0,10.0,10.0,10.0,18,3.75 +65541,100.0,10.0,9.0,10.0,10.0,10.0,9.0,7,1.36 +1866,87.0,9.0,9.0,9.0,10.0,9.0,9.0,20,3.92 +62343,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.58 +72003,89.0,9.0,10.0,10.0,10.0,10.0,9.0,22,4.62 +55002,90.0,9.0,7.0,9.0,10.0,10.0,9.0,6,1.23 +32965,,,,,,,,0, +16058,98.0,10.0,10.0,10.0,10.0,10.0,10.0,25,4.84 +23157,,,,,,,,0, +3225,97.0,10.0,10.0,10.0,10.0,9.0,10.0,18,3.44 +64023,95.0,10.0,10.0,10.0,10.0,10.0,10.0,12,3.79 +44407,91.0,9.0,10.0,9.0,9.0,9.0,9.0,7,2.66 +43739,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.2 +36984,96.0,10.0,10.0,8.0,9.0,10.0,10.0,5,0.97 +36533,100.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.82 +26550,80.0,8.0,8.0,9.0,9.0,7.0,8.0,2,0.4 +44579,100.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.53 +11889,91.0,10.0,10.0,9.0,10.0,10.0,10.0,18,3.38 +60951,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.93 +55931,,,,,,,,0, +41433,,,,,,,,0, +33041,100.0,10.0,10.0,10.0,6.0,10.0,10.0,1,0.19 +6891,89.0,9.0,10.0,9.0,9.0,10.0,9.0,9,2.14 +3311,92.0,10.0,9.0,10.0,9.0,10.0,9.0,22,5.55 +52474,92.0,10.0,8.0,9.0,10.0,8.0,9.0,11,2.31 +45675,,,,,,,,0, +9966,,,,,,,,0, +41023,,,,,,,,0, +25196,80.0,8.0,8.0,10.0,10.0,10.0,8.0,1,0.43 +9178,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,1.27 +48407,,,,,,,,0, +57721,96.0,10.0,10.0,10.0,9.0,10.0,10.0,11,2.16 +4725,100.0,9.0,10.0,10.0,10.0,10.0,7.0,2,0.37 +56844,70.0,7.0,7.0,9.0,8.0,10.0,7.0,2,0.39 +3009,90.0,10.0,10.0,10.0,10.0,10.0,8.0,2,0.41 +5270,92.0,10.0,9.0,10.0,9.0,10.0,10.0,5,1.65 +60801,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.39 +42760,80.0,10.0,4.0,10.0,10.0,2.0,8.0,1,0.25 +54282,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.92 +4884,,,,,,,,0, +70181,,,,,,,,0, +32589,53.0,6.0,5.0,9.0,8.0,7.0,6.0,3,0.58 +75203,94.0,10.0,10.0,10.0,10.0,9.0,9.0,13,2.58 +70533,91.0,10.0,9.0,10.0,10.0,10.0,9.0,15,3.0 +2115,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,3.17 +68300,,,,,,,,0, +341,99.0,10.0,10.0,10.0,10.0,10.0,10.0,31,5.96 +59236,95.0,10.0,9.0,10.0,10.0,9.0,10.0,15,2.9 +59288,93.0,9.0,9.0,9.0,10.0,7.0,9.0,3,0.63 +47175,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.83 +25604,97.0,10.0,9.0,10.0,10.0,10.0,10.0,6,1.15 +56788,,,,,,,,0, +6499,95.0,10.0,10.0,9.0,10.0,10.0,9.0,13,3.94 +54117,100.0,9.0,9.0,10.0,10.0,10.0,9.0,2,0.4 +75502,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.39 +14852,99.0,10.0,10.0,10.0,10.0,10.0,10.0,18,3.83 +26686,100.0,10.0,10.0,10.0,10.0,10.0,10.0,15,2.74 +70597,90.0,9.0,7.0,10.0,9.0,10.0,9.0,4,0.97 +24664,93.0,9.0,10.0,9.0,10.0,9.0,9.0,3,0.6 +65124,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.96 +21000,100.0,10.0,9.0,10.0,10.0,10.0,10.0,6,1.4 +34073,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.21 +59271,87.0,9.0,7.0,10.0,10.0,9.0,10.0,7,1.28 +60867,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.2 +64668,,,,,,,,1,0.2 +17407,88.0,10.0,9.0,9.0,10.0,10.0,9.0,24,5.33 +38685,,,,,,,,0, +3216,96.0,10.0,10.0,10.0,10.0,10.0,10.0,31,6.0 +6007,,,,,,,,1,0.2 +12251,100.0,9.0,10.0,10.0,10.0,10.0,10.0,4,0.78 +38440,80.0,9.0,8.0,8.0,9.0,10.0,8.0,5,0.98 +1968,60.0,8.0,7.0,7.0,7.0,7.0,5.0,5,1.47 +39290,90.0,9.0,9.0,9.0,10.0,9.0,8.0,7,1.37 +6790,80.0,9.0,8.0,9.0,9.0,9.0,8.0,14,2.59 +114,,,,,,,,1,0.19 +16923,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.74 +4179,99.0,10.0,10.0,10.0,10.0,10.0,10.0,18,3.53 +38202,90.0,10.0,10.0,10.0,6.0,7.0,9.0,2,2.0 +76562,,,,,,,,0, +58006,100.0,10.0,9.0,10.0,10.0,10.0,9.0,3,1.88 +76535,93.0,8.0,8.0,9.0,9.0,10.0,8.0,3,1.18 +6698,,,,,,,,0, +69783,86.0,9.0,9.0,9.0,9.0,9.0,9.0,8,1.57 +21621,,,,,,,,0, +10917,,,,,,,,0, +26368,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.39 +59436,100.0,10.0,10.0,10.0,10.0,10.0,10.0,24,4.74 +34449,,,,,,,,0, +71096,93.0,10.0,10.0,10.0,10.0,10.0,10.0,11,2.06 +70335,,,,,,,,0, +28441,100.0,10.0,10.0,10.0,10.0,9.0,10.0,10,2.4 +23946,,,,,,,,0, +45612,,,,,,,,0, +18889,100.0,10.0,9.0,10.0,9.0,10.0,9.0,3,0.62 +6055,,,,,,,,0, +66141,,,,,,,,0, +24156,93.0,9.0,10.0,9.0,9.0,9.0,9.0,8,1.71 +46063,93.0,10.0,10.0,10.0,10.0,10.0,9.0,14,2.75 +22872,94.0,9.0,9.0,10.0,10.0,10.0,9.0,16,3.36 +60544,,,,,,,,0, +36311,97.0,10.0,9.0,10.0,10.0,9.0,10.0,14,3.33 +48613,60.0,6.0,6.0,10.0,10.0,6.0,2.0,1,0.48 +18803,80.0,10.0,6.0,10.0,10.0,10.0,8.0,1,0.4 +2970,100.0,10.0,10.0,10.0,6.0,10.0,10.0,1,1.0 +52386,96.0,10.0,10.0,9.0,10.0,10.0,10.0,14,2.75 +67557,60.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.67 +18026,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.97 +32239,96.0,10.0,9.0,10.0,10.0,10.0,10.0,33,6.51 +51712,94.0,10.0,9.0,10.0,10.0,10.0,10.0,8,1.8 +48937,,,,,,,,1,0.29 +46449,80.0,8.0,8.0,10.0,10.0,8.0,8.0,1,0.67 +61478,100.0,10.0,10.0,8.0,10.0,10.0,8.0,1,0.75 +60191,,,,,,,,0, +24417,85.0,9.0,8.0,9.0,9.0,9.0,9.0,11,2.84 +40048,86.0,9.0,9.0,10.0,10.0,9.0,8.0,14,2.73 +19587,86.0,9.0,8.0,10.0,10.0,9.0,9.0,17,3.31 +43862,,,,,,,,0, +1730,,,,,,,,0, +12785,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.39 +45825,80.0,9.0,10.0,9.0,9.0,10.0,9.0,2,0.55 +42867,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.41 +71355,,,,,,,,0, +37628,100.0,8.0,10.0,10.0,10.0,10.0,8.0,1,0.36 +70352,,,,,,,,0, +67681,,,,,,,,0, +56623,,,,,,,,0, +11692,,,,,,,,0, +64794,,,,,,,,0, +32519,,,,,,,,0, +64725,87.0,9.0,9.0,10.0,10.0,10.0,9.0,9,4.66 +31196,80.0,8.0,7.0,9.0,9.0,9.0,9.0,3,0.83 +43576,,,,,,,,0, +40813,91.0,9.0,9.0,9.0,9.0,9.0,8.0,7,1.49 +37858,100.0,10.0,10.0,10.0,10.0,9.0,9.0,15,3.66 +20373,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.92 +33254,82.0,9.0,9.0,9.0,10.0,10.0,8.0,12,2.43 +22893,89.0,10.0,9.0,10.0,9.0,10.0,9.0,7,1.39 +42357,80.0,9.0,10.0,9.0,9.0,10.0,9.0,4,0.74 +56277,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.89 +67675,90.0,10.0,9.0,10.0,10.0,9.0,10.0,2,0.47 +49320,,,,,,,,0, +54975,100.0,10.0,10.0,10.0,9.0,9.0,10.0,3,0.6 +12051,68.0,7.0,8.0,6.0,7.0,9.0,7.0,11,2.29 +32564,100.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.81 +25587,,,,,,,,0, +14140,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.63 +49527,94.0,10.0,10.0,10.0,10.0,10.0,9.0,7,1.57 +56247,95.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.82 +41642,90.0,9.0,8.0,9.0,10.0,10.0,8.0,4,1.02 +24595,88.0,10.0,8.0,10.0,10.0,8.0,10.0,5,0.99 +47746,92.0,9.0,9.0,10.0,10.0,10.0,10.0,6,1.22 +12614,91.0,9.0,10.0,9.0,9.0,10.0,9.0,11,2.26 +64401,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +11068,40.0,2.0,6.0,4.0,6.0,4.0,2.0,1,0.19 +25144,78.0,9.0,9.0,9.0,9.0,9.0,8.0,9,1.89 +27387,84.0,8.0,8.0,9.0,8.0,9.0,8.0,10,1.95 +51202,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.7 +49920,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,2.5 +3875,,,,,,,,0, +8119,,,,,,,,0, +52876,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.22 +54707,100.0,9.0,9.0,9.0,9.0,9.0,9.0,2,1.87 +25951,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,1.96 +64572,90.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.44 +71682,,,,,,,,0, +9326,100.0,10.0,9.0,10.0,10.0,10.0,10.0,6,1.17 +17299,90.0,10.0,9.0,10.0,8.0,10.0,9.0,2,0.45 +50641,,,,,,,,0, +36136,,,,,,,,0, +58030,,,,,,,,0, +35511,100.0,10.0,10.0,10.0,10.0,10.0,9.0,6,1.49 +58446,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,1.71 +64650,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.75 +28588,,,,,,,,0, +46446,80.0,8.0,10.0,8.0,6.0,10.0,10.0,1,0.43 +63479,75.0,8.0,9.0,8.0,10.0,8.0,8.0,4,0.84 +73146,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.36 +5532,100.0,10.0,8.0,10.0,10.0,10.0,9.0,2,0.49 +57855,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.88 +1518,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.55 +37956,100.0,10.0,9.0,10.0,10.0,9.0,10.0,2,0.38 +31767,96.0,10.0,10.0,10.0,10.0,9.0,9.0,14,2.98 +14413,100.0,10.0,9.0,9.0,10.0,10.0,9.0,2,0.67 +34337,100.0,10.0,10.0,10.0,10.0,8.0,8.0,2,0.41 +43871,80.0,10.0,8.0,10.0,8.0,10.0,10.0,1,0.25 +65960,,,,,,,,0, +14752,93.0,9.0,8.0,9.0,9.0,10.0,8.0,11,2.08 +33681,98.0,10.0,10.0,10.0,10.0,9.0,10.0,21,3.99 +32309,95.0,10.0,10.0,10.0,10.0,10.0,9.0,4,2.22 +35704,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.92 +20028,20.0,6.0,4.0,2.0,2.0,4.0,6.0,1,0.23 +67293,,,,,,,,1,0.21 +41134,80.0,9.0,10.0,9.0,9.0,10.0,9.0,3,0.76 +38762,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.62 +6212,97.0,10.0,10.0,10.0,10.0,10.0,10.0,64,11.93 +50454,96.0,10.0,10.0,10.0,10.0,10.0,9.0,52,9.81 +56409,85.0,9.0,7.0,9.0,9.0,8.0,8.0,8,1.64 +990,,,,,,,,0, +6452,92.0,10.0,8.0,10.0,10.0,10.0,8.0,6,1.45 +59323,60.0,8.0,8.0,10.0,10.0,10.0,8.0,1,0.19 +76278,97.0,10.0,8.0,10.0,10.0,9.0,10.0,7,2.33 +46166,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,2.77 +38942,97.0,10.0,10.0,10.0,10.0,10.0,9.0,7,1.38 +4625,86.0,9.0,9.0,10.0,9.0,9.0,8.0,7,1.45 +17791,93.0,10.0,9.0,10.0,9.0,10.0,10.0,16,3.14 +62147,94.0,10.0,9.0,9.0,10.0,10.0,9.0,14,2.71 +40585,40.0,2.0,4.0,8.0,8.0,8.0,6.0,1,0.88 +44100,100.0,10.0,10.0,10.0,10.0,10.0,9.0,10,2.0 +69377,,,,,,,,0, +49558,,,,,,,,0, +54040,80.0,9.0,8.0,10.0,10.0,9.0,9.0,7,1.29 +22554,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,2.43 +67050,80.0,8.0,4.0,8.0,8.0,10.0,6.0,1,0.22 +36692,,,,,,,,0, +61901,96.0,10.0,10.0,10.0,10.0,9.0,9.0,11,2.13 +33083,,,,,,,,0, +72328,80.0,8.0,8.0,9.0,9.0,8.0,7.0,2,0.39 +44044,80.0,9.0,9.0,8.0,8.0,10.0,9.0,6,1.21 +61829,89.0,10.0,10.0,10.0,10.0,9.0,9.0,7,1.45 +68732,93.0,9.0,9.0,10.0,10.0,9.0,9.0,6,1.17 +71274,98.0,10.0,10.0,9.0,9.0,10.0,10.0,14,2.69 +6675,,,,,,,,0, +64108,90.0,9.0,9.0,10.0,10.0,9.0,9.0,10,4.17 +17957,88.0,10.0,9.0,10.0,10.0,10.0,9.0,8,1.64 +24942,90.0,8.0,8.0,10.0,9.0,9.0,10.0,8,1.59 +36659,90.0,9.0,8.0,10.0,10.0,9.0,9.0,5,1.29 +32752,100.0,10.0,10.0,10.0,10.0,10.0,10.0,17,4.51 +53173,,,,,,,,0, +41801,80.0,10.0,6.0,10.0,10.0,10.0,8.0,1,0.22 +62524,90.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.68 +74384,,,,,,,,0, +13462,,,,,,,,0, +50047,,,,,,,,0, +38183,96.0,10.0,10.0,9.0,10.0,10.0,9.0,5,2.38 +18694,,,,,,,,0, +49106,,,,,,,,0, +35889,100.0,10.0,10.0,9.0,10.0,10.0,10.0,3,1.67 +1101,,,,,,,,0, +38216,,,,,,,,0, +61423,,,,,,,,0, +40986,91.0,9.0,10.0,9.0,10.0,10.0,9.0,7,1.35 +59054,,,,,,,,0, +33907,60.0,6.0,10.0,4.0,4.0,8.0,6.0,1,0.48 +64554,87.0,9.0,7.0,9.0,10.0,9.0,9.0,4,0.74 +68991,,,,,,,,0, +12042,,,,,,,,0, +10736,92.0,9.0,10.0,9.0,9.0,10.0,9.0,19,3.58 +36937,96.0,10.0,9.0,10.0,10.0,10.0,10.0,43,9.7 +49880,88.0,10.0,9.0,10.0,10.0,9.0,9.0,8,1.75 +9578,100.0,10.0,9.0,10.0,10.0,10.0,10.0,12,2.71 +12850,60.0,6.0,5.0,7.0,7.0,7.0,7.0,3,0.76 +63389,60.0,8.0,8.0,6.0,6.0,8.0,8.0,2,0.44 +46953,70.0,8.0,8.0,7.0,9.0,9.0,8.0,5,1.35 +15544,,,,,,,,1,0.21 +25070,100.0,10.0,10.0,9.0,10.0,10.0,10.0,3,0.63 +28083,90.0,10.0,9.0,8.0,10.0,10.0,10.0,2,0.39 +50248,80.0,7.0,7.0,9.0,10.0,8.0,7.0,3,1.11 +35363,99.0,10.0,10.0,10.0,10.0,10.0,10.0,15,3.08 +44193,60.0,7.0,8.0,8.0,7.0,7.0,6.0,3,0.78 +40451,,,,,,,,0, +4726,80.0,8.0,7.0,9.0,9.0,9.0,8.0,7,1.32 +75662,100.0,10.0,10.0,10.0,10.0,9.0,9.0,24,4.74 +41081,90.0,9.0,9.0,9.0,9.0,9.0,9.0,30,5.81 +60335,91.0,9.0,9.0,10.0,10.0,8.0,9.0,15,3.1 +63264,97.0,10.0,10.0,10.0,9.0,10.0,10.0,6,1.21 +20311,92.0,10.0,8.0,10.0,10.0,10.0,10.0,5,1.08 +70361,84.0,9.0,8.0,10.0,9.0,9.0,9.0,9,2.65 +65255,,,,,,,,0, +12304,,,,,,,,1,0.19 +4780,90.0,8.0,8.0,10.0,10.0,7.0,7.0,2,0.42 +67621,,,,,,,,0, +10524,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.59 +61571,88.0,8.0,9.0,10.0,9.0,10.0,9.0,8,1.6 +46466,70.0,5.0,10.0,8.0,7.0,10.0,8.0,2,0.45 +37774,20.0,2.0,2.0,2.0,2.0,10.0,4.0,1,0.28 +27417,,,,,,,,0, +2257,,,,,,,,0, +61512,94.0,9.0,9.0,10.0,9.0,9.0,9.0,8,1.79 +4064,,,,,,,,0, +55206,100.0,10.0,10.0,10.0,10.0,10.0,10.0,22,4.29 +73189,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,2.43 +33666,20.0,2.0,2.0,8.0,6.0,8.0,2.0,1,0.31 +7599,85.0,9.0,9.0,9.0,8.0,9.0,9.0,8,2.18 +32714,98.0,10.0,10.0,10.0,10.0,10.0,9.0,8,1.67 +18085,92.0,9.0,9.0,10.0,10.0,10.0,9.0,5,1.03 +44472,97.0,10.0,10.0,10.0,10.0,10.0,10.0,26,5.45 +54831,100.0,10.0,10.0,10.0,10.0,10.0,10.0,49,9.3 +17816,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.22 +47714,68.0,7.0,6.0,9.0,9.0,7.0,7.0,5,1.23 +34490,20.0,2.0,2.0,10.0,8.0,10.0,4.0,1,0.23 +47326,95.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.18 +5938,73.0,7.0,7.0,9.0,7.0,10.0,7.0,3,1.1 +48708,97.0,10.0,9.0,10.0,10.0,10.0,10.0,7,1.35 +65974,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.75 +28953,80.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.2 +53310,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.73 +53101,94.0,10.0,9.0,10.0,10.0,9.0,10.0,17,3.38 +46634,,,,,,,,0, +56455,,,,,,,,0, +14654,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.92 +7396,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.66 +61728,,,,,,,,0, +37702,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.6 +50561,99.0,10.0,10.0,10.0,10.0,10.0,10.0,18,3.51 +65315,100.0,10.0,10.0,10.0,10.0,9.0,10.0,9,1.75 +42343,,,,,,,,0, +46589,88.0,9.0,9.0,9.0,10.0,10.0,9.0,8,2.93 +75424,100.0,2.0,10.0,6.0,8.0,10.0,10.0,1,0.43 +71372,98.0,10.0,10.0,10.0,10.0,10.0,9.0,13,3.12 +76415,93.0,10.0,9.0,10.0,10.0,10.0,9.0,9,1.86 +57997,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.97 +56389,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.83 +2075,,,,,,,,0, +8032,100.0,10.0,6.0,10.0,10.0,10.0,10.0,1,1.0 +30533,90.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.83 +11934,,,,,,,,0, +60510,80.0,8.0,8.0,9.0,8.0,9.0,8.0,7,1.36 +47742,87.0,9.0,8.0,9.0,9.0,9.0,8.0,14,3.02 +38482,100.0,10.0,10.0,10.0,10.0,10.0,10.0,15,3.13 +13076,100.0,10.0,10.0,6.0,10.0,10.0,8.0,1,0.22 +8480,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.39 +72321,80.0,8.0,8.0,10.0,10.0,8.0,8.0,2,0.48 +52598,93.0,10.0,9.0,9.0,10.0,10.0,9.0,14,2.84 +65267,93.0,9.0,9.0,9.0,10.0,9.0,9.0,3,0.58 +62782,80.0,10.0,6.0,10.0,10.0,10.0,10.0,1,0.19 +21295,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.41 +25524,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.19 +37480,,,,,,,,1,1.0 +23298,88.0,10.0,8.0,10.0,10.0,9.0,9.0,21,4.17 +33075,87.0,10.0,10.0,9.0,9.0,9.0,9.0,7,1.58 +34362,,,,,,,,0, +26612,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.62 +76176,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.19 +30776,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.7 +32257,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.58 +30821,95.0,10.0,9.0,10.0,10.0,10.0,9.0,13,2.55 +40782,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,1.34 +74999,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +3305,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,2.08 +67970,,,,,,,,0, +53620,100.0,10.0,10.0,10.0,10.0,10.0,9.0,6,1.5 +55605,60.0,6.0,7.0,9.0,8.0,9.0,7.0,2,0.43 +11203,89.0,9.0,9.0,9.0,8.0,9.0,9.0,8,1.51 +18061,80.0,9.0,10.0,9.0,10.0,10.0,8.0,4,0.88 +45918,91.0,7.0,9.0,9.0,9.0,9.0,9.0,7,2.08 +23341,,,,,,,,0, +15180,93.0,9.0,9.0,8.0,10.0,10.0,9.0,6,1.28 +10560,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,1.01 +8191,,,,,,,,0, +64857,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.39 +57720,,,,,,,,0, +15148,98.0,10.0,9.0,10.0,10.0,10.0,10.0,9,1.85 +8022,80.0,9.0,8.0,10.0,8.0,10.0,8.0,7,1.38 +3730,,,,,,,,0, +31328,97.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.57 +8873,,,,,,,,0, +3478,85.0,9.0,10.0,9.0,9.0,10.0,9.0,8,1.86 +69736,,,,,,,,1,0.21 +46617,95.0,10.0,10.0,10.0,10.0,10.0,10.0,19,3.9 +36462,96.0,10.0,10.0,10.0,10.0,10.0,10.0,16,3.81 +47281,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.21 +29254,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.3 +14987,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.38 +63318,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.13 +62770,98.0,10.0,10.0,10.0,10.0,9.0,10.0,25,5.17 +23704,99.0,10.0,10.0,10.0,10.0,9.0,10.0,23,5.43 +40138,95.0,10.0,10.0,10.0,10.0,10.0,9.0,38,7.76 +16972,100.0,10.0,10.0,10.0,10.0,10.0,10.0,15,3.24 +6071,100.0,10.0,10.0,9.0,10.0,10.0,9.0,15,3.24 +41545,88.0,10.0,8.0,10.0,10.0,9.0,10.0,5,0.99 +6598,,,,,,,,0, +8678,98.0,10.0,10.0,10.0,10.0,10.0,10.0,24,4.47 +62479,87.0,9.0,9.0,10.0,10.0,10.0,9.0,40,8.82 +50655,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.45 +65431,99.0,10.0,10.0,10.0,10.0,10.0,10.0,25,6.1 +64540,93.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.82 +73863,98.0,10.0,10.0,10.0,10.0,10.0,10.0,38,8.91 +42057,,,,,,,,0, +68240,,,,,,,,0, +23154,95.0,10.0,9.0,9.0,10.0,10.0,9.0,8,3.16 +38401,93.0,9.0,9.0,9.0,9.0,9.0,9.0,3,1.55 +9455,,,,,,,,0, +38993,98.0,10.0,9.0,10.0,10.0,10.0,10.0,19,3.61 +20812,100.0,10.0,9.0,10.0,9.0,10.0,10.0,2,0.41 +47828,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,2.29 +22928,,,,,,,,0, +5830,90.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.46 +74557,100.0,10.0,10.0,10.0,10.0,9.0,10.0,6,1.13 +35940,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,0.98 +13654,,,,,,,,0, +71186,96.0,10.0,10.0,10.0,9.0,9.0,10.0,5,1.7 +63326,80.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.53 +8662,73.0,8.0,8.0,7.0,8.0,8.0,8.0,16,3.38 +27942,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.1 +60966,100.0,10.0,9.0,10.0,10.0,10.0,9.0,3,0.75 +214,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.79 +46960,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,1.2 +9806,88.0,9.0,10.0,10.0,10.0,10.0,9.0,8,2.12 +55225,,,,,,,,0, +50614,60.0,8.0,8.0,10.0,6.0,10.0,6.0,1,0.79 +53886,,,,,,,,0, +18689,79.0,8.0,8.0,10.0,9.0,9.0,8.0,22,5.12 +66075,90.0,10.0,10.0,10.0,10.0,8.0,10.0,4,1.74 +60104,100.0,10.0,7.0,10.0,10.0,9.0,9.0,4,0.76 +36989,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.75 +10208,84.0,8.0,8.0,8.0,8.0,8.0,8.0,6,1.19 +30375,80.0,10.0,10.0,10.0,8.0,6.0,8.0,1,0.19 +70472,100.0,10.0,10.0,10.0,10.0,10.0,9.0,11,2.23 +54108,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,0.96 +47141,90.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.79 +530,,,,,,,,0, +61943,90.0,9.0,10.0,9.0,9.0,10.0,9.0,15,2.94 +70185,80.0,7.0,8.0,10.0,10.0,10.0,8.0,2,0.39 +685,90.0,9.0,9.0,9.0,9.0,9.0,9.0,2,0.41 +13276,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.82 +67518,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.0 +74421,80.0,8.0,8.0,10.0,10.0,10.0,10.0,1,0.21 +5138,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.51 +76474,,,,,,,,0, +75945,89.0,9.0,9.0,9.0,10.0,9.0,9.0,17,3.49 +71718,88.0,10.0,9.0,9.0,10.0,9.0,9.0,15,2.92 +46653,100.0,10.0,10.0,10.0,10.0,10.0,8.0,3,1.08 +5030,,,,,,,,0, +32030,88.0,9.0,9.0,10.0,10.0,9.0,9.0,16,3.04 +23104,97.0,10.0,10.0,10.0,10.0,9.0,9.0,33,6.73 +54959,100.0,8.0,9.0,9.0,9.0,9.0,9.0,3,0.62 +58036,,,,,,,,0, +16355,90.0,10.0,8.0,10.0,10.0,9.0,10.0,3,0.68 +34759,,,,,,,,0, +15462,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.77 +21877,,,,,,,,2,0.41 +52658,97.0,10.0,10.0,10.0,10.0,10.0,10.0,14,3.09 +48769,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,0.96 +29549,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.36 +38886,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.3 +52845,98.0,10.0,10.0,10.0,10.0,9.0,9.0,10,2.05 +68505,,,,,,,,0, +68127,85.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.79 +55120,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,3.67 +20350,97.0,10.0,10.0,10.0,10.0,9.0,10.0,14,2.82 +36114,60.0,8.0,6.0,10.0,8.0,10.0,6.0,1,0.29 +5929,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.33 +8949,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.2 +6312,,,,,,,,0, +31131,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.34 +50882,100.0,10.0,10.0,8.0,10.0,10.0,10.0,1,0.2 +47983,,,,,,,,0, +4034,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.3 +15797,100.0,10.0,10.0,10.0,10.0,9.0,10.0,6,2.95 +21231,,,,,,,,0, +13627,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.59 +21911,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.77 +15910,100.0,10.0,10.0,9.0,9.0,7.0,9.0,2,0.39 +41931,94.0,10.0,10.0,10.0,10.0,9.0,9.0,8,1.59 +28060,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.75 +11583,,,,,,,,0, +23672,97.0,10.0,10.0,10.0,10.0,10.0,10.0,22,4.52 +32975,88.0,10.0,9.0,9.0,10.0,10.0,10.0,5,1.0 +76490,91.0,9.0,10.0,9.0,9.0,9.0,9.0,7,1.56 +23417,96.0,9.0,9.0,10.0,10.0,9.0,9.0,19,4.29 +53053,92.0,10.0,9.0,9.0,10.0,9.0,9.0,6,1.13 +45141,,,,,,,,1, +70494,,,,,,,,0, +70339,93.0,10.0,10.0,10.0,10.0,9.0,10.0,6,1.24 +48286,100.0,10.0,9.0,10.0,10.0,9.0,10.0,3,0.61 +32962,90.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.9 +13120,,,,,,,,0, +64545,100.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.83 +68325,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.38 +27196,90.0,10.0,9.0,10.0,10.0,9.0,10.0,4,0.92 +76421,,,,,,,,0, +13298,,,,,,,,0, +58710,,,,,,,,0, +48636,87.0,9.0,9.0,10.0,10.0,9.0,10.0,4,0.78 +18997,80.0,8.0,8.0,8.0,8.0,8.0,8.0,1,0.48 +380,,,,,,,,1,0.19 +8125,,,,,,,,0, +46832,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,4.23 +9878,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.21 +34552,99.0,10.0,10.0,10.0,10.0,10.0,10.0,28,5.87 +24077,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,1.4 +43635,,,,,,,,0, +69475,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.42 +35384,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.53 +58039,,,,,,,,0, +23250,,,,,,,,0, +44157,93.0,9.0,9.0,9.0,9.0,9.0,9.0,3,0.63 +1459,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.8 +54192,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.68 +3111,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.81 +327,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.27 +31494,97.0,10.0,10.0,9.0,10.0,10.0,10.0,12,3.05 +42728,,,,,,,,0, +47962,97.0,10.0,10.0,10.0,10.0,9.0,9.0,7,1.42 +28199,,,,,,,,0, +19058,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.3 +66735,,,,,,,,0, +23074,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.82 +36398,100.0,10.0,10.0,10.0,10.0,8.0,10.0,5,1.14 +67532,,,,,,,,0, +19708,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.39 +30946,90.0,8.0,9.0,10.0,9.0,10.0,10.0,2,0.42 +28540,96.0,10.0,10.0,9.0,10.0,8.0,10.0,18,3.72 +23662,100.0,10.0,10.0,10.0,10.0,10.0,9.0,8,1.85 +32134,97.0,10.0,10.0,10.0,10.0,9.0,10.0,6,1.55 +47415,93.0,10.0,10.0,10.0,9.0,9.0,9.0,4,1.17 +20297,,,,,,,,0, +72424,97.0,10.0,10.0,10.0,10.0,9.0,9.0,6,1.18 +44035,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.15 +49205,93.0,10.0,9.0,10.0,10.0,10.0,9.0,15,3.19 +6961,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,2.71 +27855,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.59 +31178,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.73 +59969,100.0,10.0,9.0,10.0,10.0,8.0,10.0,2,0.87 +59824,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.81 +41761,96.0,10.0,9.0,10.0,10.0,9.0,10.0,32,6.4 +13934,94.0,10.0,9.0,10.0,9.0,10.0,10.0,16,3.56 +32972,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.22 +60200,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.19 +41797,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.32 +16862,98.0,10.0,9.0,10.0,10.0,9.0,10.0,12,3.5 +64521,,,,,,,,0, +58184,,,,,,,,0, +76224,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.27 +33460,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.29 +37866,,,,,,,,0, +73670,97.0,9.0,10.0,10.0,10.0,9.0,9.0,7,1.68 +61726,,,,,,,,1,0.46 +74052,90.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.87 +7663,90.0,9.0,10.0,10.0,10.0,10.0,9.0,4,1.52 +53485,97.0,10.0,9.0,10.0,10.0,9.0,10.0,43,9.77 +63376,85.0,9.0,9.0,10.0,10.0,8.0,9.0,15,2.96 +19329,96.0,10.0,9.0,10.0,10.0,10.0,9.0,14,2.84 +28360,,,,,,,,0, +11901,90.0,9.0,8.0,10.0,10.0,10.0,9.0,10,1.95 +58327,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.43 +11994,93.0,9.0,8.0,9.0,10.0,9.0,9.0,3,0.62 +7636,100.0,8.0,4.0,10.0,10.0,10.0,10.0,1,0.29 +74634,100.0,10.0,9.0,10.0,10.0,10.0,10.0,9,2.84 +73935,96.0,10.0,10.0,10.0,10.0,9.0,10.0,31,6.12 +23733,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.65 +36376,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.76 +19129,92.0,10.0,9.0,10.0,10.0,10.0,9.0,5,1.28 +16214,92.0,10.0,10.0,10.0,10.0,10.0,10.0,29,5.8 +57824,,,,,,,,0, +20449,,,,,,,,0, +21094,,,,,,,,0, +53522,87.0,9.0,9.0,9.0,10.0,10.0,9.0,14,2.68 +4854,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.27 +16087,97.0,9.0,10.0,10.0,10.0,10.0,10.0,24,4.65 +2743,,,,,,,,0, +14468,89.0,9.0,8.0,10.0,10.0,9.0,8.0,9,2.11 +5025,97.0,10.0,9.0,10.0,10.0,10.0,10.0,39,8.13 +43565,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,2.73 +54348,94.0,9.0,9.0,10.0,9.0,10.0,9.0,11,4.85 +59823,92.0,9.0,8.0,10.0,10.0,10.0,9.0,5,1.03 +73033,100.0,10.0,10.0,10.0,10.0,9.0,9.0,2,0.45 +74917,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +30660,93.0,9.0,9.0,10.0,10.0,8.0,9.0,3,1.61 +28618,91.0,9.0,8.0,9.0,9.0,9.0,10.0,11,2.2 +7271,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.34 +42527,73.0,7.0,7.0,7.0,7.0,9.0,7.0,4,1.01 +14950,100.0,9.0,10.0,10.0,10.0,10.0,9.0,2,0.94 +9610,90.0,9.0,9.0,10.0,10.0,10.0,9.0,2,0.45 +29016,,,,,,,,0, +21679,85.0,10.0,8.0,10.0,10.0,9.0,10.0,6,2.07 +55123,95.0,9.0,9.0,10.0,10.0,10.0,9.0,12,2.47 +17809,95.0,10.0,10.0,9.0,9.0,10.0,9.0,26,8.3 +28613,80.0,7.0,6.0,8.0,7.0,8.0,8.0,2,0.46 +45009,,,,,,,,0, +7645,90.0,9.0,9.0,9.0,10.0,9.0,10.0,5,0.98 +44493,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.34 +60914,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.44 +54134,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.39 +71706,88.0,9.0,9.0,9.0,9.0,9.0,9.0,16,3.56 +48888,90.0,10.0,9.0,10.0,10.0,10.0,9.0,24,4.56 +62563,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.55 +26868,99.0,10.0,10.0,10.0,10.0,10.0,10.0,14,2.82 +64541,99.0,10.0,10.0,10.0,10.0,10.0,10.0,25,4.9 +50343,90.0,9.0,7.0,10.0,10.0,10.0,10.0,11,2.09 +58273,96.0,10.0,10.0,10.0,10.0,10.0,10.0,21,4.32 +2805,100.0,10.0,10.0,10.0,10.0,9.0,10.0,8,1.57 +8476,87.0,9.0,9.0,10.0,10.0,9.0,9.0,18,3.51 +20199,,,,,,,,0, +12117,80.0,8.0,8.0,8.0,10.0,8.0,8.0,1,0.49 +40837,86.0,9.0,9.0,8.0,9.0,9.0,9.0,25,5.36 +10107,89.0,9.0,9.0,10.0,10.0,10.0,9.0,23,4.45 +8786,,,,,,,,2,0.39 +86,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.45 +22031,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.0 +50450,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,3.53 +50606,,,,,,,,4,0.78 +32215,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.24 +13905,87.0,9.0,9.0,10.0,10.0,10.0,8.0,3,1.05 +13147,91.0,9.0,10.0,10.0,10.0,8.0,9.0,11,2.17 +63616,93.0,10.0,9.0,10.0,10.0,9.0,10.0,8,1.8 +17095,80.0,8.0,9.0,8.0,9.0,9.0,8.0,5,1.12 +32514,90.0,10.0,10.0,10.0,10.0,9.0,10.0,8,1.56 +5408,98.0,10.0,10.0,10.0,10.0,9.0,10.0,12,2.35 +37959,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.41 +62468,98.0,10.0,10.0,10.0,10.0,9.0,10.0,10,1.97 +63680,78.0,9.0,9.0,9.0,9.0,9.0,9.0,8,1.58 +45841,,,,,,,,0, +64745,80.0,9.0,8.0,10.0,9.0,9.0,9.0,27,5.44 +50770,91.0,10.0,10.0,9.0,9.0,9.0,9.0,7,1.88 +35134,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.46 +57803,83.0,8.0,7.0,9.0,9.0,10.0,9.0,9,1.71 +24416,,,,,,,,0, +49386,84.0,9.0,9.0,9.0,9.0,9.0,9.0,29,5.47 +20025,86.0,9.0,9.0,10.0,10.0,9.0,8.0,8,2.35 +37058,,,,,,,,1, +64670,90.0,10.0,9.0,10.0,10.0,8.0,10.0,2,1.87 +64774,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.28 +38750,90.0,10.0,10.0,10.0,10.0,10.0,8.0,2,0.41 +44038,60.0,8.0,6.0,8.0,6.0,8.0,10.0,1,0.24 +9415,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.57 +4027,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,1.0 +71343,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.67 +9957,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.26 +74353,94.0,10.0,9.0,10.0,10.0,9.0,10.0,16,4.03 +25027,100.0,10.0,9.0,10.0,10.0,10.0,10.0,5,2.5 +74833,93.0,9.0,10.0,10.0,10.0,10.0,9.0,12,2.35 +13740,90.0,6.0,10.0,6.0,8.0,7.0,8.0,3,0.86 +7391,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.28 +64482,,,,,,,,0, +65527,90.0,9.0,10.0,10.0,9.0,10.0,8.0,4,2.03 +30887,80.0,7.0,7.0,7.0,8.0,9.0,8.0,2,0.41 +34388,,,,,,,,0, +50590,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.27 +68289,80.0,7.0,8.0,9.0,8.0,9.0,7.0,3,0.68 +55639,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.79 +50778,90.0,8.0,7.0,10.0,10.0,10.0,10.0,8,1.64 +46157,,,,,,,,0, +70588,93.0,10.0,9.0,10.0,10.0,10.0,9.0,3,0.62 +56911,,,,,,,,0, +42276,,,,,,,,0, +1990,20.0,2.0,2.0,2.0,2.0,6.0,2.0,1,0.19 +34112,,,,,,,,0, +718,70.0,7.0,9.0,7.0,8.0,9.0,6.0,8,1.58 +27291,93.0,9.0,10.0,10.0,10.0,10.0,8.0,6,1.22 +9739,100.0,9.0,9.0,10.0,10.0,9.0,9.0,3,0.76 +53813,100.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.77 +49876,,,,,,,,0, +40602,100.0,10.0,6.0,10.0,10.0,10.0,10.0,2,0.43 +21211,,,,,,,,0, +55904,100.0,10.0,10.0,8.0,10.0,9.0,10.0,3,0.68 +61653,92.0,9.0,8.0,10.0,9.0,9.0,10.0,5,0.99 +42284,100.0,10.0,9.0,10.0,10.0,9.0,10.0,2,0.39 +42716,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.65 +19755,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,2.27 +8947,90.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.45 +53641,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.27 +26187,80.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.52 +985,100.0,9.0,10.0,10.0,10.0,10.0,10.0,3,1.34 +38196,60.0,8.0,6.0,10.0,8.0,10.0,10.0,1,0.24 +17751,98.0,10.0,10.0,10.0,10.0,10.0,10.0,19,6.2 +31187,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.18 +7277,91.0,10.0,9.0,10.0,10.0,10.0,9.0,9,1.86 +53149,90.0,10.0,10.0,9.0,10.0,10.0,9.0,4,0.82 +11865,89.0,9.0,9.0,10.0,9.0,10.0,9.0,15,3.24 +54760,,,,,,,,0, +56184,100.0,10.0,9.0,10.0,10.0,10.0,9.0,2,0.47 +51760,100.0,10.0,10.0,10.0,10.0,9.0,10.0,9,2.18 +4750,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.41 +36578,87.0,9.0,9.0,10.0,10.0,9.0,9.0,19,3.63 +36449,89.0,10.0,10.0,9.0,8.0,9.0,8.0,11,2.29 +18751,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.21 +52970,84.0,9.0,9.0,8.0,8.0,9.0,9.0,16,3.66 +71480,,,,,,,,0, +65950,,,,,,,,0, +33929,91.0,9.0,10.0,10.0,10.0,10.0,9.0,7,2.1 +49380,,,,,,,,0, +41170,96.0,10.0,10.0,10.0,10.0,10.0,9.0,10,2.27 +68391,,,,,,,,0, +26619,99.0,10.0,10.0,10.0,10.0,10.0,10.0,19,4.07 +16008,98.0,10.0,10.0,10.0,10.0,10.0,9.0,18,3.86 +27564,98.0,10.0,10.0,10.0,10.0,10.0,10.0,16,3.29 +47113,,,,,,,,2,0.39 +52225,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.18 +29575,93.0,9.0,10.0,9.0,9.0,10.0,9.0,14,3.26 +10982,87.0,10.0,9.0,9.0,9.0,9.0,9.0,3,0.58 +47246,80.0,6.0,6.0,6.0,8.0,8.0,8.0,1,0.51 +1297,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.2 +28184,87.0,9.0,9.0,9.0,9.0,9.0,9.0,4,0.77 +41829,100.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.43 +52434,,,,,,,,0, +12416,,,,,,,,0, +29485,,,,,,,,0, +65115,95.0,10.0,9.0,10.0,10.0,9.0,10.0,4,0.94 +11562,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.39 +54243,90.0,9.0,9.0,9.0,9.0,9.0,9.0,2,0.41 +75224,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,2.37 +73370,97.0,9.0,10.0,10.0,10.0,10.0,9.0,22,4.49 +16605,,,,,,,,0, +62334,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.21 +73732,72.0,9.0,7.0,10.0,9.0,9.0,7.0,5,1.7 +8274,100.0,10.0,10.0,9.0,10.0,10.0,10.0,3,0.71 +69660,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.37 +60687,100.0,10.0,10.0,10.0,10.0,6.0,10.0,1,0.24 +24865,90.0,10.0,9.0,10.0,10.0,9.0,10.0,2,0.38 +11225,100.0,10.0,10.0,10.0,10.0,9.0,9.0,6,1.43 +67694,90.0,10.0,9.0,9.0,9.0,10.0,9.0,14,2.82 +45357,83.0,6.0,10.0,7.0,7.0,9.0,9.0,8,2.73 +5719,87.0,10.0,9.0,10.0,10.0,10.0,9.0,3,0.81 +7694,96.0,10.0,10.0,10.0,10.0,9.0,10.0,14,2.78 +42488,,,,,,,,1,0.25 +12944,95.0,10.0,10.0,10.0,10.0,10.0,9.0,13,3.61 +64409,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +20739,,,,,,,,0, +9950,100.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.38 +5570,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,3.15 +54526,,,,,,,,0, +36661,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.26 +70317,100.0,10.0,10.0,9.0,10.0,10.0,9.0,3,0.63 +55399,60.0,4.0,4.0,10.0,10.0,10.0,10.0,1,1.0 +48155,90.0,10.0,9.0,10.0,10.0,10.0,8.0,4,0.99 +38683,87.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.77 +37362,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.26 +75396,80.0,10.0,8.0,10.0,10.0,10.0,10.0,1,1.0 +74155,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.54 +26273,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.26 +54811,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.26 +77075,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.26 +14229,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.26 +23997,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.26 +41262,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.26 +75456,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.26 +53577,90.0,10.0,8.0,10.0,10.0,9.0,10.0,2,1.3 +33871,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.26 +61606,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.45 +76806,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.26 +16858,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.45 +76307,100.0,10.0,8.0,10.0,10.0,10.0,9.0,2,0.45 +49321,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.26 +3322,90.0,6.0,7.0,7.0,10.0,10.0,9.0,2,0.44 +63974,99.0,10.0,10.0,10.0,10.0,10.0,10.0,16,3.45 +7307,95.0,10.0,10.0,8.0,10.0,9.0,9.0,4,1.21 +50992,,,,,,,,1,0.27 +4346,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,2.65 +24054,92.0,9.0,10.0,10.0,9.0,9.0,9.0,18,3.46 +5079,98.0,10.0,9.0,10.0,10.0,10.0,10.0,10,3.23 +72593,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.19 +11943,,,,,,,,0, +30847,85.0,10.0,8.0,8.0,9.0,9.0,10.0,5,1.0 +66652,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.45 +65010,80.0,10.0,10.0,10.0,10.0,10.0,6.0,1,0.71 +1375,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.45 +49586,,,,,,,,0, +72448,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.33 +41583,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.45 +16442,80.0,9.0,9.0,9.0,9.0,10.0,8.0,12,3.96 +15204,100.0,10.0,9.0,10.0,10.0,9.0,10.0,3,1.13 +27725,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.45 +28354,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.45 +13237,,,,,,,,1,0.19 +30289,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.27 +73539,70.0,7.0,7.0,9.0,10.0,10.0,8.0,2,0.39 +49683,,,,,,,,0, +53643,80.0,7.0,9.0,10.0,10.0,9.0,6.0,2,1.09 +75709,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.26 +55622,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,2.93 +63547,84.0,10.0,9.0,10.0,10.0,9.0,9.0,5,1.14 +44158,70.0,8.0,5.0,6.0,9.0,10.0,6.0,2,0.39 +17462,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.26 +65404,,,,,,,,0, +57546,100.0,10.0,10.0,8.0,10.0,10.0,10.0,5,1.01 +45224,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.26 +28011,90.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.45 +76154,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,2.2 +734,88.0,9.0,8.0,9.0,9.0,10.0,8.0,5,1.03 +54032,90.0,9.0,8.0,9.0,9.0,9.0,9.0,2,0.97 +44118,,,,,,,,1,0.26 +36033,,,,,,,,1,0.39 +21878,80.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.31 +25908,93.0,10.0,9.0,9.0,9.0,9.0,10.0,8,1.64 +63101,85.0,10.0,8.0,10.0,10.0,10.0,9.0,4,0.9 +50308,,,,,,,,0, +24624,95.0,10.0,10.0,9.0,9.0,10.0,10.0,4,0.78 +8445,,,,,,,,0, +71799,100.0,9.0,9.0,10.0,10.0,9.0,9.0,2,0.49 +28946,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.4 +30079,98.0,9.0,10.0,9.0,10.0,10.0,9.0,11,2.97 +33416,87.0,9.0,10.0,10.0,10.0,10.0,9.0,18,3.65 +884,100.0,10.0,9.0,10.0,10.0,10.0,10.0,7,1.5 +10539,92.0,9.0,9.0,9.0,9.0,9.0,9.0,15,4.5 +10482,96.0,10.0,9.0,8.0,9.0,10.0,9.0,9,1.86 +57053,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.27 +62197,,,,,,,,0, +50092,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.27 +65995,100.0,9.0,9.0,10.0,10.0,10.0,8.0,2,0.8 +53666,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.27 +13375,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.27 +28466,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.27 +59406,91.0,9.0,9.0,9.0,10.0,10.0,9.0,8,1.71 +68360,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.27 +64909,92.0,9.0,9.0,9.0,9.0,8.0,9.0,5,1.14 +52940,90.0,9.0,8.0,10.0,10.0,10.0,10.0,5,1.12 +21693,90.0,8.0,7.0,9.0,10.0,10.0,10.0,2,0.48 +75993,85.0,10.0,9.0,9.0,9.0,10.0,9.0,4,0.82 +53186,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.26 +61531,100.0,9.0,10.0,10.0,10.0,8.0,8.0,2,0.52 +29742,89.0,10.0,9.0,10.0,10.0,9.0,9.0,13,2.64 +66865,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.44 +25084,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.9 +29890,85.0,10.0,8.0,9.0,9.0,10.0,9.0,11,2.26 +72186,90.0,10.0,9.0,9.0,9.0,9.0,9.0,21,4.12 +75313,,,,,,,,0, +8564,82.0,8.0,8.0,9.0,10.0,9.0,8.0,22,4.46 +75124,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.41 +47893,80.0,10.0,9.0,10.0,10.0,10.0,9.0,3,0.68 +7968,93.0,9.0,10.0,9.0,9.0,9.0,9.0,8,2.33 +43085,,,,,,,,0, +8382,87.0,9.0,8.0,10.0,10.0,10.0,9.0,4,0.79 +76959,90.0,10.0,8.0,10.0,10.0,10.0,9.0,2,0.98 +462,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,2.23 +61145,74.0,8.0,7.0,9.0,8.0,10.0,8.0,10,1.96 +18429,80.0,10.0,8.0,9.0,10.0,10.0,10.0,6,1.18 +57127,65.0,10.0,6.0,10.0,10.0,10.0,8.0,4,0.8 +16599,89.0,9.0,9.0,9.0,10.0,10.0,9.0,21,4.63 +38903,80.0,9.0,10.0,10.0,10.0,10.0,7.0,2,0.68 +25195,,,,,,,,0, +76958,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.2 +12488,87.0,9.0,9.0,10.0,10.0,9.0,9.0,6,1.4 +9921,97.0,10.0,9.0,10.0,10.0,10.0,10.0,15,2.96 +9328,99.0,10.0,10.0,10.0,10.0,10.0,10.0,19,3.73 +14740,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.97 +30257,96.0,10.0,9.0,10.0,10.0,10.0,9.0,9,1.76 +31770,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.04 +53528,,,,,,,,0, +63612,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.58 +13405,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.39 +65170,85.0,8.0,8.0,10.0,9.0,9.0,9.0,8,1.57 +1420,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,1.37 +34255,75.0,7.0,9.0,7.0,7.0,7.0,7.0,4,0.86 +65568,,,,,,,,0, +15381,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,1.83 +66835,,,,,,,,1,0.2 +63388,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.52 +16499,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.2 +45983,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,3.0 +13889,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,2.37 +26017,,,,,,,,0, +20695,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.86 +37064,94.0,10.0,9.0,10.0,10.0,10.0,9.0,7,1.56 +47915,80.0,10.0,10.0,10.0,10.0,6.0,6.0,1,0.24 +69624,,,,,,,,0, +8719,100.0,10.0,9.0,9.0,10.0,9.0,9.0,2,0.47 +54592,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.96 +64107,,,,,,,,0, +75317,93.0,9.0,10.0,10.0,9.0,10.0,9.0,16,3.24 +69285,90.0,9.0,10.0,9.0,10.0,10.0,9.0,7,1.98 +3356,95.0,10.0,9.0,10.0,10.0,10.0,10.0,12,2.31 +46068,,,,,,,,0, +61193,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.59 +66951,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.23 +52438,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.59 +17902,80.0,9.0,8.0,10.0,10.0,9.0,8.0,5,1.04 +6098,97.0,10.0,9.0,10.0,10.0,9.0,10.0,13,2.64 +73618,,,,,,,,1, +8028,99.0,10.0,10.0,10.0,10.0,10.0,9.0,15,3.21 +22747,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.52 +57745,89.0,10.0,10.0,10.0,9.0,9.0,10.0,7,1.36 +8053,95.0,10.0,10.0,10.0,10.0,9.0,10.0,9,1.86 +7122,,,,,,,,0, +67017,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.2 +40054,,,,,,,,0, +39809,96.0,10.0,10.0,9.0,9.0,10.0,10.0,5,3.13 +64043,,,,,,,,0, +19633,100.0,10.0,10.0,10.0,10.0,10.0,10.0,15,3.21 +63946,100.0,10.0,10.0,10.0,10.0,6.0,8.0,1,0.39 +30433,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.19 +18474,,,,,,,,0, +23845,,,,,,,,0, +31967,100.0,8.0,10.0,10.0,8.0,10.0,8.0,1,0.79 +51984,80.0,8.0,7.0,6.0,9.0,9.0,7.0,2,0.42 +29138,,,,,,,,0, +67076,,,,,,,,0, +24959,,,,,,,,0, +16628,93.0,10.0,9.0,10.0,10.0,9.0,9.0,3,0.65 +24064,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.5 +46411,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.64 +47973,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.41 +30735,40.0,8.0,8.0,10.0,4.0,6.0,4.0,1,0.71 +63507,80.0,10.0,6.0,10.0,10.0,10.0,10.0,1,1.0 +59496,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.48 +65696,,,,,,,,0, +64369,,,,,,,,0, +37230,97.0,10.0,9.0,10.0,10.0,10.0,10.0,16,3.66 +15130,,,,,,,,0, +15064,88.0,10.0,9.0,9.0,10.0,10.0,9.0,5,1.01 +22088,88.0,9.0,8.0,9.0,9.0,9.0,9.0,16,3.45 +22026,40.0,4.0,3.0,6.0,6.0,8.0,3.0,2,0.57 +70548,84.0,9.0,9.0,9.0,9.0,9.0,9.0,11,3.59 +10170,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.43 +10426,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.21 +62806,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.45 +15899,90.0,8.0,7.0,7.0,10.0,8.0,8.0,3,0.58 +56794,93.0,9.0,10.0,9.0,10.0,10.0,9.0,6,2.54 +70438,89.0,9.0,8.0,9.0,9.0,9.0,9.0,11,2.97 +36353,,,,,,,,1,0.19 +24741,99.0,10.0,10.0,10.0,10.0,10.0,10.0,16,3.48 +53415,,,,,,,,0, +70217,90.0,9.0,9.0,9.0,10.0,10.0,9.0,2,0.61 +54088,88.0,9.0,9.0,10.0,10.0,10.0,9.0,10,2.31 +70382,94.0,10.0,8.0,10.0,10.0,10.0,10.0,7,1.59 +55252,93.0,10.0,9.0,10.0,9.0,10.0,10.0,3,0.89 +67170,90.0,10.0,9.0,10.0,10.0,10.0,10.0,2,1.09 +52040,95.0,10.0,10.0,10.0,10.0,9.0,10.0,13,2.91 +10837,94.0,10.0,10.0,10.0,10.0,10.0,9.0,7,1.76 +20598,,,,,,,,0, +19104,,,,,,,,0, +25149,82.0,8.0,10.0,9.0,9.0,10.0,8.0,9,2.27 +65008,100.0,10.0,10.0,10.0,10.0,8.0,10.0,2,0.43 +29791,88.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.02 +21705,97.0,10.0,10.0,9.0,10.0,10.0,9.0,27,5.29 +5059,89.0,9.0,9.0,10.0,9.0,9.0,9.0,31,6.0 +54782,84.0,9.0,10.0,8.0,7.0,10.0,9.0,5,0.97 +4640,97.0,10.0,9.0,10.0,10.0,9.0,9.0,6,1.17 +35464,97.0,10.0,10.0,9.0,10.0,10.0,9.0,7,2.1 +68827,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.66 +7324,84.0,9.0,10.0,10.0,10.0,9.0,8.0,11,2.24 +51702,98.0,10.0,10.0,10.0,10.0,10.0,9.0,10,3.26 +67703,,,,,,,,2, +60303,100.0,10.0,9.0,9.0,10.0,10.0,10.0,2,0.9 +22810,85.0,9.0,9.0,10.0,9.0,9.0,9.0,12,2.55 +26870,,,,,,,,0, +28399,,,,,,,,0, +30702,,,,,,,,2,0.4 +11610,93.0,10.0,9.0,10.0,9.0,9.0,10.0,6,1.28 +43597,,,,,,,,0, +58210,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.2 +41401,40.0,10.0,4.0,10.0,2.0,6.0,4.0,1,0.34 +62358,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.78 +31329,84.0,9.0,9.0,10.0,10.0,10.0,9.0,18,3.6 +1818,83.0,8.0,8.0,8.0,9.0,9.0,9.0,7,1.42 +50901,,,,,,,,1,0.2 +73561,91.0,10.0,9.0,10.0,10.0,9.0,9.0,16,3.29 +52029,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,2.02 +46107,,,,,,,,1,0.42 +70728,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.73 +20309,,,,,,,,0, +8988,90.0,9.0,9.0,9.0,9.0,9.0,9.0,24,4.71 +6316,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.84 +7420,80.0,9.0,7.0,10.0,10.0,10.0,8.0,2,0.42 +60075,100.0,10.0,9.0,9.0,9.0,9.0,9.0,3,0.62 +17847,100.0,10.0,10.0,6.0,10.0,10.0,10.0,1,0.43 +74910,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.87 +15485,70.0,8.0,8.0,8.0,8.0,7.0,8.0,4,0.78 +11614,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.21 +59752,,,,,,,,1,0.21 +10300,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.42 +24477,85.0,9.0,9.0,9.0,9.0,10.0,9.0,19,3.75 +61187,100.0,10.0,10.0,10.0,10.0,9.0,10.0,11,2.24 +46511,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.62 +15178,93.0,9.0,10.0,10.0,10.0,10.0,9.0,3,1.8 +31286,87.0,7.0,8.0,9.0,8.0,10.0,8.0,3,0.59 +37662,,,,,,,,0, +74461,90.0,9.0,10.0,9.0,10.0,10.0,10.0,2,0.45 +60181,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.22 +47948,80.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.32 +63741,80.0,8.0,8.0,10.0,10.0,10.0,10.0,1,0.28 +54488,99.0,10.0,10.0,10.0,10.0,9.0,10.0,28,5.96 +23689,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,3.0 +40280,,,,,,,,0, +27685,,,,,,,,0, +20243,100.0,10.0,9.0,10.0,10.0,9.0,10.0,4,1.94 +43523,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.28 +26443,94.0,10.0,9.0,10.0,10.0,9.0,10.0,22,5.2 +66320,,,,,,,,0, +24171,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.53 +50549,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.27 +50481,20.0,2.0,6.0,2.0,6.0,10.0,2.0,1,0.29 +64920,80.0,8.0,8.0,8.0,8.0,8.0,8.0,1,0.26 +20514,,,,,,,,0, +40086,90.0,10.0,10.0,8.0,9.0,9.0,9.0,4,1.11 +65314,100.0,10.0,10.0,9.0,9.0,10.0,9.0,3,0.67 +58208,98.0,10.0,10.0,10.0,10.0,10.0,10.0,25,5.14 +63853,97.0,10.0,10.0,10.0,10.0,9.0,10.0,7,1.65 +32645,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.4 +12531,,,,,,,,0, +58062,,,,,,,,0, +19996,94.0,10.0,10.0,9.0,10.0,9.0,10.0,14,2.84 +20390,80.0,8.0,9.0,7.0,9.0,9.0,9.0,9,2.21 +26780,98.0,10.0,10.0,10.0,10.0,9.0,9.0,11,2.37 +16622,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,2.59 +49898,100.0,10.0,10.0,8.0,10.0,10.0,10.0,1,1.0 +74913,90.0,9.0,10.0,10.0,10.0,10.0,10.0,4,0.83 +25963,,,,,,,,0, +68306,,,,,,,,1,0.22 +29168,100.0,10.0,9.0,10.0,9.0,9.0,9.0,4,1.3 +12768,100.0,9.0,9.0,10.0,10.0,9.0,10.0,4,1.33 +6567,85.0,9.0,9.0,10.0,9.0,9.0,8.0,11,2.21 +5101,95.0,9.0,10.0,10.0,10.0,10.0,10.0,17,4.15 +54958,20.0,2.0,2.0,2.0,2.0,2.0,2.0,1,0.54 +25041,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.59 +54876,84.0,9.0,9.0,10.0,10.0,9.0,9.0,11,2.2 +37035,100.0,9.0,7.0,9.0,9.0,7.0,7.0,2,0.46 +5514,,,,,,,,1,0.19 +40964,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,2.26 +45430,77.0,8.0,8.0,9.0,7.0,10.0,7.0,7,1.78 +20525,,,,,,,,0, +68101,70.0,10.0,10.0,7.0,6.0,7.0,7.0,2,0.43 +32292,98.0,10.0,10.0,10.0,10.0,10.0,9.0,8,1.66 +76805,93.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.87 +29112,100.0,9.0,9.0,10.0,10.0,9.0,9.0,3,0.63 +55456,93.0,10.0,10.0,9.0,10.0,10.0,9.0,3,1.13 +5258,98.0,10.0,10.0,9.0,10.0,10.0,10.0,16,4.03 +68580,100.0,10.0,9.0,10.0,10.0,9.0,10.0,3,0.78 +25307,99.0,10.0,10.0,10.0,10.0,10.0,10.0,18,5.24 +64986,80.0,9.0,6.0,9.0,9.0,7.0,8.0,4,0.79 +4769,98.0,10.0,10.0,10.0,10.0,10.0,10.0,14,3.02 +48024,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.05 +55546,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.81 +20595,78.0,8.0,9.0,9.0,9.0,9.0,8.0,16,3.27 +14595,70.0,7.0,7.0,10.0,9.0,8.0,9.0,2,0.47 +37777,,,,,,,,0, +61609,97.0,10.0,10.0,10.0,10.0,10.0,10.0,13,2.69 +72075,80.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.81 +62652,,,,,,,,0, +69908,96.0,10.0,10.0,10.0,10.0,10.0,10.0,10,3.53 +57380,60.0,8.0,10.0,10.0,10.0,10.0,8.0,1,0.22 +46683,94.0,10.0,9.0,10.0,10.0,10.0,9.0,10,2.97 +64806,90.0,9.0,10.0,10.0,9.0,9.0,9.0,9,1.75 +71555,87.0,10.0,8.0,10.0,10.0,10.0,9.0,4,0.91 +67823,100.0,10.0,10.0,10.0,10.0,10.0,10.0,15,3.1 +22624,89.0,9.0,9.0,9.0,9.0,9.0,9.0,15,3.54 +49315,,,,,,,,0, +33403,,,,,,,,0, +74569,93.0,10.0,9.0,10.0,10.0,10.0,9.0,17,3.54 +12927,100.0,10.0,8.0,10.0,8.0,10.0,10.0,1,0.27 +51476,73.0,8.0,9.0,9.0,9.0,10.0,8.0,6,1.33 +47208,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.51 +68183,80.0,9.0,8.0,9.0,9.0,9.0,9.0,10,2.59 +36616,,,,,,,,0, +48133,93.0,10.0,10.0,9.0,9.0,10.0,9.0,3,0.62 +73666,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.82 +17506,87.0,9.0,8.0,9.0,9.0,10.0,8.0,15,2.98 +46573,100.0,10.0,10.0,8.0,10.0,10.0,10.0,1,0.24 +71222,97.0,10.0,10.0,10.0,10.0,10.0,10.0,7,1.43 +4669,,,,,,,,0, +51885,,,,,,,,1,0.2 +8777,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,2.14 +27483,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.41 +1308,100.0,10.0,10.0,9.0,10.0,10.0,10.0,6,1.5 +53994,100.0,10.0,8.0,10.0,10.0,9.0,10.0,2,0.44 +13635,90.0,10.0,7.0,10.0,10.0,10.0,9.0,4,0.83 +61341,98.0,10.0,10.0,10.0,10.0,10.0,10.0,33,7.8 +3133,85.0,9.0,9.0,10.0,9.0,9.0,9.0,20,4.0 +736,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,1.28 +24353,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.21 +10687,100.0,10.0,10.0,10.0,10.0,10.0,10.0,17,4.08 +9729,88.0,10.0,8.0,10.0,10.0,8.0,10.0,7,1.36 +14754,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.52 +74915,,,,,,,,0, +21195,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.52 +59156,94.0,10.0,10.0,10.0,10.0,10.0,9.0,7,1.43 +12580,80.0,10.0,10.0,10.0,10.0,6.0,8.0,1,0.27 +51546,,,,,,,,0, +28103,80.0,8.0,8.0,7.0,8.0,8.0,8.0,14,2.94 +38690,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.07 +64102,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.24 +17443,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.97 +222,90.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.65 +51172,100.0,10.0,8.0,9.0,10.0,9.0,10.0,4,0.93 +18190,90.0,9.0,9.0,10.0,9.0,10.0,9.0,4,2.22 +19481,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,2.89 +34346,100.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.43 +15015,100.0,10.0,10.0,10.0,10.0,9.0,9.0,2,1.82 +43102,100.0,8.0,10.0,8.0,8.0,10.0,10.0,1,0.42 +31403,,,,,,,,0, +51804,,,,,,,,0, +19943,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.76 +47382,,,,,,,,0, +53882,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.54 +4989,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.41 +24848,,,,,,,,0, +9795,90.0,9.0,10.0,9.0,10.0,10.0,10.0,4,0.97 +76162,92.0,10.0,9.0,10.0,10.0,9.0,9.0,15,3.24 +13772,67.0,5.0,9.0,8.0,7.0,8.0,7.0,3,0.6 +46077,95.0,10.0,10.0,10.0,10.0,9.0,9.0,4,4.0 +49285,96.0,10.0,10.0,10.0,10.0,10.0,10.0,21,4.32 +49992,100.0,9.0,10.0,10.0,9.0,9.0,10.0,3,0.72 +27824,96.0,10.0,10.0,10.0,10.0,9.0,10.0,18,3.72 +43681,96.0,10.0,10.0,10.0,10.0,9.0,9.0,5,1.63 +53771,,,,,,,,0, +53945,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.24 +11104,80.0,9.0,7.0,10.0,9.0,10.0,7.0,3,0.76 +29786,,,,,,,,0, +47564,96.0,10.0,9.0,10.0,10.0,10.0,9.0,5,1.06 +61934,,,,,,,,0, +31709,92.0,10.0,9.0,10.0,10.0,10.0,9.0,12,2.69 +1443,,,,,,,,0, +149,100.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.48 +15590,,,,,,,,0, +27318,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,2.73 +59293,,,,,,,,0, +30639,84.0,9.0,8.0,9.0,10.0,9.0,8.0,10,3.26 +57584,88.0,9.0,10.0,10.0,10.0,10.0,9.0,17,3.81 +46341,,,,,,,,0, +4209,81.0,9.0,10.0,10.0,9.0,10.0,9.0,20,4.55 +32189,,,,,,,,0, +10896,,,,,,,,0, +71912,97.0,10.0,9.0,10.0,10.0,9.0,9.0,13,6.19 +57089,100.0,10.0,10.0,10.0,10.0,10.0,10.0,15,3.6 +24612,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.36 +20228,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,1.85 +59930,,,,,,,,0, +2753,100.0,10.0,10.0,10.0,10.0,10.0,9.0,8,1.85 +58412,88.0,10.0,9.0,10.0,10.0,10.0,10.0,5,1.49 +29988,83.0,9.0,10.0,10.0,10.0,9.0,9.0,6,1.2 +18370,93.0,10.0,9.0,10.0,10.0,8.0,9.0,14,4.38 +62389,,,,,,,,0, +40160,93.0,10.0,10.0,10.0,10.0,10.0,10.0,30,6.77 +21206,,,,,,,,0, +42446,99.0,10.0,10.0,10.0,10.0,10.0,10.0,20,4.65 +63412,85.0,10.0,8.0,10.0,10.0,9.0,9.0,4,0.91 +52408,99.0,10.0,10.0,10.0,10.0,10.0,10.0,22,4.55 +72916,,,,,,,,0, +50437,,,,,,,,0, +34130,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.46 +36768,97.0,9.0,10.0,10.0,10.0,10.0,9.0,7,1.67 +53018,90.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.62 +43798,92.0,10.0,9.0,10.0,10.0,9.0,10.0,10,2.08 +68009,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.72 +18905,99.0,10.0,10.0,10.0,10.0,10.0,10.0,29,5.8 +37638,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.22 +41398,93.0,10.0,9.0,10.0,10.0,10.0,9.0,3,0.9 +42461,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.8 +47151,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.43 +52806,96.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.49 +25988,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.21 +70387,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,1.17 +19851,92.0,9.0,10.0,9.0,9.0,9.0,9.0,18,4.03 +38551,93.0,10.0,10.0,10.0,9.0,9.0,10.0,3,2.2 +29544,87.0,8.0,9.0,10.0,9.0,8.0,9.0,5,1.12 +19939,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.32 +71823,80.0,9.0,8.0,10.0,10.0,10.0,9.0,4,1.4 +69056,,,,,,,,0, +18638,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.78 +16292,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.36 +45554,,,,,,,,0, +18678,94.0,10.0,10.0,10.0,10.0,10.0,9.0,20,4.08 +75011,,,,,,,,0, +23185,,,,,,,,0, +61862,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,1.0 +2557,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,2.0 +11359,,,,,,,,1,0.23 +76425,,,,,,,,0, +7577,40.0,4.0,2.0,8.0,6.0,8.0,4.0,1,0.73 +61824,,,,,,,,0, +51102,,,,,,,,0, +63681,80.0,9.0,7.0,10.0,9.0,10.0,9.0,7,1.5 +28669,92.0,9.0,9.0,10.0,10.0,8.0,9.0,5,1.19 +56673,100.0,10.0,10.0,10.0,8.0,10.0,10.0,1,0.31 +2551,,,,,,,,0, +63814,80.0,9.0,8.0,9.0,9.0,8.0,9.0,7,1.67 +13056,83.0,9.0,8.0,9.0,9.0,8.0,9.0,13,2.67 +23937,100.0,10.0,10.0,10.0,10.0,10.0,10.0,23,4.83 +9417,94.0,10.0,9.0,10.0,10.0,9.0,9.0,20,4.44 +64209,97.0,9.0,10.0,9.0,10.0,10.0,10.0,7,2.06 +77087,80.0,7.0,8.0,8.0,8.0,9.0,9.0,3,2.37 +20561,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.97 +43809,100.0,9.0,9.0,10.0,10.0,9.0,9.0,2,0.44 +18948,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.43 +10911,100.0,10.0,10.0,10.0,10.0,9.0,10.0,15,3.1 +1070,96.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.41 +70811,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.44 +10289,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.15 +69451,83.0,9.0,8.0,9.0,10.0,9.0,8.0,12,2.73 +5852,80.0,9.0,10.0,9.0,9.0,7.0,9.0,3,0.96 +58819,,,,,,,,2,0.45 +8596,85.0,10.0,9.0,9.0,10.0,10.0,9.0,4,0.98 +24889,92.0,9.0,10.0,9.0,9.0,9.0,9.0,10,2.31 +59046,92.0,9.0,8.0,9.0,10.0,10.0,9.0,10,3.95 +2949,96.0,9.0,10.0,10.0,10.0,9.0,10.0,9,1.94 +76305,,,,,,,,0, +71607,94.0,10.0,10.0,10.0,10.0,10.0,10.0,25,5.24 +9646,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,1.06 +19307,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.25 +74389,84.0,10.0,8.0,10.0,10.0,10.0,9.0,5,1.14 +37123,98.0,10.0,10.0,10.0,10.0,9.0,10.0,13,2.89 +29428,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.32 +52969,,,,,,,,0, +15657,,,,,,,,0, +66609,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.29 +64851,100.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.53 +49064,,,,,,,,0, +61745,89.0,10.0,9.0,10.0,9.0,9.0,9.0,20,4.2 +35428,,,,,,,,0, +9414,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.57 +11416,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.41 +63368,90.0,9.0,8.0,9.0,9.0,9.0,9.0,6,1.43 +59871,60.0,10.0,6.0,10.0,6.0,8.0,5.0,2,0.75 +46899,95.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.92 +40252,98.0,10.0,10.0,10.0,10.0,9.0,10.0,9,1.86 +68925,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,1.63 +14858,100.0,9.0,9.0,9.0,10.0,10.0,7.0,2,0.41 +45252,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.23 +45688,90.0,10.0,10.0,9.0,9.0,10.0,9.0,16,3.29 +20264,90.0,9.0,9.0,10.0,10.0,10.0,9.0,6,1.42 +12090,98.0,10.0,10.0,10.0,10.0,10.0,9.0,13,3.94 +65423,90.0,10.0,8.0,9.0,10.0,10.0,9.0,14,2.98 +8666,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.08 +14190,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.17 +64212,92.0,10.0,10.0,10.0,10.0,10.0,9.0,5,1.67 +64900,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.95 +103,100.0,10.0,10.0,10.0,9.0,10.0,10.0,5,1.03 +21842,97.0,10.0,9.0,10.0,10.0,10.0,10.0,22,4.52 +44947,99.0,10.0,10.0,10.0,10.0,10.0,10.0,25,6.1 +6432,,,,,,,,0, +25409,81.0,9.0,8.0,9.0,9.0,9.0,8.0,15,3.06 +70120,67.0,8.0,7.0,9.0,8.0,9.0,7.0,21,4.32 +73639,100.0,10.0,8.0,10.0,10.0,8.0,10.0,1,0.31 +25029,97.0,9.0,10.0,10.0,10.0,10.0,9.0,12,2.79 +35946,,,,,,,,0, +59182,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.6 +37435,80.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.62 +46385,,,,,,,,0, +226,,,,,,,,0, +33242,,,,,,,,0, +32750,,,,,,,,0, +54452,90.0,9.0,10.0,8.0,9.0,10.0,9.0,4,0.95 +30826,95.0,10.0,10.0,9.0,10.0,9.0,9.0,15,5.29 +60023,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.88 +58972,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,3.1 +63840,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,2.76 +17684,,,,,,,,1,0.75 +36550,,,,,,,,0, +2498,,,,,,,,0, +38934,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.73 +5996,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.81 +75647,,,,,,,,2, +76126,91.0,10.0,10.0,10.0,10.0,10.0,9.0,16,5.65 +8793,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.94 +51023,95.0,10.0,10.0,10.0,10.0,9.0,9.0,4,0.86 +39904,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.74 +40434,90.0,9.0,9.0,9.0,9.0,9.0,9.0,12,2.45 +13720,,,,,,,,2,0.4 +39791,,,,,,,,0, +30402,100.0,10.0,9.0,10.0,10.0,10.0,10.0,5,1.07 +28876,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,4.05 +76754,98.0,10.0,10.0,10.0,10.0,9.0,9.0,21,5.0 +59445,20.0,2.0,2.0,2.0,2.0,2.0,2.0,1,0.28 +39117,,,,,,,,0, +33883,,,,,,,,0, +21524,88.0,9.0,9.0,9.0,10.0,9.0,9.0,12,4.44 +12966,87.0,9.0,8.0,10.0,10.0,10.0,8.0,12,2.42 +76223,,,,,,,,0, +58494,96.0,9.0,9.0,10.0,10.0,8.0,9.0,5,2.24 +67831,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.59 +56366,93.0,10.0,9.0,9.0,10.0,10.0,8.0,6,1.76 +50179,93.0,9.0,10.0,10.0,10.0,10.0,9.0,9,2.29 +17178,95.0,10.0,10.0,10.0,10.0,9.0,10.0,12,2.61 +23199,87.0,9.0,9.0,10.0,10.0,9.0,9.0,3,0.65 +44915,90.0,10.0,10.0,8.0,10.0,9.0,9.0,3,0.93 +24193,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,1.52 +49346,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.54 +32108,73.0,9.0,5.0,9.0,8.0,9.0,8.0,3,1.07 +73815,100.0,8.0,8.0,10.0,6.0,10.0,8.0,2,0.8 +47508,60.0,6.0,4.0,6.0,10.0,8.0,10.0,1,0.2 +31795,80.0,10.0,10.0,6.0,6.0,10.0,6.0,1,0.21 +6667,,,,,,,,0, +61097,70.0,7.0,7.0,7.0,7.0,9.0,7.0,2,0.48 +30011,,,,,,,,0, +55124,,,,,,,,0, +2057,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,1.64 +59638,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.48 +23263,90.0,9.0,9.0,8.0,9.0,9.0,9.0,6,1.53 +3670,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.24 +69768,,,,,,,,0, +12474,,,,,,,,0, +22777,93.0,10.0,9.0,10.0,10.0,10.0,10.0,9,1.91 +38253,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.02 +59155,88.0,9.0,9.0,10.0,10.0,10.0,9.0,12,2.67 +11126,92.0,9.0,9.0,10.0,10.0,10.0,9.0,5,1.09 +5431,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.69 +23756,,,,,,,,0, +17794,,,,,,,,0, +18075,,,,,,,,0, +19268,,,,,,,,0, +1736,95.0,10.0,10.0,10.0,10.0,10.0,9.0,22,4.85 +72344,,,,,,,,0, +50553,100.0,10.0,10.0,10.0,10.0,9.0,10.0,9,2.09 +35181,84.0,9.0,8.0,10.0,10.0,10.0,9.0,9,2.06 +11281,90.0,10.0,8.0,9.0,9.0,10.0,10.0,7,1.56 +42083,80.0,9.0,8.0,9.0,9.0,8.0,9.0,7,1.57 +4837,60.0,10.0,10.0,10.0,10.0,10.0,6.0,1,0.21 +54664,,,,,,,,0, +8359,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.31 +24918,85.0,10.0,9.0,10.0,10.0,9.0,9.0,11,2.37 +64730,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.52 +16633,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,1.0 +18526,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.4 +41594,83.0,9.0,8.0,10.0,9.0,10.0,8.0,30,6.43 +39371,94.0,10.0,10.0,10.0,10.0,10.0,9.0,18,4.78 +61445,,,,,,,,1,0.22 +7241,,,,,,,,0, +65987,100.0,10.0,10.0,8.0,9.0,10.0,10.0,4,1.01 +31323,96.0,10.0,10.0,10.0,10.0,9.0,10.0,5,1.35 +65177,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.99 +39822,,,,,,,,0, +1925,79.0,9.0,8.0,9.0,9.0,9.0,8.0,32,6.86 +30745,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.8 +27188,100.0,10.0,10.0,10.0,10.0,10.0,8.0,2,0.68 +36265,80.0,8.0,7.0,10.0,10.0,9.0,8.0,2,0.42 +9190,,,,,,,,0, +59562,82.0,9.0,8.0,9.0,9.0,9.0,8.0,20,4.92 +39516,100.0,10.0,9.0,9.0,9.0,10.0,10.0,3,0.92 +10251,96.0,10.0,9.0,10.0,10.0,10.0,10.0,14,3.56 +60810,75.0,8.0,7.0,9.0,9.0,9.0,7.0,4,1.19 +40804,94.0,9.0,9.0,10.0,10.0,10.0,10.0,7,2.06 +58373,60.0,5.0,4.0,7.0,9.0,9.0,5.0,2,0.51 +66194,,,,,,,,0, +23776,,,,,,,,0, +58810,100.0,10.0,10.0,10.0,10.0,8.0,10.0,5,1.15 +50429,,,,,,,,0, +52851,,,,,,,,0, +11896,,,,,,,,0, +3206,,,,,,,,0, +62072,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.64 +64114,,,,,,,,0, +75225,93.0,10.0,9.0,10.0,10.0,9.0,9.0,16,3.72 +705,97.0,10.0,10.0,9.0,10.0,10.0,9.0,18,5.35 +63266,90.0,8.0,8.0,8.0,9.0,8.0,7.0,2,0.44 +22162,83.0,9.0,8.0,10.0,9.0,9.0,8.0,30,6.43 +6501,,,,,,,,0, +57115,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,1.45 +42535,,,,,,,,0, +74710,,,,,,,,0, +74237,97.0,10.0,10.0,10.0,10.0,10.0,10.0,21,4.7 +56326,,,,,,,,0, +37728,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.31 +68368,,,,,,,,0, +51332,80.0,9.0,8.0,9.0,9.0,9.0,8.0,9,2.01 +4501,88.0,9.0,8.0,9.0,10.0,9.0,8.0,6,2.17 +10041,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.76 +42277,,,,,,,,0, +42211,,,,,,,,0, +47374,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.64 +2676,,,,,,,,0, +28400,,,,,,,,0, +1120,96.0,10.0,10.0,10.0,10.0,9.0,10.0,11,2.5 +75804,,,,,,,,1,0.67 +31301,100.0,10.0,10.0,10.0,10.0,9.0,10.0,11,2.6 +45549,,,,,,,,0, +58245,90.0,9.0,9.0,9.0,9.0,9.0,9.0,2,0.5 +45552,88.0,9.0,9.0,9.0,9.0,9.0,9.0,8,1.69 +28737,93.0,9.0,9.0,10.0,10.0,10.0,10.0,3,0.64 +34930,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.27 +42020,90.0,9.0,9.0,10.0,10.0,9.0,9.0,27,6.38 +25240,94.0,10.0,10.0,10.0,10.0,8.0,10.0,10,2.29 +67957,87.0,9.0,8.0,9.0,9.0,10.0,9.0,26,5.57 +16227,91.0,10.0,9.0,10.0,10.0,9.0,10.0,20,4.96 +33197,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,1.0 +42689,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.03 +51199,97.0,10.0,9.0,10.0,10.0,10.0,10.0,13,2.81 +23085,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.83 +64488,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.29 +37796,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.68 +5255,100.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.84 +19280,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.25 +6225,96.0,10.0,10.0,10.0,10.0,10.0,10.0,10,2.54 +5297,88.0,9.0,10.0,10.0,10.0,9.0,9.0,19,4.25 +59198,83.0,9.0,9.0,10.0,10.0,9.0,8.0,25,5.36 +49464,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.48 +26195,90.0,9.0,9.0,9.0,9.0,10.0,9.0,14,3.09 +75770,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,1.15 +5331,96.0,10.0,9.0,10.0,10.0,9.0,9.0,10,2.04 +57158,84.0,9.0,9.0,9.0,8.0,10.0,7.0,5,1.17 +62431,96.0,10.0,10.0,10.0,10.0,9.0,10.0,22,4.52 +41358,20.0,2.0,2.0,2.0,2.0,2.0,2.0,1,0.33 +53845,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.5 +22138,97.0,10.0,10.0,9.0,10.0,9.0,10.0,13,3.1 +49002,89.0,9.0,9.0,9.0,9.0,9.0,9.0,13,3.36 +53435,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,1.4 +13674,88.0,8.0,8.0,9.0,9.0,9.0,9.0,5,1.24 +45006,100.0,10.0,7.0,10.0,10.0,10.0,10.0,3,1.05 +65281,,,,,,,,0, +39299,93.0,9.0,9.0,9.0,10.0,9.0,10.0,6,2.43 +36317,,,,,,,,0, +8129,60.0,6.0,6.0,10.0,10.0,10.0,6.0,1,0.34 +4126,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.04 +6139,,,,,,,,0, +55781,100.0,9.0,10.0,10.0,10.0,10.0,10.0,3,0.78 +19142,,,,,,,,0, +42055,96.0,10.0,10.0,10.0,10.0,10.0,9.0,19,4.01 +62742,100.0,10.0,10.0,10.0,10.0,9.0,9.0,15,3.08 +34155,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.21 +76385,,,,,,,,0, +27253,96.0,10.0,10.0,10.0,10.0,10.0,9.0,5,1.97 +37137,78.0,8.0,8.0,7.0,7.0,8.0,8.0,12,2.65 +43832,100.0,10.0,10.0,10.0,9.0,10.0,10.0,4,1.5 +48968,88.0,9.0,9.0,8.0,10.0,9.0,9.0,10,2.17 +4462,,,,,,,,0, +45585,91.0,10.0,10.0,10.0,10.0,9.0,10.0,14,2.94 +43405,82.0,9.0,9.0,9.0,9.0,8.0,8.0,9,2.01 +70634,89.0,10.0,7.0,10.0,10.0,10.0,9.0,13,3.55 +12186,99.0,10.0,10.0,10.0,10.0,9.0,10.0,19,4.63 +55272,78.0,8.0,9.0,8.0,9.0,9.0,8.0,25,5.07 +58963,80.0,10.0,6.0,10.0,9.0,10.0,10.0,5,1.2 +5683,86.0,9.0,8.0,9.0,9.0,10.0,9.0,7,1.83 +1786,,,,,,,,0, +67854,,,,,,,,0, +29338,100.0,10.0,10.0,10.0,10.0,10.0,10.0,19,4.07 +36699,98.0,10.0,9.0,10.0,10.0,9.0,10.0,8,1.89 +53079,92.0,8.0,8.0,10.0,10.0,8.0,8.0,5,1.12 +6720,97.0,10.0,10.0,9.0,10.0,10.0,9.0,12,2.88 +27578,,,,,,,,0, +61975,94.0,9.0,9.0,10.0,9.0,9.0,9.0,30,6.29 +20581,100.0,10.0,10.0,10.0,9.0,9.0,8.0,2,0.87 +46890,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.78 +39848,87.0,9.0,7.0,9.0,9.0,8.0,9.0,3,0.64 +4288,85.0,10.0,7.0,8.0,8.0,10.0,10.0,4,0.84 +64046,93.0,9.0,8.0,9.0,10.0,9.0,10.0,3,0.79 +46059,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.76 +22206,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.69 +75803,52.0,6.0,5.0,6.0,7.0,8.0,5.0,5,1.27 +58187,90.0,10.0,8.0,9.0,10.0,10.0,9.0,11,2.28 +26949,97.0,10.0,10.0,10.0,10.0,10.0,9.0,13,3.28 +56422,65.0,7.0,7.0,7.0,7.0,9.0,7.0,11,2.26 +35152,85.0,9.0,9.0,10.0,10.0,10.0,9.0,11,2.29 +33849,100.0,10.0,10.0,10.0,10.0,9.0,10.0,6,1.29 +57031,75.0,8.0,7.0,8.0,9.0,9.0,8.0,8,3.93 +74429,85.0,9.0,9.0,8.0,9.0,10.0,10.0,8,1.64 +43368,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.49 +21324,,,,,,,,0, +28758,100.0,9.0,10.0,9.0,10.0,9.0,9.0,2,0.51 +65189,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.86 +25242,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,2.61 +21209,100.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.82 +35283,20.0,2.0,2.0,2.0,2.0,2.0,2.0,1,0.34 +32872,,,,,,,,0, +56027,,,,,,,,0, +18028,,,,,,,,0, +44531,,,,,,,,0, +41246,,,,,,,,0, +57844,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +73950,87.0,9.0,10.0,9.0,8.0,8.0,9.0,9,2.73 +35323,,,,,,,,0, +53818,50.0,8.0,5.0,8.0,7.0,9.0,7.0,2,0.48 +68013,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.22 +18984,,,,,,,,0, +58720,90.0,9.0,7.0,10.0,10.0,9.0,9.0,2,0.77 +10436,93.0,10.0,10.0,10.0,10.0,10.0,9.0,8,2.11 +56735,96.0,9.0,10.0,10.0,10.0,9.0,9.0,5,1.06 +16266,77.0,9.0,8.0,9.0,9.0,8.0,8.0,6,1.23 +45956,97.0,10.0,10.0,10.0,10.0,10.0,9.0,7,2.02 +28867,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.76 +24224,77.0,7.0,8.0,8.0,8.0,8.0,8.0,7,1.54 +10782,85.0,9.0,9.0,9.0,10.0,9.0,8.0,15,4.21 +65073,,,,,,,,0, +4581,,,,,,,,0, +13989,83.0,9.0,9.0,8.0,7.0,9.0,8.0,12,2.43 +28108,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.31 +74006,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.21 +6666,95.0,10.0,9.0,10.0,10.0,10.0,10.0,11,2.66 +19184,,,,,,,,0, +65891,86.0,9.0,9.0,10.0,10.0,10.0,9.0,10,2.42 +5237,,,,,,,,0, +59980,,,,,,,,0, +39034,,,,,,,,0, +72218,79.0,9.0,9.0,10.0,8.0,9.0,8.0,15,3.15 +72947,76.0,9.0,9.0,9.0,9.0,10.0,8.0,10,2.26 +25268,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.75 +24969,80.0,9.0,9.0,10.0,9.0,10.0,8.0,5,1.74 +56787,,,,,,,,0, +72333,,,,,,,,0, +2440,89.0,9.0,7.0,9.0,9.0,10.0,9.0,14,3.26 +47108,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.24 +1702,,,,,,,,0, +70232,,,,,,,,0, +3587,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.29 +57336,,,,,,,,0, +19360,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,2.43 +43507,,,,,,,,0, +19163,,,,,,,,0, +64822,,,,,,,,0, +15757,,,,,,,,0, +37024,,,,,,,,0, +34334,88.0,9.0,10.0,8.0,8.0,9.0,9.0,10,2.52 +57889,90.0,9.0,8.0,10.0,10.0,10.0,9.0,2,1.2 +47190,93.0,9.0,9.0,10.0,9.0,9.0,9.0,12,2.5 +61292,,,,,,,,0, +34801,80.0,9.0,10.0,10.0,10.0,9.0,9.0,3,0.67 +39722,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.22 +40943,,,,,,,,0, +31139,80.0,8.0,9.0,9.0,8.0,8.0,9.0,5,1.06 +37817,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.83 +16356,90.0,9.0,9.0,9.0,9.0,10.0,9.0,14,3.78 +30408,,,,,,,,0, +25729,,,,,,,,0, +67683,91.0,10.0,9.0,9.0,10.0,10.0,9.0,11,2.37 +73257,,,,,,,,0, +65201,,,,,,,,0, +48253,,,,,,,,0, +13248,,,,,,,,0, +2761,,,,,,,,0, +19865,,,,,,,,0, +46591,,,,,,,,0, +75404,,,,,,,,0, +30583,,,,,,,,0, +15736,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.83 +48364,80.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.52 +15827,97.0,10.0,10.0,10.0,10.0,10.0,9.0,20,4.62 +6913,92.0,9.0,10.0,10.0,9.0,9.0,9.0,5,1.12 +58782,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.34 +68983,83.0,9.0,7.0,10.0,9.0,10.0,9.0,13,3.02 +18560,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.22 +67988,,,,,,,,0, +50750,93.0,9.0,9.0,10.0,10.0,9.0,9.0,3,0.63 +31823,89.0,10.0,9.0,9.0,10.0,10.0,10.0,9,3.33 +22689,100.0,9.0,9.0,10.0,10.0,9.0,9.0,3,0.63 +30045,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.63 +7506,96.0,10.0,9.0,10.0,10.0,10.0,10.0,44,9.1 +75606,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.21 +17971,89.0,9.0,10.0,10.0,9.0,9.0,9.0,9,1.84 +13305,,,,,,,,0, +7555,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,2.58 +30964,100.0,9.0,10.0,10.0,10.0,10.0,10.0,2,0.57 +35222,80.0,9.0,8.0,9.0,8.0,8.0,8.0,10,2.07 +41805,90.0,10.0,9.0,10.0,10.0,9.0,10.0,4,0.92 +41153,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.74 +38834,85.0,9.0,10.0,10.0,10.0,10.0,9.0,4,0.87 +21683,,,,,,,,0, +75734,80.0,9.0,6.0,10.0,10.0,10.0,7.0,3,1.0 +65899,80.0,10.0,10.0,8.0,8.0,9.0,10.0,2,0.54 +58619,96.0,10.0,10.0,10.0,10.0,10.0,9.0,5,1.03 +67877,98.0,10.0,10.0,9.0,10.0,10.0,10.0,12,4.0 +53533,80.0,9.0,6.0,10.0,10.0,9.0,8.0,3,0.72 +76029,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,2.64 +43844,100.0,10.0,10.0,10.0,10.0,8.0,10.0,2,0.61 +48952,100.0,10.0,9.0,10.0,10.0,10.0,10.0,5,1.29 +10437,,,,,,,,0, +49673,100.0,10.0,10.0,9.0,9.0,9.0,10.0,2,0.43 +75986,,,,,,,,0, +35997,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,2.56 +8021,,,,,,,,0, +75870,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.25 +13813,,,,,,,,0, +27990,20.0,2.0,6.0,2.0,2.0,6.0,6.0,1,0.2 +22075,,,,,,,,1,0.21 +68874,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.27 +69563,95.0,10.0,7.0,10.0,10.0,10.0,9.0,4,1.03 +40153,72.0,8.0,8.0,8.0,8.0,9.0,8.0,36,7.45 +51571,82.0,8.0,8.0,10.0,9.0,8.0,8.0,10,3.26 +43863,92.0,10.0,10.0,9.0,9.0,10.0,9.0,13,2.95 +2799,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.23 +20307,98.0,10.0,9.0,10.0,10.0,10.0,9.0,25,5.14 +30700,60.0,10.0,4.0,10.0,10.0,10.0,8.0,1,1.0 +74855,,,,,,,,0, +3258,,,,,,,,0, +68567,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.65 +62840,92.0,10.0,9.0,10.0,10.0,10.0,10.0,5,1.21 +51322,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.82 +46650,98.0,10.0,10.0,10.0,10.0,9.0,10.0,10,2.17 +37677,,,,,,,,0, +76493,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.45 +42047,80.0,9.0,8.0,10.0,9.0,10.0,7.0,4,0.93 +41561,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,1.51 +76830,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,2.93 +12458,,,,,,,,0, +6001,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.29 +34372,91.0,9.0,10.0,9.0,10.0,10.0,9.0,11,2.5 +29285,95.0,10.0,10.0,10.0,10.0,9.0,10.0,8,2.18 +73774,80.0,8.0,9.0,8.0,9.0,9.0,7.0,4,0.98 +73625,47.0,7.0,5.0,7.0,7.0,9.0,6.0,3,0.65 +20594,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,2.27 +18906,95.0,10.0,10.0,10.0,10.0,9.0,10.0,33,6.92 +65152,100.0,10.0,4.0,10.0,10.0,10.0,10.0,2,0.44 +16295,83.0,9.0,8.0,10.0,9.0,10.0,8.0,13,3.05 +41231,,,,,,,,0, +62667,,,,,,,,0, +2469,99.0,10.0,10.0,10.0,10.0,10.0,10.0,14,2.98 +43884,,,,,,,,1,0.34 +70290,85.0,9.0,9.0,9.0,10.0,10.0,9.0,8,1.67 +25941,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,1.81 +36980,80.0,10.0,8.0,10.0,10.0,9.0,10.0,2,0.49 +64182,97.0,10.0,9.0,10.0,9.0,10.0,9.0,6,1.88 +8699,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.22 +42720,,,,,,,,0, +41944,93.0,10.0,9.0,10.0,10.0,10.0,9.0,3,0.9 +29261,,,,,,,,0, +26312,93.0,10.0,9.0,10.0,10.0,10.0,10.0,6,1.26 +72491,,,,,,,,0, +76152,100.0,10.0,10.0,10.0,10.0,9.0,9.0,2,0.49 +42336,93.0,9.0,7.0,9.0,10.0,9.0,9.0,3,0.69 +68492,100.0,10.0,9.0,10.0,10.0,9.0,10.0,2,0.51 +64582,,,,,,,,0, +41516,,,,,,,,0, +9466,90.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.8 +62756,96.0,10.0,9.0,10.0,10.0,10.0,10.0,19,3.93 +60312,89.0,10.0,10.0,9.0,10.0,10.0,9.0,16,3.58 +36039,,,,,,,,0, +33029,100.0,10.0,10.0,10.0,10.0,10.0,9.0,6,1.53 +42023,,,,,,,,0, +51380,97.0,10.0,9.0,10.0,10.0,10.0,10.0,12,7.06 +51507,80.0,8.0,8.0,9.0,9.0,9.0,9.0,9,2.03 +9390,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.82 +33132,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.79 +541,,,,,,,,0, +19449,88.0,9.0,9.0,9.0,10.0,10.0,9.0,19,4.38 +3438,60.0,8.0,6.0,10.0,8.0,10.0,8.0,1,0.56 +23710,,,,,,,,0, +60440,74.0,8.0,7.0,9.0,9.0,8.0,8.0,22,5.69 +63656,85.0,9.0,8.0,9.0,10.0,10.0,9.0,13,3.05 +8256,93.0,9.0,9.0,10.0,10.0,9.0,9.0,16,5.58 +31512,80.0,10.0,10.0,6.0,8.0,10.0,10.0,1,0.29 +13450,96.0,10.0,10.0,10.0,10.0,9.0,10.0,10,2.27 +40013,100.0,10.0,10.0,9.0,10.0,10.0,10.0,6,1.31 +60711,96.0,10.0,10.0,10.0,10.0,10.0,9.0,5,1.21 +70004,76.0,8.0,8.0,8.0,8.0,8.0,8.0,5,1.22 +18688,,,,,,,,0, +7057,,,,,,,,0, +65519,80.0,10.0,10.0,10.0,10.0,10.0,8.0,1,1.0 +21537,80.0,9.0,8.0,10.0,10.0,10.0,8.0,4,0.88 +18812,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.76 +17881,88.0,9.0,9.0,9.0,10.0,9.0,9.0,19,4.56 +1229,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.77 +36076,90.0,9.0,10.0,10.0,9.0,10.0,9.0,6,1.94 +27818,80.0,10.0,10.0,8.0,8.0,10.0,10.0,2,0.41 +24282,92.0,10.0,10.0,10.0,10.0,10.0,10.0,10,2.16 +21516,,,,,,,,1,0.25 +55278,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.24 +67888,76.0,8.0,8.0,10.0,10.0,10.0,8.0,5,1.13 +55858,85.0,8.0,9.0,8.0,8.0,9.0,9.0,6,1.73 +68681,,,,,,,,0, +42410,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.24 +15739,,,,,,,,1,0.56 +72470,93.0,9.0,9.0,10.0,9.0,9.0,10.0,3,0.7 +18743,,,,,,,,0, +8176,,,,,,,,0, +61644,,,,,,,,0, +33159,89.0,8.0,10.0,10.0,10.0,10.0,8.0,13,2.81 +52242,89.0,10.0,8.0,9.0,9.0,10.0,10.0,20,4.23 +8707,99.0,10.0,10.0,10.0,10.0,10.0,10.0,16,3.58 +22407,,,,,,,,0, +27305,97.0,10.0,10.0,10.0,10.0,10.0,10.0,7,1.96 +32697,100.0,10.0,10.0,10.0,10.0,10.0,9.0,7,2.0 +68465,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.27 +9994,96.0,10.0,10.0,10.0,10.0,10.0,10.0,21,4.81 +68271,,,,,,,,0, +24025,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.55 +38049,99.0,10.0,10.0,10.0,10.0,10.0,10.0,17,3.86 +32307,80.0,9.0,7.0,9.0,9.0,7.0,9.0,2,0.57 +14115,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.93 +67745,,,,,,,,0, +57246,,,,,,,,0, +44852,,,,,,,,0, +29505,100.0,8.0,10.0,10.0,10.0,10.0,8.0,1,0.28 +36238,100.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.87 +20671,80.0,9.0,9.0,8.0,8.0,10.0,9.0,10,4.35 +14520,64.0,6.0,7.0,7.0,6.0,8.0,6.0,5,1.36 +30708,96.0,10.0,10.0,10.0,10.0,9.0,9.0,10,2.56 +6132,80.0,10.0,4.0,10.0,10.0,10.0,8.0,1,0.28 +5966,90.0,9.0,9.0,9.0,9.0,9.0,9.0,18,6.0 +68952,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.23 +23735,93.0,9.0,8.0,9.0,10.0,9.0,9.0,17,5.15 +8609,,,,,,,,0, +57816,100.0,9.0,8.0,9.0,10.0,9.0,10.0,3,0.9 +76061,,,,,,,,0, +38606,80.0,8.0,7.0,9.0,10.0,7.0,10.0,4,0.93 +48420,,,,,,,,0, +15140,,,,,,,,0, +25183,,,,,,,,0, +29874,,,,,,,,0, +1474,,,,,,,,0, +74255,,,,,,,,0, +44434,80.0,8.0,9.0,10.0,10.0,9.0,9.0,2,0.86 +40739,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.83 +8013,80.0,10.0,6.0,10.0,10.0,8.0,8.0,1,0.29 +59454,,,,,,,,0, +21127,90.0,10.0,10.0,10.0,10.0,9.0,9.0,4,0.84 +39140,100.0,10.0,10.0,9.0,10.0,10.0,10.0,12,8.18 +6122,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.24 +11936,93.0,10.0,9.0,10.0,10.0,8.0,9.0,8,1.7 +27247,99.0,10.0,10.0,10.0,10.0,10.0,10.0,27,6.14 +40427,80.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.23 +37999,80.0,9.0,7.0,9.0,10.0,9.0,9.0,2,2.0 +55715,90.0,10.0,10.0,10.0,10.0,9.0,9.0,4,1.45 +26310,,,,,,,,1,0.24 +36507,87.0,8.0,8.0,7.0,10.0,7.0,8.0,3,2.65 +33063,80.0,10.0,10.0,10.0,10.0,6.0,8.0,2,0.43 +59656,,,,,,,,0, +15522,99.0,10.0,10.0,10.0,10.0,10.0,10.0,14,4.33 +42039,100.0,9.0,10.0,10.0,10.0,8.0,9.0,4,0.83 +43998,,,,,,,,0, +76364,94.0,8.0,8.0,10.0,10.0,10.0,9.0,7,2.41 +74863,91.0,9.0,9.0,10.0,10.0,8.0,9.0,7,1.63 +56841,75.0,8.0,8.0,10.0,10.0,9.0,8.0,16,4.62 +60959,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.45 +34747,,,,,,,,0, +75102,87.0,9.0,9.0,8.0,9.0,7.0,8.0,6,1.96 +44201,72.0,9.0,7.0,10.0,10.0,7.0,8.0,5,1.08 +18695,,,,,,,,1,0.26 +59055,87.0,9.0,9.0,8.0,7.0,10.0,9.0,3,1.07 +73557,92.0,10.0,10.0,10.0,10.0,10.0,9.0,36,7.88 +12121,85.0,9.0,9.0,8.0,9.0,9.0,9.0,30,6.29 +12245,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.29 +22601,100.0,10.0,8.0,10.0,10.0,9.0,10.0,6,1.32 +41123,96.0,9.0,10.0,10.0,10.0,8.0,10.0,5,1.27 +16919,93.0,10.0,9.0,9.0,9.0,9.0,9.0,7,1.91 +10926,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,2.36 +45203,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.27 +20947,,,,,,,,0, +9395,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,3.24 +3127,,,,,,,,0, +76854,,,,,,,,0, +4848,93.0,10.0,10.0,9.0,10.0,10.0,9.0,6,1.96 +58824,,,,,,,,0, +27742,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.52 +73782,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,2.37 +34444,95.0,10.0,9.0,10.0,10.0,9.0,10.0,19,4.38 +8795,,,,,,,,0, +45648,83.0,9.0,8.0,10.0,10.0,10.0,9.0,7,1.53 +67657,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.73 +66480,97.0,10.0,10.0,10.0,10.0,9.0,10.0,13,3.58 +63593,93.0,9.0,9.0,10.0,10.0,9.0,9.0,12,2.52 +47954,,,,,,,,0, +38291,90.0,9.0,9.0,10.0,9.0,9.0,9.0,2,0.47 +58467,,,,,,,,0, +56956,98.0,10.0,10.0,10.0,10.0,9.0,10.0,19,4.35 +30127,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.9 +59537,93.0,10.0,9.0,10.0,10.0,10.0,9.0,8,2.42 +57292,96.0,9.0,9.0,9.0,10.0,9.0,10.0,23,4.96 +56442,96.0,10.0,10.0,10.0,10.0,10.0,10.0,15,3.72 +46043,90.0,9.0,10.0,9.0,9.0,10.0,9.0,6,2.31 +68880,80.0,9.0,7.0,9.0,9.0,9.0,8.0,2,1.28 +30065,,,,,,,,0, +6105,91.0,10.0,10.0,10.0,10.0,10.0,10.0,10,2.27 +67117,92.0,10.0,10.0,10.0,10.0,9.0,9.0,12,2.86 +34642,90.0,10.0,8.0,9.0,10.0,10.0,9.0,2,0.48 +74148,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.13 +36495,94.0,9.0,9.0,10.0,10.0,10.0,10.0,13,3.33 +20009,96.0,10.0,9.0,10.0,10.0,9.0,10.0,11,2.6 +59052,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.23 +2126,90.0,10.0,10.0,10.0,10.0,9.0,9.0,6,1.34 +38465,,,,,,,,0, +10586,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.53 +51406,,,,,,,,0, +6070,90.0,9.0,8.0,9.0,9.0,8.0,9.0,3,0.63 +22880,97.0,10.0,10.0,10.0,10.0,9.0,10.0,13,2.81 +58071,,,,,,,,0, +4743,,,,,,,,0, +48777,80.0,8.0,8.0,10.0,10.0,10.0,8.0,2,0.44 +6150,87.0,9.0,7.0,9.0,9.0,9.0,7.0,3,3.0 +31675,,,,,,,,0, +49982,67.0,9.0,9.0,10.0,9.0,10.0,8.0,3,0.7 +53649,,,,,,,,0, +44203,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.45 +17206,96.0,10.0,10.0,10.0,10.0,10.0,9.0,11,2.58 +5569,97.0,10.0,10.0,10.0,10.0,10.0,9.0,6,1.41 +35451,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.97 +63987,60.0,2.0,8.0,2.0,2.0,10.0,10.0,4,0.83 +6355,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,2.95 +70024,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.25 +71769,,,,,,,,0, +72690,100.0,9.0,9.0,10.0,10.0,10.0,9.0,3,1.29 +55141,87.0,9.0,9.0,9.0,8.0,10.0,9.0,12,2.73 +33813,99.0,10.0,10.0,10.0,10.0,9.0,10.0,15,3.31 +49524,,,,,,,,1,0.23 +47969,91.0,9.0,8.0,10.0,10.0,10.0,9.0,7,2.53 +77027,86.0,9.0,9.0,8.0,8.0,10.0,9.0,16,4.21 +42449,70.0,8.0,9.0,9.0,8.0,10.0,8.0,2,0.42 +75800,100.0,10.0,9.0,10.0,10.0,10.0,10.0,4,1.14 +14266,98.0,10.0,9.0,10.0,10.0,10.0,9.0,9,3.03 +69650,70.0,8.0,10.0,9.0,9.0,8.0,8.0,2,1.25 +48699,,,,,,,,0, +15502,90.0,9.0,10.0,10.0,10.0,10.0,8.0,4,0.98 +36634,,,,,,,,0, +11419,100.0,10.0,10.0,10.0,10.0,10.0,9.0,10,4.11 +31861,,,,,,,,0, +11956,96.0,10.0,10.0,10.0,10.0,9.0,10.0,5,1.97 +2095,,,,,,,,0, +25210,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.5 +11472,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.79 +36833,84.0,9.0,8.0,10.0,10.0,10.0,9.0,23,6.22 +76791,96.0,10.0,9.0,10.0,10.0,10.0,10.0,15,3.54 +74681,97.0,10.0,10.0,10.0,10.0,10.0,10.0,20,4.38 +73590,73.0,8.0,9.0,9.0,8.0,10.0,8.0,3,0.76 +75947,,,,,,,,0, +8016,100.0,10.0,9.0,10.0,10.0,10.0,9.0,2,0.52 +40504,82.0,9.0,9.0,8.0,8.0,10.0,8.0,10,2.33 +42241,80.0,8.0,6.0,10.0,10.0,8.0,8.0,1,0.23 +21104,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.64 +36964,70.0,9.0,6.0,9.0,9.0,8.0,7.0,16,3.53 +61312,100.0,8.0,10.0,10.0,10.0,10.0,8.0,1,1.0 +42604,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.16 +62205,,,,,,,,0, +72276,97.0,10.0,10.0,9.0,10.0,10.0,10.0,7,1.86 +3117,,,,,,,,0, +331,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.77 +63719,98.0,10.0,9.0,10.0,10.0,10.0,10.0,8,1.73 +53350,80.0,9.0,10.0,10.0,7.0,9.0,10.0,3,0.66 +21880,,,,,,,,0, +77022,90.0,9.0,8.0,10.0,10.0,8.0,9.0,2,0.48 +40541,40.0,2.0,4.0,6.0,10.0,6.0,6.0,1,0.27 +320,100.0,10.0,10.0,10.0,10.0,9.0,9.0,2,1.18 +39100,100.0,8.0,10.0,10.0,10.0,10.0,10.0,2,0.52 +185,95.0,10.0,9.0,10.0,10.0,10.0,9.0,8,1.97 +52343,76.0,8.0,8.0,8.0,8.0,8.0,8.0,5,1.15 +16524,,,,,,,,0, +34269,97.0,10.0,9.0,10.0,10.0,9.0,9.0,6,1.62 +18339,100.0,10.0,9.0,10.0,10.0,10.0,10.0,7,2.28 +44124,,,,,,,,0, +48312,91.0,10.0,10.0,9.0,9.0,10.0,9.0,7,2.08 +4114,100.0,8.0,8.0,6.0,8.0,8.0,8.0,1,0.27 +10452,88.0,9.0,9.0,10.0,10.0,10.0,10.0,5,2.54 +16319,75.0,8.0,8.0,10.0,10.0,9.0,7.0,4,0.89 +40771,80.0,8.0,8.0,10.0,8.0,10.0,9.0,2,0.5 +1138,96.0,10.0,10.0,10.0,9.0,9.0,10.0,14,5.75 +27524,100.0,10.0,6.0,10.0,10.0,10.0,8.0,1,0.27 +58457,,,,,,,,0, +58372,70.0,10.0,5.0,10.0,10.0,10.0,7.0,5,1.07 +55145,92.0,10.0,10.0,10.0,10.0,9.0,10.0,5,1.17 +5544,90.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.75 +42596,98.0,10.0,9.0,10.0,10.0,10.0,10.0,11,2.89 +932,,,,,,,,0, +71363,100.0,10.0,10.0,10.0,10.0,8.0,10.0,2,0.65 +55657,,,,,,,,0, +23901,93.0,9.0,9.0,10.0,10.0,10.0,9.0,3,0.68 +10098,73.0,7.0,8.0,9.0,9.0,8.0,7.0,3,1.08 +15440,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.32 +10397,93.0,10.0,9.0,10.0,10.0,10.0,10.0,21,5.12 +36267,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,1.06 +57133,,,,,,,,1,0.21 +27495,93.0,9.0,9.0,9.0,9.0,9.0,9.0,6,2.34 +24493,93.0,10.0,9.0,10.0,10.0,9.0,10.0,14,3.31 +6289,,,,,,,,0, +31023,,,,,,,,0, +18477,60.0,8.0,4.0,6.0,10.0,10.0,8.0,1,0.27 +76622,90.0,9.0,7.0,10.0,10.0,10.0,8.0,3,0.74 +52043,,,,,,,,1,0.29 +71101,,,,,,,,0, +25758,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.29 +36440,84.0,10.0,10.0,10.0,10.0,9.0,8.0,6,1.29 +10278,89.0,9.0,9.0,9.0,9.0,10.0,9.0,22,5.69 +55077,100.0,10.0,6.0,8.0,10.0,10.0,10.0,2,0.47 +55974,86.0,9.0,9.0,9.0,8.0,9.0,9.0,19,4.22 +39887,,,,,,,,0, +12429,100.0,10.0,10.0,10.0,9.0,10.0,10.0,7,1.6 +50281,97.0,10.0,9.0,10.0,10.0,10.0,10.0,12,2.54 +62951,100.0,10.0,10.0,10.0,10.0,9.0,9.0,7,1.62 +48083,88.0,9.0,9.0,9.0,10.0,10.0,9.0,13,3.02 +59337,86.0,9.0,8.0,9.0,9.0,9.0,9.0,14,3.5 +74279,100.0,8.0,10.0,10.0,10.0,4.0,6.0,1,0.31 +29841,70.0,10.0,5.0,10.0,10.0,9.0,8.0,4,0.94 +19658,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.27 +57881,,,,,,,,0, +12665,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.73 +4594,,,,,,,,0, +63989,84.0,10.0,10.0,10.0,10.0,9.0,10.0,5,1.15 +36969,93.0,10.0,10.0,10.0,10.0,8.0,10.0,3,0.65 +28464,,,,,,,,1,0.21 +20746,80.0,8.0,10.0,10.0,10.0,8.0,8.0,1,0.71 +63374,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.88 +24981,92.0,10.0,10.0,10.0,9.0,10.0,9.0,28,6.77 +63370,,,,,,,,0, +74828,86.0,9.0,10.0,10.0,10.0,10.0,8.0,35,8.27 +61422,,,,,,,,0, +27983,,,,,,,,0, +5700,96.0,10.0,10.0,10.0,10.0,10.0,9.0,20,4.96 +21535,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.67 +66982,100.0,10.0,9.0,9.0,10.0,10.0,10.0,2,0.48 +8336,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.64 +20369,,,,,,,,0, +404,98.0,10.0,10.0,10.0,10.0,10.0,10.0,29,6.13 +62550,,,,,,,,0, +46686,88.0,10.0,10.0,10.0,9.0,10.0,9.0,5,1.19 +35060,92.0,10.0,9.0,10.0,10.0,10.0,9.0,5,1.13 +56738,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.53 +52059,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,1.15 +39137,,,,,,,,0, +51782,,,,,,,,0, +48149,80.0,9.0,8.0,10.0,10.0,10.0,8.0,4,1.54 +73390,93.0,10.0,10.0,10.0,10.0,10.0,10.0,11,2.44 +4487,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.45 +62414,,,,,,,,0, +56801,91.0,9.0,9.0,10.0,10.0,10.0,9.0,13,2.91 +22028,,,,,,,,1,0.28 +48585,90.0,10.0,9.0,10.0,10.0,9.0,10.0,2,1.46 +37762,,,,,,,,0, +47070,20.0,6.0,4.0,6.0,2.0,8.0,4.0,2,0.73 +47273,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.24 +38032,97.0,10.0,10.0,9.0,10.0,10.0,10.0,7,2.53 +10683,93.0,9.0,10.0,8.0,10.0,10.0,9.0,3,0.98 +500,91.0,9.0,10.0,10.0,10.0,9.0,9.0,14,3.18 +46957,,,,,,,,0, +22528,95.0,9.0,9.0,9.0,10.0,9.0,9.0,32,7.33 +37173,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.54 +67134,80.0,10.0,10.0,8.0,10.0,10.0,10.0,2,0.71 +39156,,,,,,,,0, +65699,91.0,10.0,9.0,10.0,10.0,10.0,10.0,9,3.33 +73998,95.0,10.0,10.0,9.0,9.0,10.0,9.0,5,1.28 +29317,,,,,,,,0, +65947,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.95 +10355,,,,,,,,0, +69319,100.0,8.0,8.0,10.0,10.0,10.0,10.0,1,0.26 +48305,,,,,,,,0, +38071,,,,,,,,0, +33654,92.0,10.0,10.0,10.0,10.0,10.0,10.0,13,2.95 +1568,100.0,10.0,9.0,9.0,10.0,9.0,9.0,2,0.45 +15656,,,,,,,,0, +12479,90.0,9.0,9.0,8.0,8.0,9.0,8.0,2,0.58 +75602,,,,,,,,1,0.54 +1329,83.0,9.0,9.0,7.0,8.0,10.0,8.0,7,1.72 +2184,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.49 +29592,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.43 +30425,,,,,,,,0, +38444,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.96 +62681,70.0,10.0,9.0,10.0,9.0,8.0,8.0,2,0.76 +61982,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.47 +57043,,,,,,,,0, +56900,80.0,8.0,6.0,10.0,10.0,8.0,8.0,2,0.48 +61181,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.88 +7955,,,,,,,,0, +72539,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.85 +29469,,,,,,,,0, +8792,,,,,,,,0, +50039,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,3.37 +70732,100.0,10.0,9.0,10.0,10.0,10.0,9.0,4,1.09 +49318,95.0,10.0,10.0,10.0,10.0,9.0,9.0,4,0.89 +30796,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.53 +67647,96.0,10.0,10.0,10.0,10.0,10.0,9.0,17,4.81 +11136,20.0,2.0,2.0,2.0,2.0,8.0,2.0,1,0.35 +20509,94.0,10.0,10.0,10.0,9.0,10.0,9.0,7,2.47 +15537,95.0,9.0,9.0,9.0,10.0,10.0,9.0,19,4.45 +60740,,,,,,,,0, +18375,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.85 +48468,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.26 +17396,97.0,10.0,10.0,10.0,10.0,9.0,10.0,14,3.13 +22593,99.0,10.0,10.0,10.0,10.0,9.0,10.0,16,3.97 +11654,,,,,,,,0, +43022,80.0,9.0,8.0,10.0,9.0,9.0,9.0,2,0.54 +66552,95.0,10.0,10.0,10.0,10.0,10.0,9.0,11,3.67 +30998,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.26 +52355,,,,,,,,0, +76052,,,,,,,,0, +9818,96.0,9.0,9.0,9.0,10.0,10.0,10.0,6,1.43 +25852,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.26 +50301,87.0,9.0,10.0,9.0,10.0,9.0,9.0,14,4.0 +14209,,,,,,,,0, +48569,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.39 +518,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.23 +63881,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.45 +19093,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.53 +62846,95.0,10.0,10.0,10.0,9.0,9.0,10.0,5,1.33 +50616,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.44 +65677,80.0,8.0,8.0,10.0,10.0,10.0,10.0,1,1.0 +14992,,,,,,,,0, +42671,,,,,,,,0, +18922,97.0,10.0,10.0,10.0,10.0,9.0,10.0,6,2.43 +49409,93.0,10.0,8.0,10.0,10.0,10.0,9.0,6,1.96 +55210,91.0,10.0,10.0,10.0,10.0,10.0,9.0,17,4.36 +22087,,,,,,,,0, +10643,70.0,8.0,8.0,9.0,9.0,8.0,7.0,12,3.0 +34407,88.0,9.0,10.0,10.0,10.0,9.0,9.0,13,4.33 +2152,100.0,8.0,8.0,6.0,10.0,8.0,10.0,1,0.25 +60658,,,,,,,,1,0.3 +52418,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,3.04 +51167,92.0,9.0,8.0,10.0,10.0,8.0,9.0,6,1.3 +67442,,,,,,,,0, +22046,,,,,,,,0, +32724,95.0,10.0,10.0,10.0,10.0,10.0,9.0,5,1.43 +18368,80.0,9.0,8.0,9.0,10.0,10.0,9.0,7,1.88 +26293,90.0,9.0,9.0,10.0,10.0,10.0,9.0,8,2.03 +579,91.0,9.0,8.0,10.0,10.0,10.0,9.0,13,2.95 +39596,98.0,10.0,10.0,10.0,10.0,9.0,10.0,21,7.08 +11842,90.0,8.0,8.0,8.0,9.0,7.0,9.0,3,0.88 +37260,,,,,,,,0, +35583,100.0,10.0,9.0,10.0,10.0,8.0,10.0,2,0.62 +30650,100.0,10.0,10.0,10.0,8.0,10.0,10.0,1,0.3 +56343,80.0,8.0,7.0,9.0,9.0,9.0,9.0,2,0.76 +47279,,,,,,,,2,0.58 +5081,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.24 +45759,90.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.6 +21249,90.0,10.0,10.0,10.0,9.0,10.0,10.0,5,1.36 +17086,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.23 +69784,,,,,,,,0, +4125,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.97 +29443,100.0,10.0,10.0,10.0,10.0,10.0,8.0,5,1.25 +27321,,,,,,,,0, +65413,100.0,10.0,10.0,9.0,10.0,9.0,10.0,2,0.67 +36601,85.0,9.0,8.0,9.0,9.0,9.0,9.0,16,3.45 +10085,,,,,,,,1,0.22 +17387,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.58 +50936,100.0,6.0,4.0,8.0,10.0,10.0,8.0,1,0.26 +1389,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.37 +24549,,,,,,,,0, +9351,95.0,10.0,10.0,9.0,10.0,10.0,10.0,4,1.02 +65725,93.0,10.0,10.0,10.0,10.0,7.0,9.0,3,0.76 +53792,93.0,9.0,10.0,9.0,9.0,10.0,9.0,9,1.9 +64276,98.0,9.0,10.0,9.0,10.0,9.0,9.0,13,3.61 +56332,80.0,10.0,7.0,10.0,10.0,10.0,10.0,4,1.02 +5437,,,,,,,,1,0.23 +73577,79.0,8.0,7.0,9.0,8.0,10.0,8.0,14,3.0 +59331,80.0,10.0,8.0,10.0,10.0,10.0,10.0,4,1.52 +3236,88.0,10.0,9.0,10.0,10.0,10.0,10.0,6,1.5 +66934,,,,,,,,0, +17986,90.0,9.0,9.0,10.0,10.0,9.0,10.0,8,2.14 +5359,97.0,10.0,10.0,10.0,10.0,8.0,10.0,29,6.8 +44789,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.51 +21006,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.58 +38549,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.69 +69098,,,,,,,,0, +59720,,,,,,,,0, +46671,,,,,,,,0, +74775,,,,,,,,0, +67092,,,,,,,,0, +60250,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.87 +56030,,,,,,,,0, +65670,60.0,10.0,10.0,2.0,6.0,10.0,6.0,1,0.38 +9423,,,,,,,,0, +60449,94.0,9.0,9.0,9.0,9.0,9.0,10.0,10,2.44 +50785,,,,,,,,0, +54098,70.0,6.0,8.0,10.0,10.0,8.0,6.0,2,0.45 +12947,,,,,,,,0, +33698,70.0,6.0,9.0,9.0,6.0,9.0,8.0,2,0.51 +4171,,,,,,,,0, +61996,,,,,,,,0, +34842,,,,,,,,0, +21089,70.0,8.0,9.0,7.0,8.0,10.0,9.0,2,0.66 +9189,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,3.2 +16004,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.28 +49192,98.0,10.0,8.0,10.0,10.0,10.0,10.0,9,2.01 +46463,,,,,,,,0, +58702,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.37 +43538,87.0,10.0,9.0,10.0,10.0,10.0,9.0,4,0.98 +74131,87.0,9.0,9.0,10.0,10.0,9.0,9.0,17,3.72 +29807,97.0,10.0,10.0,10.0,10.0,9.0,10.0,14,3.44 +75543,98.0,10.0,10.0,10.0,10.0,10.0,9.0,11,2.58 +74128,80.0,10.0,8.0,10.0,10.0,9.0,10.0,2,0.54 +540,80.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.33 +740,,,,,,,,0, +71621,80.0,10.0,4.0,10.0,10.0,10.0,10.0,2,0.54 +59801,80.0,9.0,7.0,9.0,9.0,10.0,8.0,5,2.21 +42100,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.24 +7002,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.83 +4733,95.0,10.0,10.0,10.0,10.0,10.0,10.0,17,4.21 +23014,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,2.0 +50090,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.34 +66334,90.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.47 +45341,96.0,10.0,10.0,10.0,10.0,9.0,9.0,14,3.04 +25526,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,2.95 +67198,,,,,,,,0, +66138,,,,,,,,0, +25493,100.0,10.0,9.0,10.0,10.0,10.0,9.0,3,0.68 +42298,,,,,,,,0, +42828,97.0,10.0,10.0,10.0,10.0,9.0,9.0,7,2.02 +26770,,,,,,,,1, +4825,92.0,9.0,10.0,9.0,9.0,10.0,10.0,20,5.13 +72300,86.0,9.0,9.0,9.0,9.0,9.0,9.0,19,6.2 +49769,93.0,10.0,10.0,10.0,10.0,10.0,9.0,22,6.17 +76481,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.42 +33994,87.0,9.0,10.0,10.0,10.0,9.0,9.0,28,7.18 +54207,87.0,9.0,10.0,9.0,9.0,9.0,9.0,14,3.11 +71646,,,,,,,,0, +57667,,,,,,,,0, +34996,93.0,10.0,9.0,10.0,10.0,8.0,9.0,3,0.73 +73864,,,,,,,,0, +55981,,,,,,,,1,0.28 +62574,100.0,10.0,10.0,10.0,10.0,10.0,9.0,6,1.57 +16169,100.0,9.0,10.0,10.0,10.0,9.0,10.0,4,1.69 +58634,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,3.89 +36079,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,2.13 +34517,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.23 +9772,80.0,8.0,10.0,8.0,10.0,10.0,8.0,3,0.66 +53330,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.34 +25085,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.39 +1196,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,2.06 +62051,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,1.25 +1002,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,2.5 +50986,,,,,,,,0, +72356,99.0,10.0,10.0,10.0,10.0,9.0,10.0,24,5.67 +59250,,,,,,,,0, +73542,,,,,,,,0, +76263,82.0,8.0,10.0,10.0,9.0,10.0,9.0,11,2.6 +26733,100.0,10.0,9.0,10.0,10.0,9.0,10.0,3,0.91 +68244,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.88 +16009,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.43 +8290,,,,,,,,0, +29051,50.0,9.0,10.0,9.0,8.0,10.0,8.0,2,0.71 +70549,40.0,10.0,10.0,2.0,6.0,10.0,6.0,1,0.36 +75120,100.0,10.0,8.0,8.0,10.0,10.0,10.0,1,0.36 +49228,97.0,10.0,10.0,10.0,10.0,10.0,9.0,15,3.31 +48853,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,3.53 +13960,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,4.33 +1157,,,,,,,,0, +9883,20.0,2.0,10.0,4.0,2.0,2.0,2.0,1,0.53 +69711,80.0,9.0,8.0,9.0,10.0,10.0,9.0,3,0.68 +32696,80.0,9.0,9.0,10.0,10.0,9.0,9.0,4,0.98 +29735,90.0,9.0,10.0,10.0,10.0,10.0,10.0,4,0.93 +40652,,,,,,,,0, +15454,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.8 +23178,94.0,10.0,9.0,9.0,10.0,9.0,9.0,23,5.11 +32761,40.0,4.0,10.0,10.0,10.0,4.0,4.0,1,1.0 +37134,91.0,10.0,9.0,10.0,8.0,10.0,9.0,9,2.43 +48778,89.0,9.0,10.0,9.0,9.0,10.0,9.0,7,2.02 +24840,100.0,10.0,9.0,10.0,10.0,9.0,10.0,3,0.74 +27916,90.0,9.0,10.0,10.0,10.0,10.0,9.0,2,0.49 +2147,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.27 +26589,80.0,8.0,8.0,9.0,8.0,8.0,8.0,15,3.52 +71800,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.31 +21756,97.0,10.0,10.0,10.0,10.0,9.0,9.0,24,6.0 +20078,98.0,10.0,9.0,10.0,10.0,9.0,10.0,12,2.69 +40228,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.83 +11914,,,,,,,,0, +14052,84.0,9.0,9.0,9.0,10.0,10.0,8.0,10,2.34 +36834,,,,,,,,0, +47101,92.0,9.0,9.0,10.0,9.0,10.0,9.0,13,3.07 +20354,90.0,9.0,9.0,10.0,9.0,8.0,9.0,4,0.93 +18492,97.0,10.0,10.0,10.0,10.0,10.0,9.0,15,3.6 +42999,,,,,,,,0, +23991,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,1.96 +65252,94.0,10.0,10.0,10.0,10.0,10.0,10.0,7,1.65 +24446,100.0,10.0,8.0,7.0,7.0,10.0,9.0,2,0.48 +42157,91.0,9.0,10.0,10.0,10.0,10.0,9.0,20,4.76 +63367,,,,,,,,0, +17331,96.0,10.0,10.0,10.0,10.0,10.0,10.0,18,4.12 +20208,,,,,,,,0, +57075,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.26 +23402,,,,,,,,0, +67065,,,,,,,,0, +74671,97.0,10.0,10.0,10.0,10.0,10.0,10.0,12,2.73 +70102,,,,,,,,0, +57249,,,,,,,,0, +31308,84.0,9.0,9.0,10.0,9.0,10.0,9.0,5,1.65 +17907,81.0,8.0,8.0,8.0,9.0,10.0,9.0,24,5.22 +44634,,,,,,,,0, +61240,84.0,9.0,8.0,10.0,10.0,10.0,8.0,5,1.23 +61390,99.0,10.0,10.0,10.0,10.0,10.0,10.0,21,6.12 +25957,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,1.46 +8301,91.0,10.0,8.0,9.0,9.0,9.0,10.0,8,2.67 +32175,100.0,10.0,10.0,10.0,10.0,10.0,9.0,4,1.6 +43727,93.0,9.0,8.0,9.0,10.0,10.0,9.0,6,1.35 +66525,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.29 +3063,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.5 +16016,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,1.0 +51330,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.76 +70097,95.0,10.0,10.0,10.0,10.0,10.0,10.0,13,2.93 +66931,89.0,9.0,9.0,9.0,10.0,9.0,9.0,11,3.3 +17988,,,,,,,,0, +76277,89.0,9.0,9.0,9.0,10.0,9.0,9.0,7,2.06 +30711,100.0,10.0,10.0,10.0,10.0,9.0,9.0,5,1.22 +64704,80.0,10.0,8.0,8.0,8.0,8.0,9.0,3,1.11 +53986,100.0,10.0,10.0,10.0,10.0,10.0,9.0,4,1.03 +904,100.0,10.0,9.0,10.0,10.0,9.0,10.0,2,0.49 +4572,,,,,,,,0, +52362,90.0,9.0,9.0,10.0,10.0,9.0,8.0,6,1.64 +27710,97.0,10.0,10.0,10.0,10.0,10.0,10.0,13,2.91 +6843,,,,,,,,0, +7083,100.0,10.0,9.0,10.0,10.0,9.0,10.0,7,1.78 +9619,87.0,9.0,8.0,8.0,9.0,10.0,9.0,12,3.13 +53584,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.67 +40858,,,,,,,,1, +11100,97.0,10.0,9.0,10.0,10.0,9.0,10.0,7,2.12 +42142,87.0,9.0,9.0,10.0,10.0,10.0,9.0,19,4.1 +38214,96.0,10.0,9.0,10.0,10.0,9.0,10.0,18,3.94 +18686,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.44 +57076,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.23 +13118,,,,,,,,0, +17989,100.0,8.0,10.0,10.0,10.0,10.0,10.0,2,0.97 +529,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.45 +34405,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.44 +35100,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +65383,96.0,9.0,10.0,10.0,10.0,10.0,10.0,11,2.43 +45553,,,,,,,,0, +12464,,,,,,,,0, +41685,,,,,,,,0, +19877,100.0,9.0,10.0,10.0,10.0,9.0,10.0,3,0.85 +35653,95.0,10.0,10.0,10.0,10.0,9.0,10.0,32,7.5 +61490,70.0,7.0,8.0,9.0,7.0,7.0,8.0,2,1.4 +25968,97.0,10.0,10.0,9.0,10.0,9.0,10.0,7,1.94 +39718,86.0,9.0,9.0,7.0,8.0,10.0,9.0,7,1.68 +75866,90.0,9.0,10.0,10.0,10.0,9.0,9.0,2,0.48 +52609,93.0,9.0,9.0,10.0,9.0,10.0,9.0,3,0.88 +62668,87.0,10.0,9.0,10.0,10.0,9.0,8.0,9,2.18 +3828,94.0,10.0,10.0,10.0,10.0,10.0,10.0,10,2.7 +11741,,,,,,,,0, +45872,80.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.43 +45943,100.0,10.0,10.0,10.0,10.0,9.0,10.0,6,2.17 +73112,93.0,9.0,10.0,10.0,9.0,9.0,9.0,6,2.9 +56846,,,,,,,,0, +65775,94.0,10.0,9.0,10.0,10.0,10.0,9.0,14,3.18 +25393,,,,,,,,0, +48764,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.29 +272,,,,,,,,0, +42350,96.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.53 +50216,96.0,10.0,9.0,10.0,10.0,10.0,10.0,21,7.08 +23305,74.0,7.0,7.0,8.0,8.0,9.0,7.0,10,3.26 +57863,98.0,10.0,10.0,10.0,10.0,10.0,10.0,17,4.64 +8526,96.0,10.0,10.0,10.0,10.0,9.0,9.0,12,3.21 +10091,90.0,8.0,9.0,9.0,10.0,10.0,10.0,2,0.71 +13737,94.0,10.0,10.0,10.0,10.0,9.0,10.0,10,4.29 +24046,90.0,10.0,9.0,10.0,10.0,9.0,8.0,2,0.47 +29608,96.0,10.0,10.0,10.0,10.0,10.0,8.0,5,1.14 +48222,96.0,9.0,10.0,10.0,9.0,10.0,10.0,10,3.16 +29332,,,,,,,,0, +43329,75.0,8.0,7.0,8.0,9.0,10.0,8.0,24,5.5 +67868,85.0,9.0,8.0,10.0,10.0,10.0,9.0,21,4.63 +33098,,,,,,,,0, +17652,80.0,8.0,9.0,9.0,10.0,10.0,8.0,3,0.78 +32720,82.0,8.0,7.0,8.0,9.0,7.0,8.0,12,2.77 +14956,73.0,8.0,7.0,8.0,9.0,10.0,8.0,24,5.14 +12183,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.99 +73826,93.0,8.0,9.0,10.0,10.0,9.0,9.0,3,0.72 +42011,80.0,10.0,7.0,9.0,9.0,10.0,9.0,5,1.83 +41519,100.0,10.0,6.0,10.0,10.0,10.0,10.0,2,0.8 +30710,95.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.91 +11866,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,1.68 +4438,60.0,6.0,6.0,6.0,8.0,2.0,4.0,1,0.27 +45056,96.0,10.0,10.0,10.0,10.0,10.0,10.0,17,4.02 +66796,,,,,,,,0, +66938,93.0,9.0,9.0,10.0,9.0,7.0,10.0,4,0.91 +67718,68.0,6.0,7.0,8.0,8.0,7.0,7.0,5,1.25 +75514,93.0,10.0,10.0,9.0,10.0,10.0,9.0,6,2.81 +22395,90.0,10.0,9.0,7.0,9.0,9.0,9.0,2,0.46 +35649,,,,,,,,0, +54940,97.0,10.0,10.0,10.0,10.0,9.0,10.0,18,8.44 +58349,,,,,,,,0, +38652,,,,,,,,0, +32300,60.0,10.0,2.0,10.0,10.0,10.0,6.0,1,0.37 +27048,,,,,,,,0, +48759,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.3 +21164,96.0,9.0,9.0,9.0,9.0,10.0,9.0,21,5.29 +1085,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.74 +60636,80.0,10.0,10.0,9.0,7.0,10.0,10.0,2,0.8 +27971,93.0,9.0,9.0,9.0,10.0,10.0,9.0,3,3.0 +11317,100.0,10.0,10.0,10.0,10.0,10.0,10.0,22,5.04 +13706,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.5 +37100,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.72 +4002,93.0,9.0,9.0,9.0,10.0,9.0,10.0,3,0.74 +50958,,,,,,,,0, +30448,,,,,,,,0, +63738,85.0,9.0,10.0,9.0,9.0,10.0,10.0,4,0.94 +9725,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.92 +67680,85.0,8.0,8.0,10.0,10.0,10.0,9.0,5,1.11 +40421,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,2.27 +23144,,,,,,,,0, +10660,67.0,7.0,7.0,7.0,7.0,7.0,7.0,5,1.72 +31367,,,,,,,,0, +20292,96.0,10.0,10.0,10.0,10.0,10.0,10.0,37,8.16 +55652,95.0,10.0,10.0,10.0,10.0,10.0,9.0,4,3.0 +12624,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,2.31 +37738,80.0,8.0,9.0,8.0,8.0,10.0,9.0,8,1.88 +14381,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.64 +1487,100.0,10.0,10.0,8.0,10.0,10.0,8.0,1,0.63 +13599,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.29 +16079,96.0,10.0,10.0,10.0,10.0,9.0,10.0,6,2.12 +24438,100.0,10.0,10.0,9.0,10.0,10.0,9.0,2,1.4 +32387,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,1.43 +75653,100.0,9.0,8.0,9.0,10.0,9.0,7.0,2,0.67 +57686,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.29 +58406,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +33308,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.75 +14144,97.0,10.0,10.0,10.0,10.0,10.0,10.0,7,2.41 +26721,95.0,9.0,10.0,9.0,10.0,9.0,9.0,26,6.09 +65162,93.0,10.0,10.0,9.0,10.0,9.0,9.0,3,2.5 +36560,,,,,,,,1,0.26 +24931,98.0,10.0,10.0,10.0,10.0,10.0,9.0,10,2.44 +52594,100.0,10.0,10.0,8.0,10.0,10.0,10.0,1,0.31 +13506,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,3.14 +20725,80.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.27 +75284,,,,,,,,0, +7554,,,,,,,,0, +47414,80.0,9.0,9.0,10.0,10.0,9.0,8.0,2,0.47 +19542,,,,,,,,0, +38936,93.0,9.0,9.0,10.0,10.0,9.0,9.0,3,0.88 +61806,,,,,,,,0, +12455,69.0,6.0,7.0,8.0,8.0,8.0,6.0,10,2.26 +25038,,,,,,,,0, +36792,,,,,,,,0, +4521,95.0,9.0,9.0,10.0,10.0,10.0,10.0,17,4.08 +61205,92.0,10.0,10.0,9.0,10.0,9.0,9.0,19,4.56 +13616,98.0,10.0,10.0,10.0,10.0,10.0,10.0,11,2.68 +58958,98.0,10.0,10.0,10.0,10.0,10.0,10.0,33,7.67 +44106,88.0,10.0,9.0,10.0,10.0,9.0,8.0,5,1.27 +17066,,,,,,,,0, +48318,,,,,,,,0, +5253,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,2.57 +47631,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.94 +54049,,,,,,,,0, +49055,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.28 +67181,,,,,,,,0, +18835,,,,,,,,0, +62764,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.47 +38517,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.33 +10707,,,,,,,,0, +53253,95.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.49 +363,,,,,,,,0, +50002,100.0,10.0,10.0,10.0,8.0,10.0,10.0,1,0.88 +62740,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.04 +76104,100.0,10.0,10.0,10.0,8.0,10.0,10.0,2,0.87 +14380,,,,,,,,0, +6188,65.0,8.0,10.0,7.0,7.0,7.0,7.0,4,1.45 +27186,100.0,10.0,9.0,10.0,10.0,9.0,9.0,2,0.87 +36346,,,,,,,,0, +33038,92.0,10.0,10.0,10.0,10.0,10.0,9.0,8,1.79 +4847,80.0,10.0,6.0,10.0,10.0,10.0,8.0,1,0.29 +71483,,,,,,,,0, +19488,100.0,9.0,10.0,10.0,10.0,10.0,10.0,2,0.45 +51962,100.0,10.0,10.0,10.0,10.0,9.0,8.0,5,1.29 +12773,95.0,10.0,10.0,10.0,10.0,10.0,9.0,12,3.24 +74656,100.0,8.0,8.0,10.0,10.0,8.0,10.0,1,1.0 +67240,,,,,,,,0, +1091,81.0,9.0,8.0,9.0,9.0,10.0,8.0,15,4.05 +49516,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.35 +4511,90.0,9.0,9.0,10.0,9.0,9.0,9.0,21,4.74 +11231,,,,,,,,1,0.58 +68189,81.0,9.0,8.0,10.0,10.0,9.0,9.0,17,3.78 +53725,82.0,9.0,8.0,10.0,9.0,9.0,8.0,30,6.67 +19333,97.0,10.0,9.0,10.0,10.0,10.0,10.0,14,5.68 +4396,88.0,9.0,9.0,9.0,9.0,10.0,9.0,24,5.29 +48393,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,4.39 +40879,86.0,9.0,8.0,10.0,9.0,9.0,9.0,27,6.28 +36296,88.0,9.0,10.0,9.0,10.0,8.0,8.0,20,4.88 +76048,,,,,,,,0, +63187,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.25 +61836,84.0,9.0,9.0,9.0,9.0,9.0,9.0,18,4.54 +47541,88.0,10.0,8.0,10.0,10.0,10.0,9.0,17,4.32 +44205,88.0,10.0,9.0,10.0,10.0,10.0,9.0,23,5.23 +36510,96.0,10.0,9.0,10.0,10.0,9.0,10.0,15,4.25 +38820,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.23 +49467,,,,,,,,0, +56001,,,,,,,,0, +17858,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.67 +34901,,,,,,,,0, +11375,94.0,10.0,10.0,10.0,9.0,9.0,10.0,33,8.61 +74997,,,,,,,,0, +64319,88.0,8.0,8.0,10.0,9.0,9.0,9.0,10,2.29 +3945,84.0,10.0,8.0,10.0,10.0,10.0,10.0,5,1.76 +5141,93.0,9.0,10.0,9.0,10.0,10.0,9.0,14,3.18 +28993,,,,,,,,0, +66630,100.0,10.0,9.0,9.0,10.0,9.0,9.0,2,1.82 +53489,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,2.38 +20150,76.0,9.0,8.0,10.0,9.0,9.0,8.0,16,3.97 +69106,100.0,10.0,10.0,10.0,10.0,8.0,10.0,9,1.94 +11210,80.0,8.0,6.0,10.0,8.0,8.0,10.0,1,0.63 +47405,80.0,8.0,10.0,6.0,10.0,10.0,10.0,1,0.25 +40417,99.0,10.0,10.0,10.0,10.0,9.0,10.0,15,3.28 +16426,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.73 +54534,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,2.14 +48741,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.5 +75395,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,1.58 +27502,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.85 +60125,75.0,7.0,7.0,9.0,10.0,9.0,9.0,4,1.26 +31087,40.0,4.0,4.0,6.0,6.0,10.0,2.0,1,0.63 +45114,95.0,10.0,10.0,10.0,10.0,9.0,9.0,8,3.2 +63059,,,,,,,,0, +34194,98.0,10.0,10.0,10.0,10.0,9.0,10.0,11,2.6 +44455,,,,,,,,0, +22704,,,,,,,,0, +71920,91.0,10.0,10.0,10.0,10.0,9.0,9.0,23,7.34 +22354,95.0,10.0,10.0,10.0,10.0,10.0,10.0,8,2.42 +15684,,,,,,,,0, +20491,95.0,9.0,10.0,10.0,10.0,9.0,9.0,15,3.26 +21640,97.0,10.0,10.0,10.0,10.0,10.0,10.0,12,2.77 +28282,100.0,10.0,10.0,10.0,10.0,10.0,10.0,17,3.72 +27586,,,,,,,,0, +61061,84.0,9.0,9.0,10.0,10.0,10.0,9.0,5,1.56 +35945,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.09 +31895,94.0,10.0,9.0,10.0,10.0,10.0,10.0,10,2.54 +48880,92.0,9.0,10.0,10.0,9.0,9.0,8.0,15,7.38 +19187,90.0,10.0,9.0,10.0,10.0,9.0,10.0,2,0.54 +48075,,,,,,,,0, +13820,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,1.35 +47584,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.65 +13174,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.11 +42929,100.0,10.0,10.0,10.0,10.0,10.0,9.0,6,1.54 +33633,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.35 +63803,90.0,10.0,10.0,10.0,10.0,9.0,9.0,10,2.8 +74788,,,,,,,,1,0.27 +64714,90.0,10.0,10.0,10.0,10.0,9.0,9.0,4,1.33 +53914,73.0,7.0,7.0,10.0,10.0,10.0,7.0,3,0.89 +10547,,,,,,,,0, +16532,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.53 +51978,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.75 +31787,,,,,,,,0, +28958,95.0,10.0,10.0,10.0,10.0,10.0,10.0,16,7.5 +40247,,,,,,,,0, +67936,97.0,9.0,10.0,9.0,10.0,10.0,9.0,15,3.28 +42948,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.94 +57823,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,2.33 +3898,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.43 +30241,,,,,,,,1,0.26 +16870,,,,,,,,1,0.44 +65847,,,,,,,,0, +44576,,,,,,,,0, +45715,100.0,9.0,9.0,10.0,9.0,10.0,10.0,2,0.7 +53226,,,,,,,,0, +16754,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,1.18 +26621,86.0,9.0,8.0,9.0,9.0,8.0,8.0,17,3.86 +46238,,,,,,,,0, +17130,80.0,8.0,10.0,10.0,10.0,10.0,8.0,1,0.29 +42429,,,,,,,,0, +48584,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,2.31 +76944,100.0,10.0,10.0,10.0,10.0,9.0,10.0,14,3.07 +1001,91.0,9.0,9.0,10.0,9.0,9.0,9.0,9,2.03 +51564,86.0,9.0,7.0,10.0,10.0,8.0,9.0,7,1.59 +7920,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,4.52 +21715,100.0,10.0,9.0,10.0,10.0,10.0,10.0,4,1.07 +37181,80.0,10.0,6.0,10.0,10.0,10.0,10.0,2,0.68 +47425,,,,,,,,0, +1362,100.0,9.0,9.0,10.0,10.0,10.0,10.0,2,0.53 +9856,100.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.57 +13646,78.0,8.0,8.0,10.0,9.0,10.0,9.0,15,3.6 +3584,100.0,8.0,8.0,8.0,8.0,8.0,8.0,2,0.43 +45928,93.0,10.0,10.0,10.0,10.0,10.0,10.0,11,3.88 +20738,96.0,10.0,10.0,9.0,10.0,9.0,10.0,14,3.68 +6687,93.0,9.0,9.0,9.0,9.0,9.0,9.0,6,1.45 +25676,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,1.0 +35821,,,,,,,,0, +72020,,,,,,,,1,0.37 +54849,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.5 +42822,,,,,,,,0, +22744,98.0,10.0,10.0,10.0,10.0,9.0,10.0,12,2.67 +76932,95.0,10.0,8.0,10.0,9.0,10.0,10.0,4,0.91 +37617,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,3.55 +16003,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +68944,94.0,9.0,9.0,10.0,10.0,9.0,9.0,17,3.95 +7752,80.0,9.0,7.0,8.0,9.0,6.0,8.0,2,0.87 +8912,87.0,9.0,9.0,10.0,9.0,10.0,9.0,12,2.79 +57181,96.0,10.0,10.0,10.0,10.0,9.0,10.0,5,1.76 +57865,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.27 +61173,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.47 +38793,,,,,,,,0, +9369,,,,,,,,0, +8210,80.0,8.0,8.0,8.0,10.0,10.0,8.0,1,0.36 +3053,,,,,,,,0, +45152,95.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.94 +17538,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.33 +74773,,,,,,,,1,0.24 +44358,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +45397,,,,,,,,0, +4503,76.0,8.0,8.0,9.0,9.0,10.0,8.0,5,1.9 +63044,80.0,10.0,6.0,10.0,10.0,10.0,10.0,2,0.48 +75943,85.0,9.0,9.0,9.0,9.0,9.0,8.0,12,2.98 +29785,80.0,8.0,10.0,10.0,8.0,8.0,8.0,1,0.88 +50657,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.7 +73449,87.0,9.0,8.0,9.0,9.0,9.0,9.0,6,1.37 +10559,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.54 +5626,87.0,9.0,9.0,8.0,9.0,10.0,9.0,9,2.23 +57711,82.0,9.0,9.0,10.0,9.0,9.0,9.0,9,2.08 +38358,,,,,,,,0, +75557,100.0,10.0,9.0,10.0,10.0,9.0,9.0,2,0.46 +10983,,,,,,,,0, +5097,97.0,10.0,10.0,10.0,10.0,10.0,10.0,15,3.75 +6033,,,,,,,,0, +37465,,,,,,,,0, +63523,,,,,,,,0, +28063,,,,,,,,0, +4301,67.0,7.0,7.0,8.0,9.0,9.0,7.0,3,0.88 +72730,,,,,,,,0, +50589,90.0,9.0,10.0,9.0,9.0,8.0,9.0,5,1.1 +17987,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,1.63 +40915,100.0,10.0,10.0,10.0,10.0,10.0,9.0,9,3.86 +36882,70.0,8.0,7.0,8.0,8.0,9.0,8.0,2,0.45 +57422,100.0,8.0,10.0,8.0,8.0,10.0,10.0,1,0.24 +56665,,,,,,,,2,0.74 +11925,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.28 +55170,,,,,,,,0, +59923,92.0,10.0,9.0,8.0,10.0,9.0,9.0,10,2.4 +22322,100.0,10.0,9.0,10.0,10.0,9.0,10.0,3,0.76 +53231,60.0,7.0,6.0,9.0,9.0,6.0,6.0,2,1.5 +51920,100.0,10.0,8.0,10.0,10.0,8.0,8.0,2,0.51 +47158,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.22 +48756,100.0,10.0,10.0,10.0,9.0,9.0,10.0,11,2.66 +11881,85.0,10.0,10.0,9.0,10.0,9.0,9.0,8,1.86 +58795,88.0,9.0,9.0,7.0,8.0,10.0,9.0,10,2.46 +63988,67.0,5.0,6.0,4.0,5.0,9.0,7.0,3,1.3 +7774,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,1.45 +41531,,,,,,,,0, +74432,,,,,,,,0, +59259,93.0,10.0,10.0,9.0,8.0,10.0,9.0,12,3.33 +36441,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.28 +25157,87.0,9.0,9.0,9.0,9.0,9.0,9.0,11,2.64 +18959,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.28 +63544,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.9 +16480,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.28 +35990,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.28 +56312,87.0,9.0,10.0,10.0,10.0,8.0,9.0,3,0.88 +56026,92.0,9.0,10.0,10.0,9.0,10.0,9.0,10,2.36 +49235,,,,,,,,0, +6969,,,,,,,,0, +28290,92.0,10.0,10.0,10.0,10.0,9.0,10.0,5,1.46 +75145,,,,,,,,0, +23534,92.0,10.0,10.0,10.0,10.0,10.0,8.0,7,1.53 +58944,96.0,10.0,10.0,10.0,10.0,8.0,10.0,5,1.46 +27414,,,,,,,,0, +72245,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.57 +73123,70.0,7.0,7.0,8.0,8.0,8.0,8.0,6,1.35 +33322,,,,,,,,0, +34485,80.0,10.0,9.0,10.0,9.0,9.0,7.0,8,1.92 +37636,91.0,9.0,9.0,8.0,9.0,10.0,9.0,11,4.65 +65742,,,,,,,,0, +42340,,,,,,,,1,0.26 +20853,60.0,6.0,4.0,8.0,8.0,8.0,6.0,1,0.25 +22987,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.55 +43288,93.0,10.0,9.0,10.0,10.0,10.0,9.0,3,0.69 +21353,,,,,,,,0, +38497,92.0,10.0,8.0,9.0,10.0,9.0,9.0,5,1.36 +2755,,,,,,,,1,0.75 +69161,90.0,10.0,8.0,9.0,10.0,10.0,10.0,2,0.48 +1683,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.14 +9486,95.0,10.0,10.0,10.0,10.0,9.0,10.0,5,1.24 +48944,,,,,,,,0, +39602,,,,,,,,0, +51864,,,,,,,,0, +75858,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.92 +6761,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.48 +9680,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,2.59 +182,,,,,,,,0, +63156,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.3 +73761,,,,,,,,2,0.51 +13446,96.0,10.0,9.0,10.0,10.0,10.0,9.0,5,1.9 +55775,95.0,10.0,10.0,10.0,10.0,9.0,10.0,4,1.05 +46002,89.0,9.0,7.0,9.0,10.0,10.0,9.0,11,2.56 +28315,,,,,,,,0, +36811,91.0,9.0,9.0,10.0,10.0,9.0,9.0,31,6.84 +6294,95.0,9.0,9.0,9.0,10.0,9.0,10.0,4,4.0 +72187,95.0,10.0,9.0,9.0,10.0,9.0,10.0,34,7.91 +54393,93.0,10.0,10.0,9.0,10.0,10.0,10.0,3,1.29 +53104,,,,,,,,0, +28418,80.0,6.0,10.0,10.0,10.0,8.0,8.0,1,0.86 +18228,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.78 +733,,,,,,,,1,1.0 +13252,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.93 +13896,88.0,10.0,8.0,10.0,10.0,10.0,10.0,5,1.24 +69673,100.0,8.0,8.0,8.0,10.0,10.0,8.0,1,0.27 +43685,,,,,,,,0, +10699,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,3.26 +53831,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.95 +3970,87.0,9.0,9.0,5.0,7.0,9.0,9.0,3,0.87 +37342,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.13 +33897,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.68 +40791,80.0,9.0,9.0,8.0,10.0,10.0,9.0,4,1.58 +73931,100.0,10.0,10.0,9.0,9.0,10.0,9.0,2,0.46 +14346,100.0,10.0,10.0,10.0,8.0,9.0,10.0,3,1.17 +73936,80.0,4.0,4.0,6.0,6.0,6.0,4.0,1,0.29 +36651,20.0,4.0,4.0,6.0,6.0,4.0,2.0,1,0.61 +37471,80.0,8.0,8.0,10.0,8.0,10.0,8.0,1,0.23 +57846,100.0,10.0,10.0,8.0,10.0,10.0,8.0,1,0.27 +4000,84.0,9.0,9.0,9.0,9.0,9.0,9.0,11,3.98 +2226,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.28 +64532,,,,,,,,0, +20551,91.0,9.0,10.0,10.0,9.0,10.0,8.0,13,3.94 +66744,,,,,,,,0, +51886,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.28 +45785,88.0,9.0,9.0,9.0,10.0,9.0,9.0,6,3.05 +19330,,,,,,,,0, +13801,80.0,10.0,10.0,8.0,4.0,10.0,10.0,1,0.53 +29000,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.28 +45690,,,,,,,,0, +43543,80.0,8.0,4.0,10.0,10.0,8.0,8.0,2,0.56 +61933,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.28 +10528,91.0,9.0,9.0,10.0,10.0,10.0,9.0,12,2.73 +11147,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.28 +41515,,,,,,,,1,0.22 +76179,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.23 +25056,91.0,10.0,10.0,8.0,9.0,10.0,9.0,9,3.97 +40992,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.28 +34210,20.0,2.0,2.0,2.0,2.0,2.0,2.0,1,0.25 +38051,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.28 +54202,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.28 +42835,70.0,6.0,5.0,10.0,10.0,10.0,7.0,2,0.79 +44871,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.28 +59820,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +12269,60.0,8.0,8.0,10.0,8.0,10.0,8.0,1,0.55 +61671,,,,,,,,0, +22906,100.0,10.0,9.0,10.0,10.0,9.0,10.0,2,0.54 +2682,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,3.22 +50879,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.28 +48169,,,,,,,,0, +57719,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.28 +43899,98.0,10.0,10.0,10.0,9.0,10.0,9.0,9,2.76 +59478,50.0,5.0,5.0,9.0,6.0,4.0,5.0,2,0.48 +36438,80.0,9.0,10.0,8.0,9.0,10.0,9.0,4,0.94 +28469,65.0,6.0,7.0,9.0,10.0,6.0,6.0,4,1.01 +71544,,,,,,,,0, +11124,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.45 +49168,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.25 +75374,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.26 +49961,80.0,8.0,8.0,6.0,8.0,8.0,9.0,2,0.51 +38668,100.0,10.0,10.0,10.0,10.0,9.0,10.0,15,3.46 +49062,68.0,9.0,9.0,7.0,7.0,10.0,8.0,5,1.15 +50519,,,,,,,,0, +11500,70.0,9.0,7.0,10.0,10.0,10.0,10.0,2,0.51 +15268,87.0,10.0,9.0,9.0,10.0,10.0,9.0,3,1.34 +12989,,,,,,,,0, +50032,,,,,,,,0, +66397,90.0,9.0,9.0,10.0,9.0,10.0,9.0,6,1.62 +2603,,,,,,,,0, +47672,,,,,,,,0, +60431,92.0,10.0,10.0,9.0,10.0,10.0,9.0,12,2.73 +13898,94.0,9.0,9.0,10.0,10.0,10.0,10.0,10,2.27 +68290,85.0,10.0,8.0,10.0,10.0,9.0,9.0,4,1.0 +60656,93.0,9.0,9.0,9.0,10.0,9.0,9.0,6,1.57 +1782,85.0,9.0,9.0,9.0,8.0,9.0,9.0,11,2.75 +28490,100.0,9.0,9.0,10.0,10.0,8.0,9.0,4,0.94 +47963,89.0,9.0,9.0,9.0,9.0,10.0,8.0,7,2.21 +14984,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.24 +54232,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.22 +47741,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.81 +59310,100.0,10.0,8.0,8.0,10.0,8.0,8.0,1,0.39 +59512,93.0,10.0,10.0,10.0,10.0,10.0,10.0,19,4.32 +70010,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.99 +58299,100.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.3 +69362,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,2.03 +51550,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,1.68 +72452,95.0,10.0,10.0,10.0,10.0,10.0,9.0,4,1.13 +30182,93.0,9.0,9.0,10.0,10.0,10.0,9.0,12,3.05 +75824,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.74 +66558,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.54 +47671,100.0,10.0,6.0,10.0,8.0,10.0,10.0,1,0.47 +50217,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.15 +26231,90.0,9.0,10.0,9.0,9.0,10.0,9.0,16,4.03 +58108,89.0,8.0,9.0,9.0,8.0,9.0,9.0,7,1.79 +69361,,,,,,,,0, +48767,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.53 +62682,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,2.78 +62607,90.0,10.0,10.0,10.0,10.0,10.0,9.0,12,2.93 +69829,95.0,10.0,10.0,10.0,10.0,10.0,9.0,11,2.5 +70310,,,,,,,,0, +38085,,,,,,,,0, +68916,90.0,10.0,9.0,9.0,10.0,10.0,9.0,2,0.58 +75544,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.29 +56751,91.0,10.0,10.0,9.0,10.0,10.0,9.0,7,2.02 +1095,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.27 +55583,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.79 +17264,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.35 +58551,83.0,9.0,8.0,9.0,9.0,9.0,7.0,6,2.05 +63481,75.0,8.0,9.0,9.0,9.0,9.0,8.0,4,1.9 +19352,89.0,9.0,9.0,9.0,9.0,9.0,9.0,13,3.58 +20896,,,,,,,,0, +6446,95.0,10.0,10.0,10.0,10.0,10.0,9.0,16,4.0 +43928,87.0,7.0,7.0,7.0,9.0,7.0,9.0,3,0.76 +69928,80.0,8.0,10.0,10.0,10.0,10.0,10.0,2,0.51 +66697,,,,,,,,0, +46925,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,2.45 +25912,,,,,,,,0, +11232,98.0,10.0,10.0,10.0,10.0,9.0,9.0,17,4.9 +72823,100.0,10.0,9.0,10.0,10.0,10.0,10.0,7,1.65 +49833,100.0,10.0,9.0,10.0,10.0,7.0,9.0,3,1.23 +11120,,,,,,,,0, +117,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.29 +39614,80.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.82 +16676,92.0,10.0,10.0,10.0,10.0,10.0,9.0,5,2.59 +35815,,,,,,,,0, +55857,98.0,10.0,9.0,10.0,10.0,10.0,10.0,10,2.63 +69699,,,,,,,,0, +51025,95.0,10.0,10.0,10.0,10.0,9.0,9.0,13,2.95 +44311,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +68086,95.0,9.0,10.0,10.0,9.0,10.0,10.0,4,1.03 +53195,93.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.55 +44380,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.28 +76360,,,,,,,,0, +7893,,,,,,,,0, +37707,75.0,8.0,6.0,10.0,10.0,8.0,7.0,4,1.71 +40172,93.0,10.0,9.0,10.0,10.0,10.0,9.0,31,7.27 +41127,,,,,,,,1,0.25 +12970,,,,,,,,1,0.23 +67438,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.35 +9644,,,,,,,,0, +32486,97.0,10.0,10.0,10.0,10.0,9.0,10.0,15,3.52 +17521,,,,,,,,0, +1167,86.0,10.0,8.0,10.0,8.0,10.0,8.0,10,2.68 +51683,98.0,10.0,10.0,10.0,10.0,10.0,9.0,10,2.29 +42348,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,2.18 +72694,,,,,,,,0, +7208,,,,,,,,0, +22225,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,2.16 +44151,,,,,,,,0, +65788,92.0,10.0,9.0,10.0,10.0,10.0,10.0,21,4.88 +43634,,,,,,,,0, +56948,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +37911,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.28 +26390,99.0,10.0,10.0,10.0,10.0,10.0,10.0,15,3.41 +64337,,,,,,,,0, +29381,,,,,,,,1,0.38 +11966,77.0,10.0,8.0,10.0,9.0,9.0,9.0,7,2.1 +28680,60.0,8.0,6.0,10.0,10.0,10.0,6.0,1,0.88 +43334,100.0,10.0,10.0,10.0,10.0,9.0,9.0,6,1.57 +7559,98.0,10.0,10.0,10.0,10.0,10.0,9.0,17,5.15 +40499,,,,,,,,0, +51084,,,,,,,,0, +27220,,,,,,,,0, +19917,,,,,,,,0, +25218,,,,,,,,0, +24441,,,,,,,,0, +70730,,,,,,,,2,0.7 +54882,,,,,,,,0, +38604,100.0,10.0,10.0,8.0,10.0,10.0,10.0,2,0.45 +38353,,,,,,,,0, +38656,100.0,10.0,10.0,10.0,8.0,10.0,10.0,1,0.48 +61237,,,,,,,,0, +7582,,,,,,,,0, +9555,80.0,8.0,7.0,10.0,10.0,10.0,10.0,2,0.49 +21925,,,,,,,,0, +13166,90.0,9.0,10.0,10.0,10.0,10.0,8.0,2,0.54 +11146,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.77 +6998,,,,,,,,0, +42981,,,,,,,,0, +34605,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.47 +57664,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.71 +37539,82.0,9.0,8.0,8.0,9.0,10.0,8.0,12,4.04 +9020,80.0,9.0,9.0,8.0,10.0,9.0,8.0,7,1.65 +55998,,,,,,,,0, +9604,75.0,8.0,8.0,10.0,10.0,9.0,8.0,4,2.79 +12688,,,,,,,,0, +39047,97.0,10.0,10.0,10.0,10.0,9.0,10.0,24,5.45 +37807,98.0,10.0,10.0,10.0,9.0,10.0,9.0,10,2.54 +52122,,,,,,,,0, +58809,,,,,,,,0, +46293,73.0,7.0,6.0,9.0,10.0,9.0,7.0,3,0.68 +75603,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.62 +31045,92.0,10.0,10.0,10.0,10.0,10.0,10.0,12,3.5 +75363,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.24 +33435,,,,,,,,0, +68095,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.95 +61120,87.0,10.0,8.0,10.0,9.0,8.0,9.0,9,2.45 +41636,88.0,9.0,9.0,9.0,9.0,8.0,9.0,5,1.22 +31913,85.0,10.0,9.0,10.0,10.0,10.0,9.0,4,2.07 +30938,87.0,9.0,9.0,10.0,8.0,9.0,9.0,9,2.29 +4417,90.0,10.0,10.0,9.0,10.0,9.0,9.0,4,0.99 +17547,84.0,10.0,10.0,9.0,10.0,10.0,8.0,5,1.26 +31952,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.97 +72263,,,,,,,,0, +75204,83.0,8.0,8.0,8.0,8.0,9.0,8.0,7,2.12 +38011,,,,,,,,0, +29689,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.39 +8555,95.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.94 +26230,96.0,9.0,10.0,10.0,10.0,9.0,10.0,11,3.2 +56558,,,,,,,,0, +50338,85.0,9.0,8.0,9.0,9.0,9.0,8.0,4,1.15 +71759,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.87 +9511,100.0,10.0,10.0,9.0,9.0,10.0,9.0,3,0.87 +2353,,,,,,,,0, +23307,,,,,,,,0, +76828,,,,,,,,0, +60511,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.52 +51210,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.46 +17687,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,3.06 +2524,93.0,10.0,10.0,10.0,9.0,8.0,9.0,3,0.92 +47715,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.25 +25308,87.0,9.0,7.0,10.0,9.0,10.0,8.0,6,1.61 +41362,98.0,10.0,10.0,10.0,10.0,9.0,10.0,10,2.29 +13949,96.0,10.0,10.0,10.0,10.0,10.0,9.0,5,1.9 +71828,,,,,,,,0, +424,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.57 +27027,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.31 +8730,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,1.41 +34906,94.0,9.0,9.0,9.0,9.0,9.0,9.0,18,5.29 +52895,87.0,9.0,10.0,10.0,7.0,10.0,9.0,3,0.81 +37896,,,,,,,,0, +8796,95.0,10.0,9.0,10.0,10.0,9.0,9.0,17,5.73 +59690,84.0,9.0,8.0,10.0,9.0,9.0,8.0,10,2.4 +49418,86.0,9.0,8.0,9.0,10.0,8.0,8.0,14,3.68 +54417,,,,,,,,1,0.23 +54442,80.0,8.0,8.0,9.0,10.0,9.0,8.0,6,2.34 +72661,100.0,9.0,10.0,9.0,10.0,10.0,10.0,6,1.96 +70199,,,,,,,,0, +64330,93.0,8.0,9.0,9.0,9.0,10.0,9.0,3,1.02 +18614,73.0,8.0,7.0,5.0,7.0,9.0,7.0,3,0.78 +7331,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.47 +60798,,,,,,,,0, +2850,91.0,10.0,9.0,9.0,9.0,9.0,9.0,9,2.97 +29721,100.0,8.0,8.0,10.0,8.0,8.0,10.0,1,0.28 +41708,,,,,,,,0, +21464,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.32 +35870,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.55 +66232,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,2.5 +3925,95.0,10.0,9.0,9.0,10.0,10.0,10.0,15,3.85 +67450,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.3 +12398,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,2.77 +46013,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.45 +52538,60.0,8.0,8.0,10.0,10.0,8.0,6.0,1,0.24 +45479,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.46 +60408,85.0,9.0,8.0,9.0,8.0,9.0,9.0,12,2.81 +24585,84.0,9.0,8.0,10.0,9.0,10.0,9.0,5,1.21 +10522,,,,,,,,0, +47486,,,,,,,,0, +32968,80.0,10.0,10.0,8.0,6.0,10.0,10.0,1,0.29 +76457,98.0,10.0,10.0,10.0,10.0,10.0,10.0,22,5.2 +26414,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.74 +22578,100.0,8.0,8.0,8.0,8.0,10.0,10.0,1,0.33 +67685,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.46 +32287,79.0,8.0,9.0,9.0,8.0,10.0,8.0,15,3.36 +17149,90.0,10.0,9.0,8.0,10.0,10.0,9.0,2,0.72 +53920,85.0,10.0,9.0,10.0,10.0,10.0,9.0,4,4.0 +62881,,,,,,,,0, +19722,92.0,10.0,10.0,10.0,10.0,10.0,9.0,5,2.63 +27854,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.59 +36841,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.28 +27751,80.0,7.0,7.0,8.0,7.0,8.0,8.0,3,0.78 +69770,97.0,10.0,9.0,10.0,10.0,10.0,10.0,12,4.19 +65279,96.0,10.0,9.0,9.0,10.0,10.0,10.0,10,2.36 +14710,,,,,,,,0, +23904,100.0,10.0,10.0,10.0,10.0,10.0,9.0,7,3.44 +65399,,,,,,,,0, +43212,92.0,10.0,8.0,10.0,10.0,9.0,9.0,28,6.67 +70445,98.0,10.0,9.0,10.0,10.0,10.0,10.0,17,4.29 +1239,85.0,10.0,10.0,10.0,10.0,10.0,9.0,4,1.33 +16435,87.0,9.0,9.0,9.0,9.0,10.0,9.0,6,3.0 +52502,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.74 +42880,80.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.24 +45743,93.0,9.0,9.0,9.0,9.0,10.0,9.0,6,1.75 +62289,90.0,10.0,9.0,9.0,9.0,10.0,10.0,2,0.5 +26947,87.0,10.0,8.0,10.0,10.0,9.0,9.0,3,1.2 +51563,,,,,,,,0, +56443,100.0,10.0,10.0,9.0,10.0,9.0,9.0,2,0.59 +27205,98.0,10.0,10.0,10.0,10.0,10.0,10.0,11,3.71 +55361,97.0,9.0,9.0,10.0,9.0,10.0,9.0,13,3.22 +24176,80.0,8.0,8.0,8.0,6.0,8.0,8.0,5,1.27 +7093,,,,,,,,0, +42091,,,,,,,,1,0.64 +4122,91.0,9.0,9.0,9.0,10.0,9.0,9.0,15,3.95 +65205,85.0,9.0,8.0,9.0,10.0,9.0,9.0,22,5.45 +67583,90.0,9.0,9.0,10.0,10.0,10.0,9.0,6,1.41 +25339,99.0,10.0,10.0,10.0,10.0,10.0,10.0,34,9.81 +15956,95.0,10.0,9.0,10.0,10.0,9.0,10.0,11,2.68 +71468,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.36 +58736,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,1.28 +59948,96.0,10.0,10.0,10.0,10.0,10.0,10.0,15,3.81 +73422,100.0,9.0,9.0,9.0,9.0,10.0,10.0,3,0.75 +71640,,,,,,,,0, +48248,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.7 +65730,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,2.75 +5608,,,,,,,,0, +19637,,,,,,,,1,0.22 +36501,83.0,9.0,9.0,9.0,9.0,9.0,8.0,13,3.05 +21873,,,,,,,,0, +2984,95.0,10.0,10.0,10.0,10.0,10.0,10.0,13,3.02 +12476,90.0,8.0,8.0,8.0,8.0,8.0,8.0,2,2.0 +74778,,,,,,,,0, +52280,90.0,9.0,9.0,10.0,10.0,10.0,10.0,4,3.64 +37619,,,,,,,,1,0.3 +7162,94.0,10.0,9.0,10.0,10.0,10.0,10.0,7,1.59 +18272,87.0,8.0,8.0,9.0,9.0,8.0,9.0,6,1.5 +25432,80.0,7.0,8.0,8.0,8.0,8.0,7.0,2,0.46 +74516,80.0,7.0,6.0,10.0,10.0,10.0,7.0,2,0.78 +55956,,,,,,,,0, +62733,96.0,10.0,10.0,10.0,10.0,10.0,10.0,15,3.6 +20941,100.0,10.0,8.0,10.0,10.0,10.0,9.0,2,0.52 +27328,53.0,6.0,4.0,8.0,8.0,9.0,6.0,6,1.44 +36572,90.0,10.0,9.0,9.0,9.0,10.0,9.0,7,1.59 +29413,95.0,9.0,9.0,9.0,9.0,10.0,10.0,8,2.89 +39808,83.0,9.0,9.0,10.0,10.0,10.0,9.0,7,3.09 +9406,,,,,,,,0, +48099,90.0,9.0,9.0,9.0,9.0,9.0,9.0,41,9.32 +17134,73.0,8.0,8.0,8.0,9.0,9.0,7.0,6,2.4 +23740,87.0,9.0,9.0,10.0,9.0,10.0,9.0,6,1.45 +49870,87.0,9.0,9.0,10.0,9.0,10.0,9.0,6,1.8 +58576,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.77 +1508,95.0,10.0,10.0,8.0,9.0,9.0,9.0,4,1.05 +2081,85.0,9.0,9.0,9.0,9.0,10.0,9.0,36,9.08 +31864,,,,,,,,0, +33619,,,,,,,,0, +14587,84.0,9.0,8.0,9.0,9.0,9.0,9.0,26,5.86 +29340,,,,,,,,0, +16674,86.0,9.0,8.0,9.0,9.0,10.0,9.0,25,5.81 +57767,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.22 +58333,82.0,9.0,8.0,9.0,9.0,9.0,9.0,18,4.39 +1569,,,,,,,,0, +33084,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.05 +8123,,,,,,,,0, +51501,,,,,,,,0, +3994,80.0,10.0,8.0,10.0,9.0,9.0,9.0,7,1.69 +51933,,,,,,,,0, +54284,80.0,9.0,8.0,8.0,6.0,9.0,9.0,4,1.13 +17327,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.43 +18420,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.66 +42138,60.0,8.0,8.0,9.0,9.0,9.0,6.0,4,1.6 +43150,98.0,10.0,9.0,10.0,10.0,10.0,10.0,8,2.55 +8146,96.0,9.0,9.0,9.0,10.0,9.0,10.0,6,1.38 +55568,98.0,10.0,10.0,10.0,10.0,9.0,10.0,19,4.42 +10620,91.0,9.0,10.0,10.0,10.0,10.0,9.0,21,5.53 +46400,60.0,10.0,10.0,10.0,10.0,10.0,8.0,1,1.0 +27500,77.0,9.0,7.0,9.0,9.0,9.0,8.0,15,3.52 +10228,100.0,10.0,10.0,8.0,10.0,8.0,10.0,1,0.25 +61542,93.0,10.0,10.0,10.0,10.0,10.0,9.0,22,6.23 +29224,90.0,8.0,10.0,9.0,9.0,9.0,9.0,4,2.11 +38596,,,,,,,,0, +14937,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.23 +9283,70.0,8.0,6.0,7.0,9.0,10.0,6.0,2,0.78 +31024,,,,,,,,0, +13661,,,,,,,,0, +39168,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,2.47 +49156,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.15 +27487,,,,,,,,0, +16544,,,,,,,,0, +21422,,,,,,,,0, +21003,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.11 +34404,,,,,,,,0, +4079,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.2 +69759,,,,,,,,0, +12404,76.0,9.0,9.0,9.0,8.0,8.0,8.0,18,4.19 +16542,97.0,10.0,10.0,10.0,10.0,10.0,10.0,7,1.65 +3128,,,,,,,,0, +69679,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.23 +46663,,,,,,,,1,0.42 +39438,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.76 +65816,87.0,8.0,10.0,7.0,9.0,10.0,9.0,14,3.56 +34965,96.0,10.0,9.0,9.0,10.0,10.0,9.0,16,4.62 +34154,100.0,10.0,10.0,10.0,9.0,9.0,10.0,3,0.75 +10780,80.0,9.0,9.0,9.0,10.0,9.0,8.0,9,2.43 +29542,,,,,,,,0, +53640,80.0,8.0,9.0,8.0,8.0,10.0,7.0,6,1.53 +16199,87.0,10.0,9.0,10.0,10.0,9.0,9.0,12,3.05 +8412,89.0,9.0,9.0,9.0,10.0,9.0,9.0,11,2.82 +45784,80.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.49 +8618,,,,,,,,0, +67290,,,,,,,,0, +58646,,,,,,,,0, +56448,60.0,6.0,7.0,7.0,7.0,8.0,8.0,2,0.94 +5856,90.0,9.0,10.0,10.0,10.0,10.0,9.0,4,1.25 +55968,,,,,,,,0, +50258,100.0,10.0,10.0,10.0,10.0,9.0,10.0,9,2.21 +46529,,,,,,,,0, +12282,95.0,10.0,10.0,10.0,10.0,9.0,10.0,8,2.35 +75591,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.48 +17473,,,,,,,,0, +63504,80.0,8.0,8.0,7.0,8.0,8.0,8.0,8,1.97 +28240,100.0,10.0,10.0,10.0,10.0,9.0,10.0,9,2.33 +10352,97.0,10.0,9.0,10.0,10.0,9.0,9.0,14,3.93 +73602,100.0,10.0,10.0,10.0,10.0,9.0,9.0,6,1.45 +45642,,,,,,,,0, +52153,,,,,,,,0, +66401,,,,,,,,0, +29948,96.0,10.0,10.0,10.0,10.0,10.0,10.0,17,4.95 +63540,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.98 +42603,96.0,10.0,10.0,10.0,10.0,9.0,9.0,9,3.18 +76177,90.0,10.0,9.0,10.0,10.0,9.0,10.0,4,1.15 +12238,85.0,9.0,10.0,9.0,10.0,9.0,8.0,4,1.17 +66714,94.0,10.0,8.0,10.0,10.0,10.0,10.0,14,4.12 +42093,60.0,10.0,8.0,10.0,10.0,10.0,6.0,1,0.53 +74268,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.3 +45243,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.29 +34993,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.45 +36732,,,,,,,,0, +47399,89.0,9.0,9.0,9.0,9.0,8.0,9.0,10,2.8 +63675,,,,,,,,0, +46208,,,,,,,,0, +45080,,,,,,,,0, +51581,,,,,,,,0, +5915,70.0,6.0,6.0,7.0,9.0,10.0,7.0,4,0.96 +66658,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.94 +21348,,,,,,,,0, +2634,87.0,9.0,8.0,10.0,10.0,10.0,9.0,6,1.58 +4252,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,1.85 +60743,,,,,,,,0, +36704,,,,,,,,0, +41739,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.48 +67598,,,,,,,,0, +3168,100.0,9.0,10.0,10.0,10.0,10.0,10.0,3,0.88 +58622,,,,,,,,0, +43407,20.0,2.0,2.0,2.0,2.0,2.0,2.0,1,0.23 +59092,91.0,10.0,10.0,9.0,9.0,9.0,9.0,14,4.67 +28640,,,,,,,,0, +57178,100.0,10.0,10.0,10.0,10.0,10.0,8.0,8,1.85 +24095,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.94 +69184,,,,,,,,0, +13516,,,,,,,,0, +52132,,,,,,,,0, +23165,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.09 +63959,,,,,,,,1,0.25 +1605,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.46 +15070,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.28 +2366,88.0,9.0,9.0,10.0,10.0,9.0,10.0,21,4.96 +39469,,,,,,,,0, +18376,,,,,,,,1,0.26 +16935,,,,,,,,0, +59714,96.0,10.0,10.0,10.0,10.0,10.0,9.0,5,1.33 +15659,91.0,9.0,9.0,10.0,10.0,10.0,9.0,9,2.97 +63337,94.0,10.0,10.0,9.0,10.0,10.0,9.0,10,2.7 +49859,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,1.68 +68635,,,,,,,,0, +53194,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.88 +70296,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,3.56 +70686,100.0,9.0,9.0,10.0,10.0,9.0,10.0,2,0.75 +73856,,,,,,,,0, +75402,,,,,,,,0, +20652,,,,,,,,0, +41537,100.0,10.0,9.0,10.0,10.0,10.0,8.0,3,0.82 +72364,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +65706,80.0,9.0,10.0,10.0,10.0,8.0,8.0,2,0.51 +73469,87.0,10.0,9.0,10.0,10.0,9.0,9.0,14,3.68 +74573,98.0,10.0,10.0,10.0,10.0,10.0,10.0,16,4.07 +6447,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.27 +43533,100.0,10.0,10.0,8.0,10.0,10.0,10.0,2,0.51 +7999,80.0,10.0,10.0,6.0,6.0,10.0,10.0,2,0.56 +37216,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.58 +70938,,,,,,,,0, +5310,100.0,10.0,9.0,10.0,10.0,9.0,10.0,6,1.51 +25837,,,,,,,,0, +56257,97.0,10.0,10.0,10.0,10.0,10.0,10.0,12,3.64 +71181,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.76 +64339,94.0,10.0,9.0,9.0,9.0,9.0,10.0,35,9.81 +57651,60.0,6.0,7.0,8.0,6.0,9.0,7.0,4,1.35 +7070,90.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.76 +67136,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.73 +74760,,,,,,,,0, +46870,,,,,,,,0, +54195,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.2 +38974,93.0,10.0,9.0,10.0,10.0,10.0,9.0,3,1.25 +47498,99.0,10.0,10.0,10.0,10.0,9.0,10.0,21,8.29 +34668,97.0,10.0,10.0,9.0,10.0,10.0,9.0,6,2.5 +18551,100.0,10.0,10.0,10.0,10.0,8.0,10.0,5,1.24 +1327,96.0,9.0,10.0,9.0,10.0,10.0,9.0,11,2.92 +68062,87.0,10.0,8.0,10.0,10.0,10.0,9.0,9,2.31 +55606,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.81 +71952,89.0,9.0,9.0,9.0,9.0,9.0,8.0,7,2.08 +22356,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,2.43 +67916,60.0,7.0,7.0,8.0,9.0,8.0,5.0,2,0.48 +46087,,,,,,,,0, +30335,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.24 +73448,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,2.26 +44247,,,,,,,,0, +3660,90.0,10.0,8.0,10.0,10.0,9.0,9.0,5,1.28 +23699,,,,,,,,0, +48521,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.27 +2559,95.0,9.0,10.0,10.0,10.0,10.0,10.0,11,2.95 +63986,95.0,10.0,10.0,10.0,10.0,10.0,10.0,8,2.64 +32192,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,2.35 +2683,100.0,9.0,10.0,10.0,10.0,10.0,10.0,3,1.8 +58300,87.0,9.0,9.0,9.0,9.0,10.0,9.0,12,2.83 +10360,90.0,9.0,10.0,10.0,8.0,9.0,10.0,2,0.48 +26861,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.11 +63167,98.0,10.0,9.0,10.0,10.0,10.0,10.0,11,2.54 +52728,86.0,9.0,9.0,9.0,9.0,9.0,8.0,24,5.85 +50327,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,2.9 +13050,87.0,9.0,10.0,10.0,10.0,10.0,8.0,69,16.56 +29525,80.0,9.0,6.0,9.0,10.0,10.0,7.0,3,0.76 +72325,90.0,10.0,7.0,10.0,10.0,10.0,10.0,2,0.48 +18879,86.0,9.0,9.0,10.0,10.0,10.0,9.0,8,2.33 +2296,80.0,6.0,6.0,10.0,10.0,10.0,8.0,1,0.23 +28094,90.0,9.0,10.0,10.0,10.0,10.0,10.0,2,1.09 +11619,92.0,10.0,9.0,10.0,10.0,10.0,10.0,13,3.2 +56765,97.0,10.0,10.0,10.0,10.0,10.0,10.0,13,3.1 +33351,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.91 +13796,,,,,,,,2,0.47 +39922,,,,,,,,1, +30041,100.0,10.0,9.0,8.0,10.0,10.0,10.0,2,0.48 +18943,90.0,10.0,9.0,10.0,10.0,9.0,9.0,2,0.51 +36521,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.29 +58658,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.48 +10697,85.0,9.0,9.0,10.0,10.0,10.0,9.0,13,3.2 +47708,98.0,10.0,10.0,10.0,10.0,9.0,10.0,13,4.43 +69895,,,,,,,,0, +32306,80.0,8.0,10.0,10.0,10.0,10.0,8.0,2,0.79 +63011,93.0,9.0,10.0,10.0,10.0,9.0,9.0,3,0.74 +25606,,,,,,,,0, +44460,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.94 +21087,,,,,,,,0, +37938,100.0,10.0,9.0,10.0,10.0,10.0,9.0,10,2.65 +33398,,,,,,,,0, +30658,100.0,10.0,10.0,9.0,9.0,10.0,9.0,3,1.58 +11366,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.25 +40431,80.0,10.0,8.0,8.0,8.0,8.0,8.0,1,0.37 +16313,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.97 +19117,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.48 +38028,94.0,10.0,9.0,10.0,10.0,9.0,9.0,13,3.68 +41108,100.0,10.0,10.0,10.0,10.0,10.0,10.0,18,4.58 +59995,96.0,10.0,9.0,10.0,10.0,10.0,9.0,10,2.88 +9817,94.0,9.0,10.0,9.0,10.0,10.0,10.0,16,4.9 +63992,91.0,10.0,9.0,10.0,10.0,9.0,9.0,13,4.02 +47345,,,,,,,,0, +7747,80.0,10.0,10.0,10.0,10.0,8.0,9.0,3,1.91 +73388,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.96 +1241,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,1.85 +12567,,,,,,,,0, +15006,92.0,9.0,9.0,8.0,9.0,10.0,9.0,5,1.39 +5050,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,2.42 +63651,100.0,10.0,9.0,10.0,10.0,9.0,9.0,3,0.92 +49047,,,,,,,,0, +12320,,,,,,,,1,0.23 +15389,,,,,,,,0, +60435,,,,,,,,1, +63311,91.0,10.0,8.0,10.0,10.0,10.0,10.0,13,3.15 +69664,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.29 +40135,,,,,,,,1, +69131,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.57 +19506,,,,,,,,0, +52387,85.0,10.0,10.0,10.0,9.0,9.0,9.0,4,1.69 +35265,97.0,9.0,9.0,10.0,10.0,10.0,9.0,7,2.69 +46181,80.0,10.0,6.0,8.0,8.0,10.0,8.0,1,0.88 +50,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,3.44 +56670,90.0,8.0,8.0,9.0,8.0,9.0,8.0,3,1.96 +42038,87.0,10.0,9.0,10.0,10.0,10.0,10.0,3,1.07 +62312,,,,,,,,0, +71783,,,,,,,,0, +24520,,,,,,,,0, +29722,,,,,,,,0, +18791,69.0,8.0,7.0,8.0,7.0,9.0,8.0,7,1.67 +40359,,,,,,,,0, +29926,97.0,10.0,10.0,10.0,10.0,10.0,10.0,15,3.88 +1306,,,,,,,,0, +66220,93.0,10.0,10.0,10.0,9.0,10.0,9.0,6,1.53 +33436,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.95 +8182,96.0,10.0,9.0,9.0,10.0,9.0,10.0,24,6.21 +1883,,,,,,,,0, +51470,93.0,9.0,9.0,9.0,9.0,9.0,9.0,6,1.51 +25463,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.3 +65549,100.0,10.0,10.0,10.0,10.0,9.0,9.0,2,0.49 +47556,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.31 +29729,80.0,10.0,7.0,10.0,10.0,10.0,9.0,3,0.72 +64958,90.0,10.0,9.0,10.0,10.0,10.0,10.0,16,3.93 +47408,78.0,9.0,8.0,10.0,10.0,9.0,8.0,13,3.45 +29620,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.11 +74512,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,0.98 +21957,,,,,,,,0, +47075,,,,,,,,0, +66592,,,,,,,,0, +5466,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.26 +27552,,,,,,,,0, +54921,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.28 +67975,85.0,8.0,9.0,10.0,10.0,10.0,9.0,4,0.97 +70104,,,,,,,,0, +5180,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.28 +35059,60.0,10.0,10.0,10.0,10.0,4.0,6.0,1,0.24 +4524,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.28 +18056,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.28 +17591,,,,,,,,0, +18920,97.0,10.0,9.0,10.0,10.0,9.0,9.0,7,2.04 +68781,,,,,,,,0, +323,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.28 +63653,,,,,,,,0, +9201,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,1.78 +61842,60.0,6.0,6.0,8.0,8.0,8.0,8.0,1,0.3 +71383,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.52 +38732,80.0,10.0,8.0,10.0,8.0,8.0,8.0,1,0.26 +5282,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.26 +45537,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.59 +9896,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.82 +74027,98.0,10.0,10.0,10.0,10.0,9.0,10.0,13,3.64 +68008,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.76 +59202,67.0,7.0,7.0,8.0,7.0,10.0,6.0,5,1.79 +52514,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.27 +40137,92.0,9.0,10.0,10.0,9.0,9.0,9.0,10,2.8 +76144,94.0,10.0,9.0,10.0,10.0,10.0,10.0,7,1.79 +51516,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.04 +55277,85.0,10.0,10.0,10.0,9.0,10.0,10.0,4,1.46 +61322,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.51 +10657,,,,,,,,0, +65671,,,,,,,,0, +6461,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,2.29 +11475,100.0,8.0,10.0,10.0,10.0,10.0,8.0,1,0.26 +47455,,,,,,,,0, +61195,,,,,,,,0, +40926,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +68436,,,,,,,,0, +39889,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.38 +59535,,,,,,,,0, +25651,,,,,,,,0, +69195,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.64 +39346,93.0,10.0,9.0,10.0,10.0,10.0,10.0,17,3.92 +31448,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.48 +29303,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.28 +69202,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.28 +58753,,,,,,,,0, +63896,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.28 +72198,97.0,10.0,10.0,9.0,10.0,10.0,9.0,6,1.5 +44973,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.28 +76463,,,,,,,,0, +33736,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.28 +37783,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.29 +16211,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,3.53 +68667,90.0,10.0,9.0,10.0,10.0,10.0,9.0,2,1.05 +51419,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,2.44 +5456,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.28 +10294,,,,,,,,0, +75304,,,,,,,,0, +12853,98.0,10.0,9.0,10.0,10.0,10.0,10.0,16,5.33 +68262,98.0,10.0,10.0,10.0,10.0,10.0,9.0,8,2.38 +70475,90.0,9.0,9.0,10.0,8.0,8.0,9.0,2,0.7 +30803,,,,,,,,0, +22519,74.0,9.0,8.0,9.0,9.0,9.0,7.0,7,1.75 +1264,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.24 +7686,74.0,9.0,8.0,10.0,9.0,9.0,8.0,10,2.78 +53823,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.62 +31503,,,,,,,,0, +35961,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.54 +21230,,,,,,,,0, +11295,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.49 +31334,84.0,9.0,8.0,8.0,9.0,10.0,10.0,5,1.81 +6399,85.0,10.0,9.0,10.0,10.0,9.0,8.0,13,3.82 +17065,95.0,10.0,9.0,10.0,10.0,10.0,10.0,4,1.2 +32351,90.0,10.0,9.0,9.0,9.0,10.0,9.0,8,2.42 +3031,,,,,,,,0, +73757,90.0,10.0,9.0,10.0,10.0,9.0,9.0,5,1.29 +68459,93.0,9.0,9.0,9.0,10.0,8.0,9.0,11,3.17 +12525,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,3.0 +40967,100.0,10.0,10.0,8.0,10.0,10.0,8.0,5,3.41 +24588,80.0,10.0,9.0,10.0,10.0,8.0,9.0,2,0.59 +8603,95.0,10.0,9.0,10.0,10.0,9.0,10.0,34,8.36 +3142,96.0,10.0,10.0,9.0,10.0,10.0,10.0,9,3.0 +28425,80.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.47 +39659,,,,,,,,0, +36876,,,,,,,,0, +65590,,,,,,,,0, +14538,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.03 +31109,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +1509,100.0,9.0,9.0,10.0,10.0,10.0,10.0,3,0.7 +25962,,,,,,,,0, +60847,100.0,10.0,10.0,10.0,10.0,9.0,10.0,6,2.69 +21704,95.0,10.0,9.0,10.0,10.0,10.0,10.0,13,3.42 +22726,89.0,9.0,9.0,9.0,9.0,9.0,9.0,26,6.39 +13418,96.0,10.0,9.0,10.0,10.0,10.0,10.0,17,5.37 +33754,100.0,10.0,10.0,10.0,10.0,10.0,9.0,6,1.98 +18755,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.96 +59529,,,,,,,,0, +30828,99.0,10.0,10.0,10.0,10.0,9.0,10.0,14,3.53 +72671,100.0,10.0,8.0,8.0,9.0,10.0,10.0,3,0.71 +66430,80.0,9.0,8.0,8.0,9.0,9.0,7.0,6,1.82 +29146,83.0,8.0,9.0,9.0,9.0,9.0,9.0,8,2.4 +608,,,,,,,,0, +27198,80.0,10.0,6.0,8.0,10.0,9.0,7.0,3,0.78 +24708,95.0,10.0,10.0,10.0,10.0,10.0,9.0,11,2.92 +64955,80.0,10.0,9.0,10.0,9.0,10.0,8.0,8,3.16 +25989,100.0,8.0,8.0,8.0,8.0,8.0,8.0,1,0.31 +65217,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,3.58 +68964,74.0,7.0,6.0,10.0,10.0,9.0,9.0,7,1.64 +34321,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.64 +8082,97.0,9.0,10.0,10.0,10.0,9.0,9.0,7,1.89 +73439,80.0,9.0,8.0,9.0,9.0,7.0,9.0,8,1.97 +34633,60.0,10.0,2.0,10.0,10.0,10.0,10.0,1,0.25 +5011,80.0,8.0,8.0,9.0,8.0,9.0,8.0,5,1.26 +29113,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.52 +44609,,,,,,,,0, +34140,,,,,,,,1,0.23 +7016,87.0,9.0,9.0,9.0,9.0,9.0,9.0,3,0.94 +73307,85.0,9.0,8.0,10.0,10.0,10.0,9.0,11,2.58 +9862,90.0,9.0,9.0,10.0,10.0,10.0,10.0,4,1.32 +55161,95.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.98 +70966,50.0,5.0,6.0,6.0,5.0,5.0,5.0,2,0.79 +28847,,,,,,,,0, +41189,,,,,,,,0, +63714,80.0,9.0,9.0,10.0,9.0,9.0,8.0,10,2.75 +9746,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.23 +55688,,,,,,,,0, +33854,93.0,10.0,10.0,10.0,10.0,10.0,9.0,9,2.18 +37002,92.0,10.0,9.0,10.0,10.0,9.0,10.0,23,8.12 +3357,90.0,9.0,8.0,10.0,10.0,10.0,10.0,2,0.51 +13752,,,,,,,,0, +54761,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.27 +60806,95.0,10.0,10.0,10.0,10.0,9.0,10.0,4,1.12 +34120,,,,,,,,0, +73294,83.0,9.0,9.0,10.0,10.0,10.0,10.0,6,3.05 +65156,,,,,,,,0, +69657,91.0,10.0,10.0,10.0,10.0,10.0,9.0,13,3.31 +40699,93.0,9.0,9.0,10.0,10.0,9.0,9.0,11,3.59 +49807,,,,,,,,0, +44750,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.83 +19103,,,,,,,,0, +62566,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.3 +41867,,,,,,,,2,0.47 +29001,86.0,9.0,9.0,9.0,10.0,10.0,9.0,22,5.5 +58614,92.0,10.0,9.0,9.0,8.0,10.0,9.0,10,3.33 +8368,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.0 +52433,,,,,,,,0, +25146,100.0,10.0,9.0,10.0,10.0,10.0,10.0,4,0.98 +17179,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.55 +38324,,,,,,,,0, +77056,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.52 +63477,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.25 +44632,97.0,10.0,10.0,10.0,10.0,9.0,10.0,6,1.45 +72307,80.0,10.0,9.0,10.0,10.0,10.0,9.0,5,1.29 +52966,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,1.84 +62362,,,,,,,,0, +68654,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.65 +23198,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,2.2 +20822,,,,,,,,0, +38518,100.0,9.0,10.0,10.0,10.0,10.0,9.0,2,0.8 +46276,,,,,,,,0, +8828,,,,,,,,0, +68668,,,,,,,,1,0.91 +74984,60.0,6.0,6.0,7.0,10.0,10.0,6.0,2,0.68 +39463,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,3.71 +36600,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.7 +47776,,,,,,,,0, +60438,,,,,,,,0, +75262,80.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.26 +39852,,,,,,,,0, +52151,,,,,,,,0, +71533,,,,,,,,0, +43471,100.0,9.0,10.0,9.0,10.0,9.0,9.0,6,1.51 +50974,94.0,10.0,9.0,10.0,10.0,9.0,10.0,7,2.16 +56907,,,,,,,,0, +57201,90.0,10.0,10.0,9.0,10.0,10.0,8.0,2,0.87 +54857,96.0,10.0,9.0,10.0,10.0,10.0,10.0,5,1.46 +36826,,,,,,,,0, +4485,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.6 +10112,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,2.22 +9982,,,,,,,,0, +3395,98.0,10.0,10.0,10.0,10.0,10.0,10.0,11,3.75 +15719,94.0,10.0,10.0,9.0,9.0,10.0,9.0,8,2.09 +14207,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.53 +73466,80.0,10.0,8.0,8.0,10.0,8.0,8.0,1,0.3 +37655,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,1.27 +59934,90.0,9.0,10.0,10.0,10.0,8.0,10.0,2,0.51 +66899,,,,,,,,1,0.64 +31205,100.0,6.0,10.0,8.0,10.0,10.0,10.0,1,0.39 +47019,,,,,,,,0, +23465,98.0,9.0,10.0,10.0,10.0,10.0,10.0,8,2.4 +76565,97.0,9.0,10.0,10.0,10.0,10.0,10.0,6,3.16 +28991,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +60401,99.0,10.0,10.0,9.0,10.0,10.0,9.0,21,5.38 +61340,94.0,10.0,9.0,9.0,10.0,10.0,9.0,13,3.31 +56523,80.0,2.0,10.0,10.0,8.0,10.0,4.0,1,1.0 +35203,,,,,,,,0, +68628,80.0,10.0,10.0,10.0,10.0,9.0,8.0,4,1.15 +42525,,,,,,,,0, +76574,,,,,,,,0, +25015,,,,,,,,0, +33670,87.0,9.0,9.0,9.0,9.0,9.0,8.0,3,1.48 +58020,,,,,,,,0, +23765,,,,,,,,0, +46234,,,,,,,,0, +63819,86.0,10.0,8.0,10.0,10.0,9.0,9.0,25,6.25 +33406,60.0,6.0,8.0,10.0,10.0,10.0,6.0,1,0.7 +37232,,,,,,,,0, +34069,,,,,,,,0, +35595,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.38 +46900,70.0,9.0,10.0,10.0,10.0,10.0,9.0,2,1.15 +29619,90.0,10.0,10.0,10.0,10.0,9.0,9.0,2,0.56 +72651,100.0,10.0,10.0,9.0,10.0,10.0,9.0,3,0.87 +14564,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.0 +71142,60.0,6.0,8.0,8.0,8.0,10.0,2.0,1,1.0 +75784,60.0,4.0,8.0,4.0,2.0,8.0,4.0,1,0.79 +19158,60.0,6.0,7.0,6.0,6.0,7.0,7.0,5,4.69 +24243,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +59222,,,,,,,,0, +40159,84.0,9.0,8.0,9.0,9.0,10.0,9.0,11,2.92 +20921,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.35 +41762,88.0,9.0,9.0,9.0,9.0,9.0,9.0,13,3.07 +17511,90.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.57 +46132,80.0,9.0,8.0,10.0,9.0,9.0,9.0,6,1.64 +37696,91.0,10.0,9.0,10.0,10.0,9.0,10.0,30,7.56 +37881,95.0,10.0,9.0,9.0,10.0,9.0,9.0,8,2.26 +64718,91.0,9.0,9.0,9.0,10.0,10.0,9.0,13,3.64 +13196,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,1.27 +2002,73.0,8.0,9.0,9.0,10.0,9.0,7.0,3,0.76 +27719,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.28 +51666,93.0,10.0,10.0,10.0,9.0,10.0,10.0,6,1.61 +57785,90.0,10.0,10.0,10.0,10.0,10.0,9.0,4,1.43 +67684,86.0,9.0,9.0,10.0,10.0,9.0,9.0,41,9.69 +57162,,,,,,,,1,0.4 +3736,90.0,10.0,8.0,10.0,10.0,10.0,9.0,2,0.58 +50948,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,2.16 +35015,,,,,,,,1, +42200,84.0,9.0,8.0,9.0,9.0,8.0,8.0,10,2.7 +39197,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.75 +58264,,,,,,,,0, +69695,,,,,,,,0, +35174,,,,,,,,0, +43201,88.0,9.0,9.0,10.0,9.0,9.0,9.0,15,5.7 +72682,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.58 +17463,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.74 +70349,91.0,10.0,8.0,10.0,10.0,9.0,9.0,18,4.32 +73845,,,,,,,,1,0.91 +29004,100.0,10.0,8.0,10.0,10.0,8.0,10.0,1,0.26 +16553,,,,,,,,0, +45454,50.0,6.0,9.0,10.0,9.0,10.0,5.0,2,0.54 +14622,,,,,,,,0, +2287,,,,,,,,0, +8883,20.0,2.0,2.0,4.0,8.0,2.0,2.0,4,0.93 +40677,90.0,9.0,6.0,9.0,9.0,9.0,8.0,2,0.72 +20335,,,,,,,,0, +65647,100.0,10.0,10.0,9.0,10.0,10.0,10.0,2,1.46 +57716,,,,,,,,0, +12388,93.0,10.0,9.0,9.0,9.0,9.0,9.0,11,2.97 +22698,,,,,,,,0, +23644,,,,,,,,0, +60997,80.0,8.0,6.0,8.0,10.0,10.0,7.0,3,0.83 +16020,80.0,8.0,10.0,10.0,10.0,10.0,8.0,1,0.29 +19713,,,,,,,,0, +48535,80.0,8.0,6.0,10.0,10.0,10.0,8.0,1,0.91 +19419,95.0,10.0,10.0,10.0,10.0,9.0,10.0,4,1.14 +51916,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +64,95.0,10.0,10.0,10.0,10.0,10.0,10.0,13,9.51 +2283,89.0,9.0,9.0,9.0,9.0,8.0,8.0,9,2.62 +63476,91.0,10.0,10.0,10.0,10.0,10.0,10.0,9,2.52 +33152,,,,,,,,0, +51708,,,,,,,,0, +17241,88.0,9.0,9.0,8.0,9.0,9.0,9.0,17,4.32 +35114,97.0,10.0,10.0,9.0,10.0,10.0,10.0,31,8.02 +18828,,,,,,,,0, +54574,100.0,10.0,8.0,10.0,10.0,10.0,10.0,2,2.0 +9865,,,,,,,,0, +42562,,,,,,,,0, +19283,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,3.07 +61795,80.0,8.0,9.0,10.0,9.0,9.0,8.0,5,1.25 +1092,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.44 +18582,95.0,10.0,9.0,10.0,10.0,10.0,10.0,8,2.76 +44847,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,3.47 +11370,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.42 +17006,91.0,9.0,9.0,10.0,10.0,10.0,9.0,7,2.36 +18728,,,,,,,,0, +32476,85.0,8.0,8.0,9.0,10.0,10.0,9.0,8,2.58 +67064,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.12 +39417,71.0,8.0,7.0,9.0,7.0,9.0,8.0,9,2.21 +8079,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.5 +20438,,,,,,,,0, +5742,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.25 +61361,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.26 +116,,,,,,,,0, +60148,,,,,,,,0, +20196,,,,,,,,0, +16254,,,,,,,,0, +45679,,,,,,,,0, +70152,,,,,,,,0, +44362,87.0,10.0,9.0,10.0,9.0,10.0,10.0,3,0.85 +2205,93.0,9.0,9.0,9.0,10.0,10.0,9.0,6,1.55 +47198,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.0 +71486,90.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.61 +10357,98.0,10.0,10.0,9.0,10.0,9.0,10.0,8,2.47 +31375,92.0,10.0,10.0,10.0,10.0,9.0,10.0,7,1.74 +1543,98.0,10.0,10.0,10.0,10.0,10.0,9.0,8,2.47 +66133,93.0,10.0,10.0,10.0,10.0,10.0,9.0,3,1.27 +35183,80.0,7.0,7.0,8.0,9.0,9.0,8.0,15,4.89 +60926,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.4 +43263,,,,,,,,0, +15548,,,,,,,,0, +22841,90.0,10.0,9.0,10.0,10.0,10.0,10.0,3,1.08 +34347,83.0,9.0,7.0,10.0,10.0,10.0,8.0,7,1.78 +36645,,,,,,,,0, +48540,98.0,10.0,10.0,7.0,10.0,10.0,10.0,8,2.09 +21845,,,,,,,,0, +35000,90.0,10.0,10.0,9.0,10.0,10.0,9.0,10,2.7 +75324,,,,,,,,0, +12340,100.0,6.0,6.0,10.0,6.0,8.0,6.0,1,0.33 +74633,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.43 +74704,96.0,10.0,9.0,10.0,10.0,9.0,9.0,5,1.33 +66202,70.0,9.0,7.0,10.0,10.0,7.0,9.0,2,0.59 +24061,100.0,10.0,10.0,9.0,10.0,9.0,10.0,3,0.77 +46893,100.0,10.0,10.0,7.0,8.0,10.0,8.0,2,0.59 +27773,100.0,10.0,9.0,10.0,9.0,10.0,10.0,2,0.5 +66650,97.0,10.0,10.0,10.0,10.0,10.0,10.0,20,5.22 +63179,93.0,10.0,10.0,10.0,10.0,10.0,9.0,46,10.95 +66832,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,1.89 +9561,87.0,9.0,9.0,10.0,10.0,9.0,9.0,11,3.4 +32370,70.0,8.0,9.0,6.0,8.0,10.0,8.0,4,1.12 +39583,97.0,10.0,10.0,10.0,10.0,9.0,9.0,12,4.24 +71529,97.0,10.0,9.0,10.0,10.0,10.0,9.0,6,2.9 +35036,,,,,,,,0, +67403,,,,,,,,0, +70515,,,,,,,,0, +56274,,,,,,,,0, +57807,,,,,,,,0, +74523,,,,,,,,0, +32001,,,,,,,,0, +19712,,,,,,,,0, +42727,89.0,10.0,9.0,9.0,10.0,9.0,9.0,9,2.62 +24900,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.71 +45563,90.0,10.0,9.0,9.0,9.0,10.0,9.0,2,0.54 +17753,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.3 +63466,70.0,8.0,6.0,10.0,9.0,8.0,7.0,2,0.73 +12327,87.0,9.0,8.0,9.0,9.0,9.0,10.0,14,3.56 +14128,63.0,7.0,5.0,9.0,9.0,7.0,6.0,8,2.7 +69366,,,,,,,,0, +52854,60.0,6.0,9.0,5.0,7.0,5.0,6.0,2,2.0 +8126,,,,,,,,1, +7021,70.0,10.0,9.0,9.0,10.0,7.0,7.0,2,0.79 +41566,97.0,10.0,10.0,10.0,10.0,9.0,10.0,6,1.62 +40466,,,,,,,,0, +52980,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.1 +46962,,,,,,,,0, +51834,,,,,,,,0, +45723,,,,,,,,0, +44637,,,,,,,,0, +49761,100.0,9.0,10.0,10.0,10.0,10.0,7.0,2,1.09 +11904,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +73742,100.0,10.0,10.0,10.0,10.0,10.0,10.0,16,4.71 +41838,95.0,10.0,10.0,10.0,10.0,8.0,9.0,4,1.97 +10134,,,,,,,,0, +68951,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +63674,,,,,,,,0, +34681,91.0,9.0,9.0,10.0,9.0,10.0,9.0,17,3.98 +19253,82.0,9.0,6.0,10.0,10.0,10.0,8.0,12,2.88 +66767,,,,,,,,0, +68432,,,,,,,,0, +24663,,,,,,,,0, +72572,,,,,,,,0, +7022,100.0,10.0,10.0,9.0,9.0,10.0,9.0,3,1.17 +55831,87.0,10.0,9.0,10.0,10.0,9.0,9.0,27,6.53 +37753,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.45 +39303,,,,,,,,1,0.39 +48369,94.0,10.0,10.0,10.0,10.0,10.0,9.0,35,8.4 +39623,95.0,10.0,9.0,10.0,10.0,9.0,9.0,30,7.2 +49277,84.0,10.0,8.0,10.0,10.0,9.0,9.0,15,4.33 +50017,,,,,,,,2,1.02 +61987,,,,,,,,0, +12403,98.0,10.0,9.0,10.0,10.0,10.0,9.0,16,4.85 +28112,,,,,,,,0, +2963,100.0,10.0,10.0,10.0,10.0,8.0,9.0,3,0.76 +31899,90.0,10.0,9.0,10.0,10.0,9.0,9.0,24,5.9 +62254,,,,,,,,0, +38521,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.02 +18794,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,3.28 +54722,96.0,10.0,10.0,10.0,10.0,10.0,10.0,27,7.23 +63868,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,3.25 +16460,93.0,9.0,9.0,10.0,10.0,10.0,9.0,8,2.33 +42707,98.0,10.0,10.0,10.0,10.0,9.0,10.0,9,2.27 +1171,,,,,,,,0, +29052,88.0,9.0,9.0,10.0,10.0,9.0,9.0,19,4.6 +3509,95.0,10.0,10.0,10.0,10.0,10.0,9.0,4,0.99 +55052,90.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.63 +70722,97.0,10.0,10.0,10.0,10.0,10.0,10.0,20,5.31 +35845,90.0,9.0,9.0,10.0,10.0,9.0,9.0,2,0.86 +30672,95.0,10.0,9.0,10.0,10.0,9.0,10.0,13,5.49 +28699,86.0,10.0,9.0,9.0,10.0,9.0,9.0,13,5.13 +48450,85.0,9.0,9.0,10.0,10.0,10.0,9.0,16,4.14 +52637,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.49 +63461,96.0,10.0,9.0,10.0,10.0,9.0,9.0,18,4.32 +9205,,,,,,,,0, +49900,75.0,8.0,8.0,9.0,10.0,8.0,7.0,12,3.19 +13641,,,,,,,,0, +75844,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.76 +5249,96.0,10.0,9.0,10.0,10.0,10.0,9.0,10,3.19 +5405,,,,,,,,0, +17551,96.0,9.0,10.0,9.0,10.0,10.0,9.0,9,2.31 +17903,80.0,10.0,7.0,7.0,10.0,9.0,9.0,2,1.28 +41627,84.0,10.0,9.0,10.0,10.0,9.0,9.0,5,1.27 +47645,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.63 +21859,100.0,10.0,9.0,10.0,10.0,10.0,9.0,3,0.87 +6524,100.0,10.0,10.0,10.0,10.0,9.0,10.0,10,2.56 +22216,,,,,,,,0, +21434,,,,,,,,0, +69364,,,,,,,,0, +44105,,,,,,,,0, +7944,93.0,10.0,10.0,9.0,9.0,10.0,8.0,3,1.8 +59785,,,,,,,,1,0.25 +33696,,,,,,,,0, +36432,,,,,,,,0, +13578,97.0,10.0,9.0,10.0,10.0,9.0,9.0,7,2.36 +71485,95.0,10.0,9.0,10.0,10.0,10.0,10.0,13,3.31 +1754,,,,,,,,0, +52172,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.52 +7732,,,,,,,,0, +61629,,,,,,,,0, +40799,,,,,,,,0, +39511,,,,,,,,0, +63238,40.0,7.0,3.0,9.0,6.0,10.0,8.0,2,0.87 +31608,100.0,10.0,8.0,10.0,10.0,8.0,8.0,1,1.0 +20953,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.42 +14562,,,,,,,,1,0.65 +64413,93.0,10.0,10.0,10.0,10.0,9.0,9.0,20,5.22 +5926,80.0,10.0,8.0,10.0,10.0,10.0,8.0,2,0.53 +27269,,,,,,,,0, +54692,,,,,,,,0, +36598,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,2.03 +18379,83.0,9.0,10.0,9.0,8.0,10.0,8.0,8,2.16 +20661,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.74 +37055,,,,,,,,0, +32585,,,,,,,,0, +39510,87.0,9.0,9.0,9.0,9.0,9.0,8.0,12,3.19 +60012,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.68 +70792,,,,,,,,0, +34839,,,,,,,,0, +6751,80.0,10.0,10.0,10.0,8.0,8.0,6.0,1,0.31 +26403,,,,,,,,0, +6814,,,,,,,,0, +23169,,,,,,,,0, +2985,,,,,,,,0, +40785,,,,,,,,1,0.36 +47789,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.48 +12729,87.0,9.0,7.0,10.0,9.0,9.0,7.0,4,1.15 +40622,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,3.26 +45301,,,,,,,,0, +44238,100.0,10.0,10.0,9.0,10.0,10.0,9.0,3,1.38 +38436,92.0,10.0,9.0,10.0,10.0,9.0,9.0,19,4.96 +55109,93.0,9.0,10.0,10.0,9.0,9.0,9.0,4,1.52 +4841,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,1.07 +40503,100.0,10.0,10.0,8.0,10.0,10.0,10.0,1,0.35 +60609,92.0,10.0,10.0,10.0,10.0,9.0,9.0,13,3.33 +62672,,,,,,,,0, +27515,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,1.75 +70542,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.03 +69463,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.52 +57222,69.0,8.0,8.0,9.0,7.0,8.0,7.0,11,2.7 +10003,97.0,10.0,10.0,10.0,10.0,9.0,10.0,7,2.28 +63332,93.0,10.0,8.0,10.0,10.0,8.0,9.0,6,1.58 +34548,80.0,9.0,7.0,8.0,8.0,9.0,9.0,4,1.02 +59409,60.0,6.0,8.0,8.0,4.0,10.0,6.0,1,0.41 +35075,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,4.15 +31673,73.0,8.0,8.0,7.0,8.0,8.0,7.0,6,2.28 +72468,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.27 +27553,89.0,10.0,10.0,10.0,10.0,10.0,9.0,11,2.84 +56474,,,,,,,,0, +63215,97.0,10.0,10.0,9.0,10.0,9.0,10.0,7,2.06 +32299,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.26 +75498,,,,,,,,0, +8584,80.0,8.0,8.0,10.0,8.0,9.0,8.0,4,1.21 +52615,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,2.6 +39983,100.0,10.0,10.0,10.0,10.0,10.0,10.0,15,3.72 +37493,90.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.5 +10726,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.3 +25454,40.0,8.0,8.0,10.0,4.0,4.0,4.0,1,0.73 +39936,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.11 +27036,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,4.62 +60454,90.0,9.0,9.0,10.0,10.0,10.0,9.0,27,6.98 +51692,,,,,,,,0, +39333,80.0,8.0,8.0,9.0,9.0,9.0,8.0,6,3.33 +39595,,,,,,,,0, +61079,100.0,10.0,9.0,10.0,10.0,9.0,8.0,2,0.66 +109,92.0,10.0,10.0,10.0,10.0,10.0,10.0,10,2.52 +18647,89.0,9.0,9.0,9.0,10.0,10.0,9.0,15,5.17 +41024,,,,,,,,0, +72072,,,,,,,,0, +32693,,,,,,,,1,0.32 +25782,80.0,9.0,8.0,9.0,9.0,9.0,8.0,11,5.59 +22218,84.0,9.0,8.0,10.0,9.0,9.0,8.0,16,7.27 +25250,100.0,10.0,10.0,9.0,10.0,8.0,10.0,3,0.81 +20026,90.0,9.0,8.0,9.0,10.0,9.0,7.0,3,0.74 +57141,93.0,10.0,9.0,10.0,9.0,10.0,9.0,9,2.35 +73309,85.0,9.0,9.0,10.0,10.0,9.0,8.0,13,5.82 +55221,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.31 +42332,90.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.76 +19739,,,,,,,,0, +23809,85.0,9.0,8.0,10.0,9.0,10.0,8.0,4,1.67 +15629,,,,,,,,0, +46416,80.0,7.0,9.0,10.0,10.0,9.0,9.0,2,0.57 +10068,,,,,,,,0, +20742,80.0,9.0,10.0,10.0,8.0,9.0,9.0,2,0.68 +57132,85.0,10.0,10.0,10.0,10.0,10.0,9.0,4,1.29 +62198,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.54 +69091,98.0,10.0,10.0,10.0,10.0,9.0,10.0,24,6.15 +10033,97.0,10.0,10.0,10.0,10.0,10.0,10.0,7,2.0 +33641,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +60960,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.25 +24413,,,,,,,,0, +20775,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,3.06 +57154,95.0,10.0,10.0,10.0,10.0,10.0,10.0,8,2.33 +58252,93.0,9.0,9.0,10.0,10.0,9.0,9.0,9,2.23 +22483,100.0,10.0,10.0,10.0,10.0,7.0,10.0,2,0.48 +18208,100.0,8.0,8.0,8.0,10.0,8.0,10.0,1,0.29 +66452,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,3.05 +76827,40.0,4.0,4.0,4.0,6.0,8.0,4.0,1,1.0 +66544,97.0,10.0,10.0,10.0,10.0,10.0,10.0,15,4.09 +17580,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.06 +25321,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.9 +37470,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,1.67 +74439,100.0,10.0,10.0,9.0,9.0,9.0,9.0,3,0.9 +53385,97.0,10.0,10.0,10.0,10.0,10.0,9.0,6,1.59 +47031,95.0,10.0,9.0,10.0,10.0,9.0,10.0,22,6.88 +52774,,,,,,,,0, +6468,86.0,9.0,9.0,9.0,9.0,9.0,9.0,8,1.98 +28988,98.0,10.0,10.0,10.0,10.0,9.0,10.0,8,2.09 +7820,50.0,6.0,5.0,6.0,5.0,8.0,5.0,2,1.87 +67777,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,2.37 +71947,90.0,9.0,9.0,9.0,10.0,10.0,8.0,2,1.11 +45180,55.0,7.0,6.0,9.0,6.0,9.0,6.0,4,1.24 +61302,99.0,10.0,10.0,9.0,9.0,10.0,10.0,14,4.94 +19711,,,,,,,,0, +60739,100.0,10.0,10.0,8.0,10.0,10.0,10.0,10,3.13 +46219,,,,,,,,0, +36863,,,,,,,,0, +76787,,,,,,,,0, +18162,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.29 +24930,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,2.57 +3892,73.0,10.0,7.0,10.0,7.0,9.0,6.0,3,1.67 +46281,90.0,8.0,8.0,10.0,10.0,7.0,8.0,3,0.77 +57330,99.0,10.0,10.0,10.0,10.0,9.0,10.0,15,4.64 +46271,,,,,,,,0, +61162,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,3.31 +34525,93.0,10.0,10.0,9.0,10.0,10.0,9.0,3,1.36 +66371,,,,,,,,0, +67511,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,1.1 +64308,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.06 +54185,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.08 +19983,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.04 +20181,91.0,10.0,9.0,9.0,10.0,10.0,9.0,9,2.33 +51082,90.0,9.0,8.0,10.0,10.0,7.0,8.0,2,0.98 +51414,97.0,10.0,9.0,10.0,10.0,9.0,10.0,38,9.91 +33752,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.03 +16104,,,,,,,,0, +17917,60.0,10.0,6.0,10.0,10.0,10.0,10.0,1,0.36 +40954,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,2.31 +46128,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,2.07 +38002,95.0,10.0,10.0,10.0,10.0,10.0,9.0,12,3.56 +64379,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.66 +32808,71.0,8.0,8.0,7.0,9.0,7.0,7.0,11,2.77 +42848,,,,,,,,0, +42426,95.0,9.0,10.0,10.0,10.0,10.0,10.0,8,2.22 +76940,,,,,,,,0, +60348,93.0,10.0,9.0,10.0,10.0,10.0,10.0,8,2.03 +39835,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,1.2 +44839,84.0,9.0,7.0,10.0,9.0,9.0,8.0,5,1.39 +7459,,,,,,,,0, +17068,,,,,,,,1,0.24 +36332,95.0,10.0,9.0,7.0,10.0,10.0,10.0,4,1.15 +23335,90.0,10.0,10.0,7.0,9.0,10.0,10.0,6,1.82 +29178,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.76 +64283,80.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.26 +42243,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.32 +36030,100.0,10.0,7.0,10.0,9.0,8.0,10.0,2,0.54 +25283,,,,,,,,0, +27891,96.0,10.0,9.0,10.0,10.0,10.0,10.0,11,2.75 +43525,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.18 +41925,60.0,10.0,4.0,10.0,10.0,10.0,8.0,2,0.87 +45875,60.0,10.0,6.0,8.0,10.0,10.0,10.0,1,0.35 +70734,,,,,,,,0, +37805,,,,,,,,0, +38504,80.0,6.0,8.0,9.0,9.0,9.0,7.0,2,0.79 +555,86.0,9.0,9.0,9.0,10.0,10.0,8.0,14,5.0 +34690,,,,,,,,0, +50977,,,,,,,,0, +56349,95.0,10.0,10.0,10.0,10.0,10.0,10.0,19,5.0 +13360,,,,,,,,0, +13138,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.64 +9970,,,,,,,,0, +9131,94.0,10.0,10.0,10.0,10.0,9.0,10.0,13,4.48 +34720,80.0,8.0,8.0,8.0,8.0,8.0,8.0,5,1.29 +66734,97.0,10.0,9.0,10.0,10.0,10.0,10.0,7,1.86 +73480,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.43 +32937,,,,,,,,0, +39868,89.0,9.0,9.0,9.0,9.0,9.0,8.0,9,3.91 +41090,93.0,9.0,9.0,9.0,9.0,8.0,9.0,3,1.08 +57708,100.0,9.0,10.0,10.0,10.0,10.0,10.0,14,3.53 +40304,92.0,9.0,9.0,10.0,9.0,10.0,9.0,5,1.83 +43367,100.0,10.0,10.0,8.0,10.0,10.0,8.0,1,0.56 +47005,97.0,9.0,10.0,9.0,10.0,10.0,10.0,7,2.08 +3818,87.0,9.0,9.0,10.0,10.0,10.0,9.0,3,0.94 +58521,80.0,8.0,8.0,10.0,10.0,10.0,8.0,2,0.85 +18345,,,,,,,,0, +34998,,,,,,,,0, +48945,,,,,,,,0, +50631,,,,,,,,0, +50748,100.0,9.0,7.0,10.0,10.0,9.0,10.0,2,0.51 +40886,100.0,9.0,10.0,7.0,8.0,10.0,9.0,3,1.15 +40823,,,,,,,,0, +28779,,,,,,,,0, +51213,90.0,9.0,10.0,10.0,10.0,10.0,10.0,2,1.18 +19561,100.0,10.0,10.0,6.0,10.0,10.0,6.0,1,0.4 +73809,78.0,8.0,9.0,9.0,9.0,9.0,8.0,16,3.97 +911,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +8605,97.0,10.0,10.0,10.0,10.0,10.0,10.0,12,2.88 +56301,95.0,10.0,10.0,10.0,10.0,8.0,10.0,4,1.04 +21745,95.0,10.0,10.0,10.0,10.0,9.0,10.0,4,1.14 +39594,100.0,9.0,9.0,9.0,9.0,10.0,10.0,3,0.75 +31590,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.29 +49206,100.0,10.0,9.0,10.0,10.0,9.0,10.0,3,0.9 +33566,,,,,,,,0, +57469,,,,,,,,0, +6378,95.0,9.0,10.0,9.0,10.0,10.0,10.0,4,1.3 +2049,80.0,9.0,7.0,10.0,10.0,9.0,9.0,2,0.54 +41649,,,,,,,,0, +32199,93.0,10.0,9.0,10.0,10.0,10.0,10.0,6,1.57 +9827,,,,,,,,0, +49339,,,,,,,,0, +40239,93.0,10.0,9.0,9.0,9.0,9.0,9.0,25,6.41 +23133,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.41 +34666,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.28 +14293,93.0,10.0,10.0,9.0,9.0,10.0,9.0,33,8.32 +43894,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.67 +75883,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.58 +16934,,,,,,,,0, +26240,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.48 +51182,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.55 +51156,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.28 +65223,,,,,,,,0, +46436,,,,,,,,0, +28515,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.33 +38448,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,2.56 +66945,70.0,8.0,6.0,8.0,8.0,9.0,7.0,6,2.37 +67051,,,,,,,,1,0.26 +21046,100.0,10.0,6.0,10.0,10.0,10.0,10.0,1,0.73 +58418,100.0,10.0,10.0,10.0,10.0,9.0,9.0,2,0.51 +11468,,,,,,,,0, +76751,97.0,9.0,9.0,10.0,10.0,10.0,9.0,7,2.02 +19431,,,,,,,,0, +22072,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,2.5 +12354,,,,,,,,0, +25851,88.0,9.0,8.0,9.0,10.0,10.0,9.0,9,2.6 +70396,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.33 +34520,71.0,7.0,7.0,10.0,9.0,9.0,7.0,7,1.88 +63954,87.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.94 +7411,,,,,,,,1,0.26 +7288,93.0,9.0,9.0,9.0,9.0,9.0,9.0,19,4.79 +38916,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.61 +35030,84.0,9.0,9.0,9.0,9.0,8.0,9.0,19,4.87 +64951,,,,,,,,0, +74223,100.0,10.0,10.0,10.0,9.0,9.0,9.0,5,1.53 +67664,,,,,,,,0, +42486,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.3 +17923,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,2.02 +60745,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.72 +63241,90.0,10.0,10.0,10.0,10.0,9.0,10.0,4,0.99 +38890,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.28 +73265,91.0,10.0,10.0,9.0,10.0,8.0,9.0,9,2.55 +17338,,,,,,,,0, +35126,93.0,10.0,10.0,10.0,10.0,9.0,10.0,9,2.6 +23430,67.0,8.0,7.0,10.0,7.0,9.0,7.0,3,1.2 +74315,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.8 +72502,,,,,,,,0, +67678,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,2.45 +53713,80.0,8.0,6.0,10.0,10.0,10.0,10.0,1,0.37 +221,,,,,,,,0, +42570,,,,,,,,0, +49693,98.0,10.0,10.0,10.0,10.0,9.0,10.0,8,2.22 +34042,93.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.87 +53324,75.0,8.0,7.0,10.0,10.0,9.0,9.0,5,1.47 +47942,97.0,10.0,9.0,10.0,10.0,9.0,10.0,7,1.75 +51022,98.0,10.0,10.0,10.0,10.0,9.0,10.0,12,3.67 +20293,80.0,8.0,7.0,9.0,9.0,9.0,8.0,12,3.87 +72630,95.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.44 +38361,97.0,10.0,9.0,10.0,10.0,9.0,10.0,7,3.09 +60059,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.01 +3824,85.0,9.0,9.0,9.0,10.0,8.0,9.0,8,2.33 +56543,100.0,10.0,10.0,10.0,10.0,9.0,9.0,9,4.43 +63688,60.0,4.0,4.0,4.0,4.0,6.0,6.0,1,0.3 +3557,,,,,,,,0, +58661,93.0,9.0,10.0,10.0,10.0,10.0,10.0,3,0.87 +75528,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.56 +59163,70.0,6.0,5.0,8.0,8.0,6.0,6.0,2,0.55 +13922,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.08 +25087,,,,,,,,0, +10052,90.0,9.0,9.0,9.0,8.0,10.0,10.0,8,2.96 +31392,72.0,7.0,8.0,7.0,7.0,9.0,8.0,5,1.46 +62276,,,,,,,,0, +44199,98.0,10.0,10.0,10.0,10.0,10.0,9.0,8,2.03 +52624,86.0,9.0,10.0,10.0,10.0,10.0,10.0,7,2.73 +67031,80.0,9.0,8.0,10.0,10.0,10.0,7.0,2,0.56 +20425,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.28 +14593,,,,,,,,0, +51674,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.6 +37929,93.0,10.0,10.0,10.0,10.0,10.0,9.0,3,1.02 +32065,100.0,10.0,10.0,10.0,10.0,9.0,9.0,2,0.58 +59115,88.0,9.0,9.0,10.0,10.0,10.0,9.0,5,1.53 +21444,,,,,,,,0, +59527,100.0,10.0,10.0,10.0,10.0,10.0,9.0,7,2.23 +62020,100.0,10.0,10.0,10.0,8.0,8.0,8.0,1,0.58 +26146,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,2.45 +47111,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.33 +43550,92.0,10.0,9.0,10.0,10.0,10.0,9.0,20,5.41 +29418,80.0,8.0,10.0,8.0,8.0,10.0,8.0,1,0.38 +61498,93.0,10.0,10.0,10.0,10.0,10.0,9.0,9,2.39 +58799,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.77 +13394,,,,,,,,1,0.24 +30879,100.0,10.0,10.0,9.0,10.0,10.0,9.0,2,0.85 +25091,80.0,8.0,4.0,10.0,10.0,10.0,8.0,1,0.64 +73912,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.27 +40207,96.0,10.0,10.0,9.0,9.0,9.0,9.0,14,3.82 +56782,80.0,9.0,9.0,10.0,9.0,10.0,9.0,3,1.18 +76867,60.0,6.0,6.0,4.0,6.0,10.0,8.0,1,0.3 +55505,94.0,10.0,9.0,10.0,10.0,9.0,9.0,7,2.84 +56380,,,,,,,,0, +55837,93.0,9.0,9.0,9.0,9.0,9.0,9.0,3,0.83 +4760,87.0,9.0,9.0,7.0,8.0,10.0,8.0,6,2.81 +72921,97.0,10.0,10.0,10.0,10.0,9.0,10.0,6,1.89 +17596,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,2.17 +44848,91.0,9.0,9.0,10.0,9.0,10.0,9.0,8,2.7 +43991,,,,,,,,0, +19955,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.64 +44187,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.46 +39613,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,2.41 +26554,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.76 +61465,90.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.67 +7865,90.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.57 +73266,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,2.8 +25372,96.0,10.0,10.0,10.0,10.0,10.0,9.0,5,1.22 +56877,100.0,10.0,10.0,10.0,9.0,10.0,10.0,2,0.58 +44916,100.0,10.0,10.0,10.0,10.0,8.0,10.0,2,0.62 +42898,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.57 +2758,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,3.8 +47516,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.3 +54016,86.0,9.0,9.0,9.0,9.0,9.0,9.0,7,2.02 +39870,,,,,,,,0, +14719,96.0,10.0,10.0,10.0,10.0,9.0,10.0,20,5.13 +62884,80.0,9.0,5.0,10.0,9.0,10.0,8.0,3,0.88 +48910,90.0,9.0,9.0,9.0,8.0,10.0,10.0,2,0.66 +12209,100.0,10.0,10.0,8.0,10.0,10.0,10.0,2,0.54 +15234,96.0,10.0,10.0,9.0,10.0,8.0,9.0,23,5.9 +5921,95.0,9.0,10.0,9.0,10.0,10.0,9.0,8,2.14 +1446,,,,,,,,0, +9882,80.0,10.0,8.0,8.0,6.0,6.0,10.0,1,0.29 +30090,,,,,,,,0, +67704,97.0,10.0,9.0,10.0,10.0,10.0,10.0,7,2.47 +22453,96.0,10.0,10.0,10.0,9.0,10.0,10.0,12,3.21 +36694,95.0,10.0,10.0,9.0,10.0,10.0,9.0,4,1.15 +41626,,,,,,,,0, +18132,80.0,10.0,9.0,10.0,10.0,10.0,9.0,2,1.71 +8769,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.44 +75960,20.0,2.0,2.0,2.0,2.0,4.0,2.0,1,0.81 +22194,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,2.03 +39163,,,,,,,,0, +1660,98.0,10.0,10.0,10.0,10.0,10.0,10.0,20,4.96 +33304,,,,,,,,2,0.5 +60714,97.0,10.0,10.0,10.0,9.0,9.0,9.0,14,3.65 +21664,99.0,10.0,10.0,10.0,10.0,9.0,9.0,19,7.31 +29526,80.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.29 +3734,95.0,9.0,10.0,9.0,10.0,10.0,9.0,16,4.29 +72736,89.0,9.0,8.0,9.0,9.0,9.0,9.0,13,3.28 +32200,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.83 +17221,98.0,10.0,10.0,9.0,10.0,9.0,10.0,11,5.32 +54641,98.0,10.0,10.0,10.0,10.0,10.0,10.0,29,8.06 +58659,,,,,,,,0, +37440,,,,,,,,0, +10236,100.0,10.0,10.0,10.0,10.0,10.0,10.0,15,5.06 +29066,40.0,6.0,2.0,10.0,10.0,10.0,2.0,1,0.42 +62325,,,,,,,,0, +45942,98.0,10.0,10.0,10.0,10.0,10.0,10.0,24,5.85 +52849,95.0,10.0,9.0,10.0,10.0,10.0,10.0,4,1.25 +54918,,,,,,,,0, +48973,,,,,,,,0, +60799,100.0,10.0,10.0,10.0,10.0,10.0,9.0,4,1.3 +52745,87.0,9.0,9.0,10.0,9.0,8.0,8.0,9,2.5 +20388,83.0,10.0,9.0,9.0,10.0,8.0,9.0,8,2.0 +75643,,,,,,,,0, +38531,98.0,10.0,9.0,10.0,10.0,10.0,10.0,36,9.64 +2827,90.0,8.0,10.0,10.0,8.0,10.0,9.0,2,0.72 +15335,94.0,10.0,9.0,10.0,10.0,10.0,9.0,27,6.59 +49326,20.0,8.0,2.0,6.0,2.0,10.0,2.0,5,1.88 +33729,,,,,,,,0, +30426,88.0,10.0,9.0,9.0,9.0,10.0,8.0,5,2.0 +52382,100.0,10.0,10.0,8.0,10.0,10.0,10.0,2,0.65 +60621,80.0,9.0,8.0,7.0,8.0,8.0,9.0,4,1.48 +3599,80.0,10.0,10.0,10.0,8.0,8.0,10.0,1,0.33 +26460,,,,,,,,0, +51545,73.0,9.0,9.0,10.0,10.0,10.0,9.0,3,1.02 +48175,93.0,9.0,9.0,10.0,9.0,9.0,9.0,3,1.18 +74871,94.0,10.0,9.0,10.0,10.0,10.0,10.0,8,2.24 +54674,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.42 +31563,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.97 +22838,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.85 +1891,,,,,,,,0, +47304,90.0,10.0,10.0,10.0,10.0,10.0,8.0,4,1.3 +69431,,,,,,,,0, +19400,,,,,,,,0, +24519,,,,,,,,0, +31779,93.0,10.0,9.0,9.0,9.0,9.0,9.0,3,0.82 +17376,100.0,9.0,8.0,9.0,10.0,10.0,9.0,3,0.89 +18229,,,,,,,,0, +70275,88.0,10.0,9.0,8.0,9.0,10.0,9.0,5,2.27 +41777,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.21 +67404,100.0,10.0,9.0,10.0,10.0,9.0,10.0,6,1.82 +72341,60.0,6.0,7.0,8.0,6.0,7.0,6.0,6,1.98 +74724,90.0,10.0,10.0,10.0,9.0,9.0,9.0,8,2.47 +24065,,,,,,,,0, +28652,83.0,9.0,8.0,9.0,10.0,10.0,9.0,8,2.18 +75644,97.0,10.0,9.0,10.0,10.0,10.0,10.0,27,7.57 +12710,,,,,,,,0, +21671,76.0,8.0,8.0,9.0,9.0,9.0,8.0,10,3.49 +9267,97.0,10.0,9.0,10.0,10.0,10.0,10.0,6,2.17 +13038,95.0,10.0,10.0,10.0,10.0,9.0,10.0,4,1.14 +39071,93.0,9.0,10.0,9.0,9.0,10.0,10.0,3,1.25 +54798,88.0,9.0,9.0,10.0,10.0,10.0,9.0,5,1.34 +65576,,,,,,,,0, +15584,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +35395,,,,,,,,0, +48953,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.67 +60756,100.0,10.0,10.0,10.0,10.0,9.0,9.0,12,3.19 +14954,,,,,,,,0, +59024,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,2.47 +28283,69.0,7.0,7.0,9.0,9.0,10.0,7.0,16,4.0 +2383,,,,,,,,0, +37257,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.63 +51261,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.13 +61430,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.76 +27834,40.0,6.0,6.0,10.0,8.0,4.0,6.0,1,0.26 +8920,80.0,9.0,8.0,7.0,9.0,9.0,6.0,3,1.45 +61802,,,,,,,,0, +22121,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.76 +69025,93.0,9.0,10.0,10.0,10.0,8.0,8.0,6,1.75 +58882,100.0,10.0,8.0,10.0,10.0,10.0,8.0,1,1.0 +29998,68.0,8.0,8.0,10.0,8.0,9.0,8.0,5,1.29 +24763,90.0,9.0,9.0,10.0,10.0,9.0,9.0,10,2.78 +27870,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,6.0 +50678,,,,,,,,1,0.24 +4694,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +53504,90.0,7.0,7.0,9.0,10.0,10.0,7.0,2,0.51 +70946,,,,,,,,0, +69947,,,,,,,,0, +13406,85.0,9.0,9.0,10.0,10.0,10.0,9.0,19,8.64 +20037,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,3.13 +26131,78.0,9.0,8.0,10.0,10.0,10.0,8.0,8,3.93 +40502,,,,,,,,0, +55313,80.0,8.0,7.0,10.0,10.0,10.0,9.0,2,0.77 +5231,90.0,9.0,10.0,8.0,10.0,10.0,9.0,2,0.8 +37433,,,,,,,,0, +34068,,,,,,,,0, +28128,,,,,,,,0, +39606,100.0,10.0,10.0,9.0,9.0,8.0,10.0,2,1.5 +2165,88.0,9.0,10.0,10.0,10.0,10.0,9.0,8,3.08 +14158,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.79 +50245,100.0,6.0,10.0,10.0,10.0,10.0,10.0,1,0.38 +46825,,,,,,,,0, +54781,60.0,6.0,6.0,10.0,10.0,10.0,10.0,1,0.5 +65735,99.0,10.0,10.0,10.0,10.0,10.0,10.0,17,5.31 +39364,80.0,10.0,9.0,9.0,9.0,10.0,8.0,3,1.0 +35497,100.0,10.0,10.0,8.0,10.0,10.0,10.0,2,0.85 +44268,94.0,9.0,9.0,9.0,10.0,9.0,9.0,7,1.89 +74050,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.0 +10556,90.0,10.0,9.0,10.0,10.0,8.0,10.0,2,0.51 +35620,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.46 +75266,,,,,,,,0, +30186,,,,,,,,0, +68083,91.0,10.0,10.0,10.0,10.0,9.0,9.0,20,4.92 +60036,,,,,,,,1,0.25 +118,95.0,10.0,10.0,9.0,10.0,10.0,9.0,8,2.4 +26709,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.25 +355,,,,,,,,0, +29944,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,3.64 +37588,95.0,10.0,9.0,10.0,10.0,10.0,10.0,4,1.0 +30787,100.0,10.0,10.0,9.0,10.0,10.0,10.0,8,2.09 +15331,97.0,9.0,9.0,10.0,10.0,10.0,10.0,13,6.61 +70849,,,,,,,,0, +18924,90.0,10.0,9.0,10.0,10.0,10.0,10.0,4,1.46 +43459,88.0,9.0,8.0,10.0,10.0,9.0,9.0,5,1.29 +24783,,,,,,,,0, +62120,80.0,10.0,10.0,10.0,8.0,8.0,8.0,1,0.43 +54419,100.0,10.0,10.0,10.0,10.0,9.0,10.0,8,2.38 +56660,,,,,,,,0, +21426,89.0,9.0,9.0,9.0,10.0,10.0,9.0,18,5.29 +69316,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.97 +58563,88.0,10.0,10.0,9.0,9.0,10.0,9.0,5,1.22 +50870,,,,,,,,0, +33475,,,,,,,,1,0.25 +17103,,,,,,,,0, +15222,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.54 +45493,100.0,10.0,6.0,10.0,8.0,10.0,10.0,1,0.36 +353,93.0,10.0,10.0,10.0,10.0,9.0,10.0,9,2.81 +6855,98.0,10.0,9.0,10.0,10.0,10.0,9.0,9,4.43 +49383,100.0,10.0,10.0,10.0,10.0,10.0,10.0,16,4.36 +59148,80.0,8.0,6.0,9.0,8.0,8.0,8.0,2,0.54 +61875,,,,,,,,0, +60603,,,,,,,,1,0.32 +25096,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.98 +22242,96.0,10.0,10.0,10.0,10.0,9.0,10.0,5,1.33 +73136,,,,,,,,0, +17798,90.0,10.0,10.0,8.0,9.0,9.0,9.0,23,5.7 +8455,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.26 +53046,,,,,,,,0, +58079,,,,,,,,0, +44898,88.0,8.0,9.0,9.0,8.0,8.0,8.0,5,1.69 +31867,80.0,8.0,9.0,9.0,10.0,7.0,9.0,3,1.32 +67040,20.0,2.0,2.0,2.0,2.0,2.0,2.0,2,0.58 +17202,,,,,,,,0, +41168,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.4 +69289,,,,,,,,0, +70596,80.0,10.0,8.0,8.0,10.0,8.0,6.0,1,0.26 +2344,,,,,,,,0, +56830,100.0,10.0,10.0,6.0,8.0,8.0,8.0,1,1.0 +37582,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.48 +39258,100.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.73 +75320,97.0,10.0,10.0,10.0,10.0,9.0,9.0,6,1.7 +18392,,,,,,,,0, +22545,96.0,10.0,9.0,10.0,10.0,9.0,10.0,5,1.35 +65704,80.0,8.0,8.0,9.0,10.0,8.0,8.0,2,1.2 +43348,92.0,10.0,10.0,10.0,9.0,9.0,9.0,13,4.59 +61769,100.0,10.0,9.0,8.0,10.0,9.0,10.0,2,1.07 +72903,83.0,9.0,8.0,10.0,10.0,10.0,8.0,8,4.29 +7641,97.0,10.0,10.0,10.0,10.0,10.0,9.0,15,4.37 +31436,,,,,,,,0, +39716,82.0,10.0,8.0,10.0,10.0,9.0,9.0,17,4.55 +72708,70.0,10.0,10.0,10.0,10.0,10.0,9.0,6,1.96 +11714,,,,,,,,0, +74042,89.0,9.0,6.0,8.0,9.0,10.0,9.0,9,2.81 +37503,100.0,9.0,10.0,10.0,10.0,10.0,10.0,2,1.09 +64638,97.0,9.0,9.0,10.0,10.0,10.0,9.0,14,3.96 +58290,,,,,,,,0, +65914,73.0,7.0,9.0,10.0,7.0,9.0,9.0,5,2.68 +1878,,,,,,,,0, +77050,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.48 +21008,,,,,,,,0, +59594,,,,,,,,0, +18700,,,,,,,,0, +30881,,,,,,,,1, +12747,100.0,10.0,10.0,10.0,9.0,10.0,10.0,2,1.13 +28603,,,,,,,,1,0.52 +45123,98.0,10.0,10.0,9.0,10.0,10.0,9.0,12,4.34 +9005,60.0,10.0,8.0,4.0,2.0,10.0,6.0,1,0.36 +5883,,,,,,,,0, +9922,,,,,,,,0, +74057,96.0,10.0,10.0,9.0,10.0,10.0,9.0,11,3.33 +44534,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,2.75 +2372,,,,,,,,0, +5498,100.0,10.0,9.0,9.0,9.0,8.0,9.0,3,0.87 +25437,,,,,,,,0, +72905,89.0,10.0,8.0,10.0,10.0,9.0,9.0,9,2.41 +24267,95.0,10.0,9.0,10.0,10.0,10.0,10.0,5,1.3 +29250,20.0,10.0,10.0,6.0,4.0,8.0,6.0,1,0.81 +15289,,,,,,,,0, +3377,,,,,,,,0, +3722,,,,,,,,0, +16064,,,,,,,,0, +37518,,,,,,,,0, +42453,,,,,,,,0, +33913,,,,,,,,0, +18795,,,,,,,,0, +16820,,,,,,,,0, +9265,,,,,,,,0, +54093,84.0,8.0,8.0,8.0,9.0,10.0,8.0,10,3.26 +12694,,,,,,,,0, +27935,93.0,9.0,9.0,10.0,10.0,10.0,9.0,19,4.91 +35980,,,,,,,,0, +65280,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.97 +66569,,,,,,,,1,0.25 +27222,100.0,9.0,10.0,10.0,10.0,10.0,9.0,2,1.71 +7314,73.0,6.0,7.0,7.0,7.0,8.0,7.0,4,0.99 +65630,,,,,,,,1,0.32 +76847,93.0,9.0,10.0,10.0,10.0,9.0,10.0,4,1.13 +45447,,,,,,,,0, +39107,,,,,,,,0, +28883,,,,,,,,0, +37630,,,,,,,,0, +48995,,,,,,,,0, +8449,,,,,,,,0, +37836,,,,,,,,0, +26454,90.0,10.0,10.0,10.0,9.0,9.0,9.0,4,2.22 +13491,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.33 +66977,88.0,10.0,10.0,9.0,8.0,10.0,9.0,8,2.26 +50220,,,,,,,,0, +11322,,,,,,,,0, +71970,80.0,10.0,8.0,8.0,10.0,8.0,8.0,2,0.53 +55347,100.0,9.0,10.0,10.0,10.0,10.0,10.0,3,0.8 +58655,,,,,,,,0, +46349,,,,,,,,0, +57905,100.0,10.0,10.0,10.0,9.0,10.0,10.0,4,1.33 +39138,87.0,9.0,9.0,10.0,10.0,9.0,9.0,19,8.38 +65316,95.0,10.0,10.0,10.0,10.0,9.0,8.0,4,1.4 +54184,,,,,,,,1,0.26 +28982,60.0,5.0,7.0,9.0,7.0,7.0,5.0,6,3.21 +23888,93.0,9.0,8.0,10.0,9.0,9.0,9.0,4,1.79 +4323,96.0,10.0,9.0,10.0,10.0,10.0,9.0,24,7.2 +53606,96.0,10.0,10.0,10.0,10.0,10.0,10.0,9,2.73 +74971,60.0,6.0,8.0,8.0,6.0,6.0,6.0,2,0.56 +46863,,,,,,,,1, +16218,80.0,9.0,7.0,10.0,10.0,10.0,9.0,2,0.55 +37963,100.0,10.0,10.0,8.0,10.0,8.0,8.0,1,0.34 +30316,,,,,,,,0, +26597,96.0,10.0,10.0,10.0,10.0,9.0,10.0,44,11.48 +56121,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,2.42 +65266,,,,,,,,1,0.28 +28722,60.0,6.0,4.0,10.0,6.0,8.0,4.0,1,0.34 +21421,50.0,7.0,10.0,5.0,7.0,9.0,6.0,2,0.73 +62435,80.0,10.0,10.0,9.0,9.0,10.0,9.0,6,2.34 +19126,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.31 +20721,87.0,10.0,7.0,10.0,10.0,10.0,9.0,6,2.95 +40598,,,,,,,,0, +18365,,,,,,,,0, +38450,,,,,,,,0, +72436,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,2.67 +37482,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.55 +61426,100.0,10.0,10.0,10.0,10.0,10.0,9.0,4,1.19 +65449,85.0,9.0,9.0,9.0,9.0,9.0,9.0,11,4.65 +69898,,,,,,,,0, +37855,94.0,10.0,9.0,9.0,10.0,9.0,9.0,7,2.5 +11517,,,,,,,,0, +21103,,,,,,,,0, +75,,,,,,,,0, +206,,,,,,,,0, +19936,,,,,,,,0, +45509,80.0,7.0,9.0,8.0,8.0,10.0,8.0,2,0.49 +8057,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.02 +3643,93.0,10.0,9.0,10.0,9.0,9.0,9.0,11,3.4 +13639,93.0,10.0,9.0,9.0,10.0,9.0,9.0,3,3.0 +26769,,,,,,,,0, +49417,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +13451,,,,,,,,0, +54708,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.43 +70708,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.71 +58351,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,1.14 +16446,84.0,8.0,8.0,9.0,10.0,8.0,9.0,10,2.59 +73110,98.0,10.0,10.0,10.0,10.0,10.0,9.0,26,6.61 +2224,,,,,,,,0, +28256,100.0,10.0,10.0,10.0,10.0,10.0,10.0,21,5.89 +51255,,,,,,,,0, +17029,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,2.47 +61220,,,,,,,,0, +34595,,,,,,,,0, +23648,,,,,,,,0, +46223,,,,,,,,0, +15516,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.54 +4913,,,,,,,,0, +22806,,,,,,,,0, +34466,,,,,,,,0, +70373,,,,,,,,0, +34860,,,,,,,,0, +37549,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.15 +40758,,,,,,,,0, +39571,88.0,8.0,9.0,8.0,9.0,9.0,8.0,5,1.7 +74201,91.0,10.0,9.0,9.0,10.0,9.0,9.0,20,5.0 +55930,60.0,8.0,6.0,10.0,10.0,10.0,8.0,1,0.61 +47191,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.09 +25713,,,,,,,,0, +3033,,,,,,,,0, +1253,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.43 +25757,,,,,,,,0, +62828,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.14 +56192,,,,,,,,0, +42195,94.0,10.0,10.0,10.0,10.0,9.0,9.0,32,8.0 +71948,60.0,10.0,8.0,6.0,8.0,10.0,8.0,1,0.3 +32543,84.0,9.0,9.0,9.0,10.0,10.0,9.0,10,3.45 +53985,97.0,10.0,10.0,10.0,10.0,10.0,9.0,7,2.31 +23939,100.0,10.0,9.0,10.0,9.0,10.0,10.0,3,3.0 +68053,93.0,10.0,10.0,10.0,10.0,10.0,10.0,11,2.92 +57301,87.0,9.0,9.0,10.0,9.0,9.0,9.0,22,5.5 +65787,97.0,10.0,9.0,10.0,10.0,9.0,10.0,19,6.33 +13209,89.0,8.0,10.0,9.0,10.0,10.0,8.0,9,3.29 +26784,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,2.16 +70206,92.0,10.0,10.0,10.0,10.0,9.0,9.0,15,3.75 +64092,,,,,,,,0, +58465,100.0,8.0,10.0,8.0,10.0,10.0,9.0,2,0.5 +33395,,,,,,,,0, +67307,89.0,9.0,8.0,9.0,9.0,9.0,9.0,7,2.12 +23649,,,,,,,,0, +14515,,,,,,,,1,0.32 +63539,,,,,,,,0, +66763,96.0,10.0,10.0,9.0,10.0,10.0,8.0,5,1.95 +35673,80.0,8.0,8.0,10.0,10.0,10.0,8.0,2,0.67 +43686,93.0,10.0,10.0,10.0,10.0,9.0,10.0,3,1.17 +44694,92.0,10.0,9.0,9.0,10.0,10.0,10.0,26,7.16 +29696,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,1.0 +70668,60.0,10.0,4.0,10.0,10.0,10.0,6.0,3,0.87 +76043,82.0,9.0,9.0,9.0,10.0,9.0,8.0,13,3.55 +12613,,,,,,,,0, +6545,87.0,9.0,9.0,10.0,7.0,9.0,8.0,3,1.17 +73118,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,2.53 +11444,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,1.45 +23206,85.0,10.0,10.0,10.0,9.0,10.0,9.0,8,2.82 +1889,92.0,9.0,9.0,9.0,9.0,10.0,8.0,5,1.47 +18914,100.0,10.0,9.0,10.0,10.0,8.0,9.0,3,1.18 +63821,100.0,10.0,10.0,10.0,10.0,9.0,10.0,8,2.03 +43602,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.31 +24019,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.52 +52209,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.34 +9612,,,,,,,,1,0.33 +55425,,,,,,,,0, +9384,,,,,,,,0, +48652,80.0,10.0,8.0,10.0,10.0,8.0,8.0,1,0.71 +52943,77.0,8.0,7.0,9.0,8.0,9.0,8.0,6,2.0 +4482,85.0,9.0,9.0,9.0,9.0,10.0,8.0,16,4.07 +36994,99.0,10.0,10.0,10.0,10.0,10.0,10.0,14,3.82 +60986,90.0,9.0,9.0,10.0,10.0,10.0,9.0,8,2.38 +43280,90.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.17 +48516,90.0,9.0,10.0,10.0,10.0,10.0,10.0,4,1.09 +17497,82.0,8.0,7.0,10.0,9.0,9.0,8.0,9,2.65 +76310,80.0,8.0,8.0,8.0,8.0,9.0,8.0,9,2.41 +54382,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,2.73 +52268,100.0,9.0,8.0,10.0,10.0,10.0,9.0,4,1.35 +69412,,,,,,,,0, +4903,,,,,,,,0, +58377,,,,,,,,0, +63560,40.0,2.0,6.0,2.0,2.0,6.0,6.0,1,0.46 +62210,91.0,10.0,10.0,10.0,10.0,10.0,9.0,14,4.04 +40422,100.0,10.0,9.0,10.0,10.0,9.0,10.0,3,1.05 +17002,40.0,8.0,2.0,8.0,10.0,6.0,6.0,1,0.25 +65118,100.0,8.0,10.0,10.0,6.0,10.0,10.0,1,0.45 +40134,,,,,,,,0, +40490,,,,,,,,0, +74918,,,,,,,,1,0.26 +23915,88.0,8.0,9.0,8.0,9.0,9.0,8.0,5,1.28 +54563,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.63 +49528,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.72 +48538,,,,,,,,0, +75357,100.0,9.0,9.0,10.0,10.0,10.0,9.0,3,0.8 +9661,,,,,,,,0, +25450,,,,,,,,0, +3229,93.0,10.0,9.0,8.0,10.0,8.0,9.0,3,1.0 +37804,80.0,10.0,8.0,10.0,10.0,10.0,8.0,2,0.73 +37658,70.0,8.0,8.0,8.0,10.0,8.0,7.0,8,2.24 +25214,,,,,,,,0, +72438,93.0,10.0,9.0,10.0,10.0,9.0,9.0,9,2.84 +46758,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,2.38 +9377,100.0,10.0,10.0,10.0,10.0,8.0,9.0,3,1.22 +62441,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.34 +62823,,,,,,,,1,0.29 +15959,100.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.63 +22818,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.73 +26252,96.0,10.0,10.0,10.0,10.0,10.0,9.0,5,1.47 +4616,90.0,10.0,10.0,9.0,9.0,10.0,9.0,5,1.83 +19067,84.0,10.0,9.0,9.0,10.0,8.0,9.0,14,4.94 +34984,87.0,9.0,9.0,10.0,10.0,8.0,9.0,20,5.36 +12116,88.0,9.0,9.0,9.0,10.0,10.0,9.0,10,2.94 +66999,93.0,9.0,9.0,9.0,10.0,10.0,10.0,8,4.0 +41144,100.0,10.0,10.0,10.0,10.0,10.0,10.0,23,6.7 +4549,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,3.16 +74120,81.0,9.0,8.0,10.0,9.0,8.0,8.0,14,3.62 +16196,87.0,9.0,9.0,9.0,10.0,9.0,9.0,12,3.33 +70754,100.0,10.0,9.0,9.0,10.0,10.0,10.0,4,1.04 +34557,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.26 +49916,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.29 +49990,96.0,10.0,10.0,9.0,10.0,10.0,10.0,5,1.36 +21614,,,,,,,,0, +213,,,,,,,,0, +10615,,,,,,,,0, +49053,95.0,9.0,10.0,10.0,10.0,10.0,9.0,9,3.46 +72541,,,,,,,,0, +16838,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.8 +68293,,,,,,,,0, +28579,,,,,,,,0, +11212,100.0,8.0,6.0,10.0,10.0,10.0,8.0,1,1.0 +13988,,,,,,,,2,0.56 +46593,,,,,,,,1, +46788,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.52 +8918,,,,,,,,0, +54027,98.0,10.0,9.0,10.0,10.0,9.0,10.0,12,3.3 +28302,93.0,9.0,8.0,10.0,10.0,10.0,9.0,11,3.0 +18060,,,,,,,,0, +43002,90.0,10.0,9.0,8.0,9.0,9.0,9.0,2,2.0 +68059,,,,,,,,0, +46218,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.25 +34686,,,,,,,,0, +70644,,,,,,,,0, +11187,98.0,10.0,10.0,10.0,10.0,10.0,10.0,18,7.11 +9601,94.0,10.0,9.0,10.0,10.0,10.0,10.0,21,5.34 +61730,92.0,10.0,10.0,9.0,10.0,10.0,9.0,12,3.53 +31551,,,,,,,,0, +48445,,,,,,,,0, +42507,,,,,,,,0, +22472,,,,,,,,1,0.28 +68891,81.0,9.0,8.0,9.0,9.0,9.0,9.0,17,4.77 +69013,,,,,,,,0, +47183,20.0,2.0,2.0,2.0,2.0,4.0,2.0,1,0.28 +44113,94.0,10.0,9.0,10.0,10.0,10.0,10.0,13,3.9 +63016,78.0,8.0,9.0,8.0,8.0,10.0,8.0,40,10.53 +35915,,,,,,,,0, +47361,,,,,,,,0, +44025,90.0,9.0,9.0,9.0,9.0,9.0,9.0,19,5.48 +22239,70.0,8.0,7.0,7.0,8.0,6.0,6.0,4,1.14 +8048,,,,,,,,1,1.0 +36708,,,,,,,,0, +10427,,,,,,,,0, +11629,,,,,,,,0, +69514,,,,,,,,2,0.59 +493,80.0,8.0,8.0,8.0,10.0,8.0,8.0,1,1.0 +23007,20.0,2.0,2.0,2.0,2.0,2.0,2.0,1,0.29 +13232,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.57 +74200,90.0,10.0,7.0,10.0,10.0,10.0,9.0,2,0.56 +43379,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.55 +48587,93.0,10.0,10.0,10.0,10.0,10.0,10.0,9,2.62 +5555,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,1.97 +53696,,,,,,,,0, +41984,100.0,10.0,10.0,9.0,10.0,9.0,10.0,3,1.15 +58460,,,,,,,,0, +5775,,,,,,,,0, +54838,93.0,10.0,10.0,10.0,9.0,9.0,9.0,9,2.48 +12550,,,,,,,,0, +21136,100.0,10.0,9.0,10.0,10.0,10.0,10.0,7,2.44 +41202,98.0,10.0,10.0,9.0,10.0,10.0,9.0,9,3.18 +76815,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.1 +28080,,,,,,,,0, +9115,,,,,,,,0, +34943,70.0,8.0,7.0,8.0,7.0,10.0,7.0,2,1.46 +26298,79.0,10.0,8.0,9.0,9.0,8.0,8.0,15,4.17 +4667,70.0,8.0,10.0,10.0,10.0,10.0,6.0,4,1.67 +54807,,,,,,,,0, +66465,93.0,10.0,10.0,10.0,10.0,9.0,9.0,9,2.62 +73020,93.0,10.0,10.0,10.0,10.0,9.0,9.0,3,1.0 +39018,,,,,,,,0, +10469,93.0,9.0,9.0,9.0,9.0,10.0,8.0,8,3.2 +73478,20.0,2.0,2.0,2.0,2.0,2.0,2.0,1,1.0 +61952,80.0,10.0,9.0,10.0,9.0,10.0,9.0,4,1.24 +33279,60.0,10.0,8.0,6.0,10.0,8.0,8.0,1,0.28 +18038,100.0,10.0,10.0,10.0,10.0,9.0,10.0,10,2.91 +16357,73.0,9.0,7.0,7.0,7.0,7.0,7.0,3,0.81 +5164,93.0,10.0,9.0,10.0,9.0,10.0,9.0,11,2.84 +21216,,,,,,,,0, +5607,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,4.0 +16736,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,1.03 +16315,80.0,10.0,9.0,10.0,10.0,8.0,9.0,6,1.64 +40922,,,,,,,,0, +36380,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.39 +69335,,,,,,,,0, +38229,77.0,10.0,8.0,10.0,10.0,8.0,9.0,6,1.89 +48933,,,,,,,,0, +52425,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.33 +18185,89.0,9.0,9.0,9.0,10.0,9.0,9.0,14,3.72 +75328,,,,,,,,0, +68004,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.51 +59208,90.0,9.0,10.0,10.0,10.0,9.0,10.0,10,4.0 +72524,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.87 +38217,88.0,9.0,9.0,10.0,10.0,10.0,9.0,13,3.42 +52368,84.0,9.0,10.0,10.0,10.0,10.0,9.0,11,3.0 +32516,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.28 +11150,,,,,,,,1, +22055,90.0,9.0,9.0,9.0,10.0,10.0,9.0,8,3.48 +13341,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.76 +20287,84.0,9.0,8.0,10.0,10.0,8.0,9.0,10,3.8 +23213,76.0,8.0,8.0,9.0,8.0,6.0,8.0,5,1.65 +57643,90.0,9.0,10.0,10.0,9.0,10.0,9.0,8,2.64 +52843,,,,,,,,0, +41716,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.58 +17772,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,2.14 +58742,100.0,10.0,10.0,10.0,10.0,6.0,10.0,2,0.52 +42636,100.0,10.0,9.0,9.0,10.0,10.0,9.0,3,0.95 +13282,,,,,,,,0, +44506,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.19 +59709,,,,,,,,0, +21118,95.0,10.0,10.0,10.0,10.0,9.0,9.0,4,1.58 +32780,80.0,8.0,6.0,6.0,8.0,4.0,10.0,1,0.52 +25800,91.0,9.0,9.0,10.0,10.0,10.0,9.0,7,1.89 +65752,,,,,,,,0, +62599,100.0,10.0,9.0,10.0,10.0,9.0,9.0,3,1.67 +76045,,,,,,,,1,0.25 +47536,90.0,10.0,9.0,10.0,10.0,10.0,10.0,6,1.8 +26267,83.0,8.0,8.0,9.0,9.0,8.0,8.0,8,2.55 +43801,,,,,,,,0, +76495,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.56 +27724,100.0,8.0,10.0,10.0,10.0,8.0,8.0,1,0.68 +55108,86.0,9.0,8.0,9.0,10.0,9.0,9.0,10,2.65 +3181,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,4.0 +51257,100.0,10.0,10.0,10.0,10.0,9.0,10.0,11,3.63 +46750,,,,,,,,0, +75007,86.0,9.0,9.0,10.0,9.0,8.0,8.0,7,2.36 +19639,77.0,8.0,8.0,9.0,9.0,10.0,8.0,13,4.33 +40904,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,3.19 +39204,100.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.57 +66036,,,,,,,,0, +58647,91.0,10.0,9.0,10.0,10.0,10.0,9.0,14,3.89 +69511,92.0,10.0,10.0,10.0,10.0,10.0,9.0,5,1.69 +50447,,,,,,,,0, +31575,100.0,8.0,10.0,10.0,9.0,10.0,10.0,2,0.7 +22064,94.0,9.0,10.0,9.0,10.0,10.0,8.0,7,1.89 +11427,,,,,,,,0, +19559,80.0,8.0,8.0,9.0,10.0,9.0,9.0,10,2.78 +30183,100.0,10.0,10.0,10.0,10.0,10.0,8.0,2,0.59 +6793,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.38 +32013,93.0,9.0,10.0,9.0,10.0,10.0,9.0,14,4.77 +67581,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.28 +61119,96.0,10.0,10.0,10.0,10.0,10.0,9.0,19,5.64 +10851,95.0,10.0,10.0,9.0,10.0,9.0,10.0,4,1.6 +46665,,,,,,,,0, +17347,,,,,,,,0, +28384,,,,,,,,0, +11811,60.0,8.0,6.0,10.0,10.0,10.0,8.0,1,0.29 +45027,100.0,10.0,10.0,9.0,9.0,10.0,10.0,5,1.81 +53099,73.0,7.0,7.0,7.0,7.0,7.0,7.0,3,1.0 +62916,80.0,4.0,10.0,8.0,8.0,10.0,10.0,3,0.93 +32128,90.0,8.0,10.0,10.0,10.0,9.0,8.0,2,0.78 +25263,100.0,8.0,10.0,4.0,8.0,10.0,10.0,1,0.7 +2381,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +56347,80.0,10.0,10.0,10.0,8.0,8.0,10.0,3,1.18 +10299,80.0,10.0,7.0,10.0,7.0,10.0,8.0,2,0.71 +6780,100.0,10.0,9.0,9.0,10.0,10.0,9.0,3,1.07 +26532,,,,,,,,0, +62957,90.0,10.0,7.0,10.0,10.0,9.0,9.0,4,1.08 +24300,90.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.94 +35933,,,,,,,,0, +62345,,,,,,,,0, +60787,95.0,10.0,10.0,9.0,10.0,9.0,10.0,22,6.29 +26633,80.0,8.0,8.0,8.0,8.0,8.0,8.0,4,4.0 +70048,96.0,10.0,10.0,10.0,10.0,9.0,10.0,17,5.05 +68045,96.0,9.0,10.0,10.0,10.0,8.0,9.0,5,1.39 +23807,100.0,9.0,9.0,10.0,10.0,9.0,10.0,3,0.8 +70083,100.0,10.0,10.0,10.0,10.0,8.0,10.0,3,0.82 +5765,87.0,10.0,8.0,10.0,10.0,9.0,9.0,12,3.03 +63267,,,,,,,,0, +34230,,,,,,,,0, +40453,90.0,9.0,9.0,6.0,7.0,9.0,8.0,2,0.67 +38402,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.65 +2486,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,0.87 +26317,,,,,,,,0, +73792,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.56 +28120,90.0,8.0,10.0,10.0,10.0,9.0,8.0,2,0.71 +9472,60.0,8.0,4.0,10.0,10.0,10.0,6.0,1,0.67 +52737,,,,,,,,0, +60647,,,,,,,,0, +52638,98.0,10.0,10.0,10.0,10.0,9.0,10.0,9,2.43 +69884,,,,,,,,0, +36831,83.0,9.0,9.0,9.0,9.0,9.0,9.0,12,5.81 +9749,20.0,2.0,2.0,2.0,2.0,6.0,2.0,1,0.51 +35519,,,,,,,,0, +75775,95.0,10.0,10.0,10.0,10.0,10.0,9.0,13,3.55 +1735,,,,,,,,0, +32087,95.0,9.0,10.0,10.0,10.0,10.0,10.0,8,2.31 +26547,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.83 +3776,96.0,10.0,10.0,9.0,10.0,10.0,10.0,10,4.41 +7609,,,,,,,,0, +74233,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,2.05 +23678,,,,,,,,0, +43435,94.0,10.0,10.0,9.0,10.0,10.0,9.0,7,2.41 +42214,95.0,10.0,10.0,10.0,10.0,10.0,10.0,12,5.63 +55641,,,,,,,,0, +19719,97.0,10.0,9.0,10.0,10.0,9.0,10.0,6,1.54 +36414,90.0,10.0,10.0,10.0,9.0,10.0,9.0,2,0.97 +61014,78.0,8.0,8.0,8.0,8.0,10.0,9.0,8,2.05 +62472,94.0,9.0,9.0,10.0,10.0,9.0,9.0,7,2.63 +2913,95.0,8.0,9.0,9.0,10.0,9.0,9.0,4,1.15 +3940,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,4.15 +41742,100.0,10.0,9.0,10.0,10.0,10.0,9.0,3,1.08 +46564,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,2.57 +48438,,,,,,,,0, +73468,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.0 +73163,,,,,,,,0, +38366,,,,,,,,0, +70127,98.0,10.0,9.0,9.0,10.0,9.0,9.0,11,3.03 +14433,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.11 +49538,,,,,,,,0, +7724,,,,,,,,0, +59836,100.0,10.0,10.0,9.0,9.0,9.0,9.0,3,1.08 +46050,91.0,10.0,8.0,10.0,10.0,10.0,10.0,15,4.59 +12374,100.0,10.0,9.0,10.0,9.0,10.0,9.0,5,1.61 +29873,,,,,,,,0, +58792,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.33 +65746,,,,,,,,0, +62280,95.0,10.0,10.0,10.0,10.0,10.0,9.0,13,5.13 +71977,,,,,,,,0, +43948,98.0,10.0,10.0,10.0,10.0,10.0,10.0,16,5.52 +26856,90.0,9.0,8.0,10.0,10.0,9.0,9.0,5,1.29 +38850,93.0,9.0,9.0,8.0,9.0,10.0,9.0,8,2.86 +16509,92.0,9.0,8.0,9.0,10.0,8.0,8.0,5,1.33 +24216,83.0,9.0,9.0,9.0,10.0,9.0,9.0,7,2.28 +32841,,,,,,,,0, +51351,,,,,,,,0, +18977,,,,,,,,0, +6925,93.0,10.0,9.0,9.0,9.0,10.0,9.0,8,2.89 +51814,,,,,,,,0, +20087,86.0,9.0,9.0,9.0,10.0,10.0,8.0,7,2.76 +71677,,,,,,,,0, +47712,,,,,,,,0, +13059,,,,,,,,0, +41567,94.0,9.0,9.0,10.0,10.0,9.0,9.0,7,2.5 +72359,82.0,9.0,8.0,9.0,9.0,9.0,9.0,12,3.75 +68602,95.0,10.0,9.0,10.0,10.0,10.0,10.0,8,2.07 +15958,93.0,9.0,9.0,9.0,10.0,10.0,10.0,3,0.84 +50461,,,,,,,,0, +36141,88.0,10.0,9.0,10.0,10.0,9.0,9.0,5,1.55 +48201,,,,,,,,0, +24636,,,,,,,,0, +33572,,,,,,,,0, +37998,,,,,,,,0, +70213,,,,,,,,0, +20726,93.0,10.0,9.0,10.0,10.0,9.0,9.0,3,1.1 +38009,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.28 +20657,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.29 +48693,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.67 +21713,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.63 +44523,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.49 +35794,93.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.61 +51729,,,,,,,,0, +14462,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,2.43 +5804,,,,,,,,0, +29825,,,,,,,,0, +76492,79.0,9.0,8.0,8.0,8.0,9.0,9.0,20,5.61 +46656,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.27 +7930,,,,,,,,0, +49974,80.0,8.0,8.0,8.0,10.0,10.0,8.0,1,1.0 +36066,,,,,,,,0, +75221,,,,,,,,0, +72520,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.45 +76915,90.0,9.0,9.0,10.0,9.0,10.0,9.0,10,3.37 +75164,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +76853,100.0,10.0,10.0,10.0,10.0,9.0,10.0,8,3.08 +28599,94.0,9.0,10.0,10.0,9.0,10.0,9.0,7,2.63 +48428,73.0,9.0,7.0,7.0,8.0,9.0,8.0,3,1.48 +61473,,,,,,,,0, +61630,69.0,7.0,7.0,8.0,8.0,9.0,7.0,7,2.26 +64726,87.0,10.0,10.0,9.0,7.0,10.0,8.0,3,1.05 +26903,89.0,9.0,9.0,9.0,9.0,9.0,9.0,11,3.63 +18227,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.17 +11942,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,2.47 +70539,100.0,10.0,8.0,8.0,10.0,10.0,10.0,1,0.29 +35423,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,2.37 +13818,,,,,,,,0, +15042,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.28 +40975,,,,,,,,0, +76941,100.0,10.0,10.0,10.0,10.0,10.0,10.0,18,6.51 +29208,86.0,9.0,10.0,9.0,9.0,9.0,9.0,8,2.14 +24842,97.0,10.0,9.0,10.0,10.0,10.0,10.0,6,1.78 +56837,93.0,10.0,9.0,10.0,10.0,10.0,10.0,8,4.07 +11395,,,,,,,,1,0.79 +67961,97.0,10.0,10.0,9.0,10.0,9.0,9.0,14,4.83 +25336,93.0,9.0,9.0,9.0,10.0,9.0,8.0,3,2.65 +54633,73.0,7.0,7.0,7.0,7.0,7.0,5.0,3,1.45 +44702,,,,,,,,0, +2741,84.0,9.0,9.0,10.0,10.0,9.0,9.0,10,3.23 +39761,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.5 +6880,73.0,9.0,7.0,7.0,7.0,8.0,9.0,3,0.83 +61463,93.0,10.0,9.0,10.0,10.0,10.0,9.0,3,1.25 +64963,,,,,,,,1, +5227,90.0,9.0,10.0,10.0,10.0,10.0,10.0,2,1.09 +30631,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.57 +61204,90.0,10.0,9.0,9.0,10.0,9.0,9.0,5,1.35 +54636,80.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.3 +45990,75.0,9.0,8.0,8.0,9.0,10.0,8.0,4,1.29 +61379,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,2.57 +21420,,,,,,,,0, +62117,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.32 +10762,,,,,,,,0, +69828,93.0,9.0,9.0,9.0,9.0,9.0,9.0,3,0.86 +52579,100.0,9.0,10.0,10.0,10.0,10.0,10.0,3,0.76 +44793,,,,,,,,0, +12935,80.0,8.0,10.0,10.0,10.0,8.0,10.0,1,0.61 +14139,,,,,,,,0, +67085,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.25 +69252,90.0,9.0,9.0,10.0,10.0,10.0,9.0,9,2.33 +34412,96.0,9.0,10.0,10.0,10.0,10.0,10.0,11,3.06 +42936,,,,,,,,0, +8061,100.0,10.0,10.0,10.0,10.0,10.0,10.0,17,4.4 +7213,85.0,10.0,10.0,9.0,9.0,10.0,9.0,4,1.11 +48110,,,,,,,,0, +5239,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.48 +1128,98.0,10.0,9.0,10.0,10.0,9.0,10.0,8,2.67 +2262,60.0,6.0,6.0,6.0,6.0,6.0,6.0,2,0.56 +40460,,,,,,,,0, +54743,,,,,,,,0, +60568,100.0,10.0,10.0,10.0,9.0,10.0,10.0,3,1.25 +39779,100.0,10.0,9.0,10.0,10.0,9.0,10.0,3,1.06 +59284,96.0,10.0,10.0,10.0,10.0,10.0,10.0,11,4.58 +61290,90.0,10.0,9.0,10.0,10.0,10.0,9.0,12,3.24 +69606,100.0,10.0,10.0,9.0,10.0,10.0,9.0,3,1.0 +5537,100.0,8.0,10.0,10.0,10.0,6.0,8.0,1,0.48 +28524,90.0,10.0,9.0,10.0,10.0,9.0,9.0,4,1.25 +52327,95.0,10.0,9.0,10.0,10.0,10.0,9.0,19,9.83 +14299,,,,,,,,0, +35247,91.0,10.0,9.0,9.0,10.0,10.0,9.0,11,3.08 +50831,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.41 +10692,88.0,10.0,9.0,9.0,9.0,10.0,9.0,5,1.67 +28775,91.0,9.0,10.0,10.0,10.0,10.0,9.0,16,4.49 +49872,96.0,10.0,10.0,10.0,10.0,9.0,10.0,11,3.0 +28838,,,,,,,,1,0.29 +19994,80.0,9.0,6.0,9.0,9.0,10.0,8.0,3,1.11 +69886,90.0,8.0,9.0,9.0,10.0,10.0,9.0,4,1.19 +39155,98.0,10.0,10.0,10.0,10.0,9.0,10.0,11,2.87 +20743,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.29 +49312,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,1.1 +35728,,,,,,,,0, +20545,,,,,,,,0, +51999,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.27 +68367,,,,,,,,0, +68467,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.08 +42,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.61 +40751,70.0,8.0,9.0,10.0,10.0,7.0,7.0,2,0.71 +15213,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,3.05 +56488,94.0,10.0,10.0,10.0,10.0,10.0,10.0,16,4.4 +47804,95.0,10.0,10.0,10.0,10.0,10.0,10.0,28,7.37 +56585,100.0,9.0,10.0,9.0,9.0,9.0,9.0,3,1.07 +55437,90.0,10.0,9.0,9.0,10.0,9.0,9.0,4,1.33 +45794,,,,,,,,0, +57126,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,2.55 +44029,100.0,10.0,9.0,10.0,10.0,10.0,10.0,4,1.74 +73068,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.8 +52736,83.0,9.0,9.0,9.0,9.0,8.0,8.0,8,2.14 +68870,83.0,9.0,10.0,10.0,10.0,10.0,8.0,6,1.61 +49278,,,,,,,,1,0.34 +37506,91.0,10.0,9.0,9.0,9.0,9.0,9.0,9,5.29 +4799,93.0,9.0,9.0,10.0,10.0,9.0,9.0,15,3.88 +36071,80.0,9.0,10.0,10.0,10.0,9.0,9.0,4,1.46 +38363,,,,,,,,1,0.27 +52647,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.3 +55527,93.0,10.0,10.0,10.0,10.0,10.0,9.0,3,2.14 +76741,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,1.09 +16775,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.93 +67787,100.0,10.0,10.0,10.0,10.0,10.0,9.0,6,1.7 +18020,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.38 +56746,98.0,10.0,9.0,10.0,10.0,10.0,10.0,16,4.8 +40436,96.0,10.0,10.0,9.0,9.0,9.0,9.0,12,3.1 +15179,85.0,9.0,7.0,9.0,9.0,9.0,9.0,13,3.51 +57534,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +19668,100.0,10.0,9.0,10.0,10.0,9.0,9.0,3,2.2 +41715,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,3.55 +27548,96.0,10.0,9.0,10.0,10.0,10.0,10.0,5,4.05 +34038,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,1.48 +13642,93.0,10.0,9.0,10.0,10.0,10.0,10.0,9,2.57 +46444,100.0,10.0,10.0,10.0,10.0,9.0,10.0,8,2.67 +41813,100.0,10.0,10.0,10.0,10.0,10.0,8.0,2,0.97 +74653,80.0,9.0,9.0,9.0,9.0,9.0,8.0,7,2.02 +10456,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.26 +56250,,,,,,,,0, +32939,,,,,,,,0, +44933,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.32 +43890,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.45 +39159,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.52 +15478,99.0,10.0,10.0,10.0,10.0,10.0,10.0,17,5.48 +60281,,,,,,,,0, +11144,100.0,10.0,10.0,10.0,10.0,9.0,10.0,11,3.93 +10636,82.0,9.0,8.0,8.0,8.0,10.0,8.0,10,3.33 +55043,92.0,9.0,10.0,9.0,9.0,10.0,9.0,22,5.74 +19885,98.0,9.0,10.0,9.0,10.0,10.0,9.0,8,2.89 +47522,96.0,9.0,9.0,10.0,10.0,10.0,9.0,5,1.9 +59354,,,,,,,,0, +18362,,,,,,,,0, +11128,96.0,10.0,10.0,10.0,10.0,10.0,9.0,5,1.67 +45555,,,,,,,,0, +49663,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,4.19 +70470,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.56 +51368,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.26 +54840,,,,,,,,0, +47205,,,,,,,,0, +37272,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,2.5 +51531,72.0,8.0,6.0,9.0,9.0,9.0,8.0,10,2.91 +63604,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.76 +58508,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,1.95 +11843,89.0,9.0,9.0,10.0,10.0,10.0,9.0,9,3.8 +62698,94.0,9.0,10.0,10.0,10.0,10.0,9.0,7,2.92 +30170,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.0 +22540,85.0,9.0,9.0,8.0,9.0,10.0,9.0,8,2.24 +26986,100.0,10.0,10.0,10.0,10.0,10.0,8.0,2,0.97 +38973,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.42 +59706,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.56 +61227,,,,,,,,0, +72196,,,,,,,,0, +29533,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,4.07 +13302,80.0,8.0,8.0,6.0,8.0,10.0,10.0,1,0.43 +67993,100.0,10.0,8.0,10.0,10.0,8.0,10.0,1,0.41 +31209,95.0,10.0,10.0,10.0,10.0,10.0,9.0,8,2.7 +35194,100.0,10.0,10.0,10.0,10.0,8.0,9.0,3,0.91 +48879,85.0,9.0,9.0,10.0,10.0,10.0,9.0,24,7.13 +73235,89.0,9.0,9.0,10.0,10.0,10.0,8.0,19,5.64 +19735,85.0,9.0,9.0,10.0,10.0,9.0,9.0,15,4.37 +35578,98.0,10.0,10.0,10.0,10.0,9.0,9.0,9,2.43 +70553,99.0,10.0,10.0,10.0,10.0,10.0,10.0,14,4.0 +5842,99.0,10.0,10.0,10.0,10.0,10.0,10.0,25,6.94 +33656,97.0,10.0,10.0,10.0,10.0,10.0,10.0,28,7.37 +69367,80.0,7.0,6.0,9.0,9.0,8.0,6.0,3,0.78 +67855,93.0,9.0,9.0,10.0,10.0,9.0,9.0,10,2.68 +35185,,,,,,,,0, +55431,20.0,2.0,2.0,8.0,8.0,10.0,2.0,1,0.64 +53447,,,,,,,,0, +61861,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.48 +23283,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.15 +70994,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.33 +48275,,,,,,,,0, +57306,90.0,9.0,10.0,10.0,10.0,10.0,9.0,2,0.71 +1776,100.0,9.0,10.0,10.0,10.0,9.0,9.0,3,1.2 +9939,,,,,,,,0, +35802,80.0,8.0,9.0,9.0,9.0,10.0,8.0,7,3.28 +51618,90.0,10.0,9.0,10.0,10.0,10.0,10.0,3,0.96 +36880,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.32 +61988,,,,,,,,0, +63111,60.0,8.0,8.0,8.0,2.0,6.0,6.0,1,0.37 +72269,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.78 +18067,98.0,10.0,10.0,10.0,10.0,9.0,9.0,8,2.53 +69456,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,2.61 +17430,,,,,,,,0, +54273,,,,,,,,0, +13348,80.0,8.0,6.0,10.0,10.0,10.0,8.0,1,0.86 +76530,85.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.35 +9490,98.0,10.0,10.0,10.0,10.0,10.0,10.0,11,3.14 +1993,100.0,10.0,9.0,10.0,10.0,10.0,10.0,6,2.47 +24104,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.62 +26804,87.0,9.0,9.0,9.0,10.0,10.0,9.0,14,3.96 +70857,,,,,,,,0, +20194,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.41 +27122,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.42 +61704,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,4.29 +55811,100.0,10.0,10.0,10.0,9.0,10.0,9.0,7,2.08 +61867,87.0,10.0,7.0,9.0,9.0,10.0,9.0,3,1.55 +19005,95.0,10.0,10.0,9.0,9.0,9.0,9.0,4,1.76 +23059,100.0,10.0,9.0,10.0,10.0,9.0,10.0,7,2.8 +62797,89.0,9.0,9.0,10.0,8.0,10.0,9.0,9,2.57 +4237,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.63 +36557,100.0,10.0,10.0,10.0,9.0,9.0,10.0,5,2.73 +28874,95.0,9.0,10.0,8.0,10.0,10.0,9.0,4,1.41 +3993,86.0,9.0,9.0,8.0,8.0,10.0,9.0,7,2.19 +44290,96.0,10.0,10.0,10.0,10.0,9.0,10.0,5,1.36 +67110,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,2.09 +54457,80.0,9.0,9.0,8.0,9.0,9.0,8.0,3,2.57 +2380,88.0,9.0,9.0,10.0,10.0,10.0,9.0,21,6.18 +52947,90.0,10.0,9.0,10.0,10.0,10.0,9.0,21,6.18 +33542,90.0,9.0,8.0,10.0,10.0,9.0,9.0,2,0.61 +41325,,,,,,,,0, +72112,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.98 +70837,100.0,10.0,8.0,9.0,10.0,10.0,10.0,4,1.11 +61260,,,,,,,,1, +5111,93.0,10.0,10.0,10.0,10.0,10.0,9.0,12,3.87 +15951,94.0,10.0,10.0,9.0,10.0,10.0,9.0,13,3.86 +43981,90.0,9.0,9.0,10.0,10.0,10.0,8.0,12,3.19 +4822,100.0,10.0,9.0,10.0,10.0,10.0,9.0,7,2.33 +44636,,,,,,,,0, +60159,,,,,,,,1, +41010,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.88 +40040,100.0,10.0,10.0,10.0,10.0,10.0,9.0,4,1.08 +58488,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.76 +62419,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.82 +33936,,,,,,,,0, +45535,97.0,10.0,10.0,10.0,10.0,10.0,10.0,13,6.0 +55885,84.0,9.0,7.0,10.0,10.0,10.0,9.0,9,3.51 +32557,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.28 +34922,,,,,,,,0, +59504,100.0,10.0,10.0,6.0,10.0,10.0,10.0,1,0.63 +24314,91.0,9.0,9.0,9.0,9.0,9.0,9.0,7,1.94 +28385,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.51 +30909,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,4.24 +12792,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,4.11 +37522,,,,,,,,0, +23790,,,,,,,,0, +57395,86.0,9.0,9.0,10.0,10.0,9.0,9.0,7,1.93 +8627,93.0,10.0,10.0,7.0,10.0,9.0,9.0,6,1.75 +39119,98.0,9.0,10.0,10.0,10.0,10.0,10.0,13,4.06 +6615,100.0,10.0,10.0,10.0,9.0,10.0,9.0,3,1.23 +7244,,,,,,,,0, +44859,,,,,,,,0, +17527,100.0,9.0,10.0,8.0,10.0,10.0,10.0,4,1.82 +32864,,,,,,,,0, +64088,,,,,,,,0, +75782,93.0,9.0,10.0,10.0,10.0,10.0,9.0,3,0.82 +74328,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.58 +18544,93.0,9.0,10.0,10.0,10.0,10.0,9.0,12,3.91 +58699,97.0,10.0,9.0,10.0,10.0,10.0,9.0,6,1.73 +56545,93.0,9.0,9.0,8.0,9.0,10.0,9.0,3,1.15 +25901,,,,,,,,0, +7764,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.02 +60662,,,,,,,,0, +9597,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.8 +71287,96.0,10.0,10.0,8.0,10.0,8.0,9.0,5,1.39 +29308,,,,,,,,0, +77059,,,,,,,,0, +65123,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.38 +68605,87.0,9.0,9.0,9.0,7.0,9.0,9.0,3,1.36 +13264,60.0,8.0,8.0,8.0,6.0,8.0,8.0,1,0.73 +33986,,,,,,,,0, +51404,95.0,10.0,10.0,8.0,9.0,10.0,10.0,4,1.11 +51480,92.0,9.0,10.0,10.0,9.0,10.0,9.0,10,2.7 +10132,,,,,,,,0, +76261,,,,,,,,0, +40594,,,,,,,,0, +13679,100.0,9.0,9.0,10.0,10.0,9.0,9.0,3,1.58 +48678,,,,,,,,0, +20729,95.0,10.0,10.0,10.0,10.0,9.0,10.0,13,3.94 +21325,95.0,9.0,10.0,9.0,9.0,9.0,9.0,8,2.73 +49697,100.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.48 +9847,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,2.58 +51021,100.0,8.0,10.0,10.0,10.0,8.0,10.0,1,1.0 +2153,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.37 +33178,95.0,9.0,9.0,10.0,10.0,9.0,10.0,8,2.33 +423,84.0,9.0,8.0,10.0,9.0,10.0,9.0,9,2.55 +73752,,,,,,,,0, +71157,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.87 +30173,80.0,8.0,8.0,9.0,9.0,7.0,8.0,5,1.6 +33756,97.0,9.0,10.0,10.0,10.0,10.0,9.0,6,2.95 +57439,,,,,,,,0, +29134,100.0,10.0,10.0,10.0,10.0,9.0,10.0,12,3.36 +29257,,,,,,,,0, +27702,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,2.21 +17457,70.0,6.0,8.0,10.0,9.0,10.0,10.0,4,1.41 +34046,89.0,9.0,9.0,10.0,9.0,10.0,9.0,21,6.18 +6052,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +45529,,,,,,,,0, +76494,100.0,8.0,8.0,10.0,10.0,10.0,10.0,1,0.86 +51786,80.0,8.0,9.0,9.0,8.0,10.0,8.0,13,3.48 +8069,87.0,9.0,9.0,10.0,10.0,9.0,9.0,18,4.78 +72202,94.0,9.0,10.0,10.0,10.0,9.0,10.0,13,4.43 +10843,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,1.05 +17496,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.33 +30742,85.0,9.0,10.0,10.0,10.0,7.0,8.0,4,1.45 +49837,91.0,10.0,9.0,10.0,10.0,10.0,9.0,8,2.4 +322,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.51 +48697,20.0,2.0,2.0,2.0,2.0,2.0,2.0,2,0.54 +54904,97.0,9.0,10.0,9.0,10.0,10.0,9.0,7,2.23 +31177,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.45 +52407,100.0,8.0,8.0,10.0,10.0,10.0,10.0,1,0.7 +68538,72.0,10.0,7.0,10.0,10.0,9.0,9.0,5,1.35 +13357,90.0,10.0,8.0,9.0,10.0,10.0,10.0,2,2.0 +75425,,,,,,,,0, +31455,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,2.75 +24780,20.0,2.0,4.0,10.0,2.0,10.0,2.0,1,0.38 +3585,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.81 +6767,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.51 +17575,73.0,9.0,10.0,9.0,9.0,9.0,7.0,3,1.14 +72143,60.0,5.0,7.0,8.0,8.0,8.0,7.0,2,0.92 +64925,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,3.61 +38926,88.0,10.0,9.0,10.0,9.0,9.0,9.0,13,3.79 +60595,93.0,10.0,8.0,10.0,9.0,9.0,9.0,9,2.39 +46753,76.0,8.0,8.0,8.0,8.0,10.0,8.0,5,1.95 +33726,50.0,5.0,9.0,6.0,8.0,5.0,5.0,2,0.74 +20127,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.29 +39295,80.0,9.0,7.0,9.0,9.0,10.0,9.0,7,2.16 +3064,,,,,,,,0, +51951,,,,,,,,0, +71615,100.0,10.0,10.0,10.0,10.0,9.0,10.0,8,2.76 +49319,90.0,9.0,9.0,10.0,10.0,10.0,9.0,4,1.08 +45013,100.0,10.0,10.0,8.0,10.0,10.0,10.0,1,0.39 +22889,,,,,,,,0, +48023,94.0,10.0,9.0,10.0,10.0,9.0,10.0,7,2.33 +16290,,,,,,,,0, +31405,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.67 +10552,91.0,9.0,10.0,9.0,9.0,8.0,9.0,7,2.14 +46903,84.0,10.0,9.0,10.0,10.0,9.0,9.0,9,2.73 +11211,70.0,9.0,9.0,8.0,7.0,9.0,7.0,4,2.18 +26900,91.0,10.0,9.0,10.0,10.0,10.0,9.0,9,3.25 +38149,,,,,,,,0, +18081,97.0,10.0,10.0,10.0,9.0,10.0,10.0,7,2.04 +36916,60.0,10.0,4.0,10.0,10.0,10.0,8.0,1,0.5 +21636,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +68735,,,,,,,,0, +19967,,,,,,,,0, +19787,98.0,10.0,10.0,10.0,10.0,9.0,10.0,21,7.0 +42630,80.0,8.0,9.0,9.0,9.0,10.0,7.0,7,3.0 +57435,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,1.0 +3027,,,,,,,,0, +1332,,,,,,,,1,0.41 +39149,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +53958,,,,,,,,0, +68177,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.98 +39863,,,,,,,,0, +2485,,,,,,,,0, +16880,100.0,9.0,10.0,10.0,10.0,10.0,10.0,3,0.98 +76188,73.0,8.0,9.0,7.0,8.0,10.0,7.0,6,2.25 +13948,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.36 +7660,,,,,,,,0, +18762,94.0,10.0,10.0,10.0,10.0,9.0,9.0,18,5.05 +3115,80.0,9.0,9.0,10.0,10.0,8.0,9.0,2,1.25 +54061,97.0,9.0,10.0,10.0,10.0,10.0,9.0,12,4.5 +13799,,,,,,,,0, +63906,100.0,10.0,9.0,10.0,10.0,9.0,10.0,5,1.39 +34928,90.0,10.0,10.0,9.0,10.0,10.0,9.0,10,3.75 +11944,100.0,9.0,9.0,10.0,10.0,10.0,10.0,5,1.88 +74519,99.0,10.0,10.0,10.0,10.0,9.0,10.0,14,3.78 +49341,93.0,9.0,9.0,10.0,9.0,9.0,9.0,3,2.5 +53612,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.81 +55028,92.0,10.0,10.0,10.0,10.0,10.0,9.0,13,4.7 +39103,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.3 +29241,80.0,9.0,8.0,10.0,9.0,10.0,10.0,3,1.7 +1757,,,,,,,,0, +37275,100.0,10.0,10.0,10.0,10.0,10.0,10.0,18,4.86 +55260,90.0,9.0,8.0,10.0,10.0,10.0,10.0,2,0.58 +4169,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.72 +16114,100.0,10.0,6.0,10.0,10.0,10.0,8.0,1,0.42 +56188,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.25 +62601,93.0,9.0,9.0,10.0,9.0,9.0,9.0,6,3.67 +66377,20.0,2.0,2.0,2.0,6.0,2.0,2.0,2,0.53 +36947,,,,,,,,0, +73776,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.89 +13496,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,2.03 +71442,,,,,,,,0, +46016,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.35 +49987,84.0,9.0,9.0,10.0,10.0,10.0,9.0,6,1.88 +21458,90.0,10.0,10.0,9.0,10.0,10.0,10.0,2,1.09 +40195,80.0,10.0,6.0,10.0,10.0,8.0,8.0,1,0.86 +20569,,,,,,,,0, +5342,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.47 +59901,100.0,10.0,9.0,10.0,10.0,9.0,10.0,2,0.73 +33735,85.0,9.0,8.0,9.0,9.0,9.0,9.0,23,8.62 +35364,100.0,10.0,9.0,10.0,10.0,10.0,9.0,2,0.87 +68140,,,,,,,,0, +52844,87.0,9.0,9.0,7.0,7.0,9.0,9.0,5,1.63 +30548,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.66 +23000,100.0,10.0,10.0,10.0,10.0,10.0,10.0,15,4.25 +73377,73.0,9.0,8.0,8.0,8.0,9.0,7.0,6,2.2 +37574,80.0,8.0,8.0,4.0,4.0,10.0,8.0,1,1.0 +14643,,,,,,,,0, +70036,97.0,10.0,10.0,10.0,10.0,10.0,9.0,15,4.74 +41908,,,,,,,,0, +73117,,,,,,,,0, +2325,100.0,10.0,10.0,9.0,10.0,10.0,10.0,3,0.87 +47751,,,,,,,,0, +18862,80.0,6.0,10.0,8.0,6.0,9.0,8.0,2,1.15 +7507,,,,,,,,0, +68690,93.0,10.0,10.0,10.0,10.0,10.0,9.0,15,3.98 +30930,90.0,9.0,9.0,10.0,10.0,10.0,10.0,4,2.18 +61569,87.0,9.0,9.0,10.0,10.0,10.0,9.0,21,6.77 +31666,80.0,7.0,7.0,8.0,9.0,10.0,8.0,5,1.33 +71228,100.0,10.0,10.0,10.0,9.0,10.0,9.0,2,0.97 +45370,98.0,10.0,9.0,10.0,10.0,9.0,9.0,12,3.4 +48532,100.0,10.0,6.0,10.0,10.0,10.0,8.0,3,1.11 +47364,,,,,,,,0, +75490,100.0,10.0,9.0,10.0,10.0,10.0,9.0,2,0.54 +48322,96.0,10.0,10.0,10.0,10.0,10.0,10.0,20,5.56 +73677,88.0,9.0,8.0,10.0,9.0,9.0,9.0,8,2.16 +49,80.0,8.0,8.0,8.0,8.0,8.0,8.0,1,0.4 +13320,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.56 +44785,86.0,9.0,8.0,9.0,9.0,8.0,9.0,18,4.95 +912,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.83 +14432,,,,,,,,0, +73994,96.0,10.0,10.0,10.0,10.0,10.0,10.0,13,3.79 +53721,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.61 +62660,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.39 +38159,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.41 +43479,93.0,10.0,9.0,10.0,10.0,10.0,9.0,8,2.55 +62507,86.0,9.0,8.0,9.0,10.0,10.0,9.0,7,2.44 +71841,87.0,10.0,9.0,9.0,10.0,10.0,9.0,12,3.87 +40128,100.0,10.0,10.0,10.0,9.0,10.0,8.0,2,0.8 +24453,99.0,10.0,10.0,10.0,10.0,10.0,10.0,21,7.0 +9852,100.0,10.0,8.0,10.0,10.0,10.0,10.0,3,0.87 +40588,94.0,10.0,10.0,10.0,10.0,10.0,10.0,7,1.94 +45352,80.0,8.0,8.0,10.0,9.0,10.0,8.0,5,1.67 +24376,80.0,9.0,8.0,9.0,9.0,10.0,9.0,14,3.75 +54332,90.0,8.0,9.0,10.0,10.0,10.0,10.0,2,1.43 +30038,90.0,10.0,10.0,9.0,9.0,10.0,10.0,4,1.58 +50171,,,,,,,,0, +13032,,,,,,,,0, +51346,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,3.04 +33710,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,1.17 +19063,100.0,8.0,10.0,10.0,10.0,10.0,8.0,1,0.57 +26716,80.0,10.0,8.0,9.0,9.0,9.0,8.0,4,1.08 +35006,95.0,10.0,10.0,9.0,10.0,10.0,10.0,12,3.46 +41871,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.29 +24764,,,,,,,,0, +60581,,,,,,,,0, +11890,,,,,,,,0, +26970,100.0,10.0,8.0,10.0,10.0,10.0,8.0,1,1.0 +7886,91.0,9.0,9.0,8.0,9.0,10.0,8.0,10,3.53 +17015,100.0,8.0,10.0,8.0,10.0,6.0,8.0,1,1.0 +24445,100.0,9.0,9.0,9.0,9.0,9.0,9.0,3,1.58 +17378,100.0,9.0,10.0,9.0,10.0,10.0,10.0,4,1.36 +27200,100.0,10.0,10.0,10.0,10.0,8.0,10.0,5,2.42 +59629,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.61 +33973,99.0,10.0,10.0,10.0,10.0,10.0,10.0,24,7.42 +23785,97.0,9.0,10.0,10.0,9.0,10.0,10.0,6,2.22 +65202,76.0,8.0,7.0,8.0,9.0,9.0,7.0,5,1.5 +28520,97.0,10.0,10.0,9.0,10.0,9.0,10.0,6,1.84 +32731,100.0,9.0,9.0,9.0,9.0,9.0,9.0,4,1.04 +21179,90.0,10.0,9.0,9.0,10.0,10.0,9.0,4,1.08 +68675,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.53 +66057,,,,,,,,0, +13329,96.0,10.0,10.0,10.0,10.0,10.0,9.0,9,2.39 +38754,,,,,,,,0, +7117,90.0,9.0,10.0,8.0,9.0,9.0,8.0,2,0.71 +52931,,,,,,,,0, +75033,88.0,10.0,8.0,10.0,9.0,9.0,8.0,13,3.64 +49919,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +68058,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.57 +8219,,,,,,,,0, +31360,75.0,8.0,7.0,8.0,9.0,9.0,5.0,4,1.35 +47620,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,1.2 +51766,98.0,10.0,9.0,10.0,10.0,9.0,10.0,9,3.0 +58447,75.0,7.0,9.0,9.0,9.0,8.0,8.0,4,1.58 +53717,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +26383,95.0,10.0,10.0,10.0,10.0,9.0,9.0,21,5.68 +62138,,,,,,,,0, +20455,90.0,10.0,9.0,10.0,10.0,9.0,9.0,22,7.67 +72226,80.0,9.0,9.0,9.0,10.0,9.0,9.0,3,1.07 +25891,95.0,9.0,10.0,10.0,10.0,9.0,9.0,12,5.71 +8052,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.18 +16469,80.0,8.0,6.0,8.0,10.0,8.0,8.0,1,0.91 +73507,60.0,8.0,7.0,7.0,6.0,9.0,7.0,2,0.72 +70210,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,3.25 +50840,,,,,,,,1,0.52 +42737,,,,,,,,0, +44896,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +17826,,,,,,,,0, +75576,,,,,,,,0, +68912,,,,,,,,0, +39649,,,,,,,,0, +46619,,,,,,,,0, +13492,,,,,,,,0, +712,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.33 +70727,,,,,,,,0, +32512,80.0,10.0,10.0,4.0,2.0,10.0,8.0,1,0.73 +24590,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.39 +27478,98.0,10.0,10.0,10.0,10.0,9.0,10.0,9,3.97 +75693,,,,,,,,0, +40839,100.0,10.0,10.0,10.0,8.0,8.0,8.0,1,0.47 +45221,,,,,,,,0, +27180,60.0,8.0,10.0,10.0,10.0,8.0,6.0,1,0.71 +46959,,,,,,,,0, +64966,,,,,,,,0, +61159,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.76 +46108,,,,,,,,0, +24487,,,,,,,,0, +72640,,,,,,,,0, +7030,,,,,,,,0, +72000,80.0,8.0,8.0,10.0,8.0,10.0,8.0,1,0.45 +39447,100.0,10.0,9.0,10.0,10.0,9.0,10.0,7,1.91 +47,,,,,,,,0, +64378,,,,,,,,0, +17808,,,,,,,,0, +73337,,,,,,,,0, +21291,90.0,10.0,10.0,10.0,10.0,9.0,9.0,4,1.33 +51625,,,,,,,,0, +21004,,,,,,,,0, +63763,,,,,,,,0, +9164,,,,,,,,0, +63529,87.0,9.0,8.0,9.0,10.0,9.0,9.0,6,2.4 +69528,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +37939,,,,,,,,0, +1981,80.0,8.0,10.0,10.0,10.0,5.0,6.0,2,0.92 +36330,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.02 +52793,,,,,,,,0, +7299,,,,,,,,0, +58455,78.0,9.0,10.0,8.0,8.0,10.0,9.0,8,2.31 +70020,81.0,9.0,7.0,10.0,10.0,10.0,9.0,16,5.05 +52257,,,,,,,,0, +26766,96.0,10.0,10.0,10.0,10.0,10.0,10.0,37,10.37 +54521,87.0,9.0,9.0,9.0,10.0,10.0,9.0,4,1.13 +43049,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.72 +39612,97.0,10.0,10.0,10.0,10.0,9.0,10.0,6,2.0 +31279,80.0,10.0,8.0,8.0,8.0,10.0,10.0,1,0.28 +43339,73.0,8.0,8.0,8.0,7.0,10.0,8.0,3,1.84 +11266,,,,,,,,0, +61117,100.0,9.0,10.0,10.0,10.0,10.0,10.0,3,0.88 +37304,,,,,,,,0, +24329,89.0,10.0,10.0,10.0,10.0,9.0,8.0,9,3.51 +49017,,,,,,,,1,0.38 +2341,100.0,8.0,8.0,8.0,10.0,8.0,8.0,1,1.0 +67109,,,,,,,,0, +62965,20.0,2.0,2.0,2.0,2.0,2.0,2.0,1,0.41 +33762,85.0,8.0,9.0,10.0,10.0,9.0,9.0,4,1.67 +17611,90.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.41 +75416,94.0,9.0,9.0,9.0,10.0,10.0,9.0,14,4.57 +66040,,,,,,,,0, +11409,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,5.08 +32318,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.64 +26593,,,,,,,,0, +50136,97.0,10.0,10.0,10.0,10.0,9.0,10.0,24,6.43 +29730,97.0,10.0,10.0,10.0,10.0,9.0,10.0,18,4.82 +76470,96.0,9.0,10.0,10.0,10.0,9.0,9.0,22,5.89 +75222,94.0,10.0,10.0,10.0,10.0,9.0,10.0,13,5.82 +55723,88.0,8.0,9.0,9.0,9.0,9.0,9.0,9,2.41 +27897,82.0,9.0,9.0,10.0,10.0,9.0,8.0,13,4.19 +52891,,,,,,,,0, +37585,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.81 +3694,,,,,,,,0, +13765,87.0,9.0,9.0,10.0,10.0,10.0,7.0,3,0.98 +76252,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.4 +23605,100.0,10.0,9.0,10.0,10.0,10.0,9.0,3,2.09 +42886,80.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.11 +22388,93.0,9.0,10.0,10.0,10.0,10.0,9.0,13,3.9 +67213,95.0,10.0,10.0,9.0,10.0,10.0,10.0,9,3.46 +41534,100.0,10.0,10.0,8.0,10.0,10.0,10.0,5,1.88 +44508,80.0,6.0,8.0,10.0,8.0,8.0,8.0,1,0.36 +44309,100.0,10.0,10.0,9.0,10.0,10.0,10.0,8,2.45 +18454,85.0,9.0,9.0,8.0,9.0,9.0,9.0,11,3.37 +43039,100.0,10.0,10.0,9.0,10.0,9.0,10.0,5,2.0 +2512,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.4 +66965,88.0,10.0,9.0,10.0,9.0,10.0,9.0,8,3.58 +31912,,,,,,,,0, +9,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.42 +13881,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.3 +62903,96.0,10.0,9.0,10.0,10.0,10.0,10.0,5,2.0 +51520,,,,,,,,0, +26466,90.0,10.0,9.0,10.0,10.0,9.0,9.0,2,1.46 +23680,80.0,10.0,10.0,8.0,8.0,6.0,10.0,1,0.33 +5664,75.0,9.0,8.0,8.0,9.0,9.0,9.0,4,1.15 +861,98.0,10.0,9.0,10.0,10.0,10.0,10.0,8,2.55 +7072,97.0,10.0,10.0,9.0,10.0,10.0,10.0,6,4.0 +55525,,,,,,,,0, +28724,,,,,,,,0, +45938,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +75626,,,,,,,,0, +15597,,,,,,,,0, +20007,92.0,9.0,10.0,10.0,10.0,9.0,9.0,5,1.63 +72987,,,,,,,,0, +26440,,,,,,,,1, +28609,,,,,,,,0, +19650,,,,,,,,0, +27745,,,,,,,,1,0.52 +2973,100.0,10.0,10.0,8.0,10.0,10.0,10.0,1,0.37 +5341,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,3.66 +20517,64.0,7.0,6.0,8.0,8.0,9.0,7.0,5,1.76 +27067,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.35 +36205,,,,,,,,0, +10176,92.0,9.0,10.0,9.0,8.0,10.0,10.0,5,2.05 +26982,,,,,,,,0, +12001,,,,,,,,0, +5024,,,,,,,,0, +62892,80.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.42 +18864,80.0,10.0,8.0,10.0,8.0,10.0,10.0,1,0.79 +37412,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,1.03 +63274,80.0,8.0,9.0,9.0,9.0,9.0,8.0,11,3.88 +5672,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +67233,87.0,10.0,10.0,9.0,9.0,9.0,9.0,3,2.73 +10720,93.0,10.0,10.0,9.0,10.0,10.0,10.0,3,1.08 +48603,80.0,8.0,7.0,9.0,10.0,10.0,9.0,3,2.0 +53109,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.79 +35288,80.0,6.0,6.0,10.0,9.0,10.0,6.0,2,0.98 +51684,90.0,10.0,9.0,10.0,10.0,9.0,9.0,6,1.64 +43945,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +36631,,,,,,,,0, +59544,97.0,10.0,10.0,10.0,10.0,9.0,9.0,7,2.1 +7563,20.0,2.0,6.0,2.0,8.0,10.0,4.0,1,0.36 +22355,83.0,9.0,8.0,8.0,8.0,10.0,8.0,14,4.08 +1063,,,,,,,,1,0.56 +5502,,,,,,,,0, +47234,97.0,10.0,10.0,10.0,10.0,9.0,10.0,35,9.46 +58581,,,,,,,,0, +39241,,,,,,,,0, +50199,100.0,8.0,10.0,8.0,8.0,10.0,10.0,1,1.0 +3583,,,,,,,,0, +40277,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,3.07 +66367,,,,,,,,0, +9964,89.0,9.0,8.0,10.0,9.0,9.0,9.0,7,3.89 +32536,40.0,4.0,4.0,6.0,8.0,4.0,4.0,1,0.28 +44352,85.0,9.0,9.0,10.0,9.0,9.0,8.0,12,5.54 +75826,,,,,,,,0, +71891,90.0,10.0,9.0,9.0,10.0,10.0,10.0,2,0.81 +23995,,,,,,,,0, +8549,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.67 +24495,,,,,,,,0, +61685,87.0,9.0,9.0,10.0,10.0,9.0,9.0,6,1.73 +64902,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.3 +1386,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,1.63 +42626,,,,,,,,0, +59627,,,,,,,,0, +54979,97.0,10.0,10.0,9.0,10.0,10.0,10.0,7,2.16 +4523,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,1.08 +34300,100.0,9.0,10.0,10.0,10.0,10.0,10.0,5,1.97 +23300,100.0,10.0,10.0,10.0,10.0,8.0,10.0,6,3.27 +47914,,,,,,,,0, +54473,96.0,10.0,9.0,10.0,10.0,10.0,9.0,14,3.78 +9707,97.0,10.0,10.0,10.0,9.0,10.0,10.0,15,4.33 +15565,97.0,10.0,9.0,10.0,10.0,10.0,10.0,12,3.43 +3879,,,,,,,,0, +23659,94.0,10.0,10.0,10.0,10.0,9.0,9.0,22,7.17 +7424,,,,,,,,0, +72726,,,,,,,,0, +22486,,,,,,,,0, +39307,90.0,10.0,9.0,10.0,10.0,9.0,9.0,12,4.39 +71521,,,,,,,,0, +13713,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,1.02 +49477,97.0,10.0,9.0,10.0,10.0,10.0,9.0,9,2.52 +18207,80.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.71 +38193,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.65 +35386,87.0,10.0,10.0,10.0,10.0,10.0,9.0,9,3.29 +37132,99.0,10.0,10.0,10.0,10.0,9.0,10.0,15,4.55 +23161,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.88 +52775,100.0,10.0,10.0,9.0,10.0,10.0,10.0,3,1.02 +30086,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.79 +67602,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +65952,97.0,10.0,10.0,10.0,10.0,9.0,9.0,6,2.14 +7165,95.0,10.0,10.0,10.0,10.0,10.0,10.0,8,3.2 +43439,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.54 +76339,85.0,10.0,9.0,9.0,9.0,9.0,9.0,4,1.15 +37931,,,,,,,,1,0.28 +35751,93.0,10.0,10.0,10.0,10.0,10.0,9.0,6,2.34 +14469,100.0,8.0,10.0,10.0,10.0,10.0,8.0,1,0.75 +9596,,,,,,,,0, +50360,85.0,9.0,8.0,9.0,9.0,9.0,9.0,17,8.5 +47651,,,,,,,,0, +66374,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +38598,88.0,10.0,9.0,9.0,10.0,9.0,9.0,13,6.0 +61966,,,,,,,,0, +66678,83.0,9.0,8.0,10.0,10.0,10.0,9.0,6,2.54 +4879,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.58 +37472,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.56 +72824,97.0,10.0,9.0,10.0,10.0,10.0,10.0,7,2.28 +10158,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.56 +9638,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.55 +54070,84.0,8.0,8.0,9.0,9.0,9.0,8.0,9,2.78 +67045,92.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.46 +9754,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.34 +21199,97.0,10.0,10.0,10.0,10.0,10.0,9.0,14,4.57 +25969,87.0,9.0,9.0,8.0,8.0,9.0,9.0,6,2.09 +51,,,,,,,,0, +9820,96.0,10.0,8.0,9.0,9.0,10.0,10.0,5,1.67 +3419,100.0,10.0,10.0,10.0,10.0,10.0,10.0,17,8.1 +44265,,,,,,,,0, +2635,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,3.5 +27976,100.0,10.0,9.0,10.0,10.0,9.0,10.0,3,0.87 +40152,80.0,9.0,9.0,10.0,10.0,9.0,8.0,5,1.67 +9560,70.0,8.0,9.0,7.0,7.0,8.0,7.0,2,0.6 +42814,90.0,8.0,9.0,10.0,10.0,9.0,9.0,2,0.95 +56861,93.0,10.0,10.0,10.0,10.0,10.0,9.0,3,1.25 +23041,,,,,,,,0, +45540,100.0,10.0,10.0,9.0,10.0,10.0,10.0,16,4.57 +43720,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.34 +34536,87.0,7.0,7.0,9.0,10.0,9.0,9.0,3,0.87 +50331,92.0,10.0,10.0,10.0,10.0,10.0,9.0,5,1.46 +72922,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +58100,99.0,10.0,10.0,10.0,10.0,10.0,10.0,18,6.0 +36262,85.0,8.0,8.0,9.0,9.0,9.0,9.0,12,3.5 +64423,90.0,9.0,9.0,10.0,10.0,10.0,9.0,12,4.0 +7232,80.0,10.0,8.0,10.0,9.0,9.0,9.0,2,1.02 +7947,90.0,10.0,10.0,8.0,9.0,10.0,9.0,10,3.26 +21474,,,,,,,,0, +38878,90.0,9.0,9.0,10.0,10.0,10.0,9.0,4,1.2 +12345,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.31 +62093,70.0,9.0,7.0,9.0,10.0,8.0,9.0,2,0.58 +32085,,,,,,,,0, +64205,90.0,10.0,10.0,10.0,10.0,9.0,10.0,8,2.47 +15705,83.0,10.0,9.0,7.0,8.0,9.0,9.0,6,3.1 +50531,92.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.83 +24611,,,,,,,,0, +75999,,,,,,,,0, +14053,67.0,7.0,8.0,7.0,7.0,9.0,6.0,3,1.17 +25853,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,1.64 +55567,,,,,,,,0, +74,80.0,10.0,10.0,10.0,9.0,10.0,9.0,4,1.4 +16409,,,,,,,,0, +59492,,,,,,,,0, +43295,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.46 +39202,100.0,9.0,9.0,9.0,10.0,10.0,10.0,4,1.33 +51237,98.0,10.0,10.0,10.0,10.0,10.0,10.0,26,7.43 +24087,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.56 +27512,94.0,9.0,9.0,9.0,9.0,9.0,9.0,14,3.93 +56179,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,1.0 +23957,80.0,8.0,6.0,8.0,8.0,6.0,6.0,1,1.0 +74368,,,,,,,,0, +7964,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.29 +29123,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,1.67 +46253,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.36 +44922,,,,,,,,0, +7790,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,3.49 +33138,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.48 +21724,,,,,,,,1,0.28 +6407,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.69 +24049,94.0,10.0,9.0,9.0,9.0,10.0,9.0,8,2.67 +75406,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,1.55 +45379,80.0,9.0,8.0,10.0,10.0,9.0,8.0,5,1.88 +58419,,,,,,,,0, +75458,,,,,,,,0, +59171,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.76 +70781,100.0,10.0,10.0,10.0,9.0,10.0,10.0,3,1.32 +71444,80.0,8.0,8.0,6.0,8.0,8.0,6.0,1,0.36 +21190,,,,,,,,0, +10712,,,,,,,,0, +25616,,,,,,,,0, +34110,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,5.63 +23884,93.0,10.0,10.0,9.0,10.0,10.0,9.0,3,1.03 +47934,99.0,10.0,10.0,10.0,10.0,10.0,10.0,23,6.9 +33511,100.0,10.0,10.0,9.0,9.0,10.0,9.0,2,0.9 +39292,20.0,2.0,2.0,2.0,2.0,2.0,2.0,1,0.34 +24246,,,,,,,,1,1.0 +34942,,,,,,,,0, +63678,93.0,10.0,9.0,10.0,9.0,10.0,10.0,4,1.38 +51343,80.0,8.0,9.0,9.0,9.0,7.0,8.0,9,3.1 +57659,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.88 +15957,92.0,10.0,9.0,10.0,10.0,10.0,9.0,14,3.96 +33275,,,,,,,,0, +45691,,,,,,,,0, +53428,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.59 +33458,99.0,10.0,10.0,10.0,10.0,10.0,10.0,18,6.14 +36721,,,,,,,,0, +16889,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.32 +57092,96.0,10.0,10.0,9.0,10.0,9.0,8.0,5,1.9 +70859,,,,,,,,0, +29781,90.0,10.0,9.0,10.0,10.0,10.0,9.0,4,1.09 +38552,99.0,10.0,10.0,10.0,10.0,10.0,9.0,16,5.05 +38014,90.0,10.0,10.0,10.0,9.0,10.0,10.0,4,1.38 +39816,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +14317,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,2.86 +52710,93.0,9.0,9.0,10.0,10.0,10.0,10.0,3,0.9 +54422,90.0,10.0,8.0,10.0,10.0,9.0,9.0,4,1.41 +22963,,,,,,,,0, +10179,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.4 +40762,81.0,9.0,8.0,9.0,9.0,8.0,9.0,19,5.43 +67537,91.0,10.0,10.0,10.0,10.0,8.0,9.0,11,3.2 +70056,98.0,10.0,10.0,10.0,10.0,10.0,10.0,11,4.65 +67296,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.18 +34687,91.0,9.0,10.0,10.0,10.0,10.0,9.0,11,3.14 +69347,,,,,,,,0, +50038,70.0,8.0,6.0,10.0,10.0,10.0,8.0,2,0.66 +9379,,,,,,,,0, +63158,70.0,8.0,6.0,9.0,6.0,9.0,6.0,2,0.58 +2276,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.35 +15391,,,,,,,,0, +76268,,,,,,,,1, +15033,90.0,10.0,8.0,10.0,10.0,9.0,9.0,6,2.31 +63586,,,,,,,,0, +29043,100.0,10.0,9.0,10.0,10.0,10.0,10.0,4,1.33 +72800,98.0,10.0,9.0,10.0,10.0,10.0,9.0,11,3.2 +42362,94.0,10.0,10.0,10.0,10.0,10.0,9.0,25,7.21 +6707,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.29 +57458,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,1.18 +17851,80.0,8.0,8.0,9.0,8.0,9.0,8.0,5,2.03 +5649,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,4.36 +31336,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,5.9 +76526,,,,,,,,1,0.38 +64489,100.0,10.0,9.0,10.0,10.0,10.0,10.0,7,3.23 +10177,95.0,10.0,10.0,10.0,10.0,10.0,9.0,22,6.17 +60780,95.0,10.0,10.0,10.0,10.0,9.0,9.0,5,1.4 +7260,98.0,10.0,9.0,10.0,10.0,10.0,10.0,8,2.4 +12069,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,1.6 +54537,98.0,10.0,10.0,10.0,10.0,9.0,10.0,26,7.5 +13853,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.71 +15810,93.0,9.0,10.0,10.0,10.0,10.0,9.0,9,4.35 +51440,97.0,10.0,10.0,10.0,10.0,10.0,10.0,7,1.98 +68974,97.0,10.0,10.0,10.0,10.0,10.0,10.0,19,5.28 +15417,97.0,9.0,9.0,10.0,10.0,10.0,9.0,6,2.17 +21071,91.0,9.0,10.0,10.0,10.0,10.0,9.0,13,3.82 +37242,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,1.54 +14823,,,,,,,,0, +31134,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.61 +65468,87.0,10.0,9.0,10.0,9.0,9.0,9.0,3,0.88 +8983,94.0,10.0,10.0,9.0,10.0,10.0,9.0,22,6.23 +61647,96.0,10.0,9.0,9.0,10.0,10.0,10.0,11,5.32 +21659,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.83 +69154,80.0,7.0,9.0,10.0,10.0,9.0,8.0,2,0.58 +76606,100.0,10.0,9.0,10.0,9.0,10.0,10.0,4,1.15 +71436,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,3.0 +68215,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,2.55 +8531,100.0,9.0,9.0,10.0,10.0,9.0,10.0,3,1.07 +64776,95.0,10.0,10.0,9.0,10.0,10.0,10.0,16,8.89 +41482,80.0,10.0,8.0,10.0,10.0,10.0,9.0,2,1.11 +3920,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,6.43 +25981,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,1.11 +46883,,,,,,,,0, +29496,,,,,,,,0, +60937,80.0,9.0,9.0,8.0,10.0,10.0,8.0,8,2.89 +64690,40.0,6.0,6.0,10.0,10.0,8.0,6.0,1,0.53 +71670,,,,,,,,1,0.28 +59973,93.0,9.0,9.0,10.0,10.0,9.0,9.0,4,1.09 +62707,90.0,10.0,8.0,9.0,10.0,9.0,9.0,8,2.33 +65540,87.0,9.0,8.0,10.0,10.0,10.0,9.0,15,4.29 +37749,,,,,,,,0, +3887,92.0,10.0,8.0,10.0,10.0,10.0,10.0,33,10.88 +38283,,,,,,,,0, +28411,,,,,,,,0, +7534,,,,,,,,1,0.29 +41105,90.0,9.0,9.0,10.0,10.0,9.0,9.0,4,1.56 +66574,80.0,10.0,10.0,8.0,10.0,10.0,6.0,1,0.37 +60183,90.0,9.0,5.0,7.0,10.0,9.0,9.0,2,2.0 +30345,85.0,9.0,9.0,8.0,7.0,8.0,8.0,14,4.77 +47402,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.02 +72056,98.0,10.0,10.0,10.0,10.0,10.0,9.0,9,3.38 +73791,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,2.83 +30627,97.0,10.0,10.0,9.0,10.0,10.0,10.0,12,3.46 +32028,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.63 +38127,85.0,10.0,7.0,10.0,10.0,10.0,10.0,4,1.71 +75332,96.0,10.0,10.0,10.0,10.0,9.0,9.0,10,2.88 +49290,97.0,10.0,10.0,10.0,10.0,10.0,10.0,19,5.48 +55545,92.0,9.0,10.0,10.0,9.0,10.0,9.0,20,6.45 +23907,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.91 +39210,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.84 +30102,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,2.27 +27532,,,,,,,,0, +24651,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.67 +20419,80.0,10.0,8.0,8.0,10.0,10.0,10.0,1,0.32 +2082,93.0,10.0,9.0,9.0,10.0,10.0,10.0,6,3.27 +29081,87.0,10.0,9.0,10.0,10.0,9.0,9.0,3,1.18 +72891,,,,,,,,0, +63753,85.0,10.0,9.0,10.0,10.0,10.0,8.0,4,1.29 +30279,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.32 +46543,100.0,10.0,9.0,9.0,10.0,9.0,10.0,4,1.15 +27520,87.0,9.0,9.0,10.0,9.0,10.0,9.0,12,4.19 +36252,88.0,9.0,9.0,10.0,10.0,10.0,10.0,8,2.61 +59552,91.0,9.0,8.0,9.0,9.0,10.0,9.0,7,2.44 +53407,95.0,10.0,9.0,10.0,10.0,10.0,10.0,24,8.28 +15549,80.0,6.0,8.0,6.0,8.0,8.0,8.0,1,0.43 +18179,100.0,9.0,9.0,10.0,10.0,10.0,10.0,3,2.31 +62489,95.0,10.0,9.0,9.0,10.0,10.0,9.0,11,3.17 +58829,97.0,10.0,10.0,10.0,10.0,10.0,9.0,7,3.23 +3541,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.27 +51357,84.0,8.0,9.0,9.0,9.0,10.0,8.0,9,3.51 +22030,91.0,9.0,10.0,10.0,9.0,10.0,9.0,7,2.63 +64968,,,,,,,,0, +22626,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.38 +70118,95.0,9.0,9.0,10.0,9.0,10.0,9.0,15,4.84 +55918,91.0,10.0,8.0,10.0,10.0,10.0,9.0,9,2.87 +23933,100.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.55 +40476,91.0,9.0,9.0,9.0,9.0,10.0,10.0,11,3.51 +20649,80.0,9.0,9.0,9.0,9.0,8.0,9.0,15,6.92 +55726,,,,,,,,1,1.0 +56860,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.4 +33764,99.0,10.0,10.0,10.0,10.0,10.0,10.0,22,7.25 +6068,80.0,9.0,7.0,9.0,9.0,10.0,8.0,4,1.45 +25039,92.0,10.0,9.0,10.0,10.0,10.0,10.0,5,2.31 +74370,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.59 +55394,89.0,9.0,10.0,9.0,9.0,9.0,9.0,7,2.39 +52916,,,,,,,,0, +72691,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,1.0 +55149,,,,,,,,0, +67911,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.71 +1734,,,,,,,,1,1.0 +4045,93.0,10.0,10.0,10.0,9.0,10.0,9.0,8,3.16 +69754,99.0,10.0,10.0,10.0,10.0,10.0,10.0,15,5.0 +40016,95.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.82 +40706,93.0,10.0,9.0,10.0,10.0,9.0,9.0,3,1.45 +4668,,,,,,,,0, +28398,100.0,10.0,10.0,10.0,10.0,8.0,9.0,2,1.62 +51701,87.0,10.0,9.0,10.0,10.0,9.0,9.0,3,1.01 +3489,,,,,,,,0, +33552,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.3 +24714,97.0,10.0,10.0,9.0,10.0,9.0,10.0,6,2.57 +30007,92.0,9.0,9.0,9.0,9.0,9.0,9.0,10,3.16 +14356,60.0,6.0,6.0,4.0,6.0,10.0,6.0,1,0.45 +50648,,,,,,,,0, +62461,91.0,10.0,9.0,10.0,10.0,10.0,10.0,9,2.9 +55910,100.0,10.0,10.0,9.0,10.0,10.0,9.0,7,2.19 +76100,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.11 +28684,,,,,,,,0, +25094,91.0,10.0,10.0,10.0,10.0,9.0,9.0,20,5.83 +7469,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.96 +38342,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,1.0 +33387,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,2.78 +73491,94.0,10.0,10.0,10.0,10.0,10.0,10.0,14,5.38 +54398,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,1.01 +20769,100.0,8.0,8.0,8.0,8.0,8.0,8.0,1,0.45 +76444,85.0,9.0,9.0,10.0,10.0,8.0,9.0,4,1.48 +1783,90.0,9.0,10.0,10.0,10.0,10.0,10.0,2,0.9 +60758,91.0,10.0,9.0,10.0,10.0,10.0,9.0,9,2.76 +74709,87.0,10.0,9.0,10.0,10.0,10.0,9.0,3,1.45 +73125,85.0,10.0,10.0,10.0,10.0,9.0,10.0,8,2.76 +47695,95.0,10.0,8.0,10.0,10.0,10.0,10.0,14,4.04 +67754,82.0,9.0,9.0,9.0,9.0,9.0,9.0,10,3.03 +11114,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,2.4 +38639,85.0,9.0,10.0,9.0,9.0,10.0,9.0,25,7.21 +66706,85.0,10.0,10.0,10.0,9.0,9.0,9.0,11,3.44 +64727,,,,,,,,0, +71297,,,,,,,,0, +52450,53.0,5.0,7.0,5.0,5.0,7.0,5.0,3,1.45 +75379,100.0,10.0,10.0,10.0,10.0,10.0,10.0,20,6.19 +29637,97.0,10.0,9.0,10.0,10.0,10.0,10.0,6,1.75 +56462,85.0,8.0,8.0,8.0,9.0,10.0,8.0,4,1.35 +44122,,,,,,,,0, +47139,92.0,9.0,10.0,9.0,10.0,10.0,10.0,5,4.17 +68763,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,1.0 +58739,90.0,10.0,9.0,10.0,10.0,9.0,9.0,12,3.53 +27383,,,,,,,,0, +50471,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.41 +46280,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,1.07 +40582,,,,,,,,0, +23232,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.58 +69346,97.0,10.0,10.0,10.0,10.0,10.0,9.0,18,5.24 +24562,40.0,10.0,2.0,10.0,10.0,10.0,6.0,1,0.91 +52383,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.76 +54691,90.0,10.0,8.0,10.0,10.0,9.0,10.0,4,3.33 +68019,100.0,10.0,10.0,10.0,9.0,9.0,9.0,3,1.07 +7464,88.0,10.0,10.0,10.0,10.0,9.0,8.0,5,2.42 +37030,100.0,10.0,10.0,10.0,10.0,8.0,10.0,2,0.61 +8546,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,0.87 +71036,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,1.0 +49060,94.0,10.0,10.0,10.0,10.0,10.0,9.0,40,11.11 +12877,98.0,10.0,10.0,10.0,10.0,10.0,10.0,28,9.23 +2042,80.0,9.0,9.0,9.0,9.0,9.0,9.0,4,1.25 +62002,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +63401,60.0,6.0,6.0,6.0,7.0,6.0,5.0,2,0.65 +8024,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,5.68 +67154,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.83 +5122,100.0,9.0,10.0,10.0,10.0,9.0,10.0,6,2.47 +52191,93.0,10.0,9.0,10.0,10.0,10.0,10.0,8,2.67 +71062,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,3.3 +66772,,,,,,,,0, +38693,98.0,10.0,10.0,10.0,10.0,10.0,10.0,27,8.02 +19297,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.49 +32326,97.0,10.0,9.0,10.0,9.0,10.0,10.0,6,2.73 +37051,80.0,9.0,8.0,9.0,9.0,10.0,9.0,3,1.07 +40505,70.0,10.0,8.0,9.0,9.0,10.0,9.0,2,0.8 +66745,92.0,9.0,9.0,9.0,9.0,8.0,9.0,5,1.53 +8986,90.0,10.0,9.0,9.0,10.0,9.0,9.0,10,3.61 +53281,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.39 +6709,93.0,9.0,8.0,10.0,9.0,9.0,9.0,3,1.17 +75440,94.0,9.0,10.0,10.0,10.0,10.0,9.0,13,4.59 +6878,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.33 +18126,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,2.47 +33323,87.0,9.0,8.0,10.0,10.0,10.0,9.0,12,4.0 +22352,,,,,,,,0, +29309,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.58 +36013,97.0,10.0,10.0,10.0,10.0,10.0,9.0,7,2.44 +26932,70.0,7.0,7.0,10.0,10.0,6.0,8.0,2,0.8 +67497,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,1.0 +72082,60.0,4.0,4.0,4.0,4.0,8.0,2.0,1,0.39 +76904,,,,,,,,0, +34413,,,,,,,,0, +14001,95.0,10.0,9.0,10.0,10.0,9.0,9.0,19,5.59 +60793,,,,,,,,0, +23056,97.0,10.0,9.0,9.0,10.0,9.0,10.0,7,2.73 +28961,83.0,10.0,9.0,10.0,10.0,10.0,8.0,6,2.02 +60141,100.0,10.0,10.0,8.0,8.0,10.0,10.0,1,0.49 +11002,80.0,9.0,9.0,8.0,10.0,8.0,8.0,5,1.9 +47396,,,,,,,,0, +62132,95.0,9.0,9.0,9.0,10.0,10.0,9.0,13,4.06 +31437,,,,,,,,0, +23048,,,,,,,,0, +27674,80.0,8.0,8.0,10.0,10.0,8.0,8.0,2,1.67 +31273,76.0,8.0,7.0,8.0,8.0,9.0,7.0,9,2.7 +50367,,,,,,,,0, +5340,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.92 +26068,,,,,,,,0, +16821,,,,,,,,0, +71420,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.34 +35923,98.0,10.0,10.0,10.0,10.0,8.0,9.0,13,3.82 +48947,93.0,10.0,9.0,9.0,9.0,9.0,9.0,3,1.43 +20441,,,,,,,,1,0.34 +48118,96.0,10.0,10.0,10.0,10.0,10.0,9.0,15,5.56 +44387,,,,,,,,1, +30504,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.37 +5822,91.0,10.0,10.0,10.0,10.0,10.0,9.0,7,2.44 +18083,95.0,10.0,10.0,10.0,10.0,10.0,10.0,23,8.12 +29994,100.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.63 +39842,,,,,,,,0, +15611,87.0,9.0,8.0,9.0,9.0,8.0,8.0,4,2.73 +73957,,,,,,,,1, +67393,,,,,,,,0, +7494,,,,,,,,0, +34318,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.72 +30741,80.0,8.0,9.0,10.0,8.0,9.0,8.0,8,2.76 +19221,88.0,9.0,9.0,9.0,9.0,10.0,9.0,8,2.58 +29346,50.0,5.0,6.0,5.0,5.0,10.0,5.0,2,0.79 +2820,84.0,9.0,7.0,10.0,10.0,9.0,8.0,5,1.53 +44137,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,2.5 +39357,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.62 +43173,94.0,10.0,9.0,9.0,9.0,9.0,9.0,7,2.56 +3550,70.0,7.0,9.0,7.0,6.0,8.0,6.0,2,1.76 +30646,60.0,7.0,7.0,7.0,8.0,9.0,7.0,3,1.23 +14968,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.68 +32007,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.38 +39693,,,,,,,,0, +4813,93.0,9.0,10.0,9.0,10.0,9.0,9.0,3,1.61 +4422,94.0,10.0,9.0,10.0,10.0,9.0,10.0,7,2.04 +21342,97.0,10.0,10.0,10.0,9.0,10.0,10.0,15,5.06 +25804,100.0,10.0,10.0,10.0,10.0,9.0,8.0,2,0.57 +74211,70.0,8.0,9.0,10.0,9.0,8.0,9.0,2,1.0 +60286,90.0,10.0,10.0,10.0,7.0,10.0,9.0,4,1.69 +439,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.34 +10781,,,,,,,,0, +57953,,,,,,,,0, +858,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,1.0 +26899,,,,,,,,0, +57675,100.0,10.0,10.0,10.0,10.0,10.0,9.0,4,1.21 +20899,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.85 +59151,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,2.34 +428,,,,,,,,0, +60531,20.0,2.0,6.0,2.0,2.0,6.0,6.0,1,0.44 +55620,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.71 +27292,80.0,9.0,8.0,8.0,8.0,9.0,9.0,12,4.04 +4379,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,3.11 +65260,89.0,9.0,9.0,9.0,10.0,9.0,9.0,9,3.25 +40487,90.0,10.0,10.0,10.0,10.0,10.0,9.0,10,5.0 +11264,96.0,10.0,10.0,10.0,9.0,10.0,10.0,9,2.6 +19615,88.0,9.0,8.0,10.0,10.0,8.0,8.0,5,1.69 +24111,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.15 +39565,70.0,8.0,7.0,9.0,9.0,10.0,7.0,16,5.22 +29411,85.0,9.0,10.0,8.0,9.0,7.0,8.0,5,1.79 +61673,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.3 +43029,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.74 +36168,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.37 +19521,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.88 +59071,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,2.5 +39696,100.0,10.0,10.0,9.0,10.0,10.0,8.0,2,0.73 +32035,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,2.02 +36158,80.0,8.0,9.0,9.0,9.0,8.0,9.0,3,0.97 +62133,,,,,,,,0, +58306,99.0,10.0,10.0,10.0,10.0,9.0,10.0,15,5.29 +71494,90.0,10.0,9.0,10.0,10.0,8.0,7.0,3,1.58 +51140,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,1.0 +13150,,,,,,,,0, +63209,,,,,,,,1,0.59 +24456,93.0,10.0,10.0,10.0,10.0,10.0,10.0,10,3.8 +2945,,,,,,,,0, +24037,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.59 +5432,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.38 +53122,85.0,10.0,9.0,10.0,10.0,9.0,9.0,4,1.67 +7828,95.0,10.0,9.0,10.0,10.0,9.0,10.0,13,5.0 +6012,67.0,7.0,6.0,7.0,7.0,7.0,7.0,3,1.45 +68232,80.0,9.0,7.0,9.0,9.0,10.0,8.0,2,0.78 +10131,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.58 +12072,80.0,9.0,6.0,8.0,10.0,9.0,8.0,2,0.75 +60043,69.0,8.0,7.0,6.0,7.0,9.0,8.0,7,2.28 +52984,95.0,10.0,10.0,9.0,9.0,10.0,9.0,8,2.61 +19277,80.0,9.0,7.0,9.0,9.0,10.0,9.0,3,1.13 +45685,80.0,10.0,6.0,10.0,10.0,10.0,10.0,1,0.88 +68698,90.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.97 +11803,100.0,10.0,10.0,10.0,10.0,10.0,10.0,27,8.35 +3912,,,,,,,,0, +53928,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,2.22 +36282,100.0,10.0,10.0,9.0,10.0,9.0,8.0,3,1.34 +72741,,,,,,,,0, +54990,,,,,,,,1,1.0 +72168,67.0,7.0,9.0,7.0,4.0,10.0,10.0,3,0.87 +43346,,,,,,,,1, +60988,89.0,9.0,9.0,10.0,9.0,10.0,9.0,9,3.18 +43548,91.0,9.0,9.0,9.0,9.0,9.0,9.0,7,3.04 +3268,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.79 +76641,40.0,6.0,6.0,10.0,2.0,10.0,10.0,1,0.55 +4030,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,2.7 +39319,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.7 +36486,91.0,10.0,10.0,10.0,10.0,10.0,10.0,9,4.66 +10973,60.0,6.0,6.0,6.0,6.0,10.0,7.0,2,0.78 +35558,100.0,9.0,10.0,6.0,9.0,10.0,9.0,2,0.73 +12535,93.0,9.0,9.0,10.0,10.0,9.0,9.0,12,3.75 +5694,80.0,10.0,10.0,9.0,10.0,10.0,8.0,3,0.97 +47843,99.0,10.0,10.0,10.0,10.0,9.0,10.0,18,5.93 +58758,,,,,,,,0, +67242,,,,,,,,0, +65571,,,,,,,,0, +19139,,,,,,,,0, +37143,,,,,,,,0, +43057,,,,,,,,0, +45377,81.0,9.0,8.0,10.0,10.0,9.0,8.0,15,6.16 +36950,,,,,,,,0, +30667,,,,,,,,0, +32356,80.0,10.0,10.0,6.0,10.0,10.0,10.0,1,1.0 +36974,100.0,10.0,10.0,8.0,4.0,10.0,8.0,1,1.0 +33006,,,,,,,,0, +65900,,,,,,,,0, +2012,,,,,,,,0, +31020,,,,,,,,0, +47955,,,,,,,,0, +25626,,,,,,,,0, +59308,,,,,,,,0, +11816,,,,,,,,0, +16766,60.0,8.0,10.0,8.0,4.0,10.0,6.0,1,1.0 +55992,20.0,2.0,8.0,6.0,4.0,8.0,2.0,1,1.0 +69436,,,,,,,,0, +11219,20.0,2.0,2.0,2.0,2.0,2.0,2.0,1,1.0 +44418,,,,,,,,0, +23890,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +45977,,,,,,,,0, +25322,,,,,,,,0, +24767,,,,,,,,0, +46054,,,,,,,,0, +7366,,,,,,,,0, +70506,,,,,,,,0, +30786,,,,,,,,0, +48993,,,,,,,,0, +15303,,,,,,,,0, +30836,,,,,,,,0, +75136,,,,,,,,0, +30750,,,,,,,,0, +46986,,,,,,,,0, +21836,,,,,,,,0, +4935,,,,,,,,0, +48033,,,,,,,,0, +41014,,,,,,,,0, +30097,,,,,,,,0, +28586,,,,,,,,0, +67613,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +70305,,,,,,,,0, +48008,,,,,,,,0, +54508,60.0,8.0,10.0,2.0,2.0,8.0,6.0,1,1.0 +61962,,,,,,,,0, +16533,60.0,6.0,6.0,2.0,4.0,10.0,8.0,1,1.0 +676,,,,,,,,0, +49811,,,,,,,,0, +61343,,,,,,,,0, +38318,,,,,,,,0, +6812,,,,,,,,0, +65112,80.0,10.0,10.0,8.0,10.0,10.0,8.0,1,1.0 +71592,,,,,,,,0, +24102,80.0,8.0,10.0,8.0,10.0,10.0,10.0,1,1.0 +67992,,,,,,,,0, +31000,80.0,6.0,8.0,8.0,6.0,10.0,8.0,1,1.0 +68656,,,,,,,,0, +11625,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.75 +52333,,,,,,,,0, +31250,,,,,,,,0, +26092,,,,,,,,0, +74695,,,,,,,,0, +41958,,,,,,,,0, +39085,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.79 +5768,100.0,10.0,10.0,6.0,6.0,10.0,8.0,1,1.0 +59252,,,,,,,,0, +16239,,,,,,,,0, +14257,,,,,,,,0, +4131,,,,,,,,0, +58468,,,,,,,,0, +56997,,,,,,,,0, +760,,,,,,,,0, +36400,,,,,,,,0, +31499,,,,,,,,0, +38954,,,,,,,,0, +36328,,,,,,,,0, +45139,80.0,8.0,8.0,6.0,6.0,10.0,10.0,1,0.36 +5599,,,,,,,,0, +16500,,,,,,,,0, +73909,,,,,,,,0, +35190,,,,,,,,0, +8829,,,,,,,,0, +21895,,,,,,,,0, +71847,80.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.86 +15400,70.0,7.0,9.0,7.0,8.0,8.0,6.0,3,1.18 +58021,,,,,,,,0, +52212,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,2.61 +47297,93.0,9.0,9.0,10.0,10.0,10.0,10.0,3,1.67 +35308,,,,,,,,0, +4876,,,,,,,,0, +74838,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.69 +66366,100.0,10.0,8.0,10.0,9.0,10.0,10.0,2,0.87 +388,86.0,8.0,9.0,9.0,9.0,9.0,9.0,7,2.12 +18048,83.0,10.0,9.0,10.0,10.0,10.0,8.0,7,4.04 +19208,90.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.65 +54900,86.0,10.0,8.0,10.0,10.0,10.0,9.0,7,2.33 +51359,88.0,9.0,9.0,9.0,10.0,10.0,10.0,5,1.74 +12953,91.0,9.0,9.0,10.0,10.0,10.0,9.0,8,2.42 +19249,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.58 +35133,80.0,10.0,9.0,10.0,10.0,9.0,9.0,4,1.36 +54681,92.0,10.0,10.0,10.0,10.0,9.0,10.0,12,3.71 +13065,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,2.76 +58407,98.0,10.0,9.0,10.0,10.0,10.0,10.0,10,3.95 +51888,84.0,8.0,9.0,8.0,8.0,9.0,8.0,5,1.72 +71543,89.0,9.0,9.0,10.0,10.0,9.0,9.0,11,3.59 +24960,71.0,9.0,7.0,9.0,9.0,9.0,8.0,7,3.44 +24598,80.0,10.0,9.0,10.0,9.0,9.0,10.0,5,2.03 +42931,89.0,10.0,9.0,9.0,10.0,9.0,9.0,11,3.84 +37530,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.91 +75312,100.0,10.0,10.0,9.0,10.0,9.0,9.0,2,1.58 +28465,97.0,10.0,10.0,10.0,10.0,10.0,10.0,14,4.2 +66035,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.56 +53221,96.0,10.0,9.0,10.0,10.0,10.0,10.0,5,3.66 +64770,87.0,10.0,10.0,9.0,10.0,8.0,9.0,6,2.14 +35959,100.0,10.0,6.0,10.0,10.0,10.0,10.0,1,1.0 +75531,96.0,9.0,10.0,10.0,10.0,10.0,10.0,11,3.51 +73211,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.76 +26370,,,,,,,,0, +76862,,,,,,,,0, +27234,,,,,,,,0, +12263,,,,,,,,0, +15107,,,,,,,,0, +57173,,,,,,,,0, +38315,87.0,10.0,10.0,9.0,9.0,9.0,10.0,3,1.43 +44961,,,,,,,,1,0.3 +41808,,,,,,,,0, +35767,93.0,10.0,8.0,10.0,10.0,7.0,9.0,3,3.0 +40383,95.0,10.0,10.0,10.0,10.0,8.0,9.0,4,1.15 +54660,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,2.91 +30526,90.0,10.0,10.0,10.0,10.0,8.0,10.0,2,0.59 +33558,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.6 +8408,,,,,,,,0, +25229,93.0,10.0,10.0,8.0,9.0,8.0,10.0,6,5.0 +52827,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.91 +53753,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.83 +28179,,,,,,,,1,0.32 +32456,87.0,9.0,9.0,10.0,9.0,9.0,9.0,6,2.5 +62313,,,,,,,,0, +63962,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,1.97 +29631,100.0,10.0,10.0,10.0,10.0,9.0,9.0,4,1.5 +11275,86.0,9.0,9.0,9.0,9.0,7.0,9.0,7,2.63 +1468,87.0,10.0,9.0,9.0,9.0,9.0,9.0,11,3.17 +57382,60.0,10.0,10.0,10.0,8.0,10.0,10.0,1,0.42 +51907,100.0,10.0,9.0,7.0,10.0,9.0,10.0,4,1.41 +56434,90.0,10.0,10.0,10.0,10.0,10.0,10.0,4,2.5 +37691,83.0,9.0,9.0,9.0,9.0,9.0,9.0,6,2.34 +49366,80.0,10.0,9.0,9.0,9.0,10.0,9.0,7,2.47 +70800,83.0,9.0,9.0,10.0,9.0,8.0,9.0,12,3.83 +73457,80.0,9.0,9.0,9.0,7.0,10.0,9.0,3,3.0 +52652,,,,,,,,0, +46895,86.0,9.0,9.0,10.0,10.0,9.0,9.0,10,5.45 +43539,80.0,10.0,9.0,8.0,9.0,10.0,9.0,4,1.17 +65701,67.0,5.0,9.0,5.0,5.0,7.0,5.0,3,1.0 +23151,,,,,,,,0, +31836,,,,,,,,0, +65406,100.0,10.0,10.0,9.0,10.0,10.0,10.0,3,1.15 +37583,93.0,10.0,9.0,10.0,10.0,10.0,10.0,6,2.54 +17158,95.0,10.0,10.0,10.0,10.0,10.0,9.0,12,5.54 +23651,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.54 +67699,88.0,8.0,9.0,9.0,10.0,10.0,9.0,13,6.84 +67898,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +38252,89.0,10.0,9.0,10.0,10.0,10.0,10.0,17,5.2 +71218,,,,,,,,0, +43547,96.0,10.0,10.0,10.0,10.0,10.0,9.0,5,2.73 +28914,87.0,9.0,9.0,10.0,10.0,9.0,9.0,9,2.73 +58048,74.0,8.0,6.0,8.0,8.0,9.0,8.0,10,3.13 +73911,100.0,9.0,9.0,9.0,10.0,9.0,10.0,3,1.67 +69680,,,,,,,,0, +46205,90.0,9.0,8.0,10.0,10.0,10.0,10.0,4,2.73 +5667,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,1.58 +13091,100.0,10.0,10.0,9.0,10.0,10.0,9.0,5,1.92 +1018,93.0,10.0,9.0,9.0,10.0,10.0,9.0,8,2.67 +36849,88.0,10.0,9.0,9.0,10.0,9.0,9.0,10,2.97 +5879,,,,,,,,1,0.58 +52920,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.78 +11620,80.0,10.0,10.0,10.0,10.0,9.0,9.0,5,2.31 +37616,90.0,10.0,9.0,10.0,9.0,8.0,9.0,4,1.26 +49677,84.0,10.0,8.0,10.0,10.0,10.0,9.0,9,3.86 +44884,90.0,9.0,9.0,8.0,8.0,9.0,9.0,2,0.65 +17017,,,,,,,,0, +39397,,,,,,,,0, +520,80.0,9.0,8.0,7.0,7.0,9.0,8.0,8,2.86 +8010,80.0,10.0,8.0,8.0,10.0,10.0,10.0,1,0.36 +63413,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,4.64 +38537,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,3.0 +23195,,,,,,,,0, +7384,94.0,9.0,10.0,10.0,10.0,10.0,9.0,7,2.31 +17928,87.0,9.0,9.0,7.0,8.0,10.0,9.0,3,0.91 +52926,75.0,8.0,7.0,8.0,8.0,9.0,8.0,11,4.52 +31784,100.0,8.0,8.0,10.0,10.0,10.0,10.0,1,0.71 +52951,100.0,10.0,9.0,10.0,10.0,10.0,9.0,5,3.06 +74305,85.0,9.0,10.0,9.0,9.0,9.0,8.0,12,4.04 +16903,,,,,,,,0, +76159,80.0,10.0,6.0,6.0,8.0,8.0,8.0,1,0.36 +7049,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,2.5 +58700,93.0,10.0,9.0,10.0,10.0,9.0,9.0,3,1.64 +40591,,,,,,,,0, +11368,100.0,10.0,10.0,8.0,10.0,10.0,10.0,2,0.97 +62359,100.0,10.0,9.0,10.0,10.0,10.0,10.0,4,1.25 +64828,97.0,10.0,10.0,10.0,10.0,10.0,9.0,15,4.95 +54556,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.7 +71064,,,,,,,,0, +15081,,,,,,,,0, +24116,84.0,10.0,8.0,9.0,10.0,9.0,10.0,9,3.46 +9790,,,,,,,,0, +36809,80.0,8.0,10.0,10.0,10.0,9.0,9.0,2,0.79 +3613,,,,,,,,0, +11087,80.0,9.0,7.0,10.0,10.0,9.0,9.0,4,3.43 +2189,,,,,,,,0, +59773,98.0,10.0,10.0,10.0,10.0,10.0,9.0,10,3.16 +26,91.0,9.0,9.0,9.0,10.0,10.0,9.0,13,4.19 +23706,91.0,10.0,10.0,10.0,10.0,10.0,9.0,20,6.52 +37085,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.74 +44292,,,,,,,,0, +34448,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.56 +25807,90.0,10.0,9.0,10.0,10.0,10.0,8.0,18,5.81 +61106,98.0,10.0,10.0,9.0,10.0,10.0,10.0,9,2.97 +2585,90.0,8.0,8.0,10.0,10.0,8.0,8.0,2,0.62 +9947,97.0,10.0,8.0,10.0,10.0,10.0,10.0,6,2.61 +72183,86.0,10.0,9.0,10.0,9.0,10.0,9.0,10,3.45 +417,100.0,10.0,8.0,10.0,10.0,10.0,10.0,4,1.28 +58670,,,,,,,,0, +48905,97.0,9.0,10.0,10.0,10.0,8.0,10.0,7,2.69 +43394,80.0,6.0,8.0,10.0,10.0,10.0,8.0,1,1.0 +49941,97.0,10.0,10.0,10.0,10.0,10.0,9.0,7,2.28 +53379,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.32 +67995,87.0,9.0,9.0,9.0,10.0,10.0,10.0,3,0.92 +51812,100.0,9.0,10.0,10.0,10.0,10.0,10.0,3,1.55 +1954,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.44 +76236,82.0,9.0,9.0,10.0,10.0,10.0,8.0,11,4.46 +33521,88.0,9.0,8.0,9.0,9.0,9.0,8.0,10,4.0 +34064,80.0,10.0,8.0,10.0,10.0,10.0,9.0,3,1.02 +43178,,,,,,,,0, +62079,100.0,10.0,10.0,9.0,10.0,10.0,9.0,2,0.7 +22758,89.0,10.0,9.0,10.0,10.0,10.0,9.0,11,3.33 +4059,80.0,9.0,7.0,10.0,10.0,10.0,9.0,5,2.27 +10698,80.0,8.0,6.0,4.0,8.0,10.0,8.0,2,1.09 +29971,,,,,,,,0, +58267,96.0,10.0,8.0,10.0,10.0,8.0,8.0,5,1.7 +60065,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,2.0 +38446,93.0,10.0,9.0,10.0,10.0,10.0,8.0,8,2.67 +32260,,,,,,,,0, +44616,80.0,8.0,8.0,8.0,8.0,10.0,8.0,1,1.0 +35484,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.18 +15465,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,0.97 +28925,100.0,10.0,10.0,10.0,10.0,10.0,10.0,15,5.23 +68148,100.0,10.0,10.0,10.0,10.0,10.0,9.0,9,2.93 +72157,,,,,,,,0, +37847,,,,,,,,0, +15106,90.0,10.0,10.0,9.0,8.0,10.0,9.0,2,1.33 +67510,87.0,9.0,10.0,10.0,10.0,9.0,8.0,6,3.16 +63289,98.0,10.0,10.0,9.0,10.0,9.0,9.0,11,3.67 +69893,,,,,,,,0, +41025,96.0,10.0,9.0,10.0,10.0,9.0,9.0,12,4.0 +73264,93.0,10.0,9.0,10.0,10.0,9.0,10.0,3,1.18 +67743,,,,,,,,0, +48480,80.0,8.0,9.0,8.0,8.0,10.0,8.0,4,1.74 +28024,,,,,,,,0, +27664,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.81 +31782,,,,,,,,0, +72977,88.0,9.0,8.0,10.0,10.0,10.0,8.0,5,3.75 +22556,90.0,10.0,10.0,7.0,9.0,10.0,10.0,4,1.48 +40087,80.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.41 +57136,,,,,,,,0, +60046,84.0,8.0,8.0,9.0,8.0,8.0,8.0,6,2.2 +47775,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.36 +69796,96.0,10.0,9.0,10.0,10.0,9.0,10.0,6,1.73 +3709,80.0,10.0,10.0,10.0,10.0,10.0,8.0,1,1.0 +4297,92.0,9.0,8.0,9.0,10.0,9.0,7.0,5,1.65 +47583,,,,,,,,1,0.48 +66600,,,,,,,,0, +16809,100.0,10.0,8.0,10.0,10.0,8.0,10.0,1,0.43 +25959,,,,,,,,0, +69207,88.0,10.0,8.0,10.0,10.0,10.0,10.0,9,2.67 +20417,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.67 +45043,82.0,9.0,7.0,9.0,9.0,8.0,8.0,9,3.03 +67879,,,,,,,,0, +41767,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.88 +57744,60.0,6.0,5.0,6.0,5.0,7.0,6.0,2,1.11 +53025,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.69 +34585,,,,,,,,0, +55127,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,1.67 +65412,100.0,10.0,10.0,10.0,10.0,10.0,10.0,15,5.23 +63098,87.0,10.0,8.0,10.0,10.0,10.0,9.0,9,3.7 +49155,97.0,10.0,10.0,10.0,10.0,9.0,9.0,15,5.49 +60319,90.0,9.0,10.0,9.0,10.0,10.0,10.0,4,1.35 +2831,90.0,9.0,10.0,10.0,10.0,10.0,9.0,2,1.09 +20734,,,,,,,,0, +67838,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.82 +60463,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.58 +18215,92.0,9.0,8.0,9.0,9.0,9.0,9.0,19,5.59 +23885,95.0,10.0,10.0,10.0,10.0,10.0,10.0,17,5.1 +21171,90.0,10.0,10.0,9.0,10.0,10.0,9.0,2,2.0 +7640,,,,,,,,0, +12748,,,,,,,,0, +21068,,,,,,,,0, +71310,93.0,9.0,10.0,9.0,9.0,10.0,9.0,11,4.52 +6322,,,,,,,,0, +10716,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.58 +63764,93.0,10.0,10.0,9.0,10.0,10.0,9.0,8,3.53 +46726,,,,,,,,0, +59617,97.0,10.0,10.0,10.0,10.0,10.0,9.0,6,2.17 +37130,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,4.48 +7325,,,,,,,,0, +32330,,,,,,,,0, +66126,97.0,10.0,10.0,10.0,10.0,10.0,10.0,28,9.77 +31559,97.0,10.0,10.0,10.0,10.0,9.0,10.0,6,1.96 +22246,93.0,10.0,9.0,10.0,10.0,9.0,9.0,3,0.89 +25265,73.0,8.0,8.0,10.0,10.0,9.0,9.0,3,1.34 +74090,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.39 +34139,93.0,9.0,10.0,10.0,10.0,9.0,9.0,9,2.97 +28066,92.0,10.0,10.0,10.0,9.0,9.0,10.0,6,1.96 +7091,,,,,,,,0, +52220,100.0,10.0,10.0,10.0,10.0,10.0,9.0,7,2.73 +52587,,,,,,,,0, +68417,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,3.66 +49810,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.64 +76711,93.0,10.0,10.0,10.0,10.0,10.0,9.0,9,2.78 +25491,,,,,,,,0, +799,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,2.94 +61543,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.32 +70047,,,,,,,,0, +6929,80.0,8.0,8.0,8.0,8.0,7.0,8.0,4,1.3 +30489,80.0,4.0,6.0,10.0,10.0,10.0,6.0,2,0.91 +51090,,,,,,,,0, +31877,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.71 +24273,97.0,10.0,10.0,10.0,10.0,10.0,10.0,7,2.19 +28823,100.0,10.0,10.0,9.0,10.0,10.0,10.0,3,1.06 +32534,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.38 +24719,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +67140,91.0,9.0,9.0,9.0,9.0,10.0,9.0,7,3.68 +54634,80.0,10.0,6.0,10.0,10.0,10.0,9.0,3,1.18 +29359,98.0,9.0,9.0,9.0,10.0,10.0,10.0,8,2.93 +63606,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,1.55 +8083,78.0,8.0,7.0,9.0,8.0,8.0,8.0,11,3.47 +11442,,,,,,,,0, +6977,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,2.08 +54823,90.0,10.0,9.0,9.0,9.0,9.0,9.0,6,3.05 +35239,,,,,,,,0, +70014,,,,,,,,0, +35862,,,,,,,,0, +38988,75.0,9.0,7.0,9.0,9.0,10.0,8.0,11,3.88 +75846,85.0,9.0,9.0,10.0,9.0,10.0,9.0,4,1.36 +51901,84.0,9.0,8.0,9.0,10.0,10.0,9.0,14,4.33 +47685,96.0,10.0,9.0,10.0,10.0,9.0,10.0,31,10.22 +65593,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.24 +58561,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.73 +15363,88.0,9.0,8.0,10.0,10.0,10.0,9.0,13,3.98 +34364,90.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.94 +50347,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.13 +28512,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.43 +34198,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,1.35 +43036,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.4 +62252,,,,,,,,1,0.38 +13928,96.0,10.0,10.0,10.0,10.0,10.0,10.0,14,6.09 +67319,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.43 +12143,80.0,8.0,10.0,10.0,8.0,10.0,10.0,1,0.38 +39506,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,2.8 +11760,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.81 +16490,90.0,10.0,6.0,10.0,10.0,10.0,9.0,2,0.88 +35929,,,,,,,,0, +9228,20.0,2.0,2.0,2.0,2.0,2.0,2.0,1,0.54 +39735,100.0,10.0,8.0,10.0,10.0,8.0,10.0,1,0.48 +66613,93.0,10.0,10.0,9.0,10.0,10.0,10.0,3,1.18 +16936,84.0,10.0,8.0,10.0,10.0,9.0,9.0,5,3.13 +23240,,,,,,,,0, +31095,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,1.0 +59649,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.43 +61267,98.0,10.0,10.0,10.0,10.0,9.0,10.0,11,4.02 +9910,96.0,10.0,10.0,10.0,10.0,10.0,9.0,11,3.27 +53091,100.0,10.0,10.0,10.0,9.0,10.0,10.0,2,0.63 +33766,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.6 +54009,90.0,10.0,9.0,10.0,10.0,10.0,9.0,6,2.65 +3362,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.71 +51035,,,,,,,,0, +75474,,,,,,,,0, +73759,78.0,8.0,7.0,9.0,9.0,9.0,8.0,8,2.53 +76292,100.0,10.0,10.0,10.0,10.0,9.0,10.0,12,3.71 +30699,90.0,10.0,9.0,10.0,9.0,8.0,10.0,2,1.71 +24479,100.0,10.0,10.0,9.0,10.0,10.0,9.0,2,0.67 +54394,96.0,10.0,10.0,10.0,10.0,9.0,10.0,5,1.9 +31908,88.0,8.0,10.0,10.0,10.0,10.0,9.0,5,2.0 +26596,,,,,,,,0, +57291,95.0,10.0,10.0,10.0,10.0,9.0,9.0,4,1.3 +53217,85.0,9.0,9.0,9.0,9.0,10.0,9.0,4,1.46 +26529,95.0,10.0,10.0,10.0,10.0,9.0,10.0,13,4.7 +66828,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,1.95 +31796,,,,,,,,1,0.33 +29409,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.36 +65403,93.0,10.0,9.0,10.0,10.0,9.0,10.0,8,3.16 +36184,97.0,10.0,10.0,10.0,10.0,10.0,10.0,13,4.38 +21910,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.29 +57326,74.0,7.0,8.0,9.0,9.0,8.0,8.0,7,2.39 +39289,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.5 +49207,,,,,,,,0, +13474,100.0,10.0,10.0,10.0,10.0,9.0,10.0,6,2.61 +22211,,,,,,,,0, +2882,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,1.91 +60813,87.0,10.0,9.0,9.0,10.0,9.0,9.0,9,3.55 +44356,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.82 +17341,,,,,,,,0, +8441,,,,,,,,0, +54396,,,,,,,,0, +34291,80.0,10.0,10.0,8.0,10.0,10.0,10.0,1,1.0 +172,60.0,8.0,8.0,6.0,2.0,6.0,6.0,1,0.38 +76042,95.0,10.0,10.0,10.0,10.0,10.0,10.0,5,2.38 +16128,87.0,10.0,10.0,10.0,10.0,10.0,9.0,6,1.8 +29354,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,2.17 +26047,96.0,10.0,8.0,10.0,10.0,10.0,9.0,9,2.67 +57421,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.61 +65927,,,,,,,,0, +50579,95.0,9.0,10.0,10.0,10.0,10.0,10.0,5,1.47 +64057,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.3 +55935,80.0,6.0,9.0,5.0,5.0,8.0,7.0,2,0.63 +76919,83.0,8.0,9.0,10.0,10.0,10.0,9.0,6,2.95 +44984,90.0,10.0,8.0,10.0,10.0,10.0,9.0,4,1.88 +27088,,,,,,,,0, +68080,100.0,10.0,8.0,10.0,10.0,9.0,10.0,2,1.33 +59976,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,1.62 +28250,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.95 +31420,70.0,7.0,9.0,10.0,10.0,7.0,8.0,4,1.33 +76293,96.0,10.0,10.0,10.0,10.0,10.0,9.0,11,3.67 +30654,89.0,9.0,9.0,10.0,10.0,9.0,10.0,7,2.28 +4287,88.0,10.0,9.0,10.0,9.0,9.0,9.0,8,2.82 +53421,85.0,9.0,9.0,10.0,9.0,10.0,10.0,4,4.0 +59658,,,,,,,,1,0.32 +1317,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,1.91 +25536,,,,,,,,0, +37,55.0,8.0,8.0,9.0,6.0,9.0,7.0,5,1.95 +14697,85.0,10.0,10.0,10.0,9.0,10.0,9.0,4,1.88 +37775,100.0,10.0,9.0,10.0,10.0,10.0,10.0,5,1.67 +24580,94.0,10.0,9.0,10.0,10.0,9.0,10.0,10,3.41 +32898,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.85 +43922,,,,,,,,1,0.36 +13192,,,,,,,,0, +67382,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,1.0 +46661,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.94 +70903,95.0,10.0,10.0,10.0,10.0,10.0,9.0,4,1.54 +44996,90.0,10.0,9.0,10.0,10.0,10.0,9.0,9,3.21 +68443,90.0,10.0,10.0,10.0,10.0,10.0,8.0,2,1.02 +11648,87.0,9.0,9.0,10.0,9.0,9.0,9.0,3,1.64 +47604,,,,,,,,0, +68528,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.4 +56186,98.0,10.0,9.0,10.0,10.0,10.0,10.0,12,7.06 +10802,,,,,,,,0, +5707,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.55 +22550,93.0,9.0,9.0,9.0,9.0,9.0,9.0,13,4.15 +8550,90.0,8.0,8.0,10.0,10.0,10.0,9.0,2,0.76 +13151,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,3.55 +46886,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.43 +60627,93.0,10.0,10.0,10.0,9.0,10.0,10.0,6,2.31 +42165,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +26327,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,3.0 +36995,80.0,8.0,6.0,10.0,10.0,10.0,8.0,1,0.81 +69756,,,,,,,,0, +1687,,,,,,,,0, +7552,90.0,9.0,8.0,9.0,10.0,9.0,8.0,6,2.09 +74648,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,2.14 +64491,,,,,,,,0, +73156,93.0,9.0,8.0,10.0,10.0,10.0,9.0,6,2.02 +75519,,,,,,,,0, +32744,98.0,10.0,9.0,10.0,10.0,10.0,10.0,8,3.2 +68802,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.72 +58284,,,,,,,,1,0.45 +76624,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.33 +70247,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,5.45 +12991,98.0,10.0,10.0,10.0,10.0,10.0,10.0,11,3.71 +75679,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,2.86 +42932,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.3 +61002,90.0,10.0,9.0,9.0,10.0,10.0,9.0,4,1.33 +46840,,,,,,,,0, +68347,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.54 +25461,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.39 +13636,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,4.62 +56082,,,,,,,,0, +29023,,,,,,,,0, +3155,87.0,9.0,9.0,8.0,8.0,9.0,8.0,6,2.0 +28965,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.18 +29372,90.0,9.0,10.0,9.0,9.0,9.0,9.0,6,2.31 +19148,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +39044,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.08 +8877,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.54 +35904,96.0,10.0,10.0,10.0,10.0,10.0,10.0,7,3.04 +37623,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,3.14 +64505,93.0,10.0,10.0,10.0,10.0,10.0,10.0,9,3.51 +76618,73.0,8.0,7.0,7.0,8.0,9.0,8.0,6,1.78 +59030,,,,,,,,0, +69639,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +74916,60.0,6.0,6.0,6.0,6.0,10.0,8.0,1,0.31 +28834,53.0,5.0,6.0,7.0,5.0,9.0,5.0,3,1.91 +74465,,,,,,,,0, +18594,,,,,,,,0, +73273,100.0,10.0,10.0,10.0,10.0,9.0,10.0,6,3.67 +2037,,,,,,,,0, +56604,60.0,7.0,6.0,5.0,6.0,9.0,7.0,3,1.5 +1388,,,,,,,,0, +44528,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.55 +12725,,,,,,,,0, +32390,80.0,8.0,9.0,9.0,10.0,10.0,9.0,3,1.0 +75174,,,,,,,,0, +28404,80.0,9.0,9.0,10.0,10.0,9.0,9.0,4,1.71 +49243,,,,,,,,0, +46368,,,,,,,,1,0.75 +3065,80.0,9.0,9.0,8.0,7.0,9.0,9.0,3,1.45 +5777,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.83 +17662,88.0,8.0,9.0,9.0,9.0,10.0,9.0,5,2.46 +26711,94.0,10.0,10.0,10.0,10.0,10.0,9.0,8,3.12 +35951,100.0,10.0,10.0,9.0,10.0,10.0,9.0,3,1.41 +25111,93.0,10.0,9.0,10.0,10.0,10.0,9.0,8,3.33 +44041,40.0,4.0,4.0,6.0,6.0,4.0,4.0,1,0.32 +55169,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.73 +18823,95.0,10.0,10.0,10.0,10.0,9.0,10.0,22,6.73 +62395,100.0,9.0,10.0,10.0,10.0,10.0,10.0,7,2.47 +22654,98.0,10.0,10.0,10.0,10.0,9.0,10.0,13,4.33 +41585,92.0,9.0,9.0,9.0,9.0,9.0,9.0,5,1.65 +22271,,,,,,,,0, +19744,90.0,10.0,7.0,10.0,10.0,8.0,9.0,3,2.43 +66241,,,,,,,,0, +37384,,,,,,,,0, +40218,,,,,,,,0, +69104,,,,,,,,0, +8273,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.56 +21874,100.0,10.0,9.0,10.0,10.0,10.0,10.0,8,2.7 +55752,92.0,10.0,9.0,10.0,10.0,10.0,10.0,5,1.76 +16452,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,1.18 +47933,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.2 +4691,87.0,9.0,8.0,7.0,10.0,10.0,9.0,3,1.48 +34529,80.0,9.0,9.0,10.0,10.0,10.0,9.0,2,0.71 +52054,100.0,10.0,10.0,10.0,10.0,10.0,10.0,17,5.67 +23647,,,,,,,,0, +4044,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.3 +33978,,,,,,,,0, +5355,90.0,9.0,10.0,10.0,10.0,10.0,10.0,4,1.58 +30919,93.0,10.0,10.0,10.0,10.0,10.0,10.0,8,2.82 +57933,,,,,,,,0, +34204,90.0,10.0,9.0,10.0,10.0,10.0,9.0,2,2.0 +45324,,,,,,,,0, +22195,97.0,10.0,10.0,10.0,10.0,10.0,10.0,21,6.77 +36697,100.0,10.0,10.0,10.0,10.0,9.0,10.0,12,4.04 +25241,67.0,8.0,9.0,9.0,7.0,9.0,8.0,3,2.05 +58064,90.0,9.0,8.0,10.0,10.0,9.0,8.0,2,1.03 +31749,93.0,9.0,8.0,10.0,10.0,10.0,10.0,3,1.32 +16812,20.0,10.0,2.0,10.0,10.0,10.0,4.0,1,0.38 +49351,,,,,,,,0, +49803,100.0,10.0,10.0,10.0,10.0,10.0,10.0,15,5.11 +24485,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.36 +73203,100.0,10.0,10.0,9.0,10.0,10.0,10.0,13,4.59 +23906,86.0,8.0,8.0,9.0,9.0,9.0,8.0,13,4.19 +24773,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +74222,76.0,8.0,7.0,9.0,9.0,9.0,8.0,5,1.5 +10387,90.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.7 +34779,100.0,10.0,8.0,10.0,10.0,8.0,8.0,2,0.68 +62529,96.0,10.0,10.0,10.0,10.0,10.0,10.0,32,9.8 +44054,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,2.0 +46583,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.74 +30987,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +21317,92.0,9.0,10.0,9.0,8.0,10.0,9.0,5,2.08 +32865,90.0,10.0,10.0,10.0,10.0,10.0,9.0,10,3.57 +47412,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,1.36 +27467,,,,,,,,1,0.86 +72774,100.0,10.0,10.0,10.0,6.0,10.0,8.0,1,1.0 +11660,80.0,9.0,10.0,8.0,9.0,9.0,10.0,4,1.35 +23503,90.0,9.0,9.0,9.0,10.0,8.0,9.0,2,1.05 +37305,,,,,,,,0, +57634,81.0,9.0,8.0,10.0,9.0,10.0,8.0,14,4.29 +24274,73.0,10.0,6.0,10.0,10.0,10.0,9.0,3,1.01 +53706,94.0,10.0,10.0,10.0,10.0,10.0,10.0,8,3.58 +55659,,,,,,,,0, +71136,100.0,10.0,8.0,10.0,10.0,10.0,8.0,1,1.0 +45244,65.0,9.0,6.0,10.0,10.0,9.0,8.0,4,1.71 +6317,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.88 +804,86.0,9.0,8.0,9.0,9.0,9.0,9.0,18,6.14 +55325,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.42 +16,,,,,,,,2,0.59 +66631,93.0,10.0,10.0,10.0,10.0,10.0,10.0,6,3.75 +59015,96.0,10.0,10.0,10.0,10.0,9.0,10.0,19,5.88 +17247,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,2.17 +53160,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +60617,,,,,,,,0, +4675,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +16449,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.97 +40610,93.0,10.0,10.0,10.0,10.0,9.0,9.0,3,1.03 +3499,87.0,9.0,9.0,9.0,9.0,10.0,9.0,3,2.05 +36688,80.0,7.0,8.0,9.0,10.0,10.0,8.0,3,1.84 +52208,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.37 +61468,88.0,8.0,9.0,10.0,9.0,9.0,8.0,8,2.76 +877,80.0,9.0,9.0,8.0,8.0,10.0,8.0,6,2.28 +30447,80.0,9.0,9.0,9.0,9.0,9.0,9.0,2,1.22 +72286,84.0,9.0,8.0,9.0,9.0,9.0,9.0,15,5.36 +20445,92.0,10.0,9.0,9.0,10.0,10.0,10.0,5,4.05 +12020,,,,,,,,0, +71231,,,,,,,,0, +9933,,,,,,,,0, +59600,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.41 +36556,93.0,10.0,9.0,10.0,10.0,10.0,9.0,9,3.07 +37573,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,1.71 +10873,87.0,9.0,9.0,9.0,10.0,9.0,8.0,3,1.64 +57961,100.0,10.0,10.0,9.0,9.0,10.0,10.0,5,1.81 +1027,99.0,10.0,10.0,10.0,10.0,10.0,10.0,23,6.83 +27388,87.0,10.0,10.0,8.0,9.0,9.0,9.0,6,2.14 +41980,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +68372,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,1.22 +1363,87.0,10.0,8.0,9.0,10.0,9.0,9.0,3,1.67 +5848,100.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.48 +15889,97.0,10.0,10.0,10.0,10.0,9.0,10.0,19,5.94 +35311,98.0,10.0,10.0,10.0,10.0,10.0,9.0,9,3.7 +41093,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.62 +19527,98.0,10.0,10.0,10.0,10.0,10.0,10.0,26,8.57 +70772,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,2.97 +32603,73.0,7.0,6.0,9.0,9.0,9.0,8.0,8,2.61 +41343,96.0,10.0,10.0,10.0,10.0,10.0,8.0,5,1.95 +43689,100.0,9.0,10.0,10.0,10.0,9.0,9.0,2,0.88 +24458,95.0,10.0,10.0,10.0,10.0,9.0,9.0,4,2.5 +56608,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.79 +16902,88.0,10.0,9.0,10.0,10.0,8.0,9.0,13,4.87 +384,93.0,10.0,9.0,10.0,10.0,10.0,9.0,3,2.25 +38279,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,1.72 +8042,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.15 +74990,70.0,8.0,7.0,9.0,7.0,10.0,6.0,2,1.46 +71268,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.42 +47032,99.0,10.0,10.0,10.0,10.0,10.0,10.0,24,8.18 +58197,,,,,,,,0, +11846,,,,,,,,0, +31710,100.0,10.0,10.0,9.0,10.0,10.0,10.0,3,1.2 +63195,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,4.35 +21989,70.0,9.0,8.0,9.0,10.0,7.0,8.0,8,2.7 +60795,80.0,9.0,9.0,7.0,10.0,10.0,9.0,3,1.13 +19874,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,2.34 +17216,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.8 +61090,78.0,9.0,8.0,7.0,10.0,9.0,8.0,11,4.34 +6372,67.0,7.0,7.0,7.0,7.0,9.0,7.0,3,1.36 +72038,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.54 +47687,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.87 +68431,80.0,9.0,8.0,9.0,9.0,7.0,8.0,3,1.3 +49362,80.0,10.0,10.0,10.0,10.0,8.0,8.0,1,1.0 +44960,100.0,10.0,10.0,10.0,10.0,10.0,9.0,7,4.04 +24786,,,,,,,,0, +29915,,,,,,,,0, +21649,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.37 +17235,80.0,7.0,7.0,9.0,9.0,9.0,7.0,3,1.34 +51861,93.0,9.0,9.0,10.0,10.0,10.0,9.0,11,4.34 +63086,92.0,10.0,9.0,8.0,10.0,9.0,9.0,6,1.89 +66498,40.0,6.0,4.0,6.0,6.0,4.0,4.0,1,0.41 +40882,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.76 +34746,91.0,9.0,9.0,10.0,10.0,10.0,9.0,15,4.95 +7252,,,,,,,,0, +30172,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +5441,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,2.5 +35554,,,,,,,,0, +64625,,,,,,,,0, +42223,,,,,,,,0, +14699,,,,,,,,0, +51508,88.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.84 +40540,100.0,10.0,8.0,10.0,10.0,8.0,10.0,1,0.61 +53172,98.0,10.0,10.0,10.0,10.0,10.0,9.0,9,2.87 +6038,,,,,,,,0, +350,,,,,,,,0, +44278,97.0,10.0,10.0,10.0,9.0,10.0,9.0,18,6.28 +58945,93.0,9.0,10.0,10.0,10.0,10.0,10.0,4,1.71 +25206,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.18 +66594,93.0,9.0,9.0,10.0,9.0,10.0,9.0,3,1.11 +35027,96.0,10.0,9.0,10.0,10.0,10.0,10.0,5,1.79 +67274,,,,,,,,1,0.37 +53039,,,,,,,,0, +2023,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.76 +68576,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +62439,,,,,,,,0, +51532,87.0,9.0,9.0,7.0,8.0,10.0,9.0,18,6.28 +70582,100.0,9.0,10.0,9.0,10.0,10.0,10.0,4,3.53 +61628,100.0,9.0,9.0,9.0,10.0,8.0,9.0,2,0.92 +62986,,,,,,,,0, +18816,,,,,,,,1,0.52 +25814,,,,,,,,0, +27801,78.0,9.0,8.0,10.0,9.0,10.0,8.0,10,3.23 +66918,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.74 +48903,100.0,10.0,10.0,9.0,9.0,10.0,9.0,4,1.82 +59391,97.0,10.0,9.0,10.0,10.0,10.0,10.0,15,5.17 +54338,90.0,10.0,9.0,10.0,10.0,9.0,9.0,2,0.85 +59056,77.0,9.0,6.0,10.0,10.0,8.0,8.0,7,2.14 +18659,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.86 +66379,80.0,8.0,8.0,8.0,8.0,8.0,8.0,1,0.4 +38998,,,,,,,,0, +72613,,,,,,,,0, +65450,70.0,8.0,7.0,10.0,10.0,7.0,6.0,3,1.06 +11825,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.71 +37206,100.0,10.0,10.0,10.0,10.0,9.0,10.0,8,2.73 +12955,,,,,,,,0, +42473,,,,,,,,0, +30344,,,,,,,,0, +60592,83.0,10.0,9.0,10.0,10.0,10.0,9.0,6,2.02 +16035,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,2.2 +4657,,,,,,,,0, +67055,,,,,,,,0, +29330,70.0,8.0,8.0,7.0,7.0,9.0,7.0,21,7.87 +74366,,,,,,,,0, +30692,60.0,10.0,6.0,10.0,8.0,10.0,6.0,1,1.0 +70982,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.28 +47465,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.39 +10105,98.0,10.0,10.0,9.0,10.0,10.0,10.0,9,2.73 +1674,88.0,9.0,8.0,8.0,10.0,9.0,9.0,5,2.46 +60384,,,,,,,,0, +64926,,,,,,,,0, +9281,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,2.05 +43574,90.0,9.0,9.0,10.0,10.0,10.0,9.0,10,3.41 +60308,100.0,10.0,10.0,10.0,10.0,9.0,10.0,8,3.0 +69766,100.0,10.0,10.0,10.0,10.0,10.0,9.0,6,2.22 +44045,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.76 +37860,,,,,,,,1, +34235,80.0,10.0,9.0,10.0,10.0,9.0,9.0,3,2.5 +5336,,,,,,,,0, +35502,96.0,10.0,10.0,10.0,10.0,10.0,9.0,5,3.13 +43988,,,,,,,,0, +68726,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.36 +28518,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.38 +34873,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,3.0 +5771,92.0,10.0,10.0,9.0,9.0,10.0,9.0,12,5.0 +58293,90.0,9.0,9.0,9.0,9.0,9.0,9.0,14,4.94 +2728,87.0,9.0,9.0,10.0,10.0,9.0,9.0,3,1.25 +12470,100.0,10.0,10.0,10.0,10.0,9.0,10.0,9,3.07 +64305,90.0,9.0,9.0,10.0,10.0,10.0,9.0,2,0.72 +613,,,,,,,,0, +61336,76.0,8.0,8.0,10.0,8.0,10.0,8.0,5,3.95 +31886,,,,,,,,1,0.57 +8251,93.0,10.0,9.0,10.0,9.0,10.0,9.0,9,3.0 +61042,,,,,,,,0, +32949,88.0,10.0,8.0,10.0,10.0,10.0,8.0,5,2.11 +48433,93.0,9.0,10.0,10.0,10.0,10.0,9.0,3,1.8 +61476,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,3.06 +41148,,,,,,,,0, +31352,100.0,10.0,10.0,9.0,9.0,10.0,9.0,3,1.02 +61294,67.0,7.0,7.0,9.0,7.0,8.0,7.0,3,1.38 +12141,,,,,,,,0, +74309,80.0,8.0,8.0,7.0,9.0,9.0,8.0,2,0.75 +49077,,,,,,,,0, +71163,84.0,9.0,9.0,10.0,10.0,10.0,9.0,12,4.0 +16993,87.0,10.0,9.0,10.0,10.0,10.0,9.0,6,2.34 +7234,88.0,9.0,9.0,9.0,9.0,10.0,9.0,12,3.71 +10507,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.79 +55086,83.0,9.0,8.0,9.0,9.0,10.0,9.0,15,6.92 +11196,100.0,10.0,10.0,8.0,9.0,10.0,10.0,4,1.6 +28143,80.0,10.0,10.0,10.0,10.0,10.0,9.0,4,1.85 +55895,,,,,,,,0, +14980,96.0,10.0,9.0,10.0,10.0,10.0,10.0,20,6.52 +55204,70.0,9.0,9.0,10.0,10.0,8.0,7.0,2,1.76 +76153,80.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.48 +13130,80.0,8.0,8.0,10.0,10.0,8.0,7.0,2,1.13 +24393,91.0,9.0,9.0,10.0,10.0,10.0,9.0,7,2.44 +47440,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,7.2 +68569,85.0,10.0,9.0,10.0,10.0,9.0,9.0,8,3.93 +54676,,,,,,,,0, +68041,92.0,9.0,9.0,9.0,10.0,10.0,8.0,5,2.17 +19648,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,2.0 +2658,93.0,9.0,9.0,10.0,10.0,9.0,9.0,3,1.61 +1240,,,,,,,,0, +21185,90.0,10.0,9.0,10.0,10.0,10.0,10.0,2,1.5 +446,89.0,9.0,10.0,9.0,8.0,9.0,8.0,9,3.97 +62050,20.0,6.0,4.0,2.0,2.0,4.0,4.0,1,0.44 +14294,86.0,9.0,10.0,10.0,10.0,9.0,9.0,10,4.41 +76149,88.0,9.0,9.0,9.0,9.0,8.0,8.0,8,4.53 +8300,98.0,10.0,10.0,10.0,10.0,10.0,9.0,9,3.38 +13640,,,,,,,,0, +5451,,,,,,,,0, +63021,100.0,10.0,10.0,10.0,10.0,8.0,10.0,4,2.03 +68285,,,,,,,,0, +41912,100.0,10.0,10.0,10.0,10.0,9.0,10.0,12,4.29 +51764,,,,,,,,0, +17932,94.0,10.0,9.0,10.0,10.0,9.0,10.0,7,2.53 +47931,,,,,,,,0, +52445,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,1.13 +22093,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.39 +13731,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.45 +53988,93.0,10.0,9.0,10.0,10.0,10.0,10.0,8,2.61 +8100,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,2.03 +45944,97.0,10.0,10.0,10.0,10.0,10.0,10.0,7,2.63 +60757,,,,,,,,0, +19581,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +56592,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,3.0 +31006,,,,,,,,0, +35275,,,,,,,,0, +20611,,,,,,,,0, +29400,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.91 +13087,,,,,,,,0, +22263,,,,,,,,0, +56807,91.0,10.0,9.0,10.0,10.0,9.0,10.0,13,4.76 +29546,90.0,10.0,8.0,10.0,10.0,10.0,9.0,2,0.88 +31650,80.0,8.0,8.0,10.0,10.0,10.0,8.0,1,0.88 +75399,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,2.24 +67830,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,2.19 +48309,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,2.46 +25607,90.0,10.0,9.0,10.0,10.0,10.0,9.0,8,2.42 +2932,84.0,10.0,7.0,10.0,10.0,7.0,7.0,5,1.92 +47089,95.0,10.0,9.0,10.0,10.0,10.0,10.0,4,1.5 +13218,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,2.0 +40672,95.0,10.0,10.0,10.0,10.0,10.0,9.0,8,3.16 +47229,80.0,10.0,9.0,9.0,9.0,7.0,9.0,5,4.29 +10042,97.0,10.0,10.0,10.0,10.0,10.0,10.0,12,5.29 +41710,,,,,,,,0, +7404,,,,,,,,0, +47122,,,,,,,,0, +24795,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,3.68 +68203,100.0,10.0,9.0,9.0,10.0,10.0,10.0,2,2.0 +36644,93.0,10.0,9.0,9.0,9.0,10.0,9.0,3,1.11 +23162,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.71 +34240,,,,,,,,0, +70037,,,,,,,,0, +12031,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.39 +9063,99.0,10.0,10.0,10.0,10.0,10.0,10.0,14,4.29 +71352,95.0,10.0,10.0,10.0,10.0,9.0,9.0,8,2.82 +33852,20.0,2.0,2.0,2.0,2.0,2.0,2.0,1,0.36 +10601,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.33 +17502,78.0,9.0,7.0,10.0,10.0,9.0,9.0,9,3.0 +58849,,,,,,,,0, +70052,,,,,,,,0, +44498,73.0,8.0,7.0,10.0,9.0,8.0,7.0,3,1.01 +71803,100.0,10.0,9.0,9.0,10.0,10.0,9.0,2,0.69 +44775,88.0,10.0,8.0,10.0,10.0,10.0,9.0,8,3.12 +9288,85.0,10.0,9.0,9.0,9.0,10.0,9.0,4,1.58 +28322,,,,,,,,0, +34488,60.0,10.0,10.0,10.0,8.0,10.0,4.0,1,0.41 +52350,,,,,,,,0, +35883,,,,,,,,0, +49071,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +5326,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.08 +70307,100.0,10.0,10.0,10.0,10.0,10.0,9.0,7,2.26 +34853,88.0,9.0,10.0,9.0,9.0,10.0,9.0,10,3.53 +66437,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +11952,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.02 +38637,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,2.07 +24616,95.0,10.0,10.0,10.0,10.0,10.0,9.0,12,4.44 +59829,70.0,6.0,9.0,6.0,8.0,7.0,6.0,3,1.05 +68415,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,2.14 +3726,,,,,,,,0, +20535,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.1 +43110,86.0,9.0,8.0,10.0,10.0,8.0,8.0,7,2.44 +51258,100.0,10.0,10.0,9.0,10.0,9.0,9.0,3,1.14 +11674,87.0,9.0,9.0,9.0,10.0,9.0,9.0,3,2.5 +29700,,,,,,,,1, +76458,80.0,9.0,8.0,8.0,8.0,9.0,8.0,8,2.89 +60260,87.0,9.0,9.0,9.0,9.0,8.0,7.0,3,1.76 +42836,,,,,,,,0, +73867,93.0,9.0,9.0,10.0,10.0,10.0,9.0,8,2.64 +43791,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.38 +62154,,,,,,,,1,0.32 +45103,100.0,10.0,9.0,9.0,10.0,9.0,10.0,3,1.18 +47899,75.0,9.0,7.0,10.0,10.0,9.0,8.0,4,2.03 +32568,,,,,,,,0, +37701,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.85 +13634,84.0,9.0,8.0,10.0,10.0,10.0,9.0,11,3.51 +51038,,,,,,,,0, +30432,93.0,10.0,8.0,10.0,10.0,9.0,9.0,9,3.0 +14478,,,,,,,,0, +28,94.0,10.0,9.0,9.0,9.0,10.0,9.0,10,3.9 +15674,99.0,10.0,10.0,10.0,10.0,10.0,9.0,15,5.29 +5240,90.0,9.0,9.0,10.0,10.0,10.0,9.0,11,3.88 +70225,95.0,9.0,9.0,9.0,10.0,10.0,9.0,11,4.02 +19728,97.0,10.0,10.0,10.0,10.0,9.0,10.0,13,6.29 +35809,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.58 +58329,,,,,,,,0, +19048,80.0,10.0,8.0,8.0,10.0,10.0,8.0,1,1.0 +49728,100.0,10.0,10.0,10.0,10.0,9.0,10.0,10,3.7 +45081,93.0,10.0,10.0,10.0,10.0,9.0,9.0,3,3.0 +36943,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,1.0 +59978,83.0,8.0,9.0,10.0,9.0,9.0,8.0,7,2.63 +43297,100.0,9.0,10.0,10.0,10.0,8.0,10.0,6,2.09 +62654,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,1.1 +28622,,,,,,,,0, +8041,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,3.95 +14301,,,,,,,,0, +6975,100.0,10.0,10.0,10.0,10.0,10.0,8.0,2,0.83 +22537,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.29 +18593,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.28 +3141,94.0,10.0,10.0,10.0,10.0,9.0,9.0,7,3.13 +37542,,,,,,,,0, +56573,90.0,10.0,8.0,10.0,10.0,10.0,9.0,2,0.7 +19291,89.0,9.0,9.0,9.0,9.0,9.0,9.0,7,2.44 +17042,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.62 +54046,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.36 +70329,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,2.53 +4388,93.0,10.0,9.0,9.0,10.0,10.0,9.0,3,1.13 +13217,90.0,10.0,10.0,10.0,10.0,10.0,8.0,2,0.98 +47437,,,,,,,,0, +55672,92.0,9.0,10.0,10.0,10.0,10.0,10.0,5,1.9 +50054,,,,,,,,0, +25055,100.0,10.0,9.0,10.0,10.0,10.0,7.0,2,0.73 +54012,80.0,8.0,8.0,8.0,8.0,8.0,8.0,1,1.0 +57267,89.0,10.0,7.0,10.0,10.0,9.0,9.0,7,2.8 +66713,,,,,,,,0, +21370,92.0,10.0,10.0,10.0,10.0,10.0,9.0,5,1.88 +54500,70.0,9.0,7.0,7.0,9.0,10.0,8.0,2,0.91 +57303,93.0,10.0,10.0,10.0,10.0,10.0,9.0,6,2.95 +23444,93.0,10.0,10.0,9.0,10.0,8.0,9.0,7,2.88 +20409,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.33 +51132,90.0,10.0,10.0,10.0,9.0,10.0,9.0,4,1.35 +23237,75.0,9.0,7.0,8.0,9.0,7.0,6.0,4,1.58 +67843,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +32025,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.34 +36515,93.0,9.0,10.0,10.0,10.0,9.0,9.0,6,5.29 +47854,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.39 +63573,93.0,9.0,10.0,10.0,10.0,10.0,9.0,11,3.93 +1951,78.0,9.0,9.0,10.0,10.0,9.0,9.0,9,2.78 +17582,89.0,9.0,9.0,10.0,9.0,10.0,9.0,24,7.66 +809,95.0,10.0,9.0,10.0,10.0,10.0,10.0,4,1.45 +29085,,,,,,,,0, +43866,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.2 +34827,50.0,2.0,5.0,6.0,3.0,6.0,3.0,2,1.13 +28790,,,,,,,,0, +20748,70.0,10.0,7.0,10.0,10.0,9.0,9.0,2,0.68 +52865,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.56 +65657,93.0,10.0,10.0,10.0,10.0,10.0,9.0,3,1.2 +13072,,,,,,,,0, +69210,96.0,9.0,9.0,9.0,10.0,9.0,10.0,5,1.83 +10979,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.36 +15040,,,,,,,,0, +16946,,,,,,,,0, +12894,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +58124,97.0,10.0,10.0,10.0,10.0,10.0,10.0,7,2.53 +25711,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.33 +12739,93.0,10.0,10.0,10.0,10.0,8.0,9.0,6,2.31 +56461,,,,,,,,0, +39573,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,2.82 +50268,,,,,,,,0, +26816,100.0,9.0,10.0,10.0,10.0,10.0,9.0,2,1.3 +6374,91.0,10.0,9.0,7.0,9.0,8.0,9.0,7,3.39 +64681,72.0,8.0,7.0,9.0,8.0,9.0,7.0,5,1.76 +61467,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.33 +72479,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,1.18 +73489,82.0,8.0,8.0,9.0,10.0,9.0,9.0,13,4.33 +34624,,,,,,,,0, +45660,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,1.0 +5467,,,,,,,,0, +71198,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,2.18 +44857,86.0,9.0,8.0,9.0,10.0,9.0,9.0,14,4.67 +36119,87.0,9.0,9.0,9.0,10.0,9.0,7.0,4,1.24 +32918,100.0,10.0,9.0,10.0,10.0,9.0,10.0,3,3.0 +63648,,,,,,,,0, +37437,88.0,9.0,9.0,8.0,9.0,10.0,10.0,5,1.67 +64527,,,,,,,,0, +833,100.0,9.0,10.0,10.0,10.0,10.0,10.0,3,1.2 +52560,,,,,,,,0, +11738,,,,,,,,0, +5162,91.0,10.0,9.0,10.0,10.0,10.0,9.0,9,3.07 +11534,87.0,9.0,9.0,9.0,9.0,9.0,9.0,19,6.63 +21121,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,3.87 +41088,100.0,10.0,10.0,10.0,9.0,9.0,9.0,2,0.85 +4991,,,,,,,,1, +16444,,,,,,,,1,0.34 +33842,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.94 +5973,,,,,,,,0, +18153,,,,,,,,0, +54249,93.0,10.0,9.0,9.0,10.0,7.0,9.0,3,1.08 +58503,85.0,9.0,8.0,10.0,9.0,10.0,9.0,11,4.12 +13290,87.0,9.0,9.0,10.0,10.0,9.0,9.0,4,2.79 +770,,,,,,,,0, +76139,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.97 +37861,99.0,10.0,10.0,10.0,10.0,9.0,10.0,21,9.13 +6479,100.0,10.0,9.0,10.0,10.0,10.0,9.0,7,2.33 +6054,90.0,10.0,9.0,10.0,10.0,10.0,10.0,4,1.41 +70919,97.0,10.0,9.0,10.0,10.0,10.0,10.0,6,3.05 +57104,100.0,10.0,9.0,10.0,10.0,10.0,9.0,2,0.95 +2097,92.0,10.0,9.0,8.0,10.0,10.0,10.0,5,2.0 +47142,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.69 +35906,90.0,9.0,10.0,9.0,8.0,9.0,8.0,6,3.75 +67369,100.0,9.0,10.0,10.0,10.0,10.0,10.0,3,1.36 +73617,80.0,9.0,9.0,8.0,10.0,10.0,8.0,2,0.63 +67212,,,,,,,,0, +46734,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.48 +61677,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.48 +56937,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.9 +16853,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.69 +21242,99.0,10.0,10.0,10.0,10.0,10.0,10.0,15,4.89 +55358,95.0,10.0,8.0,10.0,10.0,10.0,10.0,4,1.9 +41787,,,,,,,,0, +722,,,,,,,,1, +42676,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.39 +12279,89.0,10.0,9.0,10.0,10.0,10.0,9.0,9,4.91 +39157,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,1.18 +49748,,,,,,,,0, +5046,90.0,10.0,9.0,9.0,10.0,10.0,9.0,10,4.76 +25556,96.0,9.0,9.0,9.0,9.0,10.0,9.0,10,4.11 +48499,,,,,,,,0, +70769,87.0,9.0,9.0,10.0,10.0,10.0,9.0,6,2.9 +65069,100.0,10.0,10.0,10.0,10.0,10.0,9.0,7,2.47 +62075,94.0,10.0,10.0,10.0,10.0,9.0,9.0,7,2.33 +52613,85.0,10.0,9.0,10.0,10.0,9.0,10.0,4,1.45 +10029,60.0,7.0,8.0,7.0,7.0,7.0,7.0,3,1.3 +35856,88.0,10.0,9.0,10.0,10.0,10.0,9.0,18,5.74 +73379,85.0,10.0,10.0,10.0,10.0,10.0,9.0,4,4.0 +76529,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.96 +13704,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.78 +63935,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.37 +72267,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.43 +58207,78.0,10.0,7.0,9.0,9.0,9.0,8.0,10,4.35 +1631,93.0,10.0,10.0,10.0,10.0,10.0,9.0,20,7.79 +3625,,,,,,,,0, +21341,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.54 +34857,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.52 +22009,92.0,10.0,9.0,10.0,10.0,10.0,9.0,5,1.81 +36150,100.0,10.0,10.0,9.0,10.0,9.0,9.0,3,1.02 +7401,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.37 +24583,,,,,,,,0, +76836,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,2.54 +7415,90.0,9.0,10.0,10.0,10.0,10.0,9.0,8,3.38 +33555,,,,,,,,0, +35062,100.0,10.0,10.0,10.0,10.0,9.0,9.0,7,3.28 +64364,90.0,9.0,10.0,10.0,9.0,10.0,10.0,4,1.38 +75965,100.0,10.0,10.0,10.0,10.0,10.0,9.0,6,2.61 +37590,80.0,10.0,6.0,6.0,10.0,6.0,6.0,1,0.33 +93,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.67 +14942,,,,,,,,1, +74815,,,,,,,,0, +35072,88.0,10.0,8.0,9.0,9.0,10.0,8.0,5,2.11 +18609,100.0,10.0,9.0,10.0,10.0,10.0,10.0,4,1.41 +59935,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.72 +57591,91.0,10.0,9.0,10.0,9.0,9.0,9.0,28,8.75 +25411,90.0,9.0,9.0,10.0,10.0,10.0,10.0,2,0.88 +69635,,,,,,,,1, +13517,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.41 +58885,97.0,9.0,9.0,9.0,10.0,9.0,10.0,23,7.67 +59004,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.55 +49764,100.0,10.0,8.0,8.0,8.0,10.0,10.0,1,1.0 +16249,93.0,9.0,9.0,10.0,10.0,10.0,10.0,6,2.28 +10863,94.0,10.0,9.0,10.0,10.0,10.0,9.0,11,3.88 +40818,96.0,10.0,10.0,10.0,10.0,10.0,9.0,34,12.44 +75835,,,,,,,,0, +34341,,,,,,,,0, +48457,97.0,10.0,9.0,10.0,10.0,9.0,10.0,7,2.5 +37829,90.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.79 +17912,93.0,10.0,9.0,10.0,10.0,10.0,10.0,9,3.91 +61619,90.0,9.0,8.0,8.0,9.0,10.0,9.0,2,1.36 +477,80.0,8.0,10.0,9.0,9.0,10.0,9.0,3,1.06 +68258,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.92 +40118,100.0,9.0,8.0,10.0,10.0,9.0,8.0,2,2.0 +14866,87.0,9.0,9.0,10.0,10.0,10.0,9.0,3,1.13 +39320,,,,,,,,0, +74858,50.0,6.0,4.0,5.0,6.0,6.0,6.0,2,0.8 +11740,94.0,9.0,10.0,10.0,10.0,10.0,10.0,7,2.5 +58499,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.98 +64311,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.39 +29638,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.07 +34816,,,,,,,,1,0.32 +73195,93.0,10.0,10.0,10.0,9.0,10.0,10.0,18,6.51 +12632,84.0,9.0,8.0,9.0,8.0,9.0,8.0,17,5.43 +70948,100.0,10.0,8.0,8.0,10.0,10.0,10.0,1,0.44 +33559,74.0,8.0,7.0,9.0,9.0,9.0,8.0,16,5.16 +51221,80.0,8.0,6.0,10.0,10.0,8.0,10.0,1,0.39 +2654,,,,,,,,0, +18680,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.22 +50645,95.0,10.0,10.0,10.0,10.0,9.0,9.0,4,1.45 +10600,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.88 +16926,74.0,8.0,8.0,10.0,8.0,9.0,8.0,14,5.06 +68817,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.32 +45175,95.0,10.0,10.0,10.0,10.0,10.0,9.0,12,4.0 +66084,87.0,9.0,10.0,10.0,10.0,10.0,9.0,6,2.81 +46366,93.0,10.0,10.0,9.0,10.0,10.0,9.0,3,1.18 +29545,100.0,10.0,10.0,10.0,10.0,9.0,10.0,11,3.84 +36362,,,,,,,,0, +125,80.0,10.0,6.0,8.0,6.0,10.0,8.0,1,1.0 +49639,80.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.33 +52863,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,1.0 +23829,87.0,10.0,9.0,10.0,10.0,9.0,8.0,4,1.45 +49766,,,,,,,,0, +29200,80.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.47 +51379,100.0,10.0,9.0,10.0,10.0,10.0,9.0,4,1.58 +8502,,,,,,,,0, +28900,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.97 +14013,92.0,10.0,9.0,9.0,9.0,9.0,9.0,22,7.17 +47573,95.0,10.0,9.0,9.0,9.0,9.0,9.0,11,5.59 +61562,95.0,10.0,10.0,10.0,10.0,9.0,9.0,4,2.5 +46159,,,,,,,,0, +66010,,,,,,,,0, +67981,,,,,,,,0, +55997,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.45 +22858,88.0,9.0,10.0,10.0,9.0,9.0,9.0,8,2.55 +9558,,,,,,,,0, +14068,87.0,9.0,9.0,9.0,10.0,9.0,8.0,6,2.43 +75364,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.37 +44279,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,1.17 +59169,95.0,10.0,10.0,9.0,10.0,10.0,10.0,4,1.71 +15301,100.0,10.0,10.0,9.0,10.0,10.0,10.0,2,1.22 +41985,87.0,8.0,9.0,9.0,10.0,10.0,7.0,3,1.34 +67476,100.0,10.0,10.0,10.0,10.0,9.0,10.0,9,2.87 +53919,87.0,9.0,7.0,10.0,9.0,9.0,9.0,3,1.18 +74274,,,,,,,,0, +4315,,,,,,,,0, +37602,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.53 +56879,,,,,,,,0, +49122,65.0,8.0,9.0,8.0,8.0,10.0,7.0,4,1.76 +65501,80.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.53 +12639,92.0,9.0,10.0,10.0,9.0,9.0,9.0,12,3.83 +31291,,,,,,,,0, +50384,97.0,9.0,10.0,10.0,10.0,8.0,9.0,6,1.91 +42132,97.0,10.0,10.0,10.0,9.0,10.0,9.0,7,3.28 +11703,,,,,,,,0, +47547,93.0,10.0,10.0,10.0,10.0,9.0,10.0,3,1.18 +75599,100.0,9.0,10.0,10.0,10.0,9.0,10.0,3,1.41 +59580,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.88 +72040,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.28 +8133,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.28 +64460,93.0,9.0,10.0,10.0,10.0,9.0,10.0,6,1.91 +42247,98.0,10.0,10.0,9.0,9.0,10.0,9.0,9,3.18 +37723,100.0,10.0,10.0,6.0,10.0,10.0,10.0,1,0.48 +55008,100.0,10.0,9.0,10.0,10.0,9.0,10.0,3,1.53 +69015,100.0,10.0,10.0,10.0,10.0,9.0,10.0,11,4.12 +29626,,,,,,,,0, +51741,100.0,10.0,8.0,10.0,10.0,6.0,10.0,1,0.44 +12868,97.0,9.0,10.0,10.0,10.0,9.0,9.0,7,6.18 +36893,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,6.0 +12486,97.0,9.0,9.0,9.0,10.0,9.0,9.0,6,3.27 +76968,95.0,9.0,9.0,10.0,10.0,10.0,10.0,11,4.4 +1588,90.0,10.0,8.0,10.0,10.0,10.0,9.0,2,2.0 +62374,,,,,,,,0, +38874,100.0,10.0,10.0,10.0,10.0,6.0,8.0,1,1.0 +39707,89.0,9.0,9.0,9.0,9.0,10.0,8.0,9,3.33 +38112,100.0,10.0,8.0,8.0,10.0,10.0,10.0,1,0.77 +17948,,,,,,,,0, +61938,,,,,,,,0, +37387,,,,,,,,0, +14963,84.0,8.0,7.0,9.0,9.0,8.0,9.0,15,4.89 +19579,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.41 +69495,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.94 +69269,90.0,10.0,9.0,10.0,10.0,10.0,10.0,2,1.46 +60301,,,,,,,,0, +18427,96.0,10.0,10.0,10.0,10.0,9.0,10.0,6,2.09 +47192,,,,,,,,0, +73511,97.0,10.0,9.0,10.0,10.0,10.0,10.0,7,3.04 +71110,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +27774,67.0,9.0,5.0,9.0,10.0,10.0,9.0,3,1.3 +45657,93.0,9.0,8.0,10.0,10.0,10.0,9.0,3,1.0 +50973,100.0,10.0,10.0,9.0,10.0,9.0,9.0,3,1.36 +21622,88.0,10.0,10.0,8.0,8.0,10.0,9.0,16,5.33 +10053,97.0,10.0,10.0,10.0,10.0,10.0,10.0,14,5.06 +45485,,,,,,,,0, +7855,,,,,,,,0, +22273,83.0,9.0,8.0,9.0,10.0,10.0,8.0,8,2.82 +23472,90.0,10.0,9.0,10.0,10.0,10.0,9.0,4,1.52 +2725,93.0,10.0,9.0,10.0,10.0,9.0,9.0,26,8.86 +41078,85.0,9.0,10.0,10.0,10.0,10.0,9.0,4,1.69 +44134,,,,,,,,0, +11132,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,2.2 +20029,80.0,10.0,10.0,10.0,8.0,8.0,8.0,1,0.39 +23355,98.0,10.0,10.0,10.0,10.0,10.0,10.0,16,6.08 +8341,,,,,,,,0, +17345,98.0,10.0,10.0,10.0,10.0,9.0,10.0,11,6.73 +1134,82.0,9.0,8.0,9.0,9.0,9.0,9.0,19,6.4 +24215,,,,,,,,0, +25505,100.0,10.0,9.0,10.0,10.0,9.0,9.0,3,1.3 +61410,100.0,10.0,10.0,10.0,10.0,9.0,10.0,9,3.42 +31847,94.0,9.0,8.0,10.0,10.0,10.0,10.0,7,2.63 +63890,93.0,10.0,9.0,9.0,10.0,8.0,9.0,9,3.03 +26462,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +45652,,,,,,,,0, +67677,,,,,,,,0, +54395,93.0,10.0,9.0,10.0,10.0,10.0,9.0,3,1.58 +22728,,,,,,,,0, +45137,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.36 +9711,,,,,,,,0, +55877,83.0,9.0,8.0,9.0,9.0,10.0,8.0,7,2.31 +42190,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,3.75 +39083,100.0,10.0,10.0,10.0,10.0,10.0,9.0,9,3.14 +43718,89.0,10.0,10.0,9.0,9.0,10.0,10.0,16,5.65 +67201,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.52 +74650,,,,,,,,0, +19030,90.0,9.0,9.0,9.0,10.0,10.0,9.0,4,1.79 +19836,100.0,9.0,9.0,10.0,10.0,10.0,9.0,3,2.31 +51689,,,,,,,,0, +3038,80.0,10.0,7.0,10.0,10.0,9.0,8.0,7,2.56 +38792,93.0,10.0,9.0,10.0,10.0,9.0,9.0,3,1.64 +26077,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.43 +11958,,,,,,,,0, +9520,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +60113,93.0,10.0,10.0,10.0,10.0,9.0,9.0,6,2.07 +58528,100.0,9.0,10.0,10.0,10.0,10.0,9.0,2,1.22 +71018,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,2.14 +58943,100.0,10.0,10.0,10.0,10.0,10.0,8.0,2,0.64 +30485,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.37 +56306,73.0,9.0,8.0,5.0,8.0,10.0,9.0,3,1.17 +76491,95.0,10.0,10.0,10.0,9.0,10.0,9.0,8,3.24 +43752,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +76046,,,,,,,,0, +51650,80.0,10.0,10.0,2.0,4.0,10.0,10.0,1,0.43 +63211,100.0,10.0,10.0,10.0,10.0,10.0,9.0,7,2.53 +12946,92.0,10.0,10.0,9.0,10.0,9.0,9.0,12,4.5 +42409,,,,,,,,0, +42547,,,,,,,,0, +74071,,,,,,,,0, +12413,,,,,,,,0, +41106,67.0,9.0,8.0,9.0,8.0,9.0,5.0,3,2.09 +54559,93.0,9.0,9.0,9.0,10.0,9.0,9.0,19,7.31 +2645,,,,,,,,0, +32427,,,,,,,,0, +62411,91.0,10.0,10.0,10.0,9.0,9.0,9.0,21,7.78 +76290,67.0,10.0,8.0,10.0,10.0,10.0,10.0,3,1.48 +24424,,,,,,,,0, +76979,100.0,10.0,10.0,9.0,10.0,9.0,10.0,3,1.1 +5308,100.0,10.0,10.0,10.0,10.0,8.0,9.0,2,0.66 +20389,88.0,10.0,9.0,10.0,10.0,9.0,9.0,12,4.34 +50810,80.0,9.0,8.0,9.0,10.0,9.0,9.0,3,1.15 +71842,,,,,,,,0, +10831,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +7443,100.0,10.0,10.0,10.0,9.0,10.0,9.0,7,2.59 +25018,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.39 +43161,94.0,10.0,9.0,10.0,10.0,9.0,9.0,21,6.85 +67816,90.0,9.0,7.0,10.0,10.0,9.0,9.0,2,0.85 +52006,100.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.4 +40798,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.63 +48626,96.0,10.0,10.0,10.0,9.0,10.0,10.0,10,3.75 +65654,,,,,,,,0, +13359,,,,,,,,0, +4936,90.0,8.0,9.0,8.0,8.0,8.0,9.0,2,0.71 +53605,64.0,6.0,6.0,6.0,6.0,6.0,6.0,5,1.69 +22168,,,,,,,,0, +72366,80.0,9.0,9.0,10.0,9.0,8.0,9.0,7,2.73 +15578,80.0,7.0,7.0,10.0,10.0,8.0,7.0,2,0.67 +42938,100.0,10.0,10.0,10.0,8.0,8.0,8.0,1,0.55 +48492,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.68 +71464,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.25 +56962,93.0,10.0,10.0,10.0,9.0,10.0,10.0,12,5.22 +14925,,,,,,,,0, +18307,93.0,10.0,10.0,8.0,10.0,9.0,10.0,8,2.89 +67185,,,,,,,,0, +15500,93.0,10.0,9.0,10.0,9.0,9.0,9.0,3,1.53 +70055,92.0,10.0,9.0,10.0,10.0,10.0,9.0,5,2.59 +60451,70.0,8.0,9.0,7.0,7.0,10.0,7.0,2,0.65 +24523,95.0,10.0,9.0,10.0,10.0,10.0,9.0,15,4.95 +48686,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.33 +46901,98.0,10.0,10.0,10.0,10.0,9.0,10.0,20,6.67 +33810,,,,,,,,0, +39383,90.0,9.0,10.0,9.0,9.0,9.0,9.0,10,6.67 +38951,87.0,9.0,8.0,10.0,10.0,9.0,9.0,3,1.48 +45959,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,5.22 +49293,80.0,10.0,4.0,10.0,10.0,8.0,8.0,1,0.44 +8218,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,3.18 +75035,80.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.61 +73471,97.0,10.0,9.0,9.0,10.0,10.0,10.0,6,2.61 +63736,80.0,10.0,10.0,9.0,10.0,9.0,9.0,2,0.68 +25990,,,,,,,,0, +3145,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.25 +47840,,,,,,,,0, +10910,90.0,9.0,9.0,10.0,10.0,10.0,9.0,3,1.13 +32957,,,,,,,,0, +61752,,,,,,,,0, +51095,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.38 +48207,,,,,,,,0, +3190,100.0,10.0,10.0,10.0,10.0,9.0,10.0,6,2.34 +58862,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.79 +28601,,,,,,,,0, +43913,70.0,9.0,8.0,10.0,10.0,8.0,8.0,2,2.0 +4378,,,,,,,,0, +36356,,,,,,,,0, +28949,,,,,,,,0, +3650,90.0,9.0,9.0,10.0,9.0,8.0,9.0,2,0.72 +7437,98.0,10.0,9.0,10.0,10.0,9.0,10.0,9,3.18 +3094,88.0,8.0,8.0,10.0,10.0,10.0,8.0,5,2.5 +34511,90.0,10.0,10.0,10.0,10.0,10.0,9.0,4,1.94 +23441,95.0,9.0,10.0,10.0,10.0,10.0,10.0,4,1.97 +70430,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.68 +16543,,,,,,,,0, +36938,97.0,10.0,9.0,10.0,9.0,9.0,9.0,7,3.28 +64696,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,2.17 +42859,88.0,9.0,8.0,10.0,10.0,10.0,8.0,5,1.76 +55830,96.0,10.0,9.0,10.0,10.0,10.0,9.0,15,5.29 +71708,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,2.12 +57688,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.54 +21504,,,,,,,,1,1.0 +59844,92.0,10.0,9.0,10.0,10.0,10.0,10.0,13,4.24 +44719,,,,,,,,1,0.37 +75291,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,0.65 +48426,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,0.97 +34535,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.39 +28327,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,5.85 +27285,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,4.62 +62567,96.0,10.0,9.0,10.0,10.0,10.0,10.0,9,3.21 +59524,100.0,9.0,9.0,9.0,10.0,8.0,10.0,2,0.65 +3384,93.0,9.0,9.0,9.0,10.0,9.0,7.0,3,1.08 +53729,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.79 +57593,95.0,10.0,9.0,10.0,10.0,9.0,9.0,13,4.53 +51910,98.0,9.0,10.0,10.0,10.0,10.0,9.0,11,4.34 +45901,92.0,10.0,9.0,10.0,10.0,9.0,10.0,13,4.81 +5859,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,3.26 +18543,,,,,,,,0, +66376,92.0,10.0,9.0,10.0,10.0,9.0,9.0,12,4.34 +72711,,,,,,,,0, +67605,93.0,10.0,9.0,7.0,9.0,9.0,8.0,6,2.47 +20096,60.0,8.0,2.0,10.0,8.0,8.0,6.0,1,0.39 +24407,90.0,8.0,8.0,10.0,8.0,9.0,8.0,2,0.77 +65928,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.68 +17926,95.0,10.0,9.0,10.0,10.0,10.0,10.0,4,1.52 +51250,,,,,,,,0, +52069,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.59 +28896,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.4 +4771,76.0,7.0,9.0,10.0,8.0,10.0,7.0,5,2.63 +2711,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.69 +44125,83.0,9.0,9.0,8.0,10.0,10.0,10.0,7,3.33 +35999,100.0,8.0,10.0,10.0,10.0,8.0,8.0,1,1.0 +16594,97.0,9.0,9.0,9.0,10.0,10.0,9.0,6,2.73 +41138,91.0,10.0,9.0,10.0,10.0,9.0,9.0,7,3.04 +13985,,,,,,,,0, +38387,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.43 +24530,86.0,9.0,9.0,9.0,9.0,10.0,9.0,7,2.8 +18716,90.0,10.0,8.0,10.0,10.0,9.0,9.0,6,3.05 +32652,100.0,10.0,10.0,10.0,10.0,9.0,9.0,4,2.18 +34501,,,,,,,,0, +27029,100.0,10.0,9.0,10.0,10.0,9.0,10.0,3,3.0 +6034,80.0,8.0,7.0,9.0,8.0,8.0,8.0,3,1.5 +27008,,,,,,,,0, +57992,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.78 +1630,100.0,10.0,10.0,10.0,10.0,10.0,10.0,19,6.2 +62443,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.44 +76699,75.0,8.0,8.0,8.0,9.0,8.0,8.0,4,1.41 +3688,,,,,,,,0, +21927,90.0,9.0,10.0,10.0,10.0,9.0,9.0,2,0.67 +19146,93.0,9.0,9.0,10.0,10.0,10.0,9.0,12,4.19 +6543,,,,,,,,0, +13549,95.0,10.0,9.0,10.0,10.0,10.0,9.0,12,3.87 +31693,,,,,,,,0, +50998,78.0,9.0,9.0,10.0,10.0,8.0,8.0,8,2.73 +51808,93.0,10.0,10.0,9.0,10.0,10.0,10.0,3,2.14 +59678,78.0,9.0,9.0,9.0,9.0,10.0,8.0,10,3.8 +38305,92.0,10.0,9.0,10.0,10.0,9.0,9.0,14,5.06 +18810,90.0,8.0,7.0,10.0,10.0,9.0,9.0,2,0.73 +66570,100.0,10.0,10.0,10.0,10.0,9.0,9.0,4,1.88 +2208,93.0,10.0,9.0,10.0,10.0,10.0,10.0,8,2.93 +4860,77.0,9.0,7.0,10.0,9.0,10.0,8.0,6,2.43 +33909,60.0,8.0,8.0,8.0,6.0,8.0,6.0,1,1.0 +40180,88.0,9.0,9.0,10.0,10.0,9.0,8.0,5,1.79 +53519,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.83 +6894,,,,,,,,0, +63491,,,,,,,,0, +55645,91.0,9.0,8.0,10.0,9.0,10.0,9.0,11,4.07 +16411,97.0,10.0,10.0,10.0,10.0,10.0,10.0,7,3.0 +60339,93.0,10.0,10.0,10.0,10.0,9.0,10.0,3,1.08 +51963,50.0,6.0,5.0,6.0,4.0,6.0,6.0,2,1.18 +10374,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,5.13 +62339,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +62194,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,3.33 +56973,100.0,10.0,10.0,10.0,10.0,9.0,9.0,2,1.22 +75746,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.36 +65629,,,,,,,,0, +67103,90.0,10.0,9.0,9.0,10.0,9.0,9.0,10,3.41 +8496,100.0,10.0,10.0,10.0,10.0,10.0,10.0,16,6.32 +58740,,,,,,,,0, +25326,80.0,8.0,9.0,9.0,9.0,9.0,8.0,8,3.87 +47509,100.0,10.0,10.0,9.0,10.0,10.0,10.0,4,2.31 +10667,100.0,10.0,9.0,10.0,10.0,9.0,10.0,2,1.28 +52537,95.0,10.0,9.0,10.0,10.0,10.0,9.0,15,5.92 +44424,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.5 +9120,,,,,,,,0, +40260,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +12453,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.14 +26754,,,,,,,,0, +3146,,,,,,,,0, +16610,90.0,9.0,10.0,10.0,10.0,7.0,8.0,8,3.16 +60328,100.0,9.0,10.0,10.0,9.0,9.0,9.0,2,0.97 +54566,98.0,10.0,10.0,10.0,10.0,10.0,9.0,8,3.2 +25496,,,,,,,,3, +38846,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.42 +42654,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,5.17 +39027,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,2.38 +20067,96.0,10.0,10.0,10.0,10.0,10.0,9.0,5,1.69 +73704,80.0,8.0,10.0,10.0,10.0,10.0,8.0,1,0.39 +44351,100.0,9.0,10.0,10.0,10.0,10.0,9.0,2,1.09 +27665,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.13 +15655,,10.0,10.0,10.0,10.0,10.0,10.0,1,0.36 +38289,90.0,10.0,9.0,10.0,10.0,9.0,9.0,2,0.91 +29125,,,,,,,,0, +1922,90.0,10.0,10.0,10.0,10.0,9.0,9.0,2,1.46 +71767,87.0,10.0,10.0,10.0,9.0,9.0,9.0,9,3.33 +29073,100.0,8.0,10.0,10.0,10.0,8.0,10.0,1,1.0 +26569,80.0,8.0,8.0,9.0,8.0,9.0,7.0,8,3.48 +18136,,,,,,,,0, +22685,89.0,9.0,10.0,10.0,10.0,9.0,9.0,13,4.33 +36658,100.0,10.0,10.0,10.0,10.0,10.0,9.0,6,3.21 +10662,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.32 +6427,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.39 +33153,80.0,10.0,9.0,7.0,10.0,9.0,10.0,3,1.06 +64185,95.0,10.0,10.0,10.0,9.0,10.0,10.0,4,1.6 +31746,92.0,9.0,9.0,8.0,9.0,10.0,10.0,5,2.24 +74938,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.35 +47007,93.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.02 +23067,,,,,,,,0, +74721,95.0,10.0,10.0,10.0,10.0,10.0,10.0,13,5.65 +36706,92.0,10.0,9.0,10.0,10.0,10.0,9.0,19,6.87 +70555,93.0,10.0,9.0,9.0,10.0,9.0,8.0,3,1.45 +66829,,,,,,,,0, +24573,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,5.2 +29831,,,,,,,,0, +44020,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,1.0 +55490,,,,,,,,0, +46877,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,1.96 +8820,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.62 +36181,,,,,,,,0, +413,,,,,,,,0, +69581,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.43 +65145,,,,,,,,0, +44982,93.0,8.0,10.0,10.0,9.0,9.0,9.0,6,2.47 +59109,90.0,9.0,9.0,9.0,9.0,9.0,9.0,10,5.26 +56283,100.0,10.0,9.0,9.0,10.0,10.0,10.0,6,2.4 +51736,,,,,,,,0, +68829,80.0,10.0,10.0,8.0,6.0,8.0,10.0,1,1.0 +49333,,,,,,,,0, +26042,,,,,,,,0, +33689,95.0,10.0,10.0,10.0,10.0,10.0,9.0,4,2.03 +28866,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.42 +12054,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.91 +41623,97.0,10.0,10.0,10.0,10.0,9.0,9.0,18,6.43 +19050,85.0,10.0,9.0,10.0,10.0,9.0,9.0,4,1.62 +22287,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.47 +22455,,,,,,,,0, +39604,,,,,,,,0, +53623,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,1.96 +76306,90.0,9.0,10.0,10.0,10.0,10.0,9.0,4,1.54 +36565,93.0,9.0,9.0,8.0,10.0,9.0,9.0,3,1.61 +1912,84.0,8.0,10.0,8.0,8.0,10.0,8.0,5,1.85 +53901,,,,,,,,0, +42289,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,4.0 +45048,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,2.5 +1668,100.0,8.0,9.0,9.0,10.0,10.0,10.0,3,1.8 +64018,,,,,,,,0, +44254,,,,,,,,0, +31313,100.0,10.0,10.0,9.0,10.0,10.0,10.0,7,3.04 +10277,79.0,9.0,8.0,10.0,8.0,9.0,9.0,15,4.95 +74582,,,,,,,,0, +40070,,,,,,,,0, +51288,95.0,10.0,9.0,10.0,10.0,10.0,9.0,5,2.05 +36665,95.0,10.0,9.0,10.0,9.0,9.0,10.0,4,2.07 +13080,,,,,,,,0, +40653,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.76 +21995,,,,,,,,0, +64157,,,,,,,,0, +42968,85.0,10.0,8.0,9.0,8.0,10.0,10.0,4,1.41 +48745,98.0,10.0,10.0,9.0,10.0,10.0,10.0,9,3.18 +28921,,,,,,,,1,0.49 +4077,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,1.95 +62679,99.0,10.0,10.0,10.0,10.0,10.0,10.0,35,12.21 +6527,87.0,10.0,10.0,10.0,10.0,9.0,9.0,3,1.7 +43816,,,,,,,,0, +16410,93.0,9.0,9.0,8.0,9.0,10.0,10.0,3,2.25 +13954,,,,,,,,0, +449,,,,,,,,0, +60779,90.0,9.0,8.0,10.0,10.0,9.0,9.0,6,2.2 +32560,,,,,,,,0, +3820,100.0,8.0,10.0,10.0,10.0,8.0,10.0,1,0.43 +11488,,,,,,,,0, +38093,,,,,,,,0, +8926,,,,,,,,0, +37288,,,,,,,,0, +74018,87.0,9.0,8.0,8.0,9.0,10.0,8.0,3,1.41 +48553,,,,,,,,0, +51627,,,,,,,,0, +5932,,,,,,,,0, +3104,80.0,10.0,8.0,8.0,8.0,10.0,8.0,1,0.65 +47777,,,,,,,,0, +3456,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,1.0 +50832,,,,,,,,0, +53800,,,,,,,,0, +14843,90.0,8.0,9.0,8.0,8.0,10.0,9.0,5,2.17 +39569,,,,,,,,0, +68268,88.0,9.0,8.0,9.0,9.0,9.0,9.0,8,3.64 +16758,95.0,10.0,10.0,10.0,10.0,9.0,10.0,17,5.93 +30910,100.0,8.0,10.0,8.0,8.0,10.0,8.0,1,0.48 +11344,90.0,9.0,10.0,10.0,10.0,10.0,10.0,4,1.76 +26479,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.38 +15117,93.0,9.0,9.0,10.0,10.0,10.0,9.0,14,4.77 +33354,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,2.67 +35329,100.0,10.0,9.0,9.0,10.0,10.0,10.0,10,3.57 +31377,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +36137,70.0,8.0,9.0,7.0,6.0,8.0,8.0,2,0.76 +58475,98.0,10.0,10.0,10.0,10.0,9.0,10.0,17,6.07 +2398,93.0,10.0,9.0,10.0,10.0,10.0,9.0,8,3.48 +63878,85.0,10.0,10.0,10.0,9.0,8.0,9.0,8,2.86 +14316,,,,,,,,0, +8981,94.0,10.0,10.0,9.0,9.0,9.0,9.0,7,4.2 +74238,,,,,,,,0, +67501,,,,,,,,0, +67249,,,,,,,,0, +21099,80.0,10.0,8.0,10.0,10.0,8.0,8.0,2,0.8 +53133,,,,,,,,0, +72789,97.0,10.0,10.0,10.0,10.0,9.0,10.0,15,5.49 +50857,93.0,10.0,10.0,9.0,10.0,9.0,10.0,6,2.86 +68724,,,,,,,,0, +24983,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,5.32 +45346,80.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.35 +1936,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,3.0 +14855,,,,,,,,0, +61672,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,2.88 +18146,95.0,10.0,9.0,10.0,10.0,10.0,10.0,11,3.88 +39559,,,,,,,,0, +37908,73.0,10.0,10.0,10.0,7.0,10.0,8.0,3,2.09 +56855,,,,,,,,0, +51175,97.0,10.0,10.0,10.0,10.0,10.0,10.0,13,5.74 +47429,77.0,7.0,9.0,9.0,7.0,9.0,8.0,7,2.8 +8000,,,,,,,,0, +37323,100.0,10.0,9.0,10.0,10.0,10.0,10.0,10,3.33 +19799,98.0,9.0,10.0,9.0,10.0,10.0,10.0,9,4.09 +44540,100.0,10.0,10.0,10.0,10.0,10.0,10.0,19,7.81 +65896,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,2.11 +43626,100.0,10.0,10.0,10.0,9.0,10.0,10.0,3,1.61 +57424,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.94 +23634,80.0,8.0,8.0,8.0,9.0,8.0,8.0,4,2.31 +52809,90.0,10.0,10.0,9.0,10.0,10.0,9.0,6,3.21 +39043,93.0,10.0,9.0,9.0,10.0,10.0,10.0,6,2.47 +43549,90.0,9.0,8.0,9.0,10.0,9.0,9.0,6,2.07 +43301,98.0,10.0,10.0,10.0,10.0,10.0,9.0,8,6.15 +24754,100.0,10.0,10.0,10.0,10.0,9.0,10.0,9,3.75 +20515,,,,,,,,0, +41012,90.0,9.0,10.0,10.0,10.0,10.0,10.0,2,1.13 +75281,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.81 +26019,70.0,8.0,6.0,5.0,7.0,9.0,6.0,2,0.81 +40865,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,2.28 +51494,98.0,10.0,10.0,9.0,10.0,9.0,9.0,8,3.08 +26415,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.82 +22133,,,,,,,,0, +66606,94.0,10.0,9.0,10.0,10.0,9.0,10.0,10,3.8 +46801,100.0,10.0,8.0,10.0,10.0,6.0,8.0,1,0.39 +44631,98.0,9.0,9.0,10.0,10.0,9.0,10.0,10,3.9 +51881,87.0,9.0,10.0,9.0,9.0,9.0,9.0,3,1.88 +75720,100.0,10.0,10.0,9.0,10.0,10.0,10.0,3,1.67 +8161,87.0,9.0,9.0,10.0,10.0,9.0,9.0,3,1.23 +57827,93.0,9.0,8.0,10.0,10.0,10.0,10.0,3,1.96 +70222,100.0,10.0,10.0,9.0,10.0,10.0,9.0,3,2.2 +33115,97.0,10.0,10.0,10.0,10.0,9.0,9.0,15,5.92 +30386,,,,,,,,0, +31387,,,,,,,,0, +73753,,,,,,,,0, +31397,,,,,,,,0, +58352,,,,,,,,0, +10954,90.0,10.0,10.0,9.0,8.0,10.0,10.0,2,1.25 +73426,,,,,,,,0, +37851,93.0,10.0,9.0,10.0,10.0,10.0,9.0,6,2.86 +33366,,,,,,,,0, +37316,,,,,,,,0, +31528,,,,,,,,0, +68665,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.61 +59613,,,,,,,,0, +74825,60.0,8.0,10.0,10.0,10.0,10.0,6.0,1,0.46 +59869,,,,,,,,0, +39342,,,,,,,,0, +58793,,,,,,,,0, +33615,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.56 +50234,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.02 +10946,87.0,9.0,8.0,10.0,10.0,10.0,9.0,4,2.18 +46167,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +71536,20.0,2.0,10.0,4.0,4.0,4.0,6.0,1,1.0 +34597,90.0,8.0,9.0,9.0,8.0,8.0,6.0,2,0.86 +61767,,,,,,,,0, +67480,,,,,,,,0, +64802,,,,,,,,0, +5334,,,,,,,,0, +56757,,,,,,,,0, +64133,,,,,,,,0, +36216,100.0,10.0,10.0,10.0,6.0,10.0,10.0,2,1.43 +74691,,,,,,,,0, +76391,,,,,,,,0, +38337,,,,,,,,0, +3918,,,,,,,,0, +23248,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +18371,76.0,10.0,8.0,10.0,10.0,9.0,8.0,5,3.57 +36049,91.0,10.0,9.0,10.0,10.0,10.0,9.0,7,2.92 +51569,80.0,8.0,8.0,9.0,8.0,8.0,7.0,2,0.8 +68624,77.0,8.0,9.0,9.0,9.0,9.0,9.0,6,2.95 +55200,,,,,,,,0, +38901,85.0,9.0,9.0,8.0,9.0,10.0,9.0,4,2.31 +41751,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,2.11 +63833,92.0,9.0,10.0,10.0,9.0,10.0,9.0,5,3.49 +57927,,,,,,,,0, +50266,90.0,10.0,9.0,10.0,10.0,10.0,10.0,4,1.85 +65346,77.0,9.0,8.0,9.0,9.0,9.0,7.0,6,2.5 +4192,86.0,9.0,8.0,10.0,9.0,8.0,8.0,13,5.06 +38393,,,,,,,,0, +42528,98.0,10.0,9.0,10.0,10.0,9.0,10.0,8,3.38 +68740,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.36 +54477,93.0,9.0,9.0,10.0,10.0,10.0,9.0,3,1.25 +30396,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,2.35 +72272,,,,,,,,0, +25727,87.0,9.0,10.0,10.0,10.0,10.0,10.0,3,2.25 +23983,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +64146,100.0,10.0,9.0,10.0,10.0,8.0,9.0,2,1.43 +31039,87.0,10.0,9.0,10.0,10.0,10.0,9.0,4,1.6 +62711,89.0,10.0,7.0,10.0,10.0,10.0,10.0,9,3.21 +20785,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +66391,98.0,10.0,10.0,9.0,10.0,10.0,10.0,9,4.22 +66129,84.0,9.0,10.0,8.0,8.0,8.0,8.0,5,2.42 +52207,97.0,10.0,8.0,10.0,10.0,9.0,10.0,6,2.54 +56198,68.0,8.0,8.0,8.0,7.0,8.0,6.0,5,1.97 +28962,,,,,,,,0, +34896,87.0,9.0,9.0,9.0,9.0,9.0,9.0,3,1.8 +10621,,,,,,,,1,0.39 +41445,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,2.12 +68356,,,,,,,,0, +28648,89.0,9.0,10.0,7.0,8.0,10.0,9.0,24,8.57 +30074,70.0,9.0,6.0,10.0,7.0,10.0,6.0,2,0.69 +28935,100.0,10.0,10.0,10.0,9.0,10.0,10.0,7,4.12 +6661,,,,,,,,1,0.48 +55529,95.0,10.0,10.0,10.0,10.0,9.0,10.0,24,8.57 +43192,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,2.89 +10378,,,,,,,,0, +41350,86.0,9.0,9.0,9.0,10.0,10.0,9.0,7,2.92 +72363,95.0,10.0,10.0,10.0,10.0,8.0,10.0,9,3.75 +1164,,,,,,,,0, +45161,100.0,9.0,10.0,9.0,10.0,10.0,9.0,3,1.27 +16859,,,,,,,,0, +25338,89.0,10.0,9.0,10.0,10.0,9.0,10.0,7,2.92 +45274,80.0,6.0,10.0,10.0,4.0,10.0,10.0,1,0.65 +24756,,,,,,,,0, +45198,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +75676,94.0,10.0,9.0,10.0,10.0,10.0,9.0,7,2.88 +47239,,,,,,,,0, +41917,60.0,6.0,6.0,6.0,8.0,5.0,8.0,2,0.97 +40831,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,2.44 +50597,,,,,,,,0, +49731,,,,,,,,0, +66351,90.0,10.0,9.0,10.0,10.0,9.0,9.0,4,1.76 +39689,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,2.53 +37219,,,,,,,,0, +19020,60.0,5.0,4.0,10.0,6.0,7.0,7.0,3,1.13 +52136,100.0,10.0,9.0,10.0,10.0,10.0,8.0,2,1.4 +18534,90.0,8.0,9.0,10.0,9.0,9.0,9.0,2,1.4 +36748,,,,,,,,0, +67410,73.0,9.0,9.0,9.0,7.0,10.0,9.0,3,1.18 +27817,90.0,10.0,9.0,10.0,10.0,9.0,8.0,8,3.69 +41923,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,1.45 +32460,80.0,10.0,9.0,9.0,10.0,10.0,9.0,12,4.39 +53302,,,,,,,,0, +38514,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.95 +51747,100.0,10.0,10.0,10.0,10.0,9.0,10.0,6,2.9 +66729,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.34 +50344,,,,,,,,0, +43003,87.0,8.0,8.0,9.0,10.0,10.0,7.0,6,2.17 +30933,100.0,10.0,9.0,10.0,10.0,9.0,9.0,3,1.23 +9926,80.0,9.0,7.0,8.0,9.0,9.0,9.0,11,4.71 +15877,91.0,10.0,9.0,10.0,10.0,10.0,9.0,16,6.15 +25697,67.0,10.0,8.0,9.0,9.0,10.0,9.0,3,1.34 +57081,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.36 +2962,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,5.27 +10076,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.05 +45172,,,,,,,,0, +14434,100.0,10.0,10.0,9.0,10.0,10.0,9.0,7,6.36 +39672,80.0,9.0,9.0,9.0,7.0,7.0,8.0,2,1.07 +55186,98.0,10.0,10.0,10.0,10.0,9.0,10.0,13,6.0 +14982,90.0,10.0,10.0,10.0,10.0,9.0,10.0,6,3.6 +64853,,,,,,,,0, +76900,60.0,6.0,6.0,6.0,6.0,6.0,6.0,1,0.63 +36357,90.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.41 +68280,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.02 +53163,,,,,,,,0, +71914,100.0,10.0,10.0,10.0,10.0,10.0,10.0,18,6.51 +37918,100.0,10.0,9.0,10.0,10.0,10.0,10.0,9,3.25 +33292,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.42 +40727,,,,,,,,0, +4806,80.0,6.0,8.0,10.0,8.0,10.0,8.0,1,0.49 +15644,93.0,10.0,9.0,10.0,10.0,10.0,9.0,18,6.67 +5872,86.0,10.0,8.0,10.0,10.0,10.0,9.0,13,4.81 +39122,92.0,10.0,9.0,10.0,10.0,9.0,10.0,19,7.04 +76221,,,,,,,,0, +42113,,,,,,,,1, +38018,,,,,,,,0, +26224,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,2.73 +17533,,,,,,,,0, +30695,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +58596,88.0,10.0,10.0,10.0,10.0,9.0,9.0,8,2.7 +45484,100.0,10.0,6.0,10.0,10.0,10.0,10.0,1,1.0 +38932,90.0,10.0,9.0,9.0,9.0,10.0,10.0,18,6.28 +59797,60.0,7.0,6.0,10.0,10.0,7.0,7.0,2,1.71 +57017,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +12502,97.0,10.0,9.0,10.0,10.0,10.0,10.0,6,2.25 +29335,83.0,9.0,8.0,9.0,9.0,9.0,9.0,14,5.83 +2775,,,,,,,,0, +4135,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,3.33 +13037,,,,,,,,0, +31320,97.0,9.0,10.0,9.0,9.0,10.0,10.0,7,2.69 +35928,,,,,,,,0, +33240,88.0,9.0,8.0,10.0,10.0,10.0,9.0,8,4.53 +75573,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,1.18 +30725,,,,,,,,0, +972,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,2.46 +22900,96.0,9.0,10.0,10.0,10.0,10.0,10.0,5,2.17 +9475,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.73 +34181,,,,,,,,0, +24122,85.0,8.0,8.0,9.0,9.0,10.0,8.0,8,2.89 +71278,,,,,,,,0, +54512,100.0,10.0,9.0,10.0,10.0,10.0,9.0,2,0.92 +63221,,,,,,,,0, +37390,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,3.66 +22870,68.0,8.0,7.0,8.0,9.0,8.0,7.0,5,2.17 +10350,93.0,9.0,9.0,10.0,10.0,10.0,9.0,3,1.96 +24816,90.0,9.0,9.0,9.0,10.0,8.0,9.0,6,2.43 +74034,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.72 +53265,96.0,9.0,9.0,10.0,10.0,9.0,9.0,5,2.0 +32347,84.0,8.0,8.0,8.0,8.0,9.0,8.0,5,2.73 +59907,93.0,10.0,9.0,10.0,10.0,10.0,10.0,3,1.13 +54565,100.0,8.0,10.0,10.0,10.0,10.0,9.0,2,1.09 +2368,60.0,8.0,6.0,10.0,10.0,10.0,10.0,1,0.58 +43767,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.43 +71638,,,,,,,,0, +50000,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.13 +4143,89.0,10.0,9.0,10.0,10.0,10.0,9.0,16,5.65 +50050,95.0,10.0,10.0,9.0,10.0,10.0,10.0,8,3.53 +23916,87.0,10.0,10.0,8.0,9.0,9.0,10.0,3,1.14 +11799,,,,,,,,0, +9653,,,,,,,,0, +16042,90.0,9.0,9.0,9.0,9.0,9.0,8.0,6,2.17 +55593,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.54 +56561,,,,,,,,0, +26094,100.0,10.0,10.0,9.0,9.0,9.0,10.0,9,3.03 +37127,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,3.33 +31036,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,3.33 +5627,90.0,7.0,6.0,9.0,9.0,10.0,10.0,2,0.71 +65525,,,,,,,,0, +14514,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +40883,92.0,9.0,9.0,10.0,10.0,9.0,10.0,28,9.44 +35913,100.0,10.0,9.0,10.0,10.0,10.0,10.0,4,2.73 +59744,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.8 +72872,,,,,,,,0, +18281,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.7 +35480,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,2.46 +17673,100.0,9.0,9.0,8.0,9.0,10.0,9.0,2,0.87 +45419,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,2.31 +33685,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,3.5 +5287,100.0,10.0,9.0,10.0,10.0,9.0,10.0,2,1.71 +52739,89.0,9.0,10.0,9.0,10.0,9.0,9.0,7,2.63 +26395,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.65 +40595,78.0,8.0,8.0,9.0,9.0,9.0,8.0,11,3.84 +10056,98.0,10.0,9.0,9.0,10.0,10.0,10.0,9,3.25 +16531,88.0,9.0,8.0,10.0,10.0,10.0,9.0,13,5.06 +18465,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.88 +58045,,,,,,,,0, +1355,80.0,10.0,6.0,10.0,10.0,10.0,8.0,1,0.65 +43905,87.0,9.0,9.0,9.0,10.0,9.0,9.0,3,1.73 +66330,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.72 +50114,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.43 +2763,80.0,9.0,7.0,10.0,10.0,9.0,8.0,2,2.0 +30268,95.0,10.0,10.0,10.0,10.0,9.0,10.0,4,1.58 +52084,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,2.43 +10879,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.37 +62848,,,,,,,,0, +33062,75.0,9.0,6.0,10.0,10.0,10.0,8.0,8,3.33 +15675,93.0,9.0,9.0,10.0,10.0,7.0,9.0,3,1.38 +20198,,,,,,,,0, +11430,88.0,10.0,10.0,8.0,9.0,10.0,10.0,5,3.66 +65194,83.0,9.0,9.0,9.0,10.0,9.0,8.0,8,3.87 +66174,100.0,10.0,10.0,9.0,10.0,10.0,9.0,6,2.43 +24824,100.0,10.0,10.0,8.0,10.0,8.0,8.0,1,0.73 +74517,60.0,10.0,6.0,9.0,8.0,8.0,7.0,4,2.79 +20565,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +35758,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,3.68 +16583,93.0,9.0,10.0,10.0,10.0,9.0,9.0,3,1.27 +14061,87.0,9.0,10.0,9.0,9.0,10.0,9.0,14,4.94 +53630,,,,,,,,0, +58804,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.5 +56143,,,,,,,,0, +48011,,,,,,,,0, +29685,88.0,10.0,10.0,8.0,10.0,10.0,9.0,6,2.43 +10326,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.95 +22901,80.0,9.0,9.0,8.0,8.0,9.0,9.0,8,3.24 +31212,87.0,10.0,8.0,10.0,10.0,9.0,9.0,3,1.91 +76030,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.37 +16359,,,,,,,,0, +21591,87.0,10.0,9.0,10.0,9.0,9.0,9.0,3,1.73 +34893,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.75 +54605,,,,,,,,0, +37321,,,,,,,,0, +37580,,,,,,,,0, +58580,92.0,10.0,9.0,10.0,10.0,10.0,10.0,18,7.11 +44639,70.0,7.0,6.0,6.0,9.0,8.0,8.0,2,0.88 +74060,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.09 +12912,73.0,9.0,7.0,8.0,10.0,9.0,8.0,3,2.65 +74372,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,2.65 +1870,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,2.14 +70564,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.95 +74173,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.11 +57600,100.0,10.0,10.0,10.0,9.0,10.0,9.0,3,1.58 +1853,86.0,9.0,9.0,10.0,10.0,10.0,10.0,7,2.44 +28628,96.0,10.0,10.0,9.0,10.0,10.0,9.0,11,5.32 +13278,,,,,,,,0, +22223,,,,,,,,0, +30315,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,5.0 +45280,60.0,6.0,6.0,8.0,10.0,6.0,6.0,1,0.43 +9352,,,,,,,,0, +9016,90.0,10.0,10.0,10.0,9.0,9.0,9.0,3,1.41 +67376,,,,,,,,0, +70479,85.0,9.0,8.0,9.0,9.0,10.0,8.0,4,1.58 +30224,,,,,,,,0, +19071,96.0,10.0,10.0,10.0,10.0,10.0,9.0,5,2.11 +69637,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,1.0 +14205,100.0,10.0,9.0,10.0,9.0,9.0,10.0,2,0.8 +41933,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.41 +74260,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,2.14 +77061,100.0,10.0,10.0,10.0,9.0,10.0,10.0,11,4.12 +50680,,,,,,,,0, +18792,93.0,9.0,9.0,10.0,10.0,8.0,9.0,8,2.76 +30613,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.43 +62158,75.0,9.0,10.0,10.0,9.0,8.0,8.0,8,3.38 +45947,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,3.9 +50619,80.0,6.0,8.0,10.0,10.0,10.0,6.0,1,0.81 +56213,93.0,9.0,10.0,9.0,9.0,8.0,9.0,10,3.49 +16642,,,,,,,,0, +50464,88.0,9.0,9.0,10.0,10.0,10.0,10.0,5,2.54 +76909,95.0,10.0,10.0,10.0,10.0,10.0,10.0,8,3.87 +25920,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.57 +41449,94.0,10.0,10.0,9.0,9.0,9.0,10.0,14,5.06 +24114,,,,,,,,0, +73717,100.0,10.0,10.0,10.0,10.0,9.0,9.0,2,0.95 +61190,90.0,9.0,10.0,9.0,9.0,10.0,9.0,18,7.11 +76231,98.0,9.0,10.0,9.0,10.0,10.0,10.0,9,4.15 +48269,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.88 +49401,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,2.05 +68410,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.92 +27463,88.0,10.0,9.0,10.0,9.0,9.0,9.0,5,2.17 +10287,,,,,,,,0, +61680,100.0,10.0,9.0,10.0,10.0,10.0,9.0,3,1.18 +70261,,,,,,,,0, +42735,,,,,,,,0, +44304,91.0,9.0,9.0,9.0,9.0,9.0,9.0,9,3.29 +10799,93.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.41 +51088,,,,,,,,0, +27977,80.0,8.0,6.0,10.0,10.0,10.0,8.0,1,1.0 +52697,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +2576,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,2.73 +46258,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.49 +8029,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.35 +51100,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,6.19 +39929,100.0,10.0,10.0,10.0,10.0,10.0,9.0,4,1.67 +6190,,,,,,,,0, +37837,92.0,10.0,10.0,10.0,10.0,10.0,9.0,5,2.42 +62357,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.63 +65359,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.03 +30434,,,,,,,,0, +29007,,,,,,,,0, +74571,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.61 +59070,100.0,10.0,10.0,10.0,10.0,9.0,9.0,4,2.22 +14319,80.0,10.0,8.0,10.0,10.0,6.0,6.0,1,0.48 +26881,90.0,10.0,9.0,10.0,10.0,10.0,8.0,2,1.58 +63194,97.0,9.0,9.0,10.0,10.0,10.0,9.0,7,2.69 +50520,93.0,10.0,10.0,9.0,10.0,10.0,9.0,3,1.61 +66307,90.0,10.0,10.0,10.0,8.0,10.0,10.0,2,1.76 +51360,,,,,,,,0, +35061,,,,,,,,1,1.0 +59652,,,,,,,,1,0.41 +50851,96.0,10.0,9.0,9.0,10.0,10.0,9.0,11,4.18 +46297,80.0,9.0,9.0,9.0,9.0,9.0,8.0,6,2.28 +48709,90.0,9.0,9.0,10.0,10.0,10.0,9.0,6,3.75 +26355,60.0,5.0,5.0,7.0,6.0,10.0,6.0,2,1.46 +12513,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.97 +16328,,,,,,,,0, +20251,93.0,10.0,10.0,10.0,9.0,10.0,9.0,6,3.0 +46264,,,,,,,,0, +18450,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.72 +37669,90.0,10.0,9.0,10.0,10.0,10.0,10.0,2,1.22 +71623,92.0,8.0,7.0,8.0,8.0,8.0,7.0,5,2.0 +25938,60.0,5.0,5.0,6.0,6.0,5.0,7.0,2,1.15 +18822,20.0,4.0,4.0,4.0,2.0,8.0,6.0,1,0.53 +65405,80.0,9.0,6.0,10.0,10.0,10.0,8.0,6,2.4 +12791,88.0,10.0,9.0,10.0,10.0,8.0,9.0,15,8.49 +57763,73.0,7.0,7.0,7.0,7.0,7.0,7.0,3,1.64 +7612,,,,,,,,0, +60103,,,,,,,,0, +62838,,,,,,,,0, +72562,80.0,10.0,8.0,10.0,10.0,10.0,10.0,1,1.0 +31801,60.0,8.0,7.0,8.0,7.0,7.0,7.0,2,0.95 +23118,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.67 +51547,70.0,10.0,8.0,10.0,8.0,10.0,9.0,4,2.79 +71960,40.0,2.0,10.0,4.0,4.0,10.0,4.0,1,0.38 +7575,100.0,9.0,10.0,10.0,10.0,10.0,9.0,5,1.95 +64644,98.0,10.0,9.0,10.0,10.0,10.0,10.0,8,3.24 +56908,90.0,9.0,10.0,10.0,10.0,10.0,10.0,4,3.16 +46089,,,,,,,,0, +23102,97.0,10.0,10.0,9.0,10.0,10.0,9.0,6,2.14 +9789,,,,,,,,0, +28233,,,,,,,,0, +42463,90.0,10.0,10.0,10.0,10.0,9.0,10.0,4,2.5 +50306,87.0,9.0,9.0,9.0,10.0,10.0,9.0,22,7.67 +63979,,,,,,,,0, +5840,100.0,9.0,10.0,10.0,10.0,10.0,10.0,3,1.45 +32123,50.0,5.0,9.0,9.0,9.0,9.0,6.0,2,0.8 +26037,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,1.18 +17721,,,,,,,,0, +43469,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,1.85 +66926,93.0,10.0,10.0,10.0,10.0,9.0,10.0,3,2.0 +28351,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,2.76 +68670,88.0,9.0,9.0,9.0,9.0,9.0,9.0,8,4.36 +16168,97.0,10.0,9.0,10.0,10.0,9.0,10.0,12,4.68 +48349,,,,,,,,0, +63069,,,,,,,,0, +498,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,3.85 +13104,20.0,4.0,2.0,8.0,4.0,8.0,2.0,1,0.38 +1495,,,,,,,,0, +28848,96.0,10.0,10.0,10.0,10.0,10.0,9.0,10,4.41 +69647,100.0,8.0,10.0,9.0,9.0,9.0,9.0,2,1.25 +56436,,,,,,,,0, +61082,,,,,,,,1,0.58 +56152,,,,,,,,0, +46795,100.0,9.0,10.0,10.0,10.0,10.0,10.0,10,4.11 +14794,83.0,9.0,8.0,10.0,9.0,9.0,9.0,8,4.53 +2178,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,4.58 +18409,83.0,9.0,9.0,10.0,10.0,10.0,9.0,6,2.9 +55777,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.52 +21542,,,,,,,,0, +44931,100.0,10.0,9.0,10.0,10.0,10.0,10.0,5,2.31 +7119,96.0,9.0,9.0,9.0,10.0,10.0,9.0,14,5.0 +69996,,,,,,,,1, +28259,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.72 +1956,,,,,,,,0, +54884,,,,,,,,0, +67736,,,,,,,,0, +51024,92.0,10.0,9.0,10.0,10.0,9.0,9.0,5,2.17 +24797,100.0,8.0,10.0,8.0,10.0,10.0,10.0,1,0.43 +44640,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.35 +76205,83.0,10.0,10.0,10.0,9.0,9.0,9.0,6,4.0 +3876,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.52 +51003,,,,,,,,0, +64216,98.0,10.0,10.0,10.0,10.0,10.0,10.0,11,3.84 +27614,91.0,9.0,9.0,9.0,9.0,9.0,9.0,10,3.95 +38711,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,4.17 +34545,89.0,10.0,9.0,9.0,10.0,10.0,9.0,14,4.83 +24423,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,3.53 +7561,80.0,9.0,7.0,9.0,10.0,10.0,8.0,4,1.74 +44823,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,4.0 +31171,,,,,,,,0, +12391,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,3.04 +4408,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,3.38 +58413,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.4 +681,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,1.17 +63929,100.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.45 +44739,87.0,9.0,8.0,8.0,6.0,9.0,9.0,3,1.14 +41701,,,,,,,,1, +50595,,,,,,,,0, +24184,92.0,10.0,9.0,10.0,10.0,10.0,8.0,13,4.7 +13226,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.95 +35931,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.53 +27044,,,,,,,,0, +32468,97.0,10.0,10.0,10.0,10.0,10.0,9.0,6,2.95 +8523,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.56 +18466,93.0,9.0,9.0,8.0,9.0,10.0,9.0,3,2.81 +47209,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,4.0 +2713,,,,,,,,0, +74865,,,,,,,,0, +76715,100.0,10.0,10.0,10.0,10.0,8.0,9.0,2,0.79 +4449,,,,,,,,0, +14277,,,,,,,,0, +67184,,,,,,,,0, +51896,80.0,7.0,9.0,7.0,8.0,9.0,8.0,4,3.53 +9011,83.0,10.0,10.0,10.0,10.0,8.0,10.0,6,2.14 +34376,80.0,8.0,8.0,9.0,10.0,8.0,7.0,2,0.8 +32440,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +72943,,,,,,,,0, +4639,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +71929,,,,,,,,0, +58438,100.0,10.0,10.0,9.0,9.0,9.0,10.0,2,0.8 +2185,98.0,10.0,9.0,10.0,10.0,9.0,9.0,8,3.48 +28370,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,1.38 +53335,93.0,10.0,9.0,9.0,10.0,10.0,9.0,6,2.5 +56542,97.0,9.0,10.0,10.0,10.0,9.0,9.0,7,2.76 +29814,,,,,,,,0, +100,95.0,10.0,10.0,9.0,10.0,10.0,9.0,4,1.88 +66218,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.15 +24915,,,,,,,,0, +28734,,,,,,,,0, +76883,97.0,10.0,10.0,10.0,10.0,9.0,10.0,6,2.57 +45611,88.0,8.0,8.0,8.0,8.0,8.0,8.0,5,2.34 +19784,80.0,10.0,10.0,10.0,10.0,8.0,10.0,1,1.0 +47435,93.0,10.0,9.0,10.0,10.0,10.0,10.0,3,1.45 +43145,,,,,,,,0, +55336,,,,,,,,0, +4153,,,,,,,,0, +73566,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.4 +38463,100.0,8.0,8.0,10.0,10.0,10.0,8.0,1,0.59 +24526,,,,,,,,0, +13587,,,,,,,,1,0.34 +25379,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.39 +61947,,,,,,,,0, +59805,,,,,,,,0, +28687,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.92 +41648,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.91 +60816,100.0,10.0,9.0,10.0,10.0,9.0,10.0,4,1.74 +22412,80.0,9.0,8.0,10.0,10.0,10.0,8.0,7,2.76 +5372,,,,,,,,0, +71625,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.58 +68377,85.0,9.0,10.0,8.0,9.0,8.0,8.0,4,1.64 +42314,,,,,,,,0, +71738,93.0,10.0,9.0,10.0,10.0,10.0,10.0,3,1.18 +14666,83.0,9.0,9.0,10.0,10.0,9.0,9.0,7,3.75 +23893,100.0,8.0,10.0,8.0,8.0,8.0,8.0,2,0.73 +57934,90.0,8.0,8.0,9.0,10.0,9.0,8.0,2,1.11 +1089,80.0,8.0,6.0,8.0,8.0,6.0,6.0,1,0.77 +37543,,,,,,,,0, +45818,,,,,,,,0, +58904,95.0,10.0,10.0,10.0,10.0,10.0,9.0,5,2.24 +74417,,,,,,,,0, +22305,94.0,9.0,9.0,10.0,10.0,9.0,9.0,16,7.5 +44819,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,1.38 +8037,75.0,9.0,9.0,10.0,10.0,9.0,6.0,4,1.76 +33731,,,,,,,,0, +60369,89.0,10.0,9.0,10.0,10.0,9.0,10.0,14,5.38 +63210,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,2.12 +38919,97.0,10.0,10.0,10.0,10.0,9.0,10.0,7,3.0 +33504,,,,,,,,0, +37455,100.0,10.0,10.0,10.0,10.0,9.0,10.0,10,5.0 +41085,95.0,9.0,9.0,8.0,9.0,8.0,8.0,4,1.85 +28168,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.58 +20436,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.3 +49652,98.0,10.0,10.0,10.0,10.0,9.0,9.0,11,4.34 +30404,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.64 +39434,90.0,10.0,9.0,10.0,10.0,10.0,8.0,2,1.43 +28495,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.45 +35611,100.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.97 +8493,94.0,10.0,10.0,10.0,10.0,10.0,9.0,7,2.73 +48294,77.0,10.0,8.0,9.0,9.0,9.0,8.0,6,2.54 +73135,93.0,9.0,10.0,10.0,9.0,10.0,8.0,6,2.14 +38374,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,2.34 +61068,89.0,10.0,9.0,10.0,10.0,10.0,9.0,13,4.59 +70842,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,2.69 +75375,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,2.9 +864,100.0,9.0,10.0,10.0,10.0,10.0,10.0,2,0.74 +47276,70.0,9.0,8.0,10.0,9.0,9.0,8.0,6,2.57 +53026,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.53 +74180,,,,,,,,1,0.46 +51633,86.0,10.0,10.0,10.0,10.0,10.0,9.0,7,2.66 +24225,91.0,10.0,10.0,10.0,10.0,10.0,9.0,7,3.62 +53227,78.0,9.0,10.0,9.0,10.0,10.0,8.0,8,3.16 +38799,80.0,8.0,9.0,9.0,9.0,9.0,8.0,8,2.82 +16717,88.0,9.0,9.0,10.0,10.0,9.0,8.0,13,5.13 +74949,77.0,9.0,7.0,10.0,9.0,9.0,8.0,6,2.86 +70067,89.0,9.0,9.0,10.0,10.0,10.0,9.0,21,8.18 +15971,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,5.37 +3467,60.0,7.0,5.0,10.0,8.0,6.0,6.0,2,1.09 +48511,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,2.03 +56697,,,,,,,,0, +51390,97.0,10.0,10.0,10.0,10.0,10.0,10.0,7,2.5 +68947,,,,,,,,0, +64509,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.45 +41111,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,1.22 +45030,80.0,9.0,10.0,9.0,9.0,10.0,10.0,6,2.2 +55598,,,,,,,,0, +36763,90.0,10.0,9.0,10.0,10.0,10.0,10.0,2,1.22 +75939,100.0,10.0,10.0,9.0,10.0,10.0,9.0,9,3.18 +26616,90.0,9.0,9.0,10.0,10.0,10.0,9.0,10,3.95 +62630,,,,,,,,0, +37277,100.0,10.0,10.0,10.0,10.0,8.0,10.0,9,3.55 +62921,,,,,,,,0, +37467,94.0,10.0,9.0,10.0,10.0,10.0,10.0,14,5.32 +6982,97.0,10.0,9.0,10.0,10.0,10.0,9.0,6,2.65 +40467,,,,,,,,0, +30017,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.76 +48800,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.63 +10421,95.0,10.0,10.0,10.0,10.0,10.0,10.0,5,2.68 +1028,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.1 +61830,90.0,10.0,9.0,9.0,10.0,9.0,9.0,4,2.22 +21505,73.0,6.0,9.0,9.0,6.0,9.0,8.0,3,1.61 +56073,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,1.97 +1213,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.75 +58019,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,2.46 +50732,,,,,,,,0, +20642,100.0,10.0,10.0,10.0,10.0,8.0,9.0,3,1.23 +36554,95.0,10.0,10.0,10.0,10.0,9.0,9.0,8,4.53 +14826,,,,,,,,0, +7015,93.0,10.0,9.0,10.0,10.0,9.0,9.0,18,7.83 +15974,97.0,9.0,9.0,10.0,9.0,9.0,9.0,7,4.2 +74640,100.0,10.0,10.0,8.0,10.0,10.0,10.0,1,0.45 +13435,93.0,9.0,9.0,10.0,10.0,9.0,9.0,4,2.18 +62392,80.0,8.0,9.0,9.0,8.0,10.0,9.0,6,2.22 +11252,85.0,9.0,10.0,8.0,9.0,10.0,9.0,8,3.12 +13846,89.0,9.0,9.0,10.0,10.0,10.0,9.0,7,2.73 +24961,,,,,,,,0, +27107,67.0,7.0,5.0,7.0,8.0,8.0,7.0,3,2.2 +6291,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.74 +70027,,,,,,,,0, +63965,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,3.04 +69040,,,,,,,,0, +69028,100.0,10.0,10.0,10.0,10.0,8.0,10.0,2,1.13 +17242,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,3.04 +4473,60.0,10.0,7.0,10.0,10.0,9.0,10.0,2,1.22 +69216,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,2.76 +49679,,,,,,,,0, +19596,,,,,,,,0, +14051,73.0,7.0,9.0,10.0,7.0,10.0,7.0,3,1.34 +15043,80.0,8.0,10.0,10.0,9.0,10.0,8.0,3,1.22 +9657,98.0,10.0,10.0,9.0,10.0,10.0,10.0,9,3.46 +16823,80.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.39 +1147,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,3.0 +75936,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.73 +59564,83.0,8.0,8.0,8.0,9.0,7.0,8.0,7,3.82 +16317,84.0,9.0,10.0,9.0,8.0,9.0,9.0,17,6.0 +15265,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.61 +66693,,,,,,,,0, +26258,100.0,9.0,10.0,9.0,10.0,9.0,9.0,2,1.25 +53634,,,,,,,,0, +29815,,,,,,,,0, +73667,,,,,,,,0, +717,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.67 +12321,95.0,10.0,9.0,10.0,10.0,10.0,9.0,17,6.46 +52559,96.0,10.0,10.0,8.0,9.0,10.0,9.0,5,2.0 +53590,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,3.62 +29969,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,4.29 +51825,90.0,10.0,9.0,8.0,10.0,9.0,9.0,3,1.15 +24807,93.0,10.0,10.0,10.0,10.0,10.0,9.0,3,1.45 +44022,91.0,10.0,9.0,10.0,10.0,10.0,9.0,22,8.25 +68403,96.0,10.0,10.0,10.0,10.0,10.0,10.0,9,3.38 +5897,90.0,10.0,10.0,9.0,10.0,10.0,10.0,2,0.77 +36319,95.0,10.0,10.0,10.0,10.0,9.0,10.0,11,4.71 +74800,,,,,,,,0, +10943,93.0,10.0,10.0,9.0,10.0,10.0,9.0,12,4.56 +44983,89.0,10.0,10.0,10.0,10.0,9.0,8.0,9,3.25 +40638,,,,,,,,0, +18442,,,,,,,,1,0.41 +75282,97.0,10.0,9.0,10.0,9.0,10.0,9.0,6,2.43 +15882,88.0,10.0,9.0,10.0,10.0,10.0,10.0,5,2.42 +77052,95.0,9.0,9.0,9.0,10.0,10.0,9.0,4,1.6 +1626,100.0,10.0,10.0,10.0,10.0,10.0,9.0,4,1.88 +17405,88.0,9.0,9.0,10.0,9.0,10.0,9.0,8,3.43 +36144,90.0,9.0,9.0,10.0,10.0,10.0,9.0,4,2.22 +59212,,,,,,,,0, +3807,97.0,10.0,9.0,10.0,10.0,10.0,10.0,6,2.73 +53121,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,1.54 +45831,100.0,10.0,6.0,10.0,10.0,10.0,10.0,1,0.48 +16272,93.0,9.0,10.0,9.0,9.0,10.0,9.0,3,1.45 +931,88.0,10.0,9.0,10.0,10.0,10.0,10.0,5,3.33 +69245,100.0,10.0,9.0,10.0,10.0,10.0,10.0,4,3.53 +32127,,,,,,,,0, +49065,80.0,8.0,9.0,8.0,9.0,8.0,8.0,6,2.9 +57641,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +28563,93.0,9.0,9.0,9.0,10.0,9.0,9.0,3,1.08 +42331,96.0,10.0,10.0,10.0,10.0,10.0,9.0,5,2.54 +3614,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,2.45 +57378,,,,,,,,0, +5519,95.0,9.0,9.0,10.0,10.0,10.0,9.0,8,3.0 +61781,98.0,9.0,9.0,10.0,10.0,10.0,10.0,8,3.0 +25246,67.0,9.0,5.0,9.0,6.0,10.0,7.0,3,1.34 +24396,100.0,9.0,9.0,9.0,10.0,8.0,9.0,2,0.83 +1361,94.0,10.0,10.0,9.0,10.0,10.0,10.0,8,2.89 +42103,82.0,8.0,7.0,8.0,9.0,9.0,8.0,9,4.09 +59831,72.0,8.0,7.0,9.0,8.0,9.0,7.0,10,3.8 +9106,84.0,9.0,8.0,9.0,10.0,10.0,9.0,10,3.61 +33284,100.0,10.0,7.0,10.0,10.0,10.0,10.0,2,0.72 +15935,100.0,10.0,10.0,10.0,10.0,9.0,9.0,2,1.46 +36333,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,4.74 +44219,93.0,9.0,9.0,10.0,10.0,9.0,9.0,18,8.71 +52684,92.0,10.0,9.0,9.0,10.0,9.0,8.0,5,2.17 +26301,85.0,8.0,10.0,10.0,10.0,10.0,8.0,4,1.74 +1952,80.0,8.0,8.0,10.0,10.0,6.0,6.0,1,0.49 +69402,,,,,,,,0, +58044,95.0,10.0,10.0,10.0,10.0,9.0,10.0,5,2.34 +10331,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.43 +54538,,,,,,,,0, +53043,90.0,10.0,10.0,10.0,10.0,10.0,10.0,4,3.08 +34051,97.0,9.0,9.0,10.0,9.0,9.0,9.0,6,2.73 +34052,95.0,10.0,10.0,10.0,10.0,10.0,10.0,12,4.5 +35070,,,,,,,,0, +12756,94.0,10.0,9.0,10.0,10.0,10.0,9.0,7,2.76 +67697,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,4.86 +58387,80.0,10.0,8.0,10.0,8.0,10.0,8.0,1,0.54 +68341,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,2.68 +75115,85.0,10.0,9.0,9.0,10.0,9.0,9.0,20,7.5 +38404,,,,,,,,1,0.57 +9273,96.0,10.0,10.0,10.0,10.0,9.0,9.0,11,5.24 +39179,,,,,,,,0, +29397,,,,,,,,0, +26244,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.55 +24149,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.76 +72077,60.0,8.0,10.0,8.0,6.0,8.0,8.0,2,0.87 +41795,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,2.88 +8800,,,,,,,,0, +74165,,,,,,,,0, +40365,97.0,10.0,9.0,9.0,10.0,10.0,10.0,6,2.28 +31414,,,,,,,,0, +22512,,,,,,,,0, +16988,,,,,,,,0, +39661,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.77 +53979,,,,,,,,0, +71712,80.0,9.0,8.0,9.0,9.0,9.0,7.0,2,0.79 +46981,87.0,10.0,9.0,9.0,10.0,10.0,9.0,15,6.0 +73657,84.0,9.0,9.0,10.0,10.0,9.0,9.0,15,6.0 +74394,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,2.69 +28081,91.0,10.0,9.0,10.0,9.0,9.0,9.0,21,8.87 +21795,76.0,8.0,8.0,9.0,9.0,9.0,8.0,15,6.92 +54489,89.0,10.0,8.0,10.0,10.0,9.0,9.0,13,6.29 +18455,85.0,9.0,9.0,9.0,9.0,9.0,8.0,15,6.0 +49001,86.0,9.0,8.0,10.0,10.0,9.0,9.0,17,7.73 +10174,88.0,9.0,9.0,10.0,10.0,10.0,8.0,12,5.71 +44766,84.0,9.0,8.0,10.0,10.0,9.0,9.0,10,4.55 +47171,86.0,9.0,8.0,10.0,10.0,10.0,9.0,16,7.62 +71466,87.0,9.0,8.0,8.0,9.0,9.0,9.0,8,3.24 +2255,,,,,,,,0, +60298,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.73 +12226,,,,,,,,1,0.43 +46256,86.0,9.0,9.0,9.0,9.0,9.0,9.0,7,5.53 +19388,,,,,,,,0, +45369,74.0,8.0,8.0,8.0,8.0,9.0,8.0,7,2.56 +56584,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.38 +72737,,,,,,,,0, +21041,80.0,9.0,8.0,9.0,9.0,7.0,8.0,3,1.15 +45739,,,,,,,,0, +62716,91.0,9.0,8.0,10.0,10.0,10.0,9.0,7,2.76 +61920,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,5.91 +65047,100.0,10.0,9.0,10.0,10.0,9.0,9.0,3,1.18 +16019,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.73 +24161,100.0,10.0,10.0,10.0,10.0,10.0,10.0,15,6.25 +25443,92.0,10.0,10.0,10.0,10.0,10.0,10.0,5,3.19 +72589,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,1.32 +58750,,,,,,,,0, +46459,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.88 +54794,,,,,,,,0, +23975,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.43 +4089,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.88 +14023,,,,,,,,0, +19123,,,,,,,,0, +9306,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +54227,60.0,10.0,10.0,4.0,10.0,6.0,10.0,1,1.0 +49218,100.0,10.0,10.0,10.0,10.0,10.0,9.0,9,3.55 +60166,,,,,,,,0, +56134,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.87 +69652,,,,,,,,0, +14395,88.0,9.0,9.0,10.0,10.0,10.0,9.0,5,2.17 +9286,,,,,,,,0, +63662,,,,,,,,0, +52783,,,,,,,,0, +65800,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.38 +64348,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.74 +20019,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,3.66 +62259,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,2.31 +37572,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +38464,,,,,,,,0, +29898,83.0,10.0,8.0,10.0,9.0,8.0,9.0,8,4.71 +49066,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.95 +14045,95.0,10.0,10.0,10.0,10.0,10.0,9.0,11,4.34 +71967,,,,,,,,0, +42095,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,2.5 +64470,60.0,6.0,6.0,6.0,6.0,5.0,6.0,2,0.9 +4190,,,,,,,,0, +14801,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.76 +42475,,,,,,,,0, +32706,97.0,9.0,9.0,9.0,10.0,9.0,9.0,6,2.69 +76078,80.0,9.0,8.0,8.0,10.0,10.0,9.0,2,2.0 +46907,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.58 +69047,,,,,,,,0, +59911,97.0,10.0,10.0,10.0,10.0,10.0,10.0,7,3.44 +28062,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +63474,,,,,,,,0, +62642,,,,,,,,0, +69547,,,,,,,,0, +17761,,,,,,,,0, +64407,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.45 +64112,,,,,,,,0, +2116,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +34615,,,,,,,,0, +3399,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.25 +12943,,,,,,,,0, +43142,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,1.97 +10682,92.0,9.0,9.0,10.0,10.0,9.0,8.0,5,2.34 +40441,100.0,10.0,10.0,10.0,10.0,10.0,9.0,10,6.25 +61130,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +70400,,,,,,,,1,1.0 +30936,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +30009,,,,,,,,0, +78,74.0,8.0,7.0,9.0,9.0,9.0,8.0,16,6.4 +68312,90.0,10.0,9.0,10.0,7.0,9.0,10.0,2,2.0 +24578,,,,,,,,0, +35666,90.0,10.0,10.0,10.0,10.0,10.0,10.0,6,2.43 +6453,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.73 +73635,86.0,8.0,9.0,10.0,10.0,9.0,9.0,14,5.38 +76971,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.79 +32971,87.0,10.0,9.0,9.0,10.0,10.0,9.0,9,4.22 +38008,70.0,9.0,9.0,10.0,10.0,10.0,8.0,2,0.98 +32155,,,,,,,,0, +70748,95.0,10.0,10.0,9.0,10.0,10.0,9.0,8,4.36 +43608,100.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.63 +41453,,,,,,,,0, +39150,60.0,10.0,10.0,10.0,6.0,10.0,10.0,1,0.46 +11812,,,,,,,,0, +44891,,,,,,,,0, +38441,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,2.21 +3653,100.0,9.0,9.0,9.0,9.0,9.0,9.0,2,0.79 +32112,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.94 +44059,100.0,9.0,9.0,10.0,10.0,9.0,9.0,3,1.88 +60114,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,1.29 +30738,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +42134,100.0,10.0,9.0,10.0,10.0,9.0,10.0,3,2.43 +4863,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.8 +50523,100.0,10.0,10.0,10.0,10.0,9.0,10.0,10,4.69 +39619,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.64 +28803,,,,,,,,0, +37184,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,2.54 +59431,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.76 +45095,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,3.53 +62068,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,2.14 +49143,,,,,,,,0, +50369,93.0,10.0,10.0,10.0,10.0,9.0,10.0,11,5.08 +1813,,,,,,,,1,0.39 +49250,100.0,10.0,10.0,10.0,10.0,10.0,9.0,4,2.5 +69738,,,,,,,,0, +29315,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.91 +66522,,,,,,,,0, +56818,90.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.83 +17940,92.0,10.0,10.0,9.0,8.0,8.0,9.0,5,2.68 +30297,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,3.7 +48978,80.0,8.0,10.0,10.0,10.0,8.0,8.0,1,1.0 +43198,,,,,,,,0, +41514,93.0,9.0,9.0,10.0,10.0,10.0,9.0,3,1.58 +55312,100.0,10.0,10.0,10.0,10.0,8.0,10.0,5,2.11 +1781,,,,,,,,0, +76462,73.0,8.0,7.0,10.0,10.0,8.0,7.0,3,1.88 +7397,80.0,8.0,7.0,9.0,10.0,9.0,8.0,7,2.69 +2717,,,,,,,,1,0.44 +9674,92.0,10.0,9.0,10.0,10.0,10.0,10.0,10,4.05 +16626,93.0,10.0,9.0,10.0,10.0,10.0,9.0,10,3.7 +34261,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.97 +64336,80.0,10.0,9.0,9.0,10.0,8.0,9.0,2,1.5 +54723,73.0,9.0,7.0,10.0,9.0,7.0,9.0,3,1.7 +52518,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,3.56 +65968,100.0,8.0,10.0,8.0,10.0,10.0,10.0,1,0.55 +59370,,,,,,,,0, +44473,80.0,6.0,8.0,10.0,10.0,10.0,8.0,1,0.71 +39522,,,,,,,,0, +27836,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,1.43 +62862,,,,,,,,0, +70866,60.0,10.0,10.0,10.0,4.0,6.0,6.0,1,0.37 +23348,65.0,7.0,6.0,6.0,8.0,7.0,7.0,4,1.9 +70148,73.0,10.0,5.0,9.0,8.0,9.0,9.0,3,1.15 +28002,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.97 +31649,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.13 +54836,95.0,10.0,9.0,9.0,10.0,10.0,9.0,15,6.0 +70336,,,,,,,,0, +48257,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.55 +24406,,,,,,,,0, +19754,,,,,,,,0, +12104,90.0,10.0,10.0,10.0,10.0,8.0,9.0,2,1.15 +64350,,,,,,,,1,0.73 +52750,,,,,,,,0, +13263,,,,,,,,0, +48596,80.0,10.0,7.0,10.0,10.0,7.0,8.0,3,1.29 +64852,,,,,,,,0, +6593,,,,,,,,0, +59016,80.0,8.0,10.0,9.0,10.0,10.0,7.0,2,0.9 +38766,93.0,9.0,10.0,9.0,10.0,9.0,10.0,3,1.2 +23466,,,,,,,,0, +3621,90.0,10.0,9.0,10.0,9.0,10.0,9.0,4,2.55 +55408,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,1.0 +45296,100.0,10.0,10.0,10.0,10.0,6.0,10.0,2,0.77 +3798,92.0,10.0,10.0,10.0,10.0,10.0,9.0,17,6.46 +57533,93.0,9.0,10.0,9.0,10.0,9.0,10.0,3,1.64 +66038,,,,,,,,0, +66252,96.0,10.0,10.0,10.0,10.0,10.0,10.0,6,2.61 +54816,,,,,,,,0, +25644,,,,,,,,0, +57585,85.0,9.0,9.0,9.0,10.0,10.0,9.0,11,4.23 +49868,73.0,8.0,9.0,9.0,8.0,8.0,7.0,3,1.76 +29878,100.0,10.0,9.0,10.0,10.0,10.0,10.0,10,4.35 +11256,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,4.29 +41656,93.0,10.0,9.0,10.0,10.0,10.0,10.0,6,2.81 +74730,,,,,,,,0, +1227,,,,,,,,0, +43170,70.0,9.0,9.0,10.0,8.0,10.0,9.0,2,1.11 +37344,80.0,8.0,8.0,8.0,10.0,6.0,10.0,3,1.1 +3888,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.39 +20952,100.0,10.0,10.0,6.0,10.0,10.0,10.0,1,1.0 +18670,,,,,,,,0, +4335,,,,,,,,0, +52403,,,,,,,,0, +27517,93.0,10.0,9.0,9.0,10.0,10.0,10.0,6,2.95 +8450,84.0,8.0,8.0,9.0,8.0,9.0,9.0,10,4.17 +72403,93.0,9.0,9.0,9.0,10.0,9.0,9.0,3,3.0 +31893,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.73 +2396,,,,,,,,0, +17817,80.0,8.0,9.0,10.0,10.0,10.0,8.0,5,1.97 +66825,100.0,10.0,10.0,10.0,10.0,10.0,9.0,6,6.0 +68599,,,,,,,,0, +30001,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.41 +54626,,,,,,,,0, +37523,,,,,,,,0, +46176,96.0,10.0,10.0,9.0,10.0,10.0,9.0,15,5.92 +58024,,,,,,,,0, +26974,100.0,10.0,10.0,10.0,10.0,8.0,10.0,5,2.14 +61480,,,,,,,,0, +40461,,,,,,,,0, +70789,,,,,,,,0, +49365,85.0,10.0,7.0,10.0,10.0,10.0,9.0,4,1.5 +25298,100.0,8.0,10.0,9.0,9.0,9.0,8.0,2,1.09 +33788,95.0,10.0,9.0,10.0,10.0,9.0,10.0,11,5.32 +38210,93.0,10.0,10.0,10.0,9.0,10.0,10.0,9,4.35 +65924,100.0,10.0,10.0,10.0,10.0,10.0,6.0,2,0.94 +76241,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,6.0 +55153,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.5 +58913,,,,,,,,0, +46190,93.0,10.0,9.0,9.0,9.0,9.0,8.0,3,1.3 +18261,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.45 +12528,,,,,,,,0, +24004,,,,,,,,0, +75537,98.0,10.0,10.0,10.0,10.0,10.0,10.0,17,6.8 +5038,93.0,10.0,9.0,10.0,10.0,10.0,9.0,6,3.16 +53481,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.5 +31492,90.0,8.0,7.0,9.0,9.0,9.0,9.0,2,1.58 +72750,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,3.0 +44166,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.64 +27448,94.0,10.0,10.0,10.0,10.0,9.0,10.0,7,2.73 +5220,,,,,,,,0, +43353,93.0,10.0,9.0,9.0,9.0,9.0,9.0,11,4.23 +6603,60.0,10.0,6.0,4.0,4.0,10.0,6.0,2,1.05 +11078,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,1.0 +61854,80.0,10.0,4.0,10.0,10.0,10.0,10.0,1,1.0 +25163,,,,,,,,0, +70977,95.0,10.0,10.0,10.0,9.0,9.0,9.0,4,1.85 +41960,85.0,9.0,9.0,9.0,8.0,9.0,9.0,12,4.62 +52219,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.97 +35270,95.0,10.0,10.0,10.0,10.0,9.0,10.0,12,5.29 +67741,60.0,6.0,10.0,10.0,10.0,8.0,6.0,1,0.79 +50465,97.0,10.0,10.0,10.0,10.0,10.0,9.0,22,8.68 +346,,,,,,,,0, +11988,,,,,,,,0, +49475,,,,,,,,0, +56189,,,,,,,,0, +2739,80.0,8.0,7.0,10.0,9.0,8.0,7.0,4,2.26 +60593,,,,,,,,0, +52107,80.0,10.0,8.0,10.0,10.0,7.0,10.0,2,0.97 +15294,,,,,,,,0, +13352,,,,,,,,0, +34491,,,,,,,,0, +4049,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.96 +72107,100.0,10.0,10.0,9.0,10.0,10.0,10.0,3,1.34 +67079,60.0,9.0,5.0,9.0,8.0,9.0,7.0,3,1.18 +17616,,,,,,,,0, +26649,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.73 +27609,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +4087,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.36 +50321,100.0,9.0,8.0,10.0,9.0,9.0,9.0,3,2.0 +69752,100.0,10.0,10.0,10.0,10.0,8.0,10.0,2,0.88 +51653,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,6.0 +54174,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.42 +57843,98.0,10.0,10.0,10.0,10.0,9.0,10.0,9,3.86 +71462,95.0,10.0,9.0,10.0,10.0,10.0,9.0,11,5.24 +35313,,,,,,,,0, +25467,92.0,10.0,10.0,10.0,10.0,10.0,10.0,5,3.26 +6654,90.0,9.0,9.0,9.0,9.0,9.0,9.0,2,0.85 +71415,80.0,10.0,9.0,9.0,9.0,10.0,9.0,9,4.5 +49264,,,,,,,,0, +21246,91.0,10.0,9.0,9.0,10.0,8.0,9.0,14,6.09 +21870,93.0,10.0,9.0,10.0,10.0,9.0,9.0,11,5.16 +60249,,,,,,,,0, +73016,100.0,10.0,8.0,8.0,10.0,10.0,10.0,3,1.34 +28716,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.38 +52314,,,,,,,,0, +35803,80.0,10.0,6.0,10.0,8.0,10.0,10.0,1,0.81 +63445,,,,,,,,0, +76131,93.0,10.0,10.0,10.0,10.0,10.0,9.0,11,4.18 +9860,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,2.34 +46302,96.0,10.0,10.0,10.0,10.0,10.0,9.0,9,3.55 +40919,98.0,10.0,10.0,10.0,10.0,9.0,10.0,9,4.35 +5743,87.0,10.0,9.0,10.0,10.0,10.0,9.0,3,2.09 +20676,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,3.0 +69172,,,,,,,,0, +59475,97.0,10.0,10.0,10.0,10.0,10.0,10.0,7,2.96 +40301,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,7.0 +27986,93.0,7.0,9.0,10.0,10.0,10.0,9.0,3,1.17 +30259,92.0,10.0,9.0,10.0,10.0,10.0,9.0,5,2.88 +10284,,,,,,,,0, +57673,,,,,,,,0, +3114,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +60572,99.0,10.0,10.0,10.0,10.0,10.0,10.0,14,5.75 +53348,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.79 +43578,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.02 +44542,,,,,,,,0, +20166,,,,,,,,0, +37889,80.0,8.0,10.0,10.0,10.0,8.0,8.0,1,0.48 +55366,,,,,,,,0, +65370,76.0,8.0,7.0,9.0,9.0,10.0,8.0,5,2.14 +60074,73.0,7.0,9.0,9.0,9.0,9.0,7.0,3,2.25 +29383,100.0,10.0,10.0,10.0,10.0,8.0,9.0,3,3.0 +1847,80.0,10.0,8.0,10.0,10.0,10.0,9.0,4,2.73 +65392,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.97 +9595,100.0,10.0,10.0,10.0,10.0,8.0,10.0,2,1.28 +24076,97.0,10.0,10.0,10.0,10.0,10.0,9.0,14,5.53 +55512,,,,,,,,0, +13677,,,,,,,,0, +31604,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.56 +57737,94.0,10.0,10.0,10.0,10.0,10.0,9.0,7,4.77 +13902,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,1.73 +50183,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,2.03 +27489,50.0,6.0,9.0,6.0,6.0,9.0,4.0,2,1.25 +51135,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,3.95 +29014,,,,,,,,0, +27591,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.83 +15376,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.51 +60887,100.0,10.0,9.0,10.0,10.0,10.0,10.0,4,1.58 +71672,95.0,9.0,10.0,10.0,10.0,10.0,8.0,13,5.13 +70029,96.0,9.0,10.0,10.0,10.0,9.0,10.0,19,7.81 +42116,,,,,,,,0, +61995,100.0,10.0,10.0,10.0,10.0,9.0,10.0,14,5.92 +24774,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,2.76 +22718,99.0,10.0,10.0,10.0,10.0,10.0,10.0,23,10.0 +12446,,,,,,,,0, +9643,95.0,10.0,9.0,10.0,10.0,10.0,10.0,4,2.5 +43323,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,2.26 +16158,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,3.81 +56993,100.0,10.0,10.0,10.0,10.0,10.0,7.0,2,1.18 +73615,,,,,,,,0, +49157,90.0,10.0,9.0,10.0,9.0,10.0,9.0,4,2.18 +8533,98.0,10.0,10.0,10.0,10.0,9.0,9.0,16,6.23 +34080,100.0,10.0,10.0,10.0,10.0,8.0,10.0,2,0.87 +49204,83.0,9.0,9.0,10.0,9.0,9.0,8.0,12,4.74 +18528,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.88 +28289,96.0,10.0,10.0,10.0,10.0,9.0,9.0,10,4.55 +70044,,,,,,,,0, +50089,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.47 +37679,,,,,,,,0, +4459,,,,,,,,0, +47049,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.09 +23935,100.0,10.0,10.0,10.0,10.0,10.0,9.0,6,3.16 +45248,90.0,10.0,10.0,10.0,10.0,9.0,8.0,2,0.85 +72239,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +49396,80.0,10.0,10.0,10.0,10.0,8.0,8.0,1,1.0 +41673,,,,,,,,0, +55962,,,,,,,,0, +65308,,,,,,,,0, +44816,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.91 +3611,,,,,,,,0, +75507,,,,,,,,0, +18055,80.0,6.0,8.0,10.0,10.0,8.0,8.0,1,0.6 +25592,,,,,,,,0, +75646,88.0,10.0,8.0,10.0,9.0,10.0,10.0,5,2.88 +59612,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.79 +35284,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,3.82 +16406,90.0,10.0,10.0,10.0,10.0,10.0,9.0,4,2.18 +54724,93.0,10.0,8.0,10.0,10.0,9.0,9.0,8,3.53 +45421,72.0,8.0,8.0,8.0,8.0,8.0,8.0,5,1.92 +31419,,,,,,,,0, +40178,100.0,10.0,10.0,9.0,10.0,9.0,10.0,4,3.33 +53049,84.0,10.0,9.0,10.0,10.0,10.0,9.0,11,4.18 +51448,83.0,9.0,9.0,10.0,9.0,9.0,9.0,7,3.75 +53697,93.0,9.0,9.0,9.0,10.0,9.0,9.0,4,2.73 +40067,,,,,,,,0, +22442,100.0,10.0,10.0,10.0,10.0,8.0,9.0,2,1.18 +16700,,,,,,,,0, +51247,87.0,8.0,10.0,9.0,9.0,10.0,9.0,3,1.29 +57547,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.85 +50058,100.0,10.0,10.0,8.0,10.0,10.0,10.0,2,1.4 +17600,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,3.0 +70235,80.0,10.0,9.0,10.0,10.0,9.0,8.0,5,2.68 +23194,,,,,,,,0, +10717,80.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.87 +51654,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.02 +49425,100.0,9.0,10.0,10.0,10.0,9.0,9.0,3,1.27 +17411,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.47 +409,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.96 +74545,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.48 +13480,92.0,9.0,9.0,10.0,10.0,9.0,9.0,15,6.0 +31919,95.0,10.0,10.0,10.0,9.0,10.0,9.0,4,1.69 +62512,100.0,9.0,10.0,10.0,10.0,10.0,10.0,3,1.27 +70406,,,,,,,,2,0.87 +72499,100.0,10.0,10.0,10.0,9.0,9.0,10.0,3,1.67 +7289,95.0,10.0,10.0,10.0,10.0,9.0,9.0,11,9.17 +5204,100.0,10.0,10.0,10.0,10.0,9.0,9.0,2,1.3 +25008,80.0,10.0,2.0,2.0,10.0,10.0,8.0,1,1.0 +17913,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.8 +18660,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,2.03 +59848,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +29376,96.0,10.0,10.0,9.0,10.0,10.0,10.0,10,4.35 +12971,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,1.96 +59472,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.92 +21480,,,,,,,,0, +29766,100.0,10.0,10.0,9.0,10.0,10.0,10.0,2,2.0 +31345,90.0,9.0,9.0,9.0,10.0,10.0,9.0,6,5.62 +36737,93.0,9.0,9.0,10.0,10.0,9.0,10.0,3,1.58 +75839,,,,,,,,0, +50499,,,,,,,,0, +16800,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,4.29 +30956,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,1.43 +35232,95.0,10.0,10.0,10.0,10.0,10.0,9.0,8,3.2 +31831,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +3237,85.0,9.0,9.0,10.0,10.0,9.0,8.0,11,4.34 +71721,85.0,9.0,10.0,10.0,10.0,10.0,8.0,8,4.07 +63870,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,2.17 +3865,97.0,9.0,9.0,10.0,9.0,10.0,9.0,6,3.83 +58242,100.0,9.0,9.0,7.0,9.0,9.0,9.0,2,1.0 +29868,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,4.0 +20645,100.0,8.0,10.0,10.0,10.0,6.0,10.0,1,0.68 +7903,,,,,,,,3,1.2 +42774,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.42 +60276,92.0,9.0,8.0,9.0,10.0,7.0,9.0,5,2.14 +46811,,,,,,,,0, +49361,80.0,8.0,8.0,8.0,10.0,10.0,10.0,1,0.51 +48173,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,2.61 +42504,,,,,,,,0, +4633,84.0,9.0,8.0,9.0,8.0,9.0,8.0,9,4.22 +50592,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.03 +49459,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.94 +3544,93.0,10.0,10.0,10.0,10.0,10.0,10.0,9,3.8 +56387,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.97 +71302,,,,,,,,0, +73652,,,,,,,,0, +25361,,,,,,,,0, +30848,96.0,10.0,9.0,10.0,10.0,10.0,10.0,10,4.23 +72634,100.0,10.0,8.0,10.0,10.0,10.0,10.0,2,0.9 +10035,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.48 +49259,96.0,10.0,10.0,10.0,10.0,8.0,10.0,5,2.17 +56688,,,,,,,,0, +74282,91.0,10.0,10.0,10.0,10.0,9.0,9.0,7,3.23 +46522,100.0,8.0,8.0,10.0,10.0,10.0,10.0,1,0.86 +5197,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +14273,93.0,10.0,10.0,10.0,10.0,10.0,10.0,12,4.93 +5012,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,1.23 +28447,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,6.29 +31349,89.0,9.0,9.0,9.0,10.0,9.0,9.0,18,7.01 +48712,84.0,9.0,10.0,9.0,10.0,9.0,9.0,9,4.82 +37176,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.52 +12622,80.0,9.0,8.0,10.0,10.0,9.0,8.0,2,0.8 +32995,80.0,9.0,9.0,10.0,9.0,10.0,9.0,4,2.0 +46604,84.0,9.0,8.0,8.0,10.0,10.0,8.0,5,2.31 +29196,86.0,9.0,9.0,10.0,10.0,10.0,9.0,13,5.06 +48139,82.0,9.0,8.0,10.0,10.0,10.0,9.0,12,5.71 +1302,87.0,9.0,8.0,10.0,9.0,10.0,8.0,6,2.47 +74560,88.0,9.0,9.0,10.0,10.0,10.0,9.0,8,3.93 +14494,80.0,8.0,10.0,10.0,10.0,10.0,8.0,1,0.77 +38649,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,3.65 +25503,90.0,9.0,10.0,10.0,10.0,10.0,8.0,4,1.6 +12239,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,2.11 +25578,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.86 +35740,,,,,,,,0, +76659,,,,,,,,0, +16593,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.82 +13156,,,,,,,,1,0.94 +35406,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,1.0 +35124,,,,,,,,0, +25295,,,,,,,,0, +10467,,,,,,,,0, +22299,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +64398,,,,,,,,0, +25605,,,,,,,,0, +14215,,,,,,,,0, +18424,,,,,,,,0, +57742,,,,,,,,0, +57964,,,,,,,,0, +37109,93.0,10.0,7.0,10.0,10.0,9.0,9.0,3,2.57 +8338,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +6559,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,2.34 +34640,93.0,9.0,9.0,8.0,10.0,7.0,8.0,7,3.04 +19213,,,,,,,,0, +68932,98.0,10.0,10.0,10.0,10.0,10.0,10.0,25,10.0 +73148,88.0,9.0,9.0,9.0,10.0,9.0,10.0,17,7.61 +7590,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,1.43 +43218,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.13 +10607,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +21264,,,,,,,,0, +25980,,,,,,,,0, +27899,77.0,9.0,7.0,9.0,10.0,9.0,8.0,13,5.57 +21459,94.0,9.0,10.0,9.0,10.0,9.0,10.0,10,4.29 +27115,87.0,9.0,9.0,10.0,10.0,10.0,8.0,9,4.22 +40797,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +73642,,,,,,,,0, +41629,92.0,10.0,10.0,9.0,9.0,9.0,9.0,5,2.73 +74976,,,,,,,,0, +22431,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.48 +45335,100.0,10.0,10.0,10.0,10.0,9.0,10.0,6,2.61 +71556,100.0,9.0,10.0,10.0,9.0,9.0,8.0,3,1.67 +44908,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,4.77 +18047,,,,,,,,0, +50081,70.0,5.0,5.0,10.0,10.0,9.0,9.0,2,1.3 +34692,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,2.17 +6064,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.44 +19613,93.0,10.0,10.0,9.0,9.0,9.0,9.0,4,2.0 +3158,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,0.92 +32334,100.0,10.0,10.0,9.0,10.0,10.0,10.0,2,2.0 +3566,100.0,9.0,9.0,9.0,10.0,10.0,9.0,2,2.0 +71779,97.0,10.0,9.0,10.0,10.0,10.0,10.0,6,2.81 +8399,95.0,10.0,10.0,10.0,10.0,10.0,10.0,12,5.07 +13525,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,2.57 +55535,,,,,,,,0, +41082,100.0,10.0,10.0,9.0,10.0,9.0,10.0,6,2.54 +17556,96.0,10.0,10.0,10.0,10.0,10.0,10.0,11,4.4 +76714,,,,,,,,0, +18733,95.0,9.0,10.0,10.0,10.0,10.0,10.0,4,2.67 +68179,,,,,,,,0, +5470,90.0,9.0,9.0,10.0,9.0,9.0,9.0,6,2.9 +33620,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,3.0 +37124,97.0,9.0,10.0,10.0,9.0,10.0,10.0,7,3.44 +17801,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.41 +59598,,,,,,,,0, +68139,86.0,8.0,9.0,9.0,9.0,9.0,9.0,7,2.88 +37672,85.0,9.0,9.0,9.0,9.0,10.0,8.0,5,2.63 +22887,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +5516,100.0,10.0,9.0,9.0,10.0,9.0,9.0,3,1.25 +25048,92.0,10.0,10.0,10.0,10.0,9.0,9.0,5,2.31 +29581,,,,,,,,0, +40942,,,,,,,,0, +69960,,,,,,,,0, +31230,100.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.47 +70823,,,,,,,,0, +61492,,,,,,,,0, +56249,,,,,,,,0, +66921,84.0,9.0,9.0,10.0,9.0,8.0,8.0,16,6.58 +66298,,,,,,,,0, +69875,,,,,,,,0, +49253,60.0,8.0,4.0,10.0,8.0,10.0,6.0,1,0.88 +64946,100.0,10.0,10.0,9.0,10.0,10.0,10.0,3,1.3 +52140,100.0,6.0,10.0,8.0,10.0,8.0,10.0,1,0.91 +40551,,,,,,,,0, +55942,73.0,9.0,7.0,9.0,9.0,10.0,9.0,4,1.58 +34611,90.0,10.0,10.0,8.0,10.0,10.0,10.0,2,1.0 +75830,97.0,10.0,10.0,10.0,10.0,9.0,10.0,14,5.53 +44043,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.76 +34119,,,,,,,,0, +51658,,,,,,,,0, +53051,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.73 +66457,90.0,9.0,10.0,9.0,9.0,10.0,9.0,25,9.87 +29433,86.0,10.0,9.0,9.0,9.0,9.0,9.0,18,7.71 +13885,30.0,6.0,5.0,7.0,7.0,10.0,4.0,2,1.05 +28253,95.0,10.0,10.0,10.0,10.0,9.0,10.0,15,6.62 +38215,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,1.0 +2930,,,,,,,,0, +52102,,,,,,,,1, +57804,95.0,10.0,10.0,10.0,10.0,9.0,10.0,8,4.29 +51821,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,3.53 +12656,84.0,8.0,8.0,9.0,9.0,8.0,7.0,5,2.14 +33326,60.0,5.0,8.0,6.0,8.0,8.0,5.0,2,1.46 +8045,80.0,8.0,8.0,10.0,10.0,10.0,8.0,2,2.0 +38,94.0,9.0,9.0,10.0,10.0,10.0,9.0,10,4.05 +29954,97.0,9.0,10.0,10.0,10.0,9.0,8.0,6,4.0 +8689,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.82 +13005,87.0,9.0,9.0,10.0,9.0,10.0,7.0,3,2.37 +37745,100.0,10.0,9.0,10.0,10.0,10.0,10.0,10,5.26 +61007,73.0,7.0,9.0,7.0,8.0,8.0,7.0,3,3.0 +60446,97.0,9.0,10.0,10.0,10.0,10.0,10.0,6,3.21 +43235,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,2.21 +76451,97.0,10.0,10.0,10.0,10.0,10.0,10.0,20,8.0 +64807,,,,,,,,0, +11615,100.0,9.0,10.0,10.0,10.0,9.0,9.0,2,1.05 +12076,80.0,8.0,7.0,8.0,7.0,9.0,9.0,4,2.5 +29193,80.0,8.0,10.0,9.0,7.0,9.0,9.0,6,3.27 +40198,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.55 +73185,96.0,10.0,10.0,9.0,10.0,10.0,9.0,8,3.75 +63798,96.0,10.0,10.0,9.0,10.0,10.0,10.0,6,2.54 +21986,80.0,8.0,8.0,10.0,9.0,10.0,9.0,4,3.43 +32343,,,,,,,,0, +56307,73.0,7.0,8.0,8.0,8.0,9.0,8.0,3,1.64 +68767,,,,,,,,0, +49465,100.0,10.0,10.0,10.0,10.0,10.0,9.0,6,3.75 +24871,,,,,,,,0, +21075,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,2.68 +59333,,,,,,,,0, +1249,,,,,,,,0, +38350,80.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.48 +46308,,,,,,,,0, +2060,87.0,10.0,9.0,10.0,10.0,10.0,9.0,3,1.3 +8154,100.0,10.0,9.0,10.0,10.0,9.0,10.0,3,2.09 +18372,98.0,10.0,9.0,10.0,10.0,10.0,10.0,12,5.29 +18010,,,,,,,,0, +63025,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,2.42 +73403,87.0,9.0,8.0,9.0,9.0,9.0,9.0,3,3.0 +62279,,,,,,,,0, +8944,80.0,9.0,10.0,9.0,9.0,8.0,7.0,5,2.54 +44761,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.62 +7693,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,1.0 +25436,100.0,10.0,10.0,9.0,10.0,9.0,9.0,3,2.2 +23580,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +45582,80.0,6.0,8.0,4.0,6.0,10.0,8.0,1,0.75 +74765,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.48 +15624,83.0,9.0,9.0,7.0,8.0,9.0,9.0,8,4.44 +11410,,,,,,,,0, +64040,,,,,,,,0, +46929,,,,,,,,0, +53106,,,,,,,,0, +48942,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.5 +75025,90.0,10.0,8.0,9.0,10.0,10.0,10.0,4,2.55 +15476,87.0,8.0,10.0,7.0,7.0,10.0,9.0,3,1.7 +29019,88.0,10.0,9.0,9.0,8.0,10.0,8.0,5,2.42 +44098,100.0,9.0,10.0,10.0,10.0,10.0,10.0,2,1.11 +72078,100.0,9.0,10.0,10.0,9.0,10.0,10.0,2,1.13 +4061,,,,,,,,0, +46940,91.0,10.0,10.0,10.0,10.0,10.0,9.0,7,4.57 +25348,96.0,10.0,10.0,9.0,9.0,10.0,10.0,9,4.29 +39732,93.0,10.0,9.0,9.0,9.0,9.0,10.0,3,1.3 +46488,93.0,10.0,10.0,10.0,10.0,10.0,10.0,3,2.09 +40795,92.0,9.0,9.0,9.0,9.0,9.0,9.0,10,3.9 +23504,,,,,,,,0, +3353,,,,,,,,0, +63644,,,,,,,,0, +42302,,,,,,,,0, +39271,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,2.76 +44321,40.0,6.0,8.0,4.0,6.0,10.0,10.0,1,1.0 +42176,96.0,10.0,10.0,10.0,10.0,10.0,10.0,10,4.84 +54455,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.7 +27933,,,,,,,,0, +75462,,,,,,,,0, +42441,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.81 +62267,,,,,,,,0, +76911,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,3.0 +24644,,,,,,,,0, +23848,,,,,,,,0, +36885,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,1.48 +4382,,,,,,,,0, +69788,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.73 +1587,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,3.04 +72769,80.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.45 +50198,,,,,,,,0, +74116,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.42 +38029,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.48 +15615,90.0,10.0,10.0,10.0,10.0,10.0,10.0,4,2.14 +9052,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.2 +50383,,,,,,,,2, +25986,,,,,,,,1, +51214,93.0,10.0,10.0,10.0,10.0,10.0,10.0,23,9.45 +8732,,,,,,,,0, +74344,,,,,,,,0, +69415,,,,,,,,1,1.0 +62789,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,3.91 +36292,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,3.81 +33867,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +53273,,,,,,,,0, +33139,83.0,10.0,8.0,10.0,10.0,9.0,9.0,6,4.86 +21222,97.0,10.0,10.0,9.0,9.0,10.0,10.0,6,2.61 +69273,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,2.21 +68352,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.34 +48805,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,2.9 +56540,90.0,9.0,9.0,10.0,10.0,10.0,10.0,4,1.76 +18719,,,,,,,,0, +38530,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,1.0 +55396,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,2.31 +30592,,,,,,,,0, +49379,60.0,6.0,6.0,6.0,6.0,6.0,6.0,2,1.4 +33737,,,,,,,,0, +59408,93.0,10.0,10.0,10.0,10.0,10.0,9.0,8,3.87 +14690,,,,,,,,1,0.68 +39512,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,4.0 +73801,75.0,9.0,7.0,10.0,10.0,10.0,8.0,4,2.14 +75279,,,,,,,,0, +67002,,,,,,,,0, +67761,90.0,10.0,10.0,10.0,9.0,9.0,9.0,10,4.69 +59640,,,,,,,,0, +12009,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.46 +74151,93.0,7.0,10.0,10.0,10.0,8.0,9.0,3,1.41 +40512,94.0,10.0,9.0,10.0,10.0,9.0,10.0,17,11.59 +31376,,,,,,,,0, +11684,90.0,9.0,7.0,9.0,9.0,7.0,8.0,2,2.0 +28571,,,,,,,,0, +62421,,,,,,,,0, +71827,,,,,,,,2,0.95 +27021,,,,,,,,0, +50341,,,,,,,,1,0.46 +1732,,,,,,,,1,0.43 +75836,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.73 +46643,90.0,10.0,10.0,10.0,10.0,10.0,9.0,4,2.22 +28274,,,,,,,,0, +29090,80.0,10.0,10.0,10.0,10.0,10.0,10.0,4,2.86 +55523,87.0,9.0,9.0,10.0,9.0,9.0,9.0,3,2.14 +50236,,,,,,,,0, +33916,,,,,,,,0, +37413,,,,,,,,0, +332,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +71988,80.0,8.0,9.0,8.0,8.0,8.0,8.0,2,0.92 +57039,,,,,,,,0, +66760,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +43842,95.0,10.0,10.0,10.0,10.0,8.0,9.0,4,3.64 +22895,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.3 +37699,80.0,9.0,7.0,9.0,9.0,9.0,8.0,3,1.45 +15847,100.0,9.0,9.0,10.0,9.0,10.0,9.0,3,1.67 +38519,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.94 +37188,92.0,10.0,10.0,10.0,10.0,10.0,10.0,5,4.69 +7207,90.0,10.0,9.0,10.0,10.0,10.0,10.0,4,2.0 +31099,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.97 +13717,96.0,10.0,10.0,10.0,10.0,9.0,10.0,11,8.92 +27876,,,,,,,,0, +26734,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,1.8 +39402,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +6130,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,2.0 +28038,97.0,10.0,10.0,10.0,10.0,10.0,10.0,27,11.41 +70955,99.0,10.0,9.0,10.0,10.0,10.0,10.0,22,10.15 +58280,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,5.45 +60478,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.67 +67259,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,4.14 +76884,88.0,9.0,9.0,10.0,10.0,10.0,9.0,8,4.21 +10205,80.0,9.0,9.0,8.0,10.0,9.0,9.0,3,1.3 +26928,85.0,9.0,10.0,9.0,10.0,10.0,9.0,4,2.07 +32421,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.05 +10428,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,3.39 +65585,,,,,,,,1, +5887,80.0,6.0,8.0,10.0,8.0,6.0,8.0,1,0.86 +25014,90.0,9.0,9.0,10.0,10.0,9.0,10.0,2,0.98 +23844,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.71 +69901,,,,,,,,1,0.43 +35175,,,,,,,,0, +72586,,,,,,,,0, +35760,90.0,9.0,9.0,9.0,10.0,8.0,8.0,2,2.0 +63520,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,5.42 +72650,70.0,6.0,6.0,6.0,7.0,6.0,6.0,2,0.95 +62026,,,,,,,,0, +41510,90.0,10.0,9.0,9.0,10.0,10.0,10.0,11,5.59 +26236,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,4.29 +17290,,,,,,,,0, +19523,,,,,,,,0, +22558,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.52 +75953,,,,,,,,1,1.0 +50448,70.0,6.0,6.0,7.0,6.0,7.0,7.0,2,1.71 +6391,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,2.69 +16325,90.0,10.0,9.0,10.0,10.0,8.0,8.0,2,0.94 +44329,,,,,,,,0, +17608,,,,,,,,0, +2546,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,2.05 +24996,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,2.73 +28510,,,,,,,,0, +68458,70.0,6.0,7.0,7.0,10.0,6.0,7.0,2,1.07 +1887,,,,,,,,0, +52373,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.3 +63398,,,,,,,,0, +15594,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.68 +75688,,,,,,,,0, +46810,,,,,,,,0, +2427,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,2.63 +39853,,,,,,,,0, +42328,100.0,10.0,10.0,10.0,10.0,10.0,6.0,1,1.0 +30113,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,2.31 +28562,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,2.22 +43021,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.7 +76608,90.0,9.0,9.0,9.0,9.0,9.0,9.0,6,2.81 +37750,,,,,,,,0, +29838,,,,,,,,0, +11606,92.0,10.0,8.0,10.0,10.0,10.0,9.0,26,10.99 +72576,60.0,6.0,6.0,6.0,8.0,6.0,6.0,1,0.44 +62593,100.0,10.0,8.0,10.0,8.0,10.0,10.0,2,0.88 +19951,,,,,,,,0, +49790,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.38 +66612,86.0,9.0,8.0,10.0,10.0,9.0,8.0,10,4.29 +27314,,,,,,,,0, +7993,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.87 +73241,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.73 +68379,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.32 +11691,93.0,10.0,10.0,10.0,10.0,10.0,10.0,3,3.0 +50618,,,,,,,,0, +53585,,,,,,,,0, +69351,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,3.33 +60344,,,,,,,,0, +49390,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.07 +61028,97.0,10.0,10.0,10.0,10.0,10.0,9.0,7,7.0 +61729,60.0,10.0,4.0,10.0,10.0,6.0,6.0,1,1.0 +28541,90.0,10.0,10.0,10.0,10.0,9.0,8.0,2,2.0 +19737,90.0,9.0,9.0,10.0,10.0,10.0,10.0,2,0.87 +3078,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,5.0 +30751,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.54 +56923,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.45 +36300,87.0,10.0,8.0,10.0,10.0,8.0,9.0,6,2.86 +17350,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,3.0 +65749,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.43 +42889,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,2.5 +76819,,,,,,,,0, +61452,100.0,9.0,9.0,9.0,10.0,10.0,9.0,4,2.07 +436,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.91 +65302,85.0,9.0,8.0,9.0,10.0,10.0,9.0,17,7.08 +50852,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,4.0 +20828,100.0,10.0,10.0,10.0,10.0,9.0,10.0,10,5.45 +68218,,,,,,,,0, +17482,,,,,,,,0, +59274,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,5.22 +37610,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.3 +55021,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,1.76 +44655,,,,,,,,0, +28864,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.45 +14608,96.0,9.0,9.0,9.0,10.0,9.0,9.0,10,4.76 +73780,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,3.0 +52066,,,,,,,,0, +70848,,,,,,,,0, +60487,,,,,,,,0, +70183,,,,,,,,0, +39209,96.0,10.0,9.0,10.0,10.0,9.0,9.0,5,2.63 +33095,,,,,,,,0, +15780,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,2.35 +44145,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.53 +11806,,,,,,,,0, +11377,67.0,5.0,7.0,7.0,7.0,8.0,7.0,3,1.5 +65388,60.0,6.0,6.0,6.0,6.0,6.0,6.0,2,0.82 +59487,,,,,,,,0, +70205,80.0,8.0,6.0,8.0,10.0,10.0,10.0,1,0.53 +49462,,,,,,,,0, +33397,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +34336,,,,,,,,1,0.56 +69163,87.0,10.0,9.0,10.0,10.0,10.0,9.0,3,2.09 +50192,90.0,9.0,9.0,10.0,9.0,10.0,9.0,6,3.16 +21428,100.0,9.0,10.0,10.0,9.0,10.0,8.0,2,2.0 +67611,99.0,10.0,10.0,10.0,10.0,10.0,10.0,18,7.5 +26430,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.27 +70924,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.67 +55395,80.0,7.0,9.0,9.0,9.0,8.0,10.0,2,0.95 +31658,,,,,,,,0, +51981,80.0,8.0,10.0,10.0,10.0,10.0,8.0,1,0.46 +21224,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,5.12 +70514,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +61909,60.0,10.0,6.0,6.0,6.0,10.0,8.0,3,1.73 +54367,73.0,7.0,7.0,7.0,7.0,7.0,7.0,3,1.45 +68482,100.0,10.0,9.0,10.0,6.0,8.0,8.0,2,1.09 +55926,89.0,10.0,10.0,10.0,10.0,9.0,10.0,9,3.91 +53177,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +65435,80.0,7.0,8.0,9.0,10.0,8.0,9.0,3,1.64 +50102,98.0,9.0,9.0,10.0,10.0,9.0,9.0,9,4.82 +21767,20.0,2.0,4.0,2.0,2.0,8.0,2.0,2,0.94 +15940,,,,,,,,0, +63293,98.0,10.0,9.0,9.0,10.0,10.0,10.0,8,4.07 +53715,80.0,10.0,10.0,9.0,6.0,10.0,8.0,2,1.18 +60754,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,2.22 +61435,90.0,10.0,10.0,10.0,10.0,8.0,10.0,2,2.0 +26023,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,2.65 +27442,,,,,,,,0, +8706,80.0,10.0,10.0,10.0,10.0,10.0,8.0,1,1.0 +9685,97.0,10.0,10.0,10.0,10.0,10.0,9.0,6,5.0 +34421,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +6924,84.0,9.0,8.0,9.0,10.0,9.0,9.0,5,3.66 +55814,93.0,10.0,10.0,10.0,10.0,9.0,9.0,6,3.0 +52686,95.0,10.0,10.0,10.0,10.0,10.0,9.0,12,5.63 +44623,,,,,,,,0, +4963,96.0,10.0,10.0,10.0,10.0,10.0,9.0,5,3.33 +24222,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,2.5 +24103,90.0,9.0,9.0,10.0,10.0,10.0,8.0,4,1.97 +55557,100.0,10.0,9.0,10.0,10.0,10.0,10.0,4,1.74 +54530,,,,,,,,0, +19238,76.0,8.0,9.0,8.0,8.0,10.0,8.0,5,2.83 +41439,90.0,9.0,10.0,10.0,10.0,9.0,9.0,18,7.4 +73784,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.63 +21240,,,,,,,,0, +46024,,,,,,,,0, +27006,92.0,9.0,8.0,10.0,10.0,10.0,8.0,5,2.14 +60765,90.0,10.0,9.0,10.0,9.0,10.0,9.0,10,4.29 +56975,,,,,,,,0, +31416,93.0,10.0,9.0,10.0,10.0,10.0,9.0,3,1.88 +32193,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,1.8 +13675,,,,,,,,0, +61374,,,,,,,,0, +22868,,,,,,,,2,1.02 +62703,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,6.0 +55960,90.0,10.0,9.0,9.0,10.0,9.0,9.0,6,2.69 +33183,,,,,,,,1,1.0 +44280,,,,,,,,0, +56075,,,,,,,,1,0.44 +31711,97.0,9.0,9.0,10.0,10.0,10.0,10.0,6,2.69 +64595,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.43 +53008,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.68 +5495,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,1.0 +11341,,,,,,,,0, +15711,90.0,10.0,6.0,10.0,8.0,10.0,8.0,2,1.46 +40632,,,,,,,,0, +13943,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.87 +4461,87.0,10.0,10.0,9.0,10.0,10.0,9.0,6,2.61 +29018,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,2.59 +59369,,,,,,,,0, +2286,87.0,8.0,9.0,9.0,9.0,8.0,10.0,6,2.81 +381,,,,,,,,0, +19816,92.0,10.0,9.0,10.0,9.0,10.0,9.0,5,2.88 +61749,,,,,,,,1,1.0 +10725,100.0,8.0,10.0,6.0,8.0,10.0,10.0,1,0.88 +69970,100.0,10.0,8.0,10.0,10.0,8.0,8.0,1,0.56 +32869,98.0,10.0,10.0,10.0,10.0,10.0,10.0,11,4.65 +47394,,,,,,,,0, +65330,97.0,10.0,9.0,10.0,9.0,9.0,9.0,18,7.61 +64104,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,2.5 +74451,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,3.33 +31275,60.0,7.0,7.0,10.0,9.0,10.0,7.0,3,1.96 +49760,,,,,,,,1,0.42 +29859,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.25 +59763,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,2.86 +14147,,,,,,,,0, +27924,,,,,,,,0, +3634,97.0,10.0,9.0,10.0,10.0,10.0,10.0,7,3.23 +37849,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.54 +5746,80.0,9.0,7.0,10.0,10.0,10.0,9.0,4,1.94 +28417,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,6.96 +38131,,,,,,,,1,0.41 +68447,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.07 +31485,,,,,,,,0, +11602,,,,,,,,0, +35974,95.0,10.0,10.0,9.0,10.0,10.0,10.0,8,3.38 +26897,93.0,10.0,8.0,10.0,10.0,10.0,9.0,8,3.93 +42561,90.0,10.0,10.0,7.0,9.0,9.0,8.0,6,3.27 +2976,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.67 +28999,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,2.5 +15114,80.0,8.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +56528,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.94 +12897,100.0,10.0,10.0,10.0,10.0,9.0,10.0,9,4.35 +51941,93.0,9.0,9.0,10.0,10.0,9.0,9.0,23,10.3 +30573,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,3.7 +16780,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,1.55 +59351,60.0,6.0,6.0,2.0,8.0,8.0,8.0,1,0.49 +31960,,,,,,,,0, +17707,,,,,,,,0, +70825,,,,,,,,0, +54616,90.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.3 +44277,,,,,,,,0, +64610,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +63040,96.0,10.0,9.0,10.0,10.0,10.0,10.0,14,6.77 +43265,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.73 +26500,90.0,9.0,10.0,8.0,10.0,10.0,9.0,2,1.76 +1794,95.0,10.0,10.0,10.0,10.0,10.0,9.0,8,4.0 +75700,93.0,10.0,8.0,9.0,10.0,10.0,9.0,5,2.05 +48855,100.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.47 +66097,80.0,8.0,10.0,7.0,9.0,10.0,8.0,4,2.67 +23083,100.0,10.0,8.0,10.0,10.0,9.0,10.0,3,1.5 +7357,,,,,,,,0, +55898,93.0,10.0,9.0,9.0,9.0,9.0,8.0,3,1.91 +57360,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.85 +1886,90.0,10.0,10.0,9.0,10.0,9.0,9.0,2,0.97 +1860,100.0,10.0,10.0,8.0,8.0,10.0,10.0,1,0.48 +29350,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +64003,,,,,,,,0, +34114,87.0,9.0,9.0,7.0,9.0,9.0,8.0,3,1.58 +54726,95.0,10.0,9.0,10.0,10.0,10.0,10.0,4,2.22 +55576,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.22 +70864,,,,,,,,0, +35324,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.43 +25031,,,,,,,,0, +32280,100.0,8.0,10.0,8.0,8.0,8.0,8.0,1,0.55 +63677,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,1.0 +52808,,,,,,,,0, +48791,,,,,,,,0, +49212,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +53041,90.0,9.0,8.0,10.0,10.0,9.0,8.0,2,1.36 +47667,76.0,7.0,9.0,10.0,8.0,9.0,9.0,5,2.78 +67979,87.0,9.0,9.0,9.0,9.0,10.0,9.0,6,6.0 +5734,40.0,2.0,6.0,4.0,2.0,8.0,2.0,1,0.58 +66372,70.0,9.0,6.0,10.0,8.0,10.0,8.0,2,1.09 +41483,,,,,,,,0, +19115,88.0,9.0,9.0,9.0,9.0,10.0,9.0,8,4.21 +74337,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,4.0 +33277,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,5.74 +47160,93.0,10.0,10.0,9.0,10.0,9.0,10.0,12,6.1 +22212,87.0,9.0,8.0,10.0,10.0,10.0,9.0,3,1.84 +31483,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.64 +59508,,,,,,,,0, +30256,89.0,9.0,9.0,9.0,10.0,10.0,9.0,9,4.82 +54052,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,5.75 +38800,100.0,10.0,8.0,10.0,8.0,10.0,8.0,2,1.11 +42819,87.0,10.0,9.0,10.0,9.0,9.0,9.0,4,1.82 +48203,,,,,,,,0, +23251,,,,,,,,0, +46290,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.73 +30513,90.0,9.0,9.0,10.0,10.0,10.0,8.0,4,1.69 +24620,,,,,,,,0, +19647,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,0.98 +674,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.79 +62119,100.0,10.0,10.0,10.0,8.0,8.0,10.0,1,0.57 +25821,87.0,9.0,7.0,10.0,10.0,10.0,8.0,3,2.43 +57840,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.86 +23145,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,5.0 +22143,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.52 +57873,80.0,10.0,9.0,10.0,10.0,10.0,8.0,6,2.54 +13875,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,3.0 +56819,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,2.24 +10117,,,,,,,,0, +43620,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.11 +3534,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.09 +67426,,,,,,,,0, +47981,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,4.92 +75300,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,3.81 +1298,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.27 +56481,97.0,10.0,10.0,9.0,10.0,8.0,9.0,7,7.0 +33193,,,,,,,,0, +57883,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.61 +43016,100.0,10.0,10.0,10.0,10.0,6.0,8.0,1,1.0 +68057,100.0,10.0,9.0,9.0,10.0,10.0,10.0,2,0.95 +22844,93.0,10.0,9.0,9.0,9.0,9.0,9.0,3,1.3 +60233,93.0,10.0,10.0,10.0,10.0,10.0,10.0,8,3.53 +5531,,,,,,,,0, +53218,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.45 +29865,90.0,8.0,9.0,10.0,10.0,10.0,8.0,3,1.41 +43955,,,,,,,,1,0.5 +32194,90.0,9.0,9.0,9.0,9.0,10.0,10.0,2,1.15 +33373,80.0,8.0,8.0,7.0,8.0,10.0,8.0,14,5.92 +18657,,,,,,,,0, +61811,,,,,,,,0, +11834,98.0,10.0,10.0,10.0,10.0,10.0,10.0,12,7.66 +48594,40.0,2.0,10.0,8.0,2.0,10.0,8.0,1,0.81 +75988,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,2.17 +10466,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.54 +62155,90.0,10.0,8.0,10.0,10.0,10.0,8.0,2,0.95 +33218,100.0,9.0,9.0,9.0,9.0,10.0,10.0,3,2.31 +50037,100.0,10.0,10.0,10.0,10.0,8.0,9.0,2,1.54 +20958,,,,,,,,0, +73007,80.0,10.0,8.0,10.0,10.0,10.0,10.0,1,1.0 +27411,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +76430,90.0,10.0,10.0,10.0,10.0,10.0,10.0,5,5.0 +43483,,,,,,,,0, +59577,,,,,,,,0, +16277,,,,,,,,0, +69225,100.0,10.0,10.0,10.0,10.0,9.0,8.0,5,2.73 +8348,,,,,,,,0, +55463,93.0,10.0,10.0,10.0,10.0,10.0,9.0,3,1.45 +28182,80.0,8.0,10.0,10.0,10.0,10.0,6.0,1,0.48 +6943,,,,,,,,0, +57897,100.0,9.0,10.0,10.0,8.0,10.0,9.0,3,3.0 +12819,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,2.61 +47368,100.0,10.0,10.0,10.0,10.0,10.0,9.0,6,3.05 +47454,,,,,,,,0, +8340,,,,,,,,0, +17899,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,2.18 +41289,80.0,10.0,8.0,10.0,10.0,8.0,8.0,2,2.0 +34189,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,2.2 +12110,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.85 +58762,93.0,10.0,10.0,9.0,9.0,10.0,9.0,3,1.27 +57376,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,4.76 +60838,,,,,,,,0, +71007,100.0,10.0,9.0,9.0,9.0,10.0,10.0,2,1.09 +40605,84.0,9.0,9.0,10.0,10.0,9.0,9.0,5,2.17 +36671,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +11867,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,2.11 +30373,100.0,10.0,9.0,10.0,10.0,10.0,9.0,3,1.36 +22301,94.0,9.0,9.0,10.0,10.0,9.0,9.0,7,3.39 +71876,,,,,,,,0, +13744,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,4.2 +45919,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.6 +14975,93.0,9.0,10.0,10.0,10.0,10.0,9.0,6,3.33 +62088,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.71 +22670,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.98 +30986,,,,,,,,2,0.97 +34646,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +15461,,,,,,,,0, +71323,,,,,,,,0, +35055,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,4.84 +75713,90.0,10.0,10.0,10.0,9.0,10.0,10.0,4,2.86 +64465,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.85 +8955,95.0,10.0,10.0,10.0,10.0,9.0,10.0,8,3.75 +17827,,,,,,,,0, +50504,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.85 +58056,94.0,10.0,10.0,9.0,10.0,10.0,9.0,7,3.44 +58649,98.0,10.0,10.0,9.0,10.0,9.0,10.0,9,4.03 +16131,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.85 +36681,,,,,,,,0, +31043,100.0,10.0,9.0,10.0,9.0,10.0,9.0,2,0.97 +68572,88.0,9.0,9.0,8.0,9.0,9.0,9.0,15,7.03 +63177,90.0,8.0,10.0,10.0,10.0,10.0,10.0,2,1.22 +43381,100.0,10.0,10.0,10.0,10.0,8.0,10.0,2,1.25 +34566,,,,,,,,0, +2025,85.0,9.0,9.0,9.0,10.0,9.0,9.0,8,3.48 +12062,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,2.05 +9269,,,,,,,,0, +25840,98.0,10.0,9.0,10.0,10.0,9.0,10.0,17,10.63 +51283,89.0,9.0,10.0,9.0,10.0,9.0,9.0,9,3.97 +33872,,,,,,,,0, +4226,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.56 +28910,87.0,9.0,10.0,9.0,9.0,9.0,9.0,9,4.29 +72466,93.0,10.0,10.0,9.0,10.0,9.0,9.0,6,3.27 +50019,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.95 +44820,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.71 +38541,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.54 +22750,,,,,,,,0, +51950,90.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.0 +17650,80.0,10.0,10.0,6.0,8.0,10.0,10.0,1,0.51 +31089,,,,,,,,0, +27882,,,,,,,,0, +57943,,,,,,,,0, +39301,93.0,10.0,10.0,10.0,10.0,10.0,9.0,3,2.0 +62676,,,,,,,,0, +47829,,,,,,,,0, +66270,,,,,,,,0, +34457,100.0,8.0,10.0,10.0,10.0,8.0,8.0,1,1.0 +48816,,,,,,,,0, +71754,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,4.22 +54547,97.0,10.0,10.0,10.0,10.0,10.0,10.0,7,3.09 +66350,80.0,9.0,9.0,10.0,10.0,10.0,8.0,3,2.14 +74796,80.0,7.0,7.0,7.0,7.0,8.0,10.0,2,1.09 +13778,80.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.54 +54116,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,2.45 +65933,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +27364,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.87 +32281,,,,,,,,0, +59872,90.0,9.0,10.0,8.0,7.0,9.0,9.0,2,1.4 +13346,,,,,,,,0, +25380,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +66946,,,,,,,,0, +54211,90.0,9.0,9.0,10.0,9.0,10.0,10.0,7,3.23 +26115,,,,,,,,0, +11776,96.0,10.0,10.0,10.0,10.0,10.0,9.0,9,4.29 +41320,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,1.3 +33376,80.0,9.0,7.0,9.0,9.0,9.0,8.0,11,5.16 +64824,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.57 +73738,,,,,,,,0, +51543,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.73 +30596,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,3.97 +13031,,,,,,,,0, +50569,,,,,,,,1,0.59 +27128,73.0,8.0,7.0,7.0,7.0,7.0,7.0,3,1.48 +51254,60.0,6.0,6.0,8.0,8.0,6.0,8.0,1,0.55 +60496,,,,,,,,0, +33082,98.0,10.0,10.0,10.0,10.0,10.0,10.0,13,6.29 +29048,100.0,10.0,10.0,9.0,10.0,10.0,10.0,2,1.43 +57503,100.0,10.0,10.0,9.0,9.0,10.0,9.0,3,2.5 +30226,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,1.53 +15860,80.0,9.0,9.0,10.0,10.0,9.0,9.0,3,1.55 +14397,,,,,,,,0, +4908,100.0,10.0,8.0,10.0,10.0,8.0,8.0,1,0.63 +55524,73.0,8.0,9.0,9.0,7.0,8.0,9.0,3,2.25 +23212,80.0,10.0,8.0,10.0,10.0,10.0,10.0,1,1.0 +17491,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.43 +72558,90.0,10.0,8.0,10.0,10.0,9.0,10.0,2,1.71 +16090,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.47 +66375,,,,,,,,0, +50312,,,,,,,,0, +70159,,,,,,,,0, +67749,,,,,,,,0, +43427,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.53 +59701,97.0,10.0,10.0,10.0,10.0,9.0,9.0,7,3.23 +1102,100.0,10.0,9.0,10.0,10.0,10.0,10.0,5,2.17 +47563,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,4.69 +46678,,,,,,,,0, +64841,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.64 +41947,60.0,8.0,2.0,10.0,8.0,10.0,6.0,1,0.94 +42054,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +48874,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +25868,,,,,,,,0, +58120,97.0,10.0,10.0,10.0,10.0,10.0,9.0,7,5.12 +54525,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +65103,96.0,9.0,10.0,10.0,10.0,8.0,9.0,10,4.76 +36991,84.0,10.0,10.0,7.0,9.0,10.0,10.0,5,2.94 +63385,70.0,9.0,8.0,10.0,10.0,8.0,7.0,2,1.09 +65368,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,5.74 +28605,80.0,10.0,8.0,9.0,9.0,9.0,9.0,7,3.62 +11168,80.0,9.0,10.0,9.0,9.0,10.0,8.0,3,1.8 +28367,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.55 +15383,,,,,,,,1, +30560,90.0,9.0,9.0,7.0,10.0,9.0,8.0,6,2.86 +20430,99.0,10.0,10.0,10.0,10.0,10.0,10.0,14,6.67 +70883,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,1.0 +43172,,,,,,,,0, +69676,,,,,,,,0, +64028,,,,,,,,0, +67942,83.0,8.0,8.0,9.0,10.0,8.0,9.0,7,3.39 +72754,85.0,9.0,8.0,9.0,9.0,9.0,9.0,8,4.14 +22220,,,,,,,,0, +69032,,,,,,,,0, +11668,80.0,8.0,8.0,7.0,8.0,9.0,8.0,2,0.92 +72381,,,,,,,,0, +35766,,,,,,,,0, +51125,,,,,,,,0, +40690,,,,,,,,0, +23449,,,,,,,,0, +21742,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +34753,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,2.07 +74618,93.0,10.0,9.0,10.0,10.0,9.0,10.0,3,1.41 +16223,96.0,10.0,10.0,10.0,10.0,10.0,9.0,5,3.06 +37223,,,,,,,,1,0.45 +10210,,,,,,,,0, +39913,96.0,10.0,9.0,10.0,9.0,10.0,10.0,11,5.32 +45592,,,,,,,,0, +4592,100.0,10.0,9.0,10.0,10.0,10.0,9.0,3,1.88 +2515,87.0,10.0,9.0,10.0,10.0,9.0,10.0,3,1.41 +21762,,,,,,,,1,0.65 +75213,93.0,10.0,10.0,10.0,10.0,9.0,9.0,9,4.58 +37830,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,7.5 +55862,,,,,,,,0, +51938,100.0,10.0,10.0,10.0,10.0,10.0,9.0,8,6.49 +5084,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,2.93 +51269,,,,,,,,0, +65056,,,,,,,,0, +33933,,,,,,,,0, +63701,,,,,,,,0, +6199,,,,,,,,0, +19198,100.0,9.0,9.0,10.0,10.0,10.0,10.0,3,3.0 +50897,80.0,10.0,6.0,10.0,10.0,10.0,10.0,2,2.0 +62924,80.0,9.0,8.0,9.0,10.0,10.0,10.0,2,2.0 +37512,80.0,8.0,8.0,9.0,8.0,9.0,7.0,6,3.27 +783,,,,,,,,0, +54891,,,,,,,,0, +41604,,,,,,,,0, +29458,88.0,10.0,10.0,10.0,10.0,10.0,10.0,5,5.0 +26330,97.0,10.0,10.0,10.0,10.0,10.0,9.0,6,3.83 +39680,98.0,10.0,10.0,10.0,10.0,10.0,10.0,18,8.44 +1942,70.0,10.0,8.0,10.0,9.0,9.0,8.0,2,1.67 +64597,87.0,7.0,8.0,10.0,10.0,10.0,9.0,3,1.55 +76632,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,2.63 +66555,,,,,,,,1,0.67 +34567,100.0,10.0,10.0,10.0,10.0,10.0,9.0,4,2.07 +15398,68.0,6.0,8.0,8.0,8.0,10.0,8.0,5,2.46 +52357,,,,,,,,0, +22432,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.5 +15528,,,,,,,,0, +24491,,,,,,,,0, +5472,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.45 +41464,,,,,,,,0, +27449,96.0,10.0,10.0,10.0,9.0,9.0,10.0,6,2.57 +24461,96.0,10.0,10.0,10.0,10.0,10.0,9.0,15,7.14 +5457,98.0,10.0,10.0,10.0,10.0,9.0,10.0,10,5.0 +66155,80.0,7.0,8.0,8.0,8.0,9.0,8.0,3,1.76 +2959,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +19337,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.86 +72401,97.0,10.0,10.0,10.0,10.0,9.0,10.0,12,5.81 +73982,80.0,10.0,10.0,10.0,10.0,10.0,8.0,1,1.0 +56342,93.0,10.0,10.0,10.0,10.0,8.0,10.0,9,5.0 +6136,,,,,,,,0, +48338,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.6 +8565,80.0,6.0,8.0,8.0,8.0,6.0,8.0,1,1.0 +5478,100.0,10.0,8.0,10.0,10.0,8.0,8.0,1,0.48 +16621,100.0,9.0,10.0,10.0,10.0,10.0,9.0,2,2.0 +34141,92.0,9.0,10.0,8.0,9.0,10.0,9.0,5,3.19 +59177,93.0,9.0,9.0,10.0,10.0,10.0,9.0,11,5.32 +52921,80.0,10.0,6.0,10.0,10.0,10.0,10.0,1,1.0 +71781,80.0,10.0,10.0,10.0,10.0,6.0,8.0,1,0.6 +51445,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,3.33 +31287,100.0,10.0,10.0,10.0,9.0,9.0,9.0,2,0.9 +25734,85.0,10.0,10.0,9.0,10.0,9.0,8.0,4,3.33 +55122,90.0,10.0,9.0,10.0,10.0,10.0,10.0,2,1.46 +20255,98.0,10.0,10.0,10.0,10.0,10.0,10.0,11,5.79 +63261,,,,,,,,0, +23660,,,,,,,,0, +73435,,,,,,,,0, +17102,100.0,8.0,10.0,8.0,8.0,6.0,8.0,1,0.63 +36992,80.0,8.0,9.0,8.0,10.0,10.0,7.0,5,3.75 +20679,,,,,,,,0, +19448,,,,,,,,0, +3287,,,,,,,,0, +9188,,,,,,,,0, +18892,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,2.61 +3615,100.0,10.0,8.0,8.0,10.0,10.0,8.0,1,0.59 +27070,40.0,2.0,2.0,8.0,8.0,6.0,2.0,1,0.79 +12314,91.0,9.0,9.0,10.0,10.0,10.0,9.0,7,4.04 +61833,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +53283,,,,,,,,0, +36027,,,,,,,,0, +52421,,,,,,,,0, +20788,,,,,,,,0, +72816,,,,,,,,0, +30064,,,,,,,,0, +65613,,,,,,,,0, +34147,,,,,,,,0, +3292,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,7.27 +4711,,,,,,,,0, +54600,,,,,,,,0, +60722,,,,,,,,0, +34574,,,,,,,,0, +44874,,,,,,,,0, +62086,,,,,,,,0, +21181,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,5.71 +10842,,,,,,,,1,0.88 +5620,,,,,,,,0, +19912,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,3.33 +50890,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,1.36 +5665,,,,,,,,0, +5362,80.0,10.0,10.0,4.0,10.0,10.0,10.0,1,1.0 +9258,,,,,,,,0, +50598,85.0,9.0,9.0,9.0,9.0,9.0,9.0,8,4.9 +44262,84.0,9.0,7.0,8.0,8.0,10.0,9.0,5,2.88 +55393,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.88 +48518,,,,,,,,1,1.0 +66059,87.0,9.0,6.0,10.0,10.0,9.0,8.0,7,3.04 +7670,98.0,10.0,9.0,10.0,10.0,10.0,10.0,12,6.0 +19775,80.0,10.0,8.0,8.0,10.0,8.0,8.0,1,0.58 +63417,,,,,,,,0, +5413,,,,,,,,0, +39414,,,,,,,,0, +17138,100.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.51 +45240,,,,,,,,0, +11356,97.0,10.0,10.0,10.0,10.0,10.0,10.0,7,3.62 +58633,96.0,10.0,10.0,9.0,10.0,10.0,9.0,5,2.59 +20860,98.0,10.0,10.0,10.0,10.0,10.0,10.0,16,8.0 +45429,80.0,9.0,9.0,9.0,10.0,10.0,9.0,6,2.95 +11216,,,,,,,,0, +23258,,,,,,,,0, +53954,,,,,,,,0, +16105,95.0,9.0,10.0,10.0,10.0,10.0,9.0,4,2.07 +74550,60.0,6.0,6.0,8.0,6.0,6.0,6.0,1,0.75 +15336,100.0,10.0,10.0,10.0,9.0,9.0,9.0,4,4.0 +66071,,,,,,,,0, +40061,,,,,,,,1, +5023,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.5 +7336,60.0,8.0,8.0,10.0,10.0,10.0,6.0,1,0.91 +35347,87.0,9.0,7.0,9.0,9.0,10.0,8.0,3,1.58 +24867,,,,,,,,1,1.0 +62061,93.0,9.0,9.0,10.0,9.0,8.0,9.0,3,1.64 +29365,90.0,9.0,9.0,9.0,9.0,9.0,9.0,6,3.83 +69478,83.0,8.0,9.0,10.0,9.0,9.0,9.0,7,3.56 +74889,83.0,9.0,8.0,10.0,10.0,9.0,9.0,7,3.96 +1055,91.0,9.0,9.0,9.0,9.0,10.0,10.0,7,3.5 +8063,,,,,,,,0, +16329,,,,,,,,0, +37713,,,,,,,,0, +23461,100.0,10.0,10.0,10.0,10.0,6.0,8.0,1,1.0 +41501,73.0,8.0,8.0,9.0,9.0,9.0,7.0,6,2.9 +38132,,,,,,,,0, +71083,91.0,10.0,9.0,10.0,10.0,10.0,9.0,9,4.29 +44227,99.0,10.0,10.0,10.0,10.0,10.0,10.0,16,7.5 +35010,,,,,,,,0, +2552,80.0,10.0,6.0,10.0,10.0,10.0,10.0,1,0.61 +25748,97.0,10.0,9.0,10.0,10.0,9.0,10.0,7,3.82 +59628,73.0,8.0,6.0,9.0,9.0,8.0,7.0,3,2.14 +16949,,,,,,,,0, +74341,93.0,10.0,10.0,10.0,10.0,9.0,9.0,3,1.96 +17883,89.0,10.0,9.0,10.0,10.0,10.0,9.0,9,5.63 +893,,,,,,,,0, +22524,83.0,10.0,9.0,10.0,10.0,10.0,9.0,6,3.6 +60922,,,,,,,,0, +63910,,,,,,,,0, +69817,,,,,,,,0, +22089,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.36 +12601,80.0,9.0,9.0,9.0,8.0,9.0,8.0,2,1.62 +47987,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.8 +60216,93.0,10.0,9.0,10.0,10.0,10.0,9.0,9,4.58 +43432,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,1.8 +12475,89.0,10.0,9.0,10.0,10.0,8.0,9.0,7,3.39 +9953,93.0,10.0,10.0,10.0,10.0,9.0,9.0,6,2.61 +70422,93.0,10.0,10.0,10.0,9.0,10.0,10.0,3,2.09 +12402,97.0,10.0,10.0,10.0,10.0,10.0,9.0,12,5.63 +27424,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.79 +24175,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.91 +70565,73.0,7.0,10.0,10.0,10.0,7.0,7.0,3,2.09 +19903,,,,,,,,0, +60147,97.0,10.0,9.0,10.0,10.0,10.0,9.0,7,5.83 +62993,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.6 +44503,,,,,,,,0, +44740,96.0,10.0,10.0,10.0,10.0,10.0,10.0,10,5.26 +25226,100.0,9.0,9.0,10.0,10.0,8.0,10.0,2,1.43 +22470,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,3.16 +47178,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.55 +47025,100.0,10.0,9.0,10.0,10.0,10.0,10.0,4,2.03 +27096,100.0,10.0,10.0,10.0,10.0,10.0,10.0,20,9.09 +11950,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,2.21 +57917,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +77032,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.02 +42212,80.0,7.0,10.0,9.0,9.0,9.0,8.0,2,1.76 +52231,84.0,9.0,9.0,9.0,8.0,10.0,8.0,5,2.42 +13589,,,,,,,,0, +73524,86.0,9.0,9.0,10.0,9.0,10.0,9.0,7,3.82 +49758,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,2.0 +39906,,,,,,,,0, +9984,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.07 +4290,97.0,10.0,10.0,10.0,10.0,9.0,10.0,15,7.26 +12859,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,1.33 +39037,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.73 +45693,,,,,,,,0, +67730,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.44 +1344,,,,,,,,0, +9762,,,,,,,,0, +71981,,,,,,,,0, +6909,,,,,,,,0, +18186,100.0,10.0,10.0,10.0,10.0,9.0,9.0,2,1.09 +31520,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +1686,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,2.73 +53857,,,,,,,,0, +49619,20.0,2.0,2.0,2.0,2.0,2.0,2.0,1,1.0 +45902,,,,,,,,0, +66537,,,,,,,,0, +20398,,,,,,,,0, +25510,90.0,10.0,10.0,10.0,10.0,8.0,9.0,2,2.0 +22126,,,,,,,,0, +32436,70.0,9.0,5.0,10.0,10.0,10.0,8.0,4,3.53 +23376,,,,,,,,0, +63708,100.0,9.0,10.0,9.0,10.0,9.0,10.0,3,1.64 +56702,100.0,10.0,10.0,10.0,10.0,8.0,10.0,2,1.58 +64702,,,,,,,,0, +34808,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.59 +3986,,,,,,,,0, +4332,83.0,9.0,10.0,8.0,8.0,10.0,8.0,6,4.0 +46296,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.45 +30139,,,,,,,,0, +37637,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,1.0 +23862,,,,,,,,0, +66123,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,2.43 +64353,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,2.68 +49875,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.61 +74501,88.0,10.0,9.0,10.0,10.0,10.0,9.0,5,2.31 +1538,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,1.4 +56438,98.0,10.0,10.0,10.0,10.0,9.0,10.0,10,4.69 +49251,96.0,9.0,9.0,9.0,9.0,9.0,10.0,10,4.76 +14929,,,,,,,,1,0.45 +7977,,,,,,,,0, +76886,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.45 +19670,73.0,8.0,9.0,9.0,10.0,8.0,7.0,8,3.69 +23538,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.61 +63146,92.0,10.0,10.0,10.0,10.0,9.0,10.0,6,4.39 +43017,95.0,9.0,10.0,10.0,10.0,10.0,9.0,4,1.85 +38891,100.0,10.0,10.0,9.0,10.0,10.0,10.0,3,1.7 +38121,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +8515,98.0,10.0,10.0,10.0,10.0,9.0,10.0,8,4.44 +13880,100.0,10.0,9.0,10.0,10.0,9.0,10.0,2,1.09 +18706,,,,,,,,0, +33589,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,3.68 +16208,93.0,9.0,9.0,9.0,9.0,9.0,9.0,3,1.53 +74396,96.0,10.0,9.0,9.0,10.0,9.0,10.0,11,5.32 +4593,,,,,,,,0, +17733,80.0,10.0,8.0,9.0,9.0,9.0,9.0,5,3.49 +45146,,,,,,,,0, +32201,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,3.0 +40059,90.0,10.0,10.0,9.0,9.0,10.0,10.0,4,2.93 +74361,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.86 +67687,100.0,8.0,8.0,10.0,10.0,10.0,8.0,1,0.63 +37328,,,,,,,,1,0.55 +15762,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.88 +65777,,,,,,,,0, +45881,,,,,,,,0, +12180,,,,,,,,0, +59855,,,,,,,,0, +47792,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,2.18 +52820,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,2.05 +54468,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.7 +49828,,,,,,,,0, +9071,40.0,10.0,4.0,8.0,8.0,6.0,4.0,1,1.0 +56739,80.0,9.0,8.0,9.0,8.0,8.0,8.0,6,2.95 +385,100.0,10.0,9.0,10.0,10.0,10.0,9.0,6,3.33 +59639,,,,,,,,0, +18811,,,,,,,,0, +23233,100.0,10.0,10.0,8.0,10.0,10.0,10.0,1,0.49 +75272,,,,,,,,1,0.83 +49410,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +37821,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,2.42 +28589,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +65021,87.0,9.0,9.0,10.0,9.0,9.0,9.0,3,2.09 +56335,100.0,10.0,10.0,10.0,9.0,10.0,10.0,2,2.0 +76230,95.0,10.0,9.0,9.0,10.0,10.0,9.0,4,2.22 +9365,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.97 +36044,,,,,,,,0, +68545,100.0,10.0,8.0,8.0,6.0,10.0,10.0,1,0.67 +62163,80.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.61 +36998,,,,,,,,0, +5992,90.0,9.0,10.0,9.0,9.0,9.0,9.0,2,1.43 +38259,93.0,9.0,9.0,10.0,9.0,10.0,9.0,3,2.05 +22362,,,,,,,,0, +48251,,,,,,,,0, +40114,100.0,10.0,9.0,10.0,10.0,9.0,9.0,2,1.62 +56677,60.0,6.0,2.0,10.0,6.0,8.0,6.0,1,0.52 +60364,91.0,10.0,10.0,10.0,10.0,10.0,9.0,9,4.91 +50636,94.0,10.0,9.0,10.0,10.0,10.0,9.0,8,3.75 +28306,,,,,,,,0, +30436,,,,,,,,0, +44275,60.0,7.0,8.0,9.0,9.0,7.0,5.0,3,1.64 +54482,,,,,,,,0, +54475,97.0,10.0,9.0,9.0,9.0,10.0,10.0,6,3.67 +57618,,,,,,,,0, +18814,,,,,,,,0, +5304,,,,,,,,0, +29351,,,,,,,,0, +3023,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.57 +65241,,,,,,,,0, +20683,,,,,,,,0, +20774,93.0,10.0,9.0,10.0,10.0,10.0,9.0,3,1.91 +9836,,,,,,,,0, +68279,,,,,,,,0, +37901,100.0,8.0,10.0,10.0,10.0,8.0,8.0,1,0.79 +20810,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.5 +54306,96.0,10.0,10.0,10.0,10.0,9.0,10.0,5,3.57 +19446,,,,,,,,0, +20403,95.0,10.0,10.0,10.0,10.0,9.0,10.0,4,3.08 +5461,60.0,8.0,6.0,9.0,8.0,10.0,8.0,2,1.36 +19230,80.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.86 +24235,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,2.34 +21600,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +60377,100.0,9.0,10.0,10.0,10.0,9.0,9.0,3,2.73 +34621,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.09 +6164,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.43 +54524,,,,,,,,0, +46812,80.0,8.0,10.0,10.0,10.0,10.0,6.0,1,0.7 +42757,70.0,7.0,10.0,10.0,8.0,10.0,7.0,4,2.03 +67625,,,,,,,,0, +69575,90.0,10.0,9.0,10.0,10.0,9.0,9.0,2,1.11 +74745,73.0,9.0,10.0,9.0,9.0,10.0,9.0,3,1.7 +51805,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.38 +30092,100.0,10.0,10.0,10.0,10.0,7.0,10.0,3,2.57 +23051,93.0,10.0,10.0,10.0,9.0,10.0,9.0,3,1.91 +26599,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,2.11 +76315,87.0,10.0,10.0,9.0,9.0,10.0,9.0,6,2.69 +21307,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.55 +40344,90.0,10.0,10.0,8.0,9.0,9.0,10.0,2,1.87 +35659,87.0,9.0,9.0,10.0,10.0,9.0,9.0,9,5.87 +59692,,,,,,,,0, +16014,100.0,10.0,10.0,10.0,10.0,9.0,10.0,9,4.29 +69579,,,,,,,,0, +72441,87.0,9.0,9.0,9.0,9.0,9.0,9.0,3,1.64 +57478,,,,,,,,0, +19687,,,,,,,,0, +27356,90.0,10.0,10.0,9.0,9.0,10.0,9.0,6,3.67 +73005,91.0,10.0,9.0,9.0,10.0,10.0,9.0,7,3.23 +9014,100.0,10.0,9.0,10.0,10.0,10.0,10.0,4,1.94 +56112,,,,,,,,0, +47137,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +72233,,,,,,,,0, +32054,,,,,,,,0, +27584,73.0,9.0,7.0,9.0,9.0,7.0,8.0,3,3.0 +60320,,,,,,,,0, +6801,80.0,8.0,8.0,8.0,10.0,10.0,10.0,1,0.63 +28186,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.73 +59465,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.81 +21398,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,5.0 +66960,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,1.28 +25870,,,,,,,,0, +74506,100.0,9.0,10.0,10.0,10.0,10.0,9.0,3,2.43 +14485,80.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.48 +3400,,,,,,,,0, +20175,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,2.25 +72508,84.0,9.0,8.0,10.0,10.0,10.0,9.0,17,7.85 +1107,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +15633,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.02 +76567,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +61158,,,,,,,,0, +15306,,,,,,,,0, +14134,86.0,9.0,9.0,10.0,10.0,9.0,9.0,7,3.75 +59828,92.0,9.0,10.0,10.0,10.0,9.0,9.0,15,7.03 +41056,72.0,9.0,6.0,8.0,9.0,9.0,9.0,5,2.59 +41038,,,,,,,,0, +40972,90.0,10.0,10.0,9.0,10.0,9.0,9.0,14,6.56 +11207,,,,,,,,0, +70519,78.0,9.0,8.0,9.0,9.0,9.0,9.0,9,4.58 +10161,40.0,10.0,2.0,10.0,10.0,10.0,6.0,1,0.73 +42101,85.0,10.0,10.0,9.0,9.0,10.0,10.0,4,3.64 +28532,83.0,8.0,8.0,9.0,10.0,9.0,8.0,6,4.5 +19257,,,,,,,,0, +52007,95.0,10.0,10.0,10.0,10.0,10.0,9.0,4,2.93 +52317,100.0,10.0,10.0,8.0,10.0,10.0,10.0,1,0.73 +31534,,,,,,,,0, +21776,90.0,9.0,10.0,9.0,10.0,9.0,9.0,6,2.86 +18391,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,1.13 +33808,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.76 +49550,,,,,,,,0, +39404,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,3.0 +5009,95.0,10.0,10.0,10.0,9.0,10.0,10.0,8,4.21 +36152,,,,,,,,0, +57109,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,3.16 +38040,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.09 +48078,67.0,8.0,7.0,8.0,8.0,10.0,6.0,6,3.1 +76811,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,2.18 +66974,80.0,10.0,10.0,10.0,10.0,10.0,8.0,3,2.43 +14415,,,,,,,,0, +32591,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +34471,,,,,,,,0, +64539,,,,,,,,1,0.79 +33116,,,,,,,,0, +67086,,,,,,,,0, +55669,,,,,,,,0, +17831,100.0,10.0,9.0,10.0,10.0,10.0,10.0,4,3.16 +69487,100.0,10.0,10.0,10.0,9.0,9.0,9.0,3,1.76 +74166,90.0,10.0,8.0,10.0,10.0,10.0,9.0,2,1.5 +7760,80.0,8.0,8.0,10.0,10.0,9.0,9.0,4,2.14 +37746,80.0,8.0,7.0,10.0,10.0,9.0,8.0,5,3.19 +54359,,,,,,,,0, +62968,97.0,9.0,10.0,10.0,10.0,10.0,10.0,7,7.0 +7827,98.0,10.0,10.0,10.0,10.0,9.0,9.0,8,5.58 +1006,,,,,,,,1,0.57 +27943,,,,,,,,0, +28639,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.55 +13158,,,,,,,,0, +2891,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.63 +49275,,,,,,,,0, +15609,97.0,10.0,9.0,10.0,10.0,10.0,10.0,6,4.0 +74113,,,,,,,,0, +75749,,,,,,,,0, +7076,,,,,,,,0, +3537,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,2.03 +66074,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.83 +52913,96.0,10.0,9.0,10.0,10.0,10.0,10.0,10,6.82 +4555,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,2.0 +76253,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.48 +953,90.0,10.0,8.0,9.0,10.0,9.0,7.0,2,1.76 +1088,,,,,,,,0, +38102,80.0,9.0,9.0,10.0,8.0,10.0,9.0,2,1.58 +8189,100.0,10.0,10.0,8.0,8.0,10.0,8.0,1,1.0 +10474,,,,,,,,0, +6448,93.0,10.0,10.0,10.0,10.0,9.0,10.0,3,1.88 +70570,,,,,,,,0, +53013,100.0,10.0,10.0,9.0,9.0,10.0,9.0,3,2.65 +61244,,,,,,,,0, +2374,,,,,,,,0, +29160,87.0,10.0,9.0,10.0,9.0,10.0,9.0,3,2.05 +70829,80.0,9.0,9.0,8.0,10.0,10.0,9.0,3,2.5 +72879,,,,,,,,0, +20342,,,,,,,,0, +41063,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,2.65 +42579,,,,,,,,0, +17116,90.0,10.0,10.0,10.0,10.0,8.0,9.0,2,1.11 +28498,90.0,10.0,10.0,10.0,10.0,10.0,9.0,2,1.13 +53744,,,,,,,,0, +36026,,,,,,,,0, +26873,,,,,,,,0, +75659,100.0,10.0,10.0,10.0,8.0,10.0,10.0,1,1.0 +58144,100.0,10.0,8.0,10.0,10.0,8.0,9.0,2,1.09 +43482,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.48 +22167,,,,,,,,0, +10385,78.0,8.0,7.0,9.0,10.0,9.0,8.0,8,6.32 +25722,93.0,9.0,9.0,9.0,9.0,9.0,9.0,3,1.64 +65999,,,,,,,,0, +55494,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.2 +44209,,,,,,,,0, +16293,,,,,,,,0, +16054,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,2.42 +46245,,,,,,,,0, +34079,76.0,8.0,9.0,10.0,10.0,10.0,8.0,5,2.42 +16286,,,,,,,,0, +51319,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.13 +24373,97.0,10.0,10.0,10.0,10.0,9.0,9.0,7,4.2 +54514,,,,,,,,0, +10100,,,,,,,,0, +56398,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,3.67 +37686,96.0,10.0,10.0,9.0,10.0,10.0,9.0,10,6.0 +22215,,,,,,,,0, +61863,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.86 +75819,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,2.22 +22474,97.0,10.0,10.0,10.0,10.0,10.0,9.0,6,3.4 +6208,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,4.2 +3162,96.0,9.0,10.0,10.0,10.0,9.0,9.0,9,4.58 +10502,84.0,10.0,9.0,10.0,10.0,10.0,9.0,5,3.75 +7461,95.0,10.0,9.0,10.0,10.0,10.0,10.0,12,6.79 +42468,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,2.55 +15103,,,,,,,,0, +38688,,,,,,,,0, +60954,,,,,,,,0, +4643,70.0,8.0,7.0,7.0,7.0,9.0,7.0,6,2.86 +1061,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.88 +35025,100.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.79 +5756,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,1.2 +64671,80.0,8.0,7.0,10.0,10.0,10.0,9.0,2,1.05 +34148,87.0,9.0,9.0,10.0,10.0,8.0,9.0,3,1.45 +72055,100.0,9.0,10.0,10.0,10.0,10.0,10.0,8,4.14 +29503,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.7 +74706,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.41 +35600,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +30636,,,,,,,,0, +48629,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +51442,,,,,,,,0, +59543,90.0,10.0,10.0,10.0,10.0,10.0,9.0,2,1.82 +43615,,,,,,,,0, +63765,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.5 +64427,93.0,10.0,10.0,10.0,10.0,10.0,9.0,6,3.27 +16986,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +26838,70.0,8.0,10.0,10.0,8.0,8.0,5.0,2,2.0 +48268,87.0,10.0,10.0,10.0,9.0,9.0,9.0,3,1.53 +23592,100.0,10.0,8.0,8.0,6.0,10.0,10.0,1,0.91 +40298,,,,,,,,0, +57128,,,,,,,,0, +54591,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +52329,,,,,,,,0, +64170,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,1.55 +18017,,,,,,,,0, +48410,,,,,,,,0, +4481,93.0,10.0,10.0,9.0,9.0,9.0,9.0,9,4.35 +35749,,,,,,,,1,1.0 +48913,100.0,10.0,10.0,10.0,10.0,9.0,10.0,9,5.19 +58365,,,,,,,,0, +495,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.22 +31378,86.0,9.0,9.0,9.0,9.0,10.0,9.0,16,7.74 +32511,100.0,10.0,10.0,10.0,10.0,10.0,9.0,6,3.75 +63772,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.75 +40169,100.0,9.0,10.0,10.0,10.0,10.0,10.0,2,1.87 +60466,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,7.06 +73210,80.0,8.0,10.0,8.0,10.0,10.0,8.0,1,0.73 +62488,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,5.0 +37876,100.0,10.0,10.0,6.0,10.0,8.0,8.0,1,1.0 +53399,,,,,,,,0, +25419,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,4.0 +44714,97.0,10.0,10.0,9.0,10.0,10.0,9.0,7,4.47 +3434,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,6.18 +21817,20.0,4.0,2.0,2.0,2.0,10.0,2.0,1,0.83 +19303,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.5 +19421,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.71 +6565,,,,,,,,0, +75061,92.0,9.0,9.0,10.0,10.0,9.0,9.0,10,6.67 +21396,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,2.67 +74226,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,2.05 +3119,,,,,,,,0, +65040,,,,,,,,0, +592,,,,,,,,0, +435,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,2.2 +14078,80.0,9.0,10.0,9.0,10.0,9.0,8.0,2,1.54 +20631,100.0,10.0,10.0,10.0,10.0,10.0,8.0,2,1.2 +64960,,,,,,,,0, +37306,70.0,8.0,8.0,8.0,9.0,8.0,7.0,2,2.0 +1184,,,,,,,,0, +8625,90.0,10.0,10.0,10.0,10.0,9.0,10.0,2,2.0 +67847,100.0,10.0,10.0,10.0,10.0,9.0,10.0,6,3.75 +54069,,,,,,,,0, +72533,73.0,7.0,9.0,10.0,9.0,10.0,9.0,3,2.25 +43127,100.0,9.0,10.0,10.0,10.0,9.0,8.0,2,1.07 +60238,,,,,,,,0, +74875,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.61 +34101,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.63 +76679,,,,,,,,0, +26910,90.0,9.0,9.0,9.0,10.0,10.0,10.0,2,1.87 +3658,40.0,2.0,6.0,10.0,6.0,10.0,4.0,1,0.63 +67739,94.0,9.0,9.0,10.0,10.0,10.0,9.0,7,3.44 +54140,,,,,,,,0, +44376,,,,,,,,0, +49095,87.0,9.0,9.0,8.0,9.0,9.0,9.0,3,3.0 +20279,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,5.0 +61989,80.0,9.0,9.0,7.0,9.0,7.0,10.0,2,1.11 +62296,94.0,10.0,10.0,10.0,10.0,9.0,9.0,19,10.56 +38787,90.0,9.0,9.0,9.0,10.0,9.0,9.0,4,2.5 +65750,,,,,,,,0, +6361,,,,,,,,0, +54845,,,,,,,,0, +15102,,,,,,,,0, +5182,60.0,6.0,4.0,6.0,8.0,5.0,6.0,2,2.0 +64855,,,,,,,,1,0.54 +43313,60.0,6.0,6.0,10.0,4.0,4.0,4.0,1,0.75 +51168,,,,,,,,0, +11713,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,4.84 +30733,,,,,,,,0, +44582,88.0,9.0,9.0,10.0,10.0,10.0,9.0,16,8.28 +52453,,,,,,,,0, +18746,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.13 +63050,96.0,10.0,10.0,10.0,10.0,10.0,10.0,9,5.29 +75861,80.0,7.0,6.0,10.0,10.0,8.0,8.0,2,1.5 +55828,75.0,8.0,9.0,10.0,10.0,9.0,8.0,4,2.14 +3664,,,,,,,,1, +18658,,,,,,,,0, +49541,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,4.0 +76655,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.5 +68778,,,,,,,,0, +751,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,2.57 +37808,,,,,,,,1,0.51 +18836,,,,,,,,0, +45620,,,,,,,,0, +75689,74.0,8.0,7.0,8.0,8.0,9.0,8.0,13,7.5 +74568,86.0,9.0,10.0,9.0,10.0,9.0,8.0,7,3.89 +29555,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.52 +40692,83.0,9.0,8.0,9.0,10.0,9.0,8.0,7,4.88 +8159,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.09 +22199,60.0,7.0,7.0,7.0,7.0,7.0,6.0,3,2.25 +70797,,,,,,,,0, +75831,,,,,,,,0, +38721,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +31214,,,,,,,,0, +615,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,2.9 +37673,,,,,,,,0, +58549,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +43645,94.0,10.0,10.0,10.0,10.0,9.0,9.0,7,3.82 +64333,100.0,10.0,8.0,10.0,10.0,10.0,9.0,2,1.11 +22484,91.0,10.0,10.0,10.0,8.0,9.0,9.0,7,5.12 +21350,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.5 +25967,95.0,10.0,10.0,10.0,10.0,9.0,9.0,4,2.18 +53290,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,2.88 +32847,,,,,,,,0, +63570,92.0,9.0,9.0,10.0,10.0,9.0,9.0,5,3.26 +10302,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +61067,,,,,,,,1,0.52 +28414,,,,,,,,0, +38081,,,,,,,,0, +54065,,,,,,,,0, +56371,,,,,,,,0, +18260,90.0,9.0,10.0,10.0,10.0,10.0,10.0,2,1.09 +53911,90.0,9.0,10.0,10.0,9.0,9.0,9.0,6,5.62 +25071,98.0,9.0,10.0,10.0,10.0,9.0,9.0,8,3.93 +64498,47.0,6.0,5.0,7.0,7.0,7.0,5.0,3,2.09 +25138,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.73 +44664,93.0,10.0,9.0,10.0,10.0,10.0,10.0,3,3.0 +53883,90.0,10.0,10.0,10.0,10.0,8.0,10.0,4,2.22 +16062,,,,,,,,0, +14308,,,,,,,,0, +27659,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,1.58 +17215,96.0,10.0,9.0,10.0,10.0,10.0,10.0,5,2.73 +60040,100.0,10.0,10.0,10.0,9.0,9.0,10.0,2,1.05 +37709,,,,,,,,0, +2897,,,,,,,,0, +61602,,,,,,,,0, +10593,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.48 +27286,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +30407,100.0,10.0,10.0,10.0,10.0,10.0,10.0,19,8.91 +3819,,,,,,,,0, +28364,73.0,10.0,7.0,10.0,10.0,8.0,9.0,3,1.88 +74508,93.0,8.0,10.0,10.0,9.0,9.0,9.0,3,3.0 +27270,80.0,9.0,7.0,10.0,10.0,10.0,9.0,2,1.03 +68274,95.0,10.0,10.0,9.0,10.0,9.0,9.0,4,2.55 +6345,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,2.86 +26731,,,,,,,,0, +24679,,,,,,,,0, +45606,,,,,,,,0, +25492,,,,,,,,0, +10890,97.0,10.0,10.0,10.0,10.0,10.0,10.0,15,8.33 +536,95.0,10.0,10.0,10.0,10.0,10.0,9.0,4,2.4 +52394,80.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.61 +44263,100.0,10.0,9.0,10.0,10.0,9.0,9.0,4,2.11 +41069,85.0,9.0,7.0,10.0,10.0,10.0,8.0,4,2.35 +33912,96.0,10.0,8.0,10.0,10.0,10.0,9.0,5,2.68 +50059,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,1.61 +63423,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,1.5 +69918,97.0,10.0,10.0,9.0,10.0,10.0,9.0,7,3.82 +69706,86.0,10.0,9.0,10.0,10.0,9.0,10.0,10,5.45 +23773,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,4.44 +31698,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.48 +69296,,,,,,,,0, +34871,95.0,10.0,10.0,10.0,9.0,10.0,10.0,4,2.26 +11073,,,,,,,,0, +45050,77.0,9.0,9.0,10.0,10.0,8.0,8.0,8,4.44 +29860,96.0,10.0,9.0,10.0,10.0,10.0,10.0,5,3.13 +21057,90.0,10.0,8.0,10.0,10.0,10.0,9.0,2,1.82 +14714,,,,,,,,0, +16338,80.0,8.0,8.0,8.0,10.0,8.0,10.0,1,0.73 +43338,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +73763,,,,,,,,0, +19445,94.0,10.0,9.0,9.0,10.0,10.0,10.0,7,7.0 +51504,,,,,,,,0, +32857,,,,,,,,0, +60566,93.0,10.0,10.0,10.0,10.0,9.0,9.0,9,5.63 +47052,,,,,,,,0, +18156,,,,,,,,0, +62956,100.0,9.0,9.0,9.0,10.0,10.0,10.0,4,2.5 +46912,,,,,,,,0, +18510,,,,,,,,0, +56988,80.0,9.0,7.0,7.0,10.0,9.0,9.0,4,4.0 +54265,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +36244,92.0,9.0,9.0,10.0,10.0,10.0,10.0,5,2.38 +64908,,,,,,,,0, +16412,,,,,,,,0, +54615,,,,,,,,0, +18813,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,2.73 +28945,,,,,,,,0, +38298,,,,,,,,0, +70178,100.0,10.0,10.0,10.0,9.0,10.0,10.0,2,2.0 +60569,100.0,9.0,10.0,9.0,10.0,9.0,10.0,2,1.28 +554,,,,,,,,0, +12349,100.0,8.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +15800,,,,,,,,0, +65102,84.0,9.0,8.0,9.0,9.0,9.0,9.0,5,3.19 +36988,89.0,10.0,10.0,9.0,9.0,9.0,9.0,16,7.62 +36240,73.0,9.0,7.0,10.0,7.0,10.0,7.0,3,1.7 +56811,91.0,10.0,10.0,10.0,10.0,8.0,9.0,17,9.62 +28708,100.0,10.0,10.0,10.0,10.0,10.0,6.0,1,0.91 +26698,80.0,7.0,6.0,10.0,10.0,10.0,7.0,2,1.15 +40242,94.0,10.0,10.0,10.0,10.0,10.0,10.0,17,9.44 +7150,,,,,,,,0, +56936,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,2.26 +53618,97.0,10.0,10.0,10.0,10.0,10.0,10.0,7,4.38 +70869,,,,,,,,0, +44457,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,7.89 +76749,,,,,,,,1,0.5 +49802,85.0,10.0,9.0,10.0,10.0,8.0,8.0,4,2.61 +55846,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,2.25 +3516,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.79 +35442,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +62932,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.63 +22256,100.0,10.0,10.0,10.0,10.0,7.0,10.0,2,1.05 +34754,,,,,,,,0, +25140,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,1.09 +46499,100.0,10.0,10.0,10.0,9.0,10.0,10.0,2,1.0 +63142,100.0,6.0,10.0,10.0,10.0,10.0,10.0,1,0.77 +40387,,,,,,,,0, +63710,100.0,10.0,9.0,10.0,10.0,10.0,9.0,3,1.8 +4416,,,,,,,,1,0.6 +39456,,,,,,,,0, +43839,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.67 +4429,80.0,10.0,10.0,10.0,2.0,10.0,8.0,2,2.0 +3630,87.0,9.0,9.0,9.0,9.0,10.0,9.0,3,1.91 +47980,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,1.25 +49786,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,1.09 +64535,80.0,10.0,6.0,8.0,10.0,10.0,10.0,1,1.0 +38960,,,,,,,,0, +16567,,,,,,,,0, +45106,90.0,10.0,10.0,10.0,9.0,10.0,10.0,2,1.54 +17192,100.0,10.0,10.0,9.0,9.0,9.0,10.0,2,1.62 +31842,,,,,,,,0, +74725,80.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.83 +68385,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,4.0 +22208,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.88 +71122,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.18 +48285,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.73 +29368,,,,,,,,0, +76397,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.71 +33562,,,,,,,,0, +8215,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +53244,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +35296,,,,,,,,0, +64287,100.0,10.0,9.0,10.0,10.0,10.0,9.0,4,2.26 +9487,100.0,10.0,9.0,10.0,8.0,9.0,10.0,3,2.5 +44080,100.0,10.0,10.0,10.0,10.0,10.0,8.0,5,3.13 +14536,97.0,10.0,10.0,10.0,10.0,9.0,9.0,6,2.9 +68659,,,,,,,,0, +9781,85.0,9.0,9.0,9.0,10.0,10.0,8.0,4,2.35 +10422,,,,,,,,0, +32435,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +34220,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.55 +36105,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,1.0 +13016,,,,,,,,0, +22714,20.0,2.0,2.0,10.0,4.0,8.0,6.0,1,0.53 +26322,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.71 +46109,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.63 +26392,,,,,,,,1,1.0 +6467,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,2.73 +58033,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,2.31 +1004,71.0,10.0,9.0,6.0,9.0,10.0,9.0,7,4.47 +12893,94.0,10.0,9.0,10.0,10.0,9.0,10.0,7,3.39 +42440,80.0,10.0,9.0,9.0,8.0,9.0,9.0,3,2.57 +40663,,,,,,,,0, +51607,,,,,,,,1, +75587,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,2.0 +12350,80.0,10.0,8.0,10.0,10.0,8.0,8.0,1,1.0 +42438,97.0,10.0,10.0,10.0,10.0,10.0,10.0,7,3.82 +14544,74.0,8.0,9.0,7.0,9.0,9.0,8.0,7,4.38 +8151,80.0,9.0,9.0,9.0,9.0,10.0,8.0,7,4.38 +40000,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.57 +27231,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,1.0 +6619,,,,,,,,0, +25430,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.79 +6209,85.0,10.0,10.0,10.0,10.0,9.0,10.0,4,2.11 +25065,,,,,,,,0, +2894,83.0,8.0,9.0,7.0,7.0,9.0,8.0,6,3.21 +69315,,,,,,,,0, +7524,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,2.93 +14789,77.0,7.0,8.0,8.0,8.0,8.0,7.0,8,4.36 +18954,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,3.1 +65411,100.0,10.0,10.0,8.0,10.0,10.0,10.0,1,1.0 +59192,100.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.73 +3907,,,,,,,,0, +18401,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.4 +46066,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,5.33 +45233,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,4.0 +11460,,,,,,,,2,1.25 +55404,100.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.55 +27716,94.0,9.0,10.0,9.0,9.0,10.0,9.0,8,4.53 +53085,,,,,,,,1,1.0 +53910,90.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +21351,100.0,10.0,9.0,9.0,10.0,10.0,9.0,3,1.67 +68946,,,,,,,,0, +19270,,,,,,,,0, +56945,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,1.94 +36064,100.0,10.0,8.0,10.0,10.0,10.0,10.0,2,1.33 +7843,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.22 +15491,,,,,,,,0, +37356,100.0,9.0,9.0,10.0,10.0,9.0,9.0,2,0.97 +10062,,,,,,,,0, +29767,,,,,,,,0, +51138,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.11 +76901,,,,,,,,0, +5669,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,3.67 +42858,80.0,8.0,8.0,8.0,8.0,10.0,8.0,1,0.75 +28704,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.05 +43092,,,,,,,,0, +15319,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,1.2 +37935,100.0,10.0,10.0,10.0,10.0,8.0,10.0,2,2.0 +30463,,,,,,,,0, +68145,,,,,,,,0, +42623,80.0,6.0,6.0,6.0,8.0,10.0,6.0,1,1.0 +11302,,,,,,,,0, +59083,,,,,,,,0, +46575,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,2.0 +75234,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +48724,,,,,,,,0, +14913,80.0,10.0,8.0,10.0,8.0,10.0,8.0,1,0.57 +4719,,,,,,,,0, +29466,97.0,10.0,9.0,10.0,10.0,9.0,9.0,7,3.82 +76834,,,,,,,,0, +42353,,,,,,,,0, +26274,93.0,10.0,10.0,9.0,9.0,9.0,9.0,18,9.15 +56631,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.09 +2298,,,,,,,,0, +37603,,,,,,,,0, +29932,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,5.0 +45000,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.43 +55849,,,,,,,,0, +58110,,,,,,,,0, +59089,,,,,,,,0, +56536,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.63 +72079,20.0,2.0,2.0,4.0,2.0,6.0,2.0,1,1.0 +9690,80.0,7.0,8.0,8.0,9.0,8.0,8.0,2,1.46 +66589,,,,,,,,0, +61984,,,,,,,,0, +451,,,,,,,,0, +35024,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,1.0 +13350,,,,,,,,0, +19371,,,,,,,,0, +44913,100.0,10.0,9.0,10.0,10.0,10.0,10.0,7,4.38 +55899,,,,,,,,2,1.05 +30326,,,,,,,,0, +66396,,,,,,,,0, +18951,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.5 +47866,,,,,,,,0, +57129,,,,,,,,0, +56017,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,1.58 +59929,,,,,,,,0, +40968,20.0,2.0,2.0,2.0,2.0,2.0,2.0,2,1.43 +55794,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +2215,100.0,9.0,9.0,10.0,10.0,10.0,10.0,2,2.0 +58979,,,,,,,,0, +12169,91.0,10.0,9.0,10.0,10.0,9.0,9.0,7,4.47 +55810,,,,,,,,1, +55392,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.59 +57472,95.0,10.0,10.0,10.0,10.0,9.0,10.0,4,2.14 +40439,100.0,9.0,10.0,9.0,10.0,10.0,9.0,7,4.2 +62719,93.0,10.0,10.0,10.0,10.0,10.0,10.0,9,6.92 +17260,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,7.06 +1666,76.0,7.0,9.0,8.0,7.0,7.0,6.0,5,3.13 +27100,80.0,8.0,7.0,8.0,9.0,9.0,8.0,6,3.6 +2490,88.0,9.0,9.0,9.0,9.0,10.0,9.0,17,10.0 +55031,67.0,9.0,7.0,9.0,8.0,9.0,8.0,3,1.64 +63314,60.0,7.0,4.0,7.0,8.0,7.0,6.0,5,3.66 +12872,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,3.56 +27563,,,,,,,,0, +11023,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,3.1 +25052,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +23516,,,,,,,,0, +18464,,,,,,,,1,1.0 +8893,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +68390,96.0,10.0,10.0,10.0,10.0,10.0,10.0,6,5.0 +16507,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,3.89 +1313,,,,,,,,0, +35143,98.0,10.0,10.0,10.0,10.0,9.0,10.0,8,4.36 +67813,,,,,,,,0, +48041,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,1.0 +5549,100.0,8.0,10.0,6.0,10.0,8.0,10.0,1,1.0 +50627,,,,,,,,0, +36091,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +42307,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,1.82 +3558,,,,,,,,1,1.0 +42464,100.0,10.0,9.0,10.0,10.0,10.0,10.0,4,2.45 +51578,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.55 +61314,,,,,,,,0, +41389,80.0,8.0,10.0,10.0,10.0,10.0,8.0,2,2.0 +23911,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.67 +32690,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.36 +13550,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +36334,100.0,10.0,9.0,10.0,9.0,10.0,9.0,3,2.2 +47477,,,,,,,,0, +5693,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.18 +10402,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.58 +24941,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.09 +2079,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +70550,97.0,10.0,10.0,10.0,10.0,10.0,10.0,7,3.89 +36122,,,,,,,,0, +65514,95.0,10.0,9.0,10.0,10.0,10.0,9.0,4,2.03 +52631,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.25 +46938,92.0,10.0,8.0,10.0,10.0,10.0,10.0,5,2.63 +35893,91.0,10.0,9.0,10.0,10.0,10.0,9.0,7,3.5 +17049,,,,,,,,1, +51719,,,,,,,,0, +27368,,,,,,,,0, +37496,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,5.0 +41141,,,,,,,,1,0.67 +13322,98.0,10.0,9.0,10.0,10.0,10.0,10.0,10,5.0 +59568,,,,,,,,0, +31304,,,,,,,,0, +65846,60.0,8.0,6.0,10.0,6.0,8.0,10.0,1,0.55 +21315,90.0,8.0,8.0,10.0,10.0,9.0,9.0,2,1.46 +19554,95.0,10.0,10.0,10.0,10.0,10.0,10.0,16,8.42 +38055,100.0,10.0,10.0,10.0,10.0,9.0,10.0,6,3.33 +53410,,,,,,,,0, +76928,80.0,10.0,10.0,10.0,10.0,8.0,8.0,1,1.0 +51583,90.0,10.0,10.0,10.0,9.0,10.0,9.0,2,1.54 +12220,83.0,9.0,10.0,10.0,9.0,9.0,9.0,7,3.75 +4311,100.0,10.0,10.0,10.0,10.0,8.0,10.0,5,4.41 +60071,,,,,,,,0, +48204,100.0,10.0,10.0,10.0,10.0,8.0,10.0,3,1.88 +53691,,,,,,,,0, +11372,,,,,,,,0, +46160,,,,,,,,0, +3020,,,,,,,,1,0.68 +4041,80.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.67 +6337,,,,,,,,0, +19443,100.0,10.0,10.0,10.0,10.0,9.0,9.0,2,1.33 +60175,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,2.0 +46854,100.0,9.0,9.0,10.0,10.0,9.0,9.0,3,2.2 +71509,91.0,9.0,9.0,10.0,10.0,10.0,9.0,15,7.63 +61064,,,,,,,,0, +61316,,,,,,,,0, +46853,100.0,10.0,10.0,10.0,10.0,9.0,10.0,13,8.67 +19047,100.0,10.0,10.0,10.0,9.0,9.0,10.0,5,3.66 +11634,,,,,,,,0, +38987,100.0,10.0,10.0,10.0,10.0,9.0,9.0,6,6.0 +10767,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,5.09 +70340,,,,,,,,0, +59229,100.0,8.0,9.0,10.0,9.0,10.0,9.0,2,2.0 +73155,75.0,8.0,8.0,7.0,7.0,9.0,7.0,4,4.0 +393,95.0,10.0,9.0,10.0,10.0,10.0,10.0,8,5.0 +27647,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.09 +28514,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,6.59 +74059,100.0,10.0,9.0,10.0,10.0,10.0,9.0,3,1.61 +26781,,,,,,,,0, +36306,95.0,10.0,10.0,10.0,10.0,10.0,9.0,4,3.16 +26321,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +4536,90.0,10.0,10.0,10.0,10.0,9.0,9.0,2,2.0 +73768,,,,,,,,0, +16434,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,2.37 +65363,92.0,10.0,9.0,10.0,10.0,10.0,10.0,5,4.41 +66910,,,,,,,,0, +71893,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,1.0 +38937,,,,,,,,0, +34571,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,2.0 +43852,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,1.91 +72644,,,,,,,,0, +62356,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,5.4 +15852,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,1.55 +14902,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.3 +13863,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.88 +6286,87.0,8.0,9.0,10.0,10.0,8.0,9.0,3,2.05 +49238,94.0,9.0,9.0,9.0,9.0,9.0,9.0,7,3.89 +66649,,,,,,,,0, +1413,,,,,,,,0, +61793,,,,,,,,0, +27175,96.0,10.0,9.0,10.0,10.0,9.0,9.0,5,3.13 +34150,100.0,8.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +3288,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +11020,100.0,9.0,10.0,9.0,10.0,10.0,10.0,2,2.0 +48494,93.0,10.0,10.0,9.0,10.0,10.0,9.0,3,3.0 +16614,,,,,,,,0, +11758,,,,,,,,0, +73519,,,,,,,,0, +46742,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,0.98 +76619,,,,,,,,0, +48821,,,,,,,,0, +24515,100.0,10.0,10.0,10.0,9.0,10.0,9.0,2,2.0 +28096,100.0,8.0,10.0,8.0,10.0,10.0,10.0,1,0.88 +58368,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,2.09 +66395,100.0,10.0,10.0,9.0,10.0,10.0,9.0,3,2.09 +15073,,,,,,,,0, +52227,,,,,,,,0, +57856,,,,,,,,0, +69368,100.0,10.0,9.0,10.0,10.0,10.0,10.0,6,6.0 +55374,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,2.22 +74267,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.53 +70153,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.53 +27582,85.0,8.0,9.0,10.0,10.0,10.0,8.0,4,2.11 +9920,,,,,,,,0, +6365,,,,,,,,0, +37868,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.02 +27816,,,,,,,,0, +68,,,,,,,,0, +73745,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,4.17 +68868,,,,,,,,0, +5086,,,,,,,,0, +776,88.0,10.0,9.0,10.0,10.0,9.0,9.0,12,6.1 +75212,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.53 +6576,,,,,,,,0, +76967,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,2.05 +61688,,,,,,,,0, +16052,93.0,10.0,10.0,10.0,9.0,10.0,10.0,11,6.73 +8534,100.0,10.0,10.0,10.0,10.0,9.0,9.0,4,2.86 +2031,80.0,10.0,6.0,10.0,10.0,10.0,9.0,2,1.71 +66877,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,3.0 +42306,68.0,8.0,8.0,10.0,9.0,10.0,8.0,5,3.75 +38072,,,,,,,,1,0.58 +43663,82.0,9.0,8.0,9.0,10.0,9.0,8.0,11,6.0 +13745,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,2.18 +10054,,,,,,,,0, +74682,69.0,7.0,8.0,8.0,8.0,7.0,7.0,11,5.79 +1186,97.0,10.0,10.0,10.0,10.0,9.0,9.0,18,9.64 +76962,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,2.45 +52928,,,,,,,,0, +17624,,,,,,,,0, +54863,,,,,,,,0, +72411,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,2.35 +10163,,,,,,,,2,1.22 +30921,80.0,8.0,8.0,9.0,8.0,8.0,7.0,3,1.96 +52936,,,,,,,,0, +53852,,,,,,,,0, +58004,,,,,,,,0, +11262,100.0,10.0,9.0,9.0,10.0,10.0,9.0,3,1.67 +25551,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,4.0 +69995,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.53 +38897,,,,,,,,0, +50639,,,,,,,,0, +10312,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,5.11 +1684,85.0,9.0,8.0,9.0,10.0,10.0,9.0,8,7.06 +67592,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.65 +23226,97.0,10.0,9.0,9.0,9.0,10.0,10.0,7,3.68 +41927,,,,,,,,0, +57540,,,,,,,,0, +13903,92.0,10.0,9.0,10.0,10.0,8.0,10.0,5,5.0 +23928,,,,,,,,0, +43508,,,,,,,,0, +42205,86.0,9.0,10.0,9.0,9.0,8.0,8.0,7,3.75 +24970,,,,,,,,0, +5942,,,,,,,,0, +19190,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,4.0 +41490,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,3.53 +45790,,,,,,,,0, +7498,,,,,,,,0, +60641,83.0,9.0,10.0,10.0,9.0,10.0,9.0,8,4.21 +18029,90.0,9.0,8.0,9.0,9.0,8.0,9.0,2,1.28 +59902,,,,,,,,0, +73029,,,,,,,,1,1.0 +6087,90.0,8.0,10.0,9.0,10.0,9.0,7.0,2,1.28 +24217,,,,,,,,0, +31720,,,,,,,,0, +9068,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.88 +50705,,,,,,,,0, +35327,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,3.53 +73727,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +6823,93.0,9.0,10.0,10.0,10.0,9.0,9.0,9,5.19 +32767,100.0,8.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +71144,,,,,,,,0, +7413,47.0,3.0,6.0,7.0,7.0,7.0,5.0,3,1.96 +76498,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +28631,,,,,,,,0, +31440,,,,,,,,0, +71744,,,,,,,,0, +47698,,,,,,,,0, +31788,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,3.83 +76892,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.36 +3255,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +21719,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,1.0 +68701,,,,,,,,0, +16162,,,,,,,,0, +58767,,,,,,,,0, +14800,20.0,6.0,8.0,2.0,6.0,8.0,2.0,1,1.0 +35103,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.65 +38483,,,,,,,,0, +15920,,,,,,,,0, +18826,,,,,,,,0, +70427,,,,,,,,0, +51301,,,,,,,,0, +76475,,,,,,,,0, +30048,83.0,9.0,10.0,9.0,9.0,9.0,9.0,6,4.0 +50796,,,,,,,,0, +62908,,,,,,,,0, +22738,80.0,10.0,10.0,10.0,10.0,8.0,10.0,1,1.0 +76071,100.0,9.0,10.0,10.0,10.0,9.0,10.0,2,2.0 +59757,91.0,9.0,9.0,9.0,10.0,10.0,9.0,7,3.82 +7050,90.0,10.0,10.0,10.0,10.0,8.0,9.0,2,1.67 +54078,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.94 +50151,97.0,10.0,9.0,10.0,10.0,8.0,10.0,6,4.19 +50727,94.0,10.0,10.0,10.0,10.0,10.0,10.0,7,5.83 +49470,,,,,,,,0, +26396,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,2.5 +76555,75.0,9.0,10.0,10.0,10.0,10.0,9.0,4,2.73 +33378,100.0,10.0,8.0,10.0,10.0,10.0,4.0,1,1.0 +49020,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.76 +8853,70.0,10.0,10.0,8.0,8.0,7.0,7.0,2,1.11 +11098,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,4.0 +75505,,,,,,,,0, +24781,,,,,,,,0, +20408,80.0,8.0,8.0,8.0,10.0,8.0,8.0,3,1.91 +47664,73.0,7.0,7.0,9.0,10.0,10.0,8.0,3,1.8 +28564,90.0,9.0,10.0,9.0,9.0,10.0,9.0,8,5.0 +24839,73.0,10.0,8.0,10.0,10.0,9.0,9.0,5,2.54 +29067,70.0,6.0,6.0,6.0,6.0,6.0,6.0,3,1.84 +58975,,,,,,,,0, +52852,91.0,9.0,9.0,10.0,10.0,10.0,9.0,7,3.89 +32262,98.0,10.0,10.0,10.0,10.0,10.0,10.0,10,5.88 +64331,,,,,,,,0, +22285,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +49554,,,,,,,,0, +66768,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,1.0 +68470,80.0,9.0,8.0,10.0,10.0,10.0,8.0,2,1.36 +66723,,,,,,,,0, +37006,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.25 +58411,90.0,10.0,10.0,10.0,10.0,10.0,8.0,3,2.57 +37429,96.0,10.0,10.0,9.0,10.0,10.0,10.0,9,4.82 +64139,,,,,,,,0, +22873,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,2.0 +27509,,,,,,,,0, +55343,80.0,9.0,8.0,10.0,10.0,10.0,8.0,2,1.13 +36052,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,2.0 +32089,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +5745,,,,,,,,0, +67914,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.43 +20800,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,2.5 +37516,,,,,,,,0, +76696,,,,,,,,0, +60955,40.0,2.0,6.0,2.0,8.0,8.0,4.0,1,1.0 +53727,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,3.19 +30605,96.0,10.0,10.0,10.0,10.0,10.0,9.0,10,5.45 +61632,,,,,,,,0, +24285,100.0,10.0,10.0,10.0,10.0,10.0,8.0,2,2.0 +7943,100.0,10.0,10.0,10.0,10.0,6.0,10.0,1,1.0 +65294,83.0,9.0,9.0,9.0,9.0,8.0,9.0,8,4.8 +31163,93.0,10.0,10.0,10.0,10.0,10.0,9.0,3,1.73 +32174,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +11314,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.75 +8198,70.0,7.0,7.0,9.0,9.0,10.0,6.0,2,1.67 +67082,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.79 +28745,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.56 +13266,100.0,9.0,10.0,10.0,10.0,10.0,10.0,3,1.64 +49897,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,4.0 +15360,90.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.3 +39261,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,4.38 +43979,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +22997,95.0,10.0,10.0,10.0,10.0,9.0,9.0,4,2.5 +62385,100.0,8.0,10.0,10.0,10.0,8.0,8.0,1,0.63 +70228,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +52320,,,,,,,,0, +51672,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.55 +34083,96.0,10.0,9.0,10.0,10.0,10.0,10.0,5,2.73 +65057,60.0,8.0,8.0,10.0,10.0,6.0,4.0,1,1.0 +19806,60.0,5.0,5.0,5.0,5.0,7.0,5.0,5,2.54 +34888,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.5 +75893,93.0,10.0,7.0,10.0,10.0,9.0,9.0,4,2.18 +48022,,,,,,,,0, +28879,97.0,10.0,9.0,10.0,10.0,10.0,10.0,6,3.75 +60228,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.64 +65583,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,4.0 +48184,95.0,10.0,10.0,9.0,10.0,10.0,10.0,4,2.55 +15198,83.0,9.0,9.0,8.0,9.0,9.0,8.0,7,4.12 +45936,97.0,10.0,10.0,9.0,10.0,10.0,10.0,6,4.5 +42290,,,,,,,,0, +69378,,,,,,,,0, +3081,40.0,4.0,10.0,6.0,8.0,10.0,4.0,1,1.0 +14057,91.0,9.0,9.0,9.0,10.0,9.0,9.0,14,7.37 +74002,,,,,,,,0, +12530,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,5.12 +41036,,,,,,,,0, +12732,,,,,,,,0, +36985,,,,,,,,0, +39712,100.0,9.0,8.0,10.0,10.0,10.0,8.0,2,1.46 +29239,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.88 +38351,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.84 +31190,100.0,10.0,10.0,10.0,10.0,6.0,8.0,1,0.68 +72296,87.0,9.0,9.0,10.0,9.0,8.0,10.0,3,1.58 +25991,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +24861,,,,,,,,0, +35552,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,2.79 +48211,,,,,,,,0, +52628,,,,,,,,0, +39014,,,,,,,,0, +9088,80.0,10.0,10.0,10.0,10.0,10.0,6.0,1,0.73 +15274,,,,,,,,0, +62136,90.0,10.0,9.0,9.0,8.0,9.0,8.0,2,2.0 +7698,76.0,9.0,8.0,9.0,9.0,9.0,8.0,5,3.95 +71553,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,3.66 +25513,85.0,10.0,8.0,7.0,10.0,10.0,8.0,4,4.0 +68500,,,,,,,,0, +23373,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +40763,97.0,10.0,10.0,10.0,10.0,9.0,10.0,6,3.75 +70136,,,,,,,,0, +45996,80.0,9.0,7.0,10.0,10.0,10.0,9.0,3,1.53 +25005,,,,,,,,0, +28483,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +17811,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,2.78 +4477,,,,,,,,0, +4483,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +47813,,,,,,,,0, +61820,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.91 +34278,,,,,,,,0, +64235,20.0,2.0,2.0,4.0,2.0,6.0,2.0,1,0.91 +76357,,,,,,,,0, +52186,,,,,,,,0, +73865,,,,,,,,0, +77006,,,,,,,,0, +64996,,,,,,,,0, +4599,100.0,10.0,9.0,10.0,10.0,9.0,10.0,2,1.46 +65723,,,,,,,,0, +57787,92.0,10.0,10.0,10.0,10.0,9.0,9.0,5,3.33 +71709,,,,,,,,0, +54122,100.0,10.0,10.0,10.0,9.0,10.0,10.0,3,2.14 +56905,100.0,10.0,9.0,10.0,10.0,9.0,10.0,3,2.31 +7601,,,,,,,,0, +64098,90.0,9.0,9.0,10.0,10.0,8.0,9.0,2,2.0 +20786,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,1.0 +8528,87.0,9.0,10.0,9.0,8.0,7.0,9.0,3,1.76 +40058,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,1.67 +51498,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,2.0 +8277,90.0,10.0,10.0,8.0,10.0,10.0,10.0,2,2.0 +75459,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +12534,100.0,10.0,9.0,9.0,10.0,10.0,10.0,2,2.0 +52842,97.0,10.0,10.0,10.0,10.0,10.0,10.0,8,5.71 +35151,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,6.67 +62817,100.0,10.0,10.0,8.0,10.0,10.0,10.0,1,1.0 +62045,,,,,,,,0, +45455,,,,,,,,0, +43564,,,,,,,,0, +74307,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +23084,,,,,,,,0, +72646,,,,,,,,0, +37794,,,,,,,,0, +40862,70.0,8.0,6.0,9.0,10.0,7.0,7.0,2,2.0 +65332,,,,,,,,0, +33582,90.0,10.0,8.0,10.0,10.0,10.0,9.0,2,1.28 +29984,,,,,,,,0, +65508,98.0,10.0,10.0,10.0,10.0,10.0,10.0,17,9.27 +31776,80.0,8.0,6.0,10.0,10.0,10.0,8.0,1,1.0 +17059,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,2.73 +74054,,,,,,,,1,0.65 +13784,73.0,8.0,8.0,7.0,9.0,10.0,8.0,5,2.54 +31381,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.87 +22267,93.0,9.0,9.0,9.0,10.0,9.0,9.0,8,4.62 +17026,96.0,10.0,10.0,10.0,10.0,10.0,10.0,10,5.56 +66261,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,2.22 +41771,,,,,,,,0, +73859,96.0,10.0,10.0,10.0,9.0,9.0,9.0,10,8.57 +74713,,,,,,,,0, +6691,,,,,,,,0, +49490,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,5.63 +27807,93.0,10.0,9.0,10.0,10.0,9.0,9.0,3,1.76 +56737,,,,,,,,0, +69772,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +10569,97.0,10.0,10.0,10.0,10.0,10.0,9.0,12,8.37 +31348,,,,,,,,0, +15359,,,,,,,,0, +34995,,,,,,,,0, +58728,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,2.78 +6708,,,,,,,,1,0.67 +19262,100.0,10.0,10.0,9.0,10.0,10.0,10.0,2,1.54 +45905,80.0,8.0,8.0,8.0,9.0,8.0,8.0,6,3.83 +11489,,,,,,,,0, +60061,,,,,,,,0, +58469,,,,,,,,0, +37326,,,,,,,,0, +21248,,,,,,,,0, +25375,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.28 +25593,80.0,10.0,8.0,8.0,10.0,6.0,8.0,1,1.0 +49581,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,3.33 +62953,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,6.0 +35983,100.0,10.0,10.0,8.0,10.0,10.0,10.0,1,1.0 +1842,95.0,10.0,9.0,10.0,10.0,10.0,10.0,4,2.55 +34143,,,,,,,,0, +53030,,,,,,,,1,1.0 +34426,95.0,10.0,10.0,10.0,10.0,9.0,10.0,8,5.22 +28763,80.0,8.0,8.0,8.0,8.0,8.0,8.0,1,1.0 +14547,90.0,10.0,10.0,10.0,10.0,10.0,10.0,4,3.08 +18335,,,,,,,,0, +70115,,,,,,,,0, +58731,100.0,10.0,9.0,9.0,10.0,9.0,9.0,3,2.65 +58414,96.0,10.0,8.0,10.0,10.0,9.0,10.0,5,3.66 +74798,80.0,7.0,7.0,10.0,10.0,10.0,7.0,2,1.71 +2443,,,,,,,,1, +36959,90.0,10.0,9.0,10.0,10.0,10.0,9.0,2,1.4 +28442,60.0,8.0,7.0,6.0,8.0,9.0,6.0,2,2.0 +44753,,,,,,,,0, +67244,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,2.0 +77016,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,3.83 +72330,,,,,,,,1,0.54 +63352,87.0,9.0,8.0,9.0,10.0,8.0,7.0,3,1.61 +14175,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,4.0 +49036,,,,,,,,0, +2594,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,1.46 +55835,,,,,,,,0, +14246,,,,,,,,0, +61773,,,,,,,,0, +9065,,,,,,,,0, +14204,,,,,,,,0, +65018,,,,,,,,0, +31697,,,,,,,,0, +35437,,,,,,,,0, +43729,,,,,,,,0, +9684,,,,,,,,0, +63822,93.0,10.0,10.0,10.0,10.0,10.0,9.0,6,3.27 +31038,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.71 +23331,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.75 +75563,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,3.43 +62710,,,,,,,,0, +44526,,,,,,,,0, +27554,92.0,10.0,9.0,10.0,9.0,10.0,10.0,5,3.75 +70313,,,,,,,,0, +61044,,,,,,,,0, +51006,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.46 +27121,100.0,9.0,9.0,10.0,10.0,9.0,10.0,3,1.67 +20872,90.0,8.0,10.0,6.0,8.0,8.0,10.0,4,3.43 +38823,,,,,,,,0, +18779,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,6.15 +75631,,,,,,,,0, +8803,90.0,9.0,10.0,10.0,10.0,9.0,9.0,2,1.4 +74896,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.11 +43877,,,,,,,,0, +25518,,,,,,,,0, +56102,60.0,6.0,6.0,8.0,10.0,8.0,6.0,1,1.0 +10756,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +57545,,,,,,,,0, +19669,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.71 +40597,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +39751,100.0,10.0,10.0,10.0,10.0,9.0,9.0,2,1.46 +25452,100.0,10.0,10.0,8.0,9.0,9.0,9.0,3,3.0 +45946,,,,,,,,0, +63259,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.11 +26160,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,3.0 +7135,,,,,,,,0, +41237,,,,,,,,0, +36289,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,4.29 +44501,90.0,7.0,10.0,10.0,10.0,10.0,10.0,2,1.46 +42769,,,,,,,,0, +64351,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.55 +72061,73.0,8.0,9.0,7.0,8.0,9.0,7.0,3,3.0 +10792,,,,,,,,0, +63087,,,,,,,,0, +33486,76.0,9.0,8.0,9.0,9.0,9.0,9.0,10,5.88 +13279,,,,,,,,0, +50605,,,,,,,,0, +41809,80.0,6.0,8.0,4.0,10.0,10.0,10.0,1,1.0 +2429,100.0,10.0,10.0,10.0,6.0,10.0,10.0,1,1.0 +63051,,,,,,,,0, +42327,,,,,,,,0, +2706,100.0,10.0,10.0,10.0,6.0,10.0,10.0,1,0.67 +42622,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.57 +7197,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.57 +38256,88.0,10.0,9.0,10.0,9.0,10.0,9.0,8,4.71 +47504,90.0,10.0,10.0,7.0,10.0,10.0,9.0,4,2.67 +72224,87.0,9.0,10.0,10.0,10.0,9.0,9.0,6,3.6 +24230,,,,,,,,0, +67671,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,4.57 +76372,,,,,,,,0, +58054,,,,,,,,1,0.6 +72054,,,,,,,,0, +57020,93.0,10.0,9.0,10.0,10.0,8.0,9.0,3,2.57 +53722,,,,,,,,1, +49944,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +20079,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +43361,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +28338,50.0,5.0,5.0,5.0,5.0,6.0,6.0,2,1.46 +57009,,,,,,,,0, +14055,96.0,10.0,9.0,10.0,9.0,10.0,10.0,17,8.95 +32222,,,,,,,,1,0.83 +73406,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,1.0 +65529,90.0,10.0,9.0,10.0,10.0,10.0,10.0,4,2.18 +47480,,,,,,,,0, +2369,100.0,10.0,10.0,10.0,10.0,10.0,9.0,5,2.88 +41109,,,,,,,,0, +58402,98.0,10.0,10.0,10.0,10.0,9.0,10.0,9,5.0 +59825,100.0,10.0,8.0,10.0,10.0,8.0,8.0,1,0.63 +63188,,,,,,,,0, +11627,,,,,,,,0, +42227,,,,,,,,0, +63408,95.0,9.0,9.0,10.0,10.0,9.0,10.0,11,6.88 +29003,,,,,,,,0, +8090,80.0,2.0,6.0,10.0,10.0,10.0,10.0,1,1.0 +25730,,,,,,,,0, +35450,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,2.73 +59596,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +44969,,,,,,,,0, +11963,,,,,,,,0, +4172,,,,,,,,0, +45466,,,,,,,,0, +59609,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +15911,,,,,,,,0, +17821,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.43 +40689,70.0,10.0,8.0,8.0,9.0,10.0,10.0,5,3.95 +49364,,,,,,,,0, +50196,,,,,,,,0, +70520,95.0,9.0,10.0,10.0,9.0,10.0,10.0,4,4.0 +34244,100.0,10.0,9.0,10.0,10.0,10.0,10.0,4,2.55 +17755,,,,,,,,0, +23015,75.0,9.0,8.0,10.0,10.0,10.0,7.0,4,3.08 +22922,,,,,,,,0, +38592,,,,,,,,0, +68959,,,,,,,,0, +40993,100.0,9.0,10.0,10.0,10.0,10.0,10.0,3,2.5 +51911,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +27920,,,,,,,,0, +69139,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,1.88 +32649,,,,,,,,0, +41076,100.0,10.0,10.0,8.0,10.0,10.0,8.0,1,0.81 +11989,100.0,10.0,8.0,8.0,10.0,10.0,10.0,1,1.0 +16234,100.0,10.0,10.0,10.0,9.0,10.0,10.0,2,1.33 +34961,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.75 +17176,,,,,,,,0, +21007,,,,,,,,0, +43191,,,,,,,,0, +49820,,,,,,,,0, +27022,60.0,6.0,6.0,6.0,7.0,7.0,5.0,2,1.76 +36898,,,,,,,,1,1.0 +52104,100.0,10.0,9.0,10.0,10.0,9.0,10.0,4,3.43 +29856,100.0,8.0,10.0,8.0,10.0,8.0,8.0,1,0.79 +70012,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,2.78 +27546,85.0,10.0,10.0,10.0,10.0,10.0,9.0,4,3.0 +54368,,,,,,,,0, +1450,,,,,,,,0, +62128,,,,,,,,0, +24898,,,,,,,,0, +60946,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +44091,94.0,10.0,9.0,10.0,10.0,10.0,9.0,10,5.56 +33328,,,,,,,,0, +8149,,,,,,,,0, +50862,89.0,10.0,10.0,10.0,10.0,10.0,9.0,7,4.29 +26813,80.0,10.0,4.0,6.0,10.0,8.0,6.0,1,1.0 +11637,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,3.08 +19332,,,,,,,,0, +16679,93.0,10.0,10.0,10.0,10.0,8.0,9.0,3,2.31 +43744,80.0,10.0,10.0,10.0,10.0,10.0,8.0,1,1.0 +75925,85.0,9.0,10.0,10.0,10.0,9.0,9.0,4,4.0 +65969,100.0,10.0,6.0,10.0,10.0,10.0,10.0,1,1.0 +27060,,,,,,,,0, +70483,,,,,,,,0, +63113,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,3.13 +58307,60.0,10.0,10.0,10.0,10.0,4.0,6.0,1,1.0 +12297,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +10475,,,,,,,,0, +63894,67.0,9.0,8.0,10.0,9.0,9.0,8.0,3,1.64 +53992,90.0,9.0,7.0,10.0,10.0,10.0,8.0,2,1.76 +57528,,,,,,,,0, +38107,95.0,9.0,9.0,9.0,10.0,10.0,10.0,4,2.73 +33342,87.0,9.0,8.0,9.0,10.0,10.0,8.0,3,2.43 +64014,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.09 +51756,80.0,9.0,7.0,10.0,9.0,8.0,8.0,3,1.96 +22781,80.0,10.0,6.0,10.0,10.0,10.0,8.0,1,1.0 +34098,60.0,7.0,7.0,9.0,10.0,7.0,7.0,3,1.91 +40693,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.75 +65744,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,2.43 +53040,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.88 +68395,,,,,,,,0, +17328,100.0,8.0,10.0,10.0,10.0,9.0,10.0,2,1.4 +61053,,,,,,,,0, +66137,,,,,,,,1,1.0 +12187,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +153,60.0,10.0,10.0,10.0,10.0,8.0,6.0,1,1.0 +3953,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,5.29 +63638,,,,,,,,0, +36075,,,,,,,,0, +5878,,,,,,,,0, +9830,,,,,,,,0, +19619,,,,,,,,0, +30820,92.0,10.0,9.0,10.0,10.0,10.0,9.0,5,2.83 +15013,80.0,10.0,9.0,10.0,8.0,9.0,8.0,2,1.15 +56031,93.0,10.0,10.0,10.0,10.0,9.0,9.0,3,2.73 +16149,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.75 +7569,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,5.11 +15586,100.0,10.0,10.0,10.0,10.0,10.0,9.0,4,2.18 +5028,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,1.0 +17531,,,,,,,,0, +17904,,,,,,,,0, +74058,,,,,,,,1,1.0 +11088,,,,,,,,0, +70782,94.0,10.0,10.0,10.0,10.0,10.0,10.0,7,4.38 +3526,93.0,9.0,9.0,10.0,10.0,10.0,9.0,8,4.53 +47457,,,,,,,,0, +63877,,,,,,,,0, +7503,85.0,9.0,8.0,10.0,10.0,10.0,8.0,8,4.36 +64001,74.0,8.0,9.0,9.0,10.0,10.0,8.0,10,6.12 +24194,,,,,,,,0, +26987,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,4.55 +62337,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.22 +9540,,,,,,,,0, +25211,70.0,6.0,8.0,8.0,7.0,8.0,7.0,3,1.76 +25312,,,,,,,,0, +44374,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,1.0 +60014,,,,,,,,0, +76633,,,,,,,,0, +6032,95.0,10.0,10.0,10.0,10.0,10.0,9.0,8,5.45 +76583,100.0,10.0,10.0,10.0,10.0,10.0,8.0,2,1.43 +61320,,,,,,,,0, +54644,,,,,,,,0, +39815,,,,,,,,0, +15060,90.0,10.0,9.0,10.0,10.0,10.0,8.0,3,2.0 +43403,,,,,,,,0, +14071,100.0,9.0,10.0,8.0,10.0,9.0,9.0,3,2.14 +51365,73.0,7.0,8.0,8.0,9.0,9.0,9.0,3,2.31 +23323,,,,,,,,1,1.0 +39771,,,,,,,,0, +31410,90.0,8.0,10.0,9.0,10.0,10.0,10.0,4,2.86 +19721,84.0,10.0,8.0,10.0,10.0,9.0,8.0,5,3.66 +56724,87.0,10.0,9.0,10.0,10.0,9.0,10.0,6,3.4 +41562,,,,,,,,0, +4370,,,,,,,,0, +44451,,,,,,,,0, +56921,80.0,10.0,7.0,9.0,8.0,10.0,8.0,3,2.25 +1941,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,1.0 +24768,,,,,,,,0, +10723,,,,,,,,1,1.0 +62470,,,,,,,,1, +20237,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,2.09 +72281,,,,,,,,0, +45796,,,,,,,,0, +58058,,,,,,,,0, +48347,,,,,,,,0, +47977,,,,,,,,0, +68697,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.81 +24240,,,,,,,,0, +70202,77.0,8.0,9.0,10.0,10.0,9.0,8.0,6,3.33 +35310,,,,,,,,0, +47168,,,,,,,,2,1.71 +30520,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,4.0 +53869,,,,,,,,0, +54777,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.55 +15410,80.0,8.0,10.0,10.0,9.0,10.0,7.0,3,1.88 +17028,,,,,,,,0, +52546,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +34455,93.0,9.0,9.0,9.0,10.0,9.0,9.0,6,3.83 +32162,90.0,9.0,10.0,10.0,9.0,10.0,10.0,8,8.0 +50623,,,,,,,,0, +33380,,,,,,,,0, +75125,100.0,10.0,10.0,9.0,10.0,10.0,10.0,7,4.38 +61868,,,,,,,,0, +203,,,,,,,,0, +74210,90.0,10.0,9.0,9.0,10.0,9.0,9.0,2,1.71 +6248,95.0,10.0,9.0,10.0,10.0,10.0,10.0,4,3.08 +20789,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.22 +8554,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,2.2 +39717,,,,,,,,0, +443,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,5.14 +52233,80.0,7.0,6.0,10.0,10.0,10.0,8.0,2,1.46 +59766,88.0,10.0,9.0,10.0,10.0,9.0,9.0,5,4.69 +31644,100.0,10.0,10.0,9.0,10.0,10.0,10.0,5,3.49 +75823,,,,,,,,0, +20446,100.0,10.0,10.0,10.0,10.0,10.0,10.0,14,9.13 +61059,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,2.09 +1839,88.0,10.0,9.0,10.0,10.0,10.0,10.0,5,5.0 +5069,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,5.66 +17704,,,,,,,,0, +75076,95.0,10.0,10.0,9.0,10.0,10.0,10.0,4,2.79 +73349,90.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.67 +25151,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,5.0 +10481,100.0,9.0,10.0,9.0,10.0,10.0,10.0,3,3.0 +60573,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +35520,,,,,,,,0, +52271,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.56 +14507,,,,,,,,0, +47520,96.0,10.0,9.0,10.0,10.0,10.0,10.0,10,6.82 +1367,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,3.75 +49297,,,,,,,,0, +39096,93.0,9.0,10.0,10.0,10.0,9.0,10.0,3,2.2 +43810,,,,,,,,0, +45575,80.0,10.0,10.0,10.0,10.0,4.0,8.0,1,1.0 +64015,,,,,,,,0, +74993,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.7 +63930,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.68 +75814,,,,,,,,1,1.0 +61889,90.0,10.0,9.0,10.0,10.0,10.0,9.0,2,1.18 +34254,93.0,9.0,9.0,10.0,10.0,10.0,9.0,6,6.0 +8208,,,,,,,,0, +11698,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,4.05 +61687,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,8.86 +62662,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,5.22 +35510,,,,,,,,1,0.67 +17324,,,,,,,,0, +54635,100.0,10.0,10.0,10.0,8.0,10.0,10.0,1,1.0 +5896,,,,,,,,0, +26303,,,,,,,,0, +211,93.0,10.0,9.0,10.0,10.0,9.0,9.0,6,4.74 +15742,80.0,6.0,6.0,8.0,8.0,8.0,6.0,1,1.0 +5430,,,,,,,,0, +44727,,,,,,,,0, +76090,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +11676,,,,,,,,0, +2306,85.0,9.0,9.0,9.0,10.0,10.0,9.0,4,2.67 +28939,,,,,,,,0, +37983,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,5.0 +70957,,,,,,,,0, +47594,,,,,,,,0, +71152,,,,,,,,0, +63982,,,,,,,,0, +12075,,,,,,,,0, +30125,,,,,,,,0, +41428,60.0,6.0,5.0,9.0,9.0,8.0,5.0,2,1.46 +24552,,,,,,,,1,0.59 +44988,100.0,10.0,10.0,10.0,10.0,10.0,10.0,13,8.13 +4174,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,3.08 +219,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,2.61 +25377,93.0,9.0,9.0,10.0,10.0,10.0,9.0,6,3.75 +41119,,,,,,,,0, +2207,,,,,,,,0, +43878,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,1.0 +13757,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +70943,,,,,,,,0, +32119,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,2.93 +57646,80.0,9.0,8.0,8.0,8.0,10.0,10.0,4,2.86 +40367,,,,,,,,0, +7849,72.0,8.0,6.0,10.0,10.0,10.0,8.0,5,3.85 +70312,83.0,9.0,9.0,10.0,10.0,9.0,8.0,6,3.91 +36389,100.0,10.0,9.0,10.0,9.0,10.0,10.0,2,1.5 +9179,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.88 +36041,,,,,,,,0, +33316,100.0,10.0,10.0,9.0,9.0,10.0,10.0,3,2.2 +7913,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.33 +65741,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +12489,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.68 +51116,,,,,,,,0, +14870,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,2.0 +46792,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +31215,90.0,10.0,6.0,10.0,9.0,9.0,9.0,2,2.0 +7078,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,2.05 +66153,,,,,,,,0, +17016,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.36 +65353,97.0,10.0,10.0,10.0,10.0,10.0,9.0,7,4.12 +33321,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.22 +27688,84.0,9.0,10.0,10.0,9.0,9.0,9.0,11,6.23 +69694,90.0,10.0,9.0,9.0,7.0,9.0,9.0,2,1.33 +21998,,,,,,,,0, +19225,100.0,10.0,10.0,10.0,10.0,9.0,10.0,13,8.13 +44274,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,2.31 +44313,,,,,,,,0, +55401,93.0,9.0,9.0,10.0,10.0,9.0,9.0,3,2.57 +50856,,,,,,,,0, +41983,100.0,10.0,10.0,10.0,9.0,8.0,10.0,2,2.0 +7373,,,,,,,,0, +12685,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,2.93 +63879,47.0,5.0,3.0,7.0,5.0,8.0,5.0,3,2.09 +55864,100.0,10.0,9.0,10.0,10.0,9.0,10.0,2,2.0 +73674,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,6.0 +64309,,,,,,,,0, +57769,100.0,10.0,10.0,10.0,10.0,9.0,10.0,6,3.46 +3593,100.0,8.0,10.0,10.0,10.0,10.0,8.0,1,1.0 +57396,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +73500,80.0,8.0,6.0,10.0,6.0,8.0,8.0,1,1.0 +28476,95.0,10.0,9.0,10.0,10.0,10.0,10.0,8,6.32 +34305,95.0,10.0,10.0,10.0,10.0,9.0,10.0,4,2.93 +74256,100.0,10.0,10.0,10.0,10.0,9.0,9.0,2,1.76 +54372,,,,,,,,0, +34193,,,,,,,,0, +71890,,,,,,,,0, +69561,,,,,,,,0, +27355,,,,,,,,0, +9109,100.0,10.0,8.0,10.0,10.0,8.0,10.0,1,0.86 +46051,,,,,,,,0, +21571,80.0,8.0,8.0,8.0,8.0,8.0,8.0,1,0.67 +14644,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,2.05 +33748,100.0,8.0,8.0,8.0,10.0,10.0,8.0,1,0.75 +44573,,,,,,,,0, +10746,,,,,,,,0, +4954,88.0,10.0,9.0,10.0,10.0,10.0,10.0,5,2.88 +17554,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.86 +11139,100.0,10.0,8.0,10.0,10.0,10.0,9.0,3,3.0 +73423,,,,,,,,0, +69721,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,2.65 +39348,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +72173,,,,,,,,0, +52583,80.0,10.0,8.0,5.0,10.0,8.0,10.0,2,2.0 +5393,87.0,10.0,9.0,9.0,9.0,9.0,10.0,3,2.2 +3671,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.65 +44298,,,,,,,,0, +49174,,,,,,,,0, +15841,,,,,,,,0, +35594,,,,,,,,0, +45896,,,,,,,,0, +43781,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +17773,70.0,6.0,7.0,7.0,7.0,9.0,7.0,2,2.0 +16761,80.0,10.0,10.0,8.0,10.0,10.0,10.0,1,1.0 +65072,100.0,10.0,10.0,10.0,8.0,10.0,9.0,2,2.0 +36520,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,1.0 +23798,85.0,9.0,9.0,9.0,9.0,10.0,10.0,4,2.79 +5399,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,2.65 +71459,,,,,,,,0, +64067,95.0,10.0,10.0,10.0,10.0,10.0,10.0,8,5.85 +69030,80.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.79 +27289,,,,,,,,0, +44397,,,,,,,,0, +51249,,,,,,,,0, +65172,95.0,10.0,10.0,10.0,10.0,9.0,9.0,4,2.5 +76650,,,,,,,,0, +73645,100.0,8.0,10.0,8.0,6.0,10.0,10.0,1,0.83 +76890,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.73 +26988,,,,,,,,0, +25054,100.0,10.0,9.0,10.0,10.0,10.0,10.0,6,4.39 +57049,80.0,10.0,8.0,10.0,10.0,10.0,6.0,1,0.83 +54570,,,,,,,,0, +49231,80.0,9.0,9.0,9.0,7.0,8.0,8.0,3,1.96 +63160,,,,,,,,0, +14778,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.6 +41227,,,,,,,,0, +61456,,,,,,,,0, +9587,100.0,10.0,10.0,9.0,10.0,10.0,10.0,4,2.26 +62882,,,,,,,,0, +9030,93.0,9.0,9.0,10.0,10.0,10.0,10.0,9,6.59 +43833,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,3.49 +23344,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +7300,80.0,7.0,6.0,9.0,9.0,8.0,7.0,3,3.0 +18452,100.0,10.0,8.0,8.0,10.0,8.0,8.0,1,1.0 +62697,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,4.19 +28307,80.0,8.0,8.0,10.0,10.0,10.0,9.0,4,2.67 +19959,97.0,9.0,10.0,10.0,9.0,9.0,9.0,7,6.18 +12832,100.0,10.0,10.0,8.0,10.0,10.0,10.0,1,1.0 +59363,90.0,10.0,10.0,10.0,10.0,10.0,9.0,2,1.82 +2975,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,2.4 +34721,93.0,10.0,10.0,10.0,10.0,10.0,10.0,3,2.43 +57678,,,,,,,,0, +46303,,,,,,,,0, +48551,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +40907,90.0,10.0,10.0,9.0,9.0,10.0,9.0,4,4.0 +53279,93.0,9.0,10.0,9.0,9.0,10.0,10.0,3,2.09 +57748,100.0,10.0,10.0,8.0,8.0,10.0,8.0,1,1.0 +33863,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,3.75 +72331,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +36412,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,2.86 +7899,,,,,,,,0, +36372,96.0,10.0,9.0,10.0,10.0,9.0,9.0,5,4.05 +48150,,,,,,,,1,1.0 +17853,90.0,10.0,10.0,7.0,10.0,9.0,10.0,2,1.67 +41391,87.0,8.0,9.0,8.0,7.0,9.0,7.0,3,1.96 +22264,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +6351,93.0,10.0,10.0,10.0,10.0,9.0,9.0,3,2.5 +64397,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.3 +30789,,,,,,,,0, +15844,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.64 +17236,,,,,,,,0, +48753,,,,,,,,0, +39232,,,,,,,,0, +7488,100.0,9.0,10.0,8.0,9.0,9.0,9.0,3,2.65 +28984,,,,,,,,0, +41423,,,,,,,,0, +10164,,,,,,,,0, +31049,,,,,,,,0, +60990,,,,,,,,0, +7826,,,,,,,,0, +69334,,,,,,,,0, +62553,93.0,9.0,10.0,10.0,10.0,10.0,10.0,6,4.29 +60371,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.64 +6123,,,,,,,,0, +73383,,,,,,,,0, +42501,,,,,,,,0, +51223,,,,,,,,0, +4754,,,,,,,,0, +6142,100.0,9.0,10.0,10.0,10.0,9.0,10.0,3,2.81 +57700,,,,,,,,1,1.0 +22940,80.0,10.0,9.0,8.0,9.0,10.0,9.0,5,2.94 +75832,,,,,,,,0, +42477,20.0,2.0,2.0,2.0,2.0,2.0,2.0,1,1.0 +51300,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.5 +8755,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,5.0 +63850,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,1.0 +50835,93.0,9.0,9.0,9.0,10.0,10.0,10.0,6,5.0 +59072,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +32823,,,,,,,,0, +76166,100.0,10.0,10.0,8.0,10.0,10.0,10.0,1,0.63 +19657,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +11513,,,,,,,,0, +44462,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,4.5 +53275,,,,,,,,0, +22837,,,,,,,,0, +8887,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,1.0 +47196,100.0,10.0,9.0,9.0,10.0,9.0,9.0,2,1.67 +21297,60.0,8.0,8.0,10.0,8.0,10.0,6.0,1,0.73 +43746,,,,,,,,0, +56613,,,,,,,,0, +35624,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.83 +46410,,,,,,,,0, +20478,90.0,10.0,10.0,10.0,10.0,10.0,9.0,2,1.36 +63745,,,,,,,,2,1.25 +29627,100.0,10.0,9.0,10.0,10.0,9.0,10.0,2,1.71 +37555,80.0,9.0,7.0,9.0,10.0,10.0,7.0,3,1.91 +34628,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.58 +18006,100.0,10.0,4.0,10.0,10.0,10.0,10.0,1,0.88 +13925,89.0,10.0,9.0,10.0,10.0,10.0,9.0,9,7.5 +21091,,,,,,,,1,0.58 +76436,93.0,9.0,8.0,10.0,9.0,10.0,9.0,7,4.38 +57654,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.91 +43491,,,,,,,,0, +29986,,,,,,,,0, +45290,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +16339,,,,,,,,0, +17346,,,,,,,,0, +38992,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.88 +58409,,,,,,,,0, +60221,,,,,,,,1,1.0 +17998,75.0,9.0,7.0,9.0,9.0,10.0,8.0,8,6.32 +64701,100.0,10.0,9.0,10.0,10.0,10.0,10.0,4,2.35 +7362,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.22 +48103,,,,,,,,0, +19460,,,,,,,,0, +2391,80.0,10.0,8.0,10.0,10.0,10.0,8.0,2,2.0 +75013,93.0,10.0,9.0,10.0,10.0,10.0,9.0,3,2.65 +51613,,,,,,,,0, +6772,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,1.0 +35372,100.0,10.0,9.0,10.0,10.0,9.0,9.0,2,1.76 +65765,,,,,,,,0, +6025,,,,,,,,0, +65640,,,,,,,,0, +24330,92.0,9.0,10.0,10.0,10.0,10.0,9.0,5,3.66 +23895,,,,,,,,0, +44567,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,5.45 +18854,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.36 +33086,,,,,,,,0, +67143,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.83 +65218,,,,,,,,0, +22475,,,,,,,,0, +48615,,,,,,,,0, +33610,95.0,9.0,9.0,9.0,10.0,10.0,10.0,4,3.33 +2957,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +61686,,,,,,,,0, +30158,93.0,10.0,10.0,8.0,8.0,10.0,10.0,3,3.0 +27918,100.0,10.0,8.0,10.0,8.0,6.0,10.0,1,1.0 +2016,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +58902,90.0,9.0,7.0,9.0,10.0,9.0,8.0,2,1.67 +72787,80.0,10.0,8.0,10.0,10.0,10.0,8.0,1,0.61 +65094,,,,,,,,0, +66095,,,,,,,,0, +21102,80.0,10.0,6.0,10.0,10.0,10.0,10.0,1,1.0 +55174,,,,,,,,0, +13110,97.0,10.0,10.0,10.0,10.0,9.0,10.0,7,5.0 +42123,,,,,,,,0, +70263,93.0,9.0,9.0,10.0,10.0,9.0,9.0,3,1.91 +66308,100.0,10.0,8.0,10.0,10.0,8.0,10.0,1,0.81 +9440,,,,,,,,0, +12824,80.0,10.0,6.0,10.0,10.0,8.0,6.0,1,0.88 +31344,80.0,10.0,10.0,10.0,10.0,10.0,8.0,2,1.58 +3673,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.64 +60947,89.0,9.0,10.0,8.0,9.0,10.0,9.0,7,6.36 +34817,80.0,9.0,8.0,10.0,9.0,8.0,9.0,2,2.0 +54299,,,,,,,,0, +43443,100.0,9.0,10.0,10.0,10.0,9.0,10.0,2,1.25 +1986,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.91 +56208,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +3365,,,,,,,,0, +7603,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,3.41 +45247,,,,,,,,0, +49785,,,,,,,,0, +10722,,,,,,,,0, +54516,,,,,,,,0, +19404,80.0,10.0,9.0,9.0,10.0,10.0,10.0,3,2.09 +3654,,,,,,,,0, +22020,100.0,10.0,10.0,9.0,10.0,10.0,10.0,9,5.87 +58276,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.86 +576,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.68 +1283,,,,,,,,0, +6036,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,3.83 +60683,96.0,10.0,10.0,9.0,10.0,9.0,10.0,5,3.66 +41824,,,,,,,,0, +76584,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +43709,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +74477,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,3.0 +63340,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +33477,,,,,,,,0, +66527,,,,,,,,0, +7508,98.0,10.0,10.0,10.0,10.0,10.0,10.0,21,12.6 +48614,,,,,,,,0, +22080,,,,,,,,0, +38382,,,,,,,,0, +73003,100.0,10.0,6.0,10.0,10.0,8.0,10.0,1,1.0 +1231,100.0,10.0,10.0,10.0,10.0,10.0,9.0,6,4.09 +54029,100.0,8.0,8.0,10.0,10.0,10.0,10.0,1,0.83 +1278,,,,,,,,0, +16665,,,,,,,,0, +22683,,,,,,,,0, +53659,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +70951,80.0,6.0,6.0,7.0,7.0,9.0,9.0,2,1.28 +2117,,,,,,,,0, +6353,53.0,7.0,8.0,9.0,7.0,9.0,6.0,3,2.0 +26381,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.46 +26864,,,,,,,,0, +36527,100.0,10.0,9.0,10.0,10.0,9.0,10.0,3,1.96 +70428,93.0,9.0,9.0,9.0,9.0,9.0,10.0,3,2.0 +49316,93.0,10.0,9.0,10.0,10.0,9.0,9.0,3,3.0 +75109,97.0,10.0,10.0,10.0,10.0,10.0,10.0,7,5.25 +51840,,,,,,,,0, +39959,,,,,,,,0, +28280,,,,,,,,0, +67633,,,,,,,,0, +24405,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +26803,100.0,9.0,8.0,10.0,9.0,9.0,9.0,2,1.62 +39144,80.0,10.0,7.0,10.0,10.0,10.0,9.0,4,3.43 +61618,,,,,,,,0, +59077,,,,,,,,0, +70384,90.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +35278,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.73 +51853,,,,,,,,0, +24589,,,,,,,,0, +38286,95.0,10.0,10.0,10.0,10.0,10.0,9.0,4,4.0 +45971,85.0,10.0,9.0,10.0,10.0,10.0,8.0,4,2.55 +45895,,,,,,,,0, +2171,,,,,,,,0, +72028,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.86 +12841,90.0,9.0,10.0,9.0,10.0,10.0,10.0,2,1.3 +55486,80.0,8.0,6.0,10.0,8.0,10.0,8.0,1,1.0 +51409,,,,,,,,0, +29387,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,2.0 +66837,,,,,,,,0, +5674,100.0,10.0,9.0,10.0,9.0,9.0,9.0,2,2.0 +72913,,,,,,,,0, +21573,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.67 +10012,100.0,9.0,10.0,10.0,9.0,7.0,10.0,3,2.25 +12040,,,,,,,,1, +45250,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +19662,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +21357,,,,,,,,0, +51467,,,,,,,,0, +29876,98.0,10.0,10.0,10.0,10.0,9.0,10.0,8,5.85 +52167,95.0,10.0,9.0,9.0,10.0,9.0,9.0,8,6.0 +9015,80.0,4.0,10.0,2.0,8.0,10.0,8.0,1,1.0 +45469,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +70767,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,2.55 +69542,,,,,,,,0, +57485,20.0,2.0,8.0,6.0,2.0,4.0,2.0,1,0.91 +57045,95.0,10.0,9.0,10.0,10.0,10.0,10.0,8,7.5 +15468,,,,,,,,0, +55571,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,5.0 +51969,,,,,,,,0, +68618,95.0,10.0,10.0,10.0,10.0,10.0,9.0,4,3.64 +26266,93.0,10.0,10.0,9.0,6.0,9.0,9.0,3,3.0 +37717,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,4.41 +43000,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +55448,80.0,9.0,8.0,10.0,10.0,9.0,9.0,2,1.46 +8088,95.0,9.0,9.0,9.0,9.0,10.0,9.0,4,3.08 +64149,,,,,,,,0, +35179,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,3.0 +59,,,,,,,,0, +1354,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.83 +75572,,,,,,,,0, +55064,90.0,9.0,10.0,10.0,10.0,10.0,9.0,2,1.5 +236,,,,,,,,1, +28707,,,,,,,,0, +35418,100.0,10.0,8.0,10.0,8.0,10.0,10.0,1,1.0 +10169,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.86 +43009,94.0,10.0,9.0,10.0,10.0,9.0,10.0,17,10.63 +10254,,,,,,,,1,1.0 +51174,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,3.06 +1492,87.0,10.0,9.0,10.0,10.0,10.0,10.0,3,3.0 +76257,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.65 +49268,,,,,,,,0, +35422,,,,,,,,0, +74342,80.0,9.0,9.0,9.0,10.0,9.0,9.0,3,2.0 +29412,92.0,9.0,10.0,10.0,10.0,10.0,9.0,5,4.17 +49741,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.81 +46672,90.0,10.0,9.0,10.0,10.0,10.0,10.0,2,1.5 +27663,90.0,10.0,10.0,10.0,10.0,10.0,9.0,2,1.71 +63836,,,,,,,,0, +19547,,,,,,,,0, +74277,,,,,,,,0, +32240,80.0,10.0,10.0,10.0,10.0,6.0,6.0,1,1.0 +2480,80.0,10.0,10.0,6.0,8.0,10.0,10.0,1,0.73 +48740,,,,,,,,0, +30221,,,,,,,,0, +58781,,,,,,,,0, +11841,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,4.2 +74278,,,,,,,,0, +26488,84.0,10.0,7.0,10.0,10.0,8.0,9.0,5,3.66 +27992,100.0,9.0,10.0,9.0,10.0,9.0,10.0,4,2.93 +13855,,,,,,,,0, +65929,,,,,,,,0, +68529,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +32527,,,,,,,,0, +61702,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +30498,,,,,,,,0, +66885,,,,,,,,0, +53779,,,,,,,,0, +7184,,,,,,,,0, +9884,,,,,,,,0, +14938,,,,,,,,0, +54058,,,,,,,,1,1.0 +73302,100.0,10.0,9.0,10.0,10.0,10.0,10.0,6,4.86 +65705,90.0,9.0,10.0,8.0,8.0,10.0,10.0,2,2.0 +52535,50.0,9.0,10.0,10.0,6.0,9.0,5.0,2,1.67 +65632,90.0,9.0,9.0,10.0,10.0,9.0,8.0,2,1.58 +15915,100.0,8.0,8.0,10.0,10.0,10.0,10.0,2,1.87 +22257,92.0,10.0,9.0,10.0,10.0,9.0,10.0,12,7.83 +41181,,,,,,,,0, +59225,100.0,10.0,10.0,10.0,6.0,10.0,10.0,1,1.0 +58594,100.0,10.0,9.0,10.0,10.0,9.0,10.0,2,1.36 +8212,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.88 +29130,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +20329,100.0,10.0,9.0,10.0,10.0,10.0,9.0,3,3.0 +75173,20.0,2.0,10.0,2.0,2.0,2.0,2.0,1,1.0 +68408,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +66436,,,,,,,,0, +17849,80.0,8.0,8.0,10.0,8.0,8.0,8.0,1,1.0 +33130,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +55452,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,4.55 +52781,98.0,10.0,10.0,10.0,10.0,9.0,10.0,9,5.63 +18566,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,1.88 +47681,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,1.28 +26149,87.0,10.0,10.0,9.0,10.0,9.0,9.0,3,2.2 +72163,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.7 +2339,67.0,10.0,9.0,6.0,8.0,9.0,9.0,9,7.94 +22984,,,,,,,,0, +38593,100.0,10.0,9.0,9.0,10.0,10.0,9.0,6,6.0 +15895,100.0,10.0,10.0,10.0,9.0,8.0,10.0,2,1.67 +67652,93.0,10.0,8.0,9.0,10.0,10.0,9.0,3,1.96 +36009,100.0,10.0,10.0,10.0,10.0,10.0,10.0,16,10.0 +11845,80.0,10.0,8.0,10.0,9.0,10.0,9.0,2,1.67 +12504,80.0,9.0,8.0,8.0,9.0,9.0,8.0,7,4.57 +25862,93.0,9.0,9.0,10.0,10.0,9.0,9.0,3,2.14 +8566,100.0,10.0,9.0,10.0,10.0,10.0,10.0,5,5.0 +7786,80.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.88 +28820,93.0,10.0,10.0,10.0,10.0,9.0,9.0,9,5.74 +24207,85.0,9.0,9.0,10.0,10.0,10.0,9.0,4,3.0 +7852,96.0,10.0,10.0,10.0,10.0,10.0,10.0,6,6.0 +69760,97.0,10.0,10.0,10.0,10.0,10.0,10.0,7,4.77 +70682,,,,,,,,0, +31121,,,,,,,,0, +29946,,,,,,,,0, +42354,97.0,10.0,9.0,10.0,10.0,9.0,10.0,12,9.47 +27890,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,3.0 +2421,,,,,,,,0, +43535,87.0,10.0,8.0,7.0,7.0,9.0,8.0,3,3.0 +38713,100.0,8.0,10.0,10.0,10.0,10.0,10.0,1,0.77 +49456,85.0,10.0,10.0,10.0,10.0,10.0,10.0,4,4.0 +56,70.0,6.0,6.0,6.0,6.0,8.0,7.0,2,1.67 +33295,67.0,9.0,6.0,9.0,9.0,9.0,7.0,3,3.0 +7225,83.0,9.0,10.0,10.0,9.0,10.0,9.0,6,4.62 +22414,,,,,,,,1,1.0 +49035,100.0,10.0,10.0,9.0,9.0,10.0,10.0,3,3.0 +72590,,,,,,,,0, +59311,,,,,,,,0, +56159,,,,,,,,0, +48698,,,,,,,,0, +34560,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +7878,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +44813,93.0,10.0,8.0,10.0,10.0,9.0,9.0,3,2.73 +44,88.0,8.0,8.0,9.0,8.0,9.0,9.0,5,3.66 +9072,,,,,,,,0, +18861,91.0,10.0,9.0,9.0,10.0,10.0,9.0,9,7.94 +73438,,,,,,,,0, +61662,100.0,10.0,6.0,10.0,10.0,10.0,10.0,1,1.0 +25092,,,,,,,,0, +53682,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +7129,,,,,,,,0, +43457,,,,,,,,0, +72216,,,,,,,,0, +25771,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +4985,100.0,9.0,9.0,10.0,10.0,10.0,9.0,3,2.73 +38367,90.0,9.0,10.0,9.0,9.0,9.0,9.0,2,2.0 +34944,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,4.41 +43374,80.0,10.0,10.0,10.0,10.0,4.0,6.0,1,1.0 +53064,,,,,,,,0, +20988,,,,,,,,0, +34660,,,,,,,,0, +22968,87.0,9.0,9.0,10.0,10.0,10.0,9.0,3,2.09 +62060,,,,,,,,0, +58724,,,,,,,,0, +64432,70.0,8.0,7.0,9.0,9.0,9.0,7.0,2,2.0 +61558,80.0,10.0,8.0,10.0,10.0,10.0,8.0,1,1.0 +50498,67.0,5.0,7.0,9.0,9.0,7.0,5.0,3,1.84 +3862,,,,,,,,0, +36828,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.62 +68028,,,,,,,,1,1.0 +56377,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,2.93 +31347,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,8.05 +13973,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +50999,94.0,10.0,9.0,10.0,10.0,10.0,9.0,7,7.0 +75126,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +38704,,,,,,,,0, +42902,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,2.09 +54447,,,,,,,,0, +43692,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,5.85 +12699,95.0,10.0,10.0,10.0,10.0,10.0,9.0,4,3.53 +71049,,,,,,,,0, +15708,,,,,,,,0, +50823,,,,,,,,0, +62715,,,,,,,,0, +25499,,,,,,,,0, +75732,90.0,10.0,9.0,10.0,8.0,9.0,9.0,2,2.0 +43056,,,,,,,,0, +70443,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,1.25 +46610,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,4.05 +75054,88.0,8.0,9.0,8.0,8.0,10.0,8.0,5,3.85 +50433,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.4 +12147,,,,,,,,0, +51698,60.0,2.0,4.0,2.0,8.0,10.0,8.0,2,2.0 +58229,100.0,9.0,10.0,9.0,10.0,10.0,10.0,3,2.37 +75020,100.0,10.0,8.0,10.0,10.0,8.0,8.0,1,0.81 +138,75.0,9.0,7.0,10.0,10.0,10.0,7.0,4,4.0 +21226,,,,,,,,0, +31303,,,,,,,,0, +17174,70.0,7.0,7.0,10.0,10.0,9.0,8.0,4,2.93 +2505,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.46 +36561,,,,,,,,0, +24343,83.0,9.0,9.0,9.0,9.0,9.0,8.0,8,4.9 +66991,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.71 +38910,87.0,10.0,9.0,10.0,10.0,9.0,9.0,3,2.09 +20464,,,,,,,,0, +63430,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,1.0 +3601,,,,,,,,0, +69360,60.0,8.0,8.0,10.0,8.0,8.0,8.0,1,0.94 +35058,80.0,8.0,10.0,9.0,6.0,9.0,8.0,6,4.09 +23009,84.0,9.0,10.0,10.0,10.0,8.0,8.0,5,3.13 +10734,,,,,,,,0, +1948,80.0,8.0,8.0,8.0,8.0,8.0,8.0,1,0.73 +37716,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,5.12 +23826,,,,,,,,0, +15108,93.0,10.0,10.0,9.0,10.0,10.0,10.0,3,2.0 +45603,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,1.0 +64137,,,,,,,,0, +62839,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +33462,,,,,,,,0, +18351,91.0,10.0,9.0,9.0,10.0,9.0,10.0,7,5.38 +10136,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +38470,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,2.86 +71881,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,1.33 +9676,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +22110,93.0,10.0,10.0,9.0,10.0,10.0,10.0,8,5.45 +41858,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,2.0 +44224,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,4.0 +11192,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.76 +57713,,,,,,,,0, +34329,90.0,10.0,10.0,10.0,10.0,10.0,10.0,4,4.0 +52830,,,,,,,,0, +1792,100.0,10.0,10.0,10.0,10.0,6.0,8.0,2,1.33 +65083,,,,,,,,0, +7302,90.0,10.0,10.0,9.0,10.0,10.0,10.0,4,3.33 +18875,,,,,,,,2,1.36 +10406,,,,,,,,1,0.68 +38015,,,,,,,,0, +40155,60.0,10.0,6.0,10.0,6.0,10.0,10.0,1,0.88 +23827,,,,,,,,1,0.7 +65605,60.0,8.0,6.0,10.0,10.0,10.0,8.0,1,1.0 +62558,,,,,,,,0, +7112,,,,,,,,0, +45824,,,,,,,,0, +2169,90.0,10.0,10.0,10.0,9.0,10.0,10.0,2,1.5 +19062,100.0,10.0,9.0,9.0,9.0,10.0,10.0,3,2.65 +10346,,,,,,,,0, +36476,,,,,,,,0, +74580,,,,,,,,0, +64447,53.0,8.0,9.0,9.0,9.0,7.0,7.0,3,3.0 +20155,85.0,8.0,8.0,7.0,8.0,9.0,8.0,4,2.79 +32739,,,,,,,,0, +1180,,,,,,,,0, +19592,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.91 +30625,,,,,,,,0, +10476,100.0,10.0,10.0,10.0,10.0,10.0,9.0,4,2.79 +11791,,,,,,,,0, +33600,93.0,10.0,9.0,10.0,10.0,10.0,10.0,6,3.91 +67717,60.0,6.0,8.0,8.0,8.0,10.0,6.0,3,3.0 +25619,,,,,,,,1,1.0 +72659,100.0,8.0,4.0,10.0,10.0,10.0,8.0,1,0.81 +16178,40.0,4.0,4.0,6.0,4.0,10.0,6.0,1,1.0 +55442,,,,,,,,0, +57487,88.0,10.0,8.0,10.0,10.0,10.0,10.0,5,3.49 +25732,,,,,,,,0, +27613,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,1.67 +71034,,,,,,,,0, +3631,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,3.0 +53312,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,2.0 +13381,100.0,10.0,10.0,9.0,10.0,9.0,10.0,3,2.2 +3389,100.0,10.0,10.0,9.0,10.0,10.0,10.0,2,2.0 +18289,70.0,8.0,6.0,9.0,10.0,10.0,7.0,2,2.0 +29894,,,,,,,,0, +73765,100.0,10.0,10.0,9.0,10.0,10.0,9.0,4,3.64 +5406,90.0,10.0,9.0,10.0,10.0,10.0,9.0,4,3.53 +66856,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.88 +39270,80.0,8.0,10.0,9.0,10.0,10.0,9.0,2,1.46 +68366,,,,,,,,0, +35121,,,,,,,,0, +35547,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,3.53 +37052,,,,,,,,0, +2636,,,,,,,,0, +62737,,,,,,,,0, +36859,,,,,,,,0, +32277,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,5.12 +7627,,,,,,,,0, +75920,80.0,10.0,6.0,2.0,6.0,10.0,10.0,1,1.0 +11595,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +16210,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,2.2 +21404,100.0,10.0,10.0,4.0,10.0,10.0,10.0,1,0.7 +44980,,,,,,,,1,1.0 +43206,,,,,,,,0, +2395,98.0,10.0,10.0,10.0,10.0,9.0,9.0,11,11.0 +62037,95.0,10.0,9.0,10.0,10.0,10.0,10.0,4,4.0 +47932,90.0,10.0,10.0,10.0,10.0,10.0,10.0,4,4.0 +43241,78.0,9.0,9.0,10.0,10.0,9.0,8.0,9,6.92 +27638,,,,,,,,0, +18411,88.0,10.0,9.0,10.0,10.0,9.0,9.0,10,6.82 +3742,100.0,10.0,9.0,10.0,10.0,10.0,10.0,4,4.0 +38262,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,3.95 +18225,98.0,10.0,9.0,9.0,9.0,10.0,10.0,8,6.0 +52351,,,,,,,,0, +38698,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,1.0 +31384,,,,,,,,0, +25119,80.0,9.0,7.0,10.0,10.0,10.0,8.0,2,1.46 +31996,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.88 +52447,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,4.29 +36208,100.0,9.0,8.0,9.0,9.0,10.0,10.0,3,2.37 +45740,93.0,9.0,10.0,10.0,10.0,10.0,10.0,3,2.2 +72742,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +4039,,,,,,,,0, +57822,20.0,2.0,2.0,2.0,2.0,2.0,2.0,1,1.0 +14303,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +74083,,,,,,,,0, +7579,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,2.81 +53499,100.0,10.0,8.0,10.0,10.0,10.0,10.0,2,2.0 +51212,100.0,10.0,6.0,6.0,6.0,6.0,10.0,1,1.0 +57935,,,,,,,,0, +50386,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +14096,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,5.85 +76540,60.0,8.0,4.0,10.0,10.0,10.0,6.0,1,1.0 +7089,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.36 +56233,100.0,10.0,10.0,10.0,10.0,8.0,10.0,2,2.0 +15768,,,,,,,,0, +20936,,,,,,,,0, +68299,,,,,,,,0, +65551,,,,,,,,0, +15028,,,,,,,,0, +64049,,,,,,,,0, +31074,,,,,,,,0, +24687,,,,,,,,0, +33448,,,,,,,,0, +36427,,,,,,,,0, +2819,,,,,,,,0, +22344,,,,,,,,0, +44731,,,,,,,,0, +55193,,,,,,,,0, +72429,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.76 +58073,70.0,7.0,7.0,10.0,10.0,7.0,8.0,3,2.25 +77033,,,,,,,,0, +66090,90.0,10.0,9.0,10.0,10.0,9.0,9.0,4,2.55 +37241,,,,,,,,0, +63426,,,,,,,,0, +11381,80.0,8.0,10.0,8.0,7.0,8.0,8.0,5,3.57 +25294,,,,,,,,0, +46939,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +18295,95.0,10.0,10.0,9.0,10.0,10.0,10.0,8,5.22 +22422,,,,,,,,1,1.0 +15618,,,,,,,,0, +30524,100.0,10.0,10.0,9.0,10.0,10.0,10.0,6,4.0 +74177,,,,,,,,0, +2447,,,,,,,,0, +4805,100.0,8.0,8.0,10.0,10.0,10.0,10.0,1,1.0 +35224,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,4.0 +39820,87.0,9.0,10.0,7.0,9.0,9.0,9.0,3,2.05 +17740,,,,,,,,0, +3066,87.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.91 +14500,97.0,10.0,10.0,10.0,9.0,10.0,9.0,7,7.0 +32749,,,,,,,,0, +7376,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,3.26 +7769,,,,,,,,0, +72024,,,,,,,,0, +22249,,,,,,,,0, +44152,96.0,10.0,10.0,10.0,10.0,9.0,9.0,5,3.66 +4348,,,,,,,,0, +38658,,,,,,,,0, +3696,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +49984,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,4.55 +40890,,,,,,,,1, +41698,90.0,9.0,8.0,10.0,10.0,8.0,10.0,2,1.54 +26219,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,2.67 +26989,88.0,10.0,9.0,10.0,10.0,10.0,9.0,12,8.37 +27371,90.0,8.0,10.0,10.0,10.0,10.0,10.0,2,1.33 +29779,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,3.0 +600,,,,,,,,0, +31750,100.0,10.0,6.0,10.0,10.0,6.0,10.0,1,1.0 +61280,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,3.33 +30337,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.3 +58014,,,,,,,,0, +55004,60.0,10.0,6.0,10.0,6.0,10.0,2.0,1,0.77 +63542,100.0,10.0,10.0,6.0,10.0,6.0,10.0,2,1.4 +45773,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,4.29 +1030,100.0,10.0,10.0,10.0,10.0,8.0,10.0,2,1.87 +12007,94.0,9.0,9.0,10.0,9.0,9.0,9.0,16,10.0 +28260,,,,,,,,0, +32796,,,,,,,,0, +12029,,,,,,,,0, +48154,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,2.57 +77089,100.0,10.0,10.0,10.0,10.0,8.0,10.0,2,2.0 +67328,,,,,,,,0, +33005,90.0,10.0,8.0,10.0,10.0,10.0,10.0,2,1.82 +35202,,,,,,,,0, +52154,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,1.5 +5611,,,,,,,,0, +59860,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.76 +45793,,,,,,,,0, +55417,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +65226,80.0,10.0,9.0,10.0,10.0,10.0,10.0,2,2.0 +21101,,,,,,,,0, +4886,,,,,,,,0, +12132,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,1.0 +49100,,,,,,,,0, +30888,80.0,10.0,10.0,10.0,10.0,10.0,8.0,1,0.83 +67436,,,,,,,,0, +3952,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,1.5 +61650,,,,,,,,0, +69730,93.0,10.0,9.0,10.0,9.0,10.0,10.0,12,7.83 +57495,,,,,,,,0, +61209,93.0,10.0,9.0,10.0,10.0,10.0,9.0,6,4.39 +42520,,,,,,,,0, +20444,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,4.0 +2125,,,,,,,,0, +30087,,,,,,,,0, +41779,90.0,10.0,9.0,10.0,10.0,9.0,9.0,4,3.53 +13699,91.0,10.0,9.0,10.0,10.0,10.0,10.0,7,4.67 +31741,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +53089,,,,,,,,0, +30674,90.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.71 +67023,,,,,,,,0, +69797,96.0,10.0,10.0,10.0,10.0,9.0,9.0,10,8.82 +45694,,,,,,,,1,0.65 +41374,,,,,,,,0, +41166,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +59578,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +67125,87.0,9.0,10.0,8.0,9.0,9.0,8.0,3,3.0 +37645,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +33194,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,1.0 +12326,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +9330,,,,,,,,0, +6557,,,,,,,,0, +47299,,,,,,,,0, +19790,80.0,10.0,8.0,10.0,10.0,10.0,9.0,4,2.73 +65275,,,,,,,,0, +66953,,,,,,,,0, +49310,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.71 +18567,87.0,10.0,7.0,10.0,10.0,10.0,10.0,3,2.31 +13281,100.0,10.0,9.0,10.0,10.0,10.0,10.0,4,3.24 +46846,,,,,,,,0, +62477,,,,,,,,0, +6172,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.91 +33575,67.0,7.0,6.0,7.0,7.0,8.0,7.0,3,2.25 +54416,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.82 +23588,,,,,,,,0, +36113,,,,,,,,0, +34894,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +54772,,,,,,,,0, +76589,,,,,,,,0, +55035,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,3.16 +32147,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +16098,,,,,,,,0, +76084,,,,,,,,0, +41918,,,,,,,,0, +1613,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.46 +75795,90.0,9.0,8.0,10.0,10.0,10.0,9.0,2,1.46 +18522,,,,,,,,0, +20935,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,0.75 +62462,,,,,,,,0, +2058,100.0,10.0,10.0,10.0,10.0,8.0,10.0,2,1.54 +35955,100.0,10.0,10.0,10.0,10.0,10.0,6.0,1,0.81 +35617,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,2.0 +42375,,,,,,,,0, +38776,,,,,,,,0, +74289,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,3.16 +35078,,,,,,,,1, +15412,86.0,10.0,8.0,9.0,10.0,10.0,9.0,7,5.83 +51807,97.0,10.0,9.0,10.0,10.0,9.0,10.0,7,4.88 +9822,75.0,8.0,8.0,9.0,10.0,10.0,7.0,4,2.73 +46859,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,2.0 +14041,95.0,10.0,10.0,10.0,10.0,9.0,10.0,4,2.73 +16439,,,,,,,,0, +52156,87.0,9.0,9.0,10.0,9.0,9.0,9.0,5,4.17 +16958,80.0,8.0,7.0,9.0,9.0,9.0,8.0,3,1.91 +19152,,,,,,,,1, +7155,,,,,,,,0, +32596,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,2.73 +32667,,,,,,,,0, +16702,,,,,,,,0, +56466,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +49444,86.0,9.0,10.0,9.0,9.0,10.0,9.0,7,5.25 +69914,100.0,10.0,9.0,10.0,10.0,9.0,10.0,3,2.65 +50540,,,,,,,,0, +38663,85.0,10.0,10.0,9.0,9.0,9.0,9.0,4,3.33 +57501,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,3.0 +76809,,,,,,,,0, +19385,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,4.05 +22371,,,,,,,,1, +8743,,,,,,,,0, +70562,100.0,8.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +73231,,,,,,,,0, +22861,,,,,,,,1,0.77 +56642,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +68044,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +45028,,,,,,,,0, +69866,,,,,,,,0, +65485,,,,,,,,0, +3169,,,,,,,,0, +46124,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +16929,,,,,,,,0, +46455,,,,,,,,1,1.0 +65902,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +63419,100.0,9.0,10.0,10.0,10.0,10.0,10.0,4,2.67 +3884,60.0,8.0,6.0,10.0,10.0,10.0,5.0,2,2.0 +47252,,,,,,,,0, +11908,,,,,,,,0, +38257,,,,,,,,0, +10043,,,,,,,,0, +56551,,,,,,,,0, +23330,87.0,9.0,10.0,9.0,10.0,10.0,8.0,3,2.5 +73035,80.0,10.0,10.0,10.0,10.0,6.0,10.0,2,1.82 +55067,,,,,,,,0, +31927,97.0,10.0,9.0,10.0,10.0,10.0,10.0,6,5.45 +60423,,,,,,,,0, +45339,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +64406,80.0,10.0,9.0,8.0,7.0,9.0,9.0,2,2.0 +2718,87.0,9.0,7.0,9.0,9.0,9.0,9.0,3,2.2 +71753,,,,,,,,0, +8864,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,1.96 +71376,,,,,,,,0, +21497,,,,,,,,0, +42973,,,,,,,,0, +42465,,,,,,,,0, +13327,,,,,,,,0, +45643,90.0,9.0,8.0,10.0,9.0,10.0,9.0,6,4.19 +59100,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.94 +8735,80.0,10.0,8.0,10.0,10.0,10.0,10.0,1,1.0 +67998,,,,,,,,0, +29071,,,,,,,,0, +39313,80.0,10.0,10.0,8.0,10.0,8.0,8.0,1,1.0 +25966,,,,,,,,0, +50072,40.0,2.0,10.0,10.0,4.0,10.0,2.0,1,0.91 +748,,,,,,,,0, +27539,,,,,,,,1,0.65 +31717,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,6.67 +38460,100.0,10.0,10.0,9.0,10.0,10.0,10.0,6,4.39 +68643,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,3.53 +72304,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +9660,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +53711,90.0,10.0,10.0,10.0,10.0,9.0,9.0,2,2.0 +18217,80.0,10.0,10.0,10.0,10.0,10.0,8.0,1,1.0 +6552,100.0,8.0,10.0,10.0,10.0,10.0,9.0,2,2.0 +12957,,,,,,,,0, +45051,,,,,,,,0, +43834,100.0,10.0,10.0,10.0,10.0,9.0,9.0,2,2.0 +41447,,,,,,,,0, +26363,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +1550,,,,,,,,0, +1830,68.0,7.0,6.0,8.0,9.0,10.0,7.0,5,3.85 +30690,80.0,10.0,10.0,6.0,7.0,10.0,10.0,2,2.0 +61373,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +62771,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +54454,,,,,,,,0, +1805,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,2.73 +36264,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,2.65 +10492,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,1.82 +63463,,,,,,,,1,0.91 +76461,93.0,10.0,9.0,10.0,10.0,9.0,9.0,3,2.73 +36187,,,,,,,,0, +75494,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.43 +71496,75.0,8.0,10.0,7.0,10.0,9.0,8.0,4,3.43 +43438,,,,,,,,0, +57798,,,,,,,,0, +31995,,,,,,,,0, +139,94.0,10.0,9.0,10.0,10.0,10.0,10.0,7,7.0 +14735,88.0,8.0,7.0,10.0,9.0,10.0,9.0,5,4.41 +19108,,,,,,,,0, +66048,80.0,8.0,9.0,8.0,8.0,7.0,7.0,5,3.57 +61403,93.0,10.0,8.0,9.0,10.0,10.0,8.0,3,2.2 +9828,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,2.43 +63939,,,,,,,,0, +55734,,,,,,,,0, +46712,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,3.0 +63568,85.0,10.0,10.0,9.0,10.0,10.0,10.0,4,4.0 +65627,90.0,9.0,6.0,8.0,10.0,10.0,10.0,2,1.67 +65594,100.0,9.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +69795,,,,,,,,0, +76281,100.0,10.0,8.0,10.0,10.0,8.0,10.0,1,1.0 +28812,,,,,,,,0, +40401,,,,,,,,0, +30894,96.0,10.0,9.0,10.0,10.0,9.0,10.0,5,4.05 +66700,,,,,,,,0, +49255,90.0,9.0,10.0,10.0,10.0,9.0,9.0,4,2.93 +2936,,,,,,,,0, +49904,60.0,6.0,5.0,6.0,6.0,7.0,5.0,2,2.0 +7257,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +57341,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,2.93 +42283,,,,,,,,0, +39013,,,,,,,,0, +19135,,,,,,,,0, +46231,60.0,8.0,8.0,10.0,10.0,10.0,8.0,1,1.0 +70168,,,,,,,,0, +26208,,,,,,,,0, +57985,,,,,,,,0, +72900,91.0,10.0,10.0,10.0,10.0,10.0,10.0,7,5.0 +27344,,,,,,,,0, +8953,,,,,,,,0, +13924,100.0,9.0,9.0,9.0,10.0,9.0,10.0,3,2.5 +56037,,,,,,,,0, +19977,100.0,10.0,10.0,10.0,10.0,9.0,10.0,8,6.67 +48930,,,,,,,,0, +3310,90.0,9.0,9.0,10.0,10.0,9.0,9.0,6,4.86 +21806,90.0,9.0,9.0,10.0,10.0,10.0,10.0,4,4.0 +52489,100.0,10.0,10.0,2.0,8.0,10.0,10.0,1,0.88 +47568,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.81 +36512,85.0,10.0,9.0,10.0,10.0,8.0,9.0,4,3.0 +67175,90.0,10.0,10.0,10.0,10.0,7.0,10.0,3,2.25 +14210,,,,,,,,0, +20904,,,,,,,,0, +55803,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +10242,,,,,,,,0, +1773,,,,,,,,0, +43377,90.0,9.0,9.0,10.0,10.0,10.0,10.0,2,2.0 +68499,,,,,,,,1,1.0 +19293,,,,,,,,0, +38556,,,,,,,,1,1.0 +48491,100.0,10.0,10.0,9.0,9.0,10.0,9.0,3,2.73 +6544,60.0,10.0,8.0,10.0,10.0,10.0,6.0,1,1.0 +8862,100.0,8.0,10.0,10.0,10.0,10.0,8.0,1,1.0 +18945,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,3.0 +54322,100.0,10.0,10.0,9.0,10.0,10.0,10.0,2,1.46 +55263,,,,,,,,0, +14525,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,5.12 +37747,80.0,10.0,10.0,8.0,10.0,10.0,8.0,1,1.0 +72526,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,3.66 +55271,,,,,,,,0, +4970,,,,,,,,0, +75645,90.0,10.0,9.0,10.0,10.0,10.0,9.0,3,2.65 +39937,95.0,10.0,10.0,9.0,10.0,9.0,10.0,4,4.0 +35996,,,,,,,,0, +8543,,,,,,,,0, +74393,,,,,,,,0, +20879,90.0,10.0,10.0,8.0,10.0,10.0,8.0,4,2.73 +30320,80.0,10.0,9.0,10.0,10.0,10.0,10.0,2,1.67 +4244,,,,,,,,0, +64699,,,,,,,,0, +38392,20.0,2.0,2.0,10.0,2.0,4.0,2.0,1,1.0 +27750,90.0,10.0,10.0,10.0,9.0,10.0,10.0,4,4.0 +5377,,,,,,,,0, +37421,93.0,10.0,9.0,9.0,10.0,10.0,10.0,3,2.73 +17529,100.0,10.0,10.0,10.0,10.0,6.0,8.0,1,1.0 +11143,,,,,,,,0, +28544,,,,,,,,0, +73055,87.0,9.0,7.0,10.0,10.0,10.0,9.0,3,3.0 +45780,,,,,,,,0, +25279,70.0,5.0,7.0,8.0,8.0,9.0,8.0,2,1.87 +15326,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +60272,,,,,,,,0, +30162,,,,,,,,0, +4200,40.0,4.0,2.0,10.0,2.0,10.0,4.0,1,1.0 +18616,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,1.0 +67937,90.0,9.0,8.0,8.0,9.0,9.0,8.0,2,1.46 +15009,100.0,9.0,10.0,10.0,9.0,9.0,8.0,2,2.0 +48463,70.0,8.0,8.0,8.0,10.0,9.0,9.0,2,1.54 +6946,,,,,,,,0, +31793,80.0,10.0,10.0,10.0,10.0,10.0,8.0,1,1.0 +30082,,,,,,,,0, +48908,,,,,,,,0, +13388,90.0,7.0,8.0,9.0,9.0,9.0,8.0,2,2.0 +48475,80.0,10.0,10.0,10.0,10.0,10.0,8.0,1,1.0 +74102,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +12221,,,,,,,,0, +16502,,,,,,,,0, +19383,,,,,,,,0, +9692,100.0,10.0,10.0,8.0,10.0,10.0,10.0,2,1.46 +15781,100.0,8.0,8.0,6.0,10.0,10.0,10.0,1,1.0 +49714,,,,,,,,0, +36107,80.0,9.0,8.0,9.0,10.0,6.0,7.0,3,2.05 +69966,,,,,,,,0, +58262,100.0,10.0,10.0,9.0,9.0,10.0,10.0,3,2.09 +48193,,,,,,,,0, +3513,,,,,,,,0, +43037,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,2.05 +8665,,,,,,,,0, +42502,96.0,10.0,10.0,9.0,9.0,10.0,10.0,5,5.0 +8835,,,,,,,,0, +2621,100.0,10.0,10.0,10.0,10.0,8.0,10.0,2,1.76 +46377,,,,,,,,0, +10862,,,,,,,,0, +56657,60.0,6.0,10.0,8.0,6.0,10.0,6.0,1,1.0 +24105,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +22492,85.0,9.0,10.0,10.0,10.0,9.0,9.0,4,4.0 +43924,,,,,,,,0, +62966,90.0,10.0,9.0,9.0,10.0,9.0,8.0,2,2.0 +50414,,,,,,,,0, +62708,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,4.0 +50303,,,,,,,,0, +9080,,,,,,,,0, +11910,,,,,,,,0, +39489,,,,,,,,0, +38501,40.0,8.0,6.0,10.0,10.0,10.0,6.0,1,1.0 +58839,,,,,,,,0, +11113,,,,,,,,0, +16742,80.0,8.0,8.0,10.0,10.0,10.0,9.0,2,2.0 +12518,,,,,,,,0, +58559,,,,,,,,0, +55969,,,,,,,,0, +1565,20.0,4.0,4.0,6.0,6.0,8.0,4.0,1,1.0 +39373,,,,,,,,0, +28665,,,,,,,,0, +54281,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,3.33 +74413,40.0,2.0,2.0,2.0,2.0,8.0,4.0,1,1.0 +40456,95.0,9.0,10.0,10.0,10.0,10.0,10.0,4,2.73 +62845,60.0,6.0,8.0,8.0,6.0,8.0,8.0,1,0.94 +11685,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,3.0 +66876,60.0,7.0,5.0,7.0,7.0,8.0,5.0,3,2.57 +26534,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +57542,,,,,,,,0, +4398,,,,,,,,0, +4017,,,,,,,,0, +67655,,,,,,,,0, +5376,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +22279,,,,,,,,0, +42301,75.0,9.0,9.0,10.0,9.0,9.0,9.0,4,3.33 +48562,,,,,,,,0, +16551,,,,,,,,0, +31480,,,,,,,,0, +49883,,,,,,,,0, +54718,,,,,,,,0, +61116,,,,,,,,0, +27428,,,,,,,,0, +2627,,,,,,,,1, +12655,,,,,,,,0, +37486,,,,,,,,0, +59670,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.86 +55747,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +70462,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +28089,,,,,,,,0, +6973,,,,,,,,0, +18262,20.0,4.0,6.0,2.0,6.0,6.0,2.0,1,1.0 +60219,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.88 +42571,,,,,,,,0, +70484,,,,,,,,0, +32734,,,,,,,,0, +29560,,,,,,,,0, +50366,100.0,9.0,9.0,10.0,10.0,9.0,9.0,3,3.0 +10583,,,,,,,,0, +51292,96.0,10.0,10.0,10.0,10.0,9.0,10.0,5,5.0 +76157,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.82 +20656,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,3.66 +75506,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,7.06 +67606,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +51273,,,,,,,,0, +75380,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +3062,,,,,,,,0, +3440,,,,,,,,0, +17129,,,,,,,,0, +2019,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,3.75 +32182,,,,,,,,0, +56261,,,,,,,,0, +52344,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +2162,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.75 +72091,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +51559,,,,,,,,0, +36555,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,0.73 +71358,80.0,8.0,8.0,10.0,10.0,10.0,8.0,1,1.0 +1809,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +56935,,,,,,,,0, +53568,,,,,,,,0, +53263,,,,,,,,1,1.0 +14854,,,,,,,,0, +30206,,,,,,,,0, +53812,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +26190,,,,,,,,0, +58471,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.46 +50517,,,,,,,,0, +1364,,,,,,,,0, +64944,,,,,,,,1,1.0 +57082,,,,,,,,1,1.0 +45900,,,,,,,,0, +72639,80.0,10.0,10.0,4.0,8.0,8.0,8.0,1,0.86 +23600,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,1.0 +57071,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.91 +42718,100.0,10.0,9.0,10.0,10.0,10.0,10.0,4,4.0 +3364,40.0,4.0,4.0,10.0,8.0,10.0,6.0,1,1.0 +40112,,,,,,,,4,3.08 +18737,,,,,,,,0, +40710,100.0,10.0,10.0,8.0,9.0,10.0,10.0,6,4.0 +15061,,,,,,,,0, +47077,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,1.76 +20321,,,,,,,,0, +27985,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +40651,,,,,,,,0, +16516,,,,,,,,0, +13969,100.0,8.0,8.0,10.0,10.0,10.0,10.0,1,0.77 +35577,60.0,4.0,6.0,8.0,4.0,8.0,6.0,1,1.0 +58390,100.0,10.0,10.0,10.0,10.0,10.0,9.0,8,5.58 +20393,,,,,,,,0, +65838,,,,,,,,0, +66105,,,,,,,,0, +35765,,,,,,,,0, +39585,,,,,,,,0, +17224,,,,,,,,0, +20082,80.0,10.0,4.0,10.0,10.0,10.0,8.0,1,1.0 +67958,,,,,,,,0, +7652,80.0,10.0,8.0,10.0,10.0,10.0,8.0,1,1.0 +47757,,,,,,,,0, +28456,20.0,4.0,2.0,4.0,2.0,8.0,2.0,1,1.0 +49616,95.0,9.0,9.0,10.0,10.0,10.0,10.0,8,6.86 +17147,93.0,10.0,9.0,9.0,10.0,9.0,9.0,9,6.43 +71299,,,,,,,,1,0.77 +57972,,,,,,,,0, +34343,,,,,,,,0, +10487,87.0,10.0,10.0,10.0,10.0,10.0,10.0,3,2.25 +9758,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +44894,70.0,8.0,10.0,10.0,8.0,10.0,7.0,4,3.53 +49568,,,,,,,,0, +12911,,,,,,,,0, +48554,,,,,,,,0, +40881,,,,,,,,0, +18240,,,,,,,,0, +29762,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,2.0 +71281,100.0,8.0,8.0,8.0,8.0,8.0,8.0,1,0.75 +6114,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +22752,,,,,,,,0, +49128,95.0,10.0,9.0,10.0,10.0,9.0,9.0,4,4.0 +31478,,,,,,,,0, +36903,,,,,,,,0, +19414,,,,,,,,0, +65703,90.0,8.0,10.0,7.0,10.0,9.0,9.0,2,1.82 +2514,,,,,,,,0, +49342,,,,,,,,0, +16776,,,,,,,,0, +35759,90.0,10.0,10.0,10.0,8.0,9.0,10.0,2,2.0 +13392,80.0,10.0,6.0,10.0,8.0,8.0,8.0,1,1.0 +39250,20.0,2.0,2.0,2.0,2.0,2.0,2.0,1,0.73 +43934,,,,,,,,0, +44587,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +73218,,,,,,,,0, +44346,,,,,,,,0, +62418,60.0,10.0,10.0,10.0,8.0,10.0,8.0,1,1.0 +36408,,,,,,,,0, +6866,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,4.86 +28323,,,,,,,,0, +74961,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +71002,100.0,9.0,9.0,10.0,10.0,10.0,10.0,2,2.0 +70934,100.0,10.0,8.0,10.0,10.0,9.0,10.0,2,2.0 +66830,93.0,9.0,10.0,9.0,9.0,9.0,9.0,3,2.65 +59107,,,,,,,,0, +30308,,,,,,,,0, +22107,,,,,,,,0, +6918,,,,,,,,0, +70914,97.0,10.0,10.0,10.0,10.0,9.0,10.0,7,6.36 +22315,,,,,,,,1,1.0 +23399,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,1.0 +57902,100.0,10.0,6.0,10.0,10.0,10.0,8.0,1,1.0 +9519,85.0,10.0,9.0,10.0,10.0,9.0,9.0,8,6.67 +3594,100.0,9.0,9.0,10.0,8.0,8.0,9.0,2,1.67 +26915,80.0,2.0,2.0,2.0,2.0,2.0,2.0,1,0.81 +37579,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +61548,80.0,9.0,9.0,3.0,6.0,9.0,8.0,2,1.76 +52796,,,,,,,,0, +24313,,,,,,,,0, +56574,80.0,10.0,10.0,10.0,10.0,8.0,8.0,1,1.0 +6500,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,2.0 +40568,,,,,,,,0, +31968,100.0,10.0,10.0,10.0,10.0,9.0,9.0,4,4.0 +36474,,,,,,,,0, +33951,,,,,,,,0, +29039,,,,,,,,0, +29747,,,,,,,,0, +42564,,,,,,,,0, +18428,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +54042,,,,,,,,0, +64096,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +34834,100.0,10.0,10.0,9.0,10.0,10.0,9.0,6,4.39 +70009,80.0,8.0,10.0,6.0,10.0,10.0,8.0,1,1.0 +60136,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,1.46 +38812,100.0,9.0,10.0,10.0,10.0,10.0,10.0,6,6.0 +28022,93.0,9.0,10.0,9.0,10.0,9.0,9.0,3,3.0 +5724,100.0,10.0,6.0,10.0,10.0,10.0,10.0,2,1.5 +666,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.77 +9023,,,,,,,,0, +26560,,,,,,,,0, +53625,,,,,,,,0, +43601,,,,,,,,0, +24082,,,,,,,,0, +43252,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +10627,,,,,,,,0, +33405,100.0,10.0,10.0,10.0,8.0,10.0,8.0,1,0.88 +60555,,,,,,,,0, +17924,,,,,,,,0, +8975,,,,,,,,0, +52293,,,,,,,,0, +31135,,,,,,,,0, +8350,,,,,,,,0, +14344,,,,,,,,0, +28049,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +28230,80.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.5 +12835,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,1.54 +20787,,,,,,,,0, +43135,,,,,,,,0, +68713,,,,,,,,0, +29092,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,3.0 +36654,,,,,,,,0, +13423,80.0,8.0,8.0,8.0,10.0,10.0,8.0,1,0.88 +11900,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +62627,,,,,,,,0, +10942,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,5.29 +51794,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.62 +61539,,,,,,,,0, +37652,,,,,,,,0, +46506,100.0,10.0,10.0,10.0,10.0,9.0,9.0,2,2.0 +43199,95.0,10.0,10.0,10.0,10.0,10.0,10.0,5,5.0 +31653,,,,,,,,0, +75849,,,,,,,,0, +16307,,,,,,,,0, +53848,100.0,6.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +67630,,,,,,,,1,0.79 +19927,,,,,,,,0, +22045,,,,,,,,0, +62912,,,,,,,,1,0.81 +64750,,,,,,,,0, +2120,,,,,,,,0, +19195,,,,,,,,0, +29392,,,,,,,,0, +11241,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +29479,,,,,,,,0, +490,,,,,,,,0, +9697,,,,,,,,1,1.0 +75548,60.0,10.0,10.0,6.0,2.0,10.0,8.0,1,1.0 +69945,87.0,8.0,9.0,9.0,9.0,9.0,8.0,3,3.0 +75088,,,,,,,,0, +6475,,,,,,,,0, +21834,,,,,,,,0, +38352,90.0,10.0,10.0,10.0,9.0,10.0,9.0,4,3.33 +12670,73.0,9.0,7.0,9.0,10.0,10.0,7.0,4,3.24 +50801,,,,,,,,0, +66882,100.0,10.0,9.0,10.0,10.0,10.0,10.0,6,5.29 +11733,,,,,,,,0, +12521,87.0,10.0,10.0,10.0,10.0,10.0,9.0,3,3.0 +17037,80.0,8.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +68400,,,,,,,,0, +55993,,,,,,,,0, +69733,,,,,,,,0, +54329,83.0,10.0,8.0,9.0,10.0,9.0,9.0,6,5.45 +59539,100.0,10.0,9.0,10.0,10.0,8.0,10.0,2,2.0 +41074,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +32335,,,,,,,,0, +22600,60.0,10.0,10.0,10.0,7.0,9.0,7.0,2,1.71 +23183,60.0,10.0,10.0,10.0,10.0,10.0,6.0,1,1.0 +42191,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +49294,,,,,,,,1,0.88 +26590,,,,,,,,0, +61547,,,,,,,,0, +18142,,,,,,,,0, +17170,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,3.53 +17598,,,,,,,,0, +27991,,,,,,,,0, +61733,,,,,,,,0, +46888,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +74159,70.0,8.0,6.0,9.0,8.0,9.0,7.0,2,1.76 +53955,,,,,,,,0, +71489,,,,,,,,0, +35113,,,,,,,,0, +43581,,,,,,,,0, +72362,,,,,,,,0, +57691,100.0,9.0,9.0,10.0,10.0,9.0,9.0,3,3.0 +45631,,,,,,,,0, +23875,,,,,,,,0, +2131,,,,,,,,0, +57732,,,,,,,,0, +6158,,,,,,,,0, +26997,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +23043,92.0,10.0,9.0,10.0,10.0,10.0,8.0,5,4.05 +37068,,,,,,,,0, +54471,88.0,8.0,9.0,9.0,10.0,10.0,8.0,8,6.86 +54375,,,,,,,,0, +36879,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +19165,,,,,,,,0, +6257,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.88 +69491,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +28190,,,,,,,,0, +63162,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,2.14 +35590,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,1.0 +26194,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +17199,,,,,,,,0, +1484,,,,,,,,1,0.7 +12993,100.0,10.0,9.0,9.0,10.0,8.0,10.0,3,3.0 +60872,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,1.0 +34549,,,,,,,,0, +34837,,,,,,,,0, +10655,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,2.14 +45070,60.0,6.0,6.0,10.0,10.0,10.0,10.0,1,1.0 +24621,,,,,,,,0, +58437,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +43415,,,,,,,,0, +9428,90.0,9.0,8.0,9.0,10.0,9.0,9.0,2,2.0 +4353,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +73389,,,,,,,,0, +49139,60.0,8.0,4.0,10.0,10.0,10.0,6.0,1,1.0 +67760,,,,,,,,0, +60894,93.0,10.0,10.0,10.0,10.0,10.0,9.0,6,4.39 +2608,97.0,10.0,10.0,10.0,10.0,10.0,10.0,6,6.0 +59981,80.0,9.0,9.0,8.0,9.0,7.0,8.0,3,3.0 +23712,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +13256,,,,,,,,1,0.91 +34774,,,,,,,,0, +39048,,,,,,,,0, +46605,60.0,2.0,6.0,8.0,10.0,10.0,4.0,1,1.0 +48304,,,,,,,,0, +26342,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +61907,88.0,8.0,9.0,8.0,9.0,8.0,8.0,5,5.0 +6422,,,,,,,,0, +52958,100.0,10.0,10.0,10.0,10.0,6.0,10.0,1,1.0 +23033,,,,,,,,0, +32843,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.73 +2196,,,,,,,,1,0.79 +19074,,,,,,,,0, +50024,,,,,,,,0, +11965,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,3.0 +52521,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,3.0 +6572,84.0,10.0,9.0,10.0,10.0,9.0,10.0,5,3.66 +35049,,,,,,,,0, +44379,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,1.54 +5857,,,,,,,,0, +18468,,,,,,,,0, +55196,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,2.5 +70845,,,,,,,,0, +865,60.0,4.0,4.0,6.0,8.0,8.0,4.0,1,1.0 +45534,,,,,,,,0, +53306,98.0,10.0,10.0,10.0,10.0,9.0,9.0,10,8.82 +36891,93.0,10.0,9.0,9.0,9.0,10.0,9.0,6,6.0 +39903,100.0,10.0,10.0,7.0,10.0,8.0,9.0,2,2.0 +27054,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +35565,,,,,,,,0, +13096,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,2.14 +57706,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +13927,,,,,,,,0, +33257,100.0,9.0,9.0,10.0,10.0,8.0,9.0,3,2.2 +31911,,,,,,,,0, +53794,,,,,,,,0, +36126,92.0,10.0,10.0,10.0,10.0,10.0,9.0,5,5.0 +28488,,,,,,,,0, +7616,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +67983,,,,,,,,0, +54228,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,2.65 +73284,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +19880,93.0,9.0,9.0,9.0,9.0,9.0,9.0,3,2.5 +51788,73.0,8.0,9.0,9.0,9.0,9.0,7.0,3,2.73 +62104,,,,,,,,0, +8667,,,,,,,,0, +43742,100.0,10.0,8.0,10.0,10.0,8.0,10.0,1,1.0 +1678,,,,,,,,0, +11915,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,2.0 +15395,100.0,9.0,8.0,10.0,8.0,9.0,9.0,2,1.82 +29232,93.0,10.0,9.0,10.0,9.0,9.0,10.0,3,3.0 +43575,100.0,10.0,9.0,9.0,9.0,10.0,10.0,3,2.65 +71461,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +21450,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,3.0 +29013,,,,,,,,0, +44765,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.82 +21419,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.88 +74401,,,,,,,,0, +7731,,,,,,,,0, +19410,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +46467,,,,,,,,0, +75228,,,,,,,,0, +51932,100.0,10.0,8.0,10.0,10.0,9.0,10.0,2,2.0 +32985,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,1.0 +35137,73.0,7.0,7.0,7.0,7.0,7.0,7.0,4,3.33 +12473,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.58 +67126,94.0,10.0,10.0,9.0,10.0,9.0,9.0,7,6.18 +74297,,,,,,,,0, +21508,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.91 +16832,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.79 +3588,,,,,,,,0, +1478,,,,,,,,0, +15426,,,,,,,,0, +35144,97.0,10.0,10.0,10.0,10.0,9.0,10.0,6,6.0 +16345,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.58 +48324,,,,,,,,1,0.73 +17352,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.82 +39176,90.0,10.0,8.0,10.0,10.0,10.0,9.0,2,2.0 +67458,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,2.0 +8012,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,3.0 +40251,,,,,,,,0, +41034,90.0,9.0,9.0,9.0,9.0,9.0,9.0,2,1.67 +71435,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,4.29 +4833,,,,,,,,0, +48537,,,,,,,,0, +26624,,,,,,,,0, +15020,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,6.0 +2772,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +74081,100.0,8.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +33080,,,,,,,,0, +1024,90.0,10.0,10.0,10.0,10.0,9.0,9.0,2,2.0 +23245,100.0,10.0,9.0,10.0,9.0,9.0,10.0,2,2.0 +45133,,,,,,,,0, +40171,,,,,,,,0, +70116,87.0,10.0,9.0,10.0,10.0,9.0,9.0,3,3.0 +29843,,,,,,,,0, +22092,,,,,,,,0, +1592,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,6.36 +46768,,,,,,,,0, +59623,80.0,10.0,8.0,10.0,10.0,10.0,9.0,2,2.0 +76187,100.0,10.0,10.0,10.0,9.0,10.0,10.0,2,1.62 +65848,,,,,,,,0, +23462,,,,,,,,0, +60224,90.0,9.0,10.0,10.0,9.0,9.0,9.0,4,3.33 +19798,,,,,,,,0, +60808,,,,,,,,0, +50940,80.0,9.0,7.0,10.0,10.0,10.0,9.0,3,3.0 +27161,,,,,,,,1,1.0 +13914,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,3.0 +7472,90.0,9.0,9.0,9.0,10.0,8.0,9.0,2,2.0 +11069,100.0,9.0,9.0,10.0,9.0,9.0,10.0,3,3.0 +52177,,,,,,,,0, +58324,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.86 +9553,60.0,10.0,2.0,10.0,10.0,10.0,6.0,4,3.33 +10102,90.0,10.0,8.0,10.0,10.0,10.0,10.0,4,4.0 +19178,,,,,,,,0, +39542,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,2.5 +41505,,,,,,,,0, +23752,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,2.65 +14718,,,,,,,,1, +55653,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,4.0 +69793,,,,,,,,0, +16691,,,,,,,,1,1.0 +54637,80.0,9.0,7.0,9.0,10.0,10.0,9.0,2,2.0 +73901,100.0,9.0,10.0,9.0,10.0,9.0,9.0,3,2.65 +70176,,,,,,,,0, +54240,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,3.0 +30030,73.0,9.0,8.0,10.0,10.0,10.0,9.0,3,2.37 +32713,,,,,,,,0, +73520,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +47331,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +66701,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,6.0 +19210,,,,,,,,0, +34284,20.0,2.0,2.0,2.0,2.0,2.0,2.0,1,1.0 +39401,90.0,10.0,9.0,10.0,10.0,10.0,9.0,8,8.0 +75067,,,,,,,,0, +20913,,,,,,,,0, +58461,,,,,,,,0, +2812,80.0,10.0,10.0,10.0,10.0,8.0,8.0,1,1.0 +33950,,,,,,,,0, +20761,,,,,,,,0, +65967,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +4277,60.0,6.0,7.0,8.0,10.0,7.0,4.0,2,2.0 +34786,,,,,,,,0, +29306,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +71245,,,,,,,,0, +25591,,,,,,,,0, +20064,,,,,,,,0, +30837,,,,,,,,0, +65973,,,,,,,,0, +62394,,,,,,,,0, +72911,,,,,,,,0, +45124,,,,,,,,0, +54222,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,4.0 +73323,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,2.57 +23158,,,,,,,,1, +59846,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +58367,,,,,,,,0, +38660,,,,,,,,0, +7527,,,,,,,,0, +30525,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,8.0 +26171,,,,,,,,0, +75489,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +4910,,,,,,,,0, +16966,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,3.0 +62683,,,,,,,,0, +8250,,,,,,,,0, +69429,100.0,10.0,10.0,9.0,10.0,9.0,10.0,3,2.57 +38573,,,,,,,,1,1.0 +30932,,,,,,,,0, +54339,,,,,,,,0, +48807,,,,,,,,0, +53002,60.0,7.0,7.0,5.0,5.0,6.0,6.0,2,1.82 +32878,,,,,,,,0, +14488,100.0,10.0,10.0,8.0,10.0,10.0,10.0,1,1.0 +23500,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +48633,100.0,10.0,10.0,10.0,10.0,10.0,10.0,9,9.0 +34078,,,,,,,,1,1.0 +57216,,,,,,,,0, +7743,,,,,,,,0, +12492,98.0,10.0,10.0,10.0,10.0,10.0,10.0,8,7.5 +55103,100.0,10.0,10.0,10.0,10.0,10.0,10.0,11,9.17 +70509,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +15598,40.0,4.0,2.0,2.0,4.0,4.0,4.0,1,1.0 +4814,,,,,,,,0, +62757,,,,,,,,0, +42445,,,,,,,,0, +12977,,,,,,,,1,1.0 +70826,98.0,10.0,9.0,10.0,10.0,10.0,9.0,9,7.3 +28757,,,,,,,,0, +46809,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,2.0 +53142,,,,,,,,0, +22291,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +13779,100.0,8.0,10.0,10.0,10.0,8.0,10.0,1,0.91 +70630,,,,,,,,0, +53775,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +52253,100.0,10.0,10.0,10.0,8.0,10.0,10.0,1,1.0 +49907,,,,,,,,0, +70141,100.0,8.0,10.0,10.0,10.0,8.0,10.0,1,1.0 +15662,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +48911,,,,,,,,0, +55868,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,3.0 +12606,,,,,,,,0, +55207,,,,,,,,0, +73443,,,,,,,,0, +34308,93.0,9.0,9.0,9.0,10.0,10.0,9.0,3,3.0 +69086,60.0,7.0,6.0,8.0,8.0,9.0,7.0,2,2.0 +51796,,,,,,,,0, +41755,,,,,,,,0, +24178,40.0,4.0,10.0,6.0,6.0,10.0,4.0,1,1.0 +11527,80.0,10.0,9.0,9.0,9.0,9.0,7.0,4,3.53 +46640,93.0,9.0,8.0,10.0,9.0,10.0,9.0,6,5.14 +61743,80.0,8.0,8.0,10.0,10.0,10.0,9.0,2,1.76 +8640,,,,,,,,0, +47012,60.0,8.0,8.0,10.0,10.0,10.0,6.0,1,1.0 +64591,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +62557,,,,,,,,0, +58007,100.0,10.0,8.0,10.0,10.0,8.0,10.0,1,1.0 +47491,73.0,8.0,8.0,7.0,7.0,7.0,9.0,3,3.0 +32114,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,3.53 +17592,100.0,10.0,10.0,10.0,10.0,6.0,10.0,1,0.86 +27832,,,,,,,,0, +58128,,,,,,,,0, +49025,97.0,10.0,10.0,10.0,10.0,9.0,10.0,6,5.14 +41117,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +57611,,,,,,,,0, +9650,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,4.0 +51733,,,,,,,,0, +59715,,,,,,,,0, +12551,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +57294,,,,,,,,0, +39317,,,,,,,,0, +18206,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,6.86 +73316,,,,,,,,0, +39283,,,,,,,,0, +6979,,,,,,,,0, +70888,,,,,,,,0, +70398,,,,,,,,0, +14114,,,,,,,,0, +48877,,,,,,,,0, +39948,,,,,,,,0, +51521,,,,,,,,0, +71572,,,,,,,,0, +13164,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.87 +42960,100.0,10.0,10.0,10.0,10.0,9.0,9.0,2,2.0 +7305,,,,,,,,0, +28594,,,,,,,,0, +58181,,,,,,,,0, +10014,90.0,10.0,9.0,10.0,10.0,9.0,9.0,4,3.64 +49672,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +31606,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +7321,,,,,,,,0, +32777,,,,,,,,0, +38095,,,,,,,,0, +4434,,,,,,,,0, +40997,,,,,,,,1,1.0 +30630,97.0,10.0,9.0,10.0,10.0,9.0,10.0,6,6.0 +13100,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,4.0 +49348,,,,,,,,0, +68748,80.0,6.0,6.0,10.0,10.0,10.0,8.0,1,1.0 +21763,100.0,10.0,6.0,10.0,10.0,10.0,10.0,1,0.88 +10293,100.0,10.0,10.0,10.0,10.0,10.0,9.0,9,9.0 +3308,,,,,,,,0, +69566,60.0,10.0,10.0,10.0,10.0,10.0,8.0,1,1.0 +41977,90.0,10.0,8.0,10.0,10.0,9.0,10.0,2,2.0 +65310,,,,,,,,0, +2532,,,,,,,,0, +20075,80.0,6.0,7.0,9.0,6.0,10.0,9.0,2,2.0 +29264,,,,,,,,0, +15150,90.0,10.0,10.0,10.0,10.0,10.0,9.0,3,3.0 +12415,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.88 +54351,,,,,,,,0, +72115,87.0,10.0,8.0,10.0,10.0,10.0,10.0,5,3.95 +62847,,,,,,,,0, +8,,,,,,,,0, +17079,90.0,9.0,9.0,10.0,9.0,10.0,10.0,2,2.0 +35989,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +1582,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +17947,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +55815,,,,,,,,0, +68988,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +47054,80.0,8.0,9.0,8.0,9.0,10.0,8.0,2,2.0 +17428,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +23982,,,,,,,,0, +29238,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +74809,20.0,2.0,2.0,2.0,2.0,2.0,2.0,1,0.79 +66032,60.0,6.0,8.0,10.0,10.0,10.0,10.0,1,1.0 +37149,,,,,,,,0, +5459,,,,,,,,0, +27452,92.0,10.0,9.0,10.0,10.0,10.0,9.0,5,5.0 +16384,,,,,,,,0, +28789,90.0,10.0,10.0,10.0,10.0,9.0,9.0,2,2.0 +16863,,,,,,,,0, +54139,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,1.0 +17152,80.0,4.0,10.0,10.0,6.0,10.0,8.0,1,1.0 +63133,,,,,,,,0, +11363,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +48002,,,,,,,,0, +53233,90.0,9.0,9.0,9.0,9.0,10.0,10.0,2,2.0 +27031,,,,,,,,0, +26315,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,4.0 +38056,100.0,9.0,9.0,10.0,9.0,9.0,9.0,3,3.0 +38336,,,,,,,,0, +59748,40.0,10.0,8.0,8.0,10.0,10.0,6.0,1,1.0 +44155,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +16786,,,,,,,,0, +34875,80.0,8.0,10.0,10.0,10.0,8.0,8.0,1,1.0 +44345,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +45503,,,,,,,,0, +38285,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,1.0 +62744,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +68479,,,,,,,,0, +55511,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,3.75 +67013,,,,,,,,0, +35475,90.0,8.0,10.0,8.0,10.0,10.0,9.0,2,2.0 +74980,,,,,,,,0, +24879,,,,,,,,0, +41167,,,,,,,,0, +36309,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.83 +5876,,,,,,,,0, +19890,,,,,,,,0, +29702,,,,,,,,0, +26840,,,,,,,,0, +41159,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,3.24 +25925,,,,,,,,0, +2410,,,,,,,,0, +46757,,,,,,,,0, +56580,,,,,,,,0, +46928,,,,,,,,0, +61766,80.0,10.0,10.0,10.0,10.0,4.0,8.0,1,1.0 +46855,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +30299,,,,,,,,0, +46983,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +30151,80.0,10.0,6.0,10.0,10.0,10.0,10.0,1,1.0 +6672,,,,,,,,1,0.88 +36530,,,,,,,,0, +60549,,,,,,,,0, +75041,,,,,,,,0, +40145,,,,,,,,0, +36036,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.76 +60520,,,,,,,,0, +59761,100.0,10.0,9.0,9.0,10.0,9.0,10.0,2,2.0 +27839,,,,,,,,0, +18232,100.0,10.0,9.0,10.0,10.0,9.0,10.0,2,2.0 +43726,100.0,10.0,9.0,10.0,10.0,9.0,10.0,2,2.0 +1493,,,,,,,,0, +65134,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,5.62 +44911,,,,,,,,2,2.0 +69919,,,,,,,,0, +36199,,,,,,,,0, +64848,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +29450,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +69545,,,,,,,,0, +52442,100.0,10.0,10.0,9.0,10.0,10.0,10.0,4,3.24 +21111,,,,,,,,0, +18064,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +31613,,,,,,,,0, +47526,,,,,,,,0, +25422,,,,,,,,0, +76359,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.88 +9100,,,,,,,,0, +64700,,,,,,,,0, +17329,,,,,,,,0, +26839,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,3.0 +21893,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.81 +56640,,,,,,,,0, +15181,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,1.0 +69625,,,,,,,,0, +34026,60.0,10.0,8.0,4.0,8.0,10.0,8.0,1,1.0 +63687,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,1.76 +25474,,,,,,,,0, +16163,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,1.0 +848,,,,,,,,0, +27001,20.0,6.0,6.0,4.0,2.0,6.0,8.0,1,0.79 +16627,,,,,,,,0, +42376,,,,,,,,0, +53308,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,2.0 +45317,,,,,,,,0, +68021,,,,,,,,0, +18415,,,,,,,,0, +28759,,,,,,,,0, +73416,,,,,,,,0, +49286,,,,,,,,0, +15894,,,,,,,,0, +20837,,,,,,,,0, +14153,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,1.0 +36570,,,,,,,,0, +10087,,,,,,,,0, +23225,,,,,,,,0, +6792,100.0,10.0,10.0,10.0,8.0,8.0,10.0,1,1.0 +32604,,,,,,,,0, +69314,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +13618,,,,,,,,0, +16689,,,,,,,,0, +49123,,,,,,,,0, +5429,,,,,,,,0, +40516,,,,,,,,0, +2900,,,,,,,,0, +49222,,,,,,,,0, +48252,,,,,,,,0, +1513,80.0,6.0,8.0,10.0,8.0,10.0,10.0,1,1.0 +64495,100.0,10.0,8.0,10.0,10.0,10.0,10.0,2,2.0 +28071,,,,,,,,0, +6669,,,,,,,,0, +48337,,,,,,,,0, +57168,,,,,,,,0, +52096,93.0,10.0,9.0,9.0,9.0,9.0,9.0,3,3.0 +74319,40.0,6.0,2.0,8.0,6.0,10.0,4.0,1,1.0 +35146,,,,,,,,1,1.0 +42606,,,,,,,,0, +56995,,,,,,,,0, +4374,,,,,,,,0, +45331,,,,,,,,0, +54017,,,,,,,,0, +10361,,,,,,,,0, +71604,,,,,,,,0, +43464,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +66296,,,,,,,,0, +39748,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +30983,,,,,,,,0, +56336,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +37508,80.0,10.0,8.0,10.0,10.0,10.0,10.0,1,0.91 +15525,80.0,10.0,8.0,8.0,10.0,6.0,10.0,1,1.0 +8880,,,,,,,,0, +51561,90.0,10.0,9.0,10.0,10.0,10.0,10.0,2,2.0 +38323,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,3.0 +19497,,,,,,,,0, +55750,,,,,,,,0, +72782,,,,,,,,0, +76850,80.0,9.0,9.0,9.0,9.0,7.0,9.0,2,2.0 +40381,,,,,,,,0, +53633,,,,,,,,0, +3410,90.0,10.0,10.0,10.0,8.0,10.0,9.0,4,4.0 +39076,,,,,,,,0, +44535,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +53962,,,,,,,,0, +71896,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,6.18 +21173,,,,,,,,0, +61094,100.0,10.0,10.0,9.0,10.0,10.0,10.0,2,2.0 +66098,60.0,8.0,10.0,6.0,2.0,10.0,8.0,1,1.0 +50741,,,,,,,,0, +5933,,,,,,,,0, +35954,,,,,,,,0, +64270,,,,,,,,0, +9823,,,,,,,,0, +10372,,,,,,,,0, +14043,,,,,,,,0, +31174,100.0,8.0,10.0,10.0,8.0,10.0,10.0,1,0.91 +16484,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.62 +61837,80.0,8.0,6.0,10.0,10.0,10.0,6.0,1,1.0 +69620,,,,,,,,0, +36062,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +46210,,,,,,,,0, +5545,95.0,9.0,10.0,10.0,10.0,9.0,10.0,4,4.0 +40794,100.0,9.0,10.0,10.0,10.0,10.0,9.0,2,2.0 +54702,87.0,10.0,9.0,10.0,9.0,10.0,8.0,6,5.29 +44215,,,,,,,,0, +8413,100.0,10.0,9.0,10.0,10.0,10.0,9.0,2,2.0 +38096,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,1.87 +37368,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.83 +18216,90.0,9.0,9.0,10.0,10.0,10.0,9.0,8,7.5 +28448,,,,,,,,0, +50131,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,2.0 +70637,,,,,,,,0, +67809,,,,,,,,0, +30272,,,,,,,,0, +17566,,,,,,,,0, +6112,100.0,10.0,8.0,10.0,10.0,8.0,10.0,1,1.0 +32361,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,2.37 +28726,,,,,,,,0, +31242,,,,,,,,0, +22104,90.0,10.0,10.0,10.0,9.0,9.0,9.0,2,2.0 +14969,,,,,,,,0, +40258,,,,,,,,0, +67059,100.0,10.0,10.0,10.0,10.0,9.0,10.0,8,6.86 +15283,,,,,,,,0, +6922,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.81 +73663,,,,,,,,0, +43244,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,2.37 +74715,,,,,,,,0, +54509,60.0,6.0,10.0,4.0,4.0,6.0,4.0,1,1.0 +1571,97.0,10.0,9.0,10.0,10.0,9.0,10.0,6,5.29 +77083,92.0,10.0,10.0,10.0,10.0,8.0,9.0,5,5.0 +28285,100.0,10.0,10.0,10.0,9.0,10.0,10.0,3,3.0 +47082,,,,,,,,0, +315,100.0,10.0,10.0,10.0,10.0,10.0,10.0,12,12.0 +50889,100.0,8.0,10.0,10.0,10.0,10.0,8.0,1,1.0 +8466,,,,,,,,0, +6802,70.0,9.0,6.0,7.0,6.0,6.0,7.0,2,2.0 +76288,97.0,10.0,10.0,10.0,10.0,10.0,9.0,6,6.0 +40424,60.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +52026,,,,,,,,0, +12873,95.0,10.0,10.0,10.0,10.0,9.0,9.0,4,4.0 +32197,,,,,,,,0, +40618,60.0,6.0,4.0,4.0,10.0,6.0,6.0,1,1.0 +60938,80.0,10.0,6.0,8.0,10.0,10.0,6.0,1,1.0 +41991,90.0,9.0,9.0,10.0,10.0,10.0,8.0,2,2.0 +33213,,,,,,,,0, +66717,,,,,,,,0, +40737,,,,,,,,0, +6893,,,,,,,,0, +58900,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +63749,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,1.0 +63530,100.0,10.0,10.0,8.0,10.0,10.0,10.0,3,3.0 +28356,,,,,,,,0, +34527,,,,,,,,0, +75660,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,1.0 +60022,,,,,,,,0, +40296,,,,,,,,0, +19623,,,,,,,,1,1.0 +9436,90.0,10.0,10.0,10.0,10.0,8.0,9.0,2,2.0 +7052,100.0,10.0,8.0,10.0,10.0,8.0,8.0,1,1.0 +20889,,,,,,,,0, +30798,,,,,,,,0, +24375,60.0,4.0,2.0,6.0,6.0,10.0,6.0,1,1.0 +14889,,,,,,,,0, +58688,,,,,,,,0, +4142,,,,,,,,0, +57937,,,,,,,,0, +24189,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,1.0 +57057,,,,,,,,1,0.79 +71869,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,4.0 +5846,,,,,,,,0, +58095,90.0,10.0,9.0,9.0,9.0,10.0,8.0,2,2.0 +66898,,,,,,,,0, +57903,,,,,,,,0, +10457,,,,,,,,0, +10111,100.0,10.0,10.0,9.0,10.0,10.0,10.0,3,3.0 +8092,,,,,,,,0, +38662,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +15448,,,,,,,,0, +65176,,,,,,,,0, +2887,,,,,,,,0, +74541,,,,,,,,0, +38749,80.0,9.0,9.0,10.0,10.0,10.0,9.0,2,2.0 +39962,,,,,,,,0, +49824,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,8.0 +8928,,,,,,,,0, +26441,,,,,,,,0, +10901,,,,,,,,0, +6281,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +40141,,,,,,,,0, +29923,,,,,,,,0, +10260,,,,,,,,0, +56546,60.0,6.0,6.0,2.0,6.0,10.0,10.0,1,1.0 +50396,,,,,,,,0, +9060,,,,,,,,0, +35217,40.0,4.0,2.0,6.0,2.0,8.0,6.0,1,1.0 +33012,,,,,,,,0, +11434,,,,,,,,0, +41220,100.0,10.0,9.0,10.0,10.0,10.0,10.0,5,5.0 +69645,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +7857,,,,,,,,0, +63672,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +73128,,,,,,,,0, +71430,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,1.0 +68854,,,,,,,,0, +23626,,,,,,,,0, +7734,,,,,,,,0, +2463,,,,,,,,0, +31473,100.0,10.0,8.0,10.0,10.0,10.0,8.0,1,1.0 +24985,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,1.0 +2149,,,,,,,,0, +11206,89.0,9.0,7.0,10.0,10.0,9.0,9.0,7,5.83 +46611,,,,,,,,0, +42285,70.0,7.0,6.0,8.0,7.0,9.0,7.0,2,1.76 +17832,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,4.0 +64036,,,,,,,,0, +6131,,,,,,,,0, +27475,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,4.0 +24021,80.0,10.0,8.0,10.0,10.0,10.0,8.0,1,1.0 +7169,,,,,,,,0, +49032,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +9819,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.88 +44416,,,,,,,,0, +68342,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +56447,,,,,,,,0, +15976,,,,,,,,0, +63379,,,,,,,,0, +3267,90.0,9.0,10.0,10.0,10.0,10.0,10.0,4,4.0 +29236,,,,,,,,0, +71614,,,,,,,,0, +30681,96.0,9.0,9.0,10.0,10.0,9.0,9.0,5,5.0 +20678,,,,,,,,0, +37447,,,,,,,,0, +4267,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +10516,,,,,,,,0, +70276,,,,,,,,0, +21796,,,,,,,,0, +14972,,,,,,,,0, +3103,,,,,,,,0, +4666,,,,,,,,0, +23134,73.0,8.0,6.0,9.0,10.0,9.0,8.0,6,6.0 +20979,100.0,10.0,10.0,10.0,10.0,8.0,10.0,2,2.0 +35631,,,,,,,,0, +38996,,,,,,,,0, +61139,,,,,,,,0, +37732,,,,,,,,0, +64466,,,,,,,,0, +8984,80.0,8.0,6.0,10.0,8.0,8.0,10.0,1,0.88 +49327,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +52228,94.0,9.0,8.0,10.0,10.0,8.0,9.0,7,7.0 +56559,91.0,9.0,10.0,9.0,9.0,9.0,9.0,9,7.94 +35646,90.0,9.0,8.0,10.0,10.0,9.0,9.0,6,5.14 +42239,,,,,,,,0, +17268,93.0,10.0,10.0,10.0,10.0,9.0,10.0,3,3.0 +19825,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +30511,92.0,9.0,10.0,9.0,9.0,10.0,10.0,10,8.82 +35662,20.0,2.0,2.0,2.0,2.0,2.0,2.0,1,1.0 +60513,95.0,10.0,10.0,10.0,10.0,10.0,10.0,8,7.06 +29475,,,,,,,,0, +2609,100.0,10.0,10.0,9.0,10.0,10.0,9.0,3,3.0 +52584,,,,,,,,0, +17488,,,,,,,,0, +19298,92.0,9.0,9.0,9.0,9.0,9.0,9.0,10,10.0 +27182,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +43500,,,,,,,,0, +4846,,,,,,,,0, +48035,,,,,,,,0, +39971,,,,,,,,0, +7476,100.0,10.0,10.0,10.0,10.0,8.0,10.0,2,2.0 +37016,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,1.0 +821,80.0,10.0,7.0,10.0,10.0,10.0,10.0,2,1.76 +66867,,,,,,,,0, +33944,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.86 +71711,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,3.0 +46038,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +63796,100.0,10.0,10.0,10.0,10.0,10.0,9.0,6,5.14 +38918,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +2628,,,,,,,,0, +30643,,,,,,,,1, +50502,,,,,,,,0, +60245,90.0,9.0,8.0,10.0,10.0,9.0,9.0,2,2.0 +75287,,,,,,,,0, +14059,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +55129,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,5.29 +59534,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +41713,,,,,,,,1,1.0 +33640,,,,,,,,0, +16876,,,,,,,,0, +27959,,,,,,,,0, +68193,,,,,,,,0, +4850,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +59514,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,3.0 +41611,,,,,,,,0, +14048,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,2.0 +9890,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +9871,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,1.0 +53297,,,,,,,,0, +31610,,,,,,,,0, +9908,,,,,,,,0, +10200,100.0,10.0,10.0,10.0,10.0,10.0,10.0,10,10.0 +49307,,,,,,,,0, +76553,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,2.0 +49162,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,4.0 +44435,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,3.0 +9637,,,,,,,,0, +70389,,,,,,,,0, +43639,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.88 +74515,,,,,,,,0, +72400,,,,,,,,0, +50390,,,,,,,,0, +69701,,,,,,,,0, +56742,,,,,,,,0, +48891,90.0,10.0,9.0,10.0,10.0,9.0,10.0,2,2.0 +59173,,,,,,,,0, +62238,100.0,10.0,10.0,8.0,10.0,10.0,10.0,1,1.0 +72191,,,,,,,,0, +57297,,,,,,,,0, +69278,90.0,9.0,9.0,10.0,10.0,10.0,9.0,4,3.75 +62387,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +66534,60.0,6.0,8.0,10.0,8.0,10.0,6.0,1,1.0 +53425,,,,,,,,0, +50937,,,,,,,,0, +39227,,,,,,,,0, +30441,,,,,,,,0, +54173,,,,,,,,0, +72127,,,,,,,,6,6.0 +39007,90.0,9.0,10.0,10.0,9.0,9.0,9.0,2,2.0 +44602,,,,,,,,0, +15089,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.91 +23758,,,,,,,,0, +67901,,,,,,,,0, +49163,,,,,,,,0, +10399,89.0,9.0,9.0,10.0,10.0,10.0,9.0,7,6.0 +55139,80.0,10.0,8.0,10.0,10.0,8.0,6.0,1,1.0 +2918,92.0,10.0,9.0,10.0,10.0,9.0,9.0,5,4.41 +24166,,,,,,,,0, +32126,,,,,,,,0, +36221,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,7.0 +73380,80.0,8.0,8.0,8.0,10.0,6.0,10.0,1,1.0 +33816,100.0,8.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +62977,90.0,8.0,9.0,10.0,10.0,10.0,9.0,4,3.43 +34055,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.91 +30727,,,,,,,,0, +17789,,,,,,,,0, +43675,,,,,,,,0, +1461,60.0,8.0,8.0,10.0,10.0,10.0,10.0,1,1.0 +57689,,,,,,,,0, +2688,,,,,,,,0, +26445,,,,,,,,0, +51396,,,,,,,,0, +39600,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +23277,,,,,,,,0, +17420,,,,,,,,0, +53765,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +16492,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +40273,,,,,,,,0, +1828,,,,,,,,0, +13122,,,,,,,,0, +1113,60.0,10.0,10.0,8.0,10.0,10.0,8.0,1,1.0 +37062,,,,,,,,0, +65517,100.0,10.0,10.0,9.0,10.0,10.0,10.0,3,3.0 +55093,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +33755,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,1.0 +19883,,,,,,,,0, +9151,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,1.0 +49141,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,5.0 +19692,90.0,8.0,9.0,9.0,9.0,10.0,10.0,2,2.0 +60599,100.0,10.0,9.0,10.0,10.0,9.0,9.0,2,2.0 +64342,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +43940,60.0,8.0,8.0,6.0,8.0,10.0,6.0,1,1.0 +15813,,,,,,,,0, +44115,,,,,,,,0, +63666,,,,,,,,0, +9892,100.0,10.0,10.0,9.0,10.0,10.0,9.0,3,3.0 +73168,,,,,,,,0, +75398,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,1.0 +70017,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +1032,,,,,,,,0, +35394,,,,,,,,0, +69435,,,,,,,,0, +26584,,,,,,,,0, +74340,,,,,,,,0, +52868,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +65530,,,,,,,,1,1.0 +43688,,,,,,,,1,1.0 +45396,,,,,,,,0, +45644,,,,,,,,0, +72162,,,,,,,,1,1.0 +55751,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +75251,90.0,9.0,10.0,9.0,10.0,10.0,9.0,2,2.0 +2098,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +61303,,,,,,,,0, +66417,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,2.0 +10095,100.0,10.0,10.0,10.0,10.0,9.0,9.0,4,4.0 +47247,,,,,,,,0, +11581,100.0,10.0,10.0,9.0,10.0,9.0,10.0,4,3.64 +42709,,,,,,,,0, +9868,,,,,,,,0, +8406,,,,,,,,0, +6927,,,,,,,,0, +56675,,,,,,,,0, +4591,,,,,,,,0, +29759,,,,,,,,0, +26942,,,,,,,,0, +34047,,,,,,,,0, +1777,,,,,,,,0, +21904,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +28102,,,,,,,,0, +59446,,,,,,,,2,2.0 +31055,,,,,,,,0, +67479,84.0,8.0,8.0,9.0,10.0,9.0,8.0,5,5.0 +8278,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,3.0 +6663,,,,,,,,2,2.0 +42372,100.0,10.0,10.0,10.0,10.0,10.0,6.0,1,1.0 +23156,,,,,,,,0, +64516,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +26189,100.0,10.0,10.0,10.0,10.0,10.0,8.0,2,1.71 +43445,,,,,,,,0, +68828,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +3911,,,,,,,,0, +44805,,,,,,,,1,1.0 +19491,,,,,,,,0, +67069,,,,,,,,0, +44978,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +37678,,,,,,,,0, +16560,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,7.27 +47831,,,,,,,,0, +53877,,,,,,,,0, +22580,,,,,,,,1,1.0 +16330,,,,,,,,0, +60701,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,3.0 +5321,,,,,,,,0, +22644,,,,,,,,0, +73101,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +43691,,,,,,,,0, +38510,,,,,,,,0, +36946,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +75744,100.0,10.0,8.0,10.0,10.0,10.0,10.0,2,2.0 +38602,,,,,,,,0, +30235,,,,,,,,0, +28773,,,,,,,,0, +47992,,,,,,,,1,1.0 +45129,80.0,9.0,9.0,9.0,10.0,8.0,9.0,3,3.0 +57698,,,,,,,,0, +30726,40.0,2.0,6.0,4.0,6.0,4.0,4.0,1,1.0 +20989,,,,,,,,0, +11584,,,,,,,,0, +37144,,,,,,,,0, +19574,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +20035,,,,,,,,0, +73281,80.0,10.0,10.0,8.0,10.0,10.0,10.0,1,1.0 +39475,,,,,,,,0, +20772,,,,,,,,0, +67472,60.0,10.0,6.0,10.0,8.0,8.0,8.0,1,1.0 +12352,,,,,,,,0, +9497,,,,,,,,0, +16933,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,1.0 +35160,,,,,,,,0, +4294,,,,,,,,0, +8279,90.0,9.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +64173,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +2258,93.0,10.0,9.0,10.0,10.0,9.0,9.0,3,3.0 +10182,90.0,10.0,10.0,10.0,10.0,9.0,10.0,2,2.0 +45029,,,,,,,,0, +4940,,,,,,,,0, +45311,97.0,10.0,10.0,10.0,10.0,9.0,10.0,6,6.0 +33411,,,,,,,,0, +3796,,,,,,,,0, +12045,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +26571,,,,,,,,0, +20395,92.0,9.0,8.0,10.0,10.0,10.0,9.0,5,5.0 +14749,90.0,8.0,8.0,9.0,10.0,8.0,8.0,2,2.0 +38187,,,,,,,,0, +8141,,,,,,,,0, +32229,,,,,,,,0, +1189,,,,,,,,0, +75070,,,,,,,,0, +14283,100.0,8.0,10.0,10.0,10.0,8.0,10.0,1,1.0 +17128,,,,,,,,0, +60258,,,,,,,,0, +33963,,,,,,,,0, +48526,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,3.0 +77085,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,0.88 +39633,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,1.0 +74441,,,,,,,,0, +55388,,,,,,,,0, +72298,,,,,,,,0, +43441,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +61798,93.0,10.0,9.0,10.0,10.0,10.0,10.0,3,2.65 +29541,,,,,,,,0, +38677,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,1.0 +51378,,,,,,,,0, +54737,,,,,,,,0, +75260,,,,,,,,1,1.0 +50988,,,,,,,,0, +38963,100.0,10.0,9.0,10.0,10.0,10.0,9.0,3,3.0 +23806,80.0,8.0,10.0,8.0,10.0,10.0,8.0,4,4.0 +26086,,,,,,,,0, +11321,95.0,10.0,10.0,10.0,10.0,10.0,10.0,8,8.0 +3783,100.0,10.0,10.0,10.0,6.0,8.0,10.0,1,1.0 +22636,,,,,,,,0, +67824,,,,,,,,0, +57352,,,,,,,,0, +24533,,,,,,,,0, +16288,100.0,8.0,10.0,10.0,10.0,8.0,8.0,1,1.0 +64651,97.0,10.0,9.0,10.0,10.0,9.0,9.0,7,7.0 +66478,,,,,,,,0, +71526,,,,,,,,0, +19974,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,1.87 +52131,,,,,,,,0, +8757,,,,,,,,0, +1021,,,,,,,,0, +74647,,,,,,,,0, +70420,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +28954,60.0,6.0,8.0,8.0,8.0,10.0,5.0,2,2.0 +72980,,,,,,,,0, +63427,100.0,10.0,10.0,10.0,10.0,9.0,9.0,2,2.0 +75139,,,,,,,,0, +1856,,,,,,,,0, +37038,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +25345,,,,,,,,0, +28388,,,,,,,,0, +14744,,,,,,,,0, +20933,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +41618,,,,,,,,0, +830,95.0,10.0,10.0,10.0,10.0,9.0,9.0,4,4.0 +43735,,,,,,,,0, +11782,,,,,,,,0, +64208,100.0,10.0,9.0,9.0,10.0,10.0,10.0,3,3.0 +10424,,,,,,,,0, +76924,100.0,10.0,10.0,8.0,10.0,10.0,8.0,1,1.0 +7803,,,,,,,,0, +6469,,,,,,,,0, +40820,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +38584,,,,,,,,1,0.94 +47967,,,,,,,,0, +3847,,,,,,,,0, +65088,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,3.0 +70954,,,,,,,,0, +17500,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +66992,,,,,,,,0, +44170,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +62999,,,,,,,,0, +59951,100.0,10.0,9.0,10.0,10.0,8.0,9.0,2,2.0 +34667,,,,,,,,0, +42412,,,,,,,,0, +62326,,,,,,,,0, +14248,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +27589,,,,,,,,0, +49007,,,,,,,,0, +15205,90.0,9.0,9.0,9.0,8.0,10.0,10.0,2,2.0 +37633,,,,,,,,0, +2943,90.0,10.0,10.0,10.0,10.0,10.0,9.0,2,2.0 +33661,80.0,10.0,10.0,10.0,10.0,8.0,10.0,1,1.0 +31064,,,,,,,,0, +9021,,,,,,,,0, +73847,,,,,,,,1,1.0 +36065,,,,,,,,0, +10121,,,,,,,,0, +5349,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +510,,,,,,,,0, +42544,,,,,,,,0, +33489,,,,,,,,0, +46880,,,,,,,,0, +51735,,,,,,,,0, +76913,,,,,,,,0, +75021,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +66254,,,,,,,,0, +14671,100.0,9.0,9.0,10.0,10.0,10.0,10.0,2,2.0 +15859,,,,,,,,0, +22875,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +13060,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +390,100.0,10.0,10.0,10.0,10.0,8.0,10.0,4,4.0 +5473,,,,,,,,0, +19181,,,,,,,,0, +535,,,,,,,,1, +28817,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,3.64 +33030,100.0,10.0,8.0,10.0,10.0,10.0,8.0,1,1.0 +55784,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,1.0 +70917,90.0,10.0,10.0,9.0,10.0,10.0,9.0,2,2.0 +5128,,,,,,,,0, +30813,80.0,10.0,10.0,8.0,10.0,8.0,8.0,1,1.0 +11397,100.0,10.0,10.0,10.0,10.0,9.0,9.0,2,2.0 +25034,100.0,10.0,10.0,9.0,10.0,9.0,9.0,3,3.0 +17694,,,,,,,,1, +41178,,,,,,,,0, +1595,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +56226,,,,,,,,0, +48819,,,,,,,,0, +5503,,,,,,,,0, +23771,,,,,,,,0, +51939,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,3.0 +7963,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +47655,,,,,,,,0, +24044,,,,,,,,1,1.0 +61236,,,,,,,,0, +40778,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,1.0 +8181,80.0,8.0,8.0,10.0,10.0,8.0,10.0,1,1.0 +52605,,,,,,,,0, +73923,,,,,,,,0, +461,87.0,10.0,6.0,10.0,10.0,10.0,9.0,3,3.0 +18096,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,1.0 +62726,,,,,,,,0, +8861,,,,,,,,0, +59074,100.0,10.0,10.0,10.0,10.0,10.0,10.0,5,5.0 +49210,93.0,10.0,10.0,9.0,10.0,9.0,10.0,15,15.0 +11514,,,,,,,,0, +66477,,,,,,,,0, +52914,,,,,,,,0, +60006,,,,,,,,0, +55892,,,,,,,,0, +14027,,,,,,,,0, +12909,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +48982,,,,,,,,0, +50888,,,,,,,,0, +49258,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +47114,93.0,9.0,9.0,9.0,10.0,9.0,9.0,4,4.0 +9431,,,,,,,,0, +25209,,,,,,,,0, +23484,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,2.0 +710,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,3.0 +23872,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,3.0 +76340,,,,,,,,0, +67844,,,,,,,,0, +21338,90.0,9.0,10.0,9.0,10.0,10.0,10.0,2,2.0 +43553,,,,,,,,0, +18928,,,,,,,,0, +40650,,,,,,,,0, +8998,90.0,10.0,10.0,9.0,10.0,10.0,10.0,4,4.0 +27604,80.0,8.0,10.0,10.0,10.0,6.0,8.0,1,1.0 +24169,93.0,10.0,8.0,9.0,10.0,9.0,10.0,3,3.0 +73431,,,,,,,,0, +6449,93.0,10.0,10.0,10.0,10.0,9.0,9.0,9,9.0 +62874,,,,,,,,0, +49551,,,,,,,,0, +9389,,,,,,,,0, +11037,,,,,,,,0, +22607,,,,,,,,0, +61062,,,,,,,,0, +35830,,,,,,,,0, +65578,,,,,,,,0, +76983,,,,,,,,0, +45961,90.0,9.0,8.0,10.0,10.0,8.0,8.0,2,2.0 +24605,100.0,10.0,10.0,10.0,10.0,8.0,9.0,3,2.81 +1959,,,,,,,,0, +2810,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +67566,,,,,,,,0, +55226,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +16841,,,,,,,,0, +6955,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,7.0 +26926,,,,,,,,0, +73499,,,,,,,,0, +3991,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +2055,,,,,,,,0, +53495,,,,,,,,0, +65567,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +77076,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,1.0 +10757,,,,,,,,0, +67294,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +53427,,,,,,,,0, +11089,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +13726,,,,,,,,0, +5587,100.0,8.0,10.0,10.0,10.0,6.0,10.0,1,1.0 +52025,,,,,,,,0, +45498,,,,,,,,0, +43960,,,,,,,,0, +19921,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,1.0 +7537,60.0,4.0,8.0,10.0,10.0,10.0,4.0,1,1.0 +20349,,,,,,,,0, +2195,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +61990,,,,,,,,0, +2917,,,,,,,,0, +57337,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +66949,,,,,,,,0, +44395,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +46526,,,,,,,,0, +38344,,,,,,,,0, +41866,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +40221,,,,,,,,0, +25780,,,,,,,,0, +17970,,,,,,,,0, +73145,,,,,,,,0, +54263,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +58517,,,,,,,,0, +12118,,,,,,,,0, +10793,,,,,,,,0, +32747,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +45488,80.0,10.0,10.0,10.0,8.0,8.0,8.0,1,1.0 +20286,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +47409,,,,,,,,0, +10412,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +22703,90.0,9.0,8.0,10.0,10.0,9.0,10.0,2,2.0 +24794,,,,,,,,0, +4403,,,,,,,,0, +4128,,,,,,,,1, +60852,,,,,,,,0, +50400,,,,,,,,0, +33774,,,,,,,,0, +21889,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,4.0 +13062,,,,,,,,1,1.0 +25781,,,,,,,,1,1.0 +12139,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +68073,80.0,8.0,8.0,10.0,10.0,10.0,8.0,1,1.0 +75852,93.0,10.0,9.0,9.0,9.0,10.0,10.0,4,4.0 +2878,,,,,,,,0, +60639,,,,,,,,0, +62188,,,,,,,,0, +76851,,,,,,,,0, +55160,,,,,,,,0, +26179,,,,,,,,0, +72758,,,,,,,,0, +50392,,,,,,,,0, +67174,100.0,9.0,9.0,9.0,10.0,9.0,9.0,2,2.0 +55185,,,,,,,,0, +31137,,,,,,,,0, +2456,,,,,,,,1,1.0 +62948,,,,,,,,0, +57558,,,,,,,,0, +50251,,,,,,,,0, +61319,,,,,,,,0, +62071,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +6338,,,,,,,,0, +58510,,,,,,,,0, +25854,,,,,,,,0, +14378,,,,,,,,0, +25169,95.0,10.0,10.0,9.0,10.0,8.0,9.0,4,4.0 +44300,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +34844,,,,,,,,0, +67113,,,,,,,,0, +71235,,,,,,,,0, +41548,,,,,,,,0, +57601,,,,,,,,0, +46262,,,,,,,,0, +33485,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +45886,80.0,10.0,6.0,10.0,10.0,8.0,8.0,1,1.0 +53016,100.0,10.0,10.0,10.0,10.0,8.0,10.0,2,2.0 +35242,,,,,,,,0, +72303,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +12543,,,,,,,,0, +58956,,,,,,,,0, +76025,100.0,10.0,9.0,9.0,10.0,10.0,10.0,2,2.0 +73427,,,,,,,,0, +51827,,,,,,,,0, +63248,20.0,2.0,4.0,4.0,2.0,10.0,4.0,1,1.0 +22797,,,,,,,,0, +72958,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,3.0 +66278,,,,,,,,1,1.0 +41704,,,,,,,,0, +18408,,,,,,,,0, +77074,,,,,,,,0, +53423,,,,,,,,0, +42203,90.0,10.0,9.0,10.0,10.0,10.0,9.0,4,4.0 +15166,,,,,,,,0, +11032,,,,,,,,0, +11559,,,,,,,,0, +12379,,,,,,,,0, +542,,,,,,,,0, +9912,,,,,,,,0, +38175,100.0,10.0,9.0,10.0,10.0,10.0,10.0,4,4.0 +43004,93.0,10.0,10.0,10.0,10.0,9.0,10.0,3,3.0 +39654,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,1.0 +5173,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +11056,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +48669,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +52381,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +50611,,,,,,,,0, +56859,,,,,,,,0, +68820,88.0,9.0,9.0,10.0,9.0,8.0,9.0,5,5.0 +45626,,,,,,,,0, +57750,,,,,,,,0, +35198,,,,,,,,0, +55591,90.0,9.0,10.0,9.0,10.0,10.0,10.0,2,2.0 +33226,80.0,8.0,10.0,10.0,10.0,10.0,8.0,1,1.0 +40326,,,,,,,,0, +14005,,,,,,,,0, +47632,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +60041,,,,,,,,0, +9253,,,,,,,,0, +21816,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,3.0 +54790,,,,,,,,0, +28815,,,,,,,,0, +65004,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +74908,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +14964,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +17887,,,,,,,,0, +50068,,,,,,,,0, +70856,,,,,,,,0, +3443,,,,,,,,0, +68885,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +25834,73.0,7.0,8.0,7.0,7.0,5.0,7.0,3,3.0 +18057,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +37917,,,,,,,,0, +37802,70.0,8.0,9.0,10.0,8.0,9.0,8.0,2,2.0 +29794,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +26722,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +47354,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,4.0 +51537,80.0,6.0,6.0,10.0,10.0,8.0,4.0,1,1.0 +3378,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,1.0 +59394,100.0,10.0,10.0,9.0,9.0,10.0,10.0,2,2.0 +47249,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +66082,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,1.0 +33464,,,,,,,,0, +23779,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +28796,,,,,,,,0, +26389,,,,,,,,0, +8137,,,,,,,,0, +1504,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +38748,20.0,2.0,2.0,10.0,10.0,2.0,2.0,1,1.0 +60255,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,2.0 +1639,,,,,,,,0, +30015,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +1836,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,3.0 +47868,,,,,,,,0, +70105,,,,,,,,0, +55439,,,,,,,,0, +53523,,,,,,,,0, +9274,100.0,9.0,10.0,10.0,10.0,10.0,9.0,3,3.0 +9603,100.0,10.0,10.0,10.0,10.0,8.0,10.0,5,5.0 +48040,90.0,10.0,8.0,10.0,10.0,10.0,9.0,4,4.0 +17680,,,,,,,,0, +21484,,,,,,,,0, +29094,,,,,,,,0, +6320,,,,,,,,0, +33377,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,1.0 +74879,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +21050,,,,,,,,0, +3984,95.0,10.0,10.0,10.0,10.0,9.0,10.0,4,4.0 +802,,,,,,,,1,1.0 +45662,,,,,,,,0, +7064,,,,,,,,0, +26103,20.0,2.0,6.0,2.0,2.0,10.0,2.0,1,1.0 +5018,,,,,,,,0, +26800,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,3.0 +7676,,,,,,,,0, +24284,,,,,,,,0, +65146,,,,,,,,0, +5976,,,,,,,,0, +29572,,,,,,,,0, +11324,,,,,,,,0, +21684,,,,,,,,1,1.0 +9652,,,,,,,,0, +17164,96.0,10.0,10.0,10.0,10.0,10.0,10.0,5,5.0 +71898,,,,,,,,0, +54773,,,,,,,,0, +42715,,,,,,,,0, +27902,80.0,8.0,8.0,8.0,8.0,8.0,8.0,1,1.0 +5691,,,,,,,,0, +5183,,,,,,,,0, +20950,,,,,,,,0, +3056,,,,,,,,0, +18053,100.0,8.0,10.0,8.0,10.0,10.0,10.0,1,1.0 +29347,100.0,10.0,10.0,10.0,10.0,10.0,8.0,2,2.0 +37950,,,,,,,,0, +43770,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,1.0 +42634,84.0,9.0,9.0,9.0,8.0,8.0,9.0,5,5.0 +35598,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +54925,,,,,,,,0, +66553,,,,,,,,0, +3871,,,,,,,,0, +22365,,,,,,,,0, +63783,,,,,,,,0, +16552,,,,,,,,0, +2448,,,,,,,,0, +10788,,,,,,,,0, +73949,,,,,,,,0, +30096,,,,,,,,0, +5597,90.0,10.0,9.0,9.0,10.0,10.0,9.0,2,2.0 +20866,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +71160,,,,,,,,0, +56853,,,,,,,,0, +5395,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +76614,95.0,10.0,10.0,9.0,10.0,9.0,10.0,4,4.0 +35741,,,,,,,,0, +30554,,,,,,,,0, +16164,,,,,,,,0, +54164,80.0,9.0,10.0,10.0,10.0,10.0,8.0,4,4.0 +40849,,,,,,,,0, +10603,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +43490,,,,,,,,0, +46504,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +20452,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,1.0 +29610,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +28819,87.0,9.0,8.0,10.0,10.0,9.0,9.0,3,3.0 +74392,80.0,10.0,8.0,10.0,10.0,10.0,8.0,1,1.0 +22394,,,,,,,,0, +37524,100.0,10.0,10.0,8.0,10.0,10.0,10.0,1,1.0 +63860,,,,,,,,0, +10468,,,,,,,,0, +10344,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +72854,,,,,,,,1,1.0 +52835,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,1.0 +18443,,,,,,,,0, +25334,,,,,,,,0, +36918,,,,,,,,0, +30464,,,,,,,,0, +62505,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,1.0 +48948,,,,,,,,0, +5149,,,,,,,,0, +2181,,,,,,,,0, +32953,,,,,,,,0, +53891,87.0,9.0,8.0,8.0,9.0,10.0,9.0,3,3.0 +40029,,,,,,,,0, +10958,,,,,,,,0, +74692,,,,,,,,0, +32912,,,,,,,,0, +73647,100.0,10.0,8.0,10.0,8.0,10.0,10.0,1,1.0 +49526,,,,,,,,0, +41080,,,,,,,,0, +71586,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,1.0 +40637,,,,,,,,0, +12383,,,,,,,,0, +76247,,,,,,,,0, +14679,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +14073,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +65607,,,,,,,,0, +74841,,,,,,,,0, +24712,,,,,,,,0, +67271,93.0,10.0,10.0,10.0,10.0,10.0,10.0,6,6.0 +55580,,,,,,,,0, +22606,,,,,,,,0, +45024,,,,,,,,0, +51601,,,,,,,,0, +44367,,,,,,,,0, +134,,,,,,,,0, +23544,,,,,,,,0, +30061,40.0,2.0,10.0,2.0,2.0,10.0,2.0,2,2.0 +6886,100.0,10.0,10.0,10.0,10.0,9.0,10.0,3,3.0 +68489,,,,,,,,0, +19444,80.0,9.0,9.0,9.0,10.0,10.0,8.0,2,2.0 +75463,100.0,10.0,6.0,10.0,10.0,10.0,10.0,1,1.0 +3205,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,3.0 +10806,,,,,,,,0, +61100,80.0,10.0,10.0,10.0,10.0,8.0,8.0,2,2.0 +62868,,,,,,,,0, +38416,,,,,,,,0, +46502,,,,,,,,0, +41823,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +75387,,,,,,,,0, +5533,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +76358,96.0,10.0,9.0,10.0,10.0,10.0,10.0,5,5.0 +20690,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,3.0 +9099,,,,,,,,0, +64619,,,,,,,,0, +9194,,,,,,,,0, +46625,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,3.0 +75128,,,,,,,,0, +61036,,,,,,,,0, +4652,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +49967,,,,,,,,0, +52375,,,,,,,,0, +3698,80.0,8.0,10.0,6.0,8.0,10.0,10.0,1,1.0 +13961,,,,,,,,0, +68294,,,,,,,,0, +28688,,,,,,,,0, +26025,,,,,,,,0, +74020,,,,,,,,0, +47791,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +62783,97.0,10.0,10.0,10.0,10.0,8.0,10.0,6,6.0 +17814,70.0,7.0,7.0,9.0,6.0,9.0,6.0,2,2.0 +40999,100.0,10.0,10.0,8.0,10.0,10.0,10.0,1,1.0 +56147,,,,,,,,0, +26690,,,,,,,,0, +21191,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +59175,,,,,,,,0, +20840,80.0,8.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +66665,,,,,,,,0, +65367,90.0,9.0,9.0,10.0,10.0,10.0,10.0,2,2.0 +16845,,,,,,,,0, +50207,,,,,,,,0, +19013,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,6.0 +12339,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,3.0 +69214,80.0,2.0,8.0,10.0,2.0,10.0,8.0,1,1.0 +26976,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +47818,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,4.0 +40566,,,,,,,,0, +58285,100.0,9.0,9.0,10.0,9.0,10.0,10.0,3,3.0 +41135,,,,,,,,0, +4230,,,,,,,,1,1.0 +1766,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +32403,90.0,9.0,9.0,10.0,9.0,6.0,9.0,2,2.0 +22329,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,3.0 +64820,,,,,,,,0, +47743,93.0,10.0,10.0,9.0,9.0,10.0,9.0,6,6.0 +18613,,,,,,,,0, +21300,,,,,,,,0, +35957,,,,,,,,0, +24818,100.0,10.0,6.0,10.0,10.0,10.0,10.0,2,2.0 +71217,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +16804,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +59567,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,3.0 +8655,,,,,,,,0, +16037,,,,,,,,0, +71651,,,,,,,,0, +61018,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +51002,,,,,,,,0, +28818,,,,,,,,0, +48549,,,,,,,,0, +76063,,,,,,,,0, +25171,,,,,,,,0, +62675,,,,,,,,0, +32659,,,,,,,,0, +22311,,,,,,,,0, +71212,,,,,,,,0, +6464,,,,,,,,0, +72863,,,,,,,,0, +44657,,,,,,,,0, +48719,,,,,,,,0, +31700,,,,,,,,0, +54809,,,,,,,,0, +43341,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,1.0 +71010,,,,,,,,0, +30313,80.0,7.0,10.0,10.0,10.0,9.0,8.0,2,2.0 +13047,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +40209,,,,,,,,0, +61297,,,,,,,,0, +8023,,,,,,,,0, +57073,100.0,10.0,10.0,10.0,10.0,8.0,9.0,2,2.0 +49006,,,,,,,,0, +68248,,,,,,,,0, +69381,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +34211,,,,,,,,0, +6928,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +34195,,,,,,,,0, +37879,,,,,,,,0, +5208,,,,,,,,0, +31837,,,,,,,,0, +19629,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,1.0 +4901,,,,,,,,0, +10891,,,,,,,,0, +33241,80.0,10.0,10.0,10.0,10.0,10.0,8.0,1,1.0 +58318,,,,,,,,0, +76670,60.0,10.0,6.0,10.0,8.0,8.0,6.0,1,1.0 +10450,100.0,10.0,10.0,8.0,10.0,10.0,10.0,1,1.0 +59774,,,,,,,,0, +2252,,,,,,,,0, +68093,,,,,,,,0, +26678,,,,,,,,0, +26074,,,,,,,,0, +34673,,,,,,,,0, +76865,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +44764,,,,,,,,0, +1765,,,,,,,,0, +57636,,,,,,,,0, +69227,,,,,,,,0, +30219,,,,,,,,0, +11565,,,,,,,,0, +1489,,,,,,,,0, +26673,80.0,9.0,10.0,10.0,8.0,10.0,8.0,2,2.0 +46226,80.0,10.0,8.0,10.0,10.0,10.0,10.0,1,1.0 +27127,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +3836,97.0,10.0,9.0,10.0,10.0,10.0,10.0,6,6.0 +10070,,,,,,,,0, +41253,20.0,2.0,4.0,2.0,2.0,6.0,2.0,1,1.0 +50468,60.0,10.0,10.0,10.0,6.0,10.0,6.0,1,1.0 +56664,,,,,,,,0, +67425,,,,,,,,0, +29327,80.0,8.0,7.0,6.0,6.0,7.0,8.0,4,4.0 +32336,,,,,,,,1, +73961,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +24219,90.0,9.0,8.0,10.0,10.0,9.0,9.0,2,2.0 +62907,,,,,,,,0, +55219,,,,,,,,0, +7151,100.0,10.0,10.0,9.0,10.0,10.0,10.0,2,2.0 +40255,,,,,,,,0, +8899,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +48151,,,,,,,,0, +75386,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,1.0 +52760,,,,,,,,0, +3471,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +28144,,,,,,,,0, +14521,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +61896,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,4.0 +36906,,,,,,,,0, +58930,,,,,,,,0, +19021,,,,,,,,0, +62895,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +57108,92.0,9.0,9.0,10.0,10.0,10.0,9.0,5,5.0 +34299,,,,,,,,1,1.0 +20184,,,,,,,,1, +68652,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +21575,,,,,,,,1,1.0 +76070,,,,,,,,0, +67765,,,,,,,,0, +29017,100.0,10.0,10.0,9.0,10.0,9.0,10.0,3,3.0 +36602,,,,,,,,0, +73014,100.0,10.0,10.0,10.0,8.0,10.0,10.0,1,1.0 +29080,,,,,,,,0, +33288,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +10675,,,,,,,,0, +28635,,,,,,,,0, +41314,,,,,,,,0, +19763,,,,,,,,0, +69065,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +7304,,,,,,,,1,1.0 +18866,,,,,,,,0, +54137,,,,,,,,0, +70356,,,,,,,,0, +24363,,,,,,,,0, +69474,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +58556,,,,,,,,0, +5764,100.0,9.0,9.0,10.0,10.0,9.0,9.0,3,3.0 +14349,,,,,,,,0, +33111,,,,,,,,0, +7950,,,,,,,,0, +58861,90.0,9.0,9.0,9.0,10.0,8.0,10.0,2,2.0 +40721,,,,,,,,0, +43759,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +23814,,,,,,,,0, +58756,,,,,,,,0, +27930,,,,,,,,1,1.0 +11550,,,,,,,,0, +43715,,,,,,,,0, +56594,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,2.0 +42021,,,,,,,,0, +13624,,,,,,,,1,1.0 +55916,,,,,,,,0, +19379,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +43287,,,,,,,,0, +32324,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +46230,,,,,,,,0, +41425,,,,,,,,1,1.0 +62373,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +22916,,,,,,,,0, +29660,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +28226,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,3.0 +60962,,,,,,,,0, +38931,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +27256,,,,,,,,1,1.0 +55749,,,,,,,,0, +9048,20.0,2.0,2.0,4.0,2.0,4.0,2.0,1,1.0 +74229,100.0,8.0,10.0,8.0,10.0,10.0,8.0,1,1.0 +11797,,,,,,,,0, +40821,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +43137,,,,,,,,0, +343,,,,,,,,0, +66495,,,,,,,,0, +66384,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +9337,,,,,,,,0, +54727,,,,,,,,0, +71701,,,,,,,,0, +60972,,,,,,,,0, +30301,,,,,,,,0, +42033,80.0,10.0,10.0,10.0,6.0,8.0,8.0,1,1.0 +40386,,,,,,,,0, +22336,,,,,,,,0, +34960,20.0,2.0,10.0,2.0,2.0,2.0,2.0,1,1.0 +55319,,,,,,,,1,1.0 +10322,,,,,,,,0, +44546,60.0,4.0,8.0,6.0,6.0,8.0,8.0,1,1.0 +25232,,,,,,,,0, +10518,,,,,,,,0, +74190,,,,,,,,0, +42437,,,,,,,,0, +17862,,,,,,,,0, +10537,,,,,,,,0, +1832,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,3.0 +54388,,,,,,,,0, +12987,,,,,,,,0, +16530,,,,,,,,0, +26257,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,3.0 +23170,90.0,9.0,10.0,10.0,10.0,10.0,9.0,2,2.0 +8779,,,,,,,,0, +29454,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +15982,,,,,,,,0, +10146,,,,,,,,0, +75154,,,,,,,,0, +76202,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +61309,,,,,,,,0, +2520,,,,,,,,0, +17140,,,,,,,,0, +5210,90.0,10.0,9.0,9.0,6.0,8.0,10.0,2,2.0 +53976,,,,,,,,0, +27861,80.0,8.0,9.0,7.0,8.0,9.0,9.0,2,2.0 +12396,,,,,,,,1,1.0 +66540,,,,,,,,0, +27567,,,,,,,,0, +71666,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,4.0 +3369,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,2.0 +32218,90.0,7.0,7.0,10.0,10.0,9.0,8.0,3,3.0 +58909,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +7019,,,,,,,,0, +21572,,,,,,,,0, +6970,,,,,,,,0, +53073,,,,,,,,0, +61899,,,,,,,,0, +66580,,,,,,,,0, +73916,20.0,2.0,2.0,2.0,2.0,2.0,2.0,1,1.0 +47383,,,,,,,,0, +48244,,,,,,,,0, +47144,,,,,,,,0, +2054,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +41429,,,,,,,,0, +59383,90.0,10.0,8.0,10.0,10.0,9.0,7.0,2,2.0 +9054,,,,,,,,0, +57194,,,,,,,,0, +66393,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,4.0 +19036,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +68581,,,,,,,,0, +42407,,,,,,,,0, +27329,,,,,,,,0, +66386,,,,,,,,0, +46195,,,,,,,,0, +55938,,,,,,,,0, +25575,,,,,,,,0, +35490,,,,,,,,0, +43034,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +34994,,,,,,,,0, +1963,,,,,,,,0, +6889,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +35914,100.0,10.0,10.0,8.0,10.0,10.0,10.0,1,1.0 +25110,90.0,10.0,9.0,9.0,10.0,10.0,10.0,2,2.0 +41147,,,,,,,,0, +18079,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,4.0 +21180,,,,,,,,0, +15837,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +13900,,,,,,,,0, +63647,100.0,9.0,10.0,9.0,10.0,10.0,10.0,2,2.0 +28527,,,,,,,,0, +37569,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +29384,,,,,,,,1,1.0 +19740,,,,,,,,0, +66326,,,,,,,,0, +55948,,,,,,,,1,1.0 +56501,,,,,,,,0, +72156,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +69851,,,,,,,,0, +63818,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +14165,,,,,,,,0, +12806,80.0,9.0,9.0,10.0,10.0,7.0,9.0,2,2.0 +31768,,,,,,,,0, +42958,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +60357,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +63339,,,,,,,,0, +18449,,,,,,,,0, +76534,,,,,,,,0, +25935,,,,,,,,0, +36650,,,,,,,,0, +34156,80.0,2.0,10.0,2.0,10.0,2.0,6.0,1,1.0 +48005,,,,,,,,0, +54847,,,,,,,,0, +71606,,,,,,,,0, +37444,,,,,,,,0, +59632,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,3.0 +25714,,,,,,,,0, +45986,100.0,10.0,10.0,10.0,10.0,9.0,8.0,2,2.0 +22042,,,,,,,,0, +1428,,,,,,,,0, +2352,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +26799,,,,,,,,0, +23571,,,,,,,,0, +48809,100.0,10.0,8.0,10.0,8.0,10.0,10.0,1,1.0 +28116,90.0,10.0,9.0,10.0,9.0,10.0,9.0,4,4.0 +24660,,,,,,,,0, +9670,,,,,,,,0, +70930,,,,,,,,0, +27576,,,,,,,,0, +21797,,,,,,,,0, +34048,,,,,,,,0, +62659,,,,,,,,0, +5722,,,,,,,,0, +65066,95.0,10.0,9.0,10.0,10.0,10.0,10.0,4,4.0 +45249,,,,,,,,0, +36139,,,,,,,,0, +66313,90.0,10.0,8.0,10.0,10.0,9.0,10.0,2,2.0 +1879,,,,,,,,0, +4585,,,,,,,,1, +72181,,,,,,,,0, +27872,76.0,8.0,7.0,10.0,10.0,8.0,7.0,5,5.0 +48687,,,,,,,,0, +24124,,,,,,,,0, +52161,,,,,,,,0, +22478,75.0,8.0,9.0,9.0,10.0,10.0,8.0,4,4.0 +40127,,,,,,,,0, +9025,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,3.0 +4490,,,,,,,,0, +55197,95.0,9.0,8.0,10.0,10.0,10.0,10.0,4,4.0 +59770,,,,,,,,0, +22347,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +17973,,,,,,,,0, +71771,100.0,8.0,6.0,10.0,10.0,10.0,6.0,1,1.0 +26898,80.0,6.0,6.0,8.0,8.0,10.0,8.0,1,1.0 +46760,,,,,,,,0, +10004,,,,,,,,1,1.0 +61705,,,,,,,,0, +2273,,,,,,,,0, +54657,,,,,,,,0, +64773,,,,,,,,0, +38439,,,,,,,,0, +16884,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +28831,,,,,,,,0, +26768,,,,,,,,0, +13566,,,,,,,,0, +45797,,,,,,,,0, +40475,,,,,,,,0, +28766,,,,,,,,1,1.0 +69385,80.0,8.0,8.0,8.0,6.0,8.0,8.0,1,1.0 +24098,,,,,,,,0, +37162,60.0,6.0,10.0,10.0,10.0,10.0,8.0,1,1.0 +68953,,,,,,,,0, +9834,,,,,,,,0, +63470,,,,,,,,0, +227,,,,,,,,1,1.0 +287,,,,,,,,0, +23745,,,,,,,,0, +24554,,,,,,,,0, +62044,90.0,10.0,10.0,9.0,10.0,10.0,9.0,2,2.0 +19671,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,1.0 +2223,85.0,8.0,8.0,10.0,9.0,10.0,8.0,4,4.0 +16269,,,,,,,,0, +56372,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,1.0 +66639,,,,,,,,0, +60902,,,,,,,,0, +44578,,,,,,,,1, +76222,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,3.0 +22719,,,,,,,,0, +45720,,,,,,,,0, +28774,93.0,10.0,9.0,10.0,10.0,9.0,9.0,3,3.0 +26263,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +52080,,,,,,,,0, +46235,90.0,8.0,8.0,10.0,10.0,10.0,9.0,2,2.0 +13995,,,,,,,,0, +52312,80.0,10.0,10.0,10.0,10.0,10.0,8.0,2,2.0 +48140,100.0,9.0,10.0,10.0,10.0,10.0,10.0,4,4.0 +7837,,,,,,,,0, +70504,,,,,,,,0, +27763,,,,,,,,0, +8513,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +70501,,,,,,,,0, +63031,,,,,,,,0, +69744,,,,,,,,0, +14833,,,,,,,,0, +42169,,,,,,,,0, +18314,,,,,,,,0, +47176,,,,,,,,0, +75349,,,,,,,,0, +963,80.0,7.0,9.0,9.0,10.0,9.0,9.0,2,2.0 +73088,,,,,,,,0, +37903,100.0,10.0,9.0,10.0,10.0,9.0,9.0,2,2.0 +17483,,,,,,,,0, +16420,,,,,,,,0, +1726,,,,,,,,0, +72587,,,,,,,,0, +18535,,,,,,,,0, +13042,,,,,,,,0, +67305,,,,,,,,0, +48218,85.0,10.0,9.0,9.0,10.0,9.0,9.0,4,4.0 +41909,,,,,,,,0, +59887,,,,,,,,0, +18169,,,,,,,,0, +11860,,,,,,,,0, +36780,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +27820,100.0,10.0,10.0,10.0,10.0,8.0,9.0,4,4.0 +12939,,,,,,,,0, +36587,,,,,,,,0, +5862,,,,,,,,0, +66030,,,,,,,,0, +34882,80.0,9.0,10.0,8.0,6.0,9.0,10.0,3,3.0 +26653,,,,,,,,0, +57912,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +53672,,,,,,,,0, +23925,100.0,10.0,10.0,10.0,10.0,9.0,10.0,4,4.0 +63027,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +15052,,,,,,,,0, +102,,,,,,,,0, +16719,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +4085,,,,,,,,0, +13146,,,,,,,,0, +60427,,,,,,,,0, +70026,,,,,,,,0, +25602,,,,,,,,0, +6259,,,,,,,,0, +62952,,,,,,,,0, +13824,,,,,,,,0, +8613,,,,,,,,0, +54914,,,,,,,,0, +22136,100.0,10.0,10.0,10.0,10.0,8.0,10.0,4,4.0 +49354,,,,,,,,0, +42921,,,,,,,,0, +63301,,,,,,,,0, +16943,,,,,,,,1,1.0 +10432,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,1.0 +62704,97.0,10.0,9.0,10.0,10.0,10.0,10.0,7,7.0 +64862,100.0,10.0,8.0,10.0,10.0,10.0,10.0,2,2.0 +13331,,,,,,,,0, +41580,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +71344,,,,,,,,0, +5029,80.0,10.0,8.0,10.0,9.0,10.0,9.0,2,2.0 +70531,100.0,8.0,10.0,10.0,10.0,8.0,10.0,1,1.0 +71743,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,4.0 +44910,93.0,10.0,9.0,9.0,10.0,9.0,9.0,3,3.0 +22645,,,,,,,,1,1.0 +28324,,,,,,,,0, +72062,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +31246,,,,,,,,0, +35339,100.0,8.0,8.0,10.0,8.0,8.0,8.0,1,1.0 +2200,,,,,,,,0, +53545,,,,,,,,0, +30950,,,,,,,,0, +32813,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,3.0 +10030,,,,,,,,0, +39153,60.0,8.0,4.0,6.0,8.0,6.0,6.0,1,1.0 +74111,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +49449,,,,,,,,0, +40473,,,,,,,,0, +11233,,,,,,,,0, +31853,,,,,,,,0, +52547,,,,,,,,0, +32086,,,,,,,,0, +5732,,,,,,,,0, +64616,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,2.0 +30519,,,,,,,,0, +57241,,,,,,,,0, +22733,,,,,,,,0, +39088,100.0,9.0,10.0,9.0,9.0,10.0,10.0,2,2.0 +71927,,,,,,,,0, +3971,,,,,,,,0, +20924,,,,,,,,0, +13103,,,,,,,,0, +19496,,,,,,,,0, +65867,,,,,,,,0, +50093,,,,,,,,0, +16197,,,,,,,,0, +19624,100.0,10.0,8.0,10.0,10.0,10.0,10.0,2,2.0 +73175,,,,,,,,0, +17700,100.0,10.0,10.0,10.0,10.0,9.0,9.0,2,2.0 +73965,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +17472,,,,,,,,0, +30793,,,,,,,,0, +15048,,,,,,,,0, +2814,100.0,10.0,10.0,10.0,8.0,10.0,10.0,1,1.0 +34129,,,,,,,,0, +45505,,,,,,,,0, +25736,100.0,10.0,8.0,10.0,10.0,10.0,8.0,1,1.0 +7618,,,,,,,,0, +53885,,,,,,,,0, +23035,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +11301,,,,,,,,0, +65440,,,,,,,,0, +43096,,,,,,,,0, +4872,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +12099,,,,,,,,0, +13356,,,,,,,,0, +58606,,,,,,,,0, +32380,,,,,,,,0, +30586,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +53299,,,,,,,,0, +71715,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +53164,,,,,,,,0, +35031,,,,,,,,0, +37776,,,,,,,,0, +11336,,,,,,,,0, +52477,,,,,,,,0, +183,100.0,10.0,10.0,10.0,10.0,6.0,8.0,1,1.0 +33576,,,,,,,,0, +24170,,,,,,,,0, +56036,,,,,,,,0, +12851,,,,,,,,0, +1793,,,,,,,,0, +53609,100.0,10.0,10.0,10.0,10.0,6.0,10.0,1,1.0 +10150,,,,,,,,0, +70184,,,,,,,,0, +76882,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,6.0 +38192,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +46786,,,,,,,,0, +21212,,,,,,,,2,2.0 +8379,,,,,,,,0, +73018,,,,,,,,0, +18900,,,,,,,,0, +10932,,,,,,,,0, +76708,,,,,,,,0, +1606,40.0,2.0,6.0,2.0,4.0,6.0,6.0,1,1.0 +72565,,,,,,,,0, +7338,,,,,,,,0, +8670,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +8160,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +48802,,,,,,,,0, +32769,,,,,,,,0, +13728,,,,,,,,0, +44364,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +75479,,,,,,,,0, +1271,,,,,,,,0, +18697,,,,,,,,0, +616,,,,,,,,0, +6483,,,,,,,,0, +72158,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +12328,,,,,,,,0, +2944,,,,,,,,0, +42805,80.0,8.0,8.0,10.0,10.0,10.0,10.0,1,1.0 +50362,,,,,,,,0, +57238,,,,,,,,0, +62413,,,,,,,,0, +43843,,,,,,,,0, +53556,,,,,,,,0, +9124,,,,,,,,0, +19595,,,,,,,,0, +34168,,,,,,,,0, +49927,,,,,,,,0, +59033,,,,,,,,0, +43875,,,,,,,,1,1.0 +72016,,,,,,,,0, +72960,,,,,,,,1, +26901,,,,,,,,0, +33393,60.0,6.0,8.0,8.0,8.0,8.0,6.0,1,1.0 +61408,,,,,,,,0, +11736,,,,,,,,0, +38205,,,,,,,,0, +44928,,,,,,,,0, +819,93.0,10.0,9.0,10.0,10.0,9.0,9.0,3,3.0 +47135,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +63755,,,,,,,,0, +15631,,,,,,,,0, +34216,,,,,,,,1, +41195,,,,,,,,0, +17256,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,1.0 +68876,80.0,6.0,10.0,10.0,10.0,10.0,8.0,1,1.0 +64533,,,,,,,,0, +15315,87.0,9.0,9.0,10.0,10.0,10.0,9.0,3,3.0 +40770,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,1.0 +48039,,,,,,,,0, +71373,,,,,,,,1,1.0 +17412,,,,,,,,0, +43472,,,,,,,,0, +27373,,,,,,,,0, +35445,,,,,,,,1,1.0 +41895,,,,,,,,0, +61020,,,,,,,,0, +46461,,,,,,,,0, +72925,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +23149,,,,,,,,0, +71335,,,,,,,,0, +7789,,,,,,,,0, +51549,90.0,9.0,10.0,10.0,8.0,10.0,10.0,2,2.0 +47941,100.0,10.0,8.0,10.0,10.0,10.0,8.0,1,1.0 +59876,,,,,,,,0, +64229,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +7715,,,,,,,,0, +58228,100.0,10.0,10.0,9.0,10.0,9.0,10.0,2,2.0 +5145,,,,,,,,0, +62305,,,,,,,,2, +53989,,,,,,,,0, +50764,,,,,,,,0, +41843,,,,,,,,0, +20169,100.0,10.0,10.0,8.0,8.0,10.0,10.0,1,1.0 +33577,,,,,,,,0, +10791,,,,,,,,0, +33371,,,,,,,,0, +73960,,,,,,,,0, +65244,,,,,,,,0, +63751,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,3.0 +839,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +2796,67.0,8.0,9.0,9.0,10.0,10.0,7.0,3,3.0 +5272,,,,,,,,0, +19830,,,,,,,,0, +18373,,,,,,,,0, +49817,,,,,,,,0, +30051,,,,,,,,0, +53859,,,,,,,,0, +28584,,,,,,,,1,1.0 +40630,,,,,,,,0, +2690,,,,,,,,0, +51763,,,,,,,,0, +31248,,,,,,,,0, +17306,100.0,8.0,10.0,6.0,10.0,10.0,10.0,1,1.0 +10852,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +45903,,,,,,,,0, +12829,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +54380,73.0,10.0,8.0,6.0,9.0,10.0,9.0,3,3.0 +6648,60.0,8.0,8.0,8.0,8.0,6.0,6.0,1,1.0 +53890,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +48523,,,,,,,,0, +24758,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,4.0 +51497,,,,,,,,0, +21941,,,,,,,,1,1.0 +18760,,,,,,,,1,1.0 +63917,,,,,,,,0, +496,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +17498,80.0,10.0,6.0,10.0,10.0,10.0,8.0,1,1.0 +20942,,,,,,,,0, +16285,,,,,,,,0, +11156,,,,,,,,0, +58037,,,,,,,,0, +28719,100.0,10.0,10.0,10.0,8.0,10.0,10.0,1,1.0 +62269,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +66243,93.0,10.0,10.0,9.0,10.0,9.0,10.0,3,3.0 +28281,50.0,6.0,6.0,7.0,7.0,9.0,6.0,2,2.0 +11720,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +13238,,,,,,,,1,1.0 +31555,40.0,4.0,6.0,8.0,6.0,10.0,2.0,1,1.0 +63789,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +33210,,,,,,,,0, +72932,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +52677,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,3.0 +57672,,,,,,,,0, +25640,,,,,,,,0, +64733,,,,,,,,0, +63792,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +57403,,,,,,,,0, +72596,80.0,10.0,8.0,10.0,10.0,8.0,8.0,2,2.0 +55765,,,,,,,,0, +41760,,,,,,,,0, +56047,,,,,,,,0, +60854,,,,,,,,0, +44222,,,,,,,,0, +76155,,,,,,,,0, +36927,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +52142,,,,,,,,0, +52555,,,,,,,,0, +29833,,,,,,,,0, +1768,90.0,9.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +260,,,,,,,,0, +14161,100.0,9.0,10.0,9.0,10.0,9.0,9.0,3,3.0 +62032,,,,,,,,0, +51230,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +50134,,,,,,,,0, +9454,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +28059,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +49704,,,,,,,,0, +32006,,,,,,,,0, +27547,,,,,,,,0, +19310,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +12102,,,,,,,,0, +11809,,,,,,,,0, +70671,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +22856,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +36579,,,,,,,,0, +18953,,,,,,,,0, +5135,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +9255,,,,,,,,0, +13499,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +21702,,,,,,,,0, +54165,,,,,,,,0, +65451,100.0,10.0,10.0,9.0,10.0,10.0,9.0,2,2.0 +27418,,,,,,,,0, +67672,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +6221,40.0,2.0,4.0,6.0,6.0,8.0,4.0,3,3.0 +3915,,,,,,,,0, +50324,,,,,,,,0, +74642,,,,,,,,0, +14110,,,,,,,,0, +40478,60.0,10.0,8.0,8.0,10.0,10.0,8.0,1,1.0 +34682,80.0,9.0,9.0,10.0,10.0,9.0,8.0,2,2.0 +32482,,,,,,,,0, +7138,,,,,,,,0, +49744,,,,,,,,0, +2388,,,,,,,,0, +48191,,,,,,,,0, +74758,,,,,,,,0, +20974,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,2.0 +75427,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +49330,,,,,,,,0, +76390,,,,,,,,1,1.0 +5861,80.0,6.0,8.0,4.0,10.0,10.0,10.0,1,1.0 +54757,,,,,,,,0, +7020,,,,,,,,0, +45436,,,,,,,,0, +34312,,,,,,,,0, +66680,100.0,10.0,10.0,10.0,10.0,8.0,6.0,1,1.0 +53719,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +4095,,,,,,,,0, +41661,100.0,10.0,10.0,8.0,10.0,10.0,10.0,1,1.0 +18039,,,,,,,,1,1.0 +69138,,,,,,,,0, +1625,,,,,,,,0, +32824,60.0,4.0,6.0,6.0,8.0,10.0,4.0,1,1.0 +35548,,,,,,,,0, +41294,80.0,8.0,10.0,10.0,10.0,10.0,8.0,2,2.0 +70691,,,,,,,,0, +15075,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +35463,,,,,,,,1,1.0 +72771,,,,,,,,0, +59988,,,,,,,,0, +19904,,,,,,,,0, +4216,,,,,,,,0, +66107,,,,,,,,0, +20723,,,,,,,,0, +22363,,,,,,,,0, +23645,,,,,,,,1,1.0 +72571,,,,,,,,0, +7066,,,,,,,,0, +58794,,,,,,,,0, +54155,,,,,,,,0, +56747,,,,,,,,0, +35939,,,,,,,,0, +45304,,,,,,,,0, +4588,,,,,,,,0, +28113,,,,,,,,0, +43256,,,,,,,,0, +59049,,,,,,,,0, +3738,,,,,,,,0, +73504,,,,,,,,0, +65155,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +50815,80.0,9.0,7.0,10.0,10.0,8.0,9.0,2,2.0 +6678,,,,,,,,0, +3312,,,,,,,,0, +39755,,,,,,,,0, +10795,,,,,,,,0, +45222,,,,,,,,0, +64844,,,,,,,,1,1.0 +39382,,,,,,,,0, +11185,,,,,,,,0, +54063,,,,,,,,0, +54342,,,,,,,,0, +19023,,,,,,,,0, +6668,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +15286,40.0,2.0,10.0,10.0,6.0,4.0,2.0,1,1.0 +38411,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +74549,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +12367,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,6.0 +51252,,,,,,,,0, +55331,,,,,,,,0, +53311,95.0,10.0,9.0,8.0,10.0,10.0,9.0,4,4.0 +45601,,,,,,,,0, +8217,,,,,,,,0, +19534,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,3.0 +75178,,,,,,,,0, +34726,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +48624,,,,,,,,0, +21262,,,,,,,,0, +23008,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +67618,,,,,,,,0, +25673,,,,,,,,0, +47335,,,,,,,,0, +13403,90.0,10.0,10.0,9.0,10.0,10.0,10.0,2,2.0 +52428,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +15322,,,,,,,,0, +35553,,,,,,,,0, +58398,,,,,,,,0, +52667,,,,,,,,0, +559,,,,,,,,0, +74932,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +56931,,,,,,,,0, +54198,80.0,8.0,10.0,10.0,8.0,10.0,10.0,1,1.0 +34608,,,,,,,,1,1.0 +45713,,,,,,,,0, +30717,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,7.0 +52695,,,,,,,,2,2.0 +49322,,,,,,,,0, +26088,100.0,10.0,6.0,10.0,10.0,10.0,10.0,1,1.0 +13180,100.0,8.0,10.0,10.0,10.0,10.0,8.0,1,1.0 +27877,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +11506,,,,,,,,0, +2172,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,4.0 +1486,,,,,,,,0, +23775,,,,,,,,0, +24971,100.0,9.0,9.0,10.0,10.0,9.0,10.0,3,3.0 +41209,80.0,8.0,6.0,10.0,10.0,8.0,6.0,1,1.0 +32969,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +6600,,,,,,,,0, +72204,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +42662,,,,,,,,0, +44214,80.0,8.0,10.0,6.0,10.0,10.0,8.0,1,1.0 +73817,40.0,2.0,2.0,10.0,6.0,8.0,4.0,1,1.0 +51340,,,,,,,,0, +71664,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,1.0 +39384,70.0,10.0,8.0,10.0,10.0,8.0,9.0,2,2.0 +17355,,,,,,,,0, +25310,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +53446,,,,,,,,1,1.0 +77046,90.0,10.0,10.0,8.0,8.0,10.0,9.0,2,2.0 +53429,,,,,,,,0, +75821,,,,,,,,0, +67035,,,,,,,,0, +54131,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,4.0 +43537,95.0,9.0,10.0,9.0,10.0,10.0,10.0,4,4.0 +63525,,,,,,,,0, +76954,,,,,,,,0, +55544,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +22773,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +27886,,,,,,,,0, +309,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +41498,,,,,,,,0, +14672,87.0,7.0,9.0,9.0,9.0,10.0,8.0,3,3.0 +68733,,,,,,,,0, +44477,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,3.0 +68146,80.0,8.0,10.0,8.0,10.0,10.0,7.0,2,2.0 +10183,,,,,,,,0, +24670,,,,,,,,0, +70053,,,,,,,,0, +23766,,,,,,,,0, +2093,,,,,,,,0, +21689,,,,,,,,0, +71106,,,,,,,,0, +33003,,,,,,,,0, +38236,,,,,,,,0, +54624,60.0,6.0,4.0,8.0,10.0,10.0,6.0,1,1.0 +7809,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +45192,100.0,8.0,10.0,10.0,10.0,6.0,8.0,1,1.0 +24522,,,,,,,,0, +38756,,,,,,,,0, +66382,,,,,,,,0, +18168,,,,,,,,0, +8867,,,,,,,,0, +66455,,,,,,,,0, +69110,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +73690,,,,,,,,0, +53366,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +60010,,,,,,,,0, +54176,,,,,,,,0, +55522,,,,,,,,0, +18602,,,,,,,,0, +68536,,,,,,,,0, +25873,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,7.0 +62189,,,,,,,,0, +39120,,,,,,,,0, +3046,,,,,,,,0, +50638,,,,,,,,0, +60288,,,,,,,,0, +606,,,,,,,,0, +55492,100.0,10.0,10.0,8.0,8.0,10.0,10.0,1,1.0 +55541,,,,,,,,0, +6434,,,,,,,,0, +54014,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +10329,,,,,,,,2,2.0 +40757,,,,,,,,0, +18881,,,,,,,,1,1.0 +71472,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,2.0 +7229,,,,,,,,0, +32812,,,,,,,,0, +9001,,,,,,,,0, +8924,,,,,,,,1,1.0 +67156,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +3132,,,,,,,,0, +68001,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,1.0 +21734,,,,,,,,0, +61207,,,,,,,,0, +38123,,,,,,,,0, +66542,,,,,,,,0, +71965,,,,,,,,0, +46866,,,,,,,,0, +73824,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +46696,,,,,,,,0, +27994,,,,,,,,0, +47124,,,,,,,,0, +74636,,,,,,,,0, +11818,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +13239,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +19172,100.0,10.0,10.0,10.0,10.0,10.0,10.0,8,8.0 +75877,,,,,,,,0, +65791,,,,,,,,0, +63166,80.0,8.0,10.0,10.0,10.0,10.0,8.0,1,1.0 +68584,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +24510,,,,,,,,0, +27892,,,,,,,,0, +27310,,,,,,,,0, +75476,90.0,10.0,9.0,10.0,9.0,10.0,10.0,2,2.0 +45514,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +16737,,,,,,,,0, +37812,,,,,,,,0, +75896,,,,,,,,0, +47378,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +44144,100.0,10.0,10.0,6.0,10.0,6.0,10.0,1,1.0 +59398,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,3.0 +11756,90.0,9.0,8.0,7.0,8.0,8.0,8.0,2,2.0 +52981,90.0,10.0,10.0,9.0,7.0,10.0,8.0,2,2.0 +31699,80.0,9.0,9.0,9.0,7.0,9.0,10.0,2,2.0 +57497,100.0,10.0,9.0,10.0,10.0,10.0,10.0,3,3.0 +38665,100.0,8.0,8.0,10.0,8.0,8.0,8.0,1,1.0 +62603,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +36810,,,,,,,,0, +6680,,,,,,,,0, +45538,,,,,,,,0, +55572,90.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +23655,,,,,,,,0, +72685,,,,,,,,0, +19582,,,,,,,,0, +45323,,,,,,,,0, +73614,,,,,,,,0, +15099,,,,,,,,0, +47639,,,,,,,,0, +20017,,,,,,,,0, +14012,,,,,,,,0, +7097,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +23066,,,,,,,,0, +16536,,,,,,,,0, +8782,,,,,,,,0, +71811,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +15679,,,,,,,,0, +7310,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,2.0 +6994,,,,,,,,1,1.0 +22306,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +12119,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +16241,100.0,10.0,8.0,10.0,8.0,10.0,10.0,1,1.0 +26981,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +20303,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,3.0 +40800,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +29732,75.0,8.0,8.0,8.0,8.0,8.0,8.0,4,4.0 +11487,,,,,,,,0, +60705,,,,,,,,2,2.0 +15151,,,,,,,,0, +61585,100.0,10.0,8.0,10.0,10.0,8.0,10.0,1,1.0 +53414,,,,,,,,0, +55786,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +74080,,,,,,,,0, +6513,,,,,,,,0, +11712,80.0,10.0,10.0,10.0,10.0,10.0,8.0,1,1.0 +27117,,,,,,,,0, +48032,,,,,,,,0, +27485,,,,,,,,0, +58721,,,,,,,,0, +14446,,,,,,,,0, +42128,,,,,,,,0, +27927,,,,,,,,1, +2556,,,,,,,,0, +50305,90.0,10.0,9.0,10.0,9.0,10.0,9.0,2,2.0 +35777,,,,,,,,0, +34963,,,,,,,,0, +45570,100.0,10.0,9.0,10.0,10.0,8.0,9.0,2,2.0 +56034,,,,,,,,0, +28787,,,,,,,,0, +26497,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +4165,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +27521,,,,,,,,0, +23958,,,,,,,,0, +39792,,,,,,,,0, +72583,95.0,10.0,10.0,10.0,10.0,10.0,10.0,4,4.0 +30104,,,,,,,,0, +68547,,,,,,,,0, +4987,,,,,,,,0, +53387,,,,,,,,0, +60000,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,1.0 +12816,,,,,,,,0, +9807,,,,,,,,1,1.0 +39376,,,,,,,,0, +55921,,,,,,,,0, +60310,60.0,8.0,8.0,2.0,2.0,6.0,6.0,1,1.0 +13439,,,,,,,,0, +15136,,,,,,,,0, +47768,100.0,10.0,10.0,8.0,8.0,8.0,10.0,1,1.0 +39931,,,,,,,,1,1.0 +6110,,,,,,,,0, +30478,,,,,,,,0, +74670,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +36485,,,,,,,,0, +57866,,,,,,,,0, +16192,,,,,,,,0, +23921,,,,,,,,0, +28181,,,,,,,,0, +7945,,,,,,,,0, +68512,,,,,,,,0, +1712,,,,,,,,0, +76525,,,,,,,,0, +4556,60.0,8.0,8.0,10.0,10.0,8.0,6.0,1,1.0 +10948,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +37346,,,,,,,,0, +74600,,,,,,,,0, +61143,,,,,,,,0, +56707,,,,,,,,0, +33094,,,,,,,,0, +58131,,,,,,,,0, +60199,,,,,,,,0, +48789,,,,,,,,0, +12414,,,,,,,,0, +21908,,,,,,,,0, +3344,,,,,,,,0, +16047,,,,,,,,0, +66605,,,,,,,,0, +3607,,,,,,,,0, +41207,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +60821,,,,,,,,0, +18248,,,,,,,,0, +11869,,,,,,,,0, +24347,,,,,,,,0, +74543,,,,,,,,1, +49244,100.0,10.0,10.0,9.0,10.0,10.0,10.0,2,2.0 +15172,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,3.0 +38667,,,,,,,,0, +8410,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +60020,,,,,,,,0, +1086,,,,,,,,0, +11887,,,,,,,,0, +24640,,,,,,,,0, +45186,,,,,,,,0, +71271,,,,,,,,0, +2004,,,,,,,,0, +4781,,,,,,,,0, +10741,,,,,,,,0, +224,100.0,8.0,8.0,10.0,10.0,10.0,8.0,1,1.0 +60289,,,,,,,,0, +37764,,,,,,,,0, +71013,,,,,,,,0, +14366,,,,,,,,0, +49988,,,,,,,,0, +68875,,,,,,,,0, +50194,,,,,,,,0, +41541,,,,,,,,0, +56206,100.0,9.0,10.0,8.0,9.0,9.0,9.0,2,2.0 +71644,,,,,,,,0, +53397,,,,,,,,0, +22349,,,,,,,,0, +3901,,,,,,,,0, +44853,,,,,,,,0, +14101,100.0,10.0,10.0,10.0,10.0,9.0,10.0,5,5.0 +60108,,,,,,,,0, +35591,,,,,,,,1,1.0 +1057,,,,,,,,0, +49994,,,,,,,,0, +46075,,,,,,,,0, +57065,,,,,,,,0, +55449,,,,,,,,0, +53123,,,,,,,,0, +68307,,,,,,,,0, +75077,,,,,,,,0, +71802,,,,,,,,0, +3947,,,,,,,,0, +41877,100.0,9.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +42251,,,,,,,,0, +3164,,,,,,,,1,1.0 +68741,,,,,,,,0, +45955,,,,,,,,0, +21810,,,,,,,,0, +42866,,,,,,,,0, +7164,,,,,,,,0, +41346,,,,,,,,0, +70315,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +19170,,,,,,,,0, +22248,,,,,,,,0, +829,,,,,,,,0, +45719,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +43666,,,,,,,,0, +2067,60.0,6.0,8.0,4.0,4.0,10.0,6.0,2,2.0 +2518,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +13430,,,,,,,,0, +65686,,,,,,,,0, +56423,80.0,6.0,10.0,8.0,10.0,8.0,8.0,1,1.0 +36156,,,,,,,,0, +18496,,,,,,,,1, +40897,,,,,,,,0, +25202,,,,,,,,0, +281,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +16732,,,,,,,,0, +47040,,,,,,,,0, +64600,,,,,,,,0, +54288,,,,,,,,0, +42351,40.0,8.0,8.0,10.0,10.0,10.0,6.0,1,1.0 +69409,,,,,,,,0, +70670,,,,,,,,0, +62617,,,,,,,,0, +44220,,,,,,,,0, +20229,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +2865,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +1065,,,,,,,,0, +59977,,,,,,,,0, +33312,,,,,,,,1,1.0 +48030,,,,,,,,0, +4139,,,,,,,,0, +44741,,,,,,,,0, +49747,,,,,,,,0, +72801,,,,,,,,0, +5735,100.0,10.0,9.0,10.0,10.0,9.0,10.0,2,2.0 +56862,,,,,,,,0, +55878,,,,,,,,0, +40626,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,2.0 +11571,,,,,,,,0, +39423,,,,,,,,0, +4354,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +53271,,,,,,,,0, +42102,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,1.0 +57734,,,,,,,,0, +32000,,,,,,,,0, +16143,,,,,,,,0, +18887,,,,,,,,0, +24566,,,,,,,,0, +35483,,,,,,,,0, +9663,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +61142,80.0,10.0,10.0,10.0,8.0,10.0,10.0,1,1.0 +27588,,,,,,,,0, +39436,,,,,,,,0, +43345,,,,,,,,0, +53326,100.0,10.0,10.0,10.0,10.0,9.0,9.0,2,2.0 +13315,,,,,,,,0, +3662,,,,,,,,0, +53739,,,,,,,,0, +5291,,,,,,,,0, +60367,,,,,,,,0, +48960,,,,,,,,0, +22919,100.0,10.0,10.0,8.0,8.0,10.0,10.0,1,1.0 +57753,,,,,,,,0, +39710,,,,,,,,0, +21946,,,,,,,,0, +33680,,,,,,,,0, +50286,,,,,,,,0, +54755,,,,,,,,0, +40149,,,,,,,,0, +46582,,,,,,,,0, +48887,,,,,,,,0, +74903,,,,,,,,0, +14933,80.0,9.0,10.0,10.0,10.0,10.0,8.0,2,2.0 +74752,,,,,,,,0, +25983,60.0,8.0,8.0,10.0,10.0,10.0,8.0,2,2.0 +5826,,,,,,,,0, +23260,,,,,,,,0, +32165,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,1.0 +53534,,,,,,,,0, +18849,,,,,,,,0, +75384,,,,,,,,0, +57151,,,,,,,,0, +421,,,,,,,,0, +71475,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,4.0 +31833,,,,,,,,0, +7709,,,,,,,,0, +59302,,,,,,,,0, +44354,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +52779,,,,,,,,0, +42160,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +11066,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +33181,,,,,,,,0, +68088,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +7954,,,,,,,,0, +2104,90.0,9.0,10.0,10.0,10.0,9.0,9.0,2,2.0 +7389,,,,,,,,0, +48644,,,,,,,,0, +53100,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +7866,100.0,10.0,9.0,10.0,10.0,9.0,10.0,4,4.0 +33820,40.0,8.0,2.0,8.0,8.0,8.0,2.0,1,1.0 +65822,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +69132,100.0,10.0,10.0,10.0,10.0,9.0,10.0,7,7.0 +60374,,,,,,,,0, +35581,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,1.0 +28642,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +58987,,,,,,,,0, +70487,,,,,,,,0, +75436,,,,,,,,0, +61344,,,,,,,,0, +12743,,,,,,,,0, +64247,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,1.0 +60633,,,,,,,,0, +61330,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +36715,,,,,,,,0, +16072,,,,,,,,0, +11823,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +76243,,,,,,,,0, +71238,,,,,,,,0, +56146,,,,,,,,0, +48487,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,3.0 +65049,,,,,,,,0, +43827,,,,,,,,0, +57021,,,,,,,,0, +29963,,,,,,,,0, +54319,,,,,,,,0, +48915,,,,,,,,0, +28636,,,,,,,,0, +74624,,,,,,,,0, +8365,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +69442,,,,,,,,0, +38037,80.0,8.0,10.0,10.0,10.0,6.0,10.0,1,1.0 +57327,,,,,,,,0, +64294,,,,,,,,0, +8868,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +62734,,,,,,,,0, +10359,,,,,,,,0, +22071,,,,,,,,0, +37715,,,,,,,,0, +33165,,,,,,,,0, +8657,,,,,,,,1, +16576,,,,,,,,0, +39433,,,,,,,,0, +27909,,,,,,,,0, +35148,,,,,,,,0, +73226,,,,,,,,0, +76502,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +13633,,,,,,,,0, +48649,,,,,,,,0, +54421,,,,,,,,1, +77047,,,,,,,,0, +30945,,,,,,,,0, +20083,,,,,,,,0, +71501,,,,,,,,0, +5330,,,,,,,,0, +6944,,,,,,,,0, +12887,,,,,,,,0, +60967,,,,,,,,0, +48,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +12855,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +12424,,,,,,,,0, +68766,,,,,,,,1,1.0 +21818,,,,,,,,0, +31364,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +76459,,,,,,,,0, +23606,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +45138,,,,,,,,0, +2029,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,1.0 +11505,,,,,,,,0, +13793,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,1.0 +42027,,,,,,,,0, +5137,,,,,,,,0, +18724,,,,,,,,0, +37106,,,,,,,,0, +38703,,,,,,,,0, +23087,,,,,,,,0, +48803,,,,,,,,0, +53083,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +45578,,,,,,,,0, +56874,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +10747,,,,,,,,0, +4345,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +54618,,,,,,,,0, +24574,,,,,,,,0, +10880,100.0,10.0,10.0,8.0,8.0,10.0,8.0,1,1.0 +74969,,,,,,,,0, +72231,,,,,,,,0, +11563,,,,,,,,0, +29115,,,,,,,,0, +8261,,,,,,,,0, +15047,,,,,,,,0, +71201,,,,,,,,0, +30897,,,,,,,,0, +56124,,,,,,,,0, +4021,,,,,,,,0, +22982,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,2.0 +41898,,,,,,,,0, +30941,90.0,10.0,10.0,9.0,8.0,10.0,9.0,2,2.0 +37417,,,,,,,,0, +15037,,,,,,,,0, +2809,,,,,,,,0, +74377,60.0,6.0,4.0,6.0,6.0,6.0,6.0,1,1.0 +17213,,,,,,,,0, +48299,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,1.0 +17052,100.0,10.0,10.0,9.0,10.0,10.0,9.0,3,3.0 +73190,,,,,,,,1,1.0 +37978,,,,,,,,0, +66936,,,,,,,,1, +53917,80.0,10.0,10.0,10.0,10.0,8.0,10.0,2,2.0 +40166,,,,,,,,0, +41372,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +21410,,,,,,,,0, +24725,,,,,,,,0, +15472,,,,,,,,0, +72949,,,,,,,,1,1.0 +59755,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +14756,,,,,,,,0, +14601,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +43503,,,,,,,,0, +66169,,,,,,,,0, +64866,,,,,,,,0, +72805,,,,,,,,0, +26279,,,,,,,,0, +5899,,,,,,,,0, +50652,,,,,,,,0, +45291,,,,,,,,0, +27445,90.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +45598,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,3.0 +10989,,,,,,,,0, +10608,,,,,,,,2,2.0 +60976,80.0,10.0,10.0,10.0,6.0,10.0,10.0,1,1.0 +29323,80.0,10.0,9.0,10.0,10.0,10.0,10.0,2,2.0 +64975,,,,,,,,1,1.0 +32450,,,,,,,,0, +70627,,,,,,,,0, +42201,,,,,,,,0, +44101,,,,,,,,0, +11828,,,,,,,,0, +33256,,,,,,,,0, +56399,,,,,,,,0, +8721,,,,,,,,0, +26451,,,,,,,,0, +64293,80.0,10.0,9.0,10.0,10.0,9.0,8.0,3,3.0 +17110,,,,,,,,0, +1469,,,,,,,,0, +24735,,,,,,,,0, +27734,,,,,,,,1,1.0 +7337,,,,,,,,0, +11382,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +26516,,,,,,,,0, +53635,73.0,9.0,9.0,9.0,7.0,10.0,9.0,3,3.0 +33639,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +45457,,,,,,,,0, +2422,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +36276,,,,,,,,0, +45176,,,,,,,,0, +37312,,,,,,,,0, +41241,,,,,,,,0, +41037,98.0,10.0,10.0,10.0,10.0,10.0,10.0,9,9.0 +50659,,,,,,,,0, +46694,,,,,,,,0, +5121,,,,,,,,0, +34057,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,4.0 +62779,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +9500,,,,,,,,0, +3512,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,3.0 +43067,,,,,,,,0, +27365,,,,,,,,0, +71662,,,,,,,,0, +1803,100.0,8.0,8.0,10.0,10.0,10.0,10.0,1,1.0 +70711,,,,,,,,0, +54821,80.0,10.0,10.0,10.0,10.0,10.0,8.0,1,1.0 +62207,60.0,10.0,10.0,10.0,10.0,10.0,8.0,1,1.0 +72170,,,,,,,,0, +5221,,,,,,,,0, +23882,100.0,9.0,9.0,9.0,9.0,9.0,9.0,3,3.0 +44112,,,,,,,,0, +8527,,,,,,,,0, +45761,,,,,,,,0, +70451,,,,,,,,0, +55287,,,,,,,,0, +69212,,,,,,,,0, +4207,,,,,,,,0, +53749,,,,,,,,0, +21617,,,,,,,,0, +39933,,,,,,,,0, +71825,,,,,,,,0, +52903,,,,,,,,0, +36099,,,,,,,,0, +64190,,,,,,,,0, +44302,,,,,,,,0, +59075,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,6.0 +1701,,,,,,,,0, +51511,,,,,,,,0, +61034,,,,,,,,0, +20225,,,,,,,,0, +17391,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +28918,,,,,,,,0, +46860,,,,,,,,0, +22766,100.0,10.0,10.0,10.0,10.0,10.0,10.0,7,7.0 +3160,,,,,,,,0, +43541,,,,,,,,0, +18301,,,,,,,,0, +71784,,,,,,,,0, +37451,100.0,9.0,10.0,10.0,10.0,10.0,10.0,3,3.0 +31413,,,,,,,,0, +2655,,,,,,,,0, +13861,40.0,8.0,2.0,8.0,10.0,8.0,4.0,1,1.0 +43712,,,,,,,,0, +38620,60.0,2.0,8.0,4.0,8.0,8.0,8.0,1,1.0 +12447,,,,,,,,0, +17416,,,,,,,,0, +5492,,,,,,,,0, +30763,,,,,,,,0, +16537,,,,,,,,0, +61849,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +30078,,,,,,,,0, +55107,,,,,,,,0, +55346,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +34402,60.0,6.0,6.0,10.0,4.0,6.0,6.0,1,1.0 +1622,,,,,,,,0, +56470,,,,,,,,0, +35868,,,,,,,,0, +21746,,,,,,,,0, +53355,,,,,,,,0, +20925,100.0,10.0,10.0,2.0,6.0,10.0,8.0,1,1.0 +48890,,,,,,,,0, +62636,,,,,,,,0, +61140,,,,,,,,0, +51837,,,,,,,,0, +47773,,,,,,,,1,1.0 +45857,,,,,,,,0, +11091,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,3.0 +31,,,,,,,,0, +35416,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +59451,80.0,10.0,6.0,10.0,10.0,8.0,8.0,1,1.0 +26286,,,,,,,,0, +64374,,,,,,,,0, +8096,,,,,,,,0, +53592,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +53301,,,,,,,,0, +62926,,,,,,,,0, +15617,,,,,,,,0, +18233,,,,,,,,0, +8885,,,,,,,,0, +52310,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +39794,100.0,8.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +41527,,,,,,,,0, +26526,,,,,,,,0, +18340,,,,,,,,0, +70489,80.0,7.0,8.0,8.0,9.0,10.0,10.0,2,2.0 +18860,,,,,,,,0, +70497,,,,,,,,0, +1934,,,,,,,,0, +45674,,,,,,,,0, +7113,,,,,,,,0, +76102,,,,,,,,0, +65815,,,,,,,,0, +19370,,,,,,,,0, +31619,,,,,,,,0, +5979,,,,,,,,0, +20703,,,,,,,,0, +21669,,,,,,,,0, +45458,100.0,10.0,10.0,8.0,10.0,10.0,10.0,1,1.0 +70046,,,,,,,,0, +25665,,,,,,,,0, +17023,,,,,,,,0, +53315,,,,,,,,0, +48974,,,,,,,,0, +71573,,,,,,,,0, +16985,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +46699,,,,,,,,0, +66130,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +36745,100.0,10.0,10.0,10.0,10.0,10.0,10.0,4,4.0 +68804,,,,,,,,0, +46592,,,,,,,,0, +69179,,,,,,,,0, +71733,100.0,8.0,10.0,8.0,10.0,10.0,8.0,1,1.0 +69834,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,1.0 +43495,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +58931,,,,,,,,0, +59300,,,,,,,,0, +976,,,,,,,,0, +75630,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +51637,,,,,,,,0, +28729,,,,,,,,0, +54479,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +34962,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +62541,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +39178,,,,,,,,0, +74494,,,,,,,,0, +61621,,,,,,,,0, +18462,,,,,,,,0, +4751,,,,,,,,0, +64528,,,,,,,,0, +17646,,,,,,,,1,1.0 +33258,,,,,,,,0, +45320,,,,,,,,0, +63144,,,,,,,,0, +57860,100.0,10.0,10.0,10.0,10.0,9.0,10.0,6,6.0 +15486,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +28009,,,,,,,,0, +71220,,,,,,,,0, +10283,,,,,,,,0, +32033,100.0,10.0,10.0,10.0,10.0,10.0,9.0,3,3.0 +76518,,,,,,,,0, +36447,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +55632,,,,,,,,0, +13746,,,,,,,,0, +48404,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +11778,,,,,,,,0, +76184,,,,,,,,1,1.0 +75103,,,,,,,,0, +41248,,,,,,,,0, +23246,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +39476,,,,,,,,0, +5517,,,,,,,,0, +63754,80.0,8.0,8.0,8.0,8.0,10.0,10.0,1,1.0 +7099,100.0,10.0,10.0,10.0,10.0,9.0,9.0,3,3.0 +30490,,,,,,,,0, +3586,,,,,,,,2, +15580,,,,,,,,0, +58050,,,,,,,,0, +29918,,,,,,,,0, +27350,,,,,,,,0, +70631,,,,,,,,0, +57107,,,,,,,,0, +12295,,,,,,,,0, +39166,,,,,,,,0, +68311,,,,,,,,0, +42972,,,,,,,,0, +75473,,,,,,,,0, +24677,,,,,,,,0, +1939,,,,,,,,0, +8291,,,,,,,,0, +14148,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,2.0 +9322,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +374,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +72624,,,,,,,,0, +35800,,,,,,,,0, +37905,80.0,8.0,6.0,10.0,10.0,10.0,10.0,1,1.0 +71571,,,,,,,,0, +10034,80.0,8.0,10.0,8.0,8.0,10.0,10.0,1,1.0 +53676,,,,,,,,0, +33173,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +74897,,,,,,,,0, +70433,,,,,,,,0, +22860,,,,,,,,0, +34132,,,,,,,,1,1.0 +61485,,,,,,,,0, +62056,,,,,,,,0, +30019,,,,,,,,0, +68965,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +63279,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,1.0 +8830,,,,,,,,0, +73024,,,,,,,,2,2.0 +68056,,,,,,,,1, +13561,,,,,,,,0, +61847,,,,,,,,0, +58043,,,,,,,,0, +35299,,,,,,,,0, +4540,,,,,,,,0, +24101,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +64445,,,,,,,,0, +38114,,,,,,,,1,1.0 +5206,87.0,10.0,8.0,10.0,10.0,9.0,9.0,4,4.0 +38241,,,,,,,,0, +27957,80.0,10.0,10.0,10.0,10.0,10.0,8.0,1,1.0 +52751,,,,,,,,0, +72266,,,,,,,,1,1.0 +22417,,,,,,,,0, +4917,,,,,,,,0, +30229,100.0,8.0,8.0,2.0,8.0,10.0,8.0,1,1.0 +47436,,,,,,,,0, +10106,,,,,,,,0, +10760,,,,,,,,0, +5795,,,,,,,,0, +14046,,,,,,,,0, +45314,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +3326,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +52534,,,,,,,,0, +4400,,,,,,,,0, +20910,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +7976,,,,,,,,0, +29369,,,,,,,,0, +21936,,,,,,,,0, +5785,,,,,,,,0, +68977,,,,,,,,0, +37803,,,,,,,,1,1.0 +31888,,,,,,,,0, +27468,,,,,,,,0, +16312,,,,,,,,0, +60796,,,,,,,,1,1.0 +52676,,,,,,,,0, +62920,100.0,10.0,8.0,10.0,10.0,8.0,8.0,1,1.0 +37986,,,,,,,,0, +16513,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +64856,96.0,10.0,10.0,10.0,10.0,10.0,9.0,5,5.0 +65277,,,,,,,,1, +65959,,,,,,,,0, +34275,,,,,,,,0, +44235,,,,,,,,0, +50163,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,1.0 +65305,,,,,,,,0, +45646,,,,,,,,0, +16697,,,,,,,,0, +48530,,,,,,,,0, +7859,,,,,,,,0, +42852,,,,,,,,0, +52621,,,,,,,,0, +54970,,,,,,,,0, +16170,,,,,,,,0, +60561,,,,,,,,0, +21312,,,,,,,,0, +977,,,,,,,,0, +56848,,,,,,,,0, +17725,,,,,,,,0, +61598,,,,,,,,0, +28048,,,,,,,,0, +56647,,,,,,,,0, +27005,,,,,,,,0, +23111,100.0,8.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +49144,,,,,,,,0, +27211,,,,,,,,0, +25446,,,,,,,,0, +45613,,,,,,,,0, +16952,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +20667,,,,,,,,0, +36198,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +17617,,,,,,,,0, +50938,,,,,,,,0, +28862,,,,,,,,0, +45071,,,,,,,,0, +74845,,,,,,,,0, +69584,,,,,,,,0, +9713,,,,,,,,0, +36734,,,,,,,,0, +40144,,,,,,,,0, +58220,,,,,,,,0, +72936,,,,,,,,0, +57955,,,,,,,,0, +37626,,,,,,,,0, +5054,100.0,8.0,8.0,10.0,10.0,8.0,10.0,1,1.0 +24372,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +54843,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,3.0 +33898,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +26157,,,,,,,,0, +45441,,,,,,,,0, +12214,,,,,,,,0, +65409,,,,,,,,0, +45435,,,,,,,,0, +68484,,,,,,,,0, +25661,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +49069,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +33802,,,,,,,,1,1.0 +54246,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,3.0 +64892,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +42457,,,,,,,,0, +53531,,,,,,,,0, +26948,100.0,10.0,10.0,10.0,10.0,8.0,9.0,2,2.0 +35216,,,,,,,,1,1.0 +60910,,,,,,,,0, +21170,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,3.0 +29828,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +46103,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +39353,,,,,,,,0, +68603,,,,,,,,0, +7235,,,,,,,,0, +32751,100.0,10.0,10.0,10.0,10.0,10.0,9.0,2,2.0 +47163,,,,,,,,0, +34366,,,,,,,,0, +30207,,,,,,,,0, +5323,,,,,,,,0, +62450,,,,,,,,0, +18402,,,,,,,,0, +25902,,,,,,,,0, +38423,,,,,,,,0, +53154,,,,,,,,0, +69241,,,,,,,,0, +61081,,,,,,,,0, +55646,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,3.0 +24427,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,6.0 +24793,,,,,,,,0, +42267,,,,,,,,0, +64596,,,,,,,,0, +17815,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +43240,,,,,,,,0, +37460,100.0,10.0,9.0,10.0,10.0,10.0,9.0,3,3.0 +76280,,,,,,,,0, +5301,,,,,,,,0, +74367,,,,,,,,0, +21155,80.0,10.0,8.0,10.0,10.0,10.0,8.0,1,1.0 +31517,,,,,,,,0, +32406,,,,,,,,0, +44058,,,,,,,,0, +15493,,,,,,,,0, +51857,,,,,,,,0, +61915,,,,,,,,0, +68406,,,,,,,,0, +30924,,,,,,,,0, +76960,,,,,,,,0, +41725,,,,,,,,0, +76175,,,,,,,,0, +18172,,,,,,,,0, +28025,,,,,,,,0, +371,,,,,,,,0, +17548,,,,,,,,0, +73374,,,,,,,,0, +35165,,,,,,,,0, +39500,,,,,,,,0, +15921,,,,,,,,0, +66439,,,,,,,,0, +12229,,,,,,,,0, +1969,,,,,,,,0, +41245,,,,,,,,1, +59852,,,,,,,,0, +62409,,,,,,,,0, +51940,,,,,,,,0, +36314,,,,,,,,0, +45134,,,,,,,,0, +19500,,,,,,,,0, +12705,,,,,,,,0, +13715,,,,,,,,0, +50411,,,,,,,,0, +24470,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +36387,,,,,,,,1,1.0 +12302,,,,,,,,0, +24324,,,,,,,,0, +45032,,,,,,,,1, +41259,,,,,,,,0, +19216,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +28567,,,,,,,,0, +23990,,,,,,,,0, +63619,,,,,,,,1,1.0 +65193,,,,,,,,0, +29682,,,,,,,,0, +23657,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +15884,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +52821,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +6963,,,,,,,,0, +6043,,,,,,,,1, +72206,20.0,2.0,2.0,6.0,10.0,2.0,2.0,1,1.0 +49912,100.0,10.0,9.0,10.0,10.0,9.0,9.0,2,2.0 +29625,,,,,,,,0, +65148,,,,,,,,0, +27756,,,,,,,,0, +31667,,,,,,,,0, +33145,,,,,,,,0, +39141,,,,,,,,0, +40328,,,,,,,,0, +57571,,,,,,,,0, +4580,,,,,,,,0, +61834,,,,,,,,0, +47913,,,,,,,,0, +41387,,,,,,,,0, +54710,,,,,,,,0, +59159,,,,,,,,0, +22250,,,,,,,,0, +21443,,,,,,,,0, +60963,,,,,,,,0, +73894,,,,,,,,0, +17008,,,,,,,,0, +32198,,,,,,,,0, +18904,,,,,,,,0, +817,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +64116,,,,,,,,0, +51687,,,,,,,,0, +56652,,,,,,,,0, +65027,,,,,,,,0, +12831,,,,,,,,0, +33795,,,,,,,,0, +25301,,,,,,,,0, +62645,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,1.0 +35670,,,,,,,,0, +15296,,,,,,,,0, +65187,,,,,,,,1,1.0 +50041,,,,,,,,0, +29569,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,2.0 +15458,,,,,,,,0, +30928,85.0,10.0,9.0,10.0,10.0,10.0,10.0,4,4.0 +29965,,,,,,,,0, +45428,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +57281,,,,,,,,0, +337,,,,,,,,0, +31284,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +6100,,,,,,,,1,1.0 +74954,,,,,,,,0, +50740,,,,,,,,0, +71735,,,,,,,,0, +44421,,,,,,,,0, +17710,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +65836,,,,,,,,0, +4734,,,,,,,,1,1.0 +29302,,,,,,,,0, +69247,,,,,,,,0, +8241,,,,,,,,0, +54255,,,,,,,,0, +36243,,,,,,,,0, +39372,,,,,,,,0, +33315,,,,,,,,0, +49158,,,,,,,,0, +29025,,,,,,,,0, +20123,60.0,8.0,8.0,10.0,10.0,10.0,4.0,1,1.0 +75453,,,,,,,,0, +14047,,,,,,,,0, +6343,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +12493,,,,,,,,0, +3502,,,,,,,,0, +15357,,,,,,,,0, +4405,,,,,,,,0, +4211,,,,,,,,0, +54231,,,,,,,,0, +38500,,,,,,,,0, +76682,,,,,,,,0, +36915,,,,,,,,1,1.0 +12082,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +20051,,,,,,,,0, +25693,,,,,,,,0, +22476,,,,,,,,0, +25523,,,,,,,,0, +2424,,,,,,,,0, +6671,,,,,,,,0, +74783,,,,,,,,0, +56786,,,,,,,,0, +53222,,,,,,,,0, +35482,,,,,,,,0, +16635,,,,,,,,0, +35703,,,,,,,,0, +47657,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +66779,,,,,,,,0, +22583,,,,,,,,0, +14656,,,,,,,,0, +58121,,,,,,,,0, +48681,,,,,,,,0, +70320,,,,,,,,0, +11628,,,,,,,,0, +50574,,,,,,,,1,1.0 +63721,,,,,,,,0, +60789,,,,,,,,0, +33212,,,,,,,,0, +44869,,,,,,,,0, +56780,,,,,,,,0, +31037,,,,,,,,0, +51363,,,,,,,,0, +60387,,,,,,,,0, +42396,,,,,,,,0, +73065,,,,,,,,0, +62580,,,,,,,,0, +62283,,,,,,,,1,1.0 +23701,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +11986,,,,,,,,0, +28865,,,,,,,,0, +69745,,,,,,,,0, +4852,,,,,,,,0, +20318,,,,,,,,0, +41095,,,,,,,,1,1.0 +47921,,,,,,,,0, +954,,,,,,,,0, +34116,,,,,,,,0, +16504,,,,,,,,0, +28131,,,,,,,,0, +58195,,,,,,,,0, +37955,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +69145,,,,,,,,0, +14512,,,,,,,,0, +72606,,,,,,,,0, +73184,,,,,,,,0, +46999,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +178,,,,,,,,0, +33108,,,,,,,,0, +71919,,,,,,,,0, +9949,,,,,,,,0, +39547,,,,,,,,0, +46660,80.0,8.0,10.0,6.0,8.0,10.0,8.0,1,1.0 +52838,,,,,,,,0, +43754,,,,,,,,0, +76536,,,,,,,,0, +29656,,,,,,,,0, +59657,,,,,,,,0, +63566,,,,,,,,0, +24947,,,,,,,,0, +15012,,,,,,,,0, +49221,,,,,,,,0, +39591,,,,,,,,0, +30898,,,,,,,,0, +19612,,,,,,,,0, +17277,,,,,,,,0, +68144,,,,,,,,0, +18699,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +39919,,,,,,,,0, +65845,,,,,,,,0, +34634,,,,,,,,0, +32492,,,,,,,,0, +40420,,,,,,,,0, +59963,,,,,,,,0, +46923,,,,,,,,0, +26620,90.0,9.0,9.0,9.0,9.0,10.0,10.0,2,2.0 +35017,,,,,,,,0, +22342,,,,,,,,0, +47679,,,,,,,,0, +12216,,,,,,,,0, +35050,,,,,,,,0, +23036,,,,,,,,0, +56023,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +27348,,,,,,,,0, +19391,,,,,,,,0, +5500,,,,,,,,0, +7797,,,,,,,,0, +5657,,,,,,,,0, +1649,,,,,,,,0, +42154,,,,,,,,0, +39799,,,,,,,,0, +2404,,,,,,,,0, +55247,,,,,,,,0, +38612,,,,,,,,0, +7850,,,,,,,,0, +73762,,,,,,,,0, +10047,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +34522,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +5403,,,,,,,,0, +19441,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +57752,,,,,,,,0, +60082,,,,,,,,0, +30958,,,,,,,,0, +36149,,,,,,,,0, +47423,,,,,,,,0, +15848,,,,,,,,0, +49595,,,,,,,,0, +10550,,,,,,,,0, +53738,80.0,10.0,8.0,10.0,10.0,8.0,8.0,1,1.0 +25180,,,,,,,,0, +15393,,,,,,,,2,2.0 +33984,,,,,,,,0, +16682,,,,,,,,0, +76124,,,,,,,,0, +53107,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +41729,,,,,,,,0, +2044,,,,,,,,0, +1552,,,,,,,,0, +10786,,,,,,,,0, +65366,,,,,,,,0, +5442,,,,,,,,0, +8973,,,,,,,,0, +16799,,,,,,,,0, +25213,,,,,,,,0, +16107,,,,,,,,1, +32537,,,,,,,,0, +65572,,,,,,,,0, +43531,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +28671,,,,,,,,0, +32656,,,,,,,,0, +32315,,,,,,,,0, +48932,,,,,,,,0, +38597,,,,,,,,0, +69821,,,,,,,,0, +65890,,,,,,,,0, +67563,,,,,,,,0, +63145,,,,,,,,1,1.0 +15218,,,,,,,,0, +50842,100.0,10.0,10.0,8.0,10.0,10.0,10.0,1,1.0 +39340,,,,,,,,0, +66208,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +11148,,,,,,,,0, +53496,,,,,,,,0, +54948,,,,,,,,0, +13487,,,,,,,,0, +53853,,,,,,,,0, +4621,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +5937,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +21963,,,,,,,,0, +67828,,,,,,,,0, +48206,,,,,,,,0, +30196,,,,,,,,0, +65086,,,,,,,,0, +43278,,,,,,,,0, +4529,,,,,,,,0, +2338,,,,,,,,0, +9730,,,,,,,,0, +64122,,,,,,,,0, +69653,,,,,,,,0, +4662,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +74739,,,,,,,,0, +24634,,,,,,,,0, +15059,,,,,,,,0, +56015,,,,,,,,0, +51749,,,,,,,,0, +65782,,,,,,,,0, +9411,60.0,10.0,8.0,10.0,10.0,10.0,8.0,1,1.0 +62591,,,,,,,,0, +44204,,,,,,,,0, +13335,,,,,,,,0, +23214,,,,,,,,0, +7848,,,,,,,,0, +6766,,,,,,,,0, +59585,,,,,,,,0, +57660,,,,,,,,0, +33921,,,,,,,,0, +65889,100.0,10.0,10.0,10.0,10.0,10.0,10.0,6,6.0 +5007,,,,,,,,0, +42088,,,,,,,,0, +72687,,,,,,,,0, +19000,,,,,,,,0, +16735,,,,,,,,0, +70915,,,,,,,,0, +55111,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +47697,,,,,,,,0, +3707,90.0,9.0,9.0,10.0,10.0,10.0,10.0,2,2.0 +73476,,,,,,,,0, +34925,,,,,,,,0, +59047,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +47426,,,,,,,,0, +73576,60.0,8.0,6.0,10.0,10.0,6.0,4.0,1,1.0 +34427,100.0,10.0,10.0,10.0,9.0,10.0,10.0,2,2.0 +42184,,,,,,,,0, +38082,,,,,,,,0, +66470,,,,,,,,0, +66857,,,,,,,,0, +72506,,,,,,,,0, +40976,,,,,,,,0, +9639,,,,,,,,0, +77040,90.0,10.0,10.0,9.0,10.0,10.0,9.0,2,2.0 +69619,,,,,,,,0, +19361,,,,,,,,0, +58289,,,,,,,,0, +14314,,,,,,,,0, +29996,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +66866,,,,,,,,0, +69741,100.0,10.0,10.0,8.0,10.0,10.0,10.0,1,1.0 +9444,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +68440,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +29361,,,,,,,,0, +31953,,,,,,,,0, +46755,,,,,,,,0, +33497,,,,,,,,0, +69063,,,,,,,,0, +54560,,,,,,,,0, +28387,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,3.0 +66875,,,,,,,,0, +15883,,,,,,,,0, +37004,,,,,,,,0, +63832,,,,,,,,0, +54483,,,,,,,,0, +11544,,,,,,,,0, +6754,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +73213,,,,,,,,0, +67325,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +34021,,,,,,,,0, +11754,,,,,,,,0, +33789,,,,,,,,0, +10155,,,,,,,,0, +64798,,,,,,,,0, +26369,,,,,,,,0, +2940,,,,,,,,0, +51686,,,,,,,,0, +71426,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +76183,,,,,,,,0, +37152,,,,,,,,0, +42882,,,,,,,,0, +70536,,,,,,,,0, +26706,,,,,,,,0, +30868,,,,,,,,0, +10505,,,,,,,,0, +1008,,,,,,,,0, +33410,,,,,,,,0, +3793,,,,,,,,0, +22821,,,,,,,,0, +26661,,,,,,,,0, +11158,,,,,,,,0, +25740,,,,,,,,0, +1661,88.0,10.0,9.0,10.0,10.0,10.0,8.0,5,5.0 +47696,,,,,,,,0, +59028,,,,,,,,0, +71330,,,,,,,,0, +6507,,,,,,,,0, +30154,,,,,,,,0, +36749,,,,,,,,0, +13958,,,,,,,,0, +27738,,,,,,,,0, +4414,,,,,,,,0, +66962,,,,,,,,0, +66239,,,,,,,,1, +21255,,,,,,,,0, +10915,,,,,,,,0, +31945,,,,,,,,1, +75808,,,,,,,,0, +26283,,,,,,,,0, +73651,,,,,,,,0, +57894,,,,,,,,0, +60678,,,,,,,,0, +60577,,,,,,,,0, +56954,,,,,,,,0, +17542,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +31574,,,,,,,,2,2.0 +11358,,,,,,,,0, +27399,,,,,,,,0, +58764,,,,,,,,0, +66199,,,,,,,,0, +62015,,,,,,,,0, +63999,,,,,,,,1, +41720,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +9026,,,,,,,,0, +9085,,,,,,,,0, +31123,,,,,,,,0, +62616,,,,,,,,0, +33269,,,,,,,,0, +69654,,,,,,,,0, +49492,,,,,,,,0, +67623,,,,,,,,0, +2571,,,,,,,,0, +7902,,,,,,,,0, +49187,,,,,,,,0, +50091,,,,,,,,0, +60519,,,,,,,,0, +12547,,,,,,,,0, +31326,,,,,,,,1, +43076,,,,,,,,0, +18793,,,,,,,,0, +29430,,,,,,,,0, +25501,,,,,,,,0, +48677,,,,,,,,0, +45467,,,,,,,,0, +69480,,,,,,,,0, +24591,100.0,10.0,10.0,10.0,10.0,10.0,8.0,1,1.0 +16238,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +36566,,,,,,,,0, +9683,,,,,,,,0, +28320,,,,,,,,0, +75047,,,,,,,,1,1.0 +57199,,,,,,,,0, +23282,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +41520,,,,,,,,0, +4489,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +56007,,,,,,,,0, +58154,,,,,,,,0, +51496,,,,,,,,0, +60570,,,,,,,,0, +27827,,,,,,,,0, +54271,,,,,,,,0, +17739,,,,,,,,1,1.0 +65283,,,,,,,,1, +75828,,,,,,,,0, +69218,,,,,,,,0, +8326,,,,,,,,1, +44648,,,,,,,,0, +43823,,,,,,,,0, +43927,,,,,,,,0, +60116,,,,,,,,0, +65326,,,,,,,,0, +13010,,,,,,,,0, +60469,,,,,,,,0, +5214,,,,,,,,0, +34949,,,,,,,,0, +55183,,,,,,,,0, +30747,,,,,,,,0, +73966,,,,,,,,0, +37969,,,,,,,,0, +71740,,,,,,,,0, +826,,,,,,,,0, +16817,,,,,,,,0, +55687,,,,,,,,0, +17143,,,,,,,,0, +53445,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +45769,,,,,,,,0, +29628,,,,,,,,0, +37559,,,,,,,,0, +59723,,,,,,,,0, +23401,,,,,,,,0, +42072,,,,,,,,0, +5759,,,,,,,,0, +19882,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +40724,,,,,,,,0, +73201,,,,,,,,0, +40457,,,,,,,,0, +54480,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +2672,,,,,,,,0, +70465,,,,,,,,0, +36805,,,,,,,,0, +14399,,,,,,,,1,1.0 +12057,,,,,,,,0, +72895,,,,,,,,0, +16414,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +59865,,,,,,,,0, +56297,,,,,,,,1,1.0 +73012,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +19550,,,,,,,,1, +41975,,,,,,,,0, +21674,,,,,,,,0, +9224,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +34095,,,,,,,,0, +70940,,,,,,,,0, +42701,,,,,,,,0, +8495,,,,,,,,0, +53707,,,,,,,,0, +46856,,,,,,,,0, +66787,,,,,,,,0, +25965,100.0,8.0,10.0,10.0,10.0,8.0,10.0,1,1.0 +73183,100.0,8.0,8.0,10.0,10.0,10.0,10.0,1,1.0 +39529,100.0,10.0,10.0,8.0,10.0,10.0,8.0,1,1.0 +45298,,,,,,,,0, +67862,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,3.0 +24210,,,,,,,,0, +16264,,,,,,,,0, +63020,,,,,,,,0, +17044,,,,,,,,0, +38339,,,,,,,,0, +40906,,,,,,,,0, +24023,,,,,,,,0, +73816,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +58320,90.0,9.0,8.0,10.0,10.0,9.0,10.0,2,2.0 +73437,,,,,,,,0, +40223,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +59268,,,,,,,,0, +21792,,,,,,,,0, +75691,,,,,,,,0, +5477,,,,,,,,0, +30238,,,,,,,,0, +75614,,,,,,,,1,1.0 +66257,,,,,,,,1,1.0 +31191,,,,,,,,1, +15950,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,3.0 +51099,,,,,,,,0, +41525,,,,,,,,0, +58855,,,,,,,,0, +60063,,,,,,,,0, +373,,,,,,,,0, +19766,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +53810,,,,,,,,0, +35861,,,,,,,,0, +67757,,,,,,,,0, +5019,,,,,,,,0, +17427,,,,,,,,0, +5779,,,,,,,,0, +45258,,,,,,,,0, +66179,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +6347,,,,,,,,0, +67379,,,,,,,,1, +44194,,,,,,,,0, +49995,,,,,,,,0, +6200,,,,,,,,0, +75669,,,,,,,,0, +23867,,,,,,,,0, +73459,,,,,,,,0, +20674,,,,,,,,0, +32216,,,,,,,,0, +48263,,,,,,,,0, +51428,80.0,8.0,10.0,10.0,10.0,8.0,8.0,1,1.0 +74507,,,,,,,,0, +55816,,,,,,,,0, +21132,,,,,,,,0, +47998,,,,,,,,0, +28952,,,,,,,,0, +632,,,,,,,,0, +17177,,,,,,,,0, +64286,,,,,,,,0, +57899,,,,,,,,0, +51186,80.0,8.0,6.0,10.0,10.0,10.0,10.0,1,1.0 +30444,,,,,,,,0, +74641,,,,,,,,0, +66863,,,,,,,,0, +64045,,,,,,,,0, +1349,,,,,,,,0, +51513,,,,,,,,0, +30449,,,,,,,,0, +50159,,,,,,,,0, +48044,,,,,,,,0, +23557,,,,,,,,0, +23604,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +8475,,,,,,,,0, +72896,,,,,,,,0, +6888,,,,,,,,0, +21871,,,,,,,,0, +6045,,,,,,,,0, +64224,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +44669,,,,,,,,0, +21781,,,,,,,,0, +55176,,,,,,,,0, +28452,,,,,,,,0, +18347,,,,,,,,0, +47857,,,,,,,,0, +19171,,,,,,,,0, +36679,,,,,,,,0, +47905,,,,,,,,0, +50576,,,,,,,,0, +6396,,,,,,,,0, +68205,,,,,,,,0, +29652,,,,,,,,0, +25778,,,,,,,,0, +49908,,,,,,,,1,1.0 +14900,,,,,,,,0, +38111,,,,,,,,0, +16930,,,,,,,,0, +3102,,,,,,,,0, +25421,,,,,,,,0, +53070,,,,,,,,0, +53246,,,,,,,,0, +60314,,,,,,,,0, +65041,,,,,,,,0, +7074,,,,,,,,0, +66819,,,,,,,,0, +20358,,,,,,,,0, +13015,100.0,10.0,10.0,10.0,10.0,6.0,10.0,1,1.0 +35332,,,,,,,,0, +73442,,,,,,,,0, +69838,,,,,,,,0, +56814,,,,,,,,0, +14988,,,,,,,,0, +69881,,,,,,,,1,1.0 +59754,,,,,,,,0, +72318,,,,,,,,1, +76325,,,,,,,,0, +29334,100.0,10.0,10.0,10.0,10.0,8.0,10.0,2,2.0 +39146,,,,,,,,0, +8765,,,,,,,,0, +75206,,,,,,,,0, +25025,,,,,,,,0, +30199,,,,,,,,0, +29006,,,,,,,,0, +64174,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +2890,,,,,,,,0, +20302,,,,,,,,0, +7581,,,,,,,,0, +3207,,,,,,,,0, +43900,,,,,,,,0, +5465,,,,,,,,0, +30341,,,,,,,,0, +55323,,,,,,,,0, +24847,,,,,,,,0, +21247,,,,,,,,0, +70926,,,,,,,,0, +46725,,,,,,,,0, +38024,,,,,,,,0, +37966,100.0,8.0,8.0,10.0,10.0,10.0,10.0,1,1.0 +14838,,,,,,,,0, +1710,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +8180,,,,,,,,0, +46612,,,,,,,,0, +68219,,,,,,,,0, +59815,,,,,,,,0, +54291,,,,,,,,0, +60916,,,,,,,,0, +67414,,,,,,,,0, +9546,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +8675,,,,,,,,0, +19504,,,,,,,,0, +38810,,,,,,,,0, +15901,,,,,,,,0, +28125,,,,,,,,0, +44223,,,,,,,,0, +65762,100.0,10.0,10.0,10.0,10.0,8.0,8.0,1,1.0 +76866,,,,,,,,0, +61160,,,,,,,,0, +10688,,,,,,,,0, +69525,,,,,,,,0, +52199,,,,,,,,0, +55352,,,,,,,,0, +39520,,,,,,,,0, +18916,,,,,,,,0, +73133,,,,,,,,0, +37458,90.0,10.0,8.0,10.0,10.0,10.0,8.0,2,2.0 +7152,,,,,,,,0, +5447,,,,,,,,0, +34320,,,,,,,,0, +9158,,,,,,,,0, +77008,,,,,,,,0, +11202,,,,,,,,0, +68275,,,,,,,,0, +75335,,,,,,,,0, +76486,100.0,10.0,10.0,9.0,10.0,10.0,10.0,2,2.0 +4325,,,,,,,,0, +42042,,,,,,,,0, +24297,,,,,,,,0, +19849,,,,,,,,0, +30399,,,,,,,,0, +46325,,,,,,,,0, +15124,,,,,,,,0, +21632,,,,,,,,0, +10614,,,,,,,,0, +51502,,,,,,,,0, +39181,,,,,,,,0, +50886,,,,,,,,0, +8325,,,,,,,,0, +55500,,,,,,,,0, +51127,,,,,,,,0, +69628,,,,,,,,0, +43289,,,,,,,,0, +2251,,,,,,,,0, +524,,,,,,,,0, +12730,,,,,,,,0, +47660,,,,,,,,0, +25464,,,,,,,,0, +50649,,,,,,,,0, +13982,80.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +13157,,,,,,,,0, +32831,,,,,,,,0, +73793,,,,,,,,0, +56217,,,,,,,,0, +17606,,,,,,,,0, +11060,,,,,,,,0, +27308,,,,,,,,0, +2050,,,,,,,,0, +8434,,,,,,,,0, +45405,,,,,,,,0, +27129,,,,,,,,0, +61442,,,,,,,,0, +49839,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +63359,,,,,,,,0, +71943,,,,,,,,0, +21476,,,,,,,,0, +17741,,,,,,,,0, +34926,,,,,,,,0, +4357,,,,,,,,0, +65756,,,,,,,,0, +55829,,,,,,,,0, +12228,,,,,,,,0, +39182,,,,,,,,0, +55125,,,,,,,,1,1.0 +56182,,,,,,,,0, +38098,,,,,,,,0, +27526,,,,,,,,0, +5058,,,,,,,,0, +48844,,,,,,,,0, +54968,,,,,,,,0, +46498,,,,,,,,0, +24174,,,,,,,,0, +74436,,,,,,,,0, +28074,,,,,,,,0, +18620,,,,,,,,0, +43429,,,,,,,,0, +33061,,,,,,,,0, +53334,,,,,,,,0, +52300,,,,,,,,0, +20865,,,,,,,,0, +53956,,,,,,,,0, +67310,,,,,,,,0, +11106,,,,,,,,0, +55861,,,,,,,,0, +75574,,,,,,,,0, +77070,,,,,,,,0, +30587,,,,,,,,0, +15696,,,,,,,,0, +4205,,,,,,,,0, +38235,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +50322,,,,,,,,0, +59448,,,,,,,,0, +15540,,,,,,,,3,3.0 +37501,,,,,,,,0, +18708,,,,,,,,0, +782,,,,,,,,0, +45950,,,,,,,,0, +28225,,,,,,,,0, +10488,,,,,,,,0, +28786,,,,,,,,0, +15269,,,,,,,,0, +26156,,,,,,,,0, +40032,,,,,,,,0, +27462,,,,,,,,0, +2119,,,,,,,,0, +55883,,,,,,,,0, +19375,,,,,,,,0, +17854,,,,,,,,0, +59920,,,,,,,,0, +64512,,,,,,,,0, +46789,,,,,,,,0, +25570,,,,,,,,0, +68684,,,,,,,,0, +16043,,,,,,,,0, +10382,,,,,,,,0, +36159,,,,,,,,0, +243,,,,,,,,0, +31744,,,,,,,,0, +2452,,,,,,,,0, +68810,,,,,,,,0, +62264,,,,,,,,0, +63932,,,,,,,,0, +19043,,,,,,,,0, +45548,,,,,,,,0, +12389,,,,,,,,0, +15176,,,,,,,,0, +3035,,,,,,,,0, +69149,,,,,,,,0, +1365,,,,,,,,0, +60526,80.0,8.0,6.0,8.0,8.0,8.0,8.0,1,1.0 +61123,,,,,,,,0, +28264,,,,,,,,0, +32395,,,,,,,,0, +33070,,,,,,,,0, +18150,,,,,,,,0, +34988,,,,,,,,0, +16816,,,,,,,,0, +7466,,,,,,,,0, +59798,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,3.0 +30323,80.0,10.0,8.0,8.0,10.0,10.0,8.0,1,1.0 +29844,,,,,,,,0, +64672,,,,,,,,0, +54969,,,,,,,,0, +21156,,,,,,,,0, +25309,,,,,,,,0, +68365,,,,,,,,0, +26794,,,,,,,,0, +13486,,,,,,,,0, +29777,,,,,,,,0, +62216,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +22508,,,,,,,,0, +37722,,,,,,,,0, +45888,,,,,,,,0, +42926,,,,,,,,0, +17388,,,,,,,,0, +30460,,,,,,,,0, +39747,,,,,,,,0, +43126,,,,,,,,0, +10055,,,,,,,,0, +10742,,,,,,,,0, +56518,,,,,,,,0, +59749,,,,,,,,0, +57074,,,,,,,,0, +34229,,,,,,,,0, +48897,,,,,,,,0, +6348,,,,,,,,0, +25978,,,,,,,,0, +4740,,,,,,,,0, +69421,,,,,,,,0, +16375,,,,,,,,0, +45424,,,,,,,,0, +54916,,,,,,,,0, +45953,,,,,,,,1, +17935,,,,,,,,0, +16566,,,,,,,,0, +2948,,,,,,,,0, +64971,,,,,,,,0, +14081,,,,,,,,0, +32021,,,,,,,,0, +73105,,,,,,,,0, +19145,,,,,,,,0, +68228,,,,,,,,0, +64438,,,,,,,,0, +23620,,,,,,,,0, +31785,,,,,,,,1, +62731,,,,,,,,0, +23796,,,,,,,,0, +58441,,,,,,,,0, +7681,,,,,,,,0, +4065,,,,,,,,0, +22706,,,,,,,,0, +44465,,,,,,,,0, +51872,,,,,,,,0, +36798,,,,,,,,0, +39169,,,,,,,,1, +14278,,,,,,,,0, +38373,,,,,,,,0, +56598,,,,,,,,0, +1417,,,,,,,,0, +75938,,,,,,,,1,1.0 +50133,,,,,,,,0, +13714,,,,,,,,0, +31280,,,,,,,,0, +42585,,,,,,,,0, +17207,,,,,,,,0, +17075,,,,,,,,0, +66705,,,,,,,,0, +43024,,,,,,,,0, +49579,,,,,,,,0, +2750,,,,,,,,0, +74562,,,,,,,,0, +60888,,,,,,,,0, +3178,,,,,,,,0, +9900,,,,,,,,0, +46813,,,,,,,,0, +32164,,,,,,,,0, +72714,,,,,,,,0, +21282,,,,,,,,0, +43478,,,,,,,,0, +29595,,,,,,,,0, +63532,,,,,,,,0, +39394,,,,,,,,0, +47363,,,,,,,,0, +33811,,,,,,,,0, +12227,,,,,,,,0, +54892,,,,,,,,0, +49956,,,,,,,,0, +63521,,,,,,,,0, +35054,,,,,,,,0, +33549,,,,,,,,0, +36368,,,,,,,,0, +64685,,,,,,,,0, +65017,,,,,,,,0, +69041,,,,,,,,0, +74912,,,,,,,,0, +59099,,,,,,,,0, +74245,,,,,,,,0, +19402,,,,,,,,0, +16825,,,,,,,,0, +60251,,,,,,,,0, +32699,,,,,,,,0, +39484,,,,,,,,0, +74390,,,,,,,,0, +60354,,,,,,,,0, +30379,,,,,,,,0, +60236,,,,,,,,0, +44992,,,,,,,,0, +59462,,,,,,,,0, +50747,,,,,,,,0, +38012,,,,,,,,0, +70016,,,,,,,,0, +31119,,,,,,,,0, +1591,,,,,,,,0, +25721,,,,,,,,0, +19899,,,,,,,,0, +52313,,,,,,,,0, +15925,,,,,,,,0, +22145,,,,,,,,0, +49113,,,,,,,,0, +26124,,,,,,,,0, +29162,,,,,,,,0, +31404,,,,,,,,0, +2038,,,,,,,,0, +55150,,,,,,,,0, +74899,,,,,,,,0, +8907,,,,,,,,0, +70809,,,,,,,,0, +31151,,,,,,,,0, +31245,,,,,,,,0, +46668,,,,,,,,0, +4115,,,,,,,,0, +69167,,,,,,,,0, +50799,,,,,,,,0, +21973,,,,,,,,0, +36526,,,,,,,,0, +69272,,,,,,,,0, +42996,,,,,,,,0, +29426,,,,,,,,0, +39950,,,,,,,,0, +67692,,,,,,,,0, +32787,,,,,,,,0, +9438,,,,,,,,0, +41819,,,,,,,,0, +7434,,,,,,,,0, +31258,,,,,,,,0, +74561,,,,,,,,0, +65009,,,,,,,,0, +32003,,,,,,,,0, +26050,,,,,,,,0, +70123,,,,,,,,0, +54697,,,,,,,,0, +14616,,,,,,,,0, +46328,,,,,,,,0, +73796,,,,,,,,0, +46000,,,,,,,,0, +156,,,,,,,,0, +20627,,,,,,,,0, +29508,,,,,,,,0, +35729,,,,,,,,0, +49603,,,,,,,,0, +69810,,,,,,,,0, +75806,,,,,,,,0, +61706,,,,,,,,0, +63247,,,,,,,,0, +51819,,,,,,,,0, +5617,,,,,,,,0, +72940,,,,,,,,0, +73509,,,,,,,,1,1.0 +20604,,,,,,,,0, +25976,,,,,,,,0, +23039,,,,,,,,0, +18653,,,,,,,,0, +41680,,,,,,,,0, +75706,,,,,,,,0, +53695,,,,,,,,0, +19219,,,,,,,,0, +73579,,,,,,,,0, +5110,,,,,,,,0, +4119,,,,,,,,0, +53746,,,,,,,,0, +49651,,,,,,,,0, +33143,,,,,,,,0, +27427,,,,,,,,0, +71870,,,,,,,,0, +22099,,,,,,,,0, +33538,,,,,,,,0, +47515,,,,,,,,0, +53108,,,,,,,,0, +10092,,,,,,,,0, +28673,,,,,,,,0, +45059,,,,,,,,0, +68832,,,,,,,,0, +35517,,,,,,,,0, +26639,,,,,,,,0, +41842,,,,,,,,1,1.0 +67517,,,,,,,,0, +23617,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +70283,,,,,,,,0, +33122,,,,,,,,0, +68204,,,,,,,,0, +44013,,,,,,,,0, +21954,,,,,,,,0, +57847,,,,,,,,0, +42109,,,,,,,,0, +52813,,,,,,,,1,1.0 +10256,,,,,,,,0, +4272,,,,,,,,0, +25233,,,,,,,,0, +75218,,,,,,,,0, +18765,,,,,,,,0, +43757,,,,,,,,0, +58101,,,,,,,,0, +37432,,,,,,,,0, +28873,,,,,,,,0, +42726,,,,,,,,0, +39576,,,,,,,,0, +68898,,,,,,,,0, +22479,,,,,,,,0, +25311,,,,,,,,0, +389,,,,,,,,0, +18960,,,,,,,,0, +20682,,,,,,,,0, +56020,,,,,,,,0, +59219,100.0,10.0,10.0,10.0,10.0,8.0,10.0,1,1.0 +19017,,,,,,,,0, +13767,,,,,,,,0, +7766,,,,,,,,0, +9723,,,,,,,,0, +57931,,,,,,,,0, +6786,,,,,,,,0, +51848,,,,,,,,0, +18771,,,,,,,,0, +7231,,,,,,,,0, +18274,,,,,,,,0, +17084,100.0,10.0,10.0,10.0,10.0,9.0,10.0,2,2.0 +63636,,,,,,,,0, +2090,,,,,,,,0, +35431,,,,,,,,0, +44403,,,,,,,,0, +72123,,,,,,,,0, +16256,,,,,,,,0, +8165,,,,,,,,0, +35570,,,,,,,,0, +59870,,,,,,,,0, +19551,,,,,,,,0, +6004,,,,,,,,0, +40395,,,,,,,,0, +2423,,,,,,,,0, +71821,,,,,,,,0, +39773,,,,,,,,1,1.0 +22038,,,,,,,,0, +70409,,,,,,,,0, +1926,,,,,,,,0, +33742,,,,,,,,0, +53587,,,,,,,,0, +7905,,,,,,,,0, +4107,,,,,,,,0, +334,,,,,,,,0, +9642,,,,,,,,1,1.0 +32327,,,,,,,,0, +46228,,,,,,,,2,2.0 +66325,,,,,,,,0, +3797,,,,,,,,0, +71370,,,,,,,,0, +61436,,,,,,,,0, +20487,,,,,,,,0, +18191,,,,,,,,0, +67378,,,,,,,,0, +54957,,,,,,,,0, +68429,,,,,,,,0, +7661,,,,,,,,0, +22748,,,,,,,,0, +14351,,,,,,,,0, +62754,100.0,10.0,9.0,10.0,10.0,10.0,10.0,2,2.0 +63088,,,,,,,,0, +71438,,,,,,,,0, +59330,,,,,,,,0, +51603,,,,,,,,0, +30108,,,,,,,,1,1.0 +18789,,,,,,,,0, +46214,,,,,,,,0, +3425,,,,,,,,0, +55144,,,,,,,,0, +4702,,,,,,,,0, +38791,,,,,,,,0, +7275,,,,,,,,0, +53390,,,,,,,,0, +32472,,,,,,,,0, +62179,,,,,,,,0, +3699,,,,,,,,0, +1633,,,,,,,,0, +38615,,,,,,,,0, +69472,,,,,,,,0, +49018,,,,,,,,0, +30862,,,,,,,,0, +40225,,,,,,,,0, +39298,,,,,,,,0, +14176,,,,,,,,0, +69293,,,,,,,,0, +24937,,,,,,,,0, +14233,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,3.0 +65616,,,,,,,,0, +5712,,,,,,,,0, +74583,,,,,,,,0, +45566,,,,,,,,0, +30417,,,,,,,,0, +60991,,,,,,,,0, +69585,,,,,,,,0, +25923,,,,,,,,0, +1301,,,,,,,,0, +44104,,,,,,,,0, +4112,,,,,,,,0, +30925,,,,,,,,0, +27593,,,,,,,,0, +46133,,,,,,,,0, +9940,,,,,,,,0, +29223,,,,,,,,0, +39094,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +72064,,,,,,,,0, +67505,,,,,,,,0, +64935,,,,,,,,0, +76143,,,,,,,,0, +12512,,,,,,,,0, +47118,,,,,,,,0, +39395,,,,,,,,0, +70326,,,,,,,,1,1.0 +22687,20.0,2.0,2.0,6.0,6.0,2.0,2.0,2,2.0 +59205,,,,,,,,0, +27131,,,,,,,,0, +49311,,,,,,,,0, +39749,,,,,,,,0, +74072,,,,,,,,0, +21323,,,,,,,,0, +40528,100.0,10.0,8.0,6.0,10.0,10.0,10.0,1,1.0 +19528,,,,,,,,0, +26411,,,,,,,,0, +71560,,,,,,,,0, +65653,,,,,,,,0, +25516,,,,,,,,0, +47884,,,,,,,,0, +18013,,,,,,,,0, +23267,,,,,,,,0, +18661,,,,,,,,0, +11700,,,,,,,,0, +73090,,,,,,,,0, +1039,,,,,,,,0, +605,,,,,,,,0, +24059,,,,,,,,0, +68592,,,,,,,,0, +45073,,,,,,,,0, +44850,,,,,,,,0, +73831,,,,,,,,0, +5812,,,,,,,,0, +18157,,,,,,,,0, +60169,,,,,,,,0, +20159,,,,,,,,0, +2416,,,,,,,,0, +7785,,,,,,,,0, +24316,,,,,,,,0, +65106,,,,,,,,0, +65394,,,,,,,,0, +45499,,,,,,,,0, +55536,,,,,,,,0, +20829,,,,,,,,0, +43181,,,,,,,,0, +48579,,,,,,,,0, +52075,,,,,,,,0, +49888,,,,,,,,0, +23481,,,,,,,,0, +252,,,,,,,,0, +73580,,,,,,,,0, +73624,,,,,,,,0, +3891,,,,,,,,0, +64622,,,,,,,,0, +6787,,,,,,,,0, +14263,,,,,,,,0, +44401,,,,,,,,0, +18476,,,,,,,,1, +55479,,,,,,,,0, +17775,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +26828,,,,,,,,0, +6985,,,,,,,,0, +13959,,,,,,,,0, +53572,,,,,,,,0, +76595,,,,,,,,0, +21549,,,,,,,,0, +8545,,,,,,,,0, +15311,,,,,,,,0, +75683,,,,,,,,0, +20330,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +23926,,,,,,,,0, +5315,,,,,,,,0, +74280,,,,,,,,0, +39260,,,,,,,,0, +57484,,,,,,,,0, +65311,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +34977,,,,,,,,0, +3852,,,,,,,,0, +76422,,,,,,,,1,1.0 +2870,,,,,,,,0, +12627,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +43697,,,,,,,,0, +41175,,,,,,,,0, +4636,,,,,,,,0, +41963,,,,,,,,1, +50635,,,,,,,,0, +72957,,,,,,,,0, +33869,,,,,,,,0, +42627,,,,,,,,0, +38566,,,,,,,,0, +26063,,,,,,,,0, +9787,,,,,,,,0, +73716,,,,,,,,0, +1546,,,,,,,,0, +37540,,,,,,,,0, +66410,,,,,,,,0, +19368,,,,,,,,0, +13763,,,,,,,,0, +49167,,,,,,,,0, +58651,,,,,,,,0, +48219,,,,,,,,0, +57440,,,,,,,,3,3.0 +34870,,,,,,,,0, +57026,,,,,,,,0, +29298,,,,,,,,0, +71523,,,,,,,,0, +45337,,,,,,,,0, +50642,,,,,,,,0, +50238,,,,,,,,0, +55850,,,,,,,,1,1.0 +33553,,,,,,,,0, +62678,,,,,,,,0, +2134,,,,,,,,0, +39730,,,,,,,,0, +942,,,,,,,,0, +53521,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,3.0 +7986,,,,,,,,0, +16445,100.0,10.0,10.0,10.0,10.0,10.0,10.0,3,3.0 +52499,,,,,,,,0, +8140,,,,,,,,0, +49755,,,,,,,,0, +39064,,,,,,,,0, +47722,,,,,,,,0, +12886,,,,,,,,0, +61615,,,,,,,,0, +64321,,,,,,,,0, +30330,,,,,,,,0, +28559,,,,,,,,1, +54673,,,,,,,,0, +12564,,,,,,,,0, +10449,,,,,,,,0, +41222,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +3720,,,,,,,,0, +49185,,,,,,,,0, +48862,,,,,,,,0, +64716,,,,,,,,0, +59721,,,,,,,,0, +23264,,,,,,,,0, +51342,,,,,,,,0, +51986,,,,,,,,0, +25543,,,,,,,,0, +63189,,,,,,,,0, +61578,,,,,,,,0, +16555,,,,,,,,0, +77013,,,,,,,,0, +6762,,,,,,,,0, +34715,,,,,,,,0, +28739,,,,,,,,1,1.0 +54335,,,,,,,,0, +48725,,,,,,,,1,1.0 +32382,,,,,,,,1,1.0 +31736,,,,,,,,0, +61981,,,,,,,,0, +11783,,,,,,,,0, +71248,,,,,,,,0, +28352,,,,,,,,1,1.0 +40900,,,,,,,,1,1.0 +9932,,,,,,,,0, +72693,,,,,,,,0, +19780,,,,,,,,0, +43224,,,,,,,,0, +12780,,,,,,,,0, +16336,,,,,,,,0, +11757,,,,,,,,0, +55465,,,,,,,,1,1.0 +36844,,,,,,,,0, +8257,,,,,,,,0, +65139,,,,,,,,0, +77091,,,,,,,,0, +43273,,,,,,,,0, +64912,,,,,,,,0, +27097,,,,,,,,3,3.0 +21875,,,,,,,,0, +34251,,,,,,,,0, +4697,,,,,,,,0, +11591,,,,,,,,0, +46549,,,,,,,,0, +34649,,,,,,,,0, +39986,,,,,,,,0, +896,,,,,,,,0, +73179,,,,,,,,0, +15761,,,,,,,,0, +9187,,,,,,,,0, +76626,,,,,,,,0, +37046,,,,,,,,0, +74032,,,,,,,,0, +9347,,,,,,,,0, +68461,,,,,,,,0, +39953,,,,,,,,0, +68985,,,,,,,,0, +50608,,,,,,,,0, +12205,,,,,,,,0, +1558,,,,,,,,0, +26890,,,,,,,,0, +51790,,,,,,,,0, +43378,,,,,,,,0, +45169,,,,,,,,0, +36636,,,,,,,,0, +11769,,,,,,,,0, +30883,,,,,,,,0, +29517,,,,,,,,0, +35307,,,,,,,,1,1.0 +51114,,,,,,,,0, +44218,,,,,,,,0, +64123,,,,,,,,0, +44902,,,,,,,,0, +39491,,,,,,,,0, +2284,,,,,,,,0, +76469,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +25260,,,,,,,,0, +3226,,,,,,,,0, +71273,,,,,,,,0, +48130,,,,,,,,1, +10887,,,,,,,,0, +13968,,,,,,,,0, +70323,,,,,,,,1,1.0 +26162,,,,,,,,1, +29087,,,,,,,,0, +3191,,,,,,,,0, +9371,,,,,,,,0, +22272,,,,,,,,0, +15568,,,,,,,,0, +16123,,,,,,,,0, +27908,,,,,,,,0, +50139,,,,,,,,0, +60982,,,,,,,,0, +29147,,,,,,,,0, +27923,,,,,,,,0, +10904,,,,,,,,0, +44624,,,,,,,,0, +29395,,,,,,,,0, +726,,,,,,,,0, +16147,,,,,,,,0, +49577,,,,,,,,0, +7114,,,,,,,,0, +3816,,,,,,,,0, +17972,,,,,,,,0, +7792,,,,,,,,0, +61722,,,,,,,,0, +35920,,,,,,,,0, +12467,,,,,,,,0, +60017,,,,,,,,0, +9009,,,,,,,,0, +52269,,,,,,,,1,1.0 +32728,,,,,,,,0, +38153,,,,,,,,0, +58775,,,,,,,,0, +1170,,,,,,,,0, +77023,,,,,,,,0, +22961,,,,,,,,0, +27255,,,,,,,,0, +29446,,,,,,,,0, +57320,,,,,,,,0, +67470,,,,,,,,0, +23072,,,,,,,,0, +73849,,,,,,,,0, +26940,,,,,,,,0, +64126,,,,,,,,0, +52520,,,,,,,,0, +21149,,,,,,,,0, +47419,,,,,,,,0, +6571,,,,,,,,0, +66961,,,,,,,,0, +53343,,,,,,,,0, +13867,,,,,,,,1,1.0 +14581,,,,,,,,0, +36615,,,,,,,,0, +42105,,,,,,,,0, +23760,,,,,,,,0, +39237,,,,,,,,0, +42174,,,,,,,,0, +52182,,,,,,,,0, +67187,,,,,,,,0, +29184,,,,,,,,0, +59233,,,,,,,,0, +1572,,,,,,,,0, +19553,,,,,,,,0, +6008,,,,,,,,0, +65357,,,,,,,,0, +46873,,,,,,,,0, +27294,,,,,,,,0, +2726,,,,,,,,0, +25894,,,,,,,,0, +25790,,,,,,,,0, +8933,,,,,,,,0, +42329,,,,,,,,0, +33289,,,,,,,,0, +66023,,,,,,,,1,1.0 +63556,,,,,,,,0, +27076,,,,,,,,0, +48485,,,,,,,,0, +31982,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +42787,,,,,,,,0, +4268,,,,,,,,0, +45263,,,,,,,,0, +18178,,,,,,,,1,1.0 +8484,,,,,,,,0, +40556,,,,,,,,0, +67264,,,,,,,,0, +44001,,,,,,,,0, +17357,,,,,,,,0, +62773,,,,,,,,0, +44081,,,,,,,,0, +65179,,,,,,,,0, +40712,,,,,,,,0, +9531,,,,,,,,0, +18467,,,,,,,,0, +27982,,,,,,,,0, +53788,,,,,,,,1,1.0 +43412,,,,,,,,0, +2617,,,,,,,,0, +67867,,,,,,,,0, +60177,,,,,,,,0, +28861,,,,,,,,0, +6436,,,,,,,,0, +50255,,,,,,,,0, +21431,,,,,,,,0, +5867,,,,,,,,0, +39726,,,,,,,,0, +3088,,,,,,,,0, +72946,,,,,,,,0, +47379,,,,,,,,0, +68335,,,,,,,,0, +11311,,,,,,,,0, +69608,,,,,,,,0, +44797,,,,,,,,0, +38477,,,,,,,,0, +63249,,,,,,,,0, +58013,,,,,,,,0, +72616,,,,,,,,0, +39262,,,,,,,,0, +40917,,,,,,,,0, +7120,,,,,,,,0, +253,,,,,,,,0, +12317,,,,,,,,0, +50056,,,,,,,,0, +37023,,,,,,,,1,1.0 +43954,,,,,,,,0, +74534,,,,,,,,0, +35468,,,,,,,,0, +16323,,,,,,,,0, +49782,,,,,,,,0, +107,,,,,,,,0, +63637,,,,,,,,0, +28095,,,,,,,,0, +72538,,,,,,,,0, +6702,,,,,,,,0, +32070,,,,,,,,0, +52871,,,,,,,,0, +20124,,,,,,,,0, +52946,,,,,,,,0, +24958,,,,,,,,0, +77084,,,,,,,,0, +68434,,,,,,,,0, +62855,,,,,,,,0, +31401,,,,,,,,0, +53270,,,,,,,,0, +51227,,,,,,,,0, +73275,,,,,,,,0, +43129,,,,,,,,0, +39651,,,,,,,,0, +59729,,,,,,,,0, +51874,,,,,,,,0, +75990,,,,,,,,0, +55817,,,,,,,,0, +30582,,,,,,,,0, +53507,,,,,,,,0, +18237,,,,,,,,0, +48202,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +20407,,,,,,,,0, +49049,,,,,,,,0, +73891,,,,,,,,0, +32464,,,,,,,,0, +19963,,,,,,,,0, +52240,,,,,,,,0, +32778,,,,,,,,0, +73570,,,,,,,,0, +67007,,,,,,,,0, +49600,,,,,,,,0, +66655,,,,,,,,0, +2508,,,,,,,,0, +3444,,,,,,,,0, +27409,,,,,,,,0, +68239,,,,,,,,0, +36945,,,,,,,,0, +73833,,,,,,,,0, +39843,,,,,,,,0, +34914,,,,,,,,0, +19028,,,,,,,,0, +60608,,,,,,,,0, +5129,,,,,,,,0, +66935,,,,,,,,1,1.0 +41279,,,,,,,,1,1.0 +41263,,,,,,,,0, +53468,,,,,,,,0, +67000,,,,,,,,0, +9370,,,,,,,,0, +66968,,,,,,,,0, +45200,,,,,,,,0, +64574,,,,,,,,0, +68181,,,,,,,,0, +48163,,,,,,,,0, +42862,,,,,,,,0, +30312,,,,,,,,0, +48696,,,,,,,,0, +67231,,,,,,,,0, +47972,,,,,,,,0, +60444,,,,,,,,0, +62643,,,,,,,,0, +682,,,,,,,,0, +47011,,,,,,,,0, +37430,,,,,,,,0, +60880,,,,,,,,0, +66623,,,,,,,,0, +67742,,,,,,,,0, +38360,,,,,,,,0, +43069,,,,,,,,0, +20337,,,,,,,,0, +34878,,,,,,,,0, +60332,,,,,,,,0, +19296,,,,,,,,0, +57569,,,,,,,,0, +69710,,,,,,,,0, +29539,,,,,,,,0, +70928,,,,,,,,0, +6833,,,,,,,,0, +44826,,,,,,,,0, +12491,,,,,,,,0, +43532,,,,,,,,0, +18858,,,,,,,,0, +56919,,,,,,,,0, +66741,,,,,,,,0, +28743,,,,,,,,0, +48664,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +29095,,,,,,,,0, +5721,,,,,,,,0, +57357,,,,,,,,0, +49405,,,,,,,,0, +1228,,,,,,,,0, +16324,,,,,,,,0, +76922,,,,,,,,0, +41415,,,,,,,,0, +12166,,,,,,,,0, +13920,,,,,,,,0, +7705,,,,,,,,0, +33340,,,,,,,,0, +29108,,,,,,,,0, +48751,,,,,,,,0, +43070,,,,,,,,0, +66288,,,,,,,,0, +7041,,,,,,,,0, +30277,,,,,,,,0, +9239,,,,,,,,0, +24989,,,,,,,,0, +15049,,,,,,,,0, +71680,,,,,,,,0, +37537,,,,,,,,0, +61964,,,,,,,,0, +597,,,,,,,,0, +16220,,,,,,,,1,1.0 +46913,,,,,,,,0, +10978,,,,,,,,0, +64211,,,,,,,,0, +45764,,,,,,,,1,1.0 +66611,,,,,,,,0, +11794,,,,,,,,0, +48262,,,,,,,,0, +2905,,,,,,,,0, +65783,100.0,10.0,8.0,10.0,10.0,10.0,10.0,1,1.0 +2359,,,,,,,,0, +7984,,,,,,,,0, +22058,,,,,,,,0, +29855,,,,,,,,0, +42166,,,,,,,,0, +12906,,,,,,,,0, +70284,,,,,,,,0, +57097,,,,,,,,0, +13058,,,,,,,,0, +16569,,,,,,,,0, +45266,,,,,,,,0, +26729,,,,,,,,0, +43967,,,,,,,,0, +10838,,,,,,,,0, +70319,,,,,,,,0, +46906,,,,,,,,0, +6134,,,,,,,,0, +16416,,,,,,,,0, +51622,,,,,,,,0, +34863,,,,,,,,0, +31332,,,,,,,,0, +26040,,,,,,,,0, +24804,,,,,,,,0, +22936,,,,,,,,0, +49762,,,,,,,,0, +18041,,,,,,,,0, +63849,,,,,,,,0, +54496,,,,,,,,0, +61792,,,,,,,,0, +22409,,,,,,,,1,1.0 +39427,,,,,,,,0, +22965,,,,,,,,0, +45157,,,,,,,,0, +43214,,,,,,,,0, +59374,,,,,,,,0, +54082,,,,,,,,0, +2715,,,,,,,,0, +1590,,,,,,,,0, +52106,,,,,,,,0, +32698,,,,,,,,0, +4170,,,,,,,,0, +2137,,,,,,,,0, +71818,,,,,,,,0, +43306,,,,,,,,0, +10109,,,,,,,,0, +20494,,,,,,,,0, +49272,,,,,,,,0, +40683,,,,,,,,0, +24048,,,,,,,,0, +18144,,,,,,,,1,1.0 +68872,,,,,,,,0, +47927,,,,,,,,0, +66002,,,,,,,,0, +26300,,,,,,,,0, +34478,,,,,,,,0, +46387,,,,,,,,0, +60728,,,,,,,,0, +32069,,,,,,,,0, +55596,,,,,,,,0, +75917,,,,,,,,0, +63400,,,,,,,,0, +9186,,,,,,,,0, +67705,,,,,,,,0, +60791,,,,,,,,0, +12959,,,,,,,,0, +24394,,,,,,,,0, +57227,,,,,,,,0, +14586,80.0,10.0,10.0,10.0,8.0,10.0,8.0,2,2.0 +34911,,,,,,,,0, +50501,,,,,,,,0, +23564,,,,,,,,0, +29502,,,,,,,,0, +14576,,,,,,,,0, +16337,,,,,,,,0, +63735,,,,,,,,0, +21627,,,,,,,,0, +62988,,,,,,,,0, +12562,,,,,,,,0, +45173,,,,,,,,0, +6727,,,,,,,,0, +40163,100.0,10.0,10.0,10.0,10.0,10.0,10.0,2,2.0 +49751,,,,,,,,0, +57819,,,,,,,,0, +31729,,,,,,,,0, +59178,,,,,,,,0, +11493,,,,,,,,0, +36460,,,,,,,,0, +67779,,,,,,,,0, +46379,,,,,,,,0, +17553,,,,,,,,0, +37221,,,,,,,,0, +57035,,,,,,,,0, +49680,,,,,,,,0, +2972,,,,,,,,0, +35512,,,,,,,,0, +13899,,,,,,,,0, +54011,,,,,,,,1,1.0 +40916,,,,,,,,0, +2264,,,,,,,,0, +9492,,,,,,,,0, +9978,,,,,,,,0, +12532,,,,,,,,0, +23211,,,,,,,,0, +39991,,,,,,,,0, +37915,,,,,,,,0, +4849,,,,,,,,0, +1328,,,,,,,,0, +349,,,,,,,,0, +58823,,,,,,,,0, +53897,,,,,,,,0, +32635,,,,,,,,0, +47846,,,,,,,,0, +9193,,,,,,,,0, +74676,,,,,,,,0, +37371,,,,,,,,0, +48702,,,,,,,,0, +24603,,,,,,,,0, +3405,,,,,,,,0, +13338,,,,,,,,0, +13117,,,,,,,,0, +36917,,,,,,,,0, +39740,,,,,,,,0, +30852,,,,,,,,0, +74490,,,,,,,,0, +7263,,,,,,,,0, +10670,,,,,,,,0, +32329,,,,,,,,0, +32019,,,,,,,,0, +59150,,,,,,,,0, +54205,,,,,,,,0, +24173,,,,,,,,0, +67651,,,,,,,,0, +75860,,,,,,,,0, +61780,,,,,,,,1, +11751,,,,,,,,0, +40959,,,,,,,,0, +76918,,,,,,,,0, +17648,,,,,,,,0, +71443,,,,,,,,0, +41662,,,,,,,,0, +68660,,,,,,,,0, +57741,,,,,,,,0, +8226,,,,,,,,0, +8585,,,,,,,,0, +72938,,,,,,,,0, +75864,,,,,,,,0, +23694,,,,,,,,0, +70816,,,,,,,,0, +25170,,,,,,,,0, +11907,,,,,,,,0, +21395,,,,,,,,0, +64042,,,,,,,,0, +47635,,,,,,,,0, +54507,,,,,,,,0, +8990,,,,,,,,0, +28039,,,,,,,,0, +20115,,,,,,,,0, +18334,,,,,,,,0, +10083,,,,,,,,0, +41303,,,,,,,,0, +3432,,,,,,,,0, +7562,,,,,,,,0, +6610,,,,,,,,0, +16402,,,,,,,,0, +58534,,,,,,,,0, +44551,,,,,,,,0, +23150,,,,,,,,0, +44388,,,,,,,,0, +58142,,,,,,,,0, +76575,,,,,,,,0, +75568,,,,,,,,0, +28084,,,,,,,,0, +48679,,,,,,,,0, +49518,,,,,,,,0, +51584,,,,,,,,0, +15812,,,,,,,,0, +24800,,,,,,,,0, +18806,,,,,,,,0, +35527,,,,,,,,1,1.0 +31456,,,,,,,,0, +4542,,,,,,,,0, +2738,,,,,,,,0, +65297,,,,,,,,0, +55987,,,,,,,,0, +13495,,,,,,,,0, +23586,,,,,,,,0, +42870,,,,,,,,0, +67207,,,,,,,,0, +2394,,,,,,,,0, +22926,,,,,,,,0, +36821,,,,,,,,0, +13808,,,,,,,,0, +18999,,,,,,,,0, +21544,,,,,,,,0, +33,,,,,,,,0, +38246,,,,,,,,0, +22405,,,,,,,,0, +54438,,,,,,,,0, +431,,,,,,,,0, +56391,,,,,,,,0, +15513,,,,,,,,0, +57445,,,,,,,,0, +63450,,,,,,,,0, +4100,,,,,,,,0, +37113,,,,,,,,0, +7237,,,,,,,,0, +52278,,,,,,,,0, +40338,,,,,,,,0, +37705,,,,,,,,0, +10088,,,,,,,,0, +38796,,,,,,,,0, +76329,,,,,,,,0, +57067,,,,,,,,0, +16867,,,,,,,,0, +2297,,,,,,,,0, +60692,,,,,,,,0, +65938,,,,,,,,0, +23390,,,,,,,,0, +42653,,,,,,,,0, +6124,,,,,,,,0, +70724,,,,,,,,0, +37593,,,,,,,,0, +16493,,,,,,,,0, +22385,,,,,,,,0, +63976,,,,,,,,0, +24125,,,,,,,,0, +8851,,,,,,,,0, +61710,,,,,,,,0, +4844,,,,,,,,0, +8239,,,,,,,,0, +59232,,,,,,,,0, +48273,,,,,,,,0, +66711,,,,,,,,0, +26418,,,,,,,,0, +27138,,,,,,,,0, +21233,,,,,,,,0, +71075,,,,,,,,0, +41746,,,,,,,,0, +5155,,,,,,,,0, +63041,,,,,,,,0, +21115,,,,,,,,0, +66331,,,,,,,,0, +72351,,,,,,,,0, +4961,,,,,,,,0, +37957,,,,,,,,0, +49522,,,,,,,,0, +27382,,,,,,,,0, +29881,,,,,,,,0, +17613,,,,,,,,0, +56651,,,,,,,,0, +48111,,,,,,,,0, +3017,,,,,,,,0, +76563,,,,,,,,0, +26233,,,,,,,,0, +60365,,,,,,,,0, +48949,,,,,,,,0, +52949,,,,,,,,0, +71447,,,,,,,,0, +53710,,,,,,,,0, +64977,,,,,,,,0, +52197,,,,,,,,0, +3955,,,,,,,,0, +62303,,,,,,,,0, +19290,,,,,,,,0, +40110,,,,,,,,0, +15855,,,,,,,,0, +63074,,,,,,,,0, +30991,,,,,,,,0, +22421,,,,,,,,1,1.0 +22259,,,,,,,,0, +45480,,,,,,,,0, +8307,,,,,,,,0, +45814,,,,,,,,0, +36051,,,,,,,,0, +38094,,,,,,,,0, +56513,,,,,,,,0, +69550,,,,,,,,0, +15308,,,,,,,,0, +47157,,,,,,,,0, +12916,,,,,,,,0, +11267,,,,,,,,0, +10252,,,,,,,,0, +52004,,,,,,,,0, +19866,,,,,,,,0, +6533,,,,,,,,0, +17840,,,,,,,,0, +45960,,,,,,,,0, +9753,,,,,,,,0, +9979,,,,,,,,0, +45177,,,,,,,,0, +60844,,,,,,,,0, +52549,,,,,,,,0, +12430,,,,,,,,0, +66302,,,,,,,,0, +67737,,,,,,,,0, +46207,,,,,,,,0, +29968,,,,,,,,0, +14966,,,,,,,,0, +57331,,,,,,,,0, +74262,,,,,,,,0, +27867,,,,,,,,0, +53828,,,,,,,,0, +63345,,,,,,,,0, +71506,,,,,,,,0, +58572,,,,,,,,0, +50683,,,,,,,,0, +9042,,,,,,,,0, +31565,,,,,,,,0, +64903,,,,,,,,0, +18394,,,,,,,,0, +66807,,,,,,,,0, +23900,,,,,,,,1,1.0 +40832,,,,,,,,0, +32576,,,,,,,,0, +39945,,,,,,,,0, +65137,,,,,,,,0, +50355,,,,,,,,0, +6306,,,,,,,,0, +7916,,,,,,,,0, +7788,,,,,,,,0, +30450,,,,,,,,0, +30239,,,,,,,,0, +23565,,,,,,,,0, +51164,,,,,,,,0, +11844,,,,,,,,0, +51643,,,,,,,,0, +68198,,,,,,,,0, +6069,,,,,,,,0, +32746,,,,,,,,0, +12065,,,,,,,,0, +40621,,,,,,,,0, +1307,,,,,,,,0, +29615,,,,,,,,0, +37063,,,,,,,,0, +47925,,,,,,,,0, +4145,,,,,,,,0, +72875,,,,,,,,0, +5109,,,,,,,,0, +12800,,,,,,,,0, +56550,,,,,,,,0, +64493,,,,,,,,0, +36059,,,,,,,,0, +58366,,,,,,,,0, +64812,,,,,,,,0, +29235,,,,,,,,0, +19141,,,,,,,,0, +62201,,,,,,,,0, +22640,,,,,,,,0, +23287,,,,,,,,0, +3765,,,,,,,,0, +60889,,,,,,,,0, +65006,,,,,,,,0, +31570,,,,,,,,0, +18167,,,,,,,,0, +44264,,,,,,,,0, +7399,,,,,,,,0, +61886,,,,,,,,0, +39643,,,,,,,,0, +61840,,,,,,,,0, +75549,,,,,,,,0, +63888,,,,,,,,0, +48362,,,,,,,,0, +70401,,,,,,,,0, +62018,,,,,,,,0, +38484,,,,,,,,0, +44679,,,,,,,,0, +56408,,,,,,,,0, +65032,,,,,,,,0, +31651,,,,,,,,0, +42780,,,,,,,,0, +19867,,,,,,,,0, +5246,,,,,,,,0, +52953,,,,,,,,0, +35568,,,,,,,,0, +20427,,,,,,,,0, +44599,,,,,,,,0, +37231,,,,,,,,0, +70237,,,,,,,,0, +35571,,,,,,,,0, +66249,,,,,,,,0, +71348,,,,,,,,0, +59027,,,,,,,,0, +76012,,,,,,,,0, +67665,,,,,,,,0, +36321,,,,,,,,0, +31197,,,,,,,,0, +51750,,,,,,,,0, +35402,,,,,,,,0, +45518,,,,,,,,0, +29773,,,,,,,,0, +30744,,,,,,,,0, +3639,,,,,,,,0, +47692,,,,,,,,0, +14831,,,,,,,,0, +32489,,,,,,,,0, +63838,,,,,,,,0, +27988,,,,,,,,0, +57849,,,,,,,,0, +75780,100.0,10.0,10.0,10.0,10.0,10.0,10.0,1,1.0 +65802,,,,,,,,0, +53650,,,,,,,,0, +75674,,,,,,,,1,1.0 +7441,,,,,,,,0, +33924,,,,,,,,0, +42829,,,,,,,,0, +36710,,,,,,,,0, +17220,,,,,,,,0, +12460,,,,,,,,0, +50906,,,,,,,,0, +13773,,,,,,,,0, +21394,,,,,,,,0, +65436,,,,,,,,0, +74712,,,,,,,,0, +38635,,,,,,,,0, +18387,,,,,,,,0, +55581,,,,,,,,0, +35660,,,,,,,,0, +16575,,,,,,,,1,1.0 +42619,,,,,,,,0, +76961,,,,,,,,0, +41902,,,,,,,,0, +11752,,,,,,,,0, +76099,,,,,,,,0, +4786,,,,,,,,1,1.0 +69498,,,,,,,,0, +70328,,,,,,,,0, +62931,,,,,,,,0, +76107,,,,,,,,1,1.0 +72669,,,,,,,,0, +28902,,,,,,,,0, +68033,,,,,,,,0, +11877,,,,,,,,0, +532,,,,,,,,0, +64159,,,,,,,,0, +5959,,,,,,,,0, +56062,,,,,,,,0, +70253,,,,,,,,0, +47220,,,,,,,,0, +31715,,,,,,,,0, +21678,,,,,,,,0, +356,,,,,,,,0, +7060,,,,,,,,0, +71073,,,,,,,,0, +62503,,,,,,,,0, +48373,,,,,,,,0, +47817,,,,,,,,0, +32242,,,,,,,,0, +71288,,,,,,,,0, +73497,,,,,,,,0, +22625,,,,,,,,0, +39985,,,,,,,,0, +11028,,,,,,,,0, +26201,,,,,,,,0, +58429,,,,,,,,0, +61700,,,,,,,,0, +72368,,,,,,,,0, +63336,,,,,,,,0, +75546,,,,,,,,0, +68743,,,,,,,,0, +32446,,,,,,,,0, +4682,,,,,,,,0, +3744,,,,,,,,0, +17231,,,,,,,,0, +52575,,,,,,,,2,2.0 +27793,,,,,,,,0, +30467,,,,,,,,0, +3182,,,,,,,,0, +11439,,,,,,,,0, +51139,,,,,,,,0, +37237,,,,,,,,0, +47881,,,,,,,,0, +6505,,,,,,,,0, +1913,,,,,,,,0, +61284,,,,,,,,0, +1020,,,,,,,,0, +39359,,,,,,,,0, +4515,,,,,,,,0, +43409,,,,,,,,0, +38638,,,,,,,,0, +2124,,,,,,,,0, +71382,,,,,,,,0, +44057,,,,,,,,0, +13094,,,,,,,,0, +54425,,,,,,,,0, +62738,,,,,,,,1,1.0 +25231,,,,,,,,0, +7347,,,,,,,,0, +1921,,,,,,,,0, +21457,,,,,,,,0, +67108,,,,,,,,0, +17743,,,,,,,,0, +31668,,,,,,,,0, +74239,,,,,,,,0, +54327,,,,,,,,0, +29157,,,,,,,,0, +63922,,,,,,,,0, +40286,,,,,,,,0, +8826,,,,,,,,0, +53965,,,,,,,,0, +3511,,,,,,,,0, +35178,,,,,,,,0, +48607,,,,,,,,0, +74768,,,,,,,,0, +74357,,,,,,,,0, +38328,,,,,,,,0, +52298,,,,,,,,0, +72994,,,,,,,,0, +55432,,,,,,,,0, +75868,,,,,,,,0, +39910,,,,,,,,0, +2867,,,,,,,,0, +21612,,,,,,,,0, +25502,,,,,,,,0, +49374,,,,,,,,0, +20697,,,,,,,,0, +61897,,,,,,,,0, +2794,,,,,,,,0, +3728,,,,,,,,0, +63973,,,,,,,,0, +41298,,,,,,,,0, +34326,,,,,,,,0, +52769,,,,,,,,0, +16302,,,,,,,,0, +18637,,,,,,,,0, +70610,,,,,,,,0, +8607,,,,,,,,0, +16083,,,,,,,,0, +76677,,,,,,,,0, +75908,,,,,,,,0, +50865,,,,,,,,0, +33937,,,,,,,,0, +14125,,,,,,,,0, +72591,,,,,,,,0, +14305,,,,,,,,0, +62023,,,,,,,,0, +71441,,,,,,,,0, +42482,,,,,,,,0, +74852,,,,,,,,0, +12376,,,,,,,,0, +33862,,,,,,,,0, +51529,,,,,,,,0, +19317,,,,,,,,0, +18588,,,,,,,,0, +61980,,,,,,,,0, +36236,,,,,,,,0, +42474,,,,,,,,1, +29205,,,,,,,,0, +26196,,,,,,,,0, +51274,,,,,,,,0, +70331,,,,,,,,0, +34004,,,,,,,,0, +73464,,,,,,,,0, +69344,,,,,,,,0, +51845,,,,,,,,0, +76094,,,,,,,,0, +58436,,,,,,,,0, +74156,,,,,,,,0, +36652,,,,,,,,0, +27566,,,,,,,,0, +74925,,,,,,,,0, +15758,,,,,,,,0, +14908,,,,,,,,0, +12976,,,,,,,,0, +74679,,,,,,,,0, +56141,,,,,,,,0, +55032,,,,,,,,0, +48733,,,,,,,,0, +27199,,,,,,,,0, +68022,,,,,,,,1,1.0 +51762,,,,,,,,0, +16773,,,,,,,,0, +48409,,,,,,,,0, +46596,,,,,,,,0, +64258,,,,,,,,0, +15743,,,,,,,,0, +76168,,,,,,,,1,1.0 +58492,,,,,,,,0, +76519,,,,,,,,1,1.0 +69230,,,,,,,,0, +35201,,,,,,,,0, +40489,,,,,,,,0, +24198,,,,,,,,0, +62142,,,,,,,,0, +18632,,,,,,,,0, +35142,,,,,,,,0, +54386,,,,,,,,0, +10180,,,,,,,,0, +62407,,,,,,,,0, +61738,,,,,,,,0, +20426,,,,,,,,0, +73572,,,,,,,,0, +28912,,,,,,,,0, +44325,,,,,,,,0, +14830,,,,,,,,0, +41007,,,,,,,,0, +64878,,,,,,,,0, +8245,,,,,,,,0, +14227,,,,,,,,0, +31117,,,,,,,,0, +48291,,,,,,,,0, +13686,,,,,,,,0, +56633,,,,,,,,0, +48050,,,,,,,,0, +23533,,,,,,,,0, +3261,,,,,,,,0, +778,,,,,,,,0, +17627,,,,,,,,0, +13826,,,,,,,,0, +48729,,,,,,,,0, +32954,,,,,,,,0, +28145,,,,,,,,0, +70910,,,,,,,,0, +24484,,,,,,,,0, +10700,,,,,,,,0, +47822,,,,,,,,0, +1688,,,,,,,,0, +25299,,,,,,,,0, +27090,,,,,,,,0, +49708,,,,,,,,0, +24731,,,,,,,,0, +29437,,,,,,,,0, +28355,,,,,,,,0, +32960,,,,,,,,0, +64013,,,,,,,,0, +26114,,,,,,,,0, +52522,,,,,,,,0, +5636,,,,,,,,0, +34363,,,,,,,,0, +54734,,,,,,,,0, +17127,,,,,,,,0, +42242,,,,,,,,0, +27900,,,,,,,,0, +48546,,,,,,,,1, +58984,,,,,,,,0, +55029,,,,,,,,0, +50903,,,,,,,,0, +34903,,,,,,,,0, +47988,,,,,,,,0, +42371,,,,,,,,0, +46408,,,,,,,,0, +11224,,,,,,,,0, +61645,,,,,,,,0, +42704,,,,,,,,0, +54313,,,,,,,,0, +19726,,,,,,,,0, +58175,,,,,,,,0, +41997,,,,,,,,0, +48171,,,,,,,,0, +45481,,,,,,,,0, +66909,,,,,,,,0, +53114,,,,,,,,0, +41891,,,,,,,,0, +12156,,,,,,,,0, +70794,,,,,,,,0, +1221,,,,,,,,0, +47357,,,,,,,,0, +3465,,,,,,,,0, +590,,,,,,,,0, +76402,,,,,,,,0, +55036,,,,,,,,0, +66859,,,,,,,,0, +11999,,,,,,,,0, +34378,,,,,,,,0, +23616,,,,,,,,0, +14795,,,,,,,,0, +41044,,,,,,,,0, +5923,,,,,,,,0, +29155,,,,,,,,0, +41789,,,,,,,,0, +30136,,,,,,,,0, +39831,,,,,,,,0, +10858,,,,,,,,0, +69892,,,,,,,,0, +55156,,,,,,,,0, +24255,,,,,,,,0, +69420,,,,,,,,0, +37477,,,,,,,,0, +44083,,,,,,,,0, +19896,,,,,,,,0, +3826,,,,,,,,0, +39508,,,,,,,,0, +48920,,,,,,,,0, +75097,,,,,,,,0, +54980,,,,,,,,0, +31140,,,,,,,,0, +18956,,,,,,,,0, +66146,,,,,,,,0, +13029,,,,,,,,0, +45307,,,,,,,,0, +39091,,,,,,,,0, +9266,,,,,,,,0, +26823,,,,,,,,0, +32859,,,,,,,,0, +5596,,,,,,,,0, +30109,,,,,,,,0, +63513,,,,,,,,0, +44744,,,,,,,,0, +47024,,,,,,,,0, +72660,,,,,,,,0, +14909,,,,,,,,0, +49376,,,,,,,,0, +55187,,,,,,,,1,1.0 +46301,,,,,,,,0, +54977,,,,,,,,0, +51748,,,,,,,,0, +44668,,,,,,,,0, +4368,,,,,,,,0, +2983,,,,,,,,0, +69684,,,,,,,,0, +21738,,,,,,,,0, +72645,,,,,,,,0, diff --git a/docs/source/03_tutorial/data/shuttles.xlsx b/docs/source/03_tutorial/data/shuttles.xlsx new file mode 100755 index 0000000000..25e0e5f595 Binary files /dev/null and b/docs/source/03_tutorial/data/shuttles.xlsx differ diff --git a/docs/source/03_tutorial/img/jupyter_notebook_ch3.png b/docs/source/03_tutorial/img/jupyter_notebook_ch3.png new file mode 100644 index 0000000000..80dfe243c8 Binary files /dev/null and b/docs/source/03_tutorial/img/jupyter_notebook_ch3.png differ diff --git a/docs/source/03_tutorial/img/parallel_diagram.png b/docs/source/03_tutorial/img/parallel_diagram.png new file mode 100644 index 0000000000..19178e23b2 Binary files /dev/null and b/docs/source/03_tutorial/img/parallel_diagram.png differ diff --git a/docs/source/03_tutorial/img/sequential_diagram.png b/docs/source/03_tutorial/img/sequential_diagram.png new file mode 100644 index 0000000000..cd748ce727 Binary files /dev/null and b/docs/source/03_tutorial/img/sequential_diagram.png differ diff --git a/docs/source/03_tutorial/img/typical_workflow.png b/docs/source/03_tutorial/img/typical_workflow.png new file mode 100644 index 0000000000..e81dc28d21 Binary files /dev/null and b/docs/source/03_tutorial/img/typical_workflow.png differ diff --git a/docs/source/04_user_guide/01_setting_up_vscode.md b/docs/source/04_user_guide/01_setting_up_vscode.md new file mode 100644 index 0000000000..77e7dc1a7e --- /dev/null +++ b/docs/source/04_user_guide/01_setting_up_vscode.md @@ -0,0 +1,239 @@ +# Setting up Visual Studio Code + +> *Note:* This documentation is based on `Kedro 0.14.0`, if you spot anything that is incorrect then please create an [issue](https://github.com/quantumblacklabs/kedro/issues) or pull request. + +Start by opening a new project directory in VS Code and installing the Python plugin under **Tools and languages**: + +![](images/vscode_startup.png) + +Python is an interpreted language; to run Python code you must tell VS Code which interpreter to use. From within VS Code, select a Python 3 interpreter by opening the **Command Palette** (`Cmd + Shift + P` for macOS), start typing the **Python: Select Interpreter** command to search, then select the command. + +At this stage, you should be able to see the `conda` environment that you have created. Select the environment: + +![](images/vscode_setup_interpreter.png) + +### Advanced: For those using `venv` / `virtualenv` + +We're going to show you how to get your virtual environments to show up in your Python interpreter in VS Code. You do this by opening [`settings.json`](https://code.visualstudio.com/docs/getstarted/settings#_settings-file-locations) and adding the following: + +```console +"python.venvPath": "/path/containing/your/venvs/" +``` + +It is useful to note that if you create a `venv` / `virtualenv` in your project directory named `venv`, VS Code (much like PyCharm) automatically loads it as the Python interpreter (unless you manually define your Python interpreter to something else as described above). + + +## Setting up tasks + +Here we will show you how to setup tasks for such Kedro CLI commands as `run`, `test`, `install`, `package`, etc. + +You'll start by finding the path of your Kedro CLI script in the terminal: + +```console +# macOS / Linux +which kedro + +# Windows (in **Anaconda Command Prompt**) +python -c 'import sys, os.path; print(os.path.join(os.path.dirname(sys.executable), "kedro"))' +``` + +We're going to need you to modify your `tasks.json`. To do this, go to **Terminal > Configure Tasks...** on your menu and open up `tasks.json` in the editor. Modify it with the following: + +``` +{ + // See https://go.microsoft.com/fwlink/?LinkId=733558 + // Kedro tasks + "version": "2.0.0", + "tasks": [ + { + "label": "Install", + "type": "shell", + "command": "/path/to/kedro/script", + "args": [ + "install" + ] + }, + { + "label": "Test", + "group": "test", + "type": "shell", + "command": "/path/to/kedro/script", + "args": [ + "test" + ] + }, + { + "label": "Run", + "type": "shell", + "command": "/path/to/kedro/script", + "args": [ + "run" + ] + }, + + // This is the default build task + { + "label": "Package", + "group": { + "kind": "build", + "isDefault": true + }, + "type": "shell", + "command": "/path/to/kedro/script", + "args": [ + "package" + ], + // Will run `Test` before packaging + "dependsOn": [ + "Test" + ] + } + ] +} +``` + +To start a build, go to **Terminal > Run Build Task...** or press `Cmd + Shift + B` for macOS. You can run other tasks by going to **Terminal > Run** and choosing which task you want to run. + +![](images/vscode_run.png) + + +## Debugging + +To debug, you will first need to create an `.env` file in your project root. Add the full path to the `./src/` folder to the *PYTHONPATH* environment variable in the `.env` file: + +```console +# In macOS / Linux: +PYTHONPATH=/path/to/project/src:$PYTHONPATH + +# In Windows +set PYTHONPATH=C:/path/to/project/src;%PYTHONPATH% +``` + +You can find more information about setting up environmental variables [here](https://code.visualstudio.com/docs/python/environments#_environment-variable-definitions-file). + +Go to **Debug > Add Configurations**. + +> *Note:* If you encounter the following error: `Cannot read property 'openConfigFile' of undefined`, you can manually create `launch.json` file in your project root folder and paste the configuration from below. + +Edit the `launch.json` that opens in the editor with: + +``` +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "name": "Python: Kedro Run", + "type": "python", + "request": "launch", + "program": "${workspaceFolder}/src/<your_project_package>/run.py", + "console": "integratedTerminal", + } + ] +} +``` + +To add a breakpoint in your `run.py` script, for example, click on the left hand side of the line of code: + +![](images/vscode_set_breakpoint.png) + +Click on **Debug** button on the left pane: + +![](images/vscode_debug_button.png) + +Then select the debug config **Python: Kedro Run** and click **Debug** (the green play button): + +![](images/vscode_run_debug.png) + +Execution should stop at the breakpoint: + +![](images/vscode_breakpoint.png) + +### Advanced: Remote Interpreter / Debugging + +It is possible to debug remotely using VS Code. The following example assumes SSH access is available on the remote computer (running a Unix-like OS) running the code that will be debugged. + +First install the `ptvsd` Python library on both the local and remote computer using the following command (execute it on both computers in the appropriate `conda` environment): + +```console +python -m pip install --upgrade ptvsd +``` + +Go to the Debugger Configurations as described [above](#debugging). Add the following to the `configurations` array in `launch.json`: + +``` +{ + "name": "Kedro Remote Debugger", + "type": "python", + "request": "attach", + "pathMappings": [ + { + // You may also manually specify the directory containing your source code. + "localRoot": "${workspaceFolder}", + "remoteRoot": "/path/to/your/project" + } + ], + "port": 3000, // Set to the remote port. + "host": "127.0.0.1" // Set to your remote host's public IP address. +} +``` + +Change the `remoteRoot` path to the path of your project on the remote computer. Open the file `src/<package_name>/run.py` and enter the following near the top: + +```python +import ptvsd + +# Allow other computers to attach to ptvsd at this IP address and port. +ptvsd.enable_attach(address=("127.0.0.1", 3000), redirect_output=True) + +# Pause the program until a remote debugger is attached +print("Waiting for debugger to attach...") +ptvsd.wait_for_attach() +``` + +Ensure both computers (the computer you are working on and the remote computer executing your code) have the same source code. For example, you can use `scp` to sync your code: + +```console +scp -r /path/to/<your_project_name> <your_username>@<remote_server>:projects/ +``` + +❗The example above assumes there is a directory called `projects` in the home directory of the user account on the remote computer. This is where the project will be copied to. This can be set up as a deploy task as described above: + +``` +// Add to `tasks` array in `tasks.json` +{ + "label": "Deploy", + "type": "shell", + "command": "scp -r /path/to/<your_project_name> <your_username>@<remote_server>:projects/", +} +``` + +> *Note:* There is also a third-party plugin for VS Code that supports remote workspaces, click [here](https://marketplace.visualstudio.com/items?itemName=mkloubert.vscode-remote-workspace) to find it. + +Start executing the pipeline on your remote computer: + +```console +while :; do kedro run; done +``` + +You should see the following message in the terminal and execution will stop: + +```console +Waiting for debugger to attach... +``` + +Open a new terminal session and create an SSH tunnel from your local computer to the remote one (leave this process running): + +```console +ssh -vNL 3000:127.0.0.1:3000 <your_username>@<remote_server> +``` + +Go to the **Debugging** section in VS Code and select the newly created remote debugger profile: + +![](images/vscode_remote_debugger.png) + +You will need to set a breakpoint in VS Code as described [above](#debugging) and start the debugger by clicking the green play triangle: + +> *Note:* You can find more information on debugging in VS Code [here](https://code.visualstudio.com/docs/python/debugging) diff --git a/docs/source/04_user_guide/02_setting_up_pycharm.md b/docs/source/04_user_guide/02_setting_up_pycharm.md new file mode 100644 index 0000000000..db6313f637 --- /dev/null +++ b/docs/source/04_user_guide/02_setting_up_pycharm.md @@ -0,0 +1,119 @@ +# Setting up PyCharm + +> *Note:* This documentation is based on `Kedro 0.14.0`, if you spot anything that is incorrect then please create an [issue](https://github.com/quantumblacklabs/kedro/issues) or pull request. + +This section will present a quick guide on how to configure [PyCharm](https://www.jetbrains.com/pycharm/) as a development environment for working on Kedro projects. + +Open a new project directory in PyCharm. You will need to add your **Project Interpreter**, so go to **PyCharm | Preferences** for macOS or **File | Settings** for Windows and Linux: + +![](images/pycharm_preferences.png) + +Choose **Project Interpreter**: <br /> + +![](images/pycharm_project_interpreter.png) + +Click the cog on the right-hand side and click **Add**: + +![](images/pycharm_add_interpreter.png) + +Select **Conda Environment**: + +![](images/pycharm_add_conda_env.png) + +Choose **Existing environment** and navigate your way to find your existing environment. If you don't see your `conda` environment in the dropdown menu then you need to open a `terminal` / `command prompt` with your `conda` environment activated and run: + +```console +# macOS / Linux +which python +# Windows +python -c 'import sys; print(sys.executable)' +``` + +Paste the interpreter path into the file picker and click **OK**: <br /> + +![](images/pycharm_select_conda_interpreter.png) + +Finally, in the **Project Explorer** right-click on `src` and then go to **Mark Directory as | Sources Root**: + +![](images/pycharm_mark_dir_as_sources_root.png) + + +## Set up Run configurations + +[PyCharm Run configurations](https://www.jetbrains.com/help/pycharm/creating-and-editing-run-debug-configurations.html) allow you to execute preconfigured scripts rapidly in your IDE with a click of a button. This may be useful for testing, running and packaging your Kedro projects. + +Here we will walk you through an example of how to setup Run configuration for Kedro CLI `run` command, however it is also applicable to other Kedro commands: `test`, `install`, `package`, `build-docs`. + +Go to **Run | Edit Configurations**: + +![](images/pycharm_edit_confs.png) + +Add a new **Python** Run configuration: + +![](images/pycharm_add_py_run_config.png) + +Create a **Run / Debug Configuration** for `kedro run` and get the path to the Kedro CLI script: + +```console +# macOS / Linux +which kedro + +# Windows (in `cmd`) +python -c 'import sys, os.path; print(os.path.join(os.path.dirname(sys.executable), "kedro"))' +``` + +Edit the new Run configuration as follows: + +![](images/pycharm_edit_py_run_config.png) + +Replace **Script path** with path obtained above and **Working directory** with the path of your project directory and then click **OK**. + +To execute the Run configuration, select it from the **Run / Debug Configurations** dropdown in the toolbar (if that toolbar is not visible, you can enable it by going to **View > Toolbar**). Click the green triangle: + +![](images/pycharm_conf_run_button.png) + +You may also select **Run** from the toolbar and execute from there. <br /> + +![](images/pycharm_conf_run_dropdown.png) + +For other `kedro` commands, follow same steps but replace `run` in the `Parameters` field with the other commands that are to be used (e.g., `test`, `package`, `build-docs` etc.). + + +## Debugging + +To debug, simply click the line number in the source where you want execution to break: + +![](images/pycharm_add_breakpoint.png) + +Then click the bug button in the toolbar (![](images/pycharm_debugger_button.png)) and execution should stop at the breakpoint: + +![](images/pycharm_debugger_break.png) + +>For more information about debugging with PyCharm take a look at the [debugging guide on jetbrains.com](https://www.jetbrains.com/help/pycharm/part-1-debugging-python-code.html). + + +## Advanced: Remote SSH interpreter + +> *Note:* This section uses the features supported in PyCharm Professional Edition only. + +Firstly, add an SSH interpreter. Go to **Preferences | Project Interpreter** as above and proceed to add a new interpreter. Select **SSH Interpreter** and fill in details of the remote computer: + +![](images/pycharm_ssh_interpreter_1.png) + +Click **Next** and add the SSH password or SSH private key: + +![](images/pycharm_ssh_interpreter_2.png) + +Click **Next** and add the path of the remote interpreter. Assuming a Unix-like OS, this can be found by running `which python` within the appropriate `conda` environment on the remote computer. + +![](images/pycharm_ssh_interpreter_3.png) + +Click **Finish**. Go to **Run / Debug Configurations** to add a **Remote Run**. Select the remote interpreter that you have just created. For the script path, get the path of the Kedro CLI on the remote computer by running `which kedro` (macOS / Linux) in the appropriate environment. + +![](images/pycharm_ssh_runner.png) + +Click **OK** and then select **Remote Run** from the toolbar and click **Run** to execute remotely. + +![](images/pycharm_remote_run.png) + +To remotely debug, click the debugger button as [described above](#debugging). diff --git a/docs/source/04_user_guide/03_configuration.md b/docs/source/04_user_guide/03_configuration.md new file mode 100644 index 0000000000..a6c027cb3d --- /dev/null +++ b/docs/source/04_user_guide/03_configuration.md @@ -0,0 +1,53 @@ +# Configuration + +> *Note:* This documentation is based on `Kedro 0.14.0`, if you spot anything that is incorrect then please create an [issue](https://github.com/quantumblacklabs/kedro/issues) or pull request. + +This section contains detailed information about configuration. You may also want to consult the relevant API documentation on [kedro.config](/kedro.config.rst). + +## Local and base configuration + +We recommend that you keep all configuration files in the `conf` directory of a Kedro project. However, if you prefer, you may point Kedro to any other directory and change the configuration paths by modifying the `CONF_ROOT` variable in `src/run.py`. + +## Loading + +Kedro-specific configuration (e.g., `DataCatalog` configuration for IO) is loaded using the `ConfigLoader` class: + +```python +from kedro.config import ConfigLoader + +conf_paths = ['conf/base', 'conf/local'] +conf_loader = ConfigLoader(conf_paths) +conf_catalog = conf_loader.get('catalog*', 'catalog*/**') +``` + +This will recursively scan for configuration files firstly in `conf/base/` and then in `conf/local/` directory according to the following rules: + +* ANY of the following is true: + * filename starts with `catalog` OR + * file is located in a sub-directory whose name is prefixed with `catalog` +* AND file extension is one of the following: `yaml`, `yml`, `json`, `ini`, `pickle`, `xml`, `properties` or `shellvars` + +Configuration information from files stored in `base` or `local` that match these rules is merged at runtime and returned in the form of a config dictionary: + +* If any 2 configuration files located inside the same environment path (`conf/base/` or `conf/local/` in this example) contain the same top-level key, `load_config` will raise a `ValueError` indicating that the duplicates are not allowed. + +> *Note:* Any top-level keys that start with `_` character are considered hidden (or reserved) and therefore are ignored right after the config load. Those keys will neither trigger a key duplication error mentioned above, nor will they appear in the resulting configuration dictionary. However, you may still use such keys for various purposes. For example, as [YAML anchors and aliases](https://confluence.atlassian.com/bitbucket/yaml-anchors-960154027.html). + +* If 2 configuration files have duplicate top-level keys, but are placed into different environment paths (one in `conf/base/`, another in `conf/local/`, for example) then the last loaded path (`conf/local/` in this case) takes precedence and overrides that key value. `ConfigLoader.get(<pattern>, ...)` will not raise any errors, however a `DEBUG` level log message will be emitted with the information on the over-ridden keys. + + +## Additional configuration environments + +In addition to the 2 built-in configuration environments, it is possible to create your own. Your project loads `conf/base/` as the bottom-level configuration environment but allows you to overwrite it with any other environments that you create. You are be able to create environments like `conf/server/`, `conf/test/`, etc. Any additional configuration environments can be created inside `conf` folder and loaded by running the following command: + +```bash +kedro run --env=test +``` + +If no `env` option is specified, this will default to using `local` environment to overwrite `conf/base`. + +You can alternatively change the default environment by modifying the `DEFAULT_RUN_ENV` variable in `src/run.py`. + +```python +DEFAULT_RUN_ENV = "test" +``` diff --git a/docs/source/04_user_guide/04_data_catalog.md b/docs/source/04_user_guide/04_data_catalog.md new file mode 100644 index 0000000000..9b4e5644ac --- /dev/null +++ b/docs/source/04_user_guide/04_data_catalog.md @@ -0,0 +1,284 @@ +# The Data Catalog + +> *Note:* This documentation is based on `Kedro 0.14.0`, if you spot anything that is incorrect then please create an [issue](https://github.com/quantumblacklabs/kedro/issues) or pull request. + +This section introduces `catalog.yml`, the project-shareable Data Catalog. The file is located in `conf/base` and is a registry of all data sources available for use by a project; it manages loading and saving of data. + +## Using the Data Catalog within Kedro configuration + +Kedro uses configuration to make your code reproducible when it has to reference datasets in different locations and/or in different environments. + +You can copy this file and reference additional locations for the same datasets. For instance, you can use the `catalog.yml` file in `conf/base/` to register the locations of datasets that would run in production while copying and updating a second version of `catalog.yml` that can be placed in `conf/local/` to register the locations of sample datasets on the local computer that you are using for prototyping your data pipeline. + +There is built-in functionality for `conf/local/` to overwrite `conf/base/` detailed [here](./03_configuration.md). This means that a dataset called `cars` could exist in the `catalog.yml` files in `conf/base/` and `code/local/`. In code, in `src`, you would only call a dataset named `cars` and Kedro would detect which definition of `cars` dataset to use to run your pipeline - `cars` definition from `code/local/catalog.yml` would take precedence in this case. + +The Data Catalog also works with the `credentials.yml` in `conf/local/`, allowing you to specify usernames and passwords that are required to load certain datasets. + +The are two ways of defining a Data Catalog: through the use of YAML configuration, or programmatically using an API. Both methods allow you to specify: + + - Dataset name + - Dataset type + - Location of the dataset (includes file paths, S3 bucket locations and more) + - Credentials needed in order to access the dataset + - Load and saving arguments + - Whether or not you want a [dataset or ML model to be versioned](./07_advanced_io.md#versioning) when you run your data pipeline + +## Using the Data Catalog with the YAML API + +The YAML API allows you to configure your datasets in a YAML configuration file, `conf/base/catalog.yml` or `conf/local/catalog.yml`. + +Here is an example data config `catalog.yml`: + +```yaml +# Example 1: Loads a local csv file +bikes: + type: CSVLocalDataSet + filepath: "data/01_raw/bikes.csv" + +# Example 2: Loads and saves a local csv file using specified load and save arguments +cars: + type: CSVLocalDataSet + filepath: data/01_raw/company/cars.csv + load_args: + sep: ',' + save_args: + index: False + date_format: '%Y-%m-%d %H:%M' + decimal: '.' + +# Example 3: Loads a csv file from a specific S3 bucket that requires credentials and additional load arguments +motorbikes: + type: CSVS3DataSet + filepath: data/02_intermediate/company/motorbikes.csv + credentials: dev_s3 + bucket_name: test_bucket + load_args: + sep: ',' + skiprows: 5 + skipfooter: 1 + na_values: ['#NA', 'NA'] + +# Example 4: Loads a local pickle dataset +airplanes: + type: PickleLocalDataSet + filepath: data/06_models/airplanes.pkl + backend: pickle + +# Example 5: Loads a local hdf dataset, specifies the selection of certain columns to be loaded as well as overwriting the file when saving +skateboards: + type: HDFLocalDataSet + filepath: data/02_intermediate/skateboards.hdf + key: name + load_args: + columns: ['brand', 'length'] + save_args: + mode: 'w' # Overwrite even when the file already exists + dropna: True + +# Example 6: Loads a local parquet dataset with load and save arguments +trucks: + type: ParquetLocalDataSet + filepath: data/02_intermediate/trucks.parquet + load_args: + columns: ['name', 'gear','disp', 'wt'] + categories: list + index: 'name' + save_args: + compression: 'GZIP' + file_scheme: 'hive' + has_nulls: false + partition_on: ['name'] + +# Example 7: Loads a SQL table with credentials, load and save arguments +scooters: + type: SQLTableDataSet + credentials: scooters_credentials + table_name: scooters + load_args: + index_col: ['name'] + columns: ['name', 'gear'] + save_args: + if_exists: 'replace' + +# Example 8: Load a SQL table with credentials and applies a SQL query to the table +scooters_query: + type: SQLQueryDataSet + credentials: scooters_credentials + sql: 'select * from cars where gear=4' + load_args: + index_col: ['name'] +``` + +The above `catalog.yml` gets `dev_s3` `scooters_credentials` from `conf/local/credentials.yml`: + +```yaml +dev_s3: + aws_access_key_id: token + aws_secret_access_key: key + +scooters_credentials: + con: sqlite:///kedro.db +``` + +## Loading multiple datasets that have similar configuration + +You may encounter situations where your datasets use the same file format, load and save arguments, and are stored in the same folder. The YAML has a [built-in syntax](https://yaml.org/spec/1.2/spec.html#id2765878) for factorising parts of a YAML file, which means that you can decide what is generalisable across your datasets so that you do not have to spend time copying and pasting dataset configurations in `catalog.yml`. + +You can see this in the following example: + +```yaml +_csv: &csv + type: kedro.contrib.io.pyspark.spark_data_set.SparkDataSet + file_format: 'csv' + load_args: + sep: ',' + na_values: ['#NA', 'NA'] + header: True + inferSchema: False + +cars: + <<: *csv + filepath: 's3a://data/01_raw/cars.csv' + +trucks: + <<: *csv + filepath: 's3a://data/01_raw/trucks.csv' + +bikes: + <<: *csv + filepath: 's3a://data/01_raw/bikes.csv' + load_args: + header: False +``` + +The syntax `&csv` names the following block `csv` and the syntax `<<: *csv` inserts the contents of the block named `csv`. Locally declared keys entirely override inserted ones as seen in `bikes`. + +> *Note*: It's important that the name of the template entry starts with a `_` so Kedro knows not to try and instantiate it as a dataset. + +You can also nest reuseable YAML syntax: + +```yaml +_csv: &csv + type: kedro.contrib.io.pyspark.spark_data_set.SparkDataSet + file_format: 'csv' + load_args: &csv_load_args + header: True + inferSchema: False + +airplanes: + <<: *csv + filepath: 's3a://data/01_raw/airplanes.csv' + load_args: + <<: *csv_load_args + sep: ';' +``` + +In this example the default `csv` configuration is inserted into `airplanes` and then the `load_args` block is overridden. Normally that would replace the whole dictionary. In order to extend `load_args` the defaults for that block are then re-inserted. + +### Versioning datasets and ML models + +Making a simple addition to your Data Catalog allows you to perform versioning of datasets and machine learning models. + +Consider the following versioned dataset defined in the `catalog.yml`: + +```yaml +cars.csv: + type: CSVLocalDataSet + filepath: data/01_raw/company/cars.csv + versioned: true +``` + +The `DataCatalog` will create a versioned `CSVLocalDataSet` called `cars.csv`. The actual csv file location will look like `data/01_raw/company/cars.csv/<version>/cars.csv`, where `<version>` corresponds to a global save version string formatted as `YYYY-MM-DDThh.mm.ss.sssZ`. + +This section shows just the very basics of versioning. You can learn more about how this feature can be used in [Advanced IO](./07_advanced_io.md#versioning). + +## Using the Data Catalog with the Code API + +The code API allows you to configure data sources in code. This can also be used to operate the IO module within notebooks. + +```python +from kedro.io import * +import os +``` + +### Configuring a data catalog + +In a file like `catalog.py`, you can generate the Data Catalog. This will allow everyone in the project to review all the available data sources. In the following, we are using the pre-built CSV loader, which is documented in the API reference documentation: [CSVLocalDataSet](/kedro.io.CSVLocalDataSet) + +```python +io = DataCatalog({ + 'bikes': CSVLocalDataSet(filepath='../data/01_raw/bikes.csv'), + 'cars': CSVLocalDataSet(filepath='../data/01_raw/cars.csv', load_args=dict(sep=',')), # additional arguments + 'scooters': SQLTableDataSet(table_name="scooters", credentials=dict(con="sqlite:///kedro.db")), + 'scooters_query': SQLQueryDataSet(sql="select * from cars where gear=4", credentials=dict(con="sqlite:///kedro.db")), + 'trucks': ParquetLocalDataSet(filepath="trucks.parquet") +}) +``` + +### Loading datasets + +Each dataset can be accessed by its name. + +```python +cars = io.load('cars') # data is now loaded as a DataFrame in 'cars' +gear = cars['gear'].values +``` + +#### Behind the scenes + +The following steps happened behind the scenes when `load` was called: + +- The value `cars` was located in the Data Catalog +- The corresponding `AbstractDataSet` object was retrieved +- The `load` method of this dataset was called +- This `load` method delegated the loading to the underlying pandas `read_csv` function + +#### Viewing the available data sources + +If you forget what data was assigned, you can always review the `DataCatalog`. + +```python +io.list() +``` + +### Saving data + +Saving data can be completed with a similar API. + +> *Note:* This use is not recommended unless you are prototyping in notebooks. + +#### Saving data to memory + +```python +memory = MemoryDataSet(data=None) +io.add('cars_cache', memory) +io.save('cars_cache', 'Memory can store anything.') +io.load('car_cache') +``` + +#### Saving data to a SQL database for querying + +At this point we may want to put the data in a SQLite database to run queries on it. Let's use that to rank cars by their mpg. + +```python +# This cleans up the database in case it exists at this point + +try: + os.remove("kedro.db") +except FileNotFoundError: + pass + +io.save('cars_table', cars) +ranked = io.load('cars_query')[['brand', 'mpg']] +``` + +#### Saving data in parquet + +Finally we can save the processed data in Parquet format. + +```python +io.save('ranked', ranked) +``` + +#### Creating your own dataset +More specialised datasets can be found in `contrib/io`. [Creating new datasets](../03_tutorial/03_set_up_data.md#creating-custom-datasets) is the easiest way to contribute to the Kedro project. diff --git a/docs/source/04_user_guide/05_nodes_and_pipelines.md b/docs/source/04_user_guide/05_nodes_and_pipelines.md new file mode 100644 index 0000000000..ce8badded8 --- /dev/null +++ b/docs/source/04_user_guide/05_nodes_and_pipelines.md @@ -0,0 +1,872 @@ +# Nodes and pipelines + +> *Note:* This documentation is based on `Kedro 0.14.0`, if you spot anything that is incorrect then please create an [issue](https://github.com/quantumblacklabs/kedro/issues) or pull request. +In this section we introduce pipelines and nodes. + +Relevant API documentation: +* [`Pipeline`](/kedro.pipeline.Pipeline) +* [`node`](/kedro.pipeline.node) + +To run the code snippets demonstrated below for yourself, you will first need to import some Kedro and standard libraries. + +```python +from kedro.pipeline import * +from kedro.io import * +from kedro.runner import * + +import pickle +import os +``` +## Nodes + +Nodes are used to coordinate complex, dependent tasks. Pipelines are flexible and are used to combine nodes reproducibly to build simple machine learning workflows or even build entire end-to-end production workflows. + +## Creating a pipeline node + +A node is created by specifying a function, input variable names and output variable names. Let's consider a simple function that adds two numbers: + +```python +def add(x, y): + return x + y +``` + +The add function has two inputs `x` and `y` and a single output. A new node can now be created with this function: + +```python +adder_node = node(func=add, inputs=['a', 'b'], outputs='sum') +adder_node +``` + +`Output`: + +```console +Out[1]: Node(add, ['a', 'b'], 'sum', None) +``` + +You can also add labels to nodes which will be used to describe them in logs: + +```python +adder_node = node(func=add, inputs=['a', 'b'], outputs='sum') +print(str(adder_node)) + +adder_node = node(func=add, inputs=['a', 'b'], outputs='sum', name='adding_a_and_b') +print(str(adder_node)) +``` + +`Output`: + +```console +add([a,b]) -> [sum] +adding_a_and_b: add([a,b]) -> [sum] +``` + +Let's break down the node definition: + +* `add` is our function that will execute when running the node +* `['a', 'b']` specify our input variable names. Note that in this case, they are different from `x` and `y` +* `sum` specifies the name of our return variable. The value returned by `add` will be bound in this variable +* `name` is an optional label, which can be used to provide description of the business logic of the node + +### Node definition syntax + +There is a special syntax for describing function inputs and outputs. This allows different Python functions to be reused in nodes and supports dependency resolution in pipelines. + +### Syntax for input variables + +```eval_rst ++----------------------------------+-----------------+-----------------------------+---------------------------------------+ +| Input syntax | Meaning | Example function parameters | How function is called when node runs | ++==================================+=================+=============================+=======================================+ +| :code:`None` | No input | :code:`def f()` | :code:`f()` | ++----------------------------------+-----------------+-----------------------------+---------------------------------------+ +| :code:`'a'` | Single input | :code:`def f(arg1)` | :code:`f(a)` | ++----------------------------------+-----------------+-----------------------------+---------------------------------------+ +| :code:`['a', 'b']` | Multiple inputs | :code:`def f(arg1, arg2)` | :code:`f(a, b)` | ++----------------------------------+-----------------+-----------------------------+---------------------------------------+ +| :code:`dict(arg1='x', arg2='y')` | Keyword inputs | :code:`def f(arg1, arg2)` | :code:`f(arg1='x', arg2='y')` | ++----------------------------------+-----------------+-----------------------------+---------------------------------------+ +``` + +### Syntax for output variables + +```eval_rst ++----------------------------------+-------------------+-------------------------------------+ +| Output syntax | Meaning | Example return statement | ++==================================+===================+=====================================+ +| :code:`None` | No output | Does not return | ++----------------------------------+-------------------+-------------------------------------+ +| :code:`'a'` | Single output | :code:`return a` | ++----------------------------------+-------------------+-------------------------------------+ +| :code:`['a', 'b']` | List output | :code:`return [a, b]` | ++----------------------------------+-------------------+-------------------------------------+ +| :code:`dict(key1='a', key2='b')` | Dictionary output | :code:`return dict(key1=a, key2=b)` | ++----------------------------------+-------------------+-------------------------------------+ +``` + +Any combinations of the above are possible, except nodes of the form `node(f, None, None)` (at least a single input or output needs to be provided). + +## Running nodes + +To run a node, you need to instantiate its inputs. In this case, the node expects two inputs: + +```python +adder_node.run(dict(a=2, b=3)) +``` + +`Output`: + +```console +Out[2]: {'sum': 5} +``` + +### Applying decorators to nodes + +For computations that need to run before and after node execution, Kedro is compatible with Python decorators. Below are example decorators that modify the first string argument of a given function: + + +```python +from functools import wraps +from typing import Callable + + +def apply_f(func: Callable) -> Callable: + @wraps(func) + def with_f(*args, **kwargs): + return func(*["f({})".format(a) for a in args], **kwargs) + return with_f + + +def apply_g(func: Callable) -> Callable: + @wraps(func) + def with_g(*args, **kwargs): + return func(*["g({})".format(a) for a in args], **kwargs) + return with_g + + +def apply_h(func: Callable) -> Callable: + @wraps(func) + def with_h(*args, **kwargs): + return func(*["h({})".format(a) for a in args], **kwargs) + return with_h +``` + +So if you want to create a function and make sure that `apply_f` is applied to every call of your function, including in Kedro nodes, you can do as follows: + +```python +@apply_f +def say_hello(name): + print("Hello {}!".format(name)) + + +hello_node = node(say_hello, 'name', None) +hello_node.run(dict(name="Kedro")) +``` + +`Output`: + +```console +In [3]: hello_node.run(dict(name="Kedro")) +Hello f(Kedro)! +Out[3]: {} +``` + +If you want to apply an additional decorator to the same function, but just for another node: + +```python +hello_node_wrapped = node(apply_g(say_hello), 'name', None) + +hello_node.run(dict(name="Kedro")) +hello_node_wrapped.run(dict(name="Kedro")) +``` + +`Output`: + +```console +Hello f(Kedro)! +Hello f(g(Kedro))! +Out[4]: {} +``` + +### Applying multiple decorators to nodes + +You can also provide a list of decorators as shown here: + +```python +hello_wrapped = node(apply_g(apply_h(say_hello)), 'name', None) +hello_decorated = hello_node.decorate(apply_g, apply_h) + +hello_wrapped.run(dict(name="Kedro")) +hello_decorated.run(dict(name="Kedro")) +``` + +`Output`: + +```console +Hello f(h(g(Kedro)))! +Hello f(h(g(Kedro)))! +``` + +Kedro comes with a few built-in decorators which are very useful when building your pipeline. You can learn more how to apply decorators to whole pipelines and the list of built-in decorators in [a separate section below](./05_nodes_and_pipelines.md#applying-decorators-on-pipelines). + +## Building pipelines + +To benefit from Kedro's automatic dependency resolution, nodes can be chained in a pipeline. A pipeline is a list of nodes that use a shared set of variables. + +In the following example, we construct a simple pipeline that computes the variance of a set of numbers. In practice, pipelines can use more complicated node definitions and variables usually correspond to entire datasets: + + +```python +def mean(xs, n): + return sum(xs) / n + + +def mean_sos(xs, n): + return sum(x*x for x in xs) / n + + +def variance(m, m2): + return m2 - m * m + + +pipeline = Pipeline([ + node(len, 'xs', 'n'), + node(mean, ['xs', 'n'], 'm', name='mean node'), + node(mean_sos, ['xs', 'n'], 'm2', name='mean sos'), + node(variance, ['m', 'm2'], 'v', name='variance node') +]) +``` + +`describe` can be used to understand what nodes are part of the pipeline: + + +```python +print(pipeline.describe()) +``` + +`Output`: + +```console +#### Pipeline execution order #### +Name: None +Inputs: xs + +len([xs]) -> [n] +mean node +mean sos +variance node + +Outputs: v +################################## +``` + +### Merging pipelines + +You can merge multiple pipelines as shown below. Note that, in this case, `pipeline_de` and `pipeline_ds` are expanded to a list of their underlying nodes of nodes which are simply merged together: + + +```python +pipeline_de = Pipeline([ + node(len, 'xs', 'n'), + node(mean, ['xs', 'n'], 'm') +]) + +pipeline_ds = Pipeline([ + node(mean_sos, ['xs', 'n'], 'm2'), + node(variance, ['m', 'm2'], 'v') +]) + +last_node = node(print, 'v', None) + +pipeline_all = Pipeline([ + pipeline_de, + pipeline_ds, + last_node +]) +print(pipeline_all.describe()) +``` + +`Output`: + +```console +#### Pipeline execution order #### +Name: None +Inputs: xs + +len([xs]) -> [n] +mean([n,xs]) -> [m] +mean_sos([n,xs]) -> [m2] +variance([m,m2]) -> [v] +print([v]) -> None + +Outputs: None +################################## +``` + +### Fetching pipeline nodes + +Pipelines provide access to their nodes in a topological order for enabling custom functionality, e.g. custom visualisation of pipelines. Each node has information about its inputs and outputs: + + +```python +nodes = pipeline.nodes +nodes +``` + +`Output`: + +```console +Out[5]: +[Node(len, 'xs', 'n', None), + Node(mean, ['xs', 'n'], 'm', 'mean node'), + Node(mean_sos, ['xs', 'n'], 'm2', 'mean sos'), + Node(variance, ['m', 'm2'], 'v', 'variance node')] + ``` + +```python +nodes[0].inputs +``` + +`Output`: + +```console +Out[6]: ['xs'] +``` + +## Bad pipelines + +As you notice, pipelines can usually readily resolve their dependencies. In some cases, resolution is not possible and pipelines are not well-formed. + +### Pipeline with bad nodes + +In this case we have a pipeline consisting of a single node with no input and output: + + +```python +try: + Pipeline([ + node(lambda: print('!'), None, None) + ]) +except Exception as e: + print(e) +``` + +`Output`: + +```console +Invalid Node definition: it must have some `inputs` or `outputs`. +Format should be: node(function, inputs, outputs) +``` + +### Pipeline with circular dependencies + +For every two variables where the first depends on the second, there must not be a way in which the second also depends on the first, otherwise, a circular dependency will prevent us from compiling the pipeline. + +The first node captures the relationship of how to calculate `y` from `x` and the second captures the relationship of how to calculate `x` knowing `y`. Both cannot coexist in the same pipeline: + +```python +try: + Pipeline([ + node(lambda x: x+1, 'x', 'y', name='first node'), + node(lambda y: y-1, 'y', 'x', name='second node') + ]) +except Exception as e: + print(e) +``` + +`Output`: + +```console +Circular dependencies exist among these items: ['first node: <lambda>([x]) -> [y]', 'second node: <lambda>([y]) -> [x]'] +``` + +## Running pipelines + +When running pipelines, it can be useful to check the inputs and outputs of a pipeline: + +```python +pipeline.inputs() +``` + +`Output`: + +```console +Out[7]: {'xs'} +``` + +```python +pipeline.outputs() +``` + +`Output`: + +```console +Out[8]: {'v'} +``` + +### Runners + +Runners are different execution mechanisms for running pipelines. They all inherit from `AbstractRunner`. You can use `SequentialRunner` to execute pipeline nodes one-by-one based on their dependencies. + +We recommend using `SequentialRunner` in cases where: + +- the pipeline has limited branching +- the pipeline is fast +- the resource consuming steps require most of a scarce resource (e.g., significant RAM, disk memory or CPU) +- `PySpark` is being used + + +Now we can execute the pipeline by providing a runner and values for each of the inputs. + +From the command line, you can run the pipeline as follows: + +```bash +kedro run +``` + +`Output`: + +```console +2019-04-26 17:19:01,341 - root - INFO - ** Kedro project new-kedro-project +2019-04-26 17:19:01,343 - anyconfig - INFO - Loading: /private/tmp/new-kedro-project/conf/base/logging.yml +2019-04-26 17:19:01,349 - anyconfig - INFO - Loading: /private/tmp/new-kedro-project/conf/base/catalog.yml +2019-04-26 17:19:01,351 - anyconfig - INFO - Loading: /private/tmp/new-kedro-project/conf/base/credentials.yml +2019-04-26 17:19:01,352 - anyconfig - INFO - Loading: /private/tmp/new-kedro-project/conf/base/parameters.yml +2019-04-26 17:19:01,360 - kedro.io.data_catalog - INFO - Loading data from `example_iris_data` (CSVLocalDataSet)... +2019-04-26 17:19:01,387 - kedro.io.data_catalog - INFO - Loading data from `parameters` (MemoryDataSet)... +2019-04-26 17:19:01,437 - kedro.io.data_catalog - INFO - Saving data to `example_test_x` (MemoryDataSet)... +2019-04-26 17:19:01,439 - kedro.io.data_catalog - INFO - Saving data to `example_train_y` (MemoryDataSet)... +2019-04-26 17:19:01,443 - kedro.io.data_catalog - INFO - Saving data to `example_train_x` (MemoryDataSet)... +2019-04-26 17:19:01,447 - kedro.io.data_catalog - INFO - Saving data to `example_test_y` (MemoryDataSet)... +2019-04-26 17:19:01,447 - kedro.runner.sequential_runner - INFO - Completed 1 out of 4 tasks +2019-04-26 17:19:01,448 - kedro.io.data_catalog - INFO - Loading data from `example_train_x` (MemoryDataSet)... +2019-04-26 17:19:01,454 - kedro.io.data_catalog - INFO - Loading data from `example_train_y` (MemoryDataSet)... +2019-04-26 17:19:01,461 - kedro.io.data_catalog - INFO - Loading data from `parameters` (MemoryDataSet)... +2019-04-26 17:19:01,887 - kedro.io.data_catalog - INFO - Saving data to `example_model` (MemoryDataSet)... +2019-04-26 17:19:01,887 - kedro.runner.sequential_runner - INFO - Completed 2 out of 4 tasks +2019-04-26 17:19:01,888 - kedro.io.data_catalog - INFO - Loading data from `example_test_x` (MemoryDataSet)... +2019-04-26 17:19:01,888 - kedro.io.data_catalog - INFO - Loading data from `example_model` (MemoryDataSet)... +2019-04-26 17:19:01,890 - kedro.io.data_catalog - INFO - Saving data to `example_predictions` (MemoryDataSet)... +2019-04-26 17:19:01,891 - kedro.runner.sequential_runner - INFO - Completed 3 out of 4 tasks +2019-04-26 17:19:01,891 - kedro.io.data_catalog - INFO - Loading data from `example_predictions` (MemoryDataSet)... +2019-04-26 17:19:01,891 - kedro.io.data_catalog - INFO - Loading data from `example_test_y` (MemoryDataSet)... +2019-04-26 17:19:01,892 - new_kedro_project.nodes.example - INFO - Model accuracy on test set: 96.67% +2019-04-26 17:19:01,892 - kedro.runner.sequential_runner - INFO - Completed 4 out of 4 tasks +2019-04-26 17:19:01,892 - kedro.runner.sequential_runner - INFO - Pipeline execution completed successfully. +``` + +which will run the pipeline using `SequentialRunner` by default. You can also explicitly use `SequentialRunner` as follows: + +```bash +kedro run --runner=SequentialRunner +``` + +In case you want to run the pipeline using `ParallelRunner`, add a flag as follows: + +```bash +kedro run --parallel +``` + +or + +```bash +kedro run --runner=ParallelRunner +``` + +`Output`: + +```console +2019-04-26 17:20:45,012 - root - INFO - ** Kedro project new-kedro-project +2019-04-26 17:20:45,012 - anyconfig - INFO - Loading: /private/tmp/new-kedro-project/conf/base/logging.yml +2019-04-26 17:20:45,014 - anyconfig - INFO - Loading: /private/tmp/new-kedro-project/conf/base/catalog.yml +2019-04-26 17:20:45,016 - anyconfig - INFO - Loading: /private/tmp/new-kedro-project/conf/base/credentials.yml +2019-04-26 17:20:45,016 - anyconfig - INFO - Loading: /private/tmp/new-kedro-project/conf/base/parameters.yml +2019-04-26 17:20:45,081 - kedro.io.data_catalog - INFO - Loading data from `example_iris_data` (CSVLocalDataSet)... +2019-04-26 17:20:45,099 - kedro.io.data_catalog - INFO - Loading data from `parameters` (MemoryDataSet)... +2019-04-26 17:20:45,115 - kedro.io.data_catalog - INFO - Saving data to `example_test_x` (AutoProxy[MemoryDataSet])... +2019-04-26 17:20:45,121 - kedro.io.data_catalog - INFO - Saving data to `example_test_y` (AutoProxy[MemoryDataSet])... +2019-04-26 17:20:45,123 - kedro.io.data_catalog - INFO - Saving data to `example_train_x` (AutoProxy[MemoryDataSet])... +2019-04-26 17:20:45,125 - kedro.io.data_catalog - INFO - Saving data to `example_train_y` (AutoProxy[MemoryDataSet])... +2019-04-26 17:20:45,135 - kedro.io.data_catalog - INFO - Loading data from `example_train_x` (AutoProxy[MemoryDataSet])... +2019-04-26 17:20:45,140 - kedro.io.data_catalog - INFO - Loading data from `example_train_y` (AutoProxy[MemoryDataSet])... +2019-04-26 17:20:45,142 - kedro.io.data_catalog - INFO - Loading data from `parameters` (MemoryDataSet)... +2019-04-26 17:20:45,437 - kedro.io.data_catalog - INFO - Saving data to `example_model` (AutoProxy[MemoryDataSet])... +2019-04-26 17:20:45,444 - kedro.io.data_catalog - INFO - Loading data from `example_test_x` (AutoProxy[MemoryDataSet])... +2019-04-26 17:20:45,449 - kedro.io.data_catalog - INFO - Loading data from `example_model` (AutoProxy[MemoryDataSet])... +2019-04-26 17:20:45,451 - kedro.io.data_catalog - INFO - Saving data to `example_predictions` (AutoProxy[MemoryDataSet])... +2019-04-26 17:20:45,457 - kedro.io.data_catalog - INFO - Loading data from `example_predictions` (AutoProxy[MemoryDataSet])... +2019-04-26 17:20:45,461 - kedro.io.data_catalog - INFO - Loading data from `example_test_y` (AutoProxy[MemoryDataSet])... +2019-04-26 17:20:45,466 - new_kedro_project.nodes.example - INFO - Model accuracy on test set: 100.00% +2019-04-26 17:20:45,494 - kedro.runner.parallel_runner - INFO - Pipeline execution completed successfully. +``` + +> *Note:* You cannot use both `--parallel` and `--runner` flags at the same time (e.g. `kedro run --parallel --runner=SequentialRunner` raises an exception). + +### Applying decorators on pipelines + +You can apply decorators on whole pipelines, the same way you apply decorators on single nodes. For example, if you want to apply the decorators defined in the earlier section to all pipeline nodes simultaneously, you can do so as follows: + +```python +hello_pipeline = Pipeline([ + node(say_hello, 'name1', None), + node(say_hello, 'name2', None) +]).decorate(apply_g, apply_h) + +SequentialRunner().run(hello_pipeline, DataCatalog({}, dict(name1="Kedro", name2="Python"))) +``` + +`Output`: + +```console +Hello f(h(g(Kedro)))! +Hello f(h(g(Python)))! +Out[9]: {} +``` + +Kedro has a couple of built-in decorators, which can be useful for monitoring your pipeline. You can find the built-in decorators in `kedro.pipeline.decorators`: + + - `log_time` will log the time taken for executing your node + - `mem_profile` will log the max memory usage of your node. `mem_profile` needs to perform at least 4 memory snapshots of your node and it will do them every 100ms, therefore it can be used only for nodes which take more than half a second to run. + +## Running pipelines with IO + +The above definition of pipelines only applies for non-stateful or "pure" pipelines that do not interact with the outside world. In practice, we would like to interact with APIs, databases, files and other sources of data. By combining IO and pipelines, we can tackle these more complex use cases. + +By using `DataCatalog` from the IO module we are still able to write pure functions that work with our data and outsource file saving and loading to `DataCatalog`. + +Through `DataCatalog`, we can control where inputs are loaded from, where intermediate variables get persisted and ultimately the location to which output variables are written: + +```python +io = DataCatalog(dict( + xs=MemoryDataSet() +)) +``` + +```python +io.list() +``` + +`Output`: + +```console +Out[10]: ['xs'] +``` + +```python +io.save('xs', [1, 2, 3]) +``` + +```python +SequentialRunner().run(pipeline, catalog=io) +``` + +`Output`: + +```console +Out[11]: {'v': 0.666666666666667} +``` + +In this simple example, we defined a `MemoryDataSet` called `xs` to store our inputs, saved our input list `[1, 2, 3]` into `xs`, then instantiated `SequentialRunner` and called its `run` method with the pipeline and data catalog instances. + +## Outputting to a file + +We can also use IO to save outputs to a file. In this example, we define a custom LambdaDataSet that would serialise the output to a file locally: + +```python +def save(value): + with open("./data/07_model_output/variance.pickle", "wb") as f: + pickle.dump(value, f) + +def load(): + with open("./data/07_model_output/variance.pickle", "rb") as f: + return pickle.load(f) + +pickler = LambdaDataSet(load=load, save=save) +io.add('v', pickler) +``` + +It is important to make sure that the data catalog variable name `v` matches the name `v` in the pipeline definition. + +Next we can confirm that this `LambdaDataSet` works: + +```python +io.save('v', 5) +``` + +```python +io.load('v') +``` + +`Ouput`: +```Console +Out[12]: 5 +``` + +Finally, let's run the pipeline again now serialising the output: + +```python +SequentialRunner().run(pipeline, catalog=io) +``` + +`Ouput`: + +```console +Out[13]: {} +``` + +Because the output has been persisted to a local file we don't see it directly, but it can be retrieved from the catalog: + +```python +io.load('v') +``` + +`Ouput`: +```console +Out[14]: 0.666666666666667 +``` + +```python +try: + os.remove("./data/07_model_output/variance.pickle") +except FileNotFoundError: + pass +``` + +## Partial pipelines + +Sometimes it is desirable to work with only a subset of a pipeline's nodes. Let's look at the example pipeline we created earlier: + +```python +print(pipeline.describe()) +``` + +`Ouput`: + +```console +#### Pipeline execution order #### +Name: None +Inputs: xs + +len([xs]) -> [n] +mean node +mean sos +variance node + +Outputs: v +################################## +``` + +#### Partial pipeline starting from inputs +One way to specify a partial pipeline is by providing a set of pre-calculated inputs which should serve as a start of the partial pipeline. For example, in order to fetch the partial pipeline running from input `m2` downstream you can specify it like this: + +```python +print(pipeline.from_inputs('m2').describe()) +``` + +`Output`: + +```console +#### Pipeline execution order #### +Name: None +Inputs: m, m2 + +variance node + +Outputs: v +################################## +``` + +Specifying that the partial pipeline from inputs `m` and `xs` is needed will result in the following pipeline: + +```python +print(pipeline.from_inputs('m', 'xs').describe()) +``` + +`Output`: + +```console +#### Pipeline execution order #### +Name: None +Inputs: xs + +len([xs]) -> [n] +mean node +mean sos +variance node + +Outputs: v +################################## +``` + +As it can been seen from the pipeline description, adding `m` in the `from_inputs` list does not guarantee that it will not be recomputed if another provided input like `xs` forces recomputing it. + +#### Partial pipeline starting from nodes +Another way of selecting a partial pipeline is by specifying the nodes which should be used as a start of the new pipeline. For example you can do as follows: + +```python +print(pipeline.from_nodes('mean node').describe()) +``` + +`Output`: + +```console +#### Pipeline execution order #### +Name: None +Inputs: m2, n, xs + +mean node +variance node + +Outputs: v +################################## +``` + +As you can see, this will create a partial pipeline starting from the specified node and continuing to all other nodes downstream. + +#### Partial pipeline from nodes with tags +One can also create a partial pipeline from the nodes that have specific tags attached to them. In order to construct a partial pipeline out of nodes that have both tag `t1` *AND* tag `t2`, you can run the following: + +```python +print(pipeline.only_nodes_with_tags('t1', 't2').describe()) +``` + +`Output`: + +```console +#### Pipeline execution order #### +Name: None +Inputs: None + +Outputs: None +################################## +``` + +To construct a partial pipeline out of nodes that have tag `t1` *OR* tag `t2`, please execute the following: + +```python +partial_pipeline = pipeline.only_nodes_with_tags('t1') + pipeline.only_nodes_with_tags('t2') +print(partial_pipeline.describe()) +``` + +`Output`: + +```console +#### Pipeline execution order #### +Name: None +Inputs: None + +Outputs: None +################################## +``` + +#### Running only some nodes +Sometimes you might need to run only some of the nodes in a pipeline. To do that, you can do as follows: + +```python +print(pipeline.only_nodes('mean node', 'mean sos').describe()) +``` + +`Output`: + +```console +#### Pipeline execution order #### +Name: None +Inputs: n, xs + +mean node +mean sos + +Outputs: m, m2 +################################## +``` + +This will create a partial pipeline, consisting solely of the nodes you specify as arguments in the method call. + +#### Recreating Missing Outputs + +Kedro supports the automatic generation of partial pipelines that take into account existing node outputs. This can be helpful to avoid re-running nodes which take a long time. + +Kedro supports the automatic generation of partial pipelines that take into account existing node outputs. This can be helpful to avoid re-running nodes that take a long time: + +```python +print(pipeline.describe()) +``` + +`Output`: + +```console +#### Pipeline execution order #### +Name: None +Inputs: xs + +len([xs]) -> [n] +mean node +mean sos +variance node + +Outputs: v +################################## +``` + +To demonstrate this, let us save the intermediate output `n` using a `JSONLocalDataSet`. + +```python +n_json = JSONLocalDataSet(filepath="./data/07_model_output/len.json") +io = DataCatalog(dict( + xs=MemoryDataSet([1, 2, 3]), + n=n_json, +)) +``` + +Because `n` was not saved previously, checking for its existence returns `False`: + +```python +io.exists('n') +``` + +`Output`: + +```console +Out[15]: False +``` + +Running the pipeline calculates `n` and saves the result to disk: + +```python +SequentialRunner().run(pipeline, io) +``` + +`Output`: + +```console +Out[16]: {'v': 0.666666666666667} +``` + +```python +io.exists('n') +``` + +`Output`: + +```console +Out[17]: True +``` + + +We can avoid re-calculating `n` (and all other results that have already been saved) by using the `Runner.run_only_missing` method. Note that the first node of the original pipeline (`len([xs]) -> [n]`) has been removed: + +```python +SequentialRunner().run_only_missing(pipeline, io) +``` + +`Ouput`: + +```console +Out[18]: {'v': 0.666666666666667} +``` + +```python +try: + os.remove("./data/07_model_output/len.json") +except FileNotFoundError: + pass +``` diff --git a/docs/source/04_user_guide/06_logging.md b/docs/source/04_user_guide/06_logging.md new file mode 100644 index 0000000000..62825a70e1 --- /dev/null +++ b/docs/source/04_user_guide/06_logging.md @@ -0,0 +1,31 @@ +# Logging +> *Note:* This documentation is based on `Kedro 0.14.0`, if you spot anything that is incorrect then please create an [issue](https://github.com/quantumblacklabs/kedro/issues) or pull request. + +Kedro uses, and facilitates the use of Python’s `logging` library, by providing a default logging configuration. This can be found in `conf/base/logging.yml` in every project generated using Kedro’s CLI `kedro new` command. + +## Configure logging + +You can configure the logging by simply adding the following lines at the entry point of your application (e.g., `src/<package_name>/run.py`): + +```python +from logging.config import dictConfig +from kedro.config import ConfigLoader + +conf_paths = ['conf/base', 'conf/local'] +conf_loader = ConfigLoader(conf_paths) +conf_logging = conf_loader.get('logging*', 'logging*/**') +dictConfig(conf_logging) +``` + +The configuration should comply with the guidelines from the `logging` library. Find more about it [here](https://docs.python.org/3/library/logging.html). + +## Use logging + +After configuring the logging using the example above, `kedro` will start emitting the logs automatically. To log your own code, you are advised to do the following: + +```python +import logging +log = logging.getLogger(__name__) +log.warning('Issue warning') +log.info('Send information') +``` diff --git a/docs/source/04_user_guide/07_advanced_io.md b/docs/source/04_user_guide/07_advanced_io.md new file mode 100644 index 0000000000..63c6da35fc --- /dev/null +++ b/docs/source/04_user_guide/07_advanced_io.md @@ -0,0 +1,184 @@ +# Advanced IO + +> *Note:* This documentation is based on `Kedro 0.14.0`, if you spot anything that is incorrect then please create an [issue](https://github.com/quantumblacklabs/kedro/issues) or pull request. + +In this tutorial, you will learn about advanced uses of the [Kedro IO](/kedro.io.rst) module and understand the underlying implementation. + +Relevant API documentation: +* [AbstractDataSet](/kedro.io.AbstractDataSet) +* [DataSetError](/kedro.io.DataSetError) + +## Error handling + +We have custom exceptions for the main classes of errors that you can handle to deal with failures. + +```python +from kedro.io import * +``` + +```python +io = DataCatalog(data_sets=dict()) # empty catalog + +try: + cars_df = io.load('cars') +except DataSetError: + print("Error raised.") +``` + + +## AbstractDataSet + +To understand what is going on behind the scenes, you should study the [AbstractDataSet interface](/kedro.io.AbstractDataSet). `AbstractDataSet` is the underlying interface that all datasets extend. It requires subclasses to override the `_load` and `_save` and provides `load` and `save` methods that enrich the corresponding private methods with uniform error handling. It also requires subclasses to override `_describe`, which is used in logging the internal information about the instances of your custom `AbstractDataSet` implementation. + +If you have a dataset called `parts`, you can make direct calls to it like so: + +```python +parts_df = parts.load() +``` + +However, we recommend using a `DataCatalog` instead (for more details, see [this section](../04_user_guide/04_data_catalog.md) in the User Guide) as it has been designed to make all datasets available to project members. + +For contributors, if you would like to submit a new dataset, you will have to extend `AbstractDataSet`. + + +## Versioning + +In order to enable versioning, all of the following conditions must be met: + +1. The dataset must: + 1. extend `kedro.io.core.FilepathVersionMixin` AND + 2. add `version` namedtuple as an argument to its `__init__` method AND + 3. modify its `_load` and `_save` methods respectively to support versioning (see [`kedro.io.CSVLocalDataSet`](/kedro.io.CSVLocalDataSet) for an example implementation) +2. In the `catalog.yml` config file you must enable versioning by setting `versioned` attribute to `true` for the given dataset. + +### `version` namedtuple + +Versioned dataset `__init__` method must have an optional argument called `version` with a default value of `None`. If provided, this argument must be an instance of [`kedro.io.core.Version`](/kedro.io.Version). Its `load` and `save` attributes must either be `None` or contain string values representing exact load and save versions: + +* If `version` is `None` then the dataset is considered *not versioned*. +* If `version.load` is `None` then the latest available version will be used to load the dataset, otherwise a string representing exact load version must be provided. +* If `version.save` is `None` then a new save version string will be generated by calling `kedro.io.core.generate_current_version()`, otherwise a string representing exact save version must be provided. + +### Versioning using the YAML API + +The easiest way to version a specific dataset is to change the corresponding entry in the `catalog.yml`. + +> *Note:* `catalog.yml` only allows you to choose to version your datasets but it does not allow to choose which version to load or save. In rare case it is strongly required you may want to instantiate your versioned datasets using Code API and define version parameter explicitly (see the [corresponding section](#versioning-using-the-code-api) below). + +For example, if the following dataset was defined in the `catalog.yml`: + +```yaml +cars.csv: + type: CSVLocalDataSet + filepath: data/01_raw/company/cars.csv + versioned: true +``` + +the `DataCatalog` will create a versioned `CSVLocalDataSet` called `cars.csv`. The actual csv file location will look like `data/01_raw/company/cars.csv/<version>/cars.csv`, where `<version>` corresponds to a global save version string formatted as `YYYY-MM-DDThh.mm.ss.sssZ`. Every time the `DataCatalog` is instantiated, it generates a new global save version, which is propagated to all versioned datasets it contains. + +> **Important:** the `DataCatalog` does not re-generate save versions between instantiations. Therefore, if you call `catalog.save('cars.csv', some_data)` twice, then the second call will fail, since it tries to overwrite a versioned dataset using the same save version. This limitation does not apply to `load` operation. + +By default, the `DataCatalog` will load the latest version of the dataset. However, it is also possible to specify an exact load version. In order to do that, you can pass a dictionary with exact load versions to `DataCatalog.from_config`: + +```python +load_versions = {'cars.csv': '2019-02-13T14.35.36.518Z'} +io = DataCatalog.from_config(catalog_config, credentials, load_versions=load_versions) +cars = io.load('cars.csv') +``` + +The last row in the example above would attempt to load a CSV file from `data/01_raw/company/cars.csv/2019-02-13T14.35.36.518Z/cars.csv`. + +> `load_versions` configuration has an effect only if a dataset versioning has been enabled in the catalog config file - see the example above. + +> **Important:** we recommend not to override `save_version` argument in `DataCatalog.from_config` unless strongly required to do so, since it may lead to inconsistencies between loaded and saved versions of the versioned datasets. + +### Versioning using the Code API + +Although we recommend enabling versioning using the `catalog.yml` config file as described in the section above, you may require more control over load and save versions of a specific dataset. To achieve this you can instantiate `Version` and pass it as a parameter to the dataset initialisation: + +```python +from kedro.io import CSVLocalDataSet, DataCatalog, Version +import pandas as pd + +data1 = pd.DataFrame({"col1": [1, 2], "col2": [4, 5], "col3": [5, 6]}) +data2 = pd.DataFrame({"col1": [7], "col2": [8], "col3": [9]}) +version = Version( + load=None, # load the latest available version + save=None, # generate save version automatically on each save operation +) +test_data_set = CSVLocalDataSet( + filepath="data/01_raw/test.csv", + save_args={"index": False}, + version=version, +) +io = DataCatalog({"test_data_set": test_data_set}) + +# save the dataset to data/01_raw/test.csv/<version>/test.csv +io.save("test_data_set", data1) +# save the dataset into a new file data/01_raw/test.csv/<version>/test.csv +io.save("test_data_set", data2) + +# load the latest version from data/test.csv/*/test.csv +reloaded = io.load("test_data_set") +assert data2.equals(reloaded) +``` + +> *Note:* In the example above we did not fix any versions. If we do, then the behaviour of load and save operations becomes slightly different: + +```python +version = Version( + load="my_exact_version", # load exact version + save="my_exact_version", # save to exact version +) +test_data_set = CSVLocalDataSet( + filepath="data/01_raw/test.csv", + save_args={"index": False}, + version=version, +) +io = DataCatalog({"test_data_set": test_data_set}) + +# save the dataset to data/01_raw/test.csv/my_exact_version/test.csv +io.save("test_data_set", data1) +# load from data/01_raw/test.csv/my_exact_version/test.csv +reloaded = io.load("test_data_set") +assert data1.equals(reloaded) + +# raises DataSetError since the path +# data/01_raw/test.csv/my_exact_version/test.csv already exists +io.save("test_data_set", data2) +``` + +> **Important:** Passing exact load and/or save versions to the dataset instantiation is not recommended, since it may lead to inconsistencies between operations. For example, if versions for load and save operations do not match, save operation would result in a `UserWarning` indicating that save a load versions do not match. Load after save may also return an error if the corresponding load version is not found: + +```python +version = Version( + load="exact_load_version", # load exact version + save="exact_save_version" # save to exact version +) +test_data_set = CSVLocalDataSet( + filepath="data/01_raw/test.csv", + save_args={"index": False}, + version=version, +) +io = DataCatalog({"test_data_set": test_data_set}) + +io.save("test_data_set", data1) # emits a UserWarning due to version inconsistency + +# raises DataSetError since the data/01_raw/test.csv/exact_load_version/test.csv +# file does not exist +reloaded = io.load("test_data_set") +``` + +### Supported datasets + +Currently the following datasets support versioning: + +- `CSVLocalDataSet` +- `CSVS3DataSet` +- `HDFLocalDataSet` +- `JSONLocalDataSet` +- `ParquetLocalDataSet` +- `PickleLocalDataSet` +- `PickleS3DataSet` +- `TextLocalDataSet` +- `ExcelLocalDataSet` diff --git a/docs/source/04_user_guide/08_pyspark.md b/docs/source/04_user_guide/08_pyspark.md new file mode 100644 index 0000000000..4ec9dfd335 --- /dev/null +++ b/docs/source/04_user_guide/08_pyspark.md @@ -0,0 +1,137 @@ +# Working with PySpark + +> *Note:* This documentation is based on `Kedro 0.14.0`, if you spot anything that is incorrect then please create an [issue](https://github.com/quantumblacklabs/kedro/issues) or pull request. + +In this tutorial we explain how to work with `PySpark` in a Kedro pipeline. + +Relevant API documentation: [SparkDataSet](/kedro.contrib.io.pyspark) + +## Initialising a `SparkSession` + +Before any `PySpark` operations are performed, you should initialise your `SparkSession`, typically in your application's entry point before running the pipeline. + +For example, if you are using Kedro's project template, then you could create a function `init_spark_session()` in `src/<your_project_name>/run.py` as follows: + +```python +from pyspark.sql import SparkSession +from kedro.config import ConfigLoader +from kedro.runner import SequentialRunner + +# ... + +def init_spark_session(aws_access_key, aws_secret_key): + # select only/add more config options as per your needs + return ( + SparkSession.builder.master("local[*]") + .appName("kedro") + .config("spark.driver.memory", "4g") + .config("spark.driver.maxResultSize", "3g") + .config("spark.hadoop.fs.s3a.impl", "org.apache.hadoop.fs.s3a.S3AFileSystem") + .config("spark.sql.execution.arrow.enabled", "true") + .config("spark.jars.packages", "org.apache.hadoop:hadoop-aws:2.7.5") + .config("spark.jars.excludes", "joda-time:joda-time") + .config("fs.s3a.access.key", aws_access_key) + .config("fs.s3a.secret.key", aws_secret_key) + .getOrCreate() + ) + +def main(): + + # ... + + config = ConfigLoader(["conf/base", "conf/local"]) + credentials = config.get("credentials*", "credentials*/**") + + # Initialise SparkSession + spark = init_spark_session(credentials["aws"]["access_key"], + credentials["aws"]["secret_key"]) + + # Run the pipeline + io.add_feed_dict({'parameters': parameters}, replace=True) + SequentialRunner().run(pipeline, io) +``` + +Since `SparkSession` is a [singleton](https://python-3-patterns-idioms-test.readthedocs.io/en/latest/Singleton.html), the next time you call `SparkSession.builder.getOrCreate()` you will be provided with the same `SparkSession` you initialised at your app's entry point. + + +## Creating a `SparkDataSet` + +Having created a `SparkSession`, you can load your data using `PySpark`'s [DataFrameReader](https://spark.apache.org/docs/latest/api/python/pyspark.sql.html#pyspark.sql.DataFrameReader). + +To do so, please use the provided [SparkDataSet](/kedro.contrib.io.pyspark): + +### Code API + +```python +import pyspark.sql +from kedro.io import DataCatalog +from kedro.contrib.io.pyspark import SparkDataSet + +spark_ds = SparkDataSet( + filepath="s3a://your_bucket/data/01_raw/weather*", + file_format="csv", + load_args={"header": True, "inferSchema": True}, + save_args={"sep": "|", "header": True}, + +) +catalog = DataCatalog({"weather": spark_ds}) + +df = catalog.load("weather") +assert isinstance(df, pyspark.sql.DataFrame) +``` + +### YAML API + +In `catalog.yml`: +```yaml +weather: + type: kedro.contrib.io.pyspark.SparkDataSet + filepath: s3a://your_bucket/data/01_raw/weather* + file_format: csv + load_args: + header: True + inferSchema: True + save_args: + sep: '|' + header: True +``` + +In `run.py`: + +```python +import pyspark.sql +from kedro.io import DataCatalog +from kedro.config import ConfigLoader + +config = ConfigLoader(["conf/base", "conf/local"]) +catalog = DataCatalog.from_config( + config.get("catalog*", "catalog*/**"), + config.get("credentials*", "credentials*/**"), +) +df = catalog.load("weather") +assert isinstance(df, pyspark.sql.DataFrame) +``` + +## Working with PySpark and Kedro pipelines + +Continuing from the example of the previous section, since `catalog.load("weather")` returns a `pyspark.sql.DataFrame`, any Kedro pipeline nodes which have `weather` as an input will be provided with a `PySpark` dataframe: + +```python +from kedro.io import DataCatalog +from kedro.pipeline import Pipeline, node +from kedro.config import ConfigLoader +from kedro.runner import SequentialRunner + + +def my_node(weather): + weather.show() # weather is a pyspark.sql.DataFrame + +def main(): + config = ConfigLoader(["conf/base", "conf/local"]) + io = DataCatalog.from_config( + config.get("catalog*", "catalog*/**"), + config.get("credentials*", "credentials*/**"), + ) + pipeline = Pipeline([node(my_node, "weather", None)]) + SequentialRunner().run(pipeline, io) +``` diff --git a/docs/source/04_user_guide/09_developing_plugins.md b/docs/source/04_user_guide/09_developing_plugins.md new file mode 100644 index 0000000000..3298a7114d --- /dev/null +++ b/docs/source/04_user_guide/09_developing_plugins.md @@ -0,0 +1,70 @@ +# Developing Kedro plugins + +## Overview + +Kedro uses various entry points in the [`pkg_resources` entry_point system](https://setuptools.readthedocs.io/en/latest/setuptools.html#dynamic-discovery-of-services-and-plugins) to provide plugin functionality. + +While running, plugins may request information about the current project by calling `kedro.cli.get_project_context(key, default=NO_DEFAULT)`. + +This function provides access to the verbose flag via the key `verbose` and to anything returned by the project's `__kedro_context__`. The returned context dictionary must contain at least the following keys and values: +* _template_version_: the version of Kedro the project was created with, or `None` if the project was not created with `kedro new`. +* _project_path_: the path to the directory where `kedro_cli.py` is located. +* _get_config_: a function that takes the `project_path` and returns a `kedro.config.ConfigLoader` instance. +* _create_catalog_: a function that takes the config returned by `get_config` and returns a kedro.io.DataCatalog instance. +* _create_pipeline_: a function that returns a kedro.pipeline.Pipeline instance. + +>*Note*: Plugins may require additional keys be added to `__kedro_context__` in `run.py`. + +## Initialisation + +If the plugin needs to do initialisation prior to Kedro starting, it can declare the `entry_point` key `kedro.init`. This entry point must refer to a function that currently has no arguments, but for future proofing you should declare it with `**kwargs`. + +## global and project commands + +Plugins may also add commands to the Kedro CLI, which supports two types of commands: +* _global_ - available both inside and outside a Kedro project +* _project_ - available only when a Kedro project is detected in the current directory. + +Global commands use the `entry_point` key `kedro.global_commands`. Project commands use the `entry_point` key `kedro.project_commands`. + +## Working with `click` + +Commands must be provided as [`click` `Groups`](https://click.palletsprojects.com/en/7.x/api/#click.Group) + +The `click` `Group` will be merged into the main CLI Group. In the process, the options on the group are lost, as is any processing that was done as part of its callback function. + +## Example of a simple plugin + +A simple plugin that prints the pipeline as JSON might look like: + +`kedrojson/plugin.py` + +```python +import click +from kedro.cli import get_project_context + + +@click.group(name="JSON") +def commands(): + """ Kedro plugin for printing the pipeline in JSON format """ + pass + + +@commands.command() +def to_json(): + """ Display the pipeline in JSON format """ + pipeline = get_project_context('create_pipeline')() + print(pipeline.to_json()) +``` + +And have the following entry_points config in `setup.py`: +```python +entry_points={ + 'kedro.project_commands': ['kedrojson = kedrojson.plugin:commands'], +} +``` + +Once the plugin is installed, you can run it as follows: +```bash +kedro to_json +``` diff --git a/docs/source/04_user_guide/data/01_raw/2015_points_old.csv b/docs/source/04_user_guide/data/01_raw/2015_points_old.csv new file mode 100755 index 0000000000..4375b4d603 --- /dev/null +++ b/docs/source/04_user_guide/data/01_raw/2015_points_old.csv @@ -0,0 +1,23 @@ +name,point_1,point_2,point_3,point_4,point_5,point_6,point_7,point_8,point_9,point_10,point_11,point_12,point_13,point_14,point_15,point_16,point_17,point_18,point_19 +Lewis_Hamilton,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10 +Nico_Rosberg,8,6,6,8,8,8,8,8,8,8,8,8,8,8,6,6,8,8,8 +Sebastian_Vettel,6,8,8,6,6,6,6,6,6,6,6,6,6,6,8,8,6,6,6 +Felipe_Massa,5,5,5,4,3,3,3,3,3,3,4,5,3,3,3,3,3,3,3 +Felipe_Nasr,4,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Daniel_Ricciardo,3,1,1,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1 +Nico_Hülkenberg,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Marcus_Ericsson,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Carlos_Sainz,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Sergio_Pérez,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Jenson_Button,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Kimi_Räikkönen,0,4,4,5,5,5,5,5,4,4,5,4,5,5,5,5,4,4,5 +Max_Verstappen,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Romain_Grosjean,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Pastor_Maldonado,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Daniil_Kvyat,0,0,0,0,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2 +Kevin_Magnussen,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Valtteri_Bottas,0,2,3,3,4,4,4,4,5,5,3,3,4,4,4,4,5,5,4 +Roberto_Merhi,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Fernando_Alonso,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Will_Stevens,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Alexander_Rossi,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 diff --git a/docs/source/04_user_guide/data/01_raw/2016_points_old.csv b/docs/source/04_user_guide/data/01_raw/2016_points_old.csv new file mode 100755 index 0000000000..b4d9f598ed --- /dev/null +++ b/docs/source/04_user_guide/data/01_raw/2016_points_old.csv @@ -0,0 +1,25 @@ +name,point_1,point_2,point_3,point_4,point_5,point_6,point_7,point_8,point_9,point_10,point_11,point_12,point_13,point_14,point_15,point_16,point_17,point_18,point_19,point_20,point_21 +Nico_Rosberg,10,10,10,10,10,10,10,10,10,10,8,8,8,8,10,10,10,10,10,10,10 +Lewis_Hamilton,8,8,8,8,6,8,8,8,8,8,10,10,10,10,8,8,8,8,8,8,8 +Sebastian_Vettel,6,3,5,4,5,4,6,6,6,4,4,4,5,5,5,4,3,5,5,5,5 +Daniel_Ricciardo,5,6,6,5,4,6,5,4,4,5,6,6,6,6,6,6,6,6,6,6,6 +Felipe_Massa,4,2,3,3,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Romain_Grosjean,3,4,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Nico_Hülkenberg,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Valtteri_Bottas,1,0,0,0,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1 +Carlos_Sainz,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Max_Verstappen,0,1,0,0,3,3,3,3,3,3,3,3,3,3,3,3,4,3,3,4,4 +Jolyon_Palmer,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Kevin_Magnussen,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Sergio_Pérez,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2 +Jenson_Button,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Felipe_Nasr,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Pascal_Wehrlein,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Marcus_Ericsson,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Kimi_Räikkönen,0,5,4,6,8,5,4,5,5,6,5,5,4,4,4,5,5,4,4,3,3 +Rio_Haryanto,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24 +Esteban_Gutiérrez,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Fernando_Alonso,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Daniil_Kvyat,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Stoffel_Vandoorne,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Esteban_Ocon,0,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,24,24,24,0,0 diff --git a/docs/source/04_user_guide/data/07_model_output/.gitkeep b/docs/source/04_user_guide/data/07_model_output/.gitkeep new file mode 100644 index 0000000000..e69de29bb2 diff --git a/docs/source/04_user_guide/images/pycharm_add_breakpoint.png b/docs/source/04_user_guide/images/pycharm_add_breakpoint.png new file mode 100644 index 0000000000..43a07c8543 Binary files /dev/null and b/docs/source/04_user_guide/images/pycharm_add_breakpoint.png differ diff --git a/docs/source/04_user_guide/images/pycharm_add_conda_env.png b/docs/source/04_user_guide/images/pycharm_add_conda_env.png new file mode 100644 index 0000000000..0d4c02c9fe Binary files /dev/null and b/docs/source/04_user_guide/images/pycharm_add_conda_env.png differ diff --git a/docs/source/04_user_guide/images/pycharm_add_interpreter.png b/docs/source/04_user_guide/images/pycharm_add_interpreter.png new file mode 100644 index 0000000000..0198fa9893 Binary files /dev/null and b/docs/source/04_user_guide/images/pycharm_add_interpreter.png differ diff --git a/docs/source/04_user_guide/images/pycharm_add_py_run_config.png b/docs/source/04_user_guide/images/pycharm_add_py_run_config.png new file mode 100644 index 0000000000..e223901044 Binary files /dev/null and b/docs/source/04_user_guide/images/pycharm_add_py_run_config.png differ diff --git a/docs/source/04_user_guide/images/pycharm_conf_run_button.png b/docs/source/04_user_guide/images/pycharm_conf_run_button.png new file mode 100644 index 0000000000..eabcbc4993 Binary files /dev/null and b/docs/source/04_user_guide/images/pycharm_conf_run_button.png differ diff --git a/docs/source/04_user_guide/images/pycharm_conf_run_dropdown.png b/docs/source/04_user_guide/images/pycharm_conf_run_dropdown.png new file mode 100644 index 0000000000..afa63a766c Binary files /dev/null and b/docs/source/04_user_guide/images/pycharm_conf_run_dropdown.png differ diff --git a/docs/source/04_user_guide/images/pycharm_debugger_break.png b/docs/source/04_user_guide/images/pycharm_debugger_break.png new file mode 100644 index 0000000000..a703880f32 Binary files /dev/null and b/docs/source/04_user_guide/images/pycharm_debugger_break.png differ diff --git a/docs/source/04_user_guide/images/pycharm_debugger_button.png b/docs/source/04_user_guide/images/pycharm_debugger_button.png new file mode 100644 index 0000000000..0d6fe6c426 Binary files /dev/null and b/docs/source/04_user_guide/images/pycharm_debugger_button.png differ diff --git a/docs/source/04_user_guide/images/pycharm_edit_confs.png b/docs/source/04_user_guide/images/pycharm_edit_confs.png new file mode 100644 index 0000000000..42833348e6 Binary files /dev/null and b/docs/source/04_user_guide/images/pycharm_edit_confs.png differ diff --git a/docs/source/04_user_guide/images/pycharm_edit_py_run_config.png b/docs/source/04_user_guide/images/pycharm_edit_py_run_config.png new file mode 100644 index 0000000000..0df4eda1a6 Binary files /dev/null and b/docs/source/04_user_guide/images/pycharm_edit_py_run_config.png differ diff --git a/docs/source/04_user_guide/images/pycharm_mark_dir_as_sources_root.png b/docs/source/04_user_guide/images/pycharm_mark_dir_as_sources_root.png new file mode 100644 index 0000000000..c72a254530 Binary files /dev/null and b/docs/source/04_user_guide/images/pycharm_mark_dir_as_sources_root.png differ diff --git a/docs/source/04_user_guide/images/pycharm_preferences.png b/docs/source/04_user_guide/images/pycharm_preferences.png new file mode 100644 index 0000000000..1a5ebfc4c4 Binary files /dev/null and b/docs/source/04_user_guide/images/pycharm_preferences.png differ diff --git a/docs/source/04_user_guide/images/pycharm_project_interpreter.png b/docs/source/04_user_guide/images/pycharm_project_interpreter.png new file mode 100644 index 0000000000..5c9f6ecbea Binary files /dev/null and b/docs/source/04_user_guide/images/pycharm_project_interpreter.png differ diff --git a/docs/source/04_user_guide/images/pycharm_remote_run.png b/docs/source/04_user_guide/images/pycharm_remote_run.png new file mode 100644 index 0000000000..6896990e7a Binary files /dev/null and b/docs/source/04_user_guide/images/pycharm_remote_run.png differ diff --git a/docs/source/04_user_guide/images/pycharm_select_conda_interpreter.png b/docs/source/04_user_guide/images/pycharm_select_conda_interpreter.png new file mode 100644 index 0000000000..a1e1ef086e Binary files /dev/null and b/docs/source/04_user_guide/images/pycharm_select_conda_interpreter.png differ diff --git a/docs/source/04_user_guide/images/pycharm_ssh_interpreter_1.png b/docs/source/04_user_guide/images/pycharm_ssh_interpreter_1.png new file mode 100644 index 0000000000..c2b58bf7a2 Binary files /dev/null and b/docs/source/04_user_guide/images/pycharm_ssh_interpreter_1.png differ diff --git a/docs/source/04_user_guide/images/pycharm_ssh_interpreter_2.png b/docs/source/04_user_guide/images/pycharm_ssh_interpreter_2.png new file mode 100644 index 0000000000..55c9564b18 Binary files /dev/null and b/docs/source/04_user_guide/images/pycharm_ssh_interpreter_2.png differ diff --git a/docs/source/04_user_guide/images/pycharm_ssh_interpreter_3.png b/docs/source/04_user_guide/images/pycharm_ssh_interpreter_3.png new file mode 100644 index 0000000000..3f10774b1a Binary files /dev/null and b/docs/source/04_user_guide/images/pycharm_ssh_interpreter_3.png differ diff --git a/docs/source/04_user_guide/images/pycharm_ssh_runner.png b/docs/source/04_user_guide/images/pycharm_ssh_runner.png new file mode 100644 index 0000000000..876e992aad Binary files /dev/null and b/docs/source/04_user_guide/images/pycharm_ssh_runner.png differ diff --git a/docs/source/04_user_guide/images/vscode_breakpoint.png b/docs/source/04_user_guide/images/vscode_breakpoint.png new file mode 100644 index 0000000000..cfbb3b07a5 Binary files /dev/null and b/docs/source/04_user_guide/images/vscode_breakpoint.png differ diff --git a/docs/source/04_user_guide/images/vscode_debug_button.png b/docs/source/04_user_guide/images/vscode_debug_button.png new file mode 100644 index 0000000000..ff4939a47e Binary files /dev/null and b/docs/source/04_user_guide/images/vscode_debug_button.png differ diff --git a/docs/source/04_user_guide/images/vscode_remote_debugger.png b/docs/source/04_user_guide/images/vscode_remote_debugger.png new file mode 100644 index 0000000000..234a3a4139 Binary files /dev/null and b/docs/source/04_user_guide/images/vscode_remote_debugger.png differ diff --git a/docs/source/04_user_guide/images/vscode_run.png b/docs/source/04_user_guide/images/vscode_run.png new file mode 100644 index 0000000000..d7c99fb999 Binary files /dev/null and b/docs/source/04_user_guide/images/vscode_run.png differ diff --git a/docs/source/04_user_guide/images/vscode_run_debug.png b/docs/source/04_user_guide/images/vscode_run_debug.png new file mode 100644 index 0000000000..f4e48b9fb9 Binary files /dev/null and b/docs/source/04_user_guide/images/vscode_run_debug.png differ diff --git a/docs/source/04_user_guide/images/vscode_set_breakpoint.png b/docs/source/04_user_guide/images/vscode_set_breakpoint.png new file mode 100644 index 0000000000..cd0d7e1d72 Binary files /dev/null and b/docs/source/04_user_guide/images/vscode_set_breakpoint.png differ diff --git a/docs/source/04_user_guide/images/vscode_setup_interpreter.png b/docs/source/04_user_guide/images/vscode_setup_interpreter.png new file mode 100644 index 0000000000..e9b2e5548d Binary files /dev/null and b/docs/source/04_user_guide/images/vscode_setup_interpreter.png differ diff --git a/docs/source/04_user_guide/images/vscode_startup.png b/docs/source/04_user_guide/images/vscode_startup.png new file mode 100644 index 0000000000..3347b2cbdc Binary files /dev/null and b/docs/source/04_user_guide/images/vscode_startup.png differ diff --git a/docs/source/05_api_docs/_templates/autosummary/base.rst b/docs/source/05_api_docs/_templates/autosummary/base.rst new file mode 100644 index 0000000000..b7556ebf7b --- /dev/null +++ b/docs/source/05_api_docs/_templates/autosummary/base.rst @@ -0,0 +1,5 @@ +{{ fullname | escape | underline}} + +.. currentmodule:: {{ module }} + +.. auto{{ objtype }}:: {{ objname }} diff --git a/docs/source/05_api_docs/_templates/autosummary/class.rst b/docs/source/05_api_docs/_templates/autosummary/class.rst new file mode 100644 index 0000000000..7b269523c6 --- /dev/null +++ b/docs/source/05_api_docs/_templates/autosummary/class.rst @@ -0,0 +1,9 @@ +{{ fullname | escape | underline}} + +.. currentmodule:: {{ module }} + +.. autoclass:: {{ objname }} + :members: + :undoc-members: + :show-inheritance: + :inherited-members: diff --git a/docs/source/05_api_docs/_templates/autosummary/module.rst b/docs/source/05_api_docs/_templates/autosummary/module.rst new file mode 100644 index 0000000000..0957773d08 --- /dev/null +++ b/docs/source/05_api_docs/_templates/autosummary/module.rst @@ -0,0 +1,29 @@ +{{ fullname | escape | underline }} + +.. rubric:: Description + +.. automodule:: {{ fullname }} + +.. currentmodule:: {{ fullname }} + +{% if classes %} +.. rubric:: Classes + +.. autosummary:: + :toctree: . + {% for class in classes %} + {{ class }} + {% endfor %} + +{% endif %} + +{% if functions %} +.. rubric:: Functions + +.. autosummary:: + :toctree: . + {% for function in functions %} + {{ function }} + {% endfor %} + +{% endif %} diff --git a/docs/source/05_api_docs/index.rst b/docs/source/05_api_docs/index.rst new file mode 100644 index 0000000000..746ae6a5e8 --- /dev/null +++ b/docs/source/05_api_docs/index.rst @@ -0,0 +1,75 @@ +.. Kedro documentation master file, created by + sphinx-quickstart on Mon Dec 18 11:31:24 2017. + You can adapt this file completely to your liking, but it should at least + contain the root `toctree` directive. + + +Welcome to Kedro's API docs and tutorials! +============================================= + + +.. toctree:: + :maxdepth: 2 + :caption: Introduction + + 01_introduction/01_introduction + + +.. toctree:: + :maxdepth: 2 + :caption: Getting Started + + 02_getting_started/01_prerequisites + 02_getting_started/02_install + 02_getting_started/03_new_project + 02_getting_started/04_hello_world + + +.. toctree:: + :maxdepth: 2 + :caption: Tutorial + + 03_tutorial/01_workflow + 03_tutorial/02_tutorial_template + 03_tutorial/03_set_up_data + 03_tutorial/04_create_pipelines + 03_tutorial/05_package_a_project + + +.. toctree:: + :maxdepth: 2 + :caption: User Guide + + 04_user_guide/01_setting_up_vscode + 04_user_guide/02_setting_up_pycharm + 04_user_guide/03_configuration + 04_user_guide/04_data_catalog + 04_user_guide/05_nodes_and_pipelines + 04_user_guide/06_logging + 04_user_guide/07_advanced_io + 04_user_guide/08_pyspark + 04_user_guide/09_developing_plugins + + +.. toctree:: + :maxdepth: 2 + :caption: Resources + + 06_resources/01_faq + 06_resources/02_commands_reference + 06_resources/03_ipython + 06_resources/04_lint + + +.. toctree:: + :maxdepth: 3 + :caption: API Docs + + kedro + +Indices and tables +================== + +* :ref:`genindex` +* :ref:`modindex` +* :ref:`search` diff --git a/docs/source/05_api_docs/kedro.config.rst b/docs/source/05_api_docs/kedro.config.rst new file mode 100644 index 0000000000..7c5fc64cf5 --- /dev/null +++ b/docs/source/05_api_docs/kedro.config.rst @@ -0,0 +1,12 @@ +kedro.config +============= + +.. currentmodule:: kedro.config + +.. automodule:: kedro.config + +.. autosummary:: + :toctree: + :template: autosummary/class.rst + + kedro.config.ConfigLoader diff --git a/docs/source/05_api_docs/kedro.contrib.io.rst b/docs/source/05_api_docs/kedro.contrib.io.rst new file mode 100644 index 0000000000..76392f7a32 --- /dev/null +++ b/docs/source/05_api_docs/kedro.contrib.io.rst @@ -0,0 +1,15 @@ +kedro.contrib.io +================ + +.. currentmodule:: kedro.contrib.io + +.. automodule:: kedro.contrib.io + +.. autosummary:: + :toctree: + :template: autosummary/module.rst + + kedro.contrib.io.catalog_with_default + kedro.contrib.io.azure + kedro.contrib.io.bioinformatics + kedro.contrib.io.pyspark diff --git a/docs/source/05_api_docs/kedro.contrib.rst b/docs/source/05_api_docs/kedro.contrib.rst new file mode 100644 index 0000000000..5253621bcb --- /dev/null +++ b/docs/source/05_api_docs/kedro.contrib.rst @@ -0,0 +1,14 @@ +kedro.contrib +============= + +.. currentmodule:: kedro.contrib + +.. automodule:: kedro.contrib + +.. autosummary:: + :toctree: + :template: autosummary/module.rst + + kedro.contrib.io + kedro.contrib.colors + kedro.contrib.decorators diff --git a/docs/source/05_api_docs/kedro.io.rst b/docs/source/05_api_docs/kedro.io.rst new file mode 100644 index 0000000000..8194b91885 --- /dev/null +++ b/docs/source/05_api_docs/kedro.io.rst @@ -0,0 +1,61 @@ +kedro.io +======== + +.. currentmodule:: kedro.io + +.. automodule:: kedro.io + +Data Catalog +------------ + +.. autosummary:: + :toctree: + :template: autosummary/class.rst + + kedro.io.DataCatalog + +Data Sets +--------- + +.. autosummary:: + :toctree: + :template: autosummary/class.rst + + kedro.io.CSVLocalDataSet + kedro.io.CSVS3DataSet + kedro.io.HDFLocalDataSet + kedro.io.JSONLocalDataSet + kedro.io.LambdaDataSet + kedro.io.MemoryDataSet + kedro.io.ParquetLocalDataSet + kedro.io.PickleLocalDataSet + kedro.io.PickleS3DataSet + kedro.io.SQLTableDataSet + kedro.io.SQLQueryDataSet + kedro.io.TextLocalDataSet + kedro.io.ExcelLocalDataSet + +Errors +------ + +.. autosummary:: + :toctree: + :template: autosummary/class.rst + + kedro.io.DataSetAlreadyExistsError + kedro.io.DataSetError + kedro.io.DataSetNotFoundError + + +Base Classes +------------ + +.. autosummary:: + :toctree: + :template: autosummary/class.rst + + kedro.io.AbstractDataSet + kedro.io.ExistsMixin + kedro.io.FilepathVersionMixIn + kedro.io.S3PathVersionMixIn + kedro.io.Version diff --git a/docs/source/05_api_docs/kedro.pipeline.rst b/docs/source/05_api_docs/kedro.pipeline.rst new file mode 100644 index 0000000000..2c4b21379d --- /dev/null +++ b/docs/source/05_api_docs/kedro.pipeline.rst @@ -0,0 +1,19 @@ +kedro.pipeline +================= + +.. currentmodule:: kedro.pipeline + +.. automodule:: kedro.pipeline + +.. autosummary:: + :toctree: + :template: autosummary/class.rst + + kedro.pipeline.Pipeline + kedro.pipeline.node.Node + +.. autosummary:: + :toctree: + :template: autosummary/base.rst + + kedro.pipeline.node diff --git a/docs/source/05_api_docs/kedro.rst b/docs/source/05_api_docs/kedro.rst new file mode 100644 index 0000000000..c03a40c534 --- /dev/null +++ b/docs/source/05_api_docs/kedro.rst @@ -0,0 +1,13 @@ +kedro +======== + +.. automodule:: kedro + +.. autosummary:: + :toctree: + + kedro.io + kedro.config + kedro.pipeline + kedro.runner + kedro.contrib diff --git a/docs/source/05_api_docs/kedro.runner.rst b/docs/source/05_api_docs/kedro.runner.rst new file mode 100644 index 0000000000..709b8f491f --- /dev/null +++ b/docs/source/05_api_docs/kedro.runner.rst @@ -0,0 +1,14 @@ +kedro.runner +================= + +.. currentmodule:: kedro.runner + +.. automodule:: kedro.runner + +.. autosummary:: + :toctree: + :template: autosummary/class.rst + + kedro.runner.AbstractRunner + kedro.runner.SequentialRunner + kedro.runner.ParallelRunner diff --git a/docs/source/06_resources/01_faq.md b/docs/source/06_resources/01_faq.md new file mode 100644 index 0000000000..22417f5ed6 --- /dev/null +++ b/docs/source/06_resources/01_faq.md @@ -0,0 +1,130 @@ +> *Note:* This documentation is based on `Kedro 0.14.0`, if you spot anything that is incorrect then please create an [issue](https://github.com/quantumblacklabs/kedro/issues) or pull request. + +# Frequently asked questions + +## What is Kedro? + +[Kedro](https://github.com/quantumblacklabs/kedro) is a workflow development tool that helps you build data pipelines that are robust, scaleable, deployable, reproducible and versioned. It was originally designed by [Aris Valtazanos](https://github.com/arisvqb) and [Nikolaos Tsaousis](https://github.com/tsanikgr) at [QuantumBlack](https://github.com/quantumblacklabs/) to solve the challenges they faced in their project work. + +### Philosophy + +Kedro is a Python library and lightly opinionated framework. This means that we give you the flexibility and extensibility of a standard Python library and make very few assumptions on the _best_ way to do things. We have created independent but friendly modules – modules that understand each others' defaults and are compatible. You can use alternative methods and choose to use one or all of the modules but it is understood that using Kedro in its entirety is the best thing that you can do for your projects. + +### Principles + +The Kedro design principles are: + +- Declarative definitions +- Composability +- Flexibility +- Extensibility +- Simplicity + +## What version of Python does Kedro use? + +Kedro is built for Python 3.5+. + +## What are the primary advantages of Kedro? + +It is important to consider the primary advantages of Kedro over existing tools. As we see it, Kedro: + +- Is designed to assist both during development and production, allowing quick iterations +- Enforces separation of concerns between data processing and data storing +- Does the heavy lifting for dependency resolution +- Passes data between nodes for faster iterations during development + + +## How does Kedro compare to other projects? + +Data pipelines consist of extract-transform-load (ETL) workflows. If we understand that data pipelines must be scaleable, monitored, versioned, testable and modular then this introduces us to a spectrum of tools that can be used to construct such data pipelines. `Pipeline` abstraction is implemented in workflow schedulers like Luigi and Airflow, as well as in ETL frameworks like Bonobo ETL and Bubbles. + +### Kedro vs workflow schedulers + +We see Airflow and Luigi as complementary frameworks: Airflow and Luigi are tools that handle deployment, scheduling, monitoring and alerting. Kedro is the _worker_ that should execute a series of tasks, and report to the Airflow and Luigi _managers_. We are building integrations for both tools and intend these integrations to offer a faster prototyping time and reduce the barriers to entry associated with moving pipelines to both workflow schedulers. + +### Kedro vs other ETL frameworks + +The primary differences to Bonobo ETL and Bubbles are related to the following features of Kedro: + + - **Ability to support big data operations**. Kedro supports big data operations by allowing you to use PySpark on your projects. We also look at processing dataframes differently to both tools as we consider entire dataframes and do not make use of the slower line-by-line data stream processing. + - **Project structure**. Kedro provides a built-in project structure from the beginning of your project configured for best-practice project management. + - **Automatic dependency resolution for pipelines**. The `Pipeline` module also maps out dependencies between nodes and displays the results of this in a sophisticated but easy to understand directed acyclic graph. + - Extensibility + +## What is data engineering convention? + +[Bruce Philp](https://github.com/bruceaphilp) and [Guilherme Braccialli](https://github.com/gbraccialli-qb) at [QuantumBlack](https://github.com/quantumblacklabs) are the brains behind this model of managing data. To see which data layer to use, you can refer to the following table. + +> *Note:* The data layers don’t have to exist locally in the `data` folder within your project. It is recommended that you structure your S3 buckets or other data stores in a similar way. + +```eval_rst ++----------------+---------------------------------------------------------------------------------------------------+ +| Folder in data | Description | ++================+===================================================================================================+ +| Raw | Initial start of the pipeline, containing the sourced data model(s) that should never be changed, | +| | it forms your single source of truth to work from. These data models are typically un-typed in | +| | most cases e.g. csv, but this will vary from case to case. | ++----------------+---------------------------------------------------------------------------------------------------+ +| Intermediate | Optional data model(s), which are introduced to type your :code:`raw` data model(s), e.g. | +| | converting string based values into their current typed representation. | ++----------------+---------------------------------------------------------------------------------------------------+ +| Primary | Domain specific data model(s) containing cleansed, transformed and wrangled data from either | +| | :code:`raw` or :code:`intermediate`, which forms your layer that you input into your feature | +| | engineering. | ++----------------+---------------------------------------------------------------------------------------------------+ +| Feature | Analytics specific data model(s) containing a set of features defined against the :code:`primary` | +| | data, which are grouped by feature area of analysis and stored against a common dimension. | ++----------------+---------------------------------------------------------------------------------------------------+ +| Model input | Analytics specific data model(s) containing all :code:`feature` data against a common dimension | +| | and in the case of live projects against an analytics run date to ensure that you track the | +| | historical changes of the features over time. | ++----------------+---------------------------------------------------------------------------------------------------+ +| Models | Stored, serialised pre-trained machine learning models. | ++----------------+---------------------------------------------------------------------------------------------------+ +| Model output | Analytics specific data model(s) containing the results generated by the model based on the | +| | :code:`model input` data. | ++----------------+---------------------------------------------------------------------------------------------------+ +| Reporting | Reporting data model(s) that are used to combine a set of :code:`primary`, :code:`feature`, | +| | :code:`model input` and :code:`model output` data used to drive the dashboard and the views | +| | constructed. It encapsulates and removes the need to define any blending or joining of data, | +| | improve performance and replacement of presentation layer without having to redefine the data | +| | models. | ++----------------+---------------------------------------------------------------------------------------------------+ +``` + + +## What best practice should I follow to avoid leaking confidential data? + +* Avoid committing data to version control (data folder is by default ignored via `.gitignore`) +* Avoid committing data to notebook output cells (data can easily sneak into notebooks when you don't delete output cells) +* Don't commit sensitive results or plots to version control (in notebooks or otherwise) +* Don't commit credentials in `conf/`. There are two default folders for adding configuration - `conf/base/` and `conf/local/`. Only the `conf/local/` folder should be used for sensitive information like access credentials. To add credentials, please refer to the `conf/base/credentials.yml` file in the project template. +* By default any file inside the `conf/` folder (and its subfolders) containing `credentials` in its name will be ignored via `.gitignore` and not commited to your git repository. +* To describe where your colleagues can access the credentials, you may edit the `README.md` to provide instructions. + +## Where do I store my custom editor configuration? + +You can use `conf/local` to describe your custom editor configuration. + +## How do I look up an API function? + +Every Kedro function or class has extensive help, so please do take advantage of this capability, example of this is presented below: + +```python +help(MemoryDataSet) +``` + +## How do I build documentation for my project? + +Project-specific documentation can be generated by running `kedro build-docs` in the project root directory. This will create documentation based on the code structure. Documentation will also include the [`docstrings`](https://www.datacamp.com/community/tutorials/docstrings-python) defined in the project code. + +HTML files for the project documentation will be built to `docs/build/html`. + +## How do I build documentation about Kedro? + +A local copy of documentation about Kedro can be generated by running `kedro docs` from the command line. The documentation is also available [online](https://kedro.readthedocs.io). + +## How can I find out more about Kedro? + +Kedro is on GitHub, and our preferred community channel for feedback is through [GitHub issues](https://github.com/quantumblacklabs/kedro/issues). We will be updating the codebase regularly, and you can find news about updates and features we introduce by heading over to [RELEASE.md](https://github.com/quantumblacklabs/kedro/blob/develop/RELEASE.md). + diff --git a/docs/source/06_resources/02_commands_reference.md b/docs/source/06_resources/02_commands_reference.md new file mode 100644 index 0000000000..50fe3f6857 --- /dev/null +++ b/docs/source/06_resources/02_commands_reference.md @@ -0,0 +1,88 @@ +> *Note:* This documentation is based on `Kedro 0.14.0`, if you spot anything that is incorrect then please create an [issue](https://github.com/quantumblacklabs/kedro/issues) or pull request. + +# Guide to CLI commands + +The `kedro` command line interface (CLI) helps with reproducibility in projects by allowing you to associate a set of commands and dependencies with a target and then execute them from the command line when inside a Kedro project directory. All project related CLI commands should be run from the project’s root directory. + +The supported commands are specified in the `kedro_cli.py` file. It is easy to extend `kedro_cli.py` by either modifying the file or injecting commands into it by using the [`plugin` framework](../04_user_guide/09_developing_plugins.md). + +## Global Kedro commands + +Show version and exit: + +```bash +kedro -V +kedro --version +``` + +See extensive logging and error stack traces: + +```bash +kedro -v +kedro --verbose +``` + +Get help on Kedro commands: + +```bash +kedro -h +kedro --help +``` + +Create a new kedro project: + +```bash +kedro new +``` + +See the Kedro API documentation (including the tutorial): + +```bash +kedro docs +``` + +## Project-specific Kedro commands + +### `kedro run` +Runs the `main()` function in `run.py` (`src/project-name/run.py`) + +To make sure the project is shareable and reproducible, you should maintain the `kedro run` program definitions in the `kedro_cli.py` to point to the entry point in your project. + +### `kedro install` +Install all package dependencies specified in `requirements.txt` + +### `kedro test` +Run all `pytest` unit tests found in `src/tests`, including coverage (see the file `.coveragerc`). + +### `kedro package` +Package your application as one `.egg` file and one `.whl` file within the `src/dist/` folder of your project. For further information about packaging for Python, documentation is provided [here](https://packaging.python.org/overview/). + +### `kedro build-docs` +Build the project documentation using the [Sphinx](https://www.sphinx-doc.org) framework. To further customise it, please refer to `docs/source/conf.py` and the [corresponding section](http://www.sphinx-doc.org/en/master/usage/configuration.html) of the Sphinx documentation. + +### `kedro jupyter notebook`, `kedro jupyter lab`, `kedro ipython` +Start a Jupyter Notebook, Lab or REPL session respectively. + +Every time you start or restart a notebook kernel, a startup script (`<project-root>/.ipython/profile_default/startup/00-kedro-init.py`) will add the following variables in scope: +- `proj_dir` (`str`) +- `proj_name` (`str`) +- `conf` (`ConfigLoader`) +- `io` (`DataCatalog`) +- `parameters` (`dict`) +- `startup_error` (`Exception`) + +To reload these at any point in your notebook (e.g. if you updated `catalog.yml`) use the line magic `%reload_kedro`. + +This [line magic](https://ipython.readthedocs.io/en/stable/interactive/magics.html#line-magics) can be also used to see the error message if any of the variables above are undefined. + +### `kedro activate-nbstripout` +Typically output cells of Jupyter Notebook should not be tracked by git, especially if they contain sensitive information. + +This command adds a `git hook` which clears all notebook output cells before committing anything to `git`. This needs to run only once per local repository. + +## Using Python +You can also invoke the Kedro CLI as a Python module: + +```console +python -m kedro +``` diff --git a/docs/source/06_resources/03_ipython.md b/docs/source/06_resources/03_ipython.md new file mode 100644 index 0000000000..dd99021c81 --- /dev/null +++ b/docs/source/06_resources/03_ipython.md @@ -0,0 +1,50 @@ + +> *Note:* This documentation is based on `Kedro 0.14.0`, if you spot anything that is incorrect then please create an [issue](https://github.com/quantumblacklabs/kedro/issues) or pull request. + +# Working with Kedro and IPython + +In order to experiment with the code interactively, you may want to use a Python kernel inside a Jupyter notebook (formerly known as IPython). + +To start a standalone IPython session, run the following command in the root directory of the project: + +```bash +kedro ipython +``` + +Every time you start/restart an IPython session, a startup script (`<your_project_name>/.ipython/profile_default/startup/00-kedro-init.py`) will add the following variables in scope: + +- `proj_dir` (`str`) - Root directory of the project +- `proj_name` (`str`) - Project folder name +- `conf` (`ConfigLoader`) - Configuration loader object +- `io` (`DataCatalog`) - Data catalog +- `parameters` (`dict`) - Parameters from the project configuration +- `startup_error` (`Exception`) - An error that was raised during the execution of the startup script or `None` if no errors occurred. + +To reload these at any point (e.g., if you updated `catalog.yml`) use the [line magic](https://ipython.readthedocs.io/en/stable/interactive/magics.html) `%reload_kedro`. This magic can also be used to see the error message if any of the variables above are undefined. + +## Loading `DataCatalog` in IPython + +You can load a dataset of [Iris Test example](https://archive.ics.uci.edu/ml/datasets/iris) inside the IPython console, by simply executing the following: + +```python +io.load("example_iris_data").head() +``` + +> Since the `io` is already defined during IPython session startup, we don't have to recreate it. + +```bash +kedro.io.data_catalog - INFO - Loading data from `example_iris_data` (CSVLocalDataSet)... + + sepal_length sepal_width petal_length petal_width species +0 5.1 3.5 1.4 0.2 setosa +1 4.9 3.0 1.4 0.2 setosa +2 4.7 3.2 1.3 0.2 setosa +3 4.6 3.1 1.5 0.2 setosa +4 5.0 3.6 1.4 0.2 setosa +``` + +When you have finished, you can exit IPython by typing: + +```python +exit() +``` diff --git a/docs/source/06_resources/04_lint.md b/docs/source/06_resources/04_lint.md new file mode 100644 index 0000000000..bb94d9ef59 --- /dev/null +++ b/docs/source/06_resources/04_lint.md @@ -0,0 +1,40 @@ +> *Note:* This documentation is based on `Kedro 0.14.0`, if you spot anything that is incorrect then please create an [issue](https://github.com/quantumblacklabs/kedro/issues) or pull request. + +# Linting your Kedro project + +> *Note:* The following suggestions would require installing the `pylint` package, subject to GPL licence. + + +You can ensure code quality by using [pylint](https://www.pylint.org/), a popular linting tool. Sample commands you can use to help with this are included in the script below: + +```bash +isort +pylint -j 0 src/<your_project> kedro_cli.py +pylint -j 0 --disable=missing-docstring,redefined-outer-name src/tests +``` + +Alternatively, you can opt to use it as a plugin to your Kedro project. To do this, add the following code snippet to `kedro_cli.py` in your project root directory: + +```python +@cli.command() +def lint(): + """Check the Python code quality.""" + python_call("isort", []) + python_call( + "pylint", ["-j", "0", "src/<your_project>", "kedro_cli.py"] + ) + python_call( + "pylint", + ["-j", "0", "--disable=missing-docstring,redefined-outer-name", "src/tests"], + ) +``` + +To trigger the behaviour, simply run the following command in your terminal window: +```bash +kedro lint +``` + +Make sure you also include the dependency in your `requirements.txt`, i.e: +```text +pylint>=2.3.1,<3.0 +``` diff --git a/docs/source/css/copybutton.css b/docs/source/css/copybutton.css new file mode 100644 index 0000000000..52ec4e73b1 --- /dev/null +++ b/docs/source/css/copybutton.css @@ -0,0 +1,59 @@ +/* Copied from: https://raw.githubusercontent.com/choldgraf/sphinx-copybutton/master/sphinx_copybutton/_static/copybutton.css */ + +/* Copy buttons */ +a.copybtn { + position: absolute; + top: 2px; + right: 2px; + width: 1.7em; + height: 1.7em; + padding: .3em; + opacity: .6; + transition: opacity 0.5s; +} + +div.highlight { + position: relative; +} + +.highlight:hover .copybtn { + opacity: 1; +} + +/** + * A minimal CSS-only tooltip copied from: + * https://codepen.io/mildrenben/pen/rVBrpK + * + * To use, write HTML like the following: + * + * <p class="o-tooltip--left" data-tooltip="Hey">Short</p> + */ + .o-tooltip--left { + position: relative; + } + + .o-tooltip--left:after { + opacity: 0; + visibility: hidden; + position: absolute; + content: attr(data-tooltip); + padding: 2px; + top: 0; + left: 0; + background: grey; + font-size: 1rem; + color: white; + white-space: nowrap; + z-index: 2; + border-radius: 2px; + transform: translateX(-102%) translateY(0); + transition: opacity 0.2s cubic-bezier(0.64, 0.09, 0.08, 1), transform 0.2s cubic-bezier(0.64, 0.09, 0.08, 1); +} + +.o-tooltip--left:hover:after { + display: block; + opacity: 1; + visibility: visible; + transform: translateX(-100%) translateY(0); + transition: opacity 0.2s cubic-bezier(0.64, 0.09, 0.08, 1), transform 0.2s cubic-bezier(0.64, 0.09, 0.08, 1); +} diff --git a/docs/source/css/qb1-sphinx-rtd.css b/docs/source/css/qb1-sphinx-rtd.css new file mode 100644 index 0000000000..5519071d4a --- /dev/null +++ b/docs/source/css/qb1-sphinx-rtd.css @@ -0,0 +1,318 @@ + +@import url("https://fonts.googleapis.com/css?family=Titillium+Web:300,400,600"); + +/* normilize css */ +html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video { + margin: 0; + padding: 0; + border: 0; + font-size: 100%; + font: inherit; + font-style: inherit; + font-variant-ligatures: inherit; + font-variant-caps: inherit; + font-variant-numeric: inherit; + font-variant-east-asian: inherit; + font-weight: inherit; + font-stretch: inherit; + font-size: 100%; + line-height: inherit; + font-family: inherit; + vertical-align: baseline; +} + +html, body.wy-body-for-nav { + -webkit-font-smoothing: antialiased; + font-family: 'Titillium Web', sans-serif; + font-weight: 400; + font-size: 62.5%; + line-height: 2rem; + letter-spacing: 0.1px; +} + +body.wy-body-for-nav { + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; + background: rgb(250, 250, 250) !important; + color: black; +} + +.wy-body-for-nav .wy-side-nav-search input[type=text] { + display: block !important; + box-sizing: border-box !important; + width: 100% !important; + padding: 6px 12px !important; + color: #333 !important; + background-color: #fff !important; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif !important; + font-size: 15px !important; + border: 1px #e8e8e8 solid !important; + border-radius: 2px !important; + transition: border-color ease-in-out .15s !important; + box-shadow: none !important; +} + +.wy-body-for-nav .wy-nav-side { + font-size: 16px; + position: fixed; + top: 0; + bottom: 0; + left: 0; + padding-bottom: 2em; + width: 300px; + overflow-x: hidden; + overflow-y: auto; + min-height: 100%; + background: white; + z-index: 200; + box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .05); +} + +.wy-body-for-nav .wy-side-scroll { + width: 300px !important; + position: relative; + overflow-x: initial; + overflow-y: initial; + height: initial; +} + +.wy-body-for-nav .wy-side-nav-search { + width: 300px; + background: none; + margin: 0; + padding: 15px; +} +.wy-body-for-nav .wy-side-nav-search a { + font-size: 26px; + margin-bottom: 16px; + color: black; +} +.wy-body-for-nav .wy-side-nav-search a:before { + content: ''; +} +.wy-body-for-nav .wy-side-nav-search>div.version { + color: black; +} + + +.wy-body-for-nav .wy-menu-vertical { + width: 300px; + margin: 0; + padding: 0 10px 0 32px; +} +.wy-body-for-nav .wy-menu-vertical p.caption { + margin: auto; + text-align: center; +} + +.wy-body-for-nav .wy-menu-vertical li.on a, .wy-body-for-nav .wy-menu-vertical li.current>a { + border-top: none; + border-bottom: none; +} + + +.wy-body-for-nav .wy-menu-vertical li.current { + background: white; +} +.wy-body-for-nav .wy-menu-vertical li { + margin: 0; + padding: 0; + font-size: 16px !important; +} + +.wy-body-for-nav .wy-menu-vertical li a { + display: block; + margin: 0; + padding: 14px 0 !important; + font-size: 16px !important; + line-height: 1; + color: black !important; + background: none !important; +} + +.wy-body-for-nav .toctree-expand:before { + font-size: 15px; + margin-right: 5px; +} + +.wy-body-for-nav .wy-nav-content-wrap { + margin-left: 300px; + background: #fafafa; + font-size: 16px; +} + +.wy-body-for-nav .wy-nav-content { + padding: 0; + max-width: initial; +} + +.wy-body-for-nav .wy-breadcrumbs { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + width: 100%; + height: 71px; + padding-left: 32px; + background: white; + background-image: initial; + background-position-x: initial; + background-position-y: initial; + background-size: initial; + background-repeat-x: initial; + background-repeat-y: initial; + background-attachment: initial; + background-origin: initial; + background-clip: initial; + background-color: white; + box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .05); +} + +.wy-body-for-nav .wy-breadcrumbs + hr { + display: none; +} +.wy-body-for-nav .wy-breadcrumbs li { + font-size: 20px; +} + +.wy-body-for-nav .wy-breadcrumbs li:not(:first-child) { + margin-left: 6px; +} + + +.wy-body-for-nav .wy-nav-content .document{ + padding: 32px 32px 20px; +} + +.wy-body-for-nav footer { + padding: 32px; +} + +.wy-body-for-nav .wy-body-for-nav { + background: #fafafa !important; + background-image: none; + background-size: initial; +} + +.wy-body-for-nav .wy-menu-vertical li.current a:hover { + background: none; +} +.wy-body-for-nav .wy-menu-vertical a:hover { + background: none; + cursor: pointer; +} + +.wy-body-for-nav .wy-menu-vertical li.current a { + border-right: none; +} + +.wy-body-for-nav .toctree-l2 { + padding-left: 15px !important; +} + +.wy-body-for-nav .toctree-l3 { + padding-left: 15px !important; +} + +.wy-body-for-nav .toctree-l4 { + padding-left: 15px !important; + } + +.wy-body-for-nav .toctree-l5 { + padding-left: 15px !important; +} + + +.wy-body-for-nav .toctree-l2.current > a, .wy-body-for-nav .toctree-l3.current > a,.wy-body-for-nav .toctree-l4.current > a { + font-weight: normal !important; +} +.wy-body-for-nav .toctree-l4 a { + word-break: break-word; +} + +.wy-body-for-nav b, .wy-body-for-nav strong { + font-weight: normal; +} +.wy-body-for-nav h1,.wy-body-for-nav h2, .wy-body-for-nav h3,.wy-body-for-nav h4, .wy-body-for-nav h5 { + font-family: 'Titillium Web', sans-serif; + margin: 15px 0; +} +.wy-body-for-nav h1 { + font-size: 4rem; + line-height: 4.8rem; + letter-spacing: -0.3px; +} + +.wy-body-for-nav h2 { + font-size: 3rem; + font-weight: normal; + line-height: 3.8rem; +} + +.wy-body-for-nav h3 { + font-size: 2rem; + line-height: 2.8rem; +} + +.wy-body-for-nav .headerlink { + display: none !important; +} + +.wy-body-for-nav p { + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; + font-size: 100%; + margin: 0 0 15px 0; + line-height: 1.5; +} + +.wy-body-for-nav .rst-content a, .wy-body-for-nav footer a{ + font-family: inherit; + font-size: inherit; + color: #1978c8; + text-decoration: none; +} + +.wy-body-for-nav .rst-content a:visited, .wy-body-for-nav footer a:visited { + font-family: inherit; + font-size: inherit; + color: #1978c8; + text-decoration: none; +} + +.wy-body-for-nav .rst-content a:hover, .wy-body-for-nav footer a:hover { + color: #f28a25; + cursor: pointer; +} + +.wy-body-for-nav .wy-nav-top { + background: white; + color: black; +} +.wy-body-for-nav .wy-nav-top a { + color: black !important; +} + + +@media screen and (max-width: 768px) { + .wy-body-for-nav .wy-nav-side { + left: -300px; + } + .wy-body-for-nav .wy-nav-side.shift { + width: 85%; + left: 0; + } + .wy-body-for-nav .wy-nav-content-wrap { + margin-left: 0; + } + .wy-body-for-nav .wy-breadcrumbs { + display: none; + } + .wy-body-for-nav h1 { + font-size: 3rem; + line-height: 3.8rem; + letter-spacing: 0px; + } +} + + diff --git a/docs/source/css/theme-overrides.css b/docs/source/css/theme-overrides.css new file mode 100644 index 0000000000..c928bd0256 --- /dev/null +++ b/docs/source/css/theme-overrides.css @@ -0,0 +1,11 @@ +/* override table width restrictions */ +@media screen and (min-width: 767px) { + + .wy-table-responsive table td { + white-space: normal; + } + + .wy-table-responsive { + overflow: visible; + } +} diff --git a/features/__init__.py b/features/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/features/activate_nbstripout.feature b/features/activate_nbstripout.feature new file mode 100644 index 0000000000..2f5bdc8711 --- /dev/null +++ b/features/activate_nbstripout.feature @@ -0,0 +1,67 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. +# +Feature: Activate_nbstripout target in new project + + Background: + Given I have prepared a config file with example code + And I have run a non-interactive kedro new + + Scenario: Run activate-nbstripout target without nbstripout installed + Given I have initialized a git repository + And the python package "nbstripout" has been uninstalled + When I execute the kedro command "activate-nbstripout" + Then I should get an error exit code + And I should get an error message including "nbstripout is not installed." + + Scenario: Run activate-nbstripout target without git initialisation + Given I have executed the kedro command "install" + When I execute the kedro command "activate-nbstripout" + Then I should get an error exit code + And I should get an error message including "Not a git repository. Run `git init` first." + + Scenario: Run activate-nbstripout target with nbstripout installed and git initialized + Given I have executed the kedro command "install" + And I have initialized a git repository + When I execute the kedro command "activate-nbstripout" + Then I should get a successful exit code + + Scenario: Check nbstripout git post commit hook functionality + Given I have executed the kedro command "install" + And I have added a test jupyter notebook + And I have initialized a git repository + And I have added the project directory to staging + And I have committed changes to git + And I have executed the kedro command "activate-nbstripout" + When I execute the test jupyter notebook and save changes + And I add the project directory to staging + And I commit changes to git + And I remove the notebooks directory + And I perform a hard git reset to restore the project to last commit + Then there should be an additional cell in the jupyter notebook + And the output should be empty in all the cells in the jupyter notebook diff --git a/features/build_docs.feature b/features/build_docs.feature new file mode 100644 index 0000000000..b57b9f8d03 --- /dev/null +++ b/features/build_docs.feature @@ -0,0 +1,37 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. +# + +Feature: build-docs target in new project + + Scenario: Execute build-docs target + Given I have prepared a config file with example code + And I have run a non-interactive kedro new + When I execute the kedro command "build-docs" + Then I should get a successful exit code + And docs should be generated diff --git a/features/environment.py b/features/environment.py new file mode 100644 index 0000000000..25642d6210 --- /dev/null +++ b/features/environment.py @@ -0,0 +1,110 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +"""Behave environment setup commands.""" + +import glob +import os +import shutil +import stat +import tempfile +from pathlib import Path + +from features.steps.sh_run import run +from features.steps.util import create_new_venv + + +def before_all(context): + """Environment preparation before other cli tests are run. + Installs kedro by running pip in the top level directory. + """ + + def call(cmd): + res = run(cmd, env=context.env) + if res.returncode: + print(res.stdout) + print(res.stderr) + assert False + + # make a venv + if "E2E_VENV" in os.environ: + context.venv_dir = Path(os.environ["E2E_VENV"]) + else: + context.venv_dir = Path(create_new_venv()) + + # note the locations of some useful stuff + # this is because exe resolution in supbrocess doens't respect a passed env + if os.name == "posix": + bin_dir = context.venv_dir / "bin" + path_sep = ":" + else: + bin_dir = context.venv_dir / "Scripts" + path_sep = ";" + context.pip = str(bin_dir / "pip") + context.python = str(bin_dir / "python") + context.kedro = str(bin_dir / "kedro") + + # clone the environment, remove any condas and venvs and insert our venv + context.env = os.environ.copy() + path = context.env["PATH"].split(path_sep) + path = [p for p in path if not (Path(p).parent / "pyvenv.cfg").is_file()] + path = [p for p in path if not (Path(p).parent / "conda-meta").is_dir()] + path = [str(bin_dir)] + path + context.env["PATH"] = path_sep.join(path) + + # install Kedro + call([context.python, "-m", "pip", "install", "-U", "pip"]) + for wheel_path in Path("dist").glob("*.whl"): + wheel_path.unlink() + call([context.pip, "install", "wheel"]) + call([context.python, "setup.py", "clean", "--all", "bdist_wheel"]) + call([context.pip, "install", "-U"] + glob.glob("dist/*.whl")) + + +def after_all(context): + if "E2E_VENV" not in os.environ: + rmtree(context.venv_dir) + + +def before_scenario(context, feature): + # pylint: disable=unused-argument + context.temp_dir = Path(tempfile.mkdtemp()) + + +def after_scenario(context, feature): + # pylint: disable=unused-argument + rmtree(context.temp_dir) + + +def rmtree(top): + """This is for Windows machine to switch the permission.""" + if os.name != "posix": + for root, _, files in os.walk(str(top), topdown=False): + for name in files: + os.chmod(os.path.join(root, name), stat.S_IWUSR) + shutil.rmtree(str(top)) diff --git a/features/install.feature b/features/install.feature new file mode 100644 index 0000000000..d1cbfb5b79 --- /dev/null +++ b/features/install.feature @@ -0,0 +1,35 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +Feature: Install target in new project + + Scenario: Execute install target in new project + Given I have prepared a config file with example code + And I have run a non-interactive kedro new + When I execute the kedro command "install" + Then I should get a successful exit code diff --git a/features/io_core.feature b/features/io_core.feature new file mode 100644 index 0000000000..0fad5a3e59 --- /dev/null +++ b/features/io_core.feature @@ -0,0 +1,76 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + + +Feature: Kedro IO DataSet features + + Scenario: Create a custom data set + Given I have defined a custom CSV data set with both load and save methods + When I load the data set + Then CSV file content should be returned + + Scenario: Create a missing custom data set + Given I have pointed a CSV data set to a missing file + When I load the data set + Then an error should be raised + + Scenario: Save data + Given I have defined a custom CSV data set with both load and save methods + When I save a data frame + Then the CSV file contents should be updated with the contents of the data frame + + Scenario: Prevent saving to data set without save function + Given I have defined a custom CSV data set without providing a save method + When I save a data frame + Then an exception should be thrown + + Scenario: Saving and loading + Given I have defined a custom CSV data set with both load and save methods to the same file + When I save a data frame and then load it + Then the value I originally saved should be returned + + Scenario: Saving and loading with CSVLocalDataSet + Given I have instantiated a CSVLocalDataSet + When I save a data frame and then load it + Then the value I originally saved should be returned + + Scenario: Saving and loading with CSVLocalDataSet + Given I have instantiated a CSVLocalDataSet with tabs as separator + When I save a data frame and then load it + Then the value I originally saved should be returned + + Scenario: Loading with MemoryDataSet + Given I have instatiated a MemoryDataSet with data + When I load the data from the MemoryDataSet + Then the original data should be returned + + Scenario: Saving with MemoryDataSet + Given I have instatiated a MemoryDataSet with data + And I have saved a new data frame + When I load the data from the MemoryDataSet + Then the new data frame should be returned diff --git a/features/io_parquet_local.feature b/features/io_parquet_local.feature new file mode 100644 index 0000000000..55f38f5186 --- /dev/null +++ b/features/io_parquet_local.feature @@ -0,0 +1,35 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + + +Feature: Local Parquet data set IO scenarios + + Scenario: Save and load a Parquet file + Given I have defined data in a pandas DataFrame + When I write a given data to a Parquet file + Then the data should be loaded without any alteration diff --git a/features/io_sql.feature b/features/io_sql.feature new file mode 100644 index 0000000000..5059fb23c6 --- /dev/null +++ b/features/io_sql.feature @@ -0,0 +1,45 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + + +Feature: Kedro IO SQLTableDataSet and SQLQueryDataSet features + + Scenario: Read from SQL data set + Given I have defined an SQL data set with tables A and B + When I load from table A + Then I should get the expected number of rows back + + Scenario: Write to SQL data set + Given I have defined an SQL data set with tables A and B + When I save to table B + Then I should get the written data back + + Scenario: Read from SQL query data set + Given I have defined an SQL query data set with filtered query to table C + When I query table C + Then I should get the filtered rows back diff --git a/features/ipython.feature b/features/ipython.feature new file mode 100644 index 0000000000..6ebc7e5d4b --- /dev/null +++ b/features/ipython.feature @@ -0,0 +1,40 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +Feature: IPython target in new project + + Background: + Given I have prepared a config file with example code + And I have run a non-interactive kedro new + And I have executed the kedro command "install" + + Scenario: Execute ipython target + When I execute the kedro command "ipython" + Then I should get a message including "An enhanced Interactive Python" + And I should get a message including "INFO - ** Kedro project project-dummy" + And I should get a message including "INFO - Defined global variables proj_dir, proj_name, conf and io" diff --git a/features/jupyter.feature b/features/jupyter.feature new file mode 100644 index 0000000000..2222218cce --- /dev/null +++ b/features/jupyter.feature @@ -0,0 +1,43 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. +# + +Feature: Jupyter targets in new project + + Background: + Given I have prepared a config file with example code + And I have run a non-interactive kedro new + And I have executed the kedro command "install" + + Scenario: Execute jupyter-notebook target + When I execute the kedro jupyter command "jupyter notebook" + Then jupyter notebook should run on port 8888 + + Scenario: Execute jupyter-lab target + When I execute the kedro jupyter command "jupyter lab" + Then Jupyter Lab should run on port 8888 diff --git a/features/new_project.feature b/features/new_project.feature new file mode 100644 index 0000000000..d4a7352dd9 --- /dev/null +++ b/features/new_project.feature @@ -0,0 +1,42 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + + +Feature: New Kedro project + + Scenario: Create a new kedro project without example code + Given I have prepared a config file without example code + When I run a non-interactive kedro new + Then the expected project directories and files should be created + And the pipeline should contain no nodes + + Scenario: Create a new kedro project with example code + Given I have prepared a config file with example code + When I run a non-interactive kedro new + Then the expected project directories and files should be created + And the pipeline should contain nodes diff --git a/features/package.feature b/features/package.feature new file mode 100644 index 0000000000..a6710538c0 --- /dev/null +++ b/features/package.feature @@ -0,0 +1,39 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +Feature: Package target in new project + + Background: + Given I have prepared a config file with example code + And I have run a non-interactive kedro new + And I have executed the kedro command "install" + + Scenario: Package new project + When I execute the kedro command "package" + Then I should get a successful exit code + And the relevant packages should be created diff --git a/features/pipeline.feature b/features/pipeline.feature new file mode 100644 index 0000000000..95668486ce --- /dev/null +++ b/features/pipeline.feature @@ -0,0 +1,46 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + + +Feature: Pipelines that can be run from a library or a template project + + Background: + Given I have added external packages "matplotlib" to project requirements + And I have included a pipeline definition in a project template + And I have defined an io catalog containing ["A", "B", "C", "D"] + + Scenario: Pipeline running from a template with packages not installed + When the template pipeline is run + Then it should fail with an error message including "No module named 'matplotlib'" + + Scenario: Pipeline running from a template with packages installed + Given I have executed the kedro command "install" + When the template pipeline is run + Then it should successfully produce the results + + diff --git a/features/run.feature b/features/run.feature new file mode 100644 index 0000000000..f4e954b1dc --- /dev/null +++ b/features/run.feature @@ -0,0 +1,84 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + + +Feature: Run Project + + + Scenario: Run default python entry point with example code + + Local environment should be used by default when no env option is specified. + + Given I have prepared a config file with example code + And I have run a non-interactive kedro new + When I execute the kedro command "run" + Then I should get a successful exit code + And the console log should show that 4 nodes were run + + Scenario: Run default python entry point without example code + Given I have prepared a config file without example code + And I have run a non-interactive kedro new + When I execute the kedro command "run" + Then I should get an error exit code + And "local" environment was used + + Scenario: Run python entry point in a specific environment + Given I have prepared a config file with example code + And I have run a non-interactive kedro new + And I have created new environment "test" + When I execute the kedro command "run --env=test" + Then I should get a successful exit code + And "test" environment was used + + Scenario: Run python entry point in an invalid environment + Given I have prepared a config file with example code + And I have run a non-interactive kedro new + When I execute the kedro command "run --env=nonexistent" + Then I should get an error exit code + And I should get an error message including "Given configuration path either does not exist or is not a valid directory:" + + Scenario: Run python entry point using a parallel flag + Given I have prepared a config file with example code + And I have run a non-interactive kedro new + When I execute the kedro command "run --parallel" + Then I should get a successful exit code + And I should get a message including "parallel" + + Scenario: Run python entry point using a runner flag + Given I have prepared a config file with example code + And I have run a non-interactive kedro new + When I execute the kedro command "run --runner=ParallelRunner" + Then I should get a successful exit code + And I should get a message including "parallel" + + Scenario: Run python entry point using both parallel and runner flags + Given I have prepared a config file with example code + And I have run a non-interactive kedro new + When I execute the kedro command "run --parallel --runner=SequentialRunner" + Then I should get an error exit code + And I should get an error message including "Both --parallel and --runner options cannot be used together. Please use either --parallel or --runner." diff --git a/features/steps/__init__.py b/features/steps/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/features/steps/cli_steps.py b/features/steps/cli_steps.py new file mode 100644 index 0000000000..8009aaac5a --- /dev/null +++ b/features/steps/cli_steps.py @@ -0,0 +1,563 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +"""Behave step definitions for the cli_scenarios feature.""" + +import itertools +import json +import shlex +import shutil +from time import time + +import behave +import requests +import yaml +from behave import given, then, when + +import features.steps.util as util +import kedro +from features.steps.sh_run import ChildTerminatingPopen, check_run, run + +OK_EXIT_CODE = 0 + + +TEST_JUPYTER_NB_SOURCE_ORG = r""" +{ + "cells": [ + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "print(\"Hello World!\")" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.5.6" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} +""" + +# The difference +TEST_JUPYTER_NB_SOURCE_AFTER_EXEC = r""" +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Hello World!\n" + ] + } + ], + "source": [ + "print(\"Hello World!\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.5.6" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} +""" + + +behave.register_type(CSV=util.parse_csv) + + +def _check_service_up(context: behave.runner.Context, url: str, string: str): + """Check that a service is running and responding appropriately. + + Args: + context: Test context. + url: Url that is to be read. + string: The string to be checked. + + """ + response = requests.get(url, timeout=1.0) + response.raise_for_status() + + data = response.text + assert string in data + assert context.result.poll() is None + + +def _create_config_file(context, include_example): + context.config_file = context.temp_dir / "config.yml" + context.project_name = "project-dummy" + root_project_dir = context.temp_dir / context.project_name + context.root_project_dir = root_project_dir + config = { + "project_name": context.project_name, + "repo_name": context.project_name, + "output_dir": str(context.temp_dir), + "python_package": context.project_name.replace("-", "_"), + "include_example": include_example, + } + with context.config_file.open("w") as config_file: + yaml.dump(config, config_file, default_flow_style=False) + + +@given("I have prepared a config file without example code") +def create_config_file_no_example(context): + """Behave step to create a temporary config file + (given the existing temp directory) and store it in the context. + """ + _create_config_file(context, include_example=False) + + +@given("I have prepared a config file with example code") +def create_config_file_with_example(context): + """Behave step to create a temporary config file + (given the existing temp directory) and store it in the context. + """ + _create_config_file(context, include_example=True) + + +@given('I have executed the kedro command "{command}"') +def exec_make_target_checked(context, command): + """Execute Makefile target and check the status.""" + make_cmd = [context.kedro] + command.split() + + res = run(make_cmd, env=context.env, cwd=str(context.root_project_dir)) + + if res.returncode != OK_EXIT_CODE: + print(res.stdout) + print(res.stderr) + assert False + + +@given('I have created new environment "{}"') +def create_new_env(context, env_name): + env_path = context.root_project_dir / "conf" / env_name + env_path.mkdir() + + for config_name in ("catalog", "parameters", "logging", "credentials"): + path = env_path / "{}.yml".format(config_name) + with path.open("w") as config_file: + yaml.dump({}, config_file, default_flow_style=False) + + +@given("the example test has been set to fail") +def modify_example_test_to_fail(context): + """Modify test_run.py to fail.""" + path_to_example_test = context.root_project_dir / "src" / "tests" / "test_run.py" + test_run_contents = path_to_example_test.read_text("utf-8") + failed_test_str = test_run_contents.replace( + "test_create_catalog():", "test_create_catalog():\n assert False" + ) + path_to_example_test.write_text(failed_test_str) + + +@given('the python package "{package}" has been uninstalled') +def uninstall_package_via_pip(context, package): + """Uninstall a python package using pip.""" + run([context.pip, "uninstall", "-y", package], env=context.env) + + +@given("I have initialized a git repository") +def init_git_repo(context): + """Init git repo""" + with util.chdir(context.root_project_dir): + check_run("git init") + check_run("git config user.name 'Tester'") + check_run("git config user.email 'tester.kedro@quantumblack.com'") + + +@given("I have added a test jupyter notebook") +def add_test_jupyter_nb(context): + """Create a test jupyter notebook using TEST_JUPYTER_NB_SOURCE_ORG.""" + with open( + str(context.root_project_dir / "notebooks" / "hello_world.ipynb"), "wt" + ) as test_nb_fh: + test_nb_fh.write(TEST_JUPYTER_NB_SOURCE_ORG) + + +@given("I have run a non-interactive kedro new") +@when("I run a non-interactive kedro new") +def create_project_from_config_file(context): + """Behave step to run kedro new given the config I previously created. + """ + res = run([context.kedro, "new", "-c", str(context.config_file)], env=context.env) + assert res.returncode == OK_EXIT_CODE + + +@given("I have added the project directory to staging") +@when("I add the project directory to staging") +def add_proj_dir_to_staging(context): + """Add root project dir to staging""" + with util.chdir(context.root_project_dir): + check_run("git add .") + + +@given("I have committed changes to git") +@when("I commit changes to git") +def commit_changes_to_git(context): + """Commit changes to git""" + with util.chdir(context.root_project_dir): + check_run("git commit -m 'Change {time}'".format(time=time())) + + +@when('I execute the kedro command "{command}"') +def exec_make_target(context, command): + """Execute Makefile target.""" + split_command = command.split() + make_cmd = [context.kedro] + split_command + context.result = run(make_cmd, env=context.env, cwd=str(context.root_project_dir)) + + +@when('with tags {tags:CSV}, I execute the kedro command "{cmd}"') +def exec_kedro_run_with_tag(context, cmd, tags): + """Execute `kedro run` with tags""" + kedro_args = shlex.split(cmd) + context.logfile_count = util.get_logline_count( + util.get_logfile_path(context.root_project_dir) + ) + + tag_list = [["--tag", t] for t in tags] + tag_args = list(itertools.chain.from_iterable(tag_list)) + run_cmd = [context.kedro] + kedro_args + tag_args + + context.result = run(run_cmd, env=context.env, cwd=str(context.root_project_dir)) + + +@when("I ask the CLI for a version") +def get_kedro_version(context): + """Behave step to run `kedro -V`.""" + context.version_str = run([context.kedro, "-V"], env=context.env).stdout + assert context.version_str # check non-empty + + +@when("I ask the CLI for a version using python -m") +def get_kedro_version_python(context): + """Behave step to run `python -m kedro -V`.""" + cmd = [context.python, "-m", "kedro", "-V"] + context.version_str = run(cmd, env=context.env).stdout + assert context.version_str # check non-empty + + +@when('I execute the kedro jupyter command "{command}"') +def exec_notebook(context, command): + """Execute Makefile target.""" + split_command = command.split() + make_cmd = [context.kedro] + split_command + + # Jupyter notebook forks a child process from a parent process, and + # only kills the parent process when it is terminated + context.result = ChildTerminatingPopen( + make_cmd + ["--no-browser"], env=context.env, cwd=str(context.root_project_dir) + ) + + +@when("I execute the test jupyter notebook and save changes") +def simulate_nb_execution(context): + """Change test jupyter notebook to TEST_JUPYTER_NB_SOURCE_AFTER_EXEC + simulate that it was executed and output was saved. + """ + with open( + str(context.root_project_dir / "notebooks" / "hello_world.ipynb"), "wt" + ) as test_nb_fh: + test_nb_fh.write(TEST_JUPYTER_NB_SOURCE_AFTER_EXEC) + + +@when("I remove the notebooks directory") +def delete_notebooks_dir(context): + """Delete notebooks directory in project""" + with util.chdir(context.root_project_dir): + shutil.rmtree("notebooks/") + + +@when("I perform a hard git reset to restore the project to last commit") +def do_git_reset_hard(context): + """Perform a hard git reset""" + with util.chdir(context.root_project_dir): + check_run("git reset --hard HEAD") + + +@then("CLI should print the version in an expected format") +def check_kedro_version(context): + """Behave step to check validity of the kedro version.""" + version_no = context.version_str.split()[-1] + assert version_no == kedro.__version__ + + +@then("the expected project directories and files should be created") +def check_created_project_structure(context): + """Behave step to check the subdirectories created by kedro new.""" + + def is_created(name): + """Check if path exists.""" + return (context.root_project_dir / name).exists() + + for path in ("README.md", "src", "data"): + assert is_created(path) + + +@then("the pipeline should contain no nodes") +def check_empty_pipeline_exists(context): + """Check if the created `pipeline.py` contains no nodes""" + pipeline_file = ( + context.root_project_dir + / "src" + / context.project_name.replace("-", "_") + / "pipeline.py" + ) + assert "pipeline = Pipeline([])" in pipeline_file.read_text("utf-8") + + +@then("the pipeline should contain nodes") +def check_pipeline_not_empty(context): + """Check if the created `pipeline.py` contains nodes""" + pipeline_file = ( + context.root_project_dir + / "src" + / context.project_name.replace("-", "_") + / "pipeline.py" + ) + assert "pipeline = Pipeline([])" not in pipeline_file.read_text("utf-8") + + +@then("the console log should show that {number} nodes were run") +def check_one_node_run(context, number): + expected_log_line = "Completed {number} out of {number} tasks".format(number=number) + assert expected_log_line in context.result.stdout + + +@then('the console log should show that "{node}" was run') +def check_correct_nodes_run(context, node): + expected_log_line = "Running node: {node}".format(node=node) + assert expected_log_line in context.result.stdout + + +@then("I should get a successful exit code") +def check_status_code(context): + if context.result.returncode != OK_EXIT_CODE: + print(context.result.stdout) + print(context.result.stderr) + assert False, "Expected exit code {} but got {}".format( + OK_EXIT_CODE, context.result.returncode + ) + + +@then("I should get an error exit code") +def check_failed_status_code(context): + if context.result.returncode == OK_EXIT_CODE: + print(context.result.stdout) + print(context.result.stderr) + assert False, "Expected exit code other than {} but got {}".format( + OK_EXIT_CODE, context.result.returncode + ) + + +@then("the relevant packages should be created") +def check_python_packages_created(context): + """Check that egg and whl files exist in dist dir.""" + dist_dir = context.root_project_dir / "src" / "dist" + egg_file = dist_dir.glob("*.egg") + whl_file = dist_dir.glob("*.whl") + assert any(egg_file) + assert any(whl_file) + + +@then('"{env}" environment was used') +def check_environment_used(context, env): + env_path = context.root_project_dir / "conf" / env + assert env_path.exists(), 'Environment "{}" does not exist'.format(env) + + if isinstance(context.result, ChildTerminatingPopen): + stdout = context.result.stdout.read().decode() + context.result.terminate() + else: + stdout = context.result.stdout + + for config_name in ("catalog", "parameters", "credentials", "logging"): + path = env_path.joinpath("{}.yml".format(config_name)) + if path.exists(): + msg = "Loading: {}".format(str(path.resolve())) + assert msg in stdout, ( + "Expected the following message segment to be printed on stdout: " + "{exp_msg},\nbut got {actual_msg}".format( + exp_msg=msg, actual_msg=stdout + ) + ) + + +@then('I should get a message including "{msg}"') +def check_message_printed(context, msg): + """Check that specified message is printed to stdout (can be a segment).""" + + if isinstance(context.result, ChildTerminatingPopen): + stdout = context.result.stdout.read().decode() + context.result.terminate() + else: + stdout = context.result.stdout + + assert msg in stdout, ( + "Expected the following message segment to be printed on stdout: " + "{exp_msg},\nbut got {actual_msg}".format(exp_msg=msg, actual_msg=stdout) + ) + + +@then('I should get an error message including "{msg}"') +def check_error_message_printed(context, msg): + """Check that specified message is printed to stderr (can be a segment).""" + + if isinstance(context.result, ChildTerminatingPopen): + stderr = context.result.stderr.read().decode() + context.result.terminate() + else: + stderr = context.result.stderr + + assert msg in stderr, ( + "Expected the following message segment to be printed on stderr: " + "{exp_msg},\nbut got {actual_msg}".format(exp_msg=msg, actual_msg=stderr) + ) + + +@then("there should be an additional cell in the jupyter notebook") +def check_additional_cell_added(context): + """Check that an addiitonal cell has been added compared to notebook + coded by TEST_JUPYTER_NB_SOURCE_ORG. + """ + with open( + str(context.root_project_dir / "notebooks" / "hello_world.ipynb") + ) as test_nb_fh: + context.nb_data = json.load(test_nb_fh) + assert len(context.nb_data["cells"]) == 2 + + +@then("the output should be empty in all the cells in the jupyter notebook") +def check_output_cells_empty(context): + """Check that all cells contain empty output array.""" + for cell in context.nb_data["cells"]: + assert cell["outputs"] == [] + + +@then("jupyter notebook should run on port {port}") +def check_jupyter_nb_proc_on_port(context: behave.runner.Context, port: int): + """Check that jupyter notebook service is running on specified port. + + Args: + context: Test context + port: Port to check + + """ + url = "http://localhost:%d" % int(port) + try: + util.wait_for( + func=_check_service_up, + context=context, + url=url, + string="Jupyter Notebook", + timeout_=15, + print_error=True, + ) + finally: + context.result.terminate() + + +@then("Jupyter Lab should run on port {port}") +def check_jupyter_lab_proc_on_port(context: behave.runner.Context, port: int): + """Check that jupyter lab service is running on specified port. + + Args: + context: Test context + port: Port to check + + """ + url = "http://localhost:%d" % int(port) + try: + util.wait_for( + func=_check_service_up, + context=context, + url=url, + string='<a href="/lab"', + print_error=True, + ) + finally: + context.result.terminate() + + +@then("docs should be generated") +def check_docs_generated(context): + """Check that new project docs are generated.""" + index_html = ( + context.root_project_dir / "docs" / "build" / "html" / "index.html" + ).read_text("utf-8") + project_repo = context.project_name.replace("-", "_") + assert "Welcome to project’s %s API docs!" % project_repo in index_html diff --git a/features/steps/e2e_test_catalog.yml b/features/steps/e2e_test_catalog.yml new file mode 100644 index 0000000000..f4cde46882 --- /dev/null +++ b/features/steps/e2e_test_catalog.yml @@ -0,0 +1,20 @@ +A: + type: CSVLocalDataSet + filepath: data/01_raw/input_1.csv + save_args: + index: False +C: + type: CSVLocalDataSet + filepath: data/01_raw/input_2.csv + save_args: + index: False +E: + type: CSVLocalDataSet + filepath: data/02_intermediate/output_1.csv + save_args: + index: False +F: + type: CSVLocalDataSet + filepath: data/02_intermediate/output_2.csv + save_args: + index: False diff --git a/features/steps/io_core_steps.py b/features/steps/io_core_steps.py new file mode 100644 index 0000000000..2d9f51e475 --- /dev/null +++ b/features/steps/io_core_steps.py @@ -0,0 +1,175 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +"""Behave step definitions for the io core features.""" + +import pandas as pd +from behave import given, then, when + +from features.steps.util import ( + create_sample_csv, + create_temp_csv, + get_sample_data_frame, +) +from kedro.io import CSVLocalDataSet, DataSetError, LambdaDataSet, MemoryDataSet + + +@given("I have defined a custom CSV data set with both load and save methods") +def define_dataset_with_load_save(context): + context.read_csv_path = create_sample_csv() + context.write_csv_path = create_temp_csv() + context.csv_data_set = LambdaDataSet( + load=lambda: pd.read_csv(context.read_csv_path), + save=lambda df: df.to_csv(context.write_csv_path), + ) + + +@given( + "I have defined a custom CSV data set with both load and save methods " + "to the same file" +) +def csv_dataset_same_file(context): + context.read_csv_path = create_sample_csv() + context.write_csv_path = context.read_csv_path + context.csv_data_set = LambdaDataSet( + load=lambda: pd.read_csv(context.read_csv_path), + save=lambda df: df.to_csv(context.write_csv_path, index=False), + ) + + +@given("I have defined a custom CSV data set without providing a save method") +def data_set_with_no_save(context): + context.csv_data_set = LambdaDataSet(load=None, save=None) + + +@given("I have instantiated a CSVLocalDataSet") +def prepare_csv_data(context): + context.read_csv_path = create_sample_csv() + context.write_csv_path = create_temp_csv() + context.csv_data_set = CSVLocalDataSet(filepath=context.read_csv_path) + + +@given("I have instantiated a CSVLocalDataSet with tabs as separator") +def prepare_csv_data_with_tabs(context): + context.read_csv_path = create_sample_csv() + context.write_csv_path = create_temp_csv() + context.csv_data_set = CSVLocalDataSet( + filepath=context.read_csv_path, + load_args={"sep": "\t"}, + save_args={"index": False, "sep": "\t"}, + ) + + +@given("I have instatiated a MemoryDataSet with data") +def create_memory_data_frame(context): + context.test_data_frame = get_sample_data_frame() + context.memory_data_set = MemoryDataSet(data=context.test_data_frame) + + +@given("I have pointed a CSV data set to a missing file") +def prepare_missing_csv(context): + sample_csv = "/var/missing_csv_file.csv" + context.csv_data_set = LambdaDataSet( + load=lambda: pd.read_csv(sample_csv), save=None + ) + + +@given("I have saved a new data frame") +def save_new_data_to_data_set(context): + context.new_data_frame = pd.DataFrame( + {"col1": [1, 2], "col2": [3, 4], "col3": [5, 6]} + ) + context.memory_data_set.save(data=context.new_data_frame) + + +@when("I load the data set") +def loading_from_source(context): + """Loads from the CSV.""" + try: + context.result = context.csv_data_set.load() + except DataSetError as error: + context.data_set_error = error + + +@when("I load the data from the MemoryDataSet") +def load_data_from_memory_data_set(context): + context.data_from_memory_data_set = context.memory_data_set.load() + + +@when("I save a data frame") +def save_data_frame(context): + data_frame = get_sample_data_frame() + try: + context.csv_data_set.save(data_frame) + except DataSetError: + context.data_set_error_raised = True + + +@when("I save a data frame and then load it") +def save_and_load_content(context): + data_frame = get_sample_data_frame() + context.csv_data_set.save(data_frame) + context.reloaded_df = context.csv_data_set.load() + + +@then("CSV file content should be returned") +def csv_content_returned(context): + assert context.result is not None + assert len(context.result) == 2 + + +@then("the CSV file contents should be updated with the contents of the data frame") +def data_frame_content_saved(context): + data_frame = pd.read_csv(context.write_csv_path) + assert 5 in data_frame["col2"].values + + +@then("the value I originally saved should be returned") +def reloaded_content_is_returned(context): + data_frame = get_sample_data_frame() + assert context.reloaded_df.equals(data_frame) + + +@then("the original data should be returned") +def original_data_is_returned(context): + assert context.data_from_memory_data_set.equals(context.test_data_frame) + + +@then("the new data frame should be returned") +def saved_data_is_returned(context): + assert context.data_from_memory_data_set.equals(context.new_data_frame) + + +@then("an error should be raised") +def error_reading_missing_csv(context): + assert context.data_set_error is not None + + +@then("an exception should be thrown") +def exception_is_thrown(context): + assert context.data_set_error_raised diff --git a/features/steps/io_parquet_steps.py b/features/steps/io_parquet_steps.py new file mode 100644 index 0000000000..01aba6a9f1 --- /dev/null +++ b/features/steps/io_parquet_steps.py @@ -0,0 +1,65 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +"""Behave step definitions for Parquet load/save functionality +in the io_scenarios feature. +""" + +import pandas as pd +from behave import given, then, when +from pandas.util.testing import assert_frame_equal + +from kedro.io import ParquetLocalDataSet + + +@given("I have defined data in a pandas DataFrame") +def provide_df(context): + """Adds a dummy dataframe to the context.""" + people = pd.DataFrame( + {"Name": ["Alex", "Bob", "Clarke", "Dave"], "Age": [31, 12, 65, 29]} + ) + context.pandas_df = people + + +@when("I write a given data to a Parquet file") +def write_parquet_locally(context): + """Writes DataFrame as Parquet in a temporary directory.""" + file_name = "dummy.parq" + context.full_path = context.temp_dir / file_name + context.data_set = ParquetLocalDataSet(str(context.full_path)) + context.data_set.save(context.pandas_df) + assert context.full_path.exists() + + +@then("the data should be loaded without any alteration") +def parquet_content_returned(context): + """Load from data set, compare with original DataFrame + and delete temp directory. + """ + loaded_parquet = context.data_set.load() + assert_frame_equal(loaded_parquet, context.pandas_df) diff --git a/features/steps/io_sql_steps.py b/features/steps/io_sql_steps.py new file mode 100644 index 0000000000..19730f90db --- /dev/null +++ b/features/steps/io_sql_steps.py @@ -0,0 +1,124 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. +"""Behave step definitions for the io core features.""" + +from pathlib import Path + +import pandas as pd +from behave import given, then, when + +from kedro.io import SQLQueryDataSet, SQLTableDataSet + +TABLE_A = "A" +TABLE_B = "B" +TABLE_C = "C" + + +def _get_sample_data(): + data = {"id": [1, 2], "name": ["me", "you"]} + return pd.DataFrame(data) + + +def _get_test_sql_con(): + return "sqlite:///kedro.db" + + +def _clear_db_(): + try: + Path("kedro.db").unlink() + except FileNotFoundError: + pass + + +def _prepare_read_samples(): + _clear_db_() + data_set = SQLTableDataSet( + table_name=TABLE_A, credentials=dict(con=_get_test_sql_con()) + ) + data_set.save(_get_sample_data()) + + +@given("I have defined an SQL data set with tables A and B") +def prepare_sql_data(context): + _prepare_read_samples() + context.data_set_a = SQLTableDataSet( + table_name=TABLE_A, credentials=dict(con=_get_test_sql_con()) + ) + context.data_set_b = SQLTableDataSet( + table_name=TABLE_B, credentials=dict(con=_get_test_sql_con()) + ) + + +@given("I have defined an SQL query data set with filtered query to table C") +def prepare_sql_query(context): + sample_data = _get_sample_data() + table_data_set = SQLTableDataSet( + table_name=TABLE_C, credentials=dict(con=_get_test_sql_con()) + ) + + table_data_set.save(sample_data) + sql = "SELECT * FROM C WHERE name='me'" + context.query_data_set = SQLQueryDataSet( + sql=sql, credentials=dict(con=_get_test_sql_con()) + ) + + +@when("I load from table A") +def read_from_sql_data_set(context): + context.result = context.data_set_a.load() + + +@when("I save to table B") +def write_to_sql_data_set(context): + context.data_set_b.save(data=_get_sample_data()) + + +@when("I query table C") +def read_query_data_set(context): + context.filtered_query_data = context.query_data_set.load() + + +@then("I should get the expected number of rows back") +def expected_number_of_rows(context): + assert len(context.result) == 2 + + +@then("I should get the filtered rows back") +def expected_number_filtered_rows(context): + assert len(context.filtered_query_data) == 1 + + +@then("I should get the written data back") +def read_written_data(context): + # pylint: disable=unused-argument + + data_set = SQLTableDataSet( + table_name=TABLE_B, credentials=dict(con=_get_test_sql_con()) + ) + result = data_set.load() + assert result.equals(_get_sample_data()) diff --git a/features/steps/pipeline_steps.py b/features/steps/pipeline_steps.py new file mode 100644 index 0000000000..7de0511abc --- /dev/null +++ b/features/steps/pipeline_steps.py @@ -0,0 +1,270 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +"""Behave step definitions for running pipelines end to end.""" + +import logging +import shutil +import sys +from io import StringIO +from pathlib import Path +from shutil import copyfile + +import behave +import pandas as pd +import yaml +from behave import given, then, when +from pandas.util.testing import assert_frame_equal + +import features.steps.util as util +from features.steps.sh_run import run +from kedro.io import DataCatalog, MemoryDataSet + +LOG_EVIDENCE_PHRASE = "Running a risky operation" +INTENTIONAL_FAILURE = "Something intentionally went wrong." +INDENT4 = " " * 4 +INDENTED_NEWLINE = "\n" + INDENT4 + + +behave.register_type(CSV=util.parse_csv) + + +def identity(item): + """Function intended for identity node.""" + return item + + +def concatenate(item1, item2): + """Function intended for concatinating two items.""" + return item1 + item2 + + +def sum_dfs(dataframe1, dataframe2): + """pd.DataFrame Sum method that outputs a warning in the logs.""" + logging.getLogger("kedro.runner").warning(LOG_EVIDENCE_PHRASE) + return dataframe1 + dataframe2.values + + +def failing_function(item): + """Fail with an exception.""" + raise RuntimeError(INTENTIONAL_FAILURE) + + +def _set_up_temp_logging(context): + context.log_data = StringIO() + handler = logging.StreamHandler(context.log_data) + formatter = logging.Formatter("%(asctime)s %(levelname)s %(message)s") + handler.setFormatter(formatter) + logger = logging.getLogger("kedro.runner") + logger.setLevel(logging.INFO) + logger.handlers = [] + logger.addHandler(handler) + + +def _setup_template_files(context): + curr_dir = Path(__file__).parent + pipeline_file = ( + context.root_project_dir + / "src" + / context.project_name.replace("-", "_") + / "pipeline.py" + ) + + catalog_file = context.root_project_dir / "conf" / "base" / "catalog.yml" + + if pipeline_file.exists(): + pipeline_file.unlink() + copyfile(str(curr_dir / "pipeline_template.py"), str(pipeline_file)) + + if catalog_file.exists(): + catalog_file.unlink() + copyfile(str(curr_dir / "e2e_test_catalog.yml"), str(catalog_file)) + + with catalog_file.open("r") as cat_file: + catalog = yaml.load(cat_file) + + context.output_file1 = context.root_project_dir / catalog["E"]["filepath"] + context.output_file2 = context.root_project_dir / catalog["F"]["filepath"] + + df_a = pd.DataFrame({"col1": [1, 2], "col2": [3, 4], "col3": [5, 6]}) + df_c = pd.DataFrame({"col1": [9, 8], "col2": [7, 6], "col3": [5, 4]}) + + df_a.to_csv(context.root_project_dir / catalog["A"]["filepath"], index=False) + df_c.to_csv(context.root_project_dir / catalog["C"]["filepath"], index=False) + + _add_external_packages(context) + + +def _add_external_packages(context): + external_packages = getattr(context, "external_packages", []) + + if not external_packages: + return + + pipeline_file = ( + context.root_project_dir + / "src" + / context.project_name.replace("-", "_") + / "pipeline.py" + ) + with pipeline_file.open("at", encoding="utf-8") as _pf: + _imports = "\n".join("import {}".format(p) for p in external_packages) + _pf.write("\n{0}\n".format(_imports)) + + requirements_file = context.root_project_dir / "src" / "requirements.txt" + with requirements_file.open("at", encoding="utf-8") as _reqs: + _reqs.write("\n".join(external_packages) + "\n") + + +def _create_template_project(context): + # Sets the following fields on the context: + # - project_name (the simple project name == project-pipeline) + # - temp_dir (the directory containing the created project) + # - root_project_dir (the full path to the created project) + # - include_example (the project contains code example) + + context.project_name = "project-pipeline" + context.config_file = context.temp_dir / "config" + + root_project_dir = context.temp_dir / context.project_name + context.root_project_dir = root_project_dir + + context.include_example = True + + config = { + "project_name": context.project_name, + "repo_name": context.project_name, + "output_dir": str(context.temp_dir), + "python_package": context.project_name.replace("-", "_"), + "include_example": context.include_example, + } + + with context.config_file.open("w") as config_file: + yaml.dump(config, config_file, default_flow_style=False) + + res = run([context.kedro, "new", "-c", str(context.config_file)], env=context.env) + assert res.returncode == 0 + + _setup_template_files(context) + + +def resolve_free_inputs(context): + catalog = context.catalog if hasattr(context, "catalog") else None + feed_dict = context.feed_dict if hasattr(context, "feed_dict") else None + return catalog, feed_dict + + +@given( + "I have defined an io catalog containing " + '["{key1}", "{key2}", "{key3}", "{key4}"]' +) +def set_catalog(context, key1, key2, key3, key4): + ds1 = pd.DataFrame({"col1": [1, 2], "col2": [3, 4], "col3": [5, 6]}) + ds2 = pd.DataFrame({"col1": [9, 8], "col2": [7, 6], "col3": [5, 4]}) + context.catalog = DataCatalog( + { + key1: MemoryDataSet(ds1), + key2: MemoryDataSet(), + key3: MemoryDataSet(ds2), + key4: MemoryDataSet(), + } + ) + + +@given('I have added external packages "{external_packages}" to project requirements') +def add_external_packages(context, external_packages): + context.external_packages = [p.strip() for p in external_packages.split(",")] + + +@given("I have included a pipeline definition in a project template") +def create_template_with_pipeline(context): + _create_template_project(context) + + +@given('I have defined a node "{node_name}" tagged with {tags:CSV}') +def node_tagged_with(context, node_name, tags): + """ + Check tagging in `pipeline_template.py` is consistent with tagging + descriptions in background steps + """ + sys.path.append( + str(context.root_project_dir / "src" / context.project_name.replace("-", "_")) + ) + import pipeline # pylint: disable=import-error + + context.project_pipeline = pipeline.create_pipeline() + node_objs = [n for n in context.project_pipeline.nodes if n.name == node_name] + assert node_objs + assert set(tags) == node_objs[0].tags + + +@given('I have set the project log level to "{log_level}"') +def change_log_level_proj(context, log_level): + logging_yml = context.root_project_dir / "conf" / "base" / "logging.yml" + with logging_yml.open() as file_handle: + logging_conf = yaml.load(file_handle) + + logging_conf["handlers"]["console"]["level"] = log_level + logging_conf["loggers"]["kedro.pipeline"]["level"] = log_level + logging_conf["root"]["level"] = log_level + + with logging_yml.open("w") as file_handle: + yaml.dump(logging_conf, file_handle) + + +@when("the template pipeline is run") +def run_template_pipeline(context): + run_cmd = [context.kedro, "run"] + context.run_result = run( + run_cmd, env=context.env, cwd=str(context.root_project_dir) + ) + if context.run_result.returncode == 0: + context.df_e = pd.read_csv(context.output_file1) + context.df_f = pd.read_csv(context.output_file2) + shutil.rmtree(str(context.root_project_dir)) + + +@then("it should successfully produce the results") +def check_template_run_success(context): + if context.run_result.returncode: + print(context.run_result.stdout) + print(context.run_result.stderr) + assert False + assert_frame_equal(context.df_e, context.df_f) + assert context.df_e.values.tolist() == [[10, 10, 10], [10, 10, 10]] + assert context.df_f.values.tolist() == [[10, 10, 10], [10, 10, 10]] + + +@then('it should fail with an error message including "{msg}"') +def check_template_run_fail(context, msg): + assert context.run_result.returncode > 0 + try: + assert msg in context.run_result.stderr + except AssertionError: + print(context.run_result.stderr) + raise diff --git a/features/steps/pipeline_template.py b/features/steps/pipeline_template.py new file mode 100644 index 0000000000..000a16877a --- /dev/null +++ b/features/steps/pipeline_template.py @@ -0,0 +1,90 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +import pandas as pd + +from kedro.pipeline import Pipeline, node + + +def identity(item): + return item + + +def sum_dfs(dataframe1: pd.DataFrame, dataframe2: pd.DataFrame): + return dataframe1 + dataframe2.values + + +def create_pipeline(*tags: str): + example_pipeline = Pipeline( + [ + node( + lambda x: x, + "A", + "B", + name="node_1", + tags=[ + "apple", + "orange", + "banana", + "lemon", + "grape", + "coconut", + "fresh strawberries!", + ], + ), + node( + sum_dfs, + ["B", "C"], + "D", + name="node_2", + tags=["apple", "orange", "lemon"], + ), + node( + identity, + "D", + "E", + name="node_3", + tags=["apple", "orange", "banana", "cherry"], + ), + node(identity, "D", "F", name="node_4", tags=["apple", "cherry"]), + ] + ) + + if tags: + pipeline = Pipeline([]) + for tag in tags: + pipeline += example_pipeline.only_nodes_with_tags(tag) + if not pipeline.nodes: + raise ValueError( + "Not found any nodes having any of the following " + "tags attached: {}".format(", ".join(tags)) + ) + else: + pipeline = example_pipeline + + return pipeline diff --git a/features/steps/sh_run.py b/features/steps/sh_run.py new file mode 100644 index 0000000000..fbf2007d8e --- /dev/null +++ b/features/steps/sh_run.py @@ -0,0 +1,138 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +import shlex +import subprocess +from typing import Dict, List, Union + +import psutil + + +def run( + cmd: Union[list, str], + split: bool = True, + print_output: bool = False, + **kwargs: Dict +) -> int: + """Run a shell command. + + Args: + cmd: A command string, or a command followed by program + arguments that will be submitted to Popen to run. + + split: Flag that splits command to provide as multiple *args + to Popen. Default is True. + + print_output: If True will print previously captured stdout. + Default is False. + + kwargs: Extra options to pass to subprocess. + + Example: + :: + "ls" + "ls -la" + "chmod 754 local/file" + + Returns: + Result with attributes args, returncode, stdout and + stderr. By default, stdout and stderr are not captured, and those + attributes will be None. Pass stdout=PIPE and/or stderr=PIPE in order + to capture them. + + """ + if isinstance(cmd, str) and split: + cmd = shlex.split(cmd) + result = subprocess.run( + cmd, input="", stdout=subprocess.PIPE, stderr=subprocess.PIPE, **kwargs + ) + result.stdout = result.stdout.decode("utf-8") + result.stderr = result.stderr.decode("utf-8") + if print_output: + print(result.stdout) + return result + + +def check_run(cmd: Union[list, str], print_output: bool = False) -> None: + """ + Run cmd using subprocess.check_call (throws error if non-zero value + returned) + + Args: + cmd: command to be run + print_output: whether to print output + """ + if isinstance(cmd, str): + split_cmd = shlex.split(cmd) + else: + split_cmd = cmd + + if print_output: + subprocess.check_call(split_cmd) + else: + subprocess.check_call(split_cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE) + + +class ChildTerminatingPopen(subprocess.Popen): + """Extend subprocess.Popen class to automatically kill child processes + when terminated. + + Note: + On GNU/Linux child processes are not killed automatically if the parent + dies (so-called orphan processes) + """ + + def __init__(self, cmd: List[str], **kwargs) -> None: + """ + Initializer pipes stderr and stdout. + + Args: + cmd: command to be run. + **kwargs: keyword arguments such as env and cwd + + """ + super(ChildTerminatingPopen, self).__init__( + cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, **kwargs + ) + + def terminate(self) -> None: + """Terminate process and children.""" + try: + proc = psutil.Process(self.pid) + procs = [proc] + proc.children(recursive=True) + except psutil.NoSuchProcess: + pass + else: + for proc in reversed(procs): + try: + proc.terminate() + except psutil.NoSuchProcess: + pass + alive = psutil.wait_procs(procs, timeout=3)[1] + for proc in alive: + proc.kill() diff --git a/features/steps/util.py b/features/steps/util.py new file mode 100644 index 0000000000..8d607ce7e8 --- /dev/null +++ b/features/steps/util.py @@ -0,0 +1,223 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +"""Common functions for e2e testing. +""" + +import os +import re +import subprocess +import tempfile +import venv +from contextlib import contextmanager +from pathlib import Path +from time import sleep, time +from typing import Any, Callable, Iterator, List + +import pandas as pd +import requests + +PIP_INSTALL_SCRIPT = "https://bootstrap.pypa.io/get-pip.py" + + +def get_sample_csv_content(): + return """col1, col2, col3 + 1, 2, 3 + 4, 5, 6 + """ + + +def get_sample_data_frame(): + data = {"col1": [1, 2], "col2": [4, 5], "col3": [5, 6]} + return pd.DataFrame(data) + + +def create_temp_csv(): + _, csv_file_path = tempfile.mkstemp(suffix=".csv") + return csv_file_path + + +def create_sample_csv(): + csv_file_path = create_temp_csv() + with open(csv_file_path, mode="w") as output_file: + output_file.write(get_sample_csv_content()) + return csv_file_path + + +@contextmanager +def chdir(path: Path) -> Iterator: + # pylint: disable=W9014 + """Context manager to help execute code in a different directory. + + Args: + path: directory to change to. + + Yields: + None + """ + old_pwd = os.getcwd() + os.chdir(str(path)) + try: + yield + finally: + os.chdir(old_pwd) + + +class WaitForException(Exception): + pass + + +def wait_for( + func: Callable, + timeout_: int = 10, + print_error: bool = False, + sleep_for: int = 1, + **kwargs +) -> Any: + """Run specified function until it returns expected result until timeout. + + Args: + func: Specified function. + timeout_: Time out in seconds. Defaults to 10. + print_error: whether any exceptions raised should be printed. + Defaults to False. + sleep_for: Execute func every specified number of seconds. + Defaults to 1. + **kwargs: Arguments to be passed to func. + + Raises: + WaitForException: if func doesn't return expected result within the + specified time. + + Returns: + Function return. + + """ + end = time() + timeout_ + while time() <= end: + try: + result = func(**kwargs) + return result + except Exception as err: # pylint: disable=broad-except + if print_error: + print(err) + + sleep(sleep_for) + raise WaitForException( + "func: %s, didn't return within specified timeout: %d" % (func, timeout_) + ) + + +def create_new_venv() -> str: + """Create a new venv. + + Note: Due to a bug in Python 3.5.2 pip needs to be manually installed. + + Returns: + path to created venv + """ + # Create venv + venv_dir = Path(tempfile.mkdtemp()) + venv.main([str(venv_dir), "--without-pip"]) + + if os.name == "posix": + python_executable = venv_dir / "bin" / "python" + else: + python_executable = venv_dir / "Scripts" / "python.exe" + + # Download and run pip installer + # Windows blocks access unless delete set to False + with tempfile.NamedTemporaryFile(delete=False) as tmp_file: + tmp_file.write(requests.get(PIP_INSTALL_SCRIPT).content) + tmp_file.flush() + os.fsync(tmp_file) + subprocess.check_call([str(python_executable), tmp_file.name]) + + os.unlink(tmp_file.name) + return venv_dir + + +def get_logline_count(logfile: str) -> int: + """Get line count in logfile + + Note: If logfile doesn't exist will return 0 + + Args: + logfile: path to logfile + + Returns: + line count of logfile + """ + try: + with open(logfile) as file_handle: + return sum(1 for i in file_handle) + except FileNotFoundError: + return 0 + + +def get_last_logline(logfile: str) -> str: + """Get last line of logfile + + Args: + logfile: path to logfile + + Returns: + last line of logfile + """ + line = "" + with open(logfile) as file_handle: + for line in file_handle: + pass + + return line + + +def get_logfile_path(proj_dir: Path) -> str: + """ + Helper function to fet full path of `pipeline.log` inside project + + Args: + proj_dir: path to proj_dir + + Returns: + path to `pipeline.log` + """ + log_file = (proj_dir / "logs" / "visualization" / "pipeline.log").absolute() + return str(log_file) + + +def parse_csv(text: str) -> List[str]: + """Parse comma separated **double quoted** strings in behave steps + + Args: + text: double quoted comma separated string + + Returns: + List of string tokens + """ + return re.findall(r"\"(.+?)\"\s*,?", text) diff --git a/features/subpipelines.feature b/features/subpipelines.feature new file mode 100644 index 0000000000..17927fb5de --- /dev/null +++ b/features/subpipelines.feature @@ -0,0 +1,97 @@ +Feature: Run subpipelines + + Note that node tagging below is currently hardcoded in `pipeline_template.py` + + Background: + Given I have included a pipeline definition in a project template + And I have defined a node "node_1" tagged with "apple", "orange", "banana", "lemon", "grape", "coconut", "fresh strawberries!" + And I have defined a node "node_2" tagged with "apple", "orange", "lemon" + And I have defined a node "node_3" tagged with "apple", "orange", "banana", "cherry" + And I have defined a node "node_4" tagged with "apple", "cherry" + And I have set the project log level to "DEBUG" + + Scenario: Run subpipeline of one node using two tags + + When with tags "coconut", "grape", I execute the kedro command "run" + Then I should get a successful exit code + And the console log should show that 1 nodes were run + And the console log should show that "node_1" was run + + Scenario: Run subpipeline of one node using a tag with spaces and special characters + + When with tags "fresh strawberries!", I execute the kedro command "run" + Then I should get a successful exit code + And the console log should show that 1 nodes were run + And the console log should show that "node_1" was run + + Scenario: Run subpipeline of two nodes using one tag + + When with tags "lemon", I execute the kedro command "run" + Then I should get a successful exit code + And the console log should show that 2 nodes were run + And the console log should show that "node_1" was run + And the console log should show that "node_2" was run + + Scenario: Run subpipeline of three nodes using one tag + + When with tags "orange", I execute the kedro command "run" + Then I should get a successful exit code + And the console log should show that 3 nodes were run + And the console log should show that "node_1" was run + And the console log should show that "node_2" was run + And the console log should show that "node_3" was run + + Scenario: Run subpipeline of four nodes using one tag + + When with tags "apple", I execute the kedro command "run" + Then I should get a successful exit code + And the console log should show that 4 nodes were run + And the console log should show that "node_1" was run + And the console log should show that "node_2" was run + And the console log should show that "node_3" was run + And the console log should show that "node_4" was run + + Scenario: Run subpipeline of four nodes using two tags with discrete ranges + + Effectively checks a valid subpipeline is constructed when a tag is issued + which applies to a subset of nodes, and another tag is issued which applies + to the other subset of nodes. + + When with tags "lemon", "apple", I execute the kedro command "run" + Then I should get a successful exit code + And the console log should show that 4 nodes were run + And the console log should show that "node_1" was run + And the console log should show that "node_2" was run + And the console log should show that "node_3" was run + And the console log should show that "node_4" was run + + Scenario: Run subpipeline with conflicting tags + + Run pipeline with one tag that is tagged to 2 nodes and another that is + tagged to 4 nodes + + When with tags "lemon", "cherry", I execute the kedro command "run" + Then I should get a successful exit code + And the console log should show that 4 nodes were run + And the console log should show that "node_1" was run + And the console log should show that "node_2" was run + And the console log should show that "node_3" was run + And the console log should show that "node_4" was run + + Scenario: Run an incomplete subpipeline (missing node) + + When with tags "coconut", "cherry", I execute the kedro command "run" + Then I should get an error exit code + + Scenario: Run subpipeline using invalid tag + + When with tags "blob", I execute the kedro command "run" + Then I should get an error exit code + + Scenario: Run subpipeline using a valid and invalid tag + + When with tags "blob", "lemon", I execute the kedro command "run" + Then I should get a successful exit code + And the console log should show that 2 nodes were run + And the console log should show that "node_1" was run + And the console log should show that "node_2" was run diff --git a/features/test.feature b/features/test.feature new file mode 100644 index 0000000000..2f4ad4faee --- /dev/null +++ b/features/test.feature @@ -0,0 +1,44 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + + +Feature: Test target in new project + + Background: + Given I have prepared a config file with example code + And I have run a non-interactive kedro new + And I have executed the kedro command "install" + + Scenario: Execute successful test in new project + When I execute the kedro command "test" + Then I should get a successful exit code + + Scenario: Execute failing test in new project + Given the example test has been set to fail + When I execute the kedro command "test" + Then I should get an error exit code diff --git a/features/version.feature b/features/version.feature new file mode 100644 index 0000000000..94f7a1fdfe --- /dev/null +++ b/features/version.feature @@ -0,0 +1,38 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + + +Feature: Kedro version + + Scenario: Check kedro version + When I ask the CLI for a version + Then CLI should print the version in an expected format + + Scenario: Check kedro version using python -m + When I ask the CLI for a version using python -m + Then CLI should print the version in an expected format diff --git a/img/kedro_banner.jpg b/img/kedro_banner.jpg new file mode 100644 index 0000000000..415e4a2346 Binary files /dev/null and b/img/kedro_banner.jpg differ diff --git a/img/pipeline_visualisation.png b/img/pipeline_visualisation.png new file mode 100644 index 0000000000..9ca7d5f54d Binary files /dev/null and b/img/pipeline_visualisation.png differ diff --git a/kedro/__init__.py b/kedro/__init__.py new file mode 100644 index 0000000000..43c0f1facd --- /dev/null +++ b/kedro/__init__.py @@ -0,0 +1,39 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +"""Kedro is a framework that makes it easy to build robust and scalable +data pipelines by providing uniform project templates, data abstraction, +configuration and pipeline assembly. +""" + +__version__ = "0.14.0" + + +import logging + +logging.getLogger(__name__).addHandler(logging.NullHandler()) diff --git a/kedro/__main__.py b/kedro/__main__.py new file mode 100644 index 0000000000..710b97ca59 --- /dev/null +++ b/kedro/__main__.py @@ -0,0 +1,37 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +"""Entry point when invoked with python -m kedro.""" # pragma: no cover + +if __name__ == "__main__": # pragma: no cover + import sys + from kedro.cli import main + + if sys.argv[0].endswith("__main__.py"): + sys.argv[0] = "python -m kedro" + main() diff --git a/kedro/cli/__init__.py b/kedro/cli/__init__.py new file mode 100644 index 0000000000..a34791eea3 --- /dev/null +++ b/kedro/cli/__init__.py @@ -0,0 +1,34 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +"""kedro is a CLI for creating Kedro projects. + +This module implements commands available from the kedro CLI. +""" + +from kedro.cli.cli import get_project_context, main # NOQA diff --git a/kedro/cli/cli.py b/kedro/cli/cli.py new file mode 100644 index 0000000000..d42d58bc87 --- /dev/null +++ b/kedro/cli/cli.py @@ -0,0 +1,563 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +"""kedro is a CLI for creating Kedro projects. + +This module implements commands available from the kedro CLI. +""" +import glob +import importlib +import os +import re +import shutil +import sys +import traceback +import webbrowser +from pathlib import Path +from typing import Any, Callable, Dict, List, Union + +import click +import pkg_resources +import yaml +from cookiecutter.main import cookiecutter + +import kedro.config.default_logger # noqa +from kedro import __version__ as version +from kedro.cli.utils import CommandCollection, KedroCliError + +KEDRO_PATH = os.path.dirname(kedro.__file__) +TEMPLATE_PATH = os.path.join(KEDRO_PATH, "template") +CONTEXT_SETTINGS = dict(help_option_names=["-h", "--help"]) + +NO_DEFAULT = object() +_KEDRO_CONTEXT = {"verbose": True} + +LOGO = r""" + _ _ +| | _____ __| |_ __ ___ +| |/ / _ \/ _` | '__/ _ \ +| < __/ (_| | | | (_) | +|_|\_\___|\__,_|_| \___/ +v{} +""".format( + version +) + + +@click.group(context_settings=CONTEXT_SETTINGS, name="Kedro") +@click.version_option(version, "--version", "-V", help="Show version and exit") +@click.option( + "--verbose", + "-v", + is_flag=True, + help="See extensive logging and error stack traces.", +) +def cli(verbose): + """Kedro is a CLI for creating and using Kedro projects + For more information, type ``kedro info``. + + When inside a Kedro project (created with `kedro new`) commands from + the project's `kedro_cli.py` file will also be available here. + """ + _KEDRO_CONTEXT["verbose"] = verbose + + +@cli.command() +def info(): + """Get more information about kedro. + """ + click.secho(LOGO, fg="green") + click.echo( + "kedro allows teams to create analytics\n" + "projects. It is developed as part of\n" + "the Kedro initiative at QuantumBlack." + ) + + +@cli.command(short_help="Create a new kedro project.") +@click.option( + "--config", + "-c", + type=click.Path(exists=True), + help="Non-interactive mode, using a configuration yaml file.", +) +def new(config): + """Create a new kedro project, either interactively or from a + configuration file. + + Create projects according to the Kedro default project template. This + template is ideal for analytics projects and comes with a data + architecture, folders for notebooks, configuration, source code, etc. + + \b + ``kedro new`` + Create a new project interactively. + + \b + You will have to provide four choices: + * ``Output Directory`` - parent directory where new project directory + should be created. + * ``Project Name`` - name of the project, not to be confused with name of + the project folder. + * ``Repository Name`` - intended name of your project folder. + * ``Package Name`` - intended name of your Python package. + + \b + ``kedro new --config <config.yml>`` + ``kedro new -c <config.yml>`` + Create a new project from configuration. + + * ``config.yml`` - The configuration YAML must contain at the top level + the above parameters (output_dir, project_name, repo_name, + python_package). + """ + _create_project(config, _KEDRO_CONTEXT["verbose"]) + + +@cli.command(short_help="See the kedro API docs and introductory tutorial.") +def docs(): + """Display the API docs and introductory tutorial in the browser, + using the packaged HTML doc files.""" + index_path = "file://" + os.path.realpath( + os.path.join( + os.path.realpath(__file__), os.pardir, os.pardir, "html", "index.html" + ) + ) + click.echo("Opening " + index_path) + webbrowser.open(index_path) + + +def _clean_pycache(project_path): + # Since template is part of the Kedro package __pycache__ is generated. + # This method recursively cleans all __pycache__ folders. + to_delete = [ + os.path.join(project_path, filename) + for filename in glob.iglob(project_path + "/**/*", recursive=True) + if filename.endswith("__pycache__") + ] + + for file in to_delete: # pragma: no cover + shutil.rmtree(file) + + +def _create_project(config_path: str, verbose: bool): + """Implementation of the kedro new cli command. + + Args: + config_path: In non-interactive mode, the path of the config.yml which + should contain the project_name, output_dir and repo_name. + verbose: Extensive debug terminal logs. + """ + try: + if config_path: + config = _parse_config(config_path, verbose) + config = _check_config_ok(config_path, config) + else: + config = _get_config_from_prompts() + config.setdefault("kedro_version", version) + + result_path = cookiecutter( + TEMPLATE_PATH, + output_dir=config["output_dir"], + no_input=True, + extra_context=config, + ) + if not config["include_example"]: + paths_to_remove = [ + os.path.join(result_path, "data", "01_raw", "iris.csv"), + os.path.join( + result_path, "src", config["python_package"], "nodes", "example.py" + ), + ] + + for path in paths_to_remove: + os.remove(path) + _clean_pycache(result_path) + _print_kedro_new_success_message(result_path) + except click.exceptions.Abort: # pragma: no cover + _handle_exception("User interrupt.") + # we dont want the user to see a stack trace on the cli + except Exception: # pylint: disable=broad-except + _handle_exception("Failed to generate project.") + + +def _get_config_from_prompts() -> Dict: + """Ask user to provide necessary inputs. + + Returns: + Resulting config dictionary. + + """ + + def _get_user_input( + text: str, + default: Any = None, + assert_or_check_funcs: Union[Callable, List[Callable]] = None, + ) -> Any: + """Get user input and validate it. + + Args: + text: Text to display in command line prompt. + default: Default value for the input. + assert_or_check_funcs: List of functions to apply to user input. + Value is overridden by function output if the latter is + not None. + + Returns: + Processed user value. + + """ + if callable(assert_or_check_funcs): + assert_or_check_funcs = [assert_or_check_funcs] + else: + assert_or_check_funcs = assert_or_check_funcs or [] + while True: + try: + value = click.prompt(text, default=default) + for _func in assert_or_check_funcs: + _func(value) + except KedroCliError as exc: + click.secho(str(exc), fg="red", err=True) + else: + break + return value + + # set output directory to the current directory + output_dir = os.path.abspath(os.path.curdir) + + # get project name + project_name_prompt = _get_prompt_text( + "Project Name:", + "Please enter a human readable name for your new project.", + "Spaces and punctuation are allowed.", + ) + + project_name = _get_user_input(project_name_prompt, default="New Kedro Project") + + normalized_project_name = re.sub(r"[^\w-]+", "-", project_name).lower().strip("-") + + # get repo name + repo_name_prompt = _get_prompt_text( + "Repository Name:", + "Please enter a directory name for your new project repository.", + "Alphanumeric characters, hyphens and underscores are allowed.", + "Lowercase is recommended.", + ) + repo_name = _get_user_input( + repo_name_prompt, normalized_project_name, _assert_repo_name_ok + ) + + # get python package_name + default_pkg_name = normalized_project_name.replace("-", "_") + pkg_name_prompt = _get_prompt_text( + "Python Package Name:", + "Please enter a valid Python package name for your project package.", + "Alphanumeric characters and underscores are allowed.", + "Lowercase is recommended. Package name must start with a letter " + "or underscore.", + ) + python_package = _get_user_input( + pkg_name_prompt, default_pkg_name, _assert_pkg_name_ok + ) + + # option for whether iris example code is included in the project + code_example_prompt = _get_prompt_text( + "Generate Example Pipeline:", + "Do you want to generate an example pipeline in your project?", + "Good for first-time users. (default=N)", + ) + include_example = click.confirm(code_example_prompt, default=False) + + return { + "output_dir": output_dir, + "project_name": project_name, + "repo_name": repo_name, + "python_package": python_package, + "include_example": include_example, + } + + +def _parse_config(config_path: str, verbose: bool) -> Dict: + """Parse the config YAML from its path. + + Args: + config_path: The path of the config.yml file. + verbose: Print the config contents. + + Raises: + Exception: If the file cannot be parsed. + + Returns: + The config as a dictionary. + + """ + try: + with open(config_path, "r") as config_file: + config = yaml.load(config_file) + + if verbose: + click.echo(config_path + ":") + click.echo(yaml.dump(config, default_flow_style=False)) + + return config + + except Exception as exc: + click.secho("Failed to parse " + config_path, fg="red", err=True) + _show_example_config() + raise exc + + +def _check_config_ok(config_path: str, config: Dict[str, Any]) -> Dict[str, Any]: + """Check that the configuration file contains all needed variables. + + Args: + config_path: The path of the config file. + config: The config as a dictionary. + + Returns: + Config dictionary. + + Raises: + KedroCliError: If the config file is empty or does not contain all + keys from template/cookiecutter.json and output_dir. + + """ + if config is None: + _show_example_config() + raise KedroCliError(config_path + " is empty") + + required_in_config = _get_default_config().keys() + + for var in required_in_config: + if var not in config: + click.echo("\n" + config_path + ":") + click.echo(yaml.dump(config, default_flow_style=False)) + _show_example_config() + + raise KedroCliError("[" + var + "] not found in " + config_path) + + config["output_dir"] = _fix_user_path(config["output_dir"]) + _assert_output_dir_ok(config["output_dir"]) + _assert_repo_name_ok(config["repo_name"]) + _assert_pkg_name_ok(config["python_package"]) + _assert_include_example_ok(config["include_example"]) + return config + + +def _get_default_config(): + default_config_path = os.path.join(TEMPLATE_PATH, "default_config.yml") + with open(default_config_path) as default_config_file: + default_config = yaml.load(default_config_file) + return default_config + + +def _assert_output_dir_ok(output_dir: str): + """Check that output directory exists. + + Args: + output_dir: Output directory path. + + Raises: + KedroCliError: If the output directory does not exist. + + """ + if not os.path.exists(output_dir): + message = ( + "`{}` is not a valid output directory. " + "It must be a relative or absolute path " + "to an existing directory.".format(output_dir) + ) + raise KedroCliError(message) + + +def _assert_pkg_name_ok(pkg_name: str): + """Check that python package name is in line with PEP8 requirements. + + Args: + pkg_name: Candidate Python package name. + + Raises: + KedroCliError: If package name violates the requirements. + """ + + base_message = "`{}` is not a valid Python package name.".format(pkg_name) + if not re.match(r"^[a-zA-Z_]", pkg_name): + message = base_message + " It must start with a letter or underscore." + raise KedroCliError(message) + if len(pkg_name) < 2: + message = base_message + " It must be at least 2 characters long." + raise KedroCliError(message) + if not re.match(r"^\w+$", pkg_name[1:]): + message = ( + base_message + " It must contain only letters, " + "digits, and/or underscores." + ) + raise KedroCliError(message) + + +def _assert_repo_name_ok(repo_name): + if not re.match(r"^\w+(-*\w+)*$", repo_name): + message = ( + "`{}` is not a valid repository name. It must contain " + "only word symbols and/or hyphens, must also start and " + "end with alphanumeric symbol.".format(repo_name) + ) + raise KedroCliError(message) + + +def _assert_include_example_ok(include_example): + if not isinstance(include_example, bool): + message = ( + "`{}` value for `include_example` is invalid. It must be a boolean value " + "True or False.".format(include_example) + ) + raise KedroCliError(message) + + +def _fix_user_path(output_dir): + output_dir = output_dir or "" + output_dir = os.path.expanduser(output_dir) + + result = os.path.abspath(output_dir) + return result + + +def _show_example_config(): + click.secho("Example of valid config.yml:") + default_config = _get_default_config() + for key, value in default_config.items(): + click.secho( + click.style(key + ": ", bold=True, fg="yellow") + + click.style(str(value), fg="cyan") + ) + click.echo("") + + +def _print_kedro_new_success_message(result): + click.secho("Project generated in " + os.path.abspath(result), fg="green") + click.secho( + "Don't forget to initialise git and create a virtual environment. " + "Refer to the Kedro documentation." + ) + + +def _get_prompt_text(title, *text): + title = title.strip().title() + title = click.style(title + "\n" + "=" * len(title), bold=True) + prompt_text = [title] + list(text) + return "\n".join(str(x).strip() for x in prompt_text) + "\n" + + +def get_project_context(key, default=NO_DEFAULT): # pragma: no cover + """Get a value from the project context.""" + try: + kedro_cli = importlib.import_module("kedro_cli") + kedro_context = _KEDRO_CONTEXT.copy() + kedro_context.update(kedro_cli.__get_kedro_context__()) + value = kedro_context[key] + except KeyError: + if default is not NO_DEFAULT: + return default + _handle_exception( + "`{}` not found in the context returned by " + "__get_kedro_context__".format(key) + ) + + return value + + +def _get_plugin_command_groups(name): # pragma: no cover + entry_points = pkg_resources.iter_entry_points( + group="kedro.{}_commands".format(name) + ) + groups = [] + for entry_point in entry_points: + try: + groups.append(entry_point.load()) + except Exception: # pylint: disable=broad-except + _handle_exception( + "Loading {} commands from {}".format(name, str(entry_point)), end=False + ) + return groups + + +def main(): # pragma: no cover + """Main entry point, look for a `kedro_cli.py` and if found add its + commands to `kedro`'s then invoke the cli. + """ + + # run plugin initilization + for entry_point in pkg_resources.iter_entry_points(group="kedro.init"): + try: + init_hook = entry_point.load() + init_hook() + except Exception: # pylint: disable=broad-except + _handle_exception("Initilizing {}".format(str(entry_point)), end=False) + + global_groups = [cli] + global_groups.extend(_get_plugin_command_groups("global")) + project_groups = [] + + # load project commands from kedro_cli.py + path = Path.cwd() + kedro_cli_path = path / "kedro_cli.py" + + if kedro_cli_path.exists(): + try: + sys.path.append(str(path)) + kedro_cli = importlib.import_module("kedro_cli") + project_groups.extend(_get_plugin_command_groups("project")) + project_groups.append(kedro_cli.cli) + except Exception: # pylint: disable=broad-except + _handle_exception( + "Cannot load commands from {}".format(str(kedro_cli_path)) + ) + CommandCollection( + ("Global commands", global_groups), + ("Project specific commands", project_groups), + )() + + +def _handle_exception(msg, end=True): + """Pretty print the current exception then exit.""" + if _KEDRO_CONTEXT["verbose"]: + click.secho(traceback.format_exc(), nl=False, fg="yellow") + else: + etype, value, _ = sys.exc_info() + click.secho( + "".join(*traceback.format_exception_only(etype, value)) + + "Run with --verbose to see the full exception", + fg="yellow", + ) + if end: + raise KedroCliError(msg) + click.secho("Error: " + msg, fg="red") # pragma: no cover + + +if __name__ == "__main__": # pragma: no cover + main() diff --git a/kedro/cli/utils.py b/kedro/cli/utils.py new file mode 100644 index 0000000000..f01cf62cab --- /dev/null +++ b/kedro/cli/utils.py @@ -0,0 +1,140 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +"""Utilities for use with click.""" + +import re +import shlex +import subprocess +import sys +from itertools import chain +from pathlib import Path +from typing import List, Tuple, Union + +import click +from click import ClickException, style + +CONTEXT_SETTINGS = dict(help_option_names=["-h", "--help"]) + + +def call(cmd, **kwargs): # pragma: no cover + """Run a subprocess command and exit if it fails.""" + print(" ".join(shlex.quote(c) for c in cmd)) + res = subprocess.run(cmd, **kwargs).returncode + if res: + sys.exit(res) + + +def python_call(module, arguments, **kwargs): # pragma: no cover + """Run a subprocess command that invokes a Python module.""" + call([sys.executable, "-m", module] + list(arguments), **kwargs) + + +def forward_command(group, name=None, forward_help=False): + """A command that receives the rest of the command line as 'args'.""" + + def wrapit(func): + func = click.argument("args", nargs=-1, type=click.UNPROCESSED)(func) + func = group.command( + name=name, + context_settings=dict( + ignore_unknown_options=True, + help_option_names=[] if forward_help else ["-h", "--help"], + ), + )(func) + return func + + return wrapit + + +class CommandCollection(click.CommandCollection): + """Modified from the Click one to still run the source groups function.""" + + def __init__(self, *groups: Tuple[str, List[click.core.Group]]): + self.groups = groups + sources = list(chain.from_iterable(groups for title, groups in groups)) + help_strs = [source.help for source in sources if source.help] + super().__init__( + sources=sources, + help="\n\n".join(help_strs), + context_settings=CONTEXT_SETTINGS, + ) + self.params = sources[0].params + self.callback = sources[0].callback + + def format_commands( + self, ctx: click.core.Context, formatter: click.formatting.HelpFormatter + ): + for title, groups in self.groups: + for group in groups: + formatter.write( + click.style("\n{} from {}".format(title, group.name), fg="green") + ) + group.format_commands(ctx, formatter) + + +def get_pkg_version(reqs_path: (Union[str, Path]), package_name: str) -> str: + """Get package version from requirements.txt. + + Args: + reqs_path: Path to requirements.txt file. + package_name: Package to search for. + + Returns: + Package and its version as specified in requirements.txt. + + Raises: + KedroCliError: If the file specified in ``reqs_path`` does not exist + or ``package_name`` was not found in that file. + """ + if isinstance(reqs_path, str): + reqs_path = Path(reqs_path) + reqs_path = reqs_path.absolute() + if not reqs_path.is_file(): + raise KedroCliError( + "Given path `{0}` is not a regular file.".format(str(reqs_path)) + ) + + pattern = re.compile(package_name + r"([^\w]|$)") + with open(str(reqs_path), "r") as reqs_file: + for req_line in reqs_file: + req_line = req_line.strip() + if pattern.search(req_line): + return req_line + msg = "Cannot find `{0}` package in `{1}`.".format(package_name, str(reqs_path)) + raise KedroCliError(msg) + + +class KedroCliError(ClickException): + """Exceptions generated from the Kedro CLI. + + Users should pass an appropriate message at the constructor. + """ + + def format_message(self): + return style(self.message, fg="red") # pragma: no cover diff --git a/kedro/config/__init__.py b/kedro/config/__init__.py new file mode 100644 index 0000000000..05dcd3dd26 --- /dev/null +++ b/kedro/config/__init__.py @@ -0,0 +1,34 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +"""``kedro.config`` provides functionality for loading Kedro +configuration from different file formats. +""" + + +from .config import ConfigLoader # NOQA diff --git a/kedro/config/config.py b/kedro/config/config.py new file mode 100644 index 0000000000..1ff85ec199 --- /dev/null +++ b/kedro/config/config.py @@ -0,0 +1,237 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. +"""This module provides ``kedro.config`` with the functionality to load one +or more configuration files from specified paths. +""" +import logging +from glob import iglob +from pathlib import Path +from typing import Any, Dict, List, Tuple, Union + +import anyconfig + +SUPPORTED_EXTENSIONS = [ + ".yml", + ".yaml", + ".json", + ".ini", + ".pickle", + ".properties", + ".xml", + ".shellvars", +] + + +class ConfigLoader: + """Recursively scan the directories specified in ``conf_paths`` for + configuration files with a ``yaml``, ``yml``, ``json``, ``ini``, + ``pickle``, ``xml``, ``properties`` or ``shellvars`` extension, + load them, and return them in the form of a config dictionary. + + When the same top-level key appears in any 2 config files located in + the same ``conf_path`` (sub)directory, a ``ValueError`` is raised. + + When the same key appears in any 2 config files located in different + ``conf_path`` directories, the last processed config path takes + precedence and overrides this key. + + For example, if your ``conf_path`` looks like this: + :: + + . + └── conf +    ├── README.md + ├── base +    │   ├── catalog.yml +    │   ├── logging.yml +    │   └── experiment1 +    │   └── parameters.yml +    └── local +       ├── catalog.yml +       ├── db.ini +       ├── experiment1 +       │ ├── parameters.yml +       │ └── model_parameters.yml +       └── experiment2 +       └── parameters.yml +    + + You can access the different configurations as follows: + :: + + >>> import logging.config + >>> from kedro.config import ConfigLoader + >>> + >>> conf_paths = ['conf/base', 'conf/local'] + >>> conf_loader = ConfigLoader(conf_paths) + >>> + >>> conf_logging = conf_loader.get('logging*') + >>> logging.config.dictConfig(conf_logging) # set logging conf + >>> + >>> conf_catalog = conf_loader.get('catalog*', 'catalog*/**') + >>> conf_params = conf_loader.get('**/parameters.yml') + + """ + + def __init__(self, conf_paths: Union[str, List[str]]): + """Instantiate a ConfigLoader. + + Args: + conf_paths: Non-empty path or list of paths to configuration + directories. + Raises: + ValueError: If ``conf_paths`` is empty. + + """ + if not conf_paths: + raise ValueError( + "`conf_paths` must contain at least one path to " + "load configuration files from." + ) + if isinstance(conf_paths, str): + conf_paths = [conf_paths] + self.conf_paths = conf_paths + self.logger = logging.getLogger(__name__) + + def get(self, *patterns: str) -> Dict[str, Any]: + """Recursively scan for configuration files, load and merge them, and + return them in the form of a config dictionary. + + Args: + patterns: Glob patterns to match. Files, which names match + any of the specified patterns, will be processed. + + Raises: + ValueError: If 2 or more configuration files inside the same + config path (or its subdirectories) contain the same + top-level key. + + Returns: + Dict[str, Any]: A Python dictionary with the combined + configuration from all configuration files. **Note:** any keys + that start with `_` will be ignored. + """ + + if not patterns: + raise ValueError( + "`patterns` must contain at least one glob " + "pattern to match config filenames against." + ) + + config = {} + processed_files = [] + + for conf_path in self.conf_paths: + new_conf, new_processed_files = _load_config(conf_path, list(patterns)) + common_keys = config.keys() & new_conf.keys() + if common_keys: + sorted_keys = ", ".join(sorted(common_keys)) + msg = ( + "Config from path `%s` will override the following " + "existing top-level config keys: %s" + ) + self.logger.debug(msg, conf_path, sorted_keys) + config.update(new_conf) + processed_files.extend(new_processed_files) + if not processed_files: + raise ValueError( + "No files found in {} matching the glob " + "pattern(s): {}".format(str(self.conf_paths), str(list(patterns))) + ) + return config + + +def _load_config( + conf_path: str, patterns: List[str] +) -> Tuple[Dict[str, Any], List[Path]]: + """Recursively load all configuration files, which satisfy + a given list of glob patterns from a specific path. + + Args: + conf_path: Path to a kedro configuration directory. + patterns: List of glob patterns to match the filenames against. + + Raises: + ValueError: If 2 or more configuration files contain the same key(s). + + Returns: + Resulting configuration dictionary. + + """ + + conf_path = Path(conf_path) + if not conf_path.is_dir(): + raise ValueError( + "Given configuration path either does not exist " + "or is not a valid directory: {0}".format(conf_path) + ) + config = {} + keys_by_filepath = {} + + def _check_dups(file1, conf): + dups = [] + for file2, keys in keys_by_filepath.items(): + common = ", ".join(sorted(conf.keys() & keys)) + if common: + common = common[:100] + (common[100:] and "...") + dups.append(str(file2) + ": " + common) + + if dups: + msg = "Duplicate keys found in {0} and:\n- {1}".format( + file1, "\n- ".join(dups) + ) + raise ValueError(msg) + + for path in _path_lookup(conf_path, patterns): + cfg = {k: v for k, v in anyconfig.load(path).items() if not k.startswith("_")} + _check_dups(path, cfg) + keys_by_filepath[path] = cfg.keys() + config.update(cfg) + return config, list(keys_by_filepath.keys()) + + +def _path_lookup(conf_path: Path, patterns: List[str]) -> List[Path]: + """Return a sorted list of all configuration files from ``conf_path`` or + its subdirectories, which satisfy a given list of glob patterns. + + Args: + conf_path: Path to configuration directory. + patterns: List of glob patterns to match the filenames against. + + Returns: + Sorted list of ``Path`` objects representing configuration files. + + """ + result = set() + + for pattern in patterns: + for path in iglob(str(conf_path / pattern), recursive=True): + path = Path(path).resolve() + if path.is_file() and path.suffix in SUPPORTED_EXTENSIONS: + result.add(path) + return sorted(result) diff --git a/kedro/config/default_logger.py b/kedro/config/default_logger.py new file mode 100644 index 0000000000..47e431c7be --- /dev/null +++ b/kedro/config/default_logger.py @@ -0,0 +1,41 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. +"""This module facilitates the loading of the default ``kedro.config`` +for setting up the logging +""" + +import logging.config +import os + +import yaml + +CURRENT_DIR = os.path.dirname(__file__) + +with open(os.path.join(CURRENT_DIR, "logging.yml"), "rt") as conf_file: + LOGGING_CONFIG = yaml.safe_load(conf_file.read()) + logging.config.dictConfig(LOGGING_CONFIG) diff --git a/kedro/config/logging.yml b/kedro/config/logging.yml new file mode 100644 index 0000000000..c51bc0be17 --- /dev/null +++ b/kedro/config/logging.yml @@ -0,0 +1,42 @@ +version: 1 +disable_existing_loggers: False +formatters: + simple: + format: "%(asctime)s - %(name)s - %(levelname)s - %(message)s" + +handlers: + console: + class: logging.StreamHandler + level: INFO + formatter: simple + stream: ext://sys.stdout + + info_file_handler: + class: logging.handlers.RotatingFileHandler + level: INFO + formatter: simple + filename: info.log + maxBytes: 10485760 # 10MB + backupCount: 20 + encoding: utf8 + delay: True + + error_file_handler: + class: logging.handlers.RotatingFileHandler + level: ERROR + formatter: simple + filename: errors.log + maxBytes: 10485760 # 10MB + backupCount: 20 + encoding: utf8 + delay: True + +loggers: + kedro.cli: + level: WARNING + handlers: [console] + propagate: no + +root: + level: INFO + handlers: [console, info_file_handler, error_file_handler] diff --git a/kedro/contrib/README.md b/kedro/contrib/README.md new file mode 100644 index 0000000000..074469d444 --- /dev/null +++ b/kedro/contrib/README.md @@ -0,0 +1,39 @@ +# Kedro contrib + +The contrib directory is meant to contain user contributions, these +contributions might get merged into core Kedro at some point in the future. + +When create a new module in `contrib`, place it exactly where it would be if it +was merged into core Kedro. + +For example, data sets are under the core package `kedro.io`. If you are +contributing a Data Set you should have the following directory: +`kedro/contrib/my_project/io/` - i.e., the name of your project before the +`kedro` package path. + +This is how a module would look like under `kedro/contrib`: +``` +kedro/contrib/my_project/io/ + my_module.py + README.md +``` + +You should put you test files in `tests/contrib/my_project`: +``` +tests/contrib/my_project + test_my_module.py +``` + +## Requirements + +If your project has any requirments that are not in the core `requirements.txt` +file. Please add them in `setup.py` like so: +``` +... +extras_require={ + 'my_project': ['requirement1==1.0.1', 'requirement2==2.0.1'], + }, +``` + +Please notice that a readme with instructions about how to use your module +and 100% test coverage are required to accept a PR. diff --git a/kedro/contrib/__init__.py b/kedro/contrib/__init__.py new file mode 100644 index 0000000000..6740dc1f9b --- /dev/null +++ b/kedro/contrib/__init__.py @@ -0,0 +1,30 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. +"""kedro.contrib is the place for all contribution from third parties. +Some of this functionality might be include in the core package in the future. +""" diff --git a/kedro/contrib/colors/__init__.py b/kedro/contrib/colors/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/kedro/contrib/colors/logging/__init__.py b/kedro/contrib/colors/logging/__init__.py new file mode 100644 index 0000000000..9258696a83 --- /dev/null +++ b/kedro/contrib/colors/logging/__init__.py @@ -0,0 +1,33 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +""" +This module contains a logging handler class which produces coloured logs. +""" + +from .color_logger import ColorHandler # NOQA diff --git a/kedro/contrib/colors/logging/color_logger.py b/kedro/contrib/colors/logging/color_logger.py new file mode 100644 index 0000000000..05fbd86518 --- /dev/null +++ b/kedro/contrib/colors/logging/color_logger.py @@ -0,0 +1,122 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. +"""A logging handler class which produces coloured logs.""" + + +import logging + +import click + + +class ColorHandler(logging.StreamHandler): + """A color log handler. + + You can use this handler by incorporating the example below into your + logging configuration: + + ``conf/project/logging.yml``: + :: + + formatters: + simple: + format: "%(asctime)s - %(name)s - %(levelname)s - %(message)s" + + handlers: + console: + class: kedro.contrib.colors.logging.ColorHandler + level: INFO + formatter: simple + stream: ext://sys.stdout + # defining colors is optional + colors: + debug: white + info: magenta + warning: yellow + + root: + level: INFO + handlers: [console] + + The ``colors`` parameter is optional, and you can use any ANSI color. + + * Black + * Red + * Green + * Yellow + * Blue + * Magenta + * Cyan + * White + + The default colors are: + + * debug: magenta + * info: cyan + * warning: yellow + * error: red + * critical: red + """ + + def __init__(self, stream=None, colors=None): + logging.StreamHandler.__init__(self, stream) + colors = colors or {} + self.colors = { + "critical": colors.get("critical", "red"), + "error": colors.get("error", "red"), + "warning": colors.get("warning", "yellow"), + "info": colors.get("info", "cyan"), + "debug": colors.get("debug", "magenta"), + } + + def _get_color(self, level): + if level >= logging.CRITICAL: + return self.colors["critical"] # pragma: no cover + if level >= logging.ERROR: + return self.colors["error"] # pragma: no cover + if level >= logging.WARNING: + return self.colors["warning"] # pragma: no cover + if level >= logging.INFO: + return self.colors["info"] + if level >= logging.DEBUG: # pragma: no cover + return self.colors["debug"] # pragma: no cover + + return None # pragma: no cover + + def format(self, record: str) -> str: + """The handler formatter. + + Args: + record: The record to format. + + Returns: + The record formatted as a string. + + """ + text = logging.StreamHandler.format(self, record) + color = self._get_color(record.levelno) + return click.style(text, color) diff --git a/kedro/contrib/decorators/__init__.py b/kedro/contrib/decorators/__init__.py new file mode 100644 index 0000000000..3c5035cd01 --- /dev/null +++ b/kedro/contrib/decorators/__init__.py @@ -0,0 +1,34 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +""" +This module contains function decorators, which can be used as ``Node`` +decorators. See ``kedro.pipeline.node.decorate`` +""" + +from .decorators import pandas_to_spark, retry, spark_to_pandas # NOQA diff --git a/kedro/contrib/decorators/decorators.py b/kedro/contrib/decorators/decorators.py new file mode 100644 index 0000000000..4daceefb1b --- /dev/null +++ b/kedro/contrib/decorators/decorators.py @@ -0,0 +1,178 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +""" +This module contains function decorators, which can be used as ``Node`` +decorators. See ``kedro.pipeline.node.decorate`` +""" +import logging +from functools import wraps +from time import sleep +from typing import Callable + +import pandas as pd +from pyspark.sql import SparkSession + + +def pandas_to_spark(spark: SparkSession) -> Callable: + """Inspects the decorated function's inputs and converts all pandas + DataFrame inputs to spark DataFrames. + + **Note** that in the example below we have enabled + ``spark.sql.execution.arrow.enabled``. For this to work, you should first + ``pip install pyarrow`` and add ``pyarrow`` to ``requirements.txt``. + Enabling this option makes the convertion between pyspark <-> DataFrames + **much faster**. + + Args: + spark: The spark session singleton object to use for the creation of + the pySpark DataFrames. A possible pattern you can use here is + the following: + + **spark.py** + :: + + >>> from pyspark.sql import SparkSession + >>> + >>> def get_spark(): + >>> return ( + >>> SparkSession.builder + >>> .master("local[*]") + >>> .appName("kedro") + >>> .config("spark.driver.memory", "4g") + >>> .config("spark.driver.maxResultSize", "3g") + >>> .config("spark.sql.execution.arrow.enabled", "true") + >>> .getOrCreate() + >>> ) + + **nodes.py** + :: + + >>> from spark import get_spark + >>> @pandas_to_spark(get_spark()) + >>> def node_1(data): + >>> data.show() # data is pyspark.sql.DataFrame + + Returns: + The original function with any pandas DF inputs translated to spark. + + """ + + def _to_spark(arg): + if isinstance(arg, pd.DataFrame): + return spark.createDataFrame(arg) + return arg + + def inputs_to_spark(node_func: Callable): + @wraps(node_func) + def _wrapper(*args, **kwargs): + return node_func( + *[_to_spark(arg) for arg in args], + **{key: _to_spark(value) for key, value in kwargs} + ) + + return _wrapper + + return inputs_to_spark + + +def spark_to_pandas() -> Callable: + """Inspects the decorated function's inputs and converts all pySpark + DataFrame inputs to pandas DataFrames. + + Returns: + The original function with any pySpark DF inputs translated to pandas. + + """ + + def _to_pandas(arg): + if "pyspark.sql.dataframe" in str(type(arg)): + return arg.toPandas() + return arg + + def inputs_to_pandas(node_func: Callable): + @wraps(node_func) + def _wrapper(*args, **kwargs): + return node_func( + *[_to_pandas(arg) for arg in args], + **{key: _to_pandas(value) for key, value in kwargs} + ) + + return _wrapper + + return inputs_to_pandas + + +def retry( + exceptions: Exception = Exception, n_times: int = 1, delay_sec: float = 0 +) -> Callable: + """ + Catches exceptions from the wrapped function at most n_times and then + bundles them and propagates them. + + **Make sure your function does not mutate the arguments** + + Args: + exceptions: The superclass of exceptions to catch. + By default catch all exceptions. + n_times: At most let the function fail n_times. The bundle the + errors and propagate them. By default retry only once. + delay_sec: Delay between failure and next retry in seconds + + Returns: + The original function with retry functionality. + + """ + + def _retry(func: Callable): + @wraps(func) + def _wrapper(*args, **kwargs): + counter = n_times + errors = [] + while counter >= 0: + try: + return func(*args, **kwargs) + # pylint: disable=broad-except + except exceptions as exc: + errors.append(exc) + if counter != 0: + sleep(delay_sec) + counter -= 1 + + if errors: + log = logging.getLogger(__name__) + log.error( + "Function `%s` failed %i times. Errors:\n", func.__name__, n_times + ) + log.error("\n".join([str(err) for err in errors])) + log.error("Raising last exception") + raise errors[-1] + + return _wrapper + + return _retry diff --git a/kedro/contrib/io/__init__.py b/kedro/contrib/io/__init__.py new file mode 100644 index 0000000000..6ce03bb74e --- /dev/null +++ b/kedro/contrib/io/__init__.py @@ -0,0 +1,33 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +""" +This module contains functionality which we might consider moving into the +`kedro.io` module (e.g. additional ``AbstractDataSet``s and +extensions/alternative ``DataCatalog``s. +""" diff --git a/kedro/contrib/io/azure/__init__.py b/kedro/contrib/io/azure/__init__.py new file mode 100644 index 0000000000..4ec886b9ad --- /dev/null +++ b/kedro/contrib/io/azure/__init__.py @@ -0,0 +1,34 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +"""``AbstractDataSet`` implementation for reading/writing data to Azure Blob +Storage +""" + + +from .csv_blob import CSVBlobDataSet # NOQA diff --git a/kedro/contrib/io/azure/csv_blob.py b/kedro/contrib/io/azure/csv_blob.py new file mode 100644 index 0000000000..2fdf168a51 --- /dev/null +++ b/kedro/contrib/io/azure/csv_blob.py @@ -0,0 +1,137 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +""" ``AbstractDataSet`` implementation to access CSV files directly from +Microsoft's Azure blob storage. +""" +import io +from typing import Any, Dict, Optional + +import pandas as pd +from azure.storage.blob import BlockBlobService + +from kedro.io import AbstractDataSet + + +class CSVBlobDataSet(AbstractDataSet): + """``CSVBlobDataSet`` loads and saves csv files in Microsoft's Azure + blob storage. It uses azure storage SDK to read and write in azure and + pandas to handle the csv file locally. + + Example: + :: + + >>> import pandas as pd + >>> + >>> data = pd.DataFrame({'col1': [1, 2], 'col2': [4, 5], + >>> 'col3': [5, 6]}) + >>> + >>> data_set = CSVBlobDataSet(filepath="test.csv", + >>> bucket_name="test_bucket", + >>> load_args=None, + >>> save_args={"index": False}) + >>> data_set.save(data) + >>> reloaded = data_set.load() + >>> + >>> assert data.equals(reloaded) + """ + + def _describe(self) -> Dict[str, Any]: + return dict( + filepath=self._filepath, + container_name=self._container_name, + blob_to_text_args=self._blob_to_text_args, + blob_from_text_args=self._blob_from_text_args, + load_args=self._load_args, + save_args=self._save_args, + ) + + # pylint: disable=too-many-arguments + def __init__( + self, + filepath: str, + container_name: str, + credentials: Dict[str, Any], + blob_to_text_args: Optional[Dict[str, Any]] = None, + blob_from_text_args: Optional[Dict[str, Any]] = None, + load_args: Optional[Dict[str, Any]] = None, + save_args: Optional[Dict[str, Any]] = None, + ) -> None: + """Creates a new instance of ``CSVBlobDataSet`` pointing to a + concrete csv file on Azure blob storage. + + Args: + filepath: path to a azure blob of a csv file. + container_name: Azure container name. + credentials: Credentials (``account_name`` and + ``account_key`` or ``sas_token``)to access the azure blob + blob_to_text_args: Any additional arguments to pass to azure's + ``get_blob_to_text`` method: + https://docs.microsoft.com/en-us/python/api/azure.storage.blob.baseblobservice.baseblobservice?view=azure-python#get-blob-to-text + blob_from_text_args: Any additional arguments to pass to azure's + ``create_blob_from_text`` method: + https://docs.microsoft.com/en-us/python/api/azure.storage.blob.blockblobservice.blockblobservice?view=azure-python#create-blob-from-text + load_args: Pandas options for loading csv files. + Here you can find all available arguments: + https://pandas.pydata.org/pandas-docs/stable/generated/pandas.read_csv.html + All defaults are preserved. + save_args: Pandas options for saving csv files. + Here you can find all available arguments: + https://pandas.pydata.org/pandas-docs/stable/generated/pandas.DataFrame.to_csv.html + All defaults are preserved, but "index", which is set to False. + + """ + default_save_args = {"index": False} + self._save_args = ( + {**default_save_args, **save_args} if save_args else default_save_args + ) + self._load_args = load_args if load_args else {} + self._filepath = filepath + self._container_name = container_name + self._credentials = credentials if credentials else {} + self._blob_to_text_args = blob_to_text_args if blob_to_text_args else {} + self._blob_from_text_args = blob_from_text_args if blob_from_text_args else {} + + def _load(self) -> pd.DataFrame: + blob_service = BlockBlobService(**self._credentials) + blob = blob_service.get_blob_to_text( + container_name=self._container_name, + blob_name=self._filepath, + **self._blob_to_text_args + ) + csv_content = io.StringIO(blob.content) + return pd.read_csv(csv_content, **self._load_args) + + def _save(self, data: pd.DataFrame) -> None: + blob_service = BlockBlobService(**self._credentials) + blob_service.create_blob_from_text( + container_name=self._container_name, + blob_name=self._filepath, + text=data.to_csv(**self._save_args), + **self._blob_from_text_args + ) diff --git a/kedro/contrib/io/bioinformatics/__init__.py b/kedro/contrib/io/bioinformatics/__init__.py new file mode 100644 index 0000000000..a8d8ef3b05 --- /dev/null +++ b/kedro/contrib/io/bioinformatics/__init__.py @@ -0,0 +1,34 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +"""``AbstractDataSet`` implementation for reading/writing from/to a sequence +file. +""" + + +from .sequence_dataset import BioSequenceLocalDataSet # NOQA diff --git a/kedro/contrib/io/bioinformatics/sequence_dataset.py b/kedro/contrib/io/bioinformatics/sequence_dataset.py new file mode 100644 index 0000000000..f3baca33b9 --- /dev/null +++ b/kedro/contrib/io/bioinformatics/sequence_dataset.py @@ -0,0 +1,120 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +"""BioSequenceLocalDataSet loads and saves data to/from bio-sequence objects to +file. +""" +from os.path import isfile +from pathlib import Path +from typing import Any, Dict, List, Optional + +from Bio import SeqIO + +from kedro.io import AbstractDataSet, ExistsMixin + + +class BioSequenceLocalDataSet(AbstractDataSet, ExistsMixin): + """``BioSequenceLocalDataSet`` loads and saves data to a sequence file. + + Example: + :: + + >>> raw_sequence_list = [ + >>> '>gi|2765658|emb|Z78533.1|CIZ78533' + >>> 'C.irapeanum 5.8S rRNA gene and ITS1 and ITS2 DNA' + >>> 'CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGATGAGACCGTGGAATAAA' + >>> 'CGATCGAGTGAATCCGGAGGACCGGTGTACTCAGCTCACCGGGGGCATTGCTCCCGTGGT' + >>> 'GACCCTGATTTGTTGTTGGGCCGCCTCGGGAGCGTCCATGGCGGGTTTGAACCTCTAGCC' + >>> 'CGGCGCAGTTTGGGCGCCAAGCCATATGAAAGCATCACCGGCGAATGGCATTGTCTTCCC' + >>> 'CAAAACCCGGAGCGGCGGCGTGCTGTCGCGTGCCCAATGAATTTTGATGACTCTCGCAAA' + >>> 'CGGGAATCTTGGCTCTTTGCATCGGATGGAAGGACGCAGCGAAATGCGATAAGTGGTGTG' + >>> 'AATTGCAAGATCCCGTGAACCATCGAGTCTTTTGAACGCAAGTTGCGCCCGAGGCCATCA' + >>> 'GGCTAAGGGCACGCCTGCTTGGGCGTCGCGCTTCGTCTCTCTCCTGCCAATGCTTGCCCG' + >>> 'GCATACAGCCAGGCCGGCGTGGTGCGGATGTGAAAGATTGGCCCCTTGTGCCTAGGTGCG' + >>> 'GCGGGTCCAAGAGCTGGTGTTTTGATGGCCCGGAACCCGGCAAGAGGTGGACGGATGCTG' + >>> 'GCAGCAGCTGCCGTGCGAATCCCCCATGTTGTCGTGCTTGTCGGACAGGCAGGAGAACCC' + >>> 'TTCCGAACCCCAATGGAGGGCGGTTGACCGCCATTCGGATGTGACCCCAGGTCAGGCGGG' + >>> 'GGCACCCGCTGAGTTTACGC'] + >>> data_set = BioSequenceLocalDataSet(filepath="ls_orchid.fasta", + >>> load_args={"format": "fasta"}, + >>> save_args={"format": "fasta"}) + >>> data_set.save(raw_sequence_list) + >>> sequence_list = data_set.load() + >>> assert raw_sequence_list.equals(sequence_list) + + """ + + def _describe(self) -> Dict[str, Any]: + return dict( + filepath=self._filepath, + load_args=self._load_args, + save_args=self._save_args, + ) + + def __init__( + self, + filepath: str, + load_args: Optional[Dict[str, Any]] = None, + save_args: Optional[Dict[str, Any]] = None, + ) -> None: + """ + Creates a new instance of ``BioSequenceLocalDataSet`` pointing + to a concrete filepath. + + Args: + filepath: path to sequence file + load_args: Options for loading sequence files. Here you can find + all supported file formats: https://biopython.org/wiki/SeqIO + save_args: args supported by Biopython are 'handle' and 'format'. + Handle by default is equal to ``filepath``. + + """ + self._filepath = filepath + default_load_args = {} + default_save_args = {} + self._load_args = ( + {**default_load_args, **load_args} + if load_args is not None + else default_load_args + ) + self._save_args = ( + {**default_save_args, **save_args} + if save_args is not None + else default_save_args + ) + + def _load(self) -> List: + return list(SeqIO.parse(self._filepath, **self._load_args)) + + def _save(self, data: list) -> None: + save_path = Path(self._filepath) + save_path.parent.mkdir(parents=True, exist_ok=True) + SeqIO.write(data, handle=str(save_path), **self._save_args) + + def _exists(self) -> bool: + return isfile(self._filepath) diff --git a/kedro/contrib/io/catalog_with_default/README.md b/kedro/contrib/io/catalog_with_default/README.md new file mode 100644 index 0000000000..967ad8e350 --- /dev/null +++ b/kedro/contrib/io/catalog_with_default/README.md @@ -0,0 +1,39 @@ +# `DataCatalogWithDefault` class + +`DataCatalogWithDefault` is a `DataCatalog` that will fall back to a default `AbstractDataSet` implementation if the requested key in not already registered in the catalog. +Handy **during development** when you are working with many `DataSet`s which all originate from a source, and you don't want to create a huge `DataCatalog`. + +Now, it is possible to do the following: + +```python +from kedro.contrib.io.catalog_with_default import DataCatalogWithDefault +from kedro.io import ParquetLocalDataSet +from kedro.pipeline import Pipeline, node +from kedro.runner import SequentialRunner + +def default_io(name): + return ParquetLocalDataSet(name) + +catalog = DataCatalogWithDefault({}, + default=default_io, + default_prefix='data/') + +def my_node(input): + return None + +pipeline = Pipeline([ + node(my_node, 'input1', 'output1') + ]) + +SequentialRunner().run(pipeline, catalog) +``` + +This will load `parquet` files from the `data/` local directory, without having to prepopulate your data catalog with anything. + +Less safe during production, very handy during development. + + +### Motivation and Context + +Very useful during development, saves a lot of time. Usually most datasets in a pipeline come from a single-source. + diff --git a/kedro/contrib/io/catalog_with_default/__init__.py b/kedro/contrib/io/catalog_with_default/__init__.py new file mode 100644 index 0000000000..54704af260 --- /dev/null +++ b/kedro/contrib/io/catalog_with_default/__init__.py @@ -0,0 +1,34 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +"""``DataCatalogWithDefault`` is a ``DataCatalog`` that will fall back to a +default ``AbstractDataSet`` implementation if the requested key in not already +registered in the catalog. +""" + +from .data_catalog_with_default import DataCatalogWithDefault # NOQA diff --git a/kedro/contrib/io/catalog_with_default/data_catalog_with_default.py b/kedro/contrib/io/catalog_with_default/data_catalog_with_default.py new file mode 100644 index 0000000000..90ec58b9f6 --- /dev/null +++ b/kedro/contrib/io/catalog_with_default/data_catalog_with_default.py @@ -0,0 +1,200 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +"""A ``DataCatalog`` with a default ``DataSet`` implementation for any data set +which is not registered in the catalog. +""" +from typing import Any, Callable, Dict, Optional + +from kedro.io import AbstractDataSet, DataCatalog + + +class DataCatalogWithDefault(DataCatalog): + """A ``DataCatalog`` with a default ``DataSet`` implementation for any + data set which is not registered in the catalog. + """ + + def __init__( + self, + data_sets: Dict[str, AbstractDataSet] = None, + default: Callable[[str], AbstractDataSet] = None, + remember: bool = False, + ): + """A ``DataCatalog`` with a default ``DataSet`` implementation for any + data set which is not registered in the catalog. + + Args: + data_sets: A dictionary of data set names and data set instances. + default: A callable which accepts a single argument of type string, + the key of the data set, and returns an ``AbstractDataSet``. + ``load`` and ``save`` calls on data sets which are not + registered to the catalog will be delegated to this + ``AbstractDataSet``. + remember: If True, then store in the catalog any + ``AbstractDataSet``s provided by the ``default`` callable + argument. Useful when one want to transition from a + ``DataCatalogWithDefault`` to a ``DataCatalog``: just call + ``DataCatalogWithDefault.to_yaml``, after all required data + sets have been saved/loaded, and use the generated YAML file + with a new ``DataCatalog``. + Raises: + TypeError: If default is not a callable. + + Example: + :: + + >>> from kedro.io import CSVLocalDataSet + >>> + >>> def default_data_set(name): + >>> return CSVLocalDataSet(filepath='data/01_raw/' + name) + >>> + >>> io = DataCatalog(data_sets={}, + >>> default=default_data_set) + >>> + >>> # load the file in data/raw/cars.csv + >>> df = io.load("cars.csv") + """ + super().__init__(data_sets) + + if not callable(default): + raise TypeError( + "Default must be a callable with a single input " + "string argument: the key of the requested data " + "set." + ) + self._default = default + self._remember = remember + + def load(self, name: str) -> Any: + """Loads a registered data set + + Args: + name: A data set to be loaded. + + Returns: + The loaded data as configured. + + Raises: + DataSetNotFoundError: When a data set with the given name + has not yet been registered. + + """ + data_set = self._data_sets.get(name, self._default(name)) + + if self._remember and name not in self._data_sets: + self._data_sets[name] = data_set + + return data_set.load() + + def save(self, name: str, data: Any): + """Save data to a registered data set. + + Args: + name: A data set to be saved to. + data: A data object to be saved as configured in the registered + data set. + + Raises: + DataSetNotFoundError: When a data set with the given name + has not yet been registered. + + """ + data_set = self._data_sets.get(name, self._default(name)) + + if self._remember and name not in self._data_sets: + self._data_sets[name] = data_set + + data_set.save(data) + + @classmethod + def from_config( + cls, + catalog: Optional[Dict[str, Dict[str, Any]]], + credentials: Dict[str, Dict[str, Any]] = None, + load_versions: Dict[str, str] = None, + save_version: str = None, + ): + """To create a ``DataCatalogWithDefault`` from configuration, please + use: + :: + + >>> DataCatalogWithDefault.from_data_catalog( + >>> DataCatalog.from_config(catalog, credentials)) + + Args: + catalog: See ``DataCatalog.from_config`` + credentials: See ``DataCatalog.from_config`` + load_versions: See ``DataCatalog.from_config`` + save_version: See ``DataCatalog.from_config`` + + Raises: + ValueError: If you try to instantiate a ``DataCatalogWithDefault`` + directly with this method. + + """ + raise ValueError( + "Cannot instantiate a `DataCatalogWithDefault` " + "directly from configuration files. Please use" + "``DataCatalogWithDefault.from_data_catalog(" + "DataCatalog.from_config(catalog, " + "credentials))" + ) + + @classmethod + def from_data_catalog( + cls, data_catalog: DataCatalog, default: Callable[[str], AbstractDataSet] + ) -> "DataCatalogWithDefault": + """Convenience factory method to create a ``DataCatalogWithDefault`` + from a ``DataCatalog`` + + A ``DataCatalog`` with a default ``DataSet`` implementation for any + data set which is not registered in the catalog. + + Args: + data_catalog: The ``DataCatalog`` to convert to a + ``DataCatalogWithDefault``. + default: A callable which accepts a single argument of type string, + the key of the data set, and returns an ``AbstractDataSet``. + ``load`` and ``save`` calls on data sets which are not + registered to the catalog will be delegated to this + ``AbstractDataSet``. + + Returns: + A new ``DataCatalogWithDefault`` which contains all the + ``AbstractDataSets`` from the provided data-catalog. + + """ + # pylint: disable=protected-access + return cls({**data_catalog._data_sets}, default) + + def shallow_copy(self) -> "DataCatalogWithDefault": # pragma: no cover + """Returns a shallow copy of the current object. + Returns: + Copy of the current object. + """ + return DataCatalogWithDefault({**self._data_sets}, self._default) diff --git a/kedro/contrib/io/pyspark/README.md b/kedro/contrib/io/pyspark/README.md new file mode 100644 index 0000000000..524ef6c1a4 --- /dev/null +++ b/kedro/contrib/io/pyspark/README.md @@ -0,0 +1,270 @@ +# PySpark + +In this tutorial we talk about how Kedro integrates with `pyspark` using the `SparkDataSet`. + +We also present brief instructions on how to set-up pyspark to read from `AWS S3` and `Azure Blob storage`. + +Relevant API: +[SparkDataSet](https://kedro.readthedocs.io/en/latest/kedro.contrib.io.pyspark.html) + + +## Install spark + +There are two ways of installing pyspark. The first one is to create a python virtual environment and do `pip install pyspark` in there. Doing so allows you to have an isolated installation which you can easily experiment with, +in the expense of having a proper, fully configurable Spark installation (see below). + +If you would like to have full control over Spark's configuration, and you plan on using (scala or python) Spark long-term, we suggest you perform the following steps: + +- Download the latest version of Spark from [hear](https://spark.apache.org/downloads.html) +- Extract your download in an appropriate location. If you are on linux, a good candidate is `/opt` +- If you extracted spark in `/opt/spark-2.3.0-bin-hadoop2.7`, maybe create a symlink: `ln -s /opt/spark-2.3.0-bin-hadoop2.7 /opt/spark` +- Set the following environment variables: +```bash +export SPARK_HOME=/opt/spark +export PATH=${SPARK_HOME}/bin:${PATH} +export PYTHONPATH=${SPARK_HOME}/python:${SPARK_HOME}/python/lib/py4j-0.10.6-src.zip +# change appropriately: +# export PYSPARK_PYTHON=/change/to/appropriate/python/path/bin/python +``` + +> If you have multiple installations of pyspark (eg. a manual one and one after doing `pip install pyspark`), make sure that your python path is appropriately set to first look to your installation of choice. Keep in mind that python will look into multiple places according to the `sys.path` variable, including your virtual environment and the `PYTHONPATH` environment variable. + +- Then you can set system-wide spark configuration in `/opt/spark/conf/...` + +## Initialise spark + +To use pyspark, you should use either the [`findspark` package](https://github.com/minrk/findspark) (install using `pip install findspark`), or add `pyspark` to your python path manually, making also sure to set all appropriate environment variables. Have a look at [this file](https://github.com/minrk/findspark/blob/master/findspark.py) for details. +Then, you can initialise `pyspark` as follows: + + +```python +# uncomment the following two lines if you did not +# install pyspark using `pip install pyspark` + +# import findspark +# findspark.init() + +from pyspark.sql import SparkSession +spark = SparkSession.builder\ + .master("local[*]") \ + .appName("kedro") \ + .getOrCreate() +``` + +## SparkDataSet + +Loading and saving spark `DataFrame`s using Kedro can be easily done using the [`SparkDataSet`](https://kedro.readthedocs.io/en/latest/kedro.contrib.io.pyspark.html) class, as shown below: + +### Load a csv from your local disk + +```python +from kedro.contrib.io.pyspark import SparkDataSet + +csv = SparkDataSet('../data/01_raw/2015_points_old.csv', + file_format='csv', + load_args={'header': True}) + +df = csv.load() \ + .limit(3) \ + .select(['name', 'point_1', 'point_2']) + +df.show() +``` + +### Save it as parquet to your local disk + +```python +parquet = SparkDataSet('../data/01_raw/2015_points_old_parquet', + file_format='parquet', + save_args={'mode': 'overwrite', + 'compression': 'none'}) +parquet.save(df) +``` + +## Using SparkDataSet with the DataCatalog + +Since `SparkDataSet` is a concrete implementation of [`AbstractDataSet`](https://kedro.readthedocs.io/en/latest/kedro.io.AbstractDataSet.html), it integrates nicely with the `DataCatalog` and with Kedro's pipelines. + +Similarly to all other datasets, you can specify your spark datasets in `catalog.yml` as follows: + +#### catalog.yml: + +```yaml +sensor_data: + type: kedro.contrib.io.pyspark.SparkDataSet + path: data/01_raw/sensors_raw + file_format: parquet + load_args: + header: Yes + save_args: + mode: overwrite +``` + + +Then, as previously mentioned you can use this data set as follows: + +```python +from kedro.config import load_config +from kedro.io import DataCatalog + +conf = load_config('path/to/conf') +catalog = DataCatalog.from_config(conf['catalog']) + +df = catalog.load('sensor_data') #df is a pyspark.sql.DataFrame +``` + +## Using `SparkDataSet` with AWS S3 +### Setting-up spark for AWS + +At the time of this writing, the most recent configuration between AWS and Spark known to work well is as follows: + +* Spark 2.3.0 +* hadoop-aws-2.7.5 + +The simplest approach is to download Spark in the /opt directory, extract it, create a symlink /opt/spark pointing to it, and then use `spark-shell` or `spark-submit` with the `--packages` option. +You will also have to exclude the joda-time package, as there are conflicting dependencies: + +In linux: +```bash +cd /opt +wget http://apache.mirror.anlx.net/spark/spark-2.3.0/spark-2.3.0-bin-hadoop2.7.tgz +tar xzf spark-2.3.0-bin-hadoop2.7.tgz +rm spark-2.3.0-bin-hadoop2.7.tgz +ln -s spark-2.3.0-bin-hadoop2.7 spark +cd spark/bin +spark-shell --packages 'org.apache.hadoop:hadoop-aws:2.7.5' --exclude-packages 'joda-time:joda-time' +``` + +Don't forget export in your `~/.bashrc`/`~/bash_profile`/`~/.zshrc` or any other initialisation script Spark's environment variables: +```bash +export SPARK_HOME=/opt/spark +export PATH=${SPARK_HOME}/bin:${PATH} +export PYTHONPATH=${SPARK_HOME}/python:${SPARK_HOME}/python/lib/py4j-0.10.6-src.zip +# change appropriately: +# export PYSPARK_PYTHON=/change/to/appropriate/python/path/bin/python +``` + + +### Configuring Kedro with AWS + + +> Note: If your server is preconfigured to access S3 without the need for credentials (e.g. by storing the credentials in the `.aws` directory), you may skip this step. + + +First, within your kedro project, navigate to the file `conf/local/credentials.yml`, and place in it the following: + +**IMPORTANT:** Credentials should be placed in the `conf/local` directory. This directory is automatically `.gitignored`. As already mentioned earlier, sensitive information **should never** be placed in the `conf/project` directory. + +#### conf/local/credentials.yml +```yaml +aws: + aws_access_key_id: your_access_key + aws_secret_access_key: here_goes_your_secret_key_which_you_should_never_commit_to_git +``` + +Now, during initialisation of the `SparkSession`, configure your `aws` credentials as shown below: + +```python +from kedro.config import load_config +from pyspark.sql import SparkSession +from pyspark import SparkContext + +conf = load_config('path/to/conf') + +aws_access_key_id = conf['credentials']['aws']['aws_access_key_id'] +aws_secret_access_key = conf['credentials']['aws']['aws_secret_access_key'] + +spark = SparkSession.builder\ + .master("local[*]") \ + .appName("kedro") \ + .config("fs.s3a.access.key", aws_access_key_id) \ + .config("fs.s3a.secret.key", aws_secret_access_key) \ + .getOrCreate() +``` + +You should now be able to read data from `aws s3`, using hadoop's `s3a` file system. +Example: + +```python +from kedro.contrib.io.pyspark import SparkDataSet + +bucket_name = 'your-bucket-name' +filepath = 's3a://' + bucket_name + '/dir_with_parquet_files' +aws_parquet = SparkDataSet(filepath, file_format='parquet') +aws_parquet.load() +``` + +## Using `SparkDataSet` with Azure Blob Storage + +### Setting-up spark for Azure + +At the time of this writing, the most recent configuration between Azure and Spark known to work well is as follows: + +* Spark 2.3.0 +* org.apache.hadoop:hadoop-azure:2.7.5 +* com.microsoft.azure:azure-storage:2.2.0 + +The simplest approach is to download Spark in the /opt directory, extract it, create a symlink /opt/spark pointing to it, and then use `spark-shell` or `spark-submit` with the `--packages` option. +In linux: +```bash +cd /opt +wget http://apache.mirror.anlx.net/spark/spark-2.3.0/spark-2.3.0-bin-hadoop2.7.tgz +tar xzf spark-2.3.0-bin-hadoop2.7.tgz +rm spark-2.3.0-bin-hadoop2.7.tgz +ln -s spark-2.3.0-bin-hadoop2.7 spark +cd spark/bin +spark-shell --packages 'org.apache.hadoop:hadoop-azure:2.7.5,com.microsoft.azure:azure-storage:2.2.0' +``` + +Don't forget export in your `~/.bashrc`/`~/bash_profile`/`~/.zshrc` or any other initialisation script Spark's environment variables: +```bash +export SPARK_HOME=/opt/spark +export PATH=${SPARK_HOME}/bin:${PATH} +export PYTHONPATH=${SPARK_HOME}/python:${SPARK_HOME}/python/lib/py4j-0.10.6-src.zip +# change appropriately: +# export PYSPARK_PYTHON=/change/to/appropriate/python/path/bin/python +``` + + +### Configuring Kedro with Azure + +First, within your kedro project, navigate to the file `conf/local/credentials.yml`, and place in it the following: + +**IMPORTANT:** Credentials should be placed in the `conf/local` directory. This directory is automatically `.gitignored`. As already mentioned earlier, sensitive information **should never** be placed in the `conf/project` directory. + +#### conf/local/credentials.yml +```yaml +azure: + account_name: your_account_name + access_key: here_goes_your_long_private_key_which_you_should_never_commit_to_git +``` + +Now, during initialisation of the `SparkSession`, configure your `azure` credentials as shown below: + +```python +from kedro.config import load_config +from pyspark.sql import SparkSession + +conf = load_config('path/to/conf') + +account_name = conf['credentials']['azure']['account_name'] +access_key = conf['credentials']['azure']['access_key'] + +spark = SparkSession.builder\ + .master("local[*]") \ + .appName("kedro") \ + .config('fs.azure.account.key.' + account_name + '.blob.core.windows.net', access_key) \ + .getOrCreate() +``` + +You should now be able to read data from `azure blob storage`, using hadoop's `awsbs` file system. +Example: + +```python +from kedro.contrib.io.pyspark import SparkDataSet + +bucket_name = 'your-bucket-name' +filepath = 'wasbs://' + bucket_name + '@' + account_name + '.blob.core.windows.net/dir_with_parquet_files' +azure_parquet = SparkDataSet(filepath, file_format='parquet') +azure_parquet.load() +``` diff --git a/kedro/contrib/io/pyspark/__init__.py b/kedro/contrib/io/pyspark/__init__.py new file mode 100644 index 0000000000..c78b942cc6 --- /dev/null +++ b/kedro/contrib/io/pyspark/__init__.py @@ -0,0 +1,31 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. +"""kedro.contrib.io.pyspark provides I/O modules for Apache Spark.""" + +from .spark_data_set import SparkDataSet # NOQA +from .spark_jdbc import SparkJDBCDataSet # NOQA diff --git a/kedro/contrib/io/pyspark/spark_data_set.py b/kedro/contrib/io/pyspark/spark_data_set.py new file mode 100644 index 0000000000..cab1e44f0c --- /dev/null +++ b/kedro/contrib/io/pyspark/spark_data_set.py @@ -0,0 +1,134 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +"""``AbstractDataSet`` implementation to access Spark data frames using +``pyspark`` +""" + +import pickle +from typing import Any, Dict, Optional + +from pyspark.sql import DataFrame, SparkSession +from pyspark.sql.utils import AnalysisException + +from kedro.io import AbstractDataSet, ExistsMixin + + +class SparkDataSet(AbstractDataSet, ExistsMixin): + """``SparkDataSet`` loads and saves Spark data frames. + + Example: + :: + + >>> from pyspark.sql import SparkSession + >>> from pyspark.sql.types import (StructField, StringType, + >>> IntegerType, StructType) + >>> + >>> from kedro.contrib.io.pyspark import SparkDataSet + >>> + >>> schema = StructType([StructField("name", StringType(), True), + >>> StructField("age", IntegerType(), True)]) + >>> + >>> data = [('Alex', 31), ('Bob', 12), ('Clarke', 65), ('Dave', 29)] + >>> + >>> spark_df = SparkSession.builder.getOrCreate()\ + >>> .createDataFrame(data, schema) + >>> + >>> data_set = SparkDataSet(filepath="test_data") + >>> data_set.save(spark_df) + >>> reloaded = data_set.load() + >>> + >>> reloaded.take(4) + """ + + def _describe(self) -> Dict[str, Any]: + return dict( + filepath=self._filepath, + file_format=self._file_format, + load_args=self._load_args, + save_args=self._save_args, + ) + + def __init__( + self, + filepath: str, + file_format: str = "parquet", + load_args: Optional[Dict[str, Any]] = None, + save_args: Optional[Dict[str, Any]] = None, + ) -> None: + """Creates a new instance of ``SparkDataSet``. + + Args: + filepath: path to a Spark data frame. + file_format: file format used during load and save + operations. These are formats supported by the running + SparkContext include parquet, csv. For a list of supported + formats please refer to Apache Spark documentation at + https://spark.apache.org/docs/latest/sql-programming-guide.html + load_args: Load args passed to Spark DataFrameReader load method. + It is dependent on the selected file format. You can find + a list of read options for each supported format + in Spark DataFrame read documentation: + https://spark.apache.org/docs/latest/api/python/pyspark.sql.html#pyspark.sql.DataFrame + save_args: Save args passed to Spark DataFrame write options. + Similar to load_args this is dependent on the selected file + format. You can pass ``mode`` and ``partitionBy`` to specify + your overwrite mode and partitioning respectively. You can find + a list of options for each format in Spark DataFrame + write documentation: + https://spark.apache.org/docs/latest/api/python/pyspark.sql.html#pyspark.sql.DataFrame + """ + + self._filepath = filepath + self._file_format = file_format + self._load_args = load_args if load_args is not None else {} + self._save_args = save_args if save_args is not None else {} + + @staticmethod + def _get_spark(): + return SparkSession.builder.getOrCreate() + + def _load(self) -> DataFrame: + return self._get_spark().read.load( + self._filepath, self._file_format, **self._load_args + ) + + def _save(self, data: DataFrame) -> None: + data.write.save(self._filepath, self._file_format, **self._save_args) + + def _exists(self) -> bool: + try: + self._get_spark().read.load(self._filepath, self._file_format) + except AnalysisException as exception: + if exception.desc.startswith("Path does not exist:"): + return False + raise + return True + + def __getstate__(self): + raise pickle.PicklingError("PySpark datasets can't be serialized") diff --git a/kedro/contrib/io/pyspark/spark_jdbc.py b/kedro/contrib/io/pyspark/spark_jdbc.py new file mode 100644 index 0000000000..a087fd3982 --- /dev/null +++ b/kedro/contrib/io/pyspark/spark_jdbc.py @@ -0,0 +1,164 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. +"""SparkJDBCDataSet to load and save a PySpark DataFrame via JDBC.""" +import pickle +from typing import Any, Dict, Optional + +from pyspark.sql import DataFrame, SparkSession + +from kedro.io import AbstractDataSet, DataSetError + +__all__ = ["SparkJDBCDataSet"] + + +class SparkJDBCDataSet(AbstractDataSet): + """``SparkJDBCDataSet`` loads data from a database table accessible + via JDBC URL url and connection properties and saves the content of + a PySpark DataFrame to an external database table via JDBC. It uses + ``pyspark.sql.DataFrameReader`` and ``pyspark.sql.DataFrameWriter`` + internally, so it supports all allowed PySpark options on ``jdbc``. + + + Example: + :: + + >>> import pandas as pd + >>> + >>> from pyspark.sql import SparkSession + >>> + >>> spark = SparkSession.builder.getOrCreate() + >>> data = spark.createDataFrame(pd.DataFrame({'col1': [1, 2], + >>> 'col2': [4, 5], + >>> 'col3': [5, 6]})) + >>> url = 'jdbc:postgresql://localhost/test' + >>> table = 'table_a' + >>> connection_properties = {'driver': 'org.postgresql.Driver'} + >>> data_set = SparkJDBCDataSet( + >>> url=url, table=table, credentials={'user': 'scott', + >>> 'password': 'tiger'}, + >>> load_args={'properties': connection_properties}, + >>> save_args={'properties': connection_properties}) + >>> + >>> data_set.save(data) + >>> reloaded = data_set.load() + >>> + >>> assert data.toPandas().equals(reloaded.toPandas()) + + """ + + def _describe(self) -> Dict[str, Any]: + load_args = self._load_args + save_args = self._save_args + + # Remove user and password values from load and save properties. + if "properties" in load_args: + load_properties = load_args["properties"].copy() + load_properties.pop("user", None) + load_properties.pop("password", None) + load_args = {**load_args, "properties": load_properties} + if "properties" in save_args: + save_properties = save_args["properties"].copy() + save_properties.pop("user", None) + save_properties.pop("password", None) + save_args = {**save_args, "properties": save_properties} + + return dict( + url=self._url, table=self._table, load_args=load_args, save_args=save_args + ) + + # pylint: disable=too-many-arguments + def __init__( + self, + url: str, + table: str, + credentials: Optional[Dict[str, Any]] = None, + load_args: Optional[Dict[str, Any]] = None, + save_args: Optional[Dict[str, Any]] = None, + ) -> None: + """Creates a new ``SparkJDBCDataSet``. + + Args: + url: A JDBC URL of the form ``jdbc:subprotocol:subname``. + table: The name of the table to load or save data to. + credentials: A dictionary of JDBC database connection arguments. + Normally at least properties ``user`` and ``password`` with + their corresponding values. It updates ``properties`` + parameter in ``load_args`` and ``save_args`` in case it is + provided. + load_args: Provided to underlying PySpark ``jdbc`` function along + with the JDBC URL and the name of the table. To find all + supported arguments, see here: + https://spark.apache.org/docs/latest/api/python/pyspark.sql.html?highlight=jdbc#pyspark.sql.DataFrameReader.jdbc + save_args: Provided to underlying PySpark ``jdbc`` function along + with the JDBC URL and the name of the table. To find all + supported arguments, see here: + https://spark.apache.org/docs/latest/api/python/pyspark.sql.html?highlight=jdbc#pyspark.sql.DataFrameWriter.jdbc + + Raises: + DataSetError: When either ``url`` or ``table`` is empty. + + """ + + if not url: + raise DataSetError( + "`url` argument cannot be empty. Please " + "provide a JDBC URL of the form " + "``jdbc:subprotocol:subname``." + ) + + if not table: + raise DataSetError( + "`table` argument cannot be empty. Please " + "provide the name of the table to load or save " + "data to." + ) + + self._url = url + self._table = table + self._load_args = load_args if load_args is not None else {} + self._save_args = save_args if save_args is not None else {} + + # Update properties in load_args and save_args with credentials. + if credentials is not None: + load_properties = self._load_args.get("properties", {}) + save_properties = self._save_args.get("properties", {}) + self._load_args["properties"] = {**load_properties, **credentials} + self._save_args["properties"] = {**save_properties, **credentials} + + @staticmethod + def _get_spark(): + return SparkSession.builder.getOrCreate() + + def _load(self) -> DataFrame: + return self._get_spark().read.jdbc(self._url, self._table, **self._load_args) + + def _save(self, data: DataFrame) -> None: + return data.write.jdbc(self._url, self._table, **self._save_args) + + def __getstate__(self): + raise pickle.PicklingError("PySpark datasets can't be serialized") diff --git a/kedro/io/__init__.py b/kedro/io/__init__.py new file mode 100644 index 0000000000..a426a63748 --- /dev/null +++ b/kedro/io/__init__.py @@ -0,0 +1,55 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +"""``kedro.io`` provides functionality to read and write to a +number of data sets. At core of the library is ``AbstractDataSet`` +which allows implementation of various ``AbstractDataSet``s. +""" + +from .core import AbstractDataSet # NOQA +from .core import DataSetAlreadyExistsError # NOQA +from .core import DataSetError # NOQA +from .core import DataSetNotFoundError # NOQA +from .core import ExistsMixin # NOQA +from .core import FilepathVersionMixIn # NOQA +from .core import S3PathVersionMixIn # NOQA +from .core import Version # NOQA +from .csv_local import CSVLocalDataSet # NOQA +from .csv_s3 import CSVS3DataSet # NOQA +from .data_catalog import DataCatalog # NOQA +from .excel_local import ExcelLocalDataSet # NOQA +from .hdf_local import HDFLocalDataSet # NOQA +from .json_local import JSONLocalDataSet # NOQA +from .lambda_data_set import LambdaDataSet # NOQA +from .memory_data_set import MemoryDataSet # NOQA +from .parquet_local import ParquetLocalDataSet # NOQA +from .pickle_local import PickleLocalDataSet # NOQA +from .pickle_s3 import PickleS3DataSet # NOQA +from .sql import SQLQueryDataSet # NOQA +from .sql import SQLTableDataSet # NOQA +from .text_local import TextLocalDataSet # NOQA diff --git a/kedro/io/core.py b/kedro/io/core.py new file mode 100644 index 0000000000..59a355b5be --- /dev/null +++ b/kedro/io/core.py @@ -0,0 +1,450 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +"""This module provides a set of classes which underpin the data loading and +saving functionality provided by ``kedro.io``. +""" + +import abc +import copy +import logging +from collections import namedtuple +from datetime import datetime, timezone +from glob import iglob +from pathlib import Path, PurePosixPath +from typing import Any, Dict, Type +from warnings import warn + +from kedro.utils import load_obj + +MAX_DESCRIPTION_LENGTH = 70 +VERSIONED_FLAG_KEY = "versioned" +VERSION_KEY = "version" + + +class DataSetError(Exception): + """``DataSetError`` raised by ``AbstractDataSet`` implementations + in case of failure of input/output methods. + + ``AbstractDataSet`` implementations should provide instructive + information in case of failure. + """ + + pass + + +class DataSetNotFoundError(DataSetError): + """``DataSetNotFoundError`` raised by ``DataCatalog`` class in case of + trying to use a non-existing data set. + """ + + pass + + +class DataSetAlreadyExistsError(DataSetError): + """``DataSetAlreadyExistsError`` raised by ``DataCatalog`` class in case + of trying to add a data set which already exists in the ``DataCatalog``. + """ + + pass + + +class AbstractDataSet(abc.ABC): + """``AbstractDataSet`` is the base class for all data set implementations. + All data set implementations should extend this abstract class + and implement the methods marked as abstract. + + Example: + :: + + >>> from kedro.io import AbstractDataSet + >>> import pandas as pd + >>> + >>> class MyOwnDataSet(AbstractDataSet): + >>> def __init__(self, param1, param2): + >>> self._param1 = param1 + >>> self._param2 = param2 + >>> + >>> def _load(self) -> pd.DataFrame: + >>> print("Dummy load: {}".format(self._param1)) + >>> return pd.DataFrame() + >>> + >>> def _save(self, df: pd.DataFrame) -> None: + >>> print("Dummy save: {}".format(self._param2)) + >>> + >>> def _describe(self): + >>> return dict(param1=self._param1, param2=self._param2) + """ + + @classmethod + def from_config( + cls: Type, + name: str, + config: Dict[str, Any], + load_version: str = None, + save_version: str = None, + ) -> "AbstractDataSet": + """Create a data set instance using the configuration provided. + + Args: + name: Data set name. + config: Data set config dictionary. + load_version: Version string to be used for ``load`` operation if + the data set is versioned. Has no effect on the data set + if versioning was not enabled. + save_version: Version string to be used for ``save`` operation if + the data set is versioned. Has no effect on the data set + if versioning was not enabled. + + Returns: + An instance of an ``AbstractDataSet`` subclass. + + Raises: + DataSetError: When the function fails to create the data set + from its config. + + """ + config = copy.deepcopy(config) + save_version = save_version or generate_current_version() + + if VERSION_KEY in config: + # remove "version" key so that it's not passed + # to the 'unversioned' data set constructor + message = ( + "`%s` attribute removed from `%s` data set " + "configuration since it is a reserved word and cannot " + "be directly specified", + VERSION_KEY, + name, + ) + logging.getLogger(__name__).warning(*message) + del config[VERSION_KEY] + if config.pop(VERSIONED_FLAG_KEY, False): # data set is versioned + config[VERSION_KEY] = Version(load_version, save_version) + + dataset_class_path = config.pop("type") + try: + class_obj = load_obj(dataset_class_path, "kedro.io") + except ImportError: + raise DataSetError( + "Cannot import module when trying to load type " + "`{}` for DataSet `{}`.".format(dataset_class_path, name) + ) + except AttributeError: + raise DataSetError( + "Class `{}` for DataSet `{}` not found.".format( + dataset_class_path, name + ) + ) + + if not issubclass(class_obj, AbstractDataSet): + raise DataSetError( + "DataSet '{}' type `{}.{}` is invalid: " + "all data set types must extend " + "`AbstractDataSet`.".format( + name, class_obj.__module__, class_obj.__qualname__ + ) + ) + try: + data_set = class_obj(**config) + except TypeError as err: + raise DataSetError( + "\n{}.\nDataSet '{}' must only contain " + "arguments valid for the constructor " + "of `{}.{}`.".format( + str(err), name, class_obj.__module__, class_obj.__qualname__ + ) + ) + except Exception as err: + raise DataSetError( + "\n{}.\nFailed to instantiate DataSet " + "'{}' of type `{}.{}`.".format( + str(err), name, class_obj.__module__, class_obj.__qualname__ + ) + ) + return data_set + + def load(self) -> Any: + """Loads data by delegation to the provided load method. + + Returns: + Data returned by the provided load method. + + Raises: + DataSetError: When underlying load method raises error. + + """ + + try: + logging.getLogger(__name__).debug("Loading %s", str(self)) + return self._load() + except DataSetError: + raise + except Exception as exc: + # This exception handling is by design as the composed data sets + # can throw any type of exception. + message = "Failed while loading data from data set {}.\n{}".format( + str(self), str(exc) + ) + raise DataSetError(message) from exc + + def save(self, data: Any) -> None: + """Saves data by delegation to the provided save method. + + Args: + data: the value to be saved by provided save method. + + Raises: + DataSetError: when underlying save method raises error. + + """ + + if data is None: + raise DataSetError("Saving `None` to a `DataSet` is not allowed") + + try: + logging.getLogger(__name__).debug("Saving %s", str(self)) + self._save(data) + except DataSetError: + raise + except Exception as exc: + message = "Failed while saving data to data set {}.\n{}".format( + str(self), str(exc) + ) + raise DataSetError(message) from exc + + def __str__(self): + def _to_str(obj, is_root=False): + """Returns a string representation where + 1. The root level (i.e. the DataSet.__init__ arguments) are + formatted like DataSet(key=value). + 2. Dictionaries have the keys alphabetically sorted recursively. + 3. Empty dictionaries and None values are not shown. + 4. String representations of dictionary values are + capped to MAX_DESCRIPTION_LENGTH. + """ + + fmt = "{}={}" if is_root else "'{}': {}" # 1 + + if isinstance(obj, dict): + sorted_dict = sorted(obj.items(), key=lambda pair: str(pair[0])) # 2 + + text = ", ".join( + fmt.format(key, _to_str(value)) # 2 + for key, value in sorted_dict + if value or isinstance(value, bool) + ) # 3 + + return text if is_root else "{" + text + "}" # 1 + + # not a dictionary + value = str(obj) + suffix = "" if len(value) <= MAX_DESCRIPTION_LENGTH else "..." + return value[:MAX_DESCRIPTION_LENGTH] + suffix # 4 + + return "{}({})".format(type(self).__name__, _to_str(self._describe(), True)) + + @abc.abstractmethod + def _load(self) -> Any: + raise NotImplementedError( + "`{}` is a subclass of AbstractDataSet and" + "it must implement the `_load` method".format(self.__class__.__name__) + ) + + @abc.abstractmethod + def _save(self, data: Any) -> None: + raise NotImplementedError( + "`{}` is a subclass of AbstractDataSet and" + "it must implement the `_save` method".format(self.__class__.__name__) + ) + + @abc.abstractmethod + def _describe(self) -> Dict[str, Any]: + raise NotImplementedError( + "`{}` is a subclass of AbstractDataSet and" + "it must implement the `_describe` method".format(self.__class__.__name__) + ) + + +class ExistsMixin(abc.ABC): + """Mixin class which provides an exists() method.""" + + def exists(self) -> bool: + """Checks whether a data set's output already exists by calling + the provided _exists() method. + + Returns: + Flag indicating whether the output already exists. + + Raises: + DataSetError: when underlying exists method raises error. + + """ + try: + logging.getLogger(__name__).debug( + "Checking whether target of %s exists", str(self) + ) + return self._exists() + except Exception as exc: + message = "Failed during exists check for data set {}.\n{}".format( + str(self), str(exc) + ) + raise DataSetError(message) from exc + + @abc.abstractmethod + def _exists(self) -> bool: + raise NotImplementedError( + "`{}` inherits from ExistsMixin and " + "it must implement the `_exists` method".format(self.__class__.__name__) + ) + + +def generate_current_version() -> str: + """Generate the current version to be used by versioned data sets. + + Returns: + String representation of the current version. + + """ + current_ts = datetime.now(tz=timezone.utc) + fmt = ( + "{d.year:04d}-{d.month:02d}-{d.day:02d}T{d.hour:02d}" + ".{d.minute:02d}.{d.second:02d}.{ms:03d}Z" + ) + return fmt.format(d=current_ts, ms=current_ts.microsecond // 1000) + + +class Version(namedtuple("Version", ["load", "save"])): + """This namedtuple is used to provide load and save versions for versioned + data sets. If ``Version.load`` is None, then the latest available version + is loaded. If ``Version.save`` is None, then save version is formatted as + YYYY-MM-DDThh.mm.ss.sssZ of the current timestamp. + """ + + __slots__ = () + + +_PATH_CONSISTENCY_WARNING = ( + "Save path `{}` did not match load path `{}` for {}. This is strongly " + "discouraged due to inconsistencies it may cause between `save` and " + "`load` operations. Please refrain from setting exact load version for " + "intermediate data sets where possible to avoid this warning." +) + + +# pylint: disable=too-few-public-methods +class FilepathVersionMixIn: + """Mixin class which helps to version filepath-like data sets.""" + + def _get_load_path(self, filepath: str, version: Version = None) -> str: + if not version: + return filepath + if version.load: + return self._get_versioned_path(filepath, version.load) + pattern = self._get_versioned_path(filepath, "*") + paths = [f for f in iglob(pattern) if Path(f).exists()] + if not paths: + message = "Did not find any versions for {}".format(str(self)) + raise DataSetError(message) + return sorted(paths, reverse=True)[0] + + def _get_save_path(self, filepath: str, version: Version = None) -> str: + if not version: + return filepath + save_version = version.save or generate_current_version() + versioned_path = self._get_versioned_path(filepath, save_version) + if Path(versioned_path).exists(): + message = ( + "Save path `{}` for {} must not exist if versioning " + "is enabled.".format(versioned_path, str(self)) + ) + raise DataSetError(message) + return versioned_path + + @staticmethod + def _get_versioned_path(filepath: str, version: str) -> str: + filepath = Path(filepath) + return str(filepath / version / filepath.name) + + def _check_paths_consistency(self, load_path: str, save_path: str): + if load_path != save_path: + warn(_PATH_CONSISTENCY_WARNING.format(save_path, load_path, str(self))) + + +# pylint: disable=too-few-public-methods +class S3PathVersionMixIn: + """Mixin class which helps to version S3 data sets.""" + + def _get_load_path( + self, client: Any, bucket: str, filepath: str, version: Version = None + ) -> str: + if not version: + return filepath + if version.load: + return self._get_versioned_path(filepath, version.load) + prefix = filepath if filepath.endswith("/") else filepath + "/" + keys = list(self._list_objects(client, bucket, prefix)) + if not keys: + message = "Did not find any versions for {}".format(str(self)) + raise DataSetError(message) + return sorted(keys, reverse=True)[0] + + def _get_save_path( + self, client: Any, bucket: str, filepath: str, version: Version = None + ) -> str: + if not version: + return filepath + save_version = version.save or generate_current_version() + versioned_path = self._get_versioned_path(filepath, save_version) + if versioned_path in self._list_objects(client, bucket, versioned_path): + message = ( + "Save path `{}` for {} must not exist if versioning " + "is enabled.".format(versioned_path, str(self)) + ) + raise DataSetError(message) + return versioned_path + + def _check_paths_consistency(self, load_path: str, save_path: str): + if load_path != save_path: + warn(_PATH_CONSISTENCY_WARNING.format(save_path, load_path, str(self))) + + @staticmethod + def _get_versioned_path(filepath: str, version: str) -> str: + filepath = PurePosixPath(filepath) + return str(filepath / version / filepath.name) + + @staticmethod + def _list_objects(client: Any, bucket: str, prefix: str): + paginator = client.get_paginator("list_objects_v2") + page_iterator = paginator.paginate(Bucket=bucket, Prefix=prefix) + for page in page_iterator: + yield from ( + obj["Key"] + for obj in page.get("Contents", []) + if not obj["Key"].endswith("/") + ) diff --git a/kedro/io/csv_local.py b/kedro/io/csv_local.py new file mode 100644 index 0000000000..c2f6aaaf9a --- /dev/null +++ b/kedro/io/csv_local.py @@ -0,0 +1,137 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +"""``CSVLocalDataSet`` loads and saves data to a local csv file. The +underlying functionality is supported by pandas, so it supports all +allowed pandas options for loading and saving csv files. +""" +from pathlib import Path +from typing import Any, Dict + +import pandas as pd + +from kedro.io.core import ( + AbstractDataSet, + DataSetError, + ExistsMixin, + FilepathVersionMixIn, + Version, +) + + +class CSVLocalDataSet(AbstractDataSet, ExistsMixin, FilepathVersionMixIn): + """``CSVLocalDataSet`` loads and saves data to a local csv file. The + underlying functionality is supported by pandas, so it supports all + allowed pandas options for loading and saving csv files. + + Example: + :: + + >>> from kedro.io import CSVLocalDataSet + >>> import pandas as pd + >>> + >>> data = pd.DataFrame({'col1': [1, 2], 'col2': [4, 5], + >>> 'col3': [5, 6]}) + >>> data_set = CSVLocalDataSet(filepath="test.csv", + >>> load_args=None, + >>> save_args={"index": False}) + >>> data_set.save(data) + >>> reloaded = data_set.load() + >>> + >>> assert data.equals(reloaded) + + """ + + def _describe(self) -> Dict[str, Any]: + return dict( + filepath=self._filepath, + load_args=self._load_args, + save_args=self._save_args, + version=self._version, + ) + + def __init__( + self, + filepath: str, + load_args: Dict[str, Any] = None, + save_args: Dict[str, Any] = None, + version: Version = None, + ) -> None: + """Creates a new instance of ``CSVLocalDataSet`` pointing to a concrete + filepath. + + Args: + filepath: path to a csv file. + load_args: Pandas options for loading csv files. + Here you can find all available arguments: + https://pandas.pydata.org/pandas-docs/stable/generated/pandas.read_csv.html + All defaults are preserved. + save_args: Pandas options for saving csv files. + Here you can find all available arguments: + https://pandas.pydata.org/pandas-docs/stable/generated/pandas.DataFrame.to_csv.html + All defaults are preserved, but "index", which is set to False. + version: If specified, should be an instance of + ``kedro.io.core.Version``. If its ``load`` attribute is + None, the latest version will be loaded. If its ``save`` + attribute is None, save version will be autogenerated. + """ + default_save_args = {"index": False} + default_load_args = {} + self._filepath = filepath + self._load_args = ( + {**default_load_args, **load_args} + if load_args is not None + else default_load_args + ) + self._save_args = ( + {**default_save_args, **save_args} + if save_args is not None + else default_save_args + ) + self._version = version + + def _load(self) -> pd.DataFrame: + load_path = self._get_load_path(self._filepath, self._version) + return pd.read_csv(load_path, **self._load_args) + + def _save(self, data: pd.DataFrame) -> None: + save_path = Path(self._get_save_path(self._filepath, self._version)) + save_path.parent.mkdir(parents=True, exist_ok=True) + data.to_csv(str(save_path), **self._save_args) + + load_path = Path(self._get_load_path(self._filepath, self._version)) + self._check_paths_consistency( + str(load_path.absolute()), str(save_path.absolute()) + ) + + def _exists(self) -> bool: + try: + path = self._get_load_path(self._filepath, self._version) + except DataSetError: + return False + return Path(path).is_file() diff --git a/kedro/io/csv_s3.py b/kedro/io/csv_s3.py new file mode 100644 index 0000000000..cba4730606 --- /dev/null +++ b/kedro/io/csv_s3.py @@ -0,0 +1,159 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +"""``CSVS3DataSet`` loads and saves data to a file in S3. It uses s3fs +to read and write from S3 and pandas to handle the csv file. +""" +from typing import Any, Dict, Optional + +import pandas as pd +from s3fs.core import S3FileSystem + +from kedro.io.core import ( + AbstractDataSet, + DataSetError, + ExistsMixin, + S3PathVersionMixIn, + Version, +) + + +class CSVS3DataSet(AbstractDataSet, ExistsMixin, S3PathVersionMixIn): + """``CSVS3DataSet`` loads and saves data to a file in S3. It uses s3fs + to read and write from S3 and pandas to handle the csv file. + + Example: + :: + + >>> from kedro.io import CSVS3DataSet + >>> import pandas as pd + >>> + >>> data = pd.DataFrame({'col1': [1, 2], 'col2': [4, 5], + >>> 'col3': [5, 6]}) + >>> + >>> data_set = CSVS3DataSet(filepath="test.csv", + >>> bucket_name="test_bucket", + >>> load_args=None, + >>> save_args={"index": False}) + >>> data_set.save(data) + >>> reloaded = data_set.load() + >>> + >>> assert data.equals(reloaded) + """ + + def _describe(self) -> Dict[str, Any]: + return dict( + filepath=self._filepath, + bucket_name=self._bucket_name, + load_args=self._load_args, + save_args=self._save_args, + version=self._version, + ) + + # pylint: disable=too-many-arguments + def __init__( + self, + filepath: str, + bucket_name: str, + credentials: Optional[Dict[str, Any]] = None, + load_args: Optional[Dict[str, Any]] = None, + save_args: Optional[Dict[str, Any]] = None, + version: Version = None, + ) -> None: + """Creates a new instance of ``CSVS3DataSet`` pointing to a concrete + csv file on S3. + + Args: + filepath: Path to a csv file. + bucket_name: S3 bucket name. + credentials: Credentials to access the S3 bucket, such as + ``aws_access_key_id``, ``aws_secret_access_key``. + load_args: Pandas options for loading csv files. + Here you can find all available arguments: + https://pandas.pydata.org/pandas-docs/stable/generated/pandas.read_csv.html + All defaults are preserved. + save_args: Pandas options for saving csv files. + Here you can find all available arguments: + https://pandas.pydata.org/pandas-docs/stable/generated/pandas.DataFrame.to_csv.html + All defaults are preserved, but "index", which is set to False. + version: If specified, should be an instance of + ``kedro.io.core.Version``. If its ``load`` attribute is + None, the latest version will be loaded. If its ``save`` + attribute is None, save version will be autogenerated. + + """ + default_save_args = {"index": False} + self._save_args = ( + {**default_save_args, **save_args} if save_args else default_save_args + ) + self._load_args = load_args if load_args else {} + self._filepath = filepath + self._bucket_name = bucket_name + self._credentials = credentials if credentials else {} + self._version = version + self._s3 = S3FileSystem(client_kwargs=self._credentials) + + @property + def _client(self): + return self._s3.s3 + + def _load(self) -> pd.DataFrame: + load_key = self._get_load_path( + self._client, self._bucket_name, self._filepath, self._version + ) + + with self._s3.open( + "{}/{}".format(self._bucket_name, load_key), mode="rb" + ) as s3_file: + return pd.read_csv(s3_file) + + def _save(self, data: pd.DataFrame) -> None: + save_key = self._get_save_path( + self._client, self._bucket_name, self._filepath, self._version + ) + + with self._s3.open( + "{}/{}".format(self._bucket_name, save_key), mode="wb" + ) as s3_file: + # Only binary read and write modes are implemented for S3Files + s3_file.write(data.to_csv(**self._save_args).encode("utf8")) + + load_key = self._get_load_path( + self._client, self._bucket_name, self._filepath, self._version + ) + self._check_paths_consistency(load_key, save_key) + + def _exists(self) -> bool: + try: + load_key = self._get_load_path( + self._client, self._bucket_name, self._filepath, self._version + ) + except DataSetError: + return False + args = (self._client, self._bucket_name, load_key) + return any(key == load_key for key in self._list_objects(*args)) diff --git a/kedro/io/data_catalog.py b/kedro/io/data_catalog.py new file mode 100644 index 0000000000..e408d837c8 --- /dev/null +++ b/kedro/io/data_catalog.py @@ -0,0 +1,444 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. +"""``DataCatalog`` stores instances of ``AbstractDataSet`` implementations to +provide ``load`` and ``save`` capabilities from anywhere in the program. To +use a ``DataCatalog``, you need to instantiate it with a dictionary of data +sets. Then it will act as a single point of reference for your calls, +relaying load and save functions to the underlying data sets. +""" +import copy +import logging +from typing import Any, Dict, List, Optional, Type + +from kedro.io.core import ( + AbstractDataSet, + DataSetAlreadyExistsError, + DataSetError, + DataSetNotFoundError, + generate_current_version, +) +from kedro.io.memory_data_set import MemoryDataSet + +CATALOG_KEY = "catalog" +CREDENTIALS_KEY = "credentials" + + +def _get_credentials(credentials_name: str, credentials: Dict) -> Dict: + """Return a set of credentials from the provided credentials dict. + + Args: + credentials_name: Credentials name. + credentials: A dictionary with all credentials. + + Returns: + The set of requested credentials. + + Raises: + KeyError: When a data set with the given name has not yet been + registered. + + """ + try: + return credentials[credentials_name] + except KeyError: + raise KeyError( + "Unable to find credentials '{}': check your data " + "catalog and credentials configuration. See " + "https://kedro.readthedocs.io/en/latest/kedro.io.DataCatalog.html " + "for an example.".format(credentials_name) + ) + + +class DataCatalog: + """``DataCatalog`` stores instances of ``AbstractDataSet`` implementations + to provide ``load`` and ``save`` capabilities from anywhere in the + program. To use a ``DataCatalog``, you need to instantiate it with + a dictionary of data sets. Then it will act as a single point of reference + for your calls, relaying load and save functions + to the underlying data sets. + """ + + def __init__( + self, + data_sets: Dict[str, AbstractDataSet] = None, + feed_dict: Dict[str, Any] = None, + ) -> None: + """``DataCatalog`` stores instances of ``AbstractDataSet`` + implementations to provide ``load`` and ``save`` capabilities from + anywhere in the program. To use a ``DataCatalog``, you need to + instantiate it with a dictionary of data sets. Then it will act as a + single point of reference for your calls, relaying load and save + functions to the underlying data sets. + + Args: + data_sets: A dictionary of data set names and data set instances. + feed_dict: A feed dict with data to be added in memory. + + Example: + :: + + >>> from kedro.io import CSVLocalDataSet + >>> + >>> cars = CSVLocalDataSet(filepath="cars.csv", + >>> load_args=None, + >>> save_args={"index": False}) + >>> io = DataCatalog(data_sets={'cars': cars}) + """ + self._data_sets = data_sets or {} + if feed_dict: + self.add_feed_dict(feed_dict) + + @property + def _logger(self): + return logging.getLogger(__name__) + + @classmethod + def from_config( + cls: Type, + catalog: Optional[Dict[str, Dict[str, Any]]], + credentials: Dict[str, Dict[str, Any]] = None, + load_versions: Dict[str, str] = None, + save_version: str = None, + ) -> "DataCatalog": + """Create a ``DataCatalog`` instance from configuration. This is a + factory method used to provide developers with a way to instantiate + ``DataCatalog`` with configuration parsed from configuration files. + + Args: + catalog: A dictionary whose keys are the data set names and + the values are dictionaries with the constructor arguments + for classes implementing ``AbstractDataSet``. The data set + class to be loaded is specified with the key ``type`` and their + fully qualified class name. All ``kedro.io`` data set can be + specified by their class name only, i.e. their module name + can be omitted. + credentials: A dictionary containing credentials for different + data sets. Use the ``credentials`` key in a ``AbstractDataSet`` + to refer to the appropriate credentials as shown in the example + below. + load_versions: A mapping between dataset names and versions + to load. Has no effect on data sets without enabled versioning. + save_version: Version string to be used for ``save`` operations + by all data sets with enabled versioning. It must: a) be a + case-insensitive string that conforms with operating system + filename limitations, b) always return the latest version when + sorted in lexicographical order. + + Returns: + An instantiated ``DataCatalog`` containing all specified + data sets, created and ready to use. + + Raises: + DataSetError: When the method fails to create any of the data + sets from their config. + + Example: + :: + + >>> config = { + >>> "cars": { + >>> "type": "CSVLocalDataSet", + >>> "filepath": "cars.csv", + >>> "save_args": { + >>> "index": False + >>> } + >>> }, + >>> "boats": { + >>> "type": "CSVS3DataSet", + >>> "filepath": "boats.csv", + >>> "bucket_name": "mck-147789798-bucket", + >>> "credentials": "boats_credentials" + >>> "save_args": { + >>> "index": False + >>> } + >>> } + >>> } + >>> + >>> credentials = { + >>> "boats_credentials": { + >>> "aws_access_key_id": "<your key id>", + >>> "aws_secret_access_key": "<your secret>" + >>> } + >>> } + >>> + >>> catalog = DataCatalog.from_config(config, credentials) + >>> + >>> df = catalog.load("cars") + >>> catalog.save("boats", df) + """ + data_sets = {} + catalog = copy.deepcopy(catalog) or {} + credentials = copy.deepcopy(credentials) or {} + save_version = save_version or generate_current_version() + load_versions = copy.deepcopy(load_versions) or {} + + for ds_name, ds_config in catalog.items(): + if "type" not in ds_config: + raise DataSetError( + "`type` is missing from DataSet '{}' " + "catalog configuration".format(ds_name) + ) + if CREDENTIALS_KEY in ds_config: + ds_config[CREDENTIALS_KEY] = _get_credentials( + ds_config.pop(CREDENTIALS_KEY), credentials # credentials name + ) + data_sets[ds_name] = AbstractDataSet.from_config( + ds_name, ds_config, load_versions.get(ds_name), save_version + ) + return cls(data_sets=data_sets) + + def load(self, name: str) -> Any: + """Loads a registered data set. + + Args: + name: A data set to be loaded. + + Returns: + The loaded data as configured. + + Raises: + DataSetNotFoundError: When a data set with the given name + has not yet been registered. + + Example: + :: + + >>> from kedro.io import CSVLocalDataSet, DataCatalog + >>> + >>> cars = CSVLocalDataSet(filepath="cars.csv", + >>> load_args=None, + >>> save_args={"index": False}) + >>> io = DataCatalog(data_sets={'cars': cars}) + >>> + >>> df = io.load("cars") + """ + if name in self._data_sets: + self._logger.info( + "Loading data from `%s` (%s)...", + name, + type(self._data_sets[name]).__name__, + ) + return self._data_sets[name].load() + + raise DataSetNotFoundError("DataSet '{}' not found in the catalog".format(name)) + + def save(self, name: str, data: Any) -> None: + """Save data to a registered data set. + + Args: + name: A data set to be saved to. + data: A data object to be saved as configured in the registered + data set. + + Raises: + DataSetNotFoundError: When a data set with the given name + has not yet been registered. + + Example: + :: + + >>> import pandas as pd + >>> + >>> from kedro.io import CSVLocalDataSet + >>> + >>> cars = CSVLocalDataSet(filepath="cars.csv", + >>> load_args=None, + >>> save_args={"index": False}) + >>> io = DataCatalog(data_sets={'cars': cars}) + >>> + >>> df = pd.DataFrame({'col1': [1, 2], + >>> 'col2': [4, 5], + >>> 'col3': [5, 6]}) + >>> io.save("cars", df) + """ + if name in self._data_sets: + self._logger.info( + "Saving data to `%s` (%s)...", + name, + type(self._data_sets[name]).__name__, + ) + self._data_sets[name].save(data) + else: + raise DataSetNotFoundError( + "DataSet '{}' not found in the catalog".format(name) + ) + + def exists(self, name: str) -> bool: + """Checks whether registered data set exists by calling its `exists()` + method. Raises a warning and returns False if `exists()` is not + implemented. + + Args: + name: A data set to be checked. + + Returns: + Whether the data set output exists. + + Raises: + DataSetNotFoundError: When a data set with the given name + has not yet been registered. + """ + if name in self._data_sets: + data_set = self._data_sets[name] + if hasattr(data_set, "exists"): + return data_set.exists() + + self._logger.warning( + "`exists()` not implemented for `%s`. " + "Assuming output does not exist.", + name, + ) + return False + + raise DataSetNotFoundError("DataSet '{}' not found in the catalog".format(name)) + + def add( + self, data_set_name: str, data_set: AbstractDataSet, replace: bool = False + ) -> None: + """Adds a new ``AbstractDataSet`` object to the ``DataCatalog``. + + Args: + data_set_name: A unique data set name which has not been + registered yet. + data_set: A data set object to be associated with the given data + set name. + replace: Specifies whether to replace an existing ``DataSet`` + with the same name is allowed. + + Raises: + DataSetAlreadyExistsError: When a data set with the same name + has already been registered. + + Example: + :: + + >>> from kedro.io import CSVLocalDataSet + >>> + >>> io = DataCatalog(data_sets={ + >>> 'cars': CSVLocalDataSet(filepath="cars.csv") + >>> }) + >>> + >>> io.add("boats", CSVLocalDataSet(filepath="boats.csv")) + """ + if data_set_name in self._data_sets: + if replace: + self._logger.warning("Replacing DataSet '%s'", data_set_name) + else: + raise DataSetAlreadyExistsError( + "DataSet '{}' has already been registered".format(data_set_name) + ) + self._data_sets[data_set_name] = data_set + + def add_all( + self, data_sets: Dict[str, AbstractDataSet], replace: bool = False + ) -> None: + """Adds a group of new data sets to the ``DataCatalog``. + + Args: + data_sets: A dictionary of ``DataSet`` names and data set + instances. + replace: Specifies whether to replace an existing ``DataSet`` + with the same name is allowed. + + Raises: + DataSetAlreadyExistsError: When a data set with the same name + has already been registered. + + Example: + :: + + >>> from kedro.io import CSVLocalDataSet, ParquetLocalDataSet + >>> + >>> io = DataCatalog(data_sets={ + >>> "cars": CSVLocalDataSet(filepath="cars.csv") + >>> }) + >>> additional = { + >>> "planes": ParquetLocalDataSet("planes.parq"), + >>> "boats": CSVLocalDataSet(filepath="boats.csv") + >>> } + >>> + >>> io.add_all(additional) + >>> + >>> assert io.list() == ["cars", "planes", "boats"] + """ + for name, data_set in data_sets.items(): + self.add(name, data_set, replace) + + def add_feed_dict(self, feed_dict: Dict[str, Any], replace: bool = False) -> None: + """Adds instances of ``MemoryDataSet``, containing the data provided + through feed_dict. + + Args: + feed_dict: A feed dict with data to be added in memory. + replace: Specifies whether to replace an existing ``DataSet`` + with the same name is allowed. + + Example: + :: + + >>> import pandas as pd + >>> + >>> df = pd.DataFrame({'col1': [1, 2], + >>> 'col2': [4, 5], + >>> 'col3': [5, 6]}) + >>> + >>> io = DataCatalog() + >>> io.add_feed_dict({ + >>> 'data': df + >>> }, replace=True) + >>> + >>> assert io.load("data").equals(df) + """ + for data_set_name in feed_dict: + if isinstance(feed_dict[data_set_name], AbstractDataSet): + data_set = feed_dict[data_set_name] + else: + data_set = MemoryDataSet(data=feed_dict[data_set_name]) + + self.add(data_set_name, data_set, replace) + + def list(self) -> List[str]: + """List of ``DataSet`` names registered in the catalog. + + Returns: + A List of ``DataSet`` names, corresponding to the entries that are + registered in the current catalog object. + + """ + return list(self._data_sets.keys()) + + def shallow_copy(self) -> "DataCatalog": + """Returns a shallow copy of the current object. + + Returns: + Copy of the current object. + """ + return DataCatalog({**self._data_sets}) + + def __eq__(self, other): + return self._data_sets == other._data_sets # pylint: disable=protected-access diff --git a/kedro/io/excel_local.py b/kedro/io/excel_local.py new file mode 100644 index 0000000000..3f5d9d0a9e --- /dev/null +++ b/kedro/io/excel_local.py @@ -0,0 +1,150 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +"""``ExcelLocalDataSet`` loads and saves data to a local Excel file. The +underlying functionality is supported by pandas, so it supports all +allowed pandas options for loading and saving Excel files. +""" +from pathlib import Path +from typing import Any, Dict, Union + +import pandas as pd + +from kedro.io.core import ( + AbstractDataSet, + DataSetError, + ExistsMixin, + FilepathVersionMixIn, + Version, +) + + +class ExcelLocalDataSet(AbstractDataSet, ExistsMixin, FilepathVersionMixIn): + """``ExcelLocalDataSet`` loads and saves data to a local Excel file. The + underlying functionality is supported by pandas, so it supports all + allowed pandas options for loading and saving Excel files. + + Example: + :: + + >>> from kedro.io import ExcelLocalDataSet + >>> import pandas as pd + >>> + >>> data = pd.DataFrame({'col1': [1, 2], 'col2': [4, 5], + >>> 'col3': [5, 6]}) + >>> data_set = ExcelLocalDataSet(filepath="test.xlsx", + >>> load_args={'sheet_name':"Sheet1"}, + >>> save_args=None) + >>> data_set.save(data) + >>> reloaded = data_set.load() + >>> + >>> assert data.equals(reloaded) + + """ + + def _describe(self) -> Dict[str, Any]: + return dict( + filepath=self._filepath, + engine=self._engine, + load_args=self._load_args, + save_args=self._save_args, + version=self._version, + ) + + # pylint: disable=too-many-arguments + def __init__( + self, + filepath: str, + engine: str = "xlsxwriter", + load_args: Dict[str, Any] = None, + save_args: Dict[str, Any] = None, + version: Version = None, + ) -> None: + """Creates a new instance of ``ExcelLocalDataSet`` pointing to a concrete + filepath. + + Args: + engine: The engine used to write to excel files. The default + engine is 'xlswriter'. + + filepath: path to an Excel file. + + load_args: Pandas options for loading Excel files. Here you can + find all available arguments: + https://pandas.pydata.org/pandas-docs/stable/generated/pandas.read_excel.html + The default_load_arg engine is 'xlrd', all others preserved. + + save_args: Pandas options for saving Excel files. Here you can + find all available arguments: + https://pandas.pydata.org/pandas-docs/stable/generated/pandas.DataFrame.to_excel.html + All defaults are preserved, but "index", which is set to False. + + version: If specified, should be an instance of + ``kedro.io.core.Version``. If its ``load`` attribute is + None, the latest version will be loaded. If its ``save`` + attribute is None, save version will be autogenerated. + + """ + self._filepath = filepath + default_save_args = {"index": False} + default_load_args = {"engine": "xlrd"} + + self._load_args = ( + {**default_load_args, **load_args} + if load_args is not None + else default_load_args + ) + self._save_args = ( + {**default_save_args, **save_args} + if save_args is not None + else default_save_args + ) + self._engine = engine + self._version = version + + def _load(self) -> Union[pd.DataFrame, Dict[str, pd.DataFrame]]: + load_path = self._get_load_path(self._filepath, self._version) + return pd.read_excel(load_path, **self._load_args) + + def _save(self, data: pd.DataFrame) -> None: + save_path = Path(self._get_save_path(self._filepath, self._version)) + save_path.parent.mkdir(parents=True, exist_ok=True) + with pd.ExcelWriter(str(save_path), engine=self._engine) as writer: + data.to_excel(writer, **self._save_args) + + load_path = Path(self._get_load_path(self._filepath, self._version)) + self._check_paths_consistency( + str(load_path.absolute()), str(save_path.absolute()) + ) + + def _exists(self) -> bool: + try: + path = self._get_load_path(self._filepath, self._version) + except DataSetError: + return False + return Path(path).is_file() diff --git a/kedro/io/hdf_local.py b/kedro/io/hdf_local.py new file mode 100644 index 0000000000..70596a6ab8 --- /dev/null +++ b/kedro/io/hdf_local.py @@ -0,0 +1,152 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +"""``HDFLocalDataSet`` loads and saves data to a local hdf file. The +underlying functionality is supported by pandas, so it supports all +allowed pandas options for loading and saving hdf files. +""" +from pathlib import Path +from typing import Any, Dict + +import pandas as pd +from pandas.io.pytables import HDFStore + +from kedro.io.core import ( + AbstractDataSet, + DataSetError, + ExistsMixin, + FilepathVersionMixIn, + Version, +) + + +class HDFLocalDataSet(AbstractDataSet, ExistsMixin, FilepathVersionMixIn): + """``HDFLocalDataSet`` loads and saves data to a local hdf file. The + underlying functionality is supported by pandas, so it supports all + allowed pandas options for loading and saving hdf files. + + Example: + :: + + >>> from kedro.io import HDFLocalDataSet + >>> import pandas as pd + >>> + >>> data = pd.DataFrame({'col1': [1, 2], 'col2': [4, 5], + >>> 'col3': [5, 6]}) + >>> data_set = HDFLocalDataSet(filepath="test.hdf", + >>> key="test_hdf_key", + >>> load_args=None, + >>> save_args=None) + >>> data_set.save(data) + >>> reloaded = data_set.load() + >>> + >>> assert data.equals(reloaded) + + """ + + # pylint: disable=too-many-arguments + def __init__( + self, + filepath: str, + key: str, + load_args: Dict[str, Any] = None, + save_args: Dict[str, Any] = None, + version: Version = None, + ) -> None: + """Creates a new instance of ``HDFLocalDataSet`` pointing to a concrete + filepath. + + Args: + filepath: path to an hdf file. + key: identifier to the group in the HDF store. + load_args: Pandas options for loading hdf files. + Here you can find all available arguments: + https://pandas.pydata.org/pandas-docs/stable/generated/pandas.read_hdf.html + All defaults are preserved. + save_args: Pandas options for saving hdf files. + Here you can find all available arguments: + https://pandas.pydata.org/pandas-docs/stable/generated/pandas.DataFrame.to_hdf.html + All defaults are preserved. + version: If specified, should be an instance of + ``kedro.io.core.Version``. If its ``load`` attribute is + None, the latest version will be loaded. If its ``save`` + attribute is None, save version will be autogenerated. + + """ + default_load_args = {} + default_save_args = {} + self._filepath = filepath + self._key = key + self._load_args = ( + {**default_load_args, **load_args} + if load_args is not None + else default_load_args + ) + self._save_args = ( + {**default_load_args, **save_args} + if save_args is not None + else default_save_args + ) + self._version = version + + def _load(self) -> pd.DataFrame: + load_path = self._get_load_path(self._filepath, self._version) + return pd.read_hdf(load_path, key=self._key, **self._load_args) + + def _save(self, data: pd.DataFrame) -> None: + save_path = Path(self._get_save_path(self._filepath, self._version)) + save_path.parent.mkdir(parents=True, exist_ok=True) + data.to_hdf(str(save_path), key=self._key, **self._save_args) + + load_path = Path(self._get_load_path(self._filepath, self._version)) + self._check_paths_consistency( + str(load_path.absolute()), str(save_path.absolute()) + ) + + def _describe(self) -> Dict[str, Any]: + return dict( + filepath=self._filepath, + key=self._key, + load_args=self._load_args, + save_args=self._save_args, + version=self._version, + ) + + def _exists(self) -> bool: + try: + path = self._get_load_path(self._filepath, self._version) + except DataSetError: + return False + if Path(path).is_file(): + with HDFStore(path, mode="r") as hdfstore: + key_with_slash = ( + self._key if self._key.startswith("/") else "/" + self._key + ) + if key_with_slash in hdfstore.keys(): + return True + return False diff --git a/kedro/io/json_local.py b/kedro/io/json_local.py new file mode 100644 index 0000000000..9fe1730964 --- /dev/null +++ b/kedro/io/json_local.py @@ -0,0 +1,135 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +"""``JSONLocalDataSet`` encodes a given object to json and saves it to a local +file. +""" +import json +from pathlib import Path +from typing import Any, Dict + +import pandas as pd + +from kedro.io.core import ( + AbstractDataSet, + DataSetError, + ExistsMixin, + FilepathVersionMixIn, + Version, +) + + +class JSONLocalDataSet(AbstractDataSet, ExistsMixin, FilepathVersionMixIn): + """``JSONLocalDataSet`` encodes data as json and saves it to a local file + or reads in and decodes an existing json file. The encoding/decoding + functionality is provided by Python's ``json`` library. + + Example: + :: + + >>> from kedro.io import JSONLocalDataSet + >>> my_dict = { + >>> 'a_string': 'Hello, World!', + >>> 'a_list': [1, 2, 3] + >>> } + >>> data_set = JSONLocalDataSet(filepath="test.json") + >>> data_set.save(my_dict) + >>> reloaded = data_set.load() + >>> assert my_dict == reloaded + + """ + + def _describe(self) -> Dict[str, Any]: + return dict( + filepath=self._filepath, + load_args=self._load_args, + save_args=self._save_args, + version=self._version, + ) + + def __init__( + self, + filepath: str, + load_args: Dict[str, Any] = None, + save_args: Dict[str, Any] = None, + version: Version = None, + ) -> None: + """Creates a new instance of ``JSONLocalDataSet`` pointing to a concrete + filepath. + + Args: + filepath: path to a local json file. + load_args: Arguments passed on to ```json.load``. + See https://docs.python.org/3/library/json.html for details. + All defaults are preserved. + save_args: Arguments passed on to ```json.dump``. + See https://docs.python.org/3/library/json.html + for details. All defaults are preserved. + version: If specified, should be an instance of + ``kedro.io.core.Version``. If its ``load`` attribute is + None, the latest version will be loaded. If its ``save`` + attribute is None, save version will be autogenerated. + + """ + default_save_args = {"indent": 4} + default_load_args = {} + self._filepath = filepath + self._load_args = ( + {**default_load_args, **load_args} + if load_args is not None + else default_load_args + ) + self._save_args = ( + {**default_save_args, **save_args} + if save_args is not None + else default_save_args + ) + self._version = version + + def _load(self) -> Any: + load_path = self._get_load_path(self._filepath, self._version) + with open(load_path, "r") as local_file: + return json.load(local_file, **self._load_args) + + def _save(self, data: pd.DataFrame) -> None: + save_path = Path(self._get_save_path(self._filepath, self._version)) + save_path.parent.mkdir(parents=True, exist_ok=True) + with save_path.open("w") as local_file: + json.dump(data, local_file, **self._save_args) + + load_path = Path(self._get_load_path(self._filepath, self._version)) + self._check_paths_consistency( + str(load_path.absolute()), str(save_path.absolute()) + ) + + def _exists(self) -> bool: + try: + path = self._get_load_path(self._filepath, self._version) + except DataSetError: + return False + return Path(path).is_file() diff --git a/kedro/io/lambda_data_set.py b/kedro/io/lambda_data_set.py new file mode 100644 index 0000000000..ba46435f69 --- /dev/null +++ b/kedro/io/lambda_data_set.py @@ -0,0 +1,141 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. +"""``LambdaDataSet`` is an implementation of ``AbstractDataSet`` which allows for +providing custom load, save, and exists methods without extending +``AbstractDataSet``. +""" +import logging +from typing import Any, Callable, Dict, Optional + +from kedro.io.core import AbstractDataSet, DataSetError + + +class LambdaDataSet(AbstractDataSet): + """``LambdaDataSet`` loads and saves data to a data set. + It relies on delegating to specific implementation such as csv, sql, etc. + + ``LambdaDataSet`` class captures Exceptions while performing operations on + composed ``DataSet`` implementations. The composed data set is + responsible for providing information on how to resolve the issue when + possible. This information should be available through str(error). + + Example: + :: + + >>> from kedro.io import LambdaDataSet + >>> import pandas as pd + >>> + >>> file_name = "test.csv" + >>> def load() -> pd.DataFrame: + >>> raise FileNotFoundError("'{}' csv file not found." + >>> .format(file_name)) + >>> data_set = LambdaDataSet(load, None) + """ + + def _describe(self) -> Dict[str, Any]: + def _to_str(func): + if not func: + return None + try: + return "<{}.{}>".format(func.__module__, func.__name__) + except AttributeError: # pragma: no cover + return str(func) + + descr = {"load": _to_str(self.__load), "save": _to_str(self.__save)} + if hasattr(self, "exists"): + descr["exists"] = _to_str(self._exists) + + return descr + + def _save(self, data: Any) -> None: + if not self.__save: + raise DataSetError( + "Cannot save to data set. No `save` function " + "provided when LambdaDataSet was created." + ) + self.__save(data) + + def _load(self) -> Any: + if not self.__load: + raise DataSetError( + "Cannot load data set. No `load` function " + "provided when LambdaDataSet was created." + ) + return self.__load() + + def __init__( + self, + load: Optional[Callable[[], Any]], + save: Optional[Callable[[Any], None]], + exists: Optional[Callable[[], bool]] = None, + ): + """Creates a new instance of ``LambdaDataSet`` with references to the + required input/output data set methods. + + Args: + load: Method to load data from a data set. + save: Method to save data to a data set. + exists: Method to check whether output data already exists. + If None, no exists method is added. + + Raises: + DataSetError: If load and/or save is specified, but is not a Callable. + + """ + + if load is not None and not callable(load): + raise DataSetError( + "`load` function for LambdaDataSet must be a Callable. " + "Object of type `{}` provided instead.".format(load.__class__.__name__) + ) + if save is not None and not callable(save): + raise DataSetError( + "`save` function for LambdaDataSet must be a Callable. " + "Object of type `{}` provided instead.".format(save.__class__.__name__) + ) + + self.__load = load + self.__save = save + + if exists: + self._exists = exists + + def _exists_with_error_handling(): + # wrapper around exists method for error handling + try: + logging.getLogger(__name__).debug( + "Checking whether target of %s exists", str(self) + ) + return self._exists() + except Exception as exc: + message = "Failed during exists check for data set {}.\n{}".format( + str(self), str(exc) + ) + raise DataSetError(message) from exc + + self.exists = _exists_with_error_handling diff --git a/kedro/io/memory_data_set.py b/kedro/io/memory_data_set.py new file mode 100644 index 0000000000..0d0b943a62 --- /dev/null +++ b/kedro/io/memory_data_set.py @@ -0,0 +1,123 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +"""``MemoryDataSet`` is a data set implementation which handles in-memory data. +""" + +import copy +from typing import Any, Dict + +import numpy as np +import pandas as pd + +from kedro.io.core import AbstractDataSet, DataSetError, ExistsMixin + + +class MemoryDataSet(AbstractDataSet, ExistsMixin): + """``MemoryDataSet`` loads and saves data from/to an in-memory\ + Python object. + + Example: + :: + + >>> from kedro.io import MemoryDataSet + >>> import pandas as pd + >>> + >>> data = pd.DataFrame({'col1': [1, 2], 'col2': [4, 5], + >>> 'col3': [5, 6]}) + >>> data_set = MemoryDataSet(data=data) + >>> + >>> loaded_data = data_set.load() + >>> assert loaded_data.equals(data) + >>> + >>> new_data = pd.DataFrame({'col1': [1, 2], 'col2': [4, 5]}) + >>> data_set.save(new_data) + >>> reloaded_data = data_set.load() + >>> assert reloaded_data.equals(new_data) + + """ + + def _describe(self) -> Dict[str, Any]: + if self._data is not None: + return dict(data="<{}>".format(type(self._data).__name__)) + return dict(data=None) # pragma: no cover + + def __init__(self, data: Any = None, max_loads: int = None): + """Creates a new instance of ``MemoryDataSet`` pointing to the + provided Python object. + + Args: + data: Python object containing the data. + max_loads: Maximum number of times ``load`` method can be invoked. + ``MemoryDataSet`` data is reset after this number of calls is + made. Any number of calls is allowed if the argument is not + set. ``max_loads`` counter is reset after every ``save`` + method call. + + """ + self._data = None + self._max_loads = max_loads + if data is not None: + self._save(data) + + def _load(self) -> Any: + if self._data is None: + if self._max_loads is None: + message = "Data for MemoryDataSet has not been saved yet." + else: + message = ( + "Maximum number of MemoryDataSet loads exceeded " + "the threshold of {}. The data set was cleared " + "and holds no data now.".format(self._max_loads) + ) + raise DataSetError(message) + if isinstance(self._data, (pd.DataFrame, np.ndarray)): + data = self._data.copy() + elif type(self._data).__name__ == "DataFrame": + data = self._data + else: + data = copy.deepcopy(self._data) + if self._load_counter: + self._load_counter -= 1 + if self._load_counter == 0: + self._data = None + return data + + def _save(self, data: Any): + if isinstance(data, (pd.DataFrame, np.ndarray)): + self._data = data.copy() + elif type(data).__name__ == "DataFrame": + self._data = data + else: + self._data = copy.deepcopy(data) + self._load_counter = self._max_loads + + def _exists(self) -> bool: + if self._data is None: + return False + return True diff --git a/kedro/io/parquet_local.py b/kedro/io/parquet_local.py new file mode 100644 index 0000000000..31b863561f --- /dev/null +++ b/kedro/io/parquet_local.py @@ -0,0 +1,153 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +"""``ParquetLocalDataSet`` is a data set used to load and save +data to local parquet files. It uses the ``pyarrow`` implementation, +which allows for multiple parts, compression, column selection etc. + +Documentation on the PyArrow library features, compatibility +list and known caveats can also be found on their official guide at: + +https://arrow.apache.org/docs/python/index.html +""" + +from pathlib import Path +from typing import Any, Dict + +import pandas as pd + +from kedro.io.core import ( + AbstractDataSet, + DataSetError, + ExistsMixin, + FilepathVersionMixIn, + Version, +) + + +class ParquetLocalDataSet(AbstractDataSet, ExistsMixin, FilepathVersionMixIn): + """``AbstractDataSet`` with functionality for handling local parquet files. + + Example: + :: + + >>> from kedro.io import ParquetLocalDataSet + >>> import pandas as pd + >>> + >>> data = pd.DataFrame({'col1': [1, 2], 'col2': [4, 5], + >>> 'col3': [5, 6]}) + >>> data_set = ParquetLocalDataSet('myFile') + >>> data_set.save(data) + >>> loaded_data = data_set.load() + >>> assert data.equals(loaded_data) + """ + + def _describe(self) -> Dict[str, Any]: + return dict( + filepath=self._filepath, + engine=self._engine, + load_args=self._load_args, + save_args=self._save_args, + version=self._version, + ) + + # pylint: disable=too-many-arguments + def __init__( + self, + filepath: str, + engine: str = "auto", + load_args: Dict[str, Any] = None, + save_args: Dict[str, Any] = None, + version: Version = None, + ) -> None: + """Creates a new instance of ``ParquetLocalDataSet`` pointing to a + concrete filepath. + + Args: + filepath: Path to a parquet file or a metadata file of a multipart + parquet collection or the directory of a multipart parquet. + + engine: The engine to use, one of: `auto`, `fastparquet`, + `pyarrow`. If `auto`, then the default behavior is to try + `pyarrow`, falling back to `fastparquet` if `pyarrow` is + unavailable. + + load_args: Additional loading options `pyarrow`: + https://arrow.apache.org/docs/python/generated/pyarrow.parquet.read_table.html + or `fastparquet`: + https://fastparquet.readthedocs.io/en/latest/api.html#fastparquet.ParquetFile.to_pandas + + save_args: Additional saving options for `pyarrow`: + https://arrow.apache.org/docs/python/generated/pyarrow.Table.html#pyarrow.Table.from_pandas + or `fastparquet`: + https://fastparquet.readthedocs.io/en/latest/api.html#fastparquet.write + + version: If specified, should be an instance of + ``kedro.io.core.Version``. If its ``load`` attribute is + None, the latest version will be loaded. If its ``save`` + attribute is None, save version will be autogenerated. + + """ + default_save_args = {"compression": None} + default_load_args = {} + + self._filepath = filepath + self._engine = engine + + self._load_args = ( + {**default_load_args, **load_args} + if load_args is not None + else default_load_args + ) + self._save_args = ( + {**default_save_args, **save_args} + if save_args is not None + else default_save_args + ) + self._version = version + + def _load(self) -> pd.DataFrame: + load_path = self._get_load_path(self._filepath, self._version) + return pd.read_parquet(load_path, engine=self._engine, **self._load_args) + + def _save(self, data: pd.DataFrame) -> None: + save_path = Path(self._get_save_path(self._filepath, self._version)) + save_path.parent.mkdir(parents=True, exist_ok=True) + data.to_parquet(save_path, engine=self._engine, **self._save_args) + + load_path = Path(self._get_load_path(self._filepath, self._version)) + self._check_paths_consistency( + str(load_path.absolute()), str(save_path.absolute()) + ) + + def _exists(self) -> bool: + try: + path = self._get_load_path(self._filepath, self._version) + except DataSetError: + return False + return Path(path).is_file() diff --git a/kedro/io/pickle_local.py b/kedro/io/pickle_local.py new file mode 100644 index 0000000000..70c0c360d7 --- /dev/null +++ b/kedro/io/pickle_local.py @@ -0,0 +1,181 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +"""``PickleLocalDataSet`` loads and saves a Python object to a +local pickle file. The underlying functionality is +supported by the ``pickle`` and ``joblib`` libraries, so it supports +all allowed options for loading and saving pickle files. +""" + +import pickle +from pathlib import Path +from typing import Any, Dict + +from kedro.io.core import ( + AbstractDataSet, + DataSetError, + ExistsMixin, + FilepathVersionMixIn, + Version, +) + +try: + import joblib +except ImportError: + joblib = None + + +class PickleLocalDataSet(AbstractDataSet, ExistsMixin, FilepathVersionMixIn): + """``PickleLocalDataSet`` loads and saves a Python object to a + local pickle file. The underlying functionality is + supported by the pickle and joblib libraries, so it supports + all allowed options for loading and saving pickle files. + + Example: + :: + + >>> from kedro.io import PickleLocalDataSet + >>> import pandas as pd + >>> + >>> dummy_data = pd.DataFrame({'col1': [1, 2], + >>> 'col2': [4, 5], + >>> 'col3': [5, 6]}) + >>> data_set = PickleLocalDataSet(filepath="data.pkl", + >>> backend='pickle', + >>> load_args=None, + >>> save_args=None) + >>> data_set.save(dummy_data) + >>> reloaded = data_set.load() + """ + + BACKENDS = {"pickle": pickle, "joblib": joblib} + + # pylint: disable=too-many-arguments + def __init__( + self, + filepath: str, + backend: str = "pickle", + load_args: Dict[str, Any] = None, + save_args: Dict[str, Any] = None, + version: Version = None, + ) -> None: + """Creates a new instance of ``PickleLocalDataSet`` pointing to a + concrete filepath. ``PickleLocalDataSet`` can use two backends to + serialise objects to disk: + + pickle.dump: https://docs.python.org/3/library/pickle.html#pickle.dump + + joblib.dump: https://pythonhosted.org/joblib/generated/joblib.dump.html + + and it can use two backends to load serialised objects into memory: + + pickle.load: https://docs.python.org/3/library/pickle.html#pickle.load + + joblib.load: https://pythonhosted.org/joblib/generated/joblib.load.html + + Joblib tends to exhibit better performance in case objects store NumPy + arrays: + http://gael-varoquaux.info/programming/new_low-overhead_persistence_in_joblib_for_big_data.html. + + Args: + filepath: path to a pkl file. + backend: backend to use, must be one of ['pickle', 'joblib']. + load_args: Options for loading pickle files. Refer to the help + file of ``pickle.load`` or ``joblib.load`` for options. + save_args: Options for saving pickle files. Refer to the help + file of ``pickle.dump`` or ``joblib.load`` for options. + version: If specified, should be an instance of + ``kedro.io.core.Version``. If its ``load`` attribute is + None, the latest version will be loaded. If its ``save`` + attribute is None, save version will be autogenerated. + + Raises: + ValueError: If 'backend' is not one of ['pickle', 'joblib']. + ImportError: If 'backend' could not be imported. + + """ + default_save_args = {} + default_load_args = {} + + if backend not in ["pickle", "joblib"]: + raise ValueError( + "backend should be one of ['pickle', 'joblib'], got %s" % backend + ) + if backend == "joblib" and joblib is None: + raise ImportError( + "selected backend 'joblib' could not be " + "imported. Make sure it is installed." + ) + + self._filepath = filepath + self._backend = backend + self._load_args = ( + {**default_load_args, **load_args} + if load_args is not None + else default_load_args + ) + self._save_args = ( + {**default_save_args, **save_args} + if save_args is not None + else default_save_args + ) + self._version = version + + def _load(self) -> Any: + load_path = self._get_load_path(self._filepath, self._version) + with open(load_path, "rb") as local_file: + result = self.BACKENDS[self._backend].load(local_file, **self._load_args) + return result + + def _save(self, data: Any) -> None: + save_path = Path(self._get_save_path(self._filepath, self._version)) + save_path.parent.mkdir(parents=True, exist_ok=True) + + with save_path.open("wb") as local_file: + self.BACKENDS[self._backend].dump(data, local_file, **self._save_args) + + load_path = Path(self._get_load_path(self._filepath, self._version)) + self._check_paths_consistency( + str(load_path.absolute()), str(save_path.absolute()) + ) + + def _describe(self) -> Dict[str, Any]: + return dict( + filepath=self._filepath, + backend=self._backend, + load_args=self._load_args, + save_args=self._save_args, + version=self._version, + ) + + def _exists(self) -> bool: + try: + path = self._get_load_path(self._filepath, self._version) + except DataSetError: + return False + return Path(path).is_file() diff --git a/kedro/io/pickle_s3.py b/kedro/io/pickle_s3.py new file mode 100644 index 0000000000..23ff8b6958 --- /dev/null +++ b/kedro/io/pickle_s3.py @@ -0,0 +1,170 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +"""``PickleS3DataSet`` loads and saves a Python object to a pickle file on S3. +The underlying functionality is supported by the ``pickle`` library, so +it supports all allowed options for loading and saving pickle files. +""" +import pickle +from typing import Any, Dict, Optional + +from s3fs.core import S3FileSystem + +from kedro.io.core import ( + AbstractDataSet, + DataSetError, + ExistsMixin, + S3PathVersionMixIn, + Version, +) + + +class PickleS3DataSet(AbstractDataSet, ExistsMixin, S3PathVersionMixIn): + """``PickleS3DataSet`` loads and saves a Python object to a + pickle file on S3. The underlying functionality is + supported by the pickle library, so it supports all + allowed options for loading and saving pickle files. + + Example: + :: + + >>> from kedro.io import PickleLocalDataSet + >>> import pandas as pd + >>> + >>> dummy_data = pd.DataFrame({'col1': [1, 2], + >>> 'col2': [4, 5], + >>> 'col3': [5, 6]}) + >>> data_set = PickleS3DataSet(filepath="data.pkl", + >>> bucket_name="test_bucket", + >>> load_args=None, + >>> save_args=None) + >>> data_set.save(dummy_data) + >>> reloaded = data_set.load() + """ + + # pylint: disable=too-many-arguments + def __init__( + self, + filepath: str, + bucket_name: str, + credentials: Optional[Dict[str, Any]] = None, + load_args: Optional[Dict[str, Any]] = None, + save_args: Optional[Dict[str, Any]] = None, + version: Version = None, + ) -> None: + """Creates a new instance of ``PickleS3DataSet`` pointing to a + concrete file on S3. ``PickleS3DataSet`` uses pickle backend to + serialise objects to disk: + + pickle.dumps: https://docs.python.org/3/library/pickle.html#pickle.dumps + + and to load serialised objects into memory: + + pickle.loads: https://docs.python.org/3/library/pickle.html#pickle.loads + + Args: + filepath: path to a pkl file. + bucket_name: S3 bucket name. + credentials: Credentials to access the S3 bucket, such as + ``aws_access_key_id``, ``aws_secret_access_key``. + load_args: Options for loading pickle files. Refer to the help + file of ``pickle.loads`` for options. + save_args: Options for saving pickle files. Refer to the help + file of ``pickle.dumps`` for options. + version: If specified, should be an instance of + ``kedro.io.core.Version``. If its ``load`` attribute is + None, the latest version will be loaded. If its ``save`` + attribute is None, save version will be autogenerated. + """ + default_load_args = {} + default_save_args = {} + + self._filepath = filepath + self._bucket_name = bucket_name + self._credentials = credentials if credentials else {} + self._version = version + self._load_args = ( + {**default_load_args, **load_args} + if load_args is not None + else default_load_args + ) + self._save_args = ( + {**default_save_args, **save_args} + if save_args is not None + else default_save_args + ) + self._s3 = S3FileSystem(client_kwargs=self._credentials) + + @property + def _client(self): + return self._s3.s3 + + def _describe(self) -> Dict[str, Any]: + return dict( + filepath=self._filepath, + bucket_name=self._bucket_name, + load_args=self._load_args, + save_args=self._save_args, + version=self._version, + ) + + def _load(self) -> Any: + load_key = self._get_load_path( + self._client, self._bucket_name, self._filepath, self._version + ) + + with self._s3.open( + "{}/{}".format(self._bucket_name, load_key), mode="rb" + ) as s3_file: + return pickle.loads(s3_file.read(), **self._load_args) + + def _save(self, data: Any) -> None: + save_key = self._get_save_path( + self._client, self._bucket_name, self._filepath, self._version + ) + bytes_object = pickle.dumps(data, **self._save_args) + + with self._s3.open( + "{}/{}".format(self._bucket_name, save_key), mode="wb" + ) as s3_file: + s3_file.write(bytes_object) + + load_key = self._get_load_path( + self._client, self._bucket_name, self._filepath, self._version + ) + self._check_paths_consistency(load_key, save_key) + + def _exists(self) -> bool: + try: + load_key = self._get_load_path( + self._client, self._bucket_name, self._filepath, self._version + ) + except DataSetError: + return False + args = (self._client, self._bucket_name, load_key) + return any(key == load_key for key in self._list_objects(*args)) diff --git a/kedro/io/sql.py b/kedro/io/sql.py new file mode 100644 index 0000000000..0930718065 --- /dev/null +++ b/kedro/io/sql.py @@ -0,0 +1,327 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. +"""``SQLDataSet`` to load and save data to a SQL backend.""" + +import re +from typing import Any, Dict, Optional + +import pandas as pd +from sqlalchemy import create_engine +from sqlalchemy.exc import NoSuchModuleError + +from kedro.io.core import AbstractDataSet, DataSetError, ExistsMixin + +__all__ = ["SQLTableDataSet", "SQLQueryDataSet"] + +KNOWN_PIP_INSTALL = { + "psycopg2": "psycopg2", + "mysqldb": "mysqlclient", + "cx_Oracle": "cx_Oracle", +} + +DRIVER_ERROR_MESSAGE = """ +A module/driver is missing when connecting to your SQL server. SQLDataSet + supports SQLAlchemy drivers. Please refer to + https://docs.sqlalchemy.org/en/13/core/engines.html#supported-databases + for more information. +\n\n +""" + + +def _find_known_drivers(module_import_error: ImportError) -> Optional[str]: + """Looks up known keywords in a ``ModuleNotFoundError`` so that it can + provide better guideline for the user. + + Args: + module_import_error: Error raised while connecting to a SQL server. + + Returns: + Instructions for installing missing driver. An empty string is + returned in case error is related to an unknown driver. + + """ + + # module errors contain string "No module name 'module_name'" + # we are trying to extract module_name surrounded by quotes here + res = re.findall(r"'(.*?)'", str(module_import_error.args[0]).lower()) + + # in case module import error does not match our expected pattern + # we have no recommendation + if not res: + return None + + missing_module = res[0] + + if KNOWN_PIP_INSTALL.get(missing_module): + return ( + "You can also try installing missing driver with\n" + "\npip install {}".format(KNOWN_PIP_INSTALL.get(missing_module)) + ) + + return None + + +def _get_missing_module_error(import_error: ImportError) -> DataSetError: + missing_module_instruction = _find_known_drivers(import_error) + + if missing_module_instruction is None: + return DataSetError( + "{}Loading failed with error:\n\n{}".format( + DRIVER_ERROR_MESSAGE, str(import_error) + ) + ) + + return DataSetError("{}{}".format(DRIVER_ERROR_MESSAGE, missing_module_instruction)) + + +def _get_sql_alchemy_missing_error() -> DataSetError: + return DataSetError( + "The SQL dialect in your connection is not supported by " + "SQLAlchemy. Please refer to " + "https://docs.sqlalchemy.org/en/13/core/engines.html#supported-databases " + "for more information." + ) + + +class SQLTableDataSet(AbstractDataSet, ExistsMixin): + """``SQLTableDataSet`` loads data from a SQL table and saves a pandas + dataframe to a table. It uses ``pandas.DataFrame`` internally, + so it supports all allowed pandas options on ``read_sql_table`` and + ``to_sql`` methods. However, it modifies the save parameters and stores + the data with no index. This is designed to make load and save methods + symmetric. + + + Example: + :: + + >>> from kedro.io import SQLTableDataSet + >>> import pandas as pd + >>> + >>> data = pd.DataFrame({'col1': [1, 2], 'col2': [4, 5], + >>> 'col3': [5, 6]}) + >>> table_name="table_a" + >>> credentials = { + >>> con: "postgresql://scott:tiger@localhost/test" + >>> } + >>> data_set = SQLTableDataSet(table_name=table_name, + >>> credentials=credentials) + >>> + >>> data_set.save(data) + >>> reloaded = data_set.load() + >>> + >>> assert data.equals(reloaded) + + """ + + def _describe(self) -> Dict[str, Any]: + load_args = self._load_args.copy() + save_args = self._save_args.copy() + del load_args["table_name"] + del load_args["con"] + del save_args["name"] + del save_args["con"] + return dict( + table_name=self._load_args["table_name"], + load_args=load_args, + save_args=save_args, + ) + + def __init__( + self, + table_name: str, + credentials: Dict[str, Any], + load_args: Dict[str, Any] = None, + save_args: Dict[str, Any] = None, + ) -> None: + """Creates a new ``SQLTableDataSet``. + + Args: + table_name: The table name to load or save data to. It + overwrites name in ``save_args`` and ``table_name`` + parameters in ``load_args``. + credentials: A dictionary with a ``SQLAlchemy`` connection string. + Users are supposed to provide the connection string 'con' + through credentials. It overwrites con parameter in + ``load_args`` and ``save_args`` in case it is provided. + load_args: Provided to underlying pandas ``read_sql_table`` + function along with the connection string. + To find all supported arguments, see here: + https://pandas.pydata.org/pandas-docs/stable/generated/pandas.read_sql_table.html + save_args: Provided to underlying pandas ``to_sql`` function along + with the connection string. + To find all supported arguments, see here: + https://pandas.pydata.org/pandas-docs/stable/generated/pandas.DataFrame.to_sql.html + It has ``index=False`` in the default parameters. + + Raises: + DataSetError: When either ``table_name`` or ``con`` is empty. + + """ + + if not table_name: + raise DataSetError("`table_name` argument cannot be empty.") + + if not (credentials and "con" in credentials and credentials["con"]): + raise DataSetError( + "`con` argument cannot be empty. Please " + "provide a SQLAlchemy connection string." + ) + + default_save_args = {"index": False} + default_load_args = {} + + self._load_args = ( + {**default_load_args, **load_args} + if load_args is not None + else default_load_args + ) + self._save_args = ( + {**default_save_args, **save_args} + if save_args is not None + else default_save_args + ) + + self._load_args["table_name"] = table_name + self._save_args["name"] = table_name + + self._load_args["con"] = self._save_args["con"] = credentials["con"] + + def _load(self) -> pd.DataFrame: + try: + return pd.read_sql_table(**self._load_args) + except ImportError as import_error: + raise _get_missing_module_error(import_error) + except NoSuchModuleError: + raise _get_sql_alchemy_missing_error() + + def _save(self, data: pd.DataFrame) -> None: + try: + data.to_sql(**self._save_args) + except ImportError as import_error: + raise _get_missing_module_error(import_error) + except NoSuchModuleError: + raise _get_sql_alchemy_missing_error() + + def _exists(self) -> bool: + eng = create_engine(self._load_args["con"]) + schema = self._load_args.get("schema", None) + exists = self._load_args["table_name"] in eng.table_names(schema) + eng.dispose() + return exists + + +class SQLQueryDataSet(AbstractDataSet): + """``SQLQueryDataSet`` loads data from a provided SQL query. It + uses ``pandas.DataFrame`` internally, so it supports all allowed + pandas options on ``read_sql_query``. + + It does not support save method so it is a read only data set. + To save data to a SQL server use ``SQLTableDataSet``. + + + Example: + :: + + >>> from kedro.io import SQLQueryDataSet + >>> import pandas as pd + >>> + >>> data = pd.DataFrame({'col1': [1, 2], 'col2': [4, 5], + >>> 'col3': [5, 6]}) + >>> sql="SELECT * FROM table_a" + >>> credentials = { + >>> con: "postgresql://scott:tiger@localhost/test" + >>> } + >>> data_set = SQLQueryDataSet(sql=sql, + >>> credentials=credentials) + >>> + >>> sql_data = data_set.load() + >>> + + """ + + def _describe(self) -> Dict[str, Any]: + load_args = self._load_args.copy() + del load_args["sql"] + del load_args["con"] + return dict(sql=self._load_args["sql"], load_args=load_args) + + def __init__( + self, sql: str, credentials: Dict[str, Any], load_args: Dict[str, Any] = None + ) -> None: + """Creates a new ``SQLQueryDataSet``. + + Args: + sql: The sql query statement. + credentials: A dictionary with a ``SQLAlchemy`` connection string. + Users are supposed to provide the connection string 'con' + through credentials. It overwrites con parameter in + ``load_args`` and ``save_args`` in case it is provided. + load_args: Provided to underlying pandas ``read_sql_query`` + function along with the connection string. + To find all supported arguments, see here: + https://pandas.pydata.org/pandas-docs/stable/generated/pandas.read_sql_query.html + + Raises: + DataSetError: When either ``sql`` or ``con`` parameters is emtpy. + + """ + + if not sql: + raise DataSetError( + "`sql` argument cannot be empty. Please provide a sql query" + ) + + if not (credentials and "con" in credentials and credentials["con"]): + raise DataSetError( + "`con` argument cannot be empty. Please " + "provide a SQLAlchemy connection string." + ) + + default_load_args = {} + + self._load_args = ( + {**default_load_args, **load_args} + if load_args is not None + else default_load_args + ) + + self._load_args["sql"] = sql + + self._load_args["con"] = credentials["con"] + + def _load(self) -> pd.DataFrame: + try: + return pd.read_sql_query(**self._load_args) + except ImportError as import_error: + raise _get_missing_module_error(import_error) + except NoSuchModuleError: + raise _get_sql_alchemy_missing_error() + + def _save(self, data: pd.DataFrame) -> None: + raise DataSetError("`save` is not supported on SQLQueryDataSet") diff --git a/kedro/io/text_local.py b/kedro/io/text_local.py new file mode 100644 index 0000000000..166d3ca869 --- /dev/null +++ b/kedro/io/text_local.py @@ -0,0 +1,120 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. +"""``TextLocalDataSet`` loads and saves data to a local text file. The data is +accessed text data using the python open function. +""" +from pathlib import Path +from typing import Any, Dict + +from kedro.io import AbstractDataSet, ExistsMixin +from kedro.io.core import DataSetError, FilepathVersionMixIn, Version + + +class TextLocalDataSet(AbstractDataSet, ExistsMixin, FilepathVersionMixIn): + """``TextLocalDataSet`` loads and saves unstructured text files. + + Example: + :: + + >>> from kedro.io import TextLocalDataSet + >>> + >>> string_to_write = "This will go in a file." + >>> + >>> data_set = TextLocalDataSet(filepath="docs/new_documentation.md") + >>> data_set.save(string_to_write) + >>> reloaded = data_set.load() + """ + + def _describe(self) -> Dict[str, Any]: + return dict( + filepath=self._filepath, + load_args=self._load_args, + save_args=self._save_args, + version=self._version, + ) + + def __init__( + self, + filepath: str, + load_args: Dict[str, Any] = None, + save_args: Dict[str, Any] = None, + version: Version = None, + ) -> None: + """Creates a new instance of ``TextFile``. + + Args: + filepath: path to a text file. + load_args: Load arguments should be specified in accordance with + the built in open function. This can be found at + https://docs.python.org/3/library/functions.html#open + save_args: Save arguments should be specified in accordance with + the built in open function. This can be found at + https://docs.python.org/3/library/functions.html#open + version: If specified, should be an instance of + ``kedro.io.core.Version``. If its ``load`` attribute is + None, the latest version will be loaded. If its ``save`` + attribute is None, save version will be autogenerated. + """ + default_save_args = {"mode": "w"} + default_load_args = {"mode": "r"} + + self._filepath = filepath + self._load_args = ( + {**default_load_args, **load_args} + if load_args is not None + else default_load_args + ) + self._save_args = ( + {**default_save_args, **save_args} + if save_args is not None + else default_save_args + ) + self._version = version + + def _load(self) -> str: + load_path = self._get_load_path(self._filepath, self._version) + with open(load_path, **self._load_args) as _file: + return _file.read() + + def _save(self, data: str) -> None: + save_path = Path(self._get_save_path(self._filepath, self._version)) + save_path.parent.mkdir(parents=True, exist_ok=True) + with open(str(save_path), **self._save_args) as _file: + _file.write(data) + + load_path = Path(self._get_load_path(self._filepath, self._version)) + self._check_paths_consistency( + str(load_path.absolute()), str(save_path.absolute()) + ) + + def _exists(self) -> bool: + try: + path = self._get_load_path(self._filepath, self._version) + except DataSetError: + return False + return Path(path).is_file() diff --git a/kedro/pipeline/__init__.py b/kedro/pipeline/__init__.py new file mode 100644 index 0000000000..f6356463e6 --- /dev/null +++ b/kedro/pipeline/__init__.py @@ -0,0 +1,34 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +"""``kedro.pipeline`` provides functionality to define and execute +data-driven pipelines. +""" + +from .node import node # NOQA +from .pipeline import Pipeline # NOQA diff --git a/kedro/pipeline/decorators.py b/kedro/pipeline/decorators.py new file mode 100644 index 0000000000..cd3ed0c727 --- /dev/null +++ b/kedro/pipeline/decorators.py @@ -0,0 +1,128 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. +"""A module containing predefined node decorators in Kedro. +""" + +import logging +import time +from functools import wraps +from typing import Callable + +from memory_profiler import memory_usage + + +def _func_full_name(func: Callable): + if not func.__module__: + return func.__qualname__ + return "%s.%s" % (func.__module__, func.__qualname__) + + +def _human_readable_time(elapsed: float): # pragma: no cover + mins, secs = divmod(elapsed, 60) + hours, mins = divmod(mins, 60) + + if hours > 0: + message = "%dh%02dm%02ds" % (hours, mins, secs) + elif mins > 0: + message = "%dm%02ds" % (mins, secs) + elif secs >= 1: + message = "%.2fs" % secs + else: + message = "%.0fms" % (secs * 1000.0) + + return message + + +def log_time(func: Callable) -> Callable: + """A function decorator which logs the time taken for executing a function. + + Args: + func: The function to be logged. + + Returns: + A wrapped function, which will execute the provided function and log + the running time. + + """ + + @wraps(func) + def with_time(*args, **kwargs): + log = logging.getLogger(__name__) + t_start = time.time() + result = func(*args, **kwargs) + t_end = time.time() + elapsed = t_end - t_start + + log.info( + "Running %r took %s [%.3fs]", + _func_full_name(func), + _human_readable_time(elapsed), + elapsed, + ) + return result + + return with_time + + +def mem_profile(func: Callable) -> Callable: + """A function decorator which profiles the memory used when executing the + function. The logged memory is collected by using the memory_profiler + python module and includes memory used by children processes. The usage + is collected by taking memory snapshots every 100ms. This decorator will + only work with functions taking at least 0.5s to execute due to a bug in + the memory_profiler python module. For more information about the bug, + please see https://github.com/pythonprofilers/memory_profiler/issues/216 + + Args: + func: The function to be profiled. + + Returns: + A wrapped function, which will execute the provided function and log + its max memory usage upon completion. + + """ + + @wraps(func) + def with_memory(*args, **kwargs): + log = logging.getLogger(__name__) + mem_usage, result = memory_usage( + (func, args, kwargs), + interval=0.1, + timeout=1, + max_usage=True, + retval=True, + include_children=True, + ) + log.info( + "Running %r consumed %2.2fMiB memory at peak time", + _func_full_name(func), + mem_usage[0], + ) + return result + + return with_memory diff --git a/kedro/pipeline/node.py b/kedro/pipeline/node.py new file mode 100644 index 0000000000..c8bd747829 --- /dev/null +++ b/kedro/pipeline/node.py @@ -0,0 +1,586 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. +"""This module provides user-friendly functions for creating nodes as parts +of Kedro pipelines. +""" +import copy +import inspect +import logging +from collections import Counter +from functools import reduce +from typing import Any, Callable, Dict, Iterable, List, Set, Union + + +class Node: + """``Node`` is an auxiliary class facilitating the operations required to + run user-provided functions as part of Kedro pipelines. + """ + + # pylint: disable=W9016 + def __init__( + self, + func: Callable, + inputs: Union[None, str, List[str], Dict[str, str]], + outputs: Union[None, str, List[str], Dict[str, str]], + *, + name: str = None, + tags: Iterable[str] = None, + decorators: Iterable[Callable] = None + ): + """Create a node in the pipeline by providing a function to be called + along with variable names for inputs and/or outputs. + + Args: + func: A function that corresponds to the node logic. + The function should have at least one input or output. + inputs: The name or the list of the names of variables used as + inputs to the function. The number of names should match + the number of arguments in the definition of the provided + function. When Dict[str, str] is provided, variable names + will be mapped to function argument names. + outputs: The name or the list of the names of variables used + as outputs to the function. The number of names should match + the number of outputs returned by the provided function. + When Dict[str, str] is provided, variable names will be mapped + to the named outputs the function returns. + name: Optional node name to be used when displaying the node in + logs or any other visualisations. + tags: Optional set of tags to be applied to the node. + decorators: Optional list of decorators to be applied to the node. + + Raises: + ValueError: Raised in the following cases: + a) When the provided arguments do not conform to + the format suggested by the type hint of the argument. + b) When the node produces multiple outputs with the same name. + c) An input has the same name as an output. + + """ + + if not callable(func): + raise ValueError( + _node_error_message( + "first argument must be a " + "function, not `{}`.".format(type(func).__name__) + ) + ) + + if inputs and not isinstance(inputs, (list, dict, str)): + raise ValueError( + _node_error_message( + "`inputs` type must be one of [String, List, Dict, None], " + "not `{}`.".format(type(inputs).__name__) + ) + ) + + if outputs and not isinstance(outputs, (list, dict, str)): + raise ValueError( + _node_error_message( + "`outputs` type must be one of [String, List, Dict, None], " + "not `{}`.".format(type(outputs).__name__) + ) + ) + + if not inputs and not outputs: + raise ValueError( + _node_error_message("it must have some `inputs` or `outputs`.") + ) + + self._validate_inputs(func, inputs) + + self._func = func + self._inputs = inputs + self._outputs = outputs + self._name = name + self._tags = set([] if tags is None else tags) + self._decorators = decorators or [] + + self._validate_unique_outputs() + self._validate_inputs_dif_than_outputs() + + def tag(self, tags: Iterable[str]) -> "Node": + """Create a new ``Node`` which is an exact copy of the current one, + but with more tags added to it. + + Args: + tags: The tags to be added to the new node. + + Returns: + A copy of the current ``Node`` object with the tags added. + + """ + return Node( + self._func, + self._inputs, + self._outputs, + name=self._name, + tags=set(self._tags) | set(tags), + decorators=self._decorators, + ) + + @property + def tags(self) -> Set[str]: + """Return the tags assigned to the node. + + Returns: + Return the set of all assigned tags to the node. + + """ + return set(self._tags) + + @property + def _logger(self): + return logging.getLogger(__name__) + + def decorate(self, *decorators: Callable) -> "Node": + """Create a new ``Node`` by applying the provided decorators to the + underlying function. If no decorators are passed, it will return a + new ``Node`` object, but with no changes to the function. + + Args: + decorators: List of decorators to be applied on the node function. + Decorators will be applied from right to left. + + Returns: + A new ``Node`` object with the decorators applied to the function. + + Example: + :: + + >>> + >>> from functools import wraps + >>> + >>> + >>> def apply_f(func: Callable) -> Callable: + >>> @wraps(func) + >>> def with_f(*args, **kwargs): + >>> args = ["f({})".format(a) for a in args] + >>> return func(*args, **kwargs) + >>> return with_f + >>> + >>> + >>> def apply_g(func: Callable) -> Callable: + >>> @wraps(func) + >>> def with_g(*args, **kwargs): + >>> args = ["g({})".format(a) for a in args] + >>> return func(*args, **kwargs) + >>> return with_g + >>> + >>> + >>> def apply_h(func: Callable) -> Callable: + >>> @wraps(func) + >>> def with_h(*args, **kwargs): + >>> args = ["h({})".format(a) for a in args] + >>> return func(*args, **kwargs) + >>> return with_h + >>> + >>> + >>> def apply_fg(func: Callable) -> Callable: + >>> @wraps(func) + >>> def with_fg(*args, **kwargs): + >>> args = ["fg({})".format(a) for a in args] + >>> return func(*args, **kwargs) + >>> return with_fg + >>> + >>> + >>> def identity(value): + >>> return value + >>> + >>> + >>> # using it as a regular python decorator + >>> @apply_f + >>> def decorated_identity(value): + >>> return value + >>> + >>> + >>> # wrapping the node function + >>> old_node = node(apply_g(decorated_identity), 'input', 'output', + >>> name='node') + >>> # using the .decorate() method to apply multiple decorators + >>> new_node = old_node.decorate(apply_h, apply_fg) + >>> result = new_node.run(dict(input=1)) + >>> + >>> assert old_node.name == new_node.name + >>> assert "output" in result + >>> assert result['output'] == "f(g(fg(h(1))))" + """ + decorators = self._decorators + list(reversed(decorators)) + return Node( + self._func, + self._inputs, + self._outputs, + name=self._name, + tags=self.tags, + decorators=decorators, + ) + + @property + def name(self) -> str: # pragma: no-cover + """Node's name. + + Returns: + Node's name if provided or the name of its function. + """ + return self._name if self._name else str(self) + + @property + def inputs(self) -> List[str]: + """Return node inputs as a list preserving the original order + if possible. + + Returns: + Node input names as a list. + + """ + return self._to_list(self._inputs) + + @property + def outputs(self) -> List[str]: + """Return node outputs as a list preserving the original order + if possible. + + Returns: + Node output names as a list. + + """ + return self._to_list(self._outputs) + + @staticmethod + def _to_list(element: Union[None, str, List[str], Dict[str, str]]) -> List: + """Make a list out of node inputs/outputs. + + Returns: + List[str]: Node input/output names as a list to standardise. + """ + if element is None: + return list() + if isinstance(element, str): + return [element] + if isinstance(element, dict): + return list(element.values()) + return element + + def run(self, inputs: Dict[str, Any] = None) -> Dict[str, Any]: + """Run this node using the provided inputs and return its results + in a dictionary. + + Args: + inputs: Dictionary of inputs as specified at the creation of + the node. + + Raises: + ValueError: In the following cases: + a) The node function inputs are incompatible with the node + input definition. + Example 1: node definition input is a list of 2 + DataFrames, whereas only 1 was provided or 2 different ones + were provided. + b) The node function outputs are incompatible with the node + output definition. + Example 1: node function definition is a dictionary, + whereas function returns a list. + Example 2: node definition output is a list of 5 + strings, whereas the function returns a list of 4 objects. + Exception: Any exception thrown during execution of the node. + + Returns: + All produced node outputs are returned in a dictionary, where the + keys are defined by the node outputs. + + """ + self._logger.debug("Running node: %s", str(self)) + + outputs = None + + if not (inputs is None or isinstance(inputs, dict)): + raise ValueError( + "Node.run() expects a dictionary or None, " + "but got {} instead".format(type(inputs)) + ) + + try: + inputs = dict() if inputs is None else inputs + if not self._inputs: + outputs = self._run_no_inputs(inputs) + elif isinstance(self._inputs, str): + outputs = self._run_one_input(inputs) + elif isinstance(self._inputs, list): + outputs = self._run_with_list(inputs) + elif isinstance(self._inputs, dict): + outputs = self._run_with_dict(inputs) + + return self._outputs_to_dictionary(outputs) + + # purposely catch all exceptions + except Exception as exc: + self._logger.error("Node `%s` failed with error: \n%s", str(self), str(exc)) + raise exc + + @property + def _decorated_func(self): + return reduce(lambda g, f: f(g), self._decorators, self._func) + + def _run_no_inputs(self, inputs: Dict[str, Any]): + if inputs: + raise ValueError( + "Node {} expected no inputs, " + "but got the following {} input(s) instead: {}".format( + str(self), len(inputs), list(sorted(inputs.keys())) + ) + ) + + return self._decorated_func() + + def _run_one_input(self, inputs: Dict[str, Any]): + if len(inputs) != 1 or self._inputs not in inputs: + raise ValueError( + "Node {} expected one input named '{}', " + "but got the following {} input(s) instead: {}".format( + str(self), self._inputs, len(inputs), list(sorted(inputs.keys())) + ) + ) + + return self._decorated_func(inputs[self._inputs]) + + def _run_with_list(self, inputs: Dict[str, Any]): + all_available = set(self._inputs).issubset(inputs.keys()) + if len(self._inputs) != len(inputs) or not all_available: + # This can be split in future into two cases, one successful + raise ValueError( + "Node {} expected {} input(s) {}, " + "but got the following {} input(s) instead: {}.".format( + str(self), + len(self._inputs), + self._inputs, + len(inputs), + list(sorted(inputs.keys())), + ) + ) + # Ensure the function gets the inputs in the correct order + return self._decorated_func(*[inputs[item] for item in self._inputs]) + + def _run_with_dict(self, inputs: Dict[str, Any]): + all_available = set(self._inputs.values()).issubset(inputs.keys()) + if len(set(self._inputs.values())) != len(inputs) or not all_available: + # This can be split in future into two cases, one successful + raise ValueError( + "Node {} expected {} input(s) {}, " + "but got the following {} input(s) instead: {}.".format( + str(self), + len(set(self._inputs.values())), + list(sorted(set(self._inputs.values()))), + len(inputs), + list(sorted(inputs.keys())), + ) + ) + kwargs = {arg: inputs[alias] for arg, alias in self._inputs.items()} + return self._decorated_func(**kwargs) + + def _outputs_to_dictionary(self, outputs): + def _from_dict(): + if set(self._outputs.keys()) != set(outputs.keys()): + raise ValueError( + "Failed to save outputs of node {}.\n" + "The node's output keys {} do not " + "match with the returned output's keys {}.".format( + str(self), set(outputs.keys()), set(self._outputs.keys()) + ) + ) + return {name: outputs[key] for key, name in self._outputs.items()} + + def _from_list(): + if not isinstance(outputs, list): + raise ValueError( + "Failed to save outputs of node {}.\n" + "The node definition contains a list of " + "outputs {}, whereas the node function " + "returned a `{}`.".format( + str(self), self._outputs, type(outputs).__name__ + ) + ) + if len(outputs) != len(self._outputs): + raise ValueError( + "Failed to save outputs of node {}.\n" + "The node function returned {} output(s), " + "whereas the node definition contains {} " + "output(s).".format(str(self), len(outputs), len(self._outputs)) + ) + + return dict(zip(self._outputs, outputs)) + + if isinstance(self._outputs, dict) and not isinstance(outputs, dict): + raise ValueError( + "Failed to save outputs of node {}.\n" + "The node output is a dictionary, whereas the " + "function output is not.".format(str(self)) + ) + + if self._outputs is None: + return {} + if isinstance(self._outputs, str): + return {self._outputs: outputs} + if isinstance(self._outputs, dict): + return _from_dict() + return _from_list() + + def _validate_inputs(self, func, inputs): + # inspect does not support built-in Python functions written in C. + # Thus we only validate func if it is not built-in. + if not inspect.isbuiltin(func): + args, kwargs = self._process_inputs_for_bind(inputs) + try: + inspect.signature(func).bind(*args, **kwargs) + except Exception as exc: + func_args = inspect.signature(func).parameters.keys() + raise TypeError( + "Inputs of function expected {}, but got {}".format( + str(list(func_args)), str(inputs) + ) + ) from exc + + @staticmethod + def _process_inputs_for_bind(inputs: Union[None, str, List[str], Dict[str, str]]): + # Safeguard that we do not mutate list inputs + inputs = copy.copy(inputs) + args = [] + kwargs = {} + if isinstance(inputs, str): + args = [inputs] + elif isinstance(inputs, list): + args = inputs + elif isinstance(inputs, dict): + kwargs = inputs + return args, kwargs + + def _validate_unique_outputs(self): + diff = Counter(self.outputs) - Counter(set(self.outputs)) + if diff: + raise ValueError( + "Failed to create node {} due to duplicate" + " output(s) {}.\nNode outputs must be unique.".format( + str(self), set(diff.keys()) + ) + ) + + def _validate_inputs_dif_than_outputs(self): + common_in_out = set(self.inputs).intersection(set(self.outputs)) + if common_in_out: + raise ValueError( + "Failed to create node {}.\n" + "A node cannot have the same inputs and outputs: " + "{}".format(str(self), common_in_out) + ) + + def __str__(self): + def _sorted_set_to_str(xset): + return "[" + ",".join([name for name in sorted(xset)]) + "]" + + out_str = _sorted_set_to_str(self.outputs) if self._outputs else "None" + in_str = _sorted_set_to_str(self.inputs) if self._inputs else "None" + + prefix = self._name + ": " if self._name else "" + return prefix + "{}({}) -> {}".format(self._func.__name__, in_str, out_str) + + def __repr__(self): # pragma: no cover + return "Node({}, {!r}, {!r}, {!r})".format( + self._func.__name__, self._inputs, self._outputs, self._name + ) + + def __eq__(self, other): # pragma: no cover + keys = {"_inputs", "_outputs", "_func", "_name"} + return all(self.__dict__[k] == other.__dict__[k] for k in keys) + + def __hash__(self): + return hash((tuple(self.inputs), tuple(self.outputs), self._name)) + + +def _node_error_message(msg) -> str: + return ( + "Invalid Node definition: {}\n" + "Format should be: node(function, inputs, outputs)" + ).format(msg) + + +def node( # pylint: disable=W9016 + func: Callable, + inputs: Union[None, str, List[str], Dict[str, str]], + outputs: Union[None, str, List[str], Dict[str, str]], + *, + name: str = None, + tags: Iterable[str] = None +) -> Node: + """Create a node in the pipeline by providing a function to be called + along with variable names for inputs and/or outputs. + + Args: + func: A function that corresponds to the node logic. The function + should have at least one input or output. + inputs: The name or the list of the names of variables used as inputs + to the function. The number of names should match the number of + arguments in the definition of the provided function. When + Dict[str, str] is provided, variable names will be mapped to + function argument names. + outputs: The name or the list of the names of variables used as outputs + to the function. The number of names should match the number of + outputs returned by the provided function. When Dict[str, str] + is provided, variable names will be mapped to the named outputs the + function returns. + name: Optional node name to be used when displaying the node in logs or + any other visualisations. + tags: Optional set of tags to be applied to the node. + + Returns: + A Node object with mapped inputs, outputs and function. + + Example: + :: + + >>> import pandas as pd + >>> import numpy as np + >>> + >>> def clean_data(cars: pd.DataFrame, + >>> boats: pd.DataFrame) -> Dict[str, pd.DataFrame]: + >>> return dict(cars_df=cars.dropna(), boats_df=boats.dropna()) + >>> + >>> def halve_dataframe(data: pd.DataFrame) -> List[pd.DataFrame]: + >>> return np.array_split(data, 2) + >>> + >>> nodes = [ + >>> node(clean_data, + >>> inputs=['cars2017', 'boats2017'], + >>> outputs=dict(cars_df='clean_cars2017', + >>> boats_df='clean_boats2017')), + >>> node(halve_dataframe, + >>> 'clean_cars2017', + >>> ['train_cars2017', 'test_cars2017']), + >>> node(halve_dataframe, + >>> dict(data='clean_boats2017'), + >>> ['train_boats2017', 'test_boats2017']) + >>> ] + """ + return Node(func, inputs, outputs, name=name, tags=tags) diff --git a/kedro/pipeline/pipeline.py b/kedro/pipeline/pipeline.py new file mode 100644 index 0000000000..b6e115b449 --- /dev/null +++ b/kedro/pipeline/pipeline.py @@ -0,0 +1,659 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. +"""A ``Pipeline`` is a collection of ``Node`` objects which can be executed as +a Directed Acyclic Graph, sequentially or in parallel. The ``Pipeline`` class +offers quick access to input dependencies, +produced outputs and execution order. +""" + +import copy +import json +import logging +from collections import Counter, defaultdict +from itertools import chain +from typing import Callable, Dict, Iterable, List, Set, Tuple, Union + +from toposort import CircularDependencyError as ToposortCircleError +from toposort import toposort + +import kedro +from kedro.pipeline.node import Node + + +class OutputNotUniqueError(Exception): + """Raised when two or more nodes that are part of the same pipeline + produce outputs with the same name. + """ + + pass + + +class Pipeline: + """A ``Pipeline`` defined as a collection of ``Node`` objects. This class + treats nodes as part of a graph representation and provides inputs, + outputs and execution order. + """ + + def __init__(self, nodes: Iterable[Union[Node, "Pipeline"]], name: str = None): + """Initialise ``Pipeline`` with a list of ``Node`` instances. + + Args: + nodes: The list of nodes the ``Pipeline`` will be made of. If you + provide pipelines among the list of nodes, those pipelines will + be expanded and all their nodes will become part of this + new pipeline. + name: The name of the pipeline. If specified, this name + will be used to tag all of the nodes in the pipeline. + Raises: + ValueError: + When an empty list of nodes is provided, or when not all + nodes have unique names. + CircularDependencyError: + When visiting all the nodes is not + possible due to the existence of a circular dependency. + OutputNotUniqueError: + When multiple ``Node`` instances produce the same output. + Example: + :: + + >>> from kedro.pipeline import Pipeline + >>> from kedro.pipeline import node + >>> + >>> # In the following scenario first_ds and second_ds + >>> # are data sets provided by io. Pipeline will pass these + >>> # data sets to first_node function and provides the result + >>> # to the second_node as input. + >>> + >>> def first_node(first_ds, second_ds): + >>> return dict(third_ds=first_ds+second_ds) + >>> + >>> def second_node(third_ds): + >>> return third_ds + >>> + >>> pipeline = Pipeline([ + >>> node(first_node, ['first_ds', 'second_ds'], ['third_ds']), + >>> node(second_node, dict(third_ds='third_ds'), 'fourth_ds')]) + >>> + >>> pipeline.describe() + >>> + + """ + _validate_no_node_list(nodes) + nodes = list( + chain.from_iterable( + [[n] if isinstance(n, Node) else n.nodes for n in nodes] + ) + ) + _validate_duplicate_nodes(nodes) + + if name: + nodes = [n.tag([name]) for n in nodes] + self._name = name + self._logger = logging.getLogger(__name__) + self._nodes_by_name = {node.name: node for node in nodes} + _validate_unique_outputs(nodes) + + self._nodes_by_input = defaultdict(set) # input: {nodes with input} + for node in nodes: + for input_ in node.inputs: + self._nodes_by_input[input_].add(node) + + self._nodes_by_output = {} # output: node + for node in nodes: + for output in node.outputs: + self._nodes_by_output[output] = node + + self._topo_sorted_nodes = _topologically_sorted(nodes) + + def all_inputs(self) -> Set[str]: + """All inputs for all nodes in the pipeline. + + Returns: + All node input names as a Set. + + """ + return set.union(set(), *[node.inputs for node in self.nodes]) + + def all_outputs(self) -> Set[str]: + """All outputs of all nodes in the pipeline. + + Returns: + All node outputs. + + """ + return set.union(set(), *[node.outputs for node in self.nodes]) + + def inputs(self) -> Set[str]: + """The names of free inputs that must be provided at runtime so that + the pipeline is runnable. Does not include intermediate inputs which + are produced and consumed by the inner pipeline nodes. + + Returns: + The set of free input names needed by the pipeline. + + """ + return self.all_inputs() - self.all_outputs() + + def outputs(self) -> Set[str]: + """The names of outputs produced when the whole pipeline is run. + Does not include intermediate outputs that are consumed by + other pipeline nodes. + + Returns: + The set of final pipeline outputs. + + """ + return self.all_outputs() - self.all_inputs() + + def data_sets(self) -> Set[str]: + """The names of all data sets used by the ``Pipeline``, + including inputs and outputs. + + Returns: + The set of all pipeline data sets. + + """ + return self.all_outputs() | self.all_inputs() + + def describe(self, names_only: bool = True) -> str: + """Obtain the order of execution and expected free input variables in + a loggable pre-formatted string. The order of nodes matches the order + of execution given by the topological sort. + + Args: + names_only: The flag to describe names_only pipeline with just + node names. + + Example: + :: + + >>> pipeline = Pipeline([ ... ]) + >>> + >>> logger = logging.getLogger(__name__) + >>> + >>> logger.info(pipeline.describe()) + + After invocation the following will be printed as an info level log + statement: + :: + + #### Pipeline execution order #### + Inputs: C, D + + func1([C]) -> [A] + func2([D]) -> [B] + func3([A, D]) -> [E] + + Outputs: B, E + ################################## + + Returns: + The pipeline description as a formatted string. + + """ + + def set_to_string(set_of_strings): + """Convert set to a string but return 'None' in case of an empty + set. + """ + return ", ".join(sorted(set_of_strings)) if set_of_strings else "None" + + nodes_as_string = "\n".join( + node.name if names_only else str(node) for node in self.nodes + ) + + str_representation = ( + "#### Pipeline execution order ####\n" + "Name: {0}\n" + "Inputs: {1}\n\n" + "{2}\n\n" + "Outputs: {3}\n" + "##################################" + ) + + return str_representation.format( + self._name, + set_to_string(self.inputs()), + nodes_as_string, + set_to_string(self.outputs()), + ) + + @property + def name(self) -> str: + """Get the pipeline name. + + Returns: + The name of the pipeline as provided in the constructor. + + """ + return self._name + + @property + def nodes(self) -> List[Node]: + """Return a list of the pipeline nodes in topological order, i.e. if + node A needs to be run before node B, it will appear earlier in the + list. + + Returns: + The list of all pipeline nodes in topological order. + + """ + return copy.copy(list(chain.from_iterable(self._topo_sorted_nodes))) + + @property + def grouped_nodes(self) -> List[List[Node]]: + """Return a list of the pipeline nodes in topologically ordered groups, + i.e. if node A needs to be run before node B, it will appear in an + earlier group. + + Returns: + The pipeline nodes in topologically ordered groups. + + """ + return copy.copy(self._topo_sorted_nodes) + + def only_nodes(self, *node_names: str) -> "Pipeline": + """Create a new ``Pipeline`` which will contain only the specified + nodes by name. + + Args: + node_names: One or more node names. The returned ``Pipeline`` + will only contain these nodes. + + Raises: + ValueError: When some invalid node name is given. + + Returns: + A new ``Pipeline``, containing only ``nodes``. + + """ + unregistered_nodes = set(node_names) - set(self._nodes_by_name.keys()) + if unregistered_nodes: + raise ValueError( + "Pipeline does not contain nodes named {}.".format( + list(unregistered_nodes) + ) + ) + + nodes = [self._nodes_by_name[name] for name in node_names] + return Pipeline(nodes) + + def only_nodes_with_inputs(self, *inputs: str) -> "Pipeline": + """Create a new ``Pipeline`` object with the nodes which depend + directly on the provided inputs. + + Args: + inputs: A list of inputs which should be used as a starting + point of the new ``Pipeline``. + + Raises: + ValueError: Raised when any of the given inputs do not exist in the + ``Pipeline`` object. + + Returns: + A new ``Pipeline`` object, containing a subset of the + nodes of the current one such that only nodes depending + directly on the provided inputs are being copied. + + """ + starting = set(inputs) + + missing = sorted(starting - self.data_sets()) + if missing: + raise ValueError( + "Pipeline does not contain data_sets named {}".format(missing) + ) + + nodes = set( + chain.from_iterable(self._nodes_by_input[input_] for input_ in starting) + ) + + return Pipeline(nodes) + + def from_inputs(self, *inputs: str) -> "Pipeline": + """Create a new ``Pipeline`` object with the nodes which depend + directly or transitively on the provided inputs. + + Args: + inputs: A list of inputs which should be used as a starting point + of the new ``Pipeline`` + + Raises: + ValueError: Raised when any of the given inputs do not exist in the + ``Pipeline`` object. + + Returns: + A new ``Pipeline`` object, containing a subset of the + nodes of the current one such that only nodes depending + directly or transitively on the provided inputs are being + copied. + + """ + starting = set(inputs) + + missing = sorted(starting - self.data_sets()) + if missing: + raise ValueError( + "Pipeline does not contain data_sets named {}".format(missing) + ) + + all_nodes = set() + while True: + nodes = set( + chain.from_iterable(self._nodes_by_input[input_] for input_ in starting) + ) + + outputs = set(chain.from_iterable(node.outputs for node in nodes)) + + starting = outputs + all_nodes |= nodes + if not nodes: + break + + return Pipeline(all_nodes) + + def only_nodes_with_outputs(self, *outputs: str) -> "Pipeline": + """Create a new ``Pipeline`` object with the nodes which are directly + required to produce the provided outputs. + + Args: + outputs: A list of outputs which should be the final outputs + of the new ``Pipeline``. + + Raises: + ValueError: Raised when any of the given outputs do not exist in + the ``Pipeline`` object. + + Returns: + A new ``Pipeline`` object, containing a subset of the nodes of the + current one such that only nodes which are directly required to + produce the provided outputs are being copied. + """ + starting = set(outputs) + + missing = sorted(starting - self.data_sets()) + if missing: + raise ValueError( + "Pipeline does not contain data_sets named {}".format(missing) + ) + + nodes = { + self._nodes_by_output[output] + for output in starting + if output in self._nodes_by_output + } + + return Pipeline(nodes) + + def to_outputs(self, *outputs: str) -> "Pipeline": + """Create a new ``Pipeline`` object with the nodes which are directly + or transitively required to produce the provided outputs. + + Args: + outputs: A list of outputs which should be the final outputs of + the new ``Pipeline``. + + Raises: + ValueError: Raised when any of the given outputs do not exist in + the ``Pipeline`` object. + + Returns: + A new ``Pipeline`` object, containing a subset of the nodes of the + current one such that only nodes which are directly or transitively + required to produce the provided outputs are being copied. + + """ + starting = set(outputs) + + missing = sorted(starting - self.data_sets()) + if missing: + raise ValueError( + "Pipeline does not contain data_sets named {}".format(missing) + ) + + all_nodes = set() + while True: + nodes = { + self._nodes_by_output[output] + for output in starting + if output in self._nodes_by_output + } + + inputs = set(chain.from_iterable(node.inputs for node in nodes)) + + starting = inputs + all_nodes |= nodes + if not nodes: + break + + return Pipeline(all_nodes) + + def from_nodes(self, *node_names: str) -> "Pipeline": + """Create a new ``Pipeline`` object with the nodes which depend + directly or transitively on the provided nodes. + + Args: + node_names: A list of node_names which should be used as a + starting point of the new ``Pipeline``. + Raises: + ValueError: Raised when any of the given names do not exist in the + ``Pipeline`` object. + Returns: + A new ``Pipeline`` object, containing a subset of the nodes of + the current one such that only nodes depending directly or + transitively on the provided nodes are being copied. + + """ + + res = self.only_nodes(*node_names) + res += self.from_inputs(*res.all_outputs()) + return res + + def to_nodes(self, *node_names: str) -> "Pipeline": + """Create a new ``Pipeline`` object with the nodes required directly + or transitively by the provided nodes. + + Args: + node_names: A list of node_names which should be used as a + starting point of the new ``Pipeline``. + Raises: + ValueError: Raised when any of the given names do not exist in the + ``Pipeline`` object. + Returns: + A new ``Pipeline`` object, containing a subset of the nodes of the + current one such that only nodes required directly or + transitively by the provided nodes are being copied. + + """ + + res = self.only_nodes(*node_names) + res += self.to_outputs(*res.all_inputs()) + return res + + def only_nodes_with_tags(self, *tags: str) -> "Pipeline": + """Create a new ``Pipeline`` object with the nodes which contain *any* + of the provided tags. The resulting ``Pipeline`` is empty if no tags + are provided. + + Args: + tags: A list of node tags which should be used to lookup + the nodes of the new ``Pipeline``. + Returns: + Pipeline: A new ``Pipeline`` object, containing a subset of the + nodes of the current one such that only nodes containing *any* + of the tags provided are being copied. + """ + tags = set(tags) + nodes = [node for node in self.nodes if tags & node.tags] + return Pipeline(nodes) + + @property + def node_dependencies(self) -> Set[Tuple[Node, Node]]: + """All pairs of nodes where the first Node has a direct dependency on + the second Node. + + Returns: + Pairs of dependent nodes + """ + deps = set() + for parent in self.nodes: + for output in parent.outputs: + for child in self._nodes_by_input[output]: + deps.add((child, parent)) + return deps + + def decorate(self, *decorators: Callable) -> "Pipeline": + """Create a new ``Pipeline`` by applying the provided decorators to + all the nodes in the pipeline. If no decorators are passed, it will + return a copy of the current ``Pipeline`` object. + + Args: + decorators: List of decorators to be applied on + all node functions in the pipeline. Decorators will be applied + from right to left. + + Returns: + A new ``Pipeline`` object with all nodes decorated with the + provided decorators. + + """ + nodes = [node.decorate(*decorators) for node in self.nodes] + return Pipeline(nodes) + + def __repr__(self): # pragma: no cover + reprs = [repr(node) for node in self.nodes] + return "{}([\n{}\n])".format(self.__class__.name, ",\n".join(reprs)) + + def to_json(self): + """Return a json representation of the pipeline.""" + transformed = [ + { + "name": n.name, + "inputs": list(n.inputs), + "outputs": list(n.outputs), + "tags": list(n.tags), + } + for n in self.nodes + ] + pipeline_versioned = { + "kedro_version": kedro.__version__, + "pipeline": transformed, + } + + return json.dumps(pipeline_versioned) + + def __add__(self, other): + if not isinstance(other, Pipeline): + return NotImplemented + return Pipeline(set(self.nodes + other.nodes)) + + +def _validate_no_node_list(nodes: Iterable[Node]): + if nodes is None: + raise ValueError( + "`nodes` argument of `Pipeline` is None. " + "Must be a list of nodes instead." + ) + + +def _validate_duplicate_nodes(nodes: List[Node]): + names = [node.name for node in nodes] + duplicate = [key for key, value in Counter(names).items() if value > 1] + if duplicate: + raise ValueError( + "Pipeline nodes must have unique names. The " + "following node names appear more than once: {}\n" + "You can name your nodes using the last argument " + "of `node()`.".format(duplicate) + ) + + +def _validate_unique_outputs(nodes: List[Node]) -> None: + outputs_list = list(chain.from_iterable(node.outputs for node in nodes)) + counter_list = Counter(outputs_list) + counter_set = Counter(set(outputs_list)) + diff = counter_list - counter_set + if diff: + raise OutputNotUniqueError( + "Output(s) %s are returned by " + "more than one nodes. Node " + "outputs must be unique." % str(list(sorted(diff.keys()))) + ) + + +def _topologically_sorted(nodes) -> List[List[Node]]: + """Topologically group and sort (order) nodes such that no node depends on + a node that appears in the same or a later group. + + Raises: + CircularDependencyError: When it is not possible to topologically order + provided nodes. + + Returns: + The list of nodes in order of execution. + + """ + + def _circle_error_message(error_data: Dict[str, str]) -> str: + """Error messages provided by the toposort library will + refer to indices that are used as an intermediate step. + This method can be used to replace that message with + one that refers to the nodes' string representations. + """ + indices = error_data.keys() + circular = [str(nodes[int(index)]) for index in indices] + return "Circular dependencies exist among these items: {}".format(circular) + + output_to_node = dict() + for node_id, node in enumerate(nodes): + for output_id in node.outputs: + output_to_node[output_id] = node_id + + toposort_ready = dict() + for node_id, node in enumerate(nodes): + toposort_ready[node_id] = set() + for input_id in node.inputs: + if input_id in output_to_node: + toposort_ready[node_id].add(output_to_node[input_id]) + + try: + toposorted = list(toposort(toposort_ready)) + except ToposortCircleError as error: + message = _circle_error_message(error.data) + raise CircularDependencyError(message) from error + + return [[nodes[idx] for idx in sorted(group)] for group in toposorted] + + +class CircularDependencyError(Exception): + """Raised when it is not possible to provide a topological execution + order for nodes, due to a circular dependency existing in the node + definition. + """ + + pass diff --git a/kedro/runner/__init__.py b/kedro/runner/__init__.py new file mode 100644 index 0000000000..dd4cb9d173 --- /dev/null +++ b/kedro/runner/__init__.py @@ -0,0 +1,35 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +"""``kedro.runner`` provides runners that are able +to execute ``Pipeline`` instances. +""" + +from .parallel_runner import ParallelRunner # NOQA +from .runner import AbstractRunner, run_node # NOQA +from .sequential_runner import SequentialRunner # NOQA diff --git a/kedro/runner/parallel_runner.py b/kedro/runner/parallel_runner.py new file mode 100644 index 0000000000..876c12bd39 --- /dev/null +++ b/kedro/runner/parallel_runner.py @@ -0,0 +1,175 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. +"""``ParallelRunner`` is an ``AbstractRunner`` implementation. It can +be used to run the ``Pipeline`` in parallel groups formed by toposort. +""" + +from concurrent.futures import FIRST_COMPLETED, ProcessPoolExecutor, wait +from multiprocessing.managers import BaseManager, BaseProxy +from multiprocessing.reduction import ForkingPickler +from pickle import PicklingError +from typing import Iterable + +from kedro.io import AbstractDataSet, DataCatalog, MemoryDataSet +from kedro.pipeline import Pipeline +from kedro.pipeline.node import Node +from kedro.runner.runner import AbstractRunner, run_node + + +class ParallelRunnerManager(BaseManager): + """``ParallelRunnerManager`` is used to create shared ``MemoryDataSet`` + objects as default data sets in a pipeline. + """ + + pass + + +ParallelRunnerManager.register("MemoryDataSet", MemoryDataSet) + + +class ParallelRunner(AbstractRunner): + """``ParallelRunner`` is an ``AbstractRunner`` implementation. It can + be used to run the ``Pipeline`` in parallel groups formed by toposort. + """ + + def __init__(self): + """Instantiates the runner by creating a Manager. + """ + self._manager = ParallelRunnerManager() + self._manager.start() + + def create_default_data_set(self, ds_name: str, max_loads: int) -> AbstractDataSet: + """Factory method for creating the default data set for the runner. + + Args: + ds_name: Name of the missing data set + max_loads: Maximum number of times ``load`` method of the + default data set is allowed to be invoked. Any number of + calls is allowed if the argument is not set. + + Returns: + An instance of an implementation of AbstractDataSet to be used + for all unregistered data sets. + + """ + # pylint: disable=no-member + return self._manager.MemoryDataSet(max_loads=max_loads) + + @classmethod + def _validate_nodes(cls, nodes: Iterable[Node]): + """Ensure all tasks are serializable.""" + unserializable = [] + for node in nodes: + try: + ForkingPickler.dumps(node) + except (AttributeError, PicklingError): + unserializable.append(node) + + if unserializable: + raise AttributeError( + "The following nodes cannot be serialized: {}\nIn order to " + "utilize multiprocessing you need to make sure all nodes are " + "serializable, i.e. nodes should not include lambda " + "functions, nested functions, closures, etc.\nIf you " + "are using custom decorators ensure they are correctly using " + "functools.wraps().".format(unserializable) + ) + + @classmethod + def _validate_catalog(cls, catalog: DataCatalog, pipeline: Pipeline): + """Ensure that all data sets are serializable and that we do not have + any non proxied memory data sets being used as outputs as their content + will not be synchronized across threads. + """ + + data_sets = catalog._data_sets # pylint: disable=protected-access + + unserializable = [] + for name, data_set in data_sets.items(): + try: + ForkingPickler.dumps(data_set) + except (AttributeError, PicklingError): + unserializable.append(name) + + if unserializable: + raise AttributeError( + "The following data_sets cannot be serialized: {}\nIn order " + "to utilize multiprocessing you need to make sure all data " + "sets are serializable, i.e. data sets should not make use of " + "lambda functions, nested functions, closures etc.\nIf you " + "are using custom decorators ensure they are correctly using " + "functools.wraps().".format(unserializable) + ) + + memory_data_sets = [] + for name, data_set in data_sets.items(): + if ( + name in pipeline.all_outputs() + and isinstance(data_set, MemoryDataSet) + and not isinstance(data_set, BaseProxy) + ): + memory_data_sets.append(name) + + if memory_data_sets: + raise AttributeError( + "The following data sets are memory data sets: {}\n" + "ParallelRunner does not support output to externally created " + "MemoryDataSets".format(memory_data_sets) + ) + + def _run(self, pipeline: Pipeline, catalog: DataCatalog) -> None: + """The abstract interface for running pipelines. + + Args: + pipeline: The ``Pipeline`` to run. + catalog: The ``DataCatalog`` from which to fetch data. + + Raises: + AttributeError: when the provided pipeline is not suitable for + parallel execution. + + """ + + self._validate_catalog(catalog, pipeline) + self._validate_nodes(pipeline.nodes) + + done_inputs = pipeline.inputs() + todo_nodes = set(pipeline.nodes) + futures = set() + with ProcessPoolExecutor() as pool: + while True: + ready = {n for n in todo_nodes if set(n.inputs) <= done_inputs} + todo_nodes -= ready + for node in ready: + futures.add(pool.submit(run_node, node, catalog)) + if not futures: + assert not todo_nodes + break + done, futures = wait(futures, return_when=FIRST_COMPLETED) + for future in done: + done_inputs.update(future.result().outputs) diff --git a/kedro/runner/runner.py b/kedro/runner/runner.py new file mode 100644 index 0000000000..e596fced19 --- /dev/null +++ b/kedro/runner/runner.py @@ -0,0 +1,170 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. +"""``AbstractRunner`` is the base class for all ``Pipeline`` runner +implementations. +""" + +import logging +from abc import ABC, abstractmethod +from typing import Any, Dict + +from kedro.io import AbstractDataSet, DataCatalog +from kedro.pipeline import Pipeline +from kedro.pipeline.node import Node + + +class AbstractRunner(ABC): + """``AbstractRunner`` is the base class for all ``Pipeline`` runner + implementations. + """ + + @property + def _logger(self): + return logging.getLogger(self.__module__) + + def run(self, pipeline: Pipeline, catalog: DataCatalog) -> Dict[str, Any]: + """Run the ``Pipeline`` using the ``DataSet``s provided by ``catalog`` + and save results back to the same objects. + + Args: + pipeline: The ``Pipeline`` to run. + catalog: The ``DataCatalog`` from which to fetch data. + + Raises: + ValueError: Raised when ``Pipeline`` inputs cannot be satisfied. + + Returns: + Any node outputs that cannot be processed by the ``DataCatalog``. + These are returned in a dictionary, where the keys are defined + by the node outputs. + + """ + + catalog = catalog.shallow_copy() + + unsatisfied = pipeline.inputs() - set(catalog.list()) + if unsatisfied: + raise ValueError( + "Pipeline input(s) {} not found in the " + "DataCatalog".format(unsatisfied) + ) + + free_outputs = pipeline.outputs() - set(catalog.list()) + unregistered_ds = pipeline.data_sets() - set(catalog.list()) + for ds_name in unregistered_ds: + num_loads = len(pipeline.only_nodes_with_inputs(ds_name).nodes) + num_loads = num_loads if num_loads > 0 else None + catalog.add(ds_name, self.create_default_data_set(ds_name, num_loads)) + + self._run(pipeline, catalog) + + self._logger.info("Pipeline execution completed successfully.") + + return {ds_name: catalog.load(ds_name) for ds_name in free_outputs} + + def run_only_missing( + self, pipeline: Pipeline, catalog: DataCatalog + ) -> Dict[str, Any]: + """Run only the missing outputs from the ``Pipeline`` using the + ``DataSet``s provided by ``catalog`` and save results back to the same + objects. + + Args: + pipeline: The ``Pipeline`` to run. + catalog: The ``DataCatalog`` from which to fetch data. + Raises: + ValueError: Raised when ``Pipeline`` inputs cannot be satisfied. + + Returns: + Any node outputs that cannot be processed by the ``DataCatalog``. + These are returned in a dictionary, where the keys are defined + by the node outputs. + + """ + free_outputs = pipeline.outputs() - set(catalog.list()) + missing = {ds for ds in catalog.list() if not catalog.exists(ds)} + to_build = free_outputs | missing + to_rerun = pipeline.only_nodes_with_outputs(*to_build) + pipeline.from_inputs( + *to_build + ) + + # we also need any memory data sets that feed into that + # including chains of memory data sets + memory_sets = pipeline.data_sets() - set(catalog.list()) + output_to_memory = pipeline.only_nodes_with_outputs(*memory_sets) + input_from_memory = to_rerun.inputs() & memory_sets + to_rerun += output_to_memory.to_outputs(*input_from_memory) + + return self.run(to_rerun, catalog) + + @abstractmethod # pragma: no cover + def _run(self, pipeline: Pipeline, catalog: DataCatalog) -> None: + """The abstract interface for running pipelines, assuming that the + inputs have already been checked and normalized by run(). + + Args: + pipeline: The ``Pipeline`` to run. + catalog: The ``DataCatalog`` from which to fetch data. + + """ + pass + + @abstractmethod # pragma: no cover + def create_default_data_set(self, ds_name: str, max_loads: int) -> AbstractDataSet: + """Factory method for creating the default data set for the runner. + + Args: + ds_name: Name of the missing data set + max_loads: Maximum number of times ``load`` method of the + default data set is allowed to be invoked. Any number of + calls is allowed if the argument is not set. + + Returns: + An instance of an implementation of AbstractDataSet to be + used for all unregistered data sets. + + """ + pass + + +def run_node(node: Node, catalog: DataCatalog) -> Node: + """Run a single `Node` with inputs from and outputs to the `catalog`. + + Args: + node: The ``Node`` to run. + catalog: A ``DataCatalog`` containing the node's inputs and outputs. + + Returns: + The node argument. + + """ + inputs = {name: catalog.load(name) for name in node.inputs} + outputs = node.run(inputs) + for name, data in outputs.items(): + catalog.save(name, data) + return node diff --git a/kedro/runner/sequential_runner.py b/kedro/runner/sequential_runner.py new file mode 100644 index 0000000000..22a66e353b --- /dev/null +++ b/kedro/runner/sequential_runner.py @@ -0,0 +1,73 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. +"""``SequentialRunner`` is an ``AbstractRunner`` implementation. It can be +used to run the ``Pipeline`` in a sequential manner using a topological sort +of provided nodes. +""" + +from kedro.io import AbstractDataSet, DataCatalog, MemoryDataSet +from kedro.pipeline import Pipeline +from kedro.runner.runner import AbstractRunner, run_node + + +class SequentialRunner(AbstractRunner): + """``SequentialRunner`` is an ``AbstractRunner`` implementation. It can + be used to run the ``Pipeline`` in a sequential manner using a + topological sort of provided nodes. + """ + + def create_default_data_set(self, ds_name: str, max_loads: int) -> AbstractDataSet: + """Factory method for creating the default data set for the runner. + + Args: + ds_name: Name of the missing data set + max_loads: Maximum number of times ``load`` method of the + default data set is allowed to be invoked. Any number of + calls is allowed if the argument is not set. + + Returns: + An instance of an implementation of AbstractDataSet to be used + for all unregistered data sets. + + """ + return MemoryDataSet(max_loads=max_loads) + + def _run(self, pipeline: Pipeline, catalog: DataCatalog) -> None: + """The method implementing sequential pipeline running. + + Args: + pipeline: The ``Pipeline`` to run. + catalog: The ``DataCatalog`` from which to fetch data. + + """ + nodes = pipeline.nodes + for exec_index, node in enumerate(nodes): + run_node(node, catalog) + self._logger.info( + "Completed %d out of %d tasks", exec_index + 1, len(nodes) + ) diff --git a/kedro/template/cookiecutter.json b/kedro/template/cookiecutter.json new file mode 100644 index 0000000000..406612a8b3 --- /dev/null +++ b/kedro/template/cookiecutter.json @@ -0,0 +1,7 @@ +{ + "project_name": "default", + "repo_name": "{{ cookiecutter.project_name }}", + "python_package": "{{ cookiecutter.repo_name }}", + "kedro_version": "{{ cookiecutter.kedro_version }}", + "include_example": "{{ cookiecutter.include_example }}" +} diff --git a/kedro/template/default_config.yml b/kedro/template/default_config.yml new file mode 100644 index 0000000000..c79cf580b9 --- /dev/null +++ b/kedro/template/default_config.yml @@ -0,0 +1,5 @@ +output_dir: ~/code +project_name: Chess Master +repo_name: project-chess-master +python_package: project_chess_master +include_example: False diff --git a/kedro/template/{{ cookiecutter.repo_name }}/.coveragerc b/kedro/template/{{ cookiecutter.repo_name }}/.coveragerc new file mode 100644 index 0000000000..003c131200 --- /dev/null +++ b/kedro/template/{{ cookiecutter.repo_name }}/.coveragerc @@ -0,0 +1,6 @@ +[report] +fail_under=0 +show_missing=True +exclude_lines = + pragma: no cover + raise NotImplementedError diff --git a/kedro/template/{{ cookiecutter.repo_name }}/.gitignore b/kedro/template/{{ cookiecutter.repo_name }}/.gitignore new file mode 100644 index 0000000000..b16f7747d9 --- /dev/null +++ b/kedro/template/{{ cookiecutter.repo_name }}/.gitignore @@ -0,0 +1,161 @@ +########################## +# KEDRO PROJECT + +# ignore all local configuration +conf/local/** +!conf/local/.gitkeep + +# ignore potentially sensitive credentials files +conf/**/*credentials* + +# ignore everything in the following folders +data/** +logs/** +references/** +results/** + +# except their sub-folders +!data/**/ +!logs/**/ +!references/**/ +!results/**/ + +# also keep all .gitkeep files +!.gitkeep + +# keep also the example dataset +!data/01_raw/iris.csv + + +########################## +# Common files + +# IntelliJ +.idea/ +*.iml +out/ +.idea_modules/ + +### macOS +*.DS_Store +.AppleDouble +.LSOverride +.Trashes + +# Vim +*~ +.*.swo +.*.swp + +# emacs +*~ +\#*\# +/.emacs.desktop +/.emacs.desktop.lock +*.elc + +# JIRA plugin +atlassian-ide-plugin.xml + +# C extensions +*.so + +### Python template +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# Distribution / packaging +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +.hypothesis/ + +# Translations +*.mo +*.pot + +# Django stuff: +*.log +.static_storage/ +.media/ +local_settings.py + +# Flask stuff: +instance/ +.webassets-cache + +# Scrapy stuff: +.scrapy + +# Sphinx documentation +docs/_build/ + +# PyBuilder +target/ + +# Jupyter Notebook +.ipynb_checkpoints + +# IPython +.ipython/profile_default/history.sqlite +.ipython/profile_default/startup/README + +# pyenv +.python-version + +# celery beat schedule file +celerybeat-schedule + +# SageMath parsed files +*.sage.py + +# Environments +.env +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ + +# mkdocs documentation +/site + +# mypy +.mypy_cache/ diff --git a/kedro/template/{{ cookiecutter.repo_name }}/.ipython/profile_default/startup/00-kedro-init.py b/kedro/template/{{ cookiecutter.repo_name }}/.ipython/profile_default/startup/00-kedro-init.py new file mode 100644 index 0000000000..d2714406ee --- /dev/null +++ b/kedro/template/{{ cookiecutter.repo_name }}/.ipython/profile_default/startup/00-kedro-init.py @@ -0,0 +1,66 @@ +import logging.config +import os + +from IPython.core.magic import register_line_magic + + +@register_line_magic +def reload_kedro(line=None): + """"Line magic which reloads all Kedro default variables.""" + global proj_dir + global proj_name + global conf + global io + global startup_error + try: + import kedro.config.default_logger + from {{cookiecutter.python_package}}.run import create_catalog, get_config + + proj_name = "{{cookiecutter.project_name}}" + logging.info("** Kedro project {}".format(proj_name)) + + os.chdir(proj_dir) # Move to project root + + # Load Kedro context (conf, io, parameters) + conf = get_config(proj_dir) + io = create_catalog(conf) + + logging.info("Defined global variables proj_dir, proj_name, conf and io") + except ImportError as err: + startup_error = err + if "create_catalog" in str(err): + message = ( + "The function `create_catalog` is missing from " + "{{cookiecutter.repo_name}}/src/" + "{{cookiecutter.python_package}}/run.py." + "\nEither restore this function, or update " + "{{cookiecutter.repo_name}}/" + ".ipython/profile_default/startup/00-kedro-init.py." + ) + elif "get_config" in str(err): + message = ( + "The function `get_config` is missing from " + "{{cookiecutter.repo_name}}/src/" + "{{cookiecutter.python_package}}/run.py." + "\nEither restore this function, or update " + "{{cookiecutter.repo_name}}/" + ".ipython/profile_default/startup/00-kedro-init.py." + ) + else: + message = ( + "Kedro appears not to be installed in your " "current environment." + ) + logging.error(message) + raise err + except Exception as err: + startup_error = err + logging.error("Kedro's ipython session startup script failed:\n%s", str(err)) + raise err + + +# Find the project root (./../../../) +startup_error = None +proj_dir = os.path.abspath( + os.path.join(os.path.dirname(__file__), os.pardir, os.pardir, os.pardir) +) +reload_kedro() diff --git a/kedro/template/{{ cookiecutter.repo_name }}/.isort.cfg b/kedro/template/{{ cookiecutter.repo_name }}/.isort.cfg new file mode 100644 index 0000000000..590d4b2b7c --- /dev/null +++ b/kedro/template/{{ cookiecutter.repo_name }}/.isort.cfg @@ -0,0 +1,7 @@ +[settings] +multi_line_output=3 +include_trailing_comma=True +force_grid_wrap=0 +use_parentheses=True +line_length=88 +known_third_party=kedro diff --git a/kedro/template/{{ cookiecutter.repo_name }}/README.md b/kedro/template/{{ cookiecutter.repo_name }}/README.md new file mode 100644 index 0000000000..81cc86bad0 --- /dev/null +++ b/kedro/template/{{ cookiecutter.repo_name }}/README.md @@ -0,0 +1,110 @@ +# {{ cookiecutter.project_name }} + +## Overview + +This is your new Kedro project, which was generated using `Kedro {{ cookiecutter.kedro_version }}` by running: + +``` +kedro new +``` + +Take a look at the [documentation](https://kedro.readthedocs.io) to get started. + +## Rules and guidelines + +In order to get the best out of the template: + * Please don't remove any lines from the `.gitignore` file provided + * Make sure your results can be reproduced by adding necessary data to `data/01_raw` only + * Don't commit any data to your repository + * Don't commit any credentials or local configuration to your repository + * Keep all credentials or local configuration in `conf/local/` + +## Installing dependencies + +Dependencies should be declared in `src/requirements.txt`. + +To install them, run: + +``` +kedro install +``` + +## Running Kedro + +You can run your Kedro project with: + +``` +kedro run +``` + +## Testing Kedro + +Have a look at the file `src/tests/test_run.py` for instructions on how to write your tests. You can run your tests with the following command: + +``` +kedro test +``` + +To configure the coverage threshold, please have a look at the file `.coveragerc`. + + +### Working with Kedro from notebooks + +In order to use notebooks in your Kedro project, you need to install Jupyter: + +``` + pip install jupyter +``` + +For using Jupyter Lab, you need to install it: + +``` +pip install jupyterlab +``` + +After installing Jupyter, you can start a local notebook server: + +``` +kedro jupyter notebook +``` + +You can also start Jupyter Lab: + +``` +kedro jupyter lab +``` + +And if you want to run an IPython session: + +``` +kedro ipython +``` + +Running Jupyter or IPython this way provides the following variables in +scope: `proj_dir`, `proj_name`, `conf`, `io`, `parameters` and `startup_error`. + +#### Ignoring notebook output cells in `git` + +In order to automatically strip out all output cell contents before committing to `git`, you can run `kedro activate-nbstripout`. This will add a hook in `.git/config` which will run `nbstripout` before anything is committed to `git`. + +> *Note:* Your output cells will be left intact locally. + +## Package the project + +In order to package the project's Python code in `.egg` and / or a `.wheel` file, you can run: + +``` +kedro package +``` + +After running that, you can find the two packages in `src/dist/`. + +## Building API documentation + +To build API docs for your code using Sphinx, run: + +``` +kedro build-docs +``` + +See your documentation by opening `docs/build/html/index.html`. diff --git a/kedro/template/{{ cookiecutter.repo_name }}/conf/README.md b/kedro/template/{{ cookiecutter.repo_name }}/conf/README.md new file mode 100644 index 0000000000..ee8c6103fc --- /dev/null +++ b/kedro/template/{{ cookiecutter.repo_name }}/conf/README.md @@ -0,0 +1,27 @@ +# What is this for? + +This folder should be used to store configuration files used by Kedro or by separate tools. + +This file can be used to provide users with instructions for how to reproduce local configuration with their own credentials. You can edit the file however you like, but you may wish to retain the information below and add your own section in the section titled **Instructions**. + +## Local configuration + +The `local` folder should be used for configuration that is either user-specific (e.g. IDE configuration) or protected (e.g. security keys). + +> *Note:* Please do not check in any local configuration to version control. + +## Base configuration + +The `base` folder is for shared configuration, such as non-sensitive and project-related configuration that may +be shared across team members. + +WARNING: Please do not put access credentials in the base configuration folder. + +# Instructions + + + + + +# Find out more +You can find out more about configuration from the [user guide documentation](https://kedro.readthedocs.io/04_user_guide/03_configuration.html). diff --git a/kedro/template/{{ cookiecutter.repo_name }}/conf/base/catalog.yml b/kedro/template/{{ cookiecutter.repo_name }}/conf/base/catalog.yml new file mode 100644 index 0000000000..9e59fe7d7e --- /dev/null +++ b/kedro/template/{{ cookiecutter.repo_name }}/conf/base/catalog.yml @@ -0,0 +1,104 @@ +# Here you can define all your data sets by using simple YAML syntax. +# +# Documentation for this file format can be found in the kedro docs under `Accessing data` +# You can access the kedro docs by running `kedro docs` +{% if cookiecutter.include_example == "True" %} +# +# An example data set definition can look as follows: +# + +#cars.csv: +# type: CSVLocalDataSet # https://kedro.readthedocs.io/en/latest/kedro.io.CSVLocalDataSet.html +# filepath: data/01_raw/company/cars.csv +# load_args: # https://pandas.pydata.org/pandas-docs/stable/generated/pandas.read_csv.html +# sep: ',' +# skiprows: 0 +# # skipfooter: 1 +# # engine: python # Some of the features including skipfooter is only available in python engine +# engine: c # This is a faster option +# na_values: ['#NA', 'NA'] +# save_args: # https://pandas.pydata.org/pandas-docs/stable/generated/pandas.DataFrame.to_csv.html +# index: False +# date_format: '%Y-%m-%d %H:%M' +# decimal: '.' +# +#cars.csv.s3: +# type: CSVS3DataSet # https://kedro.readthedocs.io/en/latest/kedro.io.CSVS3DataSet.html +# filepath: data/02_intermediate/company/cars.csv +# credentials: dev_s3 +# load_args: # https://pandas.pydata.org/pandas-docs/stable/generated/pandas.read_csv.html +# sep: ',' +# skiprows: 5 +# skipfooter: 1 +# na_values: ['#NA', 'NA'] +# index: False +# save_args: # https://pandas.pydata.org/pandas-docs/stable/generated/pandas.DataFrame.to_csv.html +# index: False +# date_format: '%Y-%m-%d %H:%M' +# decimal: '.' +# +#cars.hdf: +# type: HDFLocalDataSet # https://kedro.readthedocs.io/en/latest/kedro.io.HDFLocalDataSet.html +# filepath: data/02_intermediate/cars.hdf +# key: name +# load_args: # https://pandas.pydata.org/pandas-docs/stable/generated/pandas.read_hdf.html +# columns: ['engine', 'name'] +# save_args: # https://pandas.pydata.org/pandas-docs/stable/generated/pandas.DataFrame.to_hdf.html +# mode: 'w' # Overwrite even when the file already exists +# # mode: 'a' # Appends or creates a file +# # mode: '+r' # Appends an existing file +# dropna: True +# +#cars.parquet: +# type: ParquetLocalDataSet # https://kedro.readthedocs.io/en/latest/kedro.io.ParquetLocalDataSet.html +# filepath: data/02_intermediate/cars.parquet +# load_args: +# columns: ['name', 'gear','disp', 'wt'] +# save_args: +# compression: 'GZIP' +# +#cars.sql: +# type: SQLTableDataSet # https://kedro.readthedocs.io/en/latest/kedro.io.SQLTableDataSet.html +# credentials: dev_postgres +# table_name: cars +# load_args: # https://pandas.pydata.org/pandas-docs/stable/generated/pandas.read_sql_table.html +# index_col: ['name'] +# columns: ['name', 'gear'] +# save_args: # https://pandas.pydata.org/pandas-docs/stable/generated/pandas.DataFrame.to_sql.html +# if_exists: 'replace' +# # if_exists: 'fail' +# # if_exists: 'append' +# +#cars.sql.query: +# type: SQLQueryDataSet # https://kedro.readthedocs.io/en/latest/kedro.io.SQLQueryDataSet.html +# credentials: dev_postgres +# sql: 'select * from cars where gear=4' +# load_args: # https://pandas.pydata.org/pandas-docs/stable/generated/pandas.read_sql_query.html +# index_col: ['name'] +# +#car_model.pkl: +# type: PickleLocalDataSet +# filepath: data/06_models/car_model.pkl +# backend: pickle +# +## Templating and reuse +# +#_csv: &csv +# type: kedro.contrib.io.pyspark.spark_data_set.SparkDataSet +# file_format: 'csv' +# load_args: +# header: True +# inferSchema: False +# +#raw_banana_trials: +# <<: *csv +# filepath: "s3a://supermarket/01_raw/Banana/trials.csv" + + + +# This is a data set used by the example pipeline provided with the projected +# template. Please feel free to remove it once you remove the example pipeline. +example_iris_data: + type: CSVLocalDataSet + filepath: data/01_raw/iris.csv +{% endif %} diff --git a/kedro/template/{{ cookiecutter.repo_name }}/conf/base/credentials.yml b/kedro/template/{{ cookiecutter.repo_name }}/conf/base/credentials.yml new file mode 100644 index 0000000000..7b584b37ef --- /dev/null +++ b/kedro/template/{{ cookiecutter.repo_name }}/conf/base/credentials.yml @@ -0,0 +1,19 @@ + +# Here you can define credentials for different data sets and environment. +# +# THIS FILE MUST BE PLACED IN `conf/local`. DO NOT PUSH THIS FILE TO GitHub. +# +# Example: +# +# dev_s3: +# access_token: token +# access_key: key +# +# prod_s3: +# access_token: token +# access_key: key +# +# dev_sql: +# username: admin +# password: admin + diff --git a/kedro/template/{{ cookiecutter.repo_name }}/conf/base/logging.yml b/kedro/template/{{ cookiecutter.repo_name }}/conf/base/logging.yml new file mode 100644 index 0000000000..cc27cf9405 --- /dev/null +++ b/kedro/template/{{ cookiecutter.repo_name }}/conf/base/logging.yml @@ -0,0 +1,50 @@ +version: 1 +disable_existing_loggers: False +formatters: + simple: + format: "%(asctime)s - %(name)s - %(levelname)s - %(message)s" + json_formatter: + format: "%(asctime)s - %(name)s - %(levelname)s - %(message)s" + class: pythonjsonlogger.jsonlogger.JsonFormatter + +handlers: + console: + class: logging.StreamHandler + level: INFO + formatter: simple + stream: ext://sys.stdout + + info_file_handler: + class: logging.handlers.RotatingFileHandler + level: INFO + formatter: simple + filename: logs/info.log + maxBytes: 10485760 # 10MB + backupCount: 20 + encoding: utf8 + delay: True + + error_file_handler: + class: logging.handlers.RotatingFileHandler + level: ERROR + formatter: simple + filename: logs/errors.log + maxBytes: 10485760 # 10MB + backupCount: 20 + encoding: utf8 + delay: True + +loggers: + kedro.io: + level: INFO + handlers: [console, info_file_handler, error_file_handler] + propagate: no + + kedro.pipeline: + level: INFO + handlers: [console, info_file_handler, error_file_handler] + propagate: no + +root: + level: INFO + handlers: [console, info_file_handler, error_file_handler] diff --git a/kedro/template/{{ cookiecutter.repo_name }}/conf/base/parameters.yml b/kedro/template/{{ cookiecutter.repo_name }}/conf/base/parameters.yml new file mode 100644 index 0000000000..ee1fc853e2 --- /dev/null +++ b/kedro/template/{{ cookiecutter.repo_name }}/conf/base/parameters.yml @@ -0,0 +1,8 @@ +{% if cookiecutter.include_example == "True" %} +# Parameters for the example pipeline. Feel free to delete these once you +# remove the example pipeline from pipeline.py and the example nodes in +# nodes/example.py +example_test_data_ratio: 0.2 +example_num_train_iter: 10000 +example_learning_rate: 0.01 +{% endif %} diff --git a/kedro/template/{{ cookiecutter.repo_name }}/conf/local/.gitkeep b/kedro/template/{{ cookiecutter.repo_name }}/conf/local/.gitkeep new file mode 100644 index 0000000000..e69de29bb2 diff --git a/kedro/template/{{ cookiecutter.repo_name }}/data/01_raw/.gitkeep b/kedro/template/{{ cookiecutter.repo_name }}/data/01_raw/.gitkeep new file mode 100644 index 0000000000..e69de29bb2 diff --git a/kedro/template/{{ cookiecutter.repo_name }}/data/01_raw/iris.csv b/kedro/template/{{ cookiecutter.repo_name }}/data/01_raw/iris.csv new file mode 100644 index 0000000000..ba0ebd24cd --- /dev/null +++ b/kedro/template/{{ cookiecutter.repo_name }}/data/01_raw/iris.csv @@ -0,0 +1,151 @@ +sepal_length,sepal_width,petal_length,petal_width,species +5.1,3.5,1.4,0.2,setosa +4.9,3.0,1.4,0.2,setosa +4.7,3.2,1.3,0.2,setosa +4.6,3.1,1.5,0.2,setosa +5.0,3.6,1.4,0.2,setosa +5.4,3.9,1.7,0.4,setosa +4.6,3.4,1.4,0.3,setosa +5.0,3.4,1.5,0.2,setosa +4.4,2.9,1.4,0.2,setosa +4.9,3.1,1.5,0.1,setosa +5.4,3.7,1.5,0.2,setosa +4.8,3.4,1.6,0.2,setosa +4.8,3.0,1.4,0.1,setosa +4.3,3.0,1.1,0.1,setosa +5.8,4.0,1.2,0.2,setosa +5.7,4.4,1.5,0.4,setosa +5.4,3.9,1.3,0.4,setosa +5.1,3.5,1.4,0.3,setosa +5.7,3.8,1.7,0.3,setosa +5.1,3.8,1.5,0.3,setosa +5.4,3.4,1.7,0.2,setosa +5.1,3.7,1.5,0.4,setosa +4.6,3.6,1.0,0.2,setosa +5.1,3.3,1.7,0.5,setosa +4.8,3.4,1.9,0.2,setosa +5.0,3.0,1.6,0.2,setosa +5.0,3.4,1.6,0.4,setosa +5.2,3.5,1.5,0.2,setosa +5.2,3.4,1.4,0.2,setosa +4.7,3.2,1.6,0.2,setosa +4.8,3.1,1.6,0.2,setosa +5.4,3.4,1.5,0.4,setosa +5.2,4.1,1.5,0.1,setosa +5.5,4.2,1.4,0.2,setosa +4.9,3.1,1.5,0.1,setosa +5.0,3.2,1.2,0.2,setosa +5.5,3.5,1.3,0.2,setosa +4.9,3.1,1.5,0.1,setosa +4.4,3.0,1.3,0.2,setosa +5.1,3.4,1.5,0.2,setosa +5.0,3.5,1.3,0.3,setosa +4.5,2.3,1.3,0.3,setosa +4.4,3.2,1.3,0.2,setosa +5.0,3.5,1.6,0.6,setosa +5.1,3.8,1.9,0.4,setosa +4.8,3.0,1.4,0.3,setosa +5.1,3.8,1.6,0.2,setosa +4.6,3.2,1.4,0.2,setosa +5.3,3.7,1.5,0.2,setosa +5.0,3.3,1.4,0.2,setosa +7.0,3.2,4.7,1.4,versicolor +6.4,3.2,4.5,1.5,versicolor +6.9,3.1,4.9,1.5,versicolor +5.5,2.3,4.0,1.3,versicolor +6.5,2.8,4.6,1.5,versicolor +5.7,2.8,4.5,1.3,versicolor +6.3,3.3,4.7,1.6,versicolor +4.9,2.4,3.3,1.0,versicolor +6.6,2.9,4.6,1.3,versicolor +5.2,2.7,3.9,1.4,versicolor +5.0,2.0,3.5,1.0,versicolor +5.9,3.0,4.2,1.5,versicolor +6.0,2.2,4.0,1.0,versicolor +6.1,2.9,4.7,1.4,versicolor +5.6,2.9,3.6,1.3,versicolor +6.7,3.1,4.4,1.4,versicolor +5.6,3.0,4.5,1.5,versicolor +5.8,2.7,4.1,1.0,versicolor +6.2,2.2,4.5,1.5,versicolor +5.6,2.5,3.9,1.1,versicolor +5.9,3.2,4.8,1.8,versicolor +6.1,2.8,4.0,1.3,versicolor +6.3,2.5,4.9,1.5,versicolor +6.1,2.8,4.7,1.2,versicolor +6.4,2.9,4.3,1.3,versicolor +6.6,3.0,4.4,1.4,versicolor +6.8,2.8,4.8,1.4,versicolor +6.7,3.0,5.0,1.7,versicolor +6.0,2.9,4.5,1.5,versicolor +5.7,2.6,3.5,1.0,versicolor +5.5,2.4,3.8,1.1,versicolor +5.5,2.4,3.7,1.0,versicolor +5.8,2.7,3.9,1.2,versicolor +6.0,2.7,5.1,1.6,versicolor +5.4,3.0,4.5,1.5,versicolor +6.0,3.4,4.5,1.6,versicolor +6.7,3.1,4.7,1.5,versicolor +6.3,2.3,4.4,1.3,versicolor +5.6,3.0,4.1,1.3,versicolor +5.5,2.5,4.0,1.3,versicolor +5.5,2.6,4.4,1.2,versicolor +6.1,3.0,4.6,1.4,versicolor +5.8,2.6,4.0,1.2,versicolor +5.0,2.3,3.3,1.0,versicolor +5.6,2.7,4.2,1.3,versicolor +5.7,3.0,4.2,1.2,versicolor +5.7,2.9,4.2,1.3,versicolor +6.2,2.9,4.3,1.3,versicolor +5.1,2.5,3.0,1.1,versicolor +5.7,2.8,4.1,1.3,versicolor +6.3,3.3,6.0,2.5,virginica +5.8,2.7,5.1,1.9,virginica +7.1,3.0,5.9,2.1,virginica +6.3,2.9,5.6,1.8,virginica +6.5,3.0,5.8,2.2,virginica +7.6,3.0,6.6,2.1,virginica +4.9,2.5,4.5,1.7,virginica +7.3,2.9,6.3,1.8,virginica +6.7,2.5,5.8,1.8,virginica +7.2,3.6,6.1,2.5,virginica +6.5,3.2,5.1,2.0,virginica +6.4,2.7,5.3,1.9,virginica +6.8,3.0,5.5,2.1,virginica +5.7,2.5,5.0,2.0,virginica +5.8,2.8,5.1,2.4,virginica +6.4,3.2,5.3,2.3,virginica +6.5,3.0,5.5,1.8,virginica +7.7,3.8,6.7,2.2,virginica +7.7,2.6,6.9,2.3,virginica +6.0,2.2,5.0,1.5,virginica +6.9,3.2,5.7,2.3,virginica +5.6,2.8,4.9,2.0,virginica +7.7,2.8,6.7,2.0,virginica +6.3,2.7,4.9,1.8,virginica +6.7,3.3,5.7,2.1,virginica +7.2,3.2,6.0,1.8,virginica +6.2,2.8,4.8,1.8,virginica +6.1,3.0,4.9,1.8,virginica +6.4,2.8,5.6,2.1,virginica +7.2,3.0,5.8,1.6,virginica +7.4,2.8,6.1,1.9,virginica +7.9,3.8,6.4,2.0,virginica +6.4,2.8,5.6,2.2,virginica +6.3,2.8,5.1,1.5,virginica +6.1,2.6,5.6,1.4,virginica +7.7,3.0,6.1,2.3,virginica +6.3,3.4,5.6,2.4,virginica +6.4,3.1,5.5,1.8,virginica +6.0,3.0,4.8,1.8,virginica +6.9,3.1,5.4,2.1,virginica +6.7,3.1,5.6,2.4,virginica +6.9,3.1,5.1,2.3,virginica +5.8,2.7,5.1,1.9,virginica +6.8,3.2,5.9,2.3,virginica +6.7,3.3,5.7,2.5,virginica +6.7,3.0,5.2,2.3,virginica +6.3,2.5,5.0,1.9,virginica +6.5,3.0,5.2,2.0,virginica +6.2,3.4,5.4,2.3,virginica +5.9,3.0,5.1,1.8,virginica diff --git a/kedro/template/{{ cookiecutter.repo_name }}/data/02_intermediate/.gitkeep b/kedro/template/{{ cookiecutter.repo_name }}/data/02_intermediate/.gitkeep new file mode 100644 index 0000000000..e69de29bb2 diff --git a/kedro/template/{{ cookiecutter.repo_name }}/data/03_primary/.gitkeep b/kedro/template/{{ cookiecutter.repo_name }}/data/03_primary/.gitkeep new file mode 100644 index 0000000000..e69de29bb2 diff --git a/kedro/template/{{ cookiecutter.repo_name }}/data/04_features/.gitkeep b/kedro/template/{{ cookiecutter.repo_name }}/data/04_features/.gitkeep new file mode 100644 index 0000000000..e69de29bb2 diff --git a/kedro/template/{{ cookiecutter.repo_name }}/data/05_model_input/.gitkeep b/kedro/template/{{ cookiecutter.repo_name }}/data/05_model_input/.gitkeep new file mode 100644 index 0000000000..e69de29bb2 diff --git a/kedro/template/{{ cookiecutter.repo_name }}/data/06_models/.gitkeep b/kedro/template/{{ cookiecutter.repo_name }}/data/06_models/.gitkeep new file mode 100644 index 0000000000..e69de29bb2 diff --git a/kedro/template/{{ cookiecutter.repo_name }}/data/07_model_output/.gitkeep b/kedro/template/{{ cookiecutter.repo_name }}/data/07_model_output/.gitkeep new file mode 100644 index 0000000000..e69de29bb2 diff --git a/kedro/template/{{ cookiecutter.repo_name }}/data/08_reporting/.gitkeep b/kedro/template/{{ cookiecutter.repo_name }}/data/08_reporting/.gitkeep new file mode 100644 index 0000000000..e69de29bb2 diff --git a/kedro/template/{{ cookiecutter.repo_name }}/docs/source/conf.py b/kedro/template/{{ cookiecutter.repo_name }}/docs/source/conf.py new file mode 100644 index 0000000000..413e8406d7 --- /dev/null +++ b/kedro/template/{{ cookiecutter.repo_name }}/docs/source/conf.py @@ -0,0 +1,243 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- + +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +# {{ cookiecutter.python_package }} documentation build +# configuration file, created by sphinx-quickstart. +# +# This file is execfile()d with the current directory set to its +# containing dir. +# +# Note that not all possible configuration values are present in this +# autogenerated file. +# +# All configuration values have a default; values that are commented out +# serve to show the default. + +# If extensions (or modules to document with autodoc) are in another directory, +# add these directories to sys.path here. If the directory is relative to the +# documentation root, use os.path.abspath to make it absolute, like shown here. +# +import re + +from {{ cookiecutter.python_package }} import __version__ as release + +# -- Project information ----------------------------------------------------- + +project = "{{ cookiecutter.python_package }}" +copyright = "2018-2019, QuantumBlack Visual Analytics Limited" +author = "QuantumBlack" + +# The short X.Y version. +version = re.match(r"^([0-9]+\.[0-9]+).*", release).group(1) + +# -- General configuration --------------------------------------------------- + +# If your documentation needs a minimal Sphinx version, state it here. +# +# needs_sphinx = '1.0' + +# Add any Sphinx extension module names here, as strings. They can be +# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom +# ones. +extensions = [ + "sphinx.ext.autodoc", + "sphinx.ext.napoleon", + "sphinx_autodoc_typehints", + "sphinx.ext.doctest", + "sphinx.ext.todo", + "sphinx.ext.coverage", + "sphinx.ext.mathjax", + "sphinx.ext.ifconfig", + "sphinx.ext.viewcode", + "sphinx.ext.mathjax", + "nbsphinx", +] + +# Add any paths that contain templates here, relative to this directory. +templates_path = ["_templates"] + +# The suffix(es) of source filenames. +# You can specify multiple suffix as a list of string: +# +# source_suffix = ['.rst', '.md'] +source_suffix = ".rst" + +# The master toctree document. +master_doc = "index" + +# The language for content autogenerated by Sphinx. Refer to documentation +# for a list of supported languages. +# +# This is also used if you do content translation via gettext catalogs. +# Usually you set "language" from the command line for these cases. +language = None + +# List of patterns, relative to source directory, that match files and +# directories to ignore when looking for source files. +# This pattern also affects html_static_path and html_extra_path . +exclude_patterns = ["_build", "**.ipynb_checkpoints"] + +# The name of the Pygments (syntax highlighting) style to use. +pygments_style = "sphinx" + +# -- Options for HTML output ------------------------------------------------- + +# The theme to use for HTML and HTML Help pages. See the documentation for +# a list of builtin themes. +# +html_theme = "sphinx_rtd_theme" + +# Theme options are theme-specific and customize the look and feel of a theme +# further. For a list of options available for each theme, see the +# documentation. +# +# html_theme_options = {} + +# Add any paths that contain custom static files (such as style sheets) here, +# relative to this directory. They are copied after the builtin static files, +# so a file named "default.css" will overwrite the builtin "default.css". +html_static_path = ["_static"] + +# Custom sidebar templates, must be a dictionary that maps document names +# to template names. +# +# The default sidebars (for documents that don't match any pattern) are +# defined by theme itself. Builtin themes are using these templates by +# default: ``['localtoc.html', 'relations.html', 'sourcelink.html', +# 'searchbox.html']``. +# +# html_sidebars = {} + +html_show_sourcelink = False + +# -- Options for HTMLHelp output --------------------------------------------- + +# Output file base name for HTML help builder. +htmlhelp_basename = "{{ cookiecutter.python_package }}doc" + +# -- Options for LaTeX output ------------------------------------------------ + +latex_elements = { + # The paper size ('letterpaper' or 'a4paper'). + # + # 'papersize': 'letterpaper', + # + # The font size ('10pt', '11pt' or '12pt'). + # + # 'pointsize': '10pt', + # + # Additional stuff for the LaTeX preamble. + # + # 'preamble': '', + # + # Latex figure (float) alignment + # + # 'figure_align': 'htbp', +} + +# Grouping the document tree into LaTeX files. List of tuples +# (source start file, target name, title, +# author, documentclass [howto, manual, or own class]). +latex_documents = [ + ( + master_doc, + "{{ cookiecutter.python_package }}.tex", + "{{ cookiecutter.python_package }} Documentation", + "QuantumBlack", + "manual", + ) +] + +# -- Options for manual page output ------------------------------------------ + +# One entry per manual page. List of tuples +# (source start file, name, description, authors, manual section). +man_pages = [ + ( + master_doc, + "{{ cookiecutter.python_package }}", + "{{ cookiecutter.python_package }} Documentation", + [author], + 1, + ) +] + +# -- Options for Texinfo output ---------------------------------------------- + +# Grouping the document tree into Texinfo files. List of tuples +# (source start file, target name, title, author, +# dir menu entry, description, category) +texinfo_documents = [ + ( + master_doc, + "{{ cookiecutter.python_package }}", + "{{ cookiecutter.python_package }} Documentation", + author, + "{{ cookiecutter.python_package }}", + "Project {{ cookiecutter.python_package }} codebase.", + "Data-Science", + ) +] + +# -- Options for todo extension ---------------------------------------------- + +# If true, `todo` and `todoList` produce output, else they produce nothing. +todo_include_todos = False + +# -- Extension configuration ------------------------------------------------- + +# nbsphinx_prolog = """ +# see here for prolog/epilog details: +# https://nbsphinx.readthedocs.io/en/0.3.1/prolog-and-epilog.html +# """ + +# -- NBconvert kernel config ------------------------------------------------- +nbsphinx_kernel_name = "python3" + + +def remove_arrows_in_examples(lines): + for i, line in enumerate(lines): + lines[i] = line.replace(">>>", "") + + +def autodoc_process_docstring(app, what, name, obj, options, lines): + remove_arrows_in_examples(lines) + + +def skip(app, what, name, obj, skip, options): + if name == "__init__": + return False + return skip + + +def setup(app): + app.connect("autodoc-process-docstring", autodoc_process_docstring) + app.connect("autodoc-skip-member", skip) diff --git a/kedro/template/{{ cookiecutter.repo_name }}/docs/source/index.rst b/kedro/template/{{ cookiecutter.repo_name }}/docs/source/index.rst new file mode 100644 index 0000000000..dbbabbc2e4 --- /dev/null +++ b/kedro/template/{{ cookiecutter.repo_name }}/docs/source/index.rst @@ -0,0 +1,19 @@ +.. {{ cookiecutter.python_package }} documentation master file, created by sphinx-quickstart. + You can adapt this file completely to your liking, but it should at least + contain the root `toctree` directive. + +Welcome to project's {{ cookiecutter.python_package }} API docs! +============================================= + +.. toctree:: + :maxdepth: 4 + + modules + + +Indices and tables +================== + +* :ref:`genindex` +* :ref:`modindex` +* :ref:`search` diff --git a/kedro/template/{{ cookiecutter.repo_name }}/kedro_cli.py b/kedro/template/{{ cookiecutter.repo_name }}/kedro_cli.py new file mode 100755 index 0000000000..ce28a40923 --- /dev/null +++ b/kedro/template/{{ cookiecutter.repo_name }}/kedro_cli.py @@ -0,0 +1,236 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +"""Command line tools for manipulating a Kedro project. +Intended to be invoked via `kedro`.""" + +import os +import shutil +import subprocess +import sys +from pathlib import Path + +import click +from click import secho, style +from kedro.cli import main as kernalai_main +from kedro.cli.utils import KedroCliError, call, forward_command, python_call + +CONTEXT_SETTINGS = dict(help_option_names=["-h", "--help"]) + +# get our package onto the python path +PROJ_PATH = Path(__file__).resolve().parent +sys.path.append(str(PROJ_PATH / "src")) +os.environ["PYTHONPATH"] = ( + os.environ.get("PYTHONPATH", "") + os.pathsep + str(PROJ_PATH / "src") +) +os.environ["IPYTHONDIR"] = str(PROJ_PATH / ".ipython") + + +NO_PYTEST_MESSAGE = """ +pytest is not installed. Please make sure pytest is in +src/requirements.txt and run `kedro install`. +""" + + +NO_NBSTRIPOUT_MESSAGE = """ +nbstripout is not installed. Please make sure nbstripout is in +`src/requirements.txt` and run `kedro install`. +""" + + +TAG_ARG_HELP = """Construct the pipeline using only nodes which have this tag +attached. Option can be used multiple times, what results in a +pipeline constructed from nodes having any of those tags.""" + + +ENV_ARG_HELP = """Run the pipeline in a configured environment. If not specified, +pipeline will run using environment `local`.""" + + +PARALLEL_ARG_HELP = """Run the pipeline using the `ParallelRunner`. +If not specified, use the `SequentialRunner`. This flag cannot be used together +with --runner.""" + +RUNNER_ARG_HELP = """Specify a runner that you want to run the pipeline with. +This option cannot be used together with --parallel.""" + + +def __get_kedro_context__(): + """Used to provide this project's context to plugins.""" + from {{cookiecutter.python_package}}.run import __kedro_context__ + return __kedro_context__() + + +@click.group(context_settings=CONTEXT_SETTINGS, name=__file__) +def cli(): + """Command line tools for manipulating a Kedro project.""" + + +@cli.command() +@click.option("--runner", "-r", type=str, default=None, multiple=False, help=RUNNER_ARG_HELP) +@click.option("--parallel", "-p", is_flag=True, multiple=False, help=PARALLEL_ARG_HELP) +@click.option("--env", "-e", type=str, default=None, multiple=False, help=ENV_ARG_HELP) +@click.option("--tag", "-t", type=str, default=None, multiple=True, help=TAG_ARG_HELP) +def run(tag, env, parallel, runner): + """Run the pipeline.""" + from {{cookiecutter.python_package}}.run import main + if parallel and runner: + raise KedroCliError( + "Both --parallel and --runner options cannot be used together. " + "Please use either --parallel or --runner." + ) + if parallel: + runner = "ParallelRunner" + main(tags=tag, env=env, runner=runner) + + +@forward_command(cli, forward_help=True) +def test(args): + """Run the test suite.""" + try: + import pytest # pylint: disable=unused-import + except ImportError: + raise KedroCliError(NO_PYTEST_MESSAGE) + else: + python_call("pytest", args) + + +@cli.command() +def install(): + """Install project dependencies from requirements.txt.""" + python_call("pip", ["install", "-U", "-r", "src/requirements.txt"]) + + +@forward_command(cli, forward_help=True) +def ipython(args): + """Open IPython with project specific variables loaded.""" + if "-h" not in args and "--help" not in args: + ipython_message() + call(["ipython"] + list(args)) + + +@cli.command() +def package(): + """Package the project as a Python egg and wheel.""" + call([sys.executable, "setup.py", "clean", "--all", "bdist_egg"], cwd="src") + call([sys.executable, "setup.py", "clean", "--all", "bdist_wheel"], cwd="src") + + +@cli.command("build-docs") +def build_docs(): + """Build the project documentation.""" + python_call("pip", ["install", "src/[docs]"]) + python_call("pip", ["install", "-r", "src/requirements.txt"]) + python_call( + "ipykernel", ["install", "--user", "--name={{ cookiecutter.python_package }}"] + ) + if Path("docs/build").exists(): + shutil.rmtree("docs/build") + call( + [ + "sphinx-apidoc", + "--module-first", + "-o", + "docs/source", + "src/{{ cookiecutter.python_package }}", + ] + ) + call(["sphinx-build", "-M", "html", "docs/source", "docs/build", "-a"]) + + +@cli.command("activate-nbstripout") +def activate_nbstripout(): + """Install the nbstripout git hook to automatically clean notebooks.""" + secho( + ( + "Notebook output cells will be automatically cleared before committing" + " to git." + ), + fg="yellow", + ) + + try: + import nbstripout # pylint: disable=unused-import + except ImportError: + raise KedroCliError(NO_NBSTRIPOUT_MESSAGE) + + try: + res = subprocess.run( + ["git", "rev-parse", "--git-dir"], + stdout=subprocess.PIPE, + stderr=subprocess.PIPE, + ) + if res.returncode: + raise KedroCliError("Not a git repository. Run `git init` first.") + except FileNotFoundError: + raise KedroCliError("Git executable not found. Install Git first.") + + call(["nbstripout", "--install"]) + + +@cli.group() +def jupyter(): + """Open Jupyter Notebook / Lab with project specific variables loaded.""" + + +@forward_command(jupyter, "notebook", forward_help=True) +@click.option("--ip", type=str, default="127.0.0.1") +def jupyter_notebook(ip, args): + """Open Jupyter Notebook with project specific variables loaded.""" + if "-h" not in args and "--help" not in args: + ipython_message() + call(["jupyter-notebook", "--ip=" + ip] + list(args)) + + +@forward_command(jupyter, "lab", forward_help=True) +@click.option("--ip", type=str, default="127.0.0.1") +def jupyter_lab(ip, args): + """Open Jupyter Lab with project specific variables loaded.""" + if "-h" not in args and "--help" not in args: + ipython_message() + call(["jupyter-lab", "--ip=" + ip] + list(args)) + + +def ipython_message(): + """Show a message saying how we have configured the IPython env.""" + ipy_vars = ["proj_dir", "proj_name", "io", "startup_error"] + secho("-" * 79, fg="cyan") + secho("Starting a Kedro session with the following variables in scope") + secho(", ".join(ipy_vars), fg="green") + secho( + "Use the line magic {} to refresh them".format( + style("%reload_kedro", fg="green") + ) + ) + secho("or to see the error message if they are undefined") + secho("-" * 79, fg="cyan") + + +if __name__ == "__main__": + os.chdir(str(PROJ_PATH)) + kernalai_main() diff --git a/kedro/template/{{ cookiecutter.repo_name }}/logs/.gitkeep b/kedro/template/{{ cookiecutter.repo_name }}/logs/.gitkeep new file mode 100644 index 0000000000..e69de29bb2 diff --git a/kedro/template/{{ cookiecutter.repo_name }}/notebooks/.gitkeep b/kedro/template/{{ cookiecutter.repo_name }}/notebooks/.gitkeep new file mode 100644 index 0000000000..e69de29bb2 diff --git a/kedro/template/{{ cookiecutter.repo_name }}/references/.gitkeep b/kedro/template/{{ cookiecutter.repo_name }}/references/.gitkeep new file mode 100644 index 0000000000..e69de29bb2 diff --git a/kedro/template/{{ cookiecutter.repo_name }}/results/.gitkeep b/kedro/template/{{ cookiecutter.repo_name }}/results/.gitkeep new file mode 100644 index 0000000000..e69de29bb2 diff --git a/kedro/template/{{ cookiecutter.repo_name }}/setup.cfg b/kedro/template/{{ cookiecutter.repo_name }}/setup.cfg new file mode 100644 index 0000000000..5a17c6c3dc --- /dev/null +++ b/kedro/template/{{ cookiecutter.repo_name }}/setup.cfg @@ -0,0 +1,3 @@ +[tool:pytest] +addopts=--cov-report term-missing + --cov src/{{ cookiecutter.python_package }} -ra diff --git a/kedro/template/{{ cookiecutter.repo_name }}/src/requirements.txt b/kedro/template/{{ cookiecutter.repo_name }}/src/requirements.txt new file mode 100644 index 0000000000..374041a02d --- /dev/null +++ b/kedro/template/{{ cookiecutter.repo_name }}/src/requirements.txt @@ -0,0 +1,9 @@ +kedro=={{ cookiecutter.kedro_version }} +ipython>=7.0.0, <8.0 +jupyter>=1.0.0, <2.0 +jupyterlab==0.31.1 +nbstripout==0.3.3 +pytest>=3.4, <4.0 +pytest-cov>=2.5, <3.0 +pytest-mock>=1.7.1,<2.0 +wheel==0.32.2 diff --git a/kedro/template/{{ cookiecutter.repo_name }}/src/setup.py b/kedro/template/{{ cookiecutter.repo_name }}/src/setup.py new file mode 100644 index 0000000000..b121f5a3e0 --- /dev/null +++ b/kedro/template/{{ cookiecutter.repo_name }}/src/setup.py @@ -0,0 +1,57 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +from setuptools import find_packages, setup + +entry_point = ( + "{{ cookiecutter.repo_name }} = {{ cookiecutter.python_package }}.run:main" +) + +# get the dependencies and installs +with open("requirements.txt", "r", encoding="utf-8") as f: + requires = [x.strip() for x in f if x.strip()] + +setup( + name="{{ cookiecutter.python_package }}", + version="0.1", + packages=find_packages(exclude=["tests"]), + entry_points={"console_scripts": [entry_point]}, + install_requires=requires, + extras_require={ + "docs": [ + "sphinx>=1.6.3, <2.0", + "sphinx_rtd_theme==0.4.1", + "nbsphinx==0.3.4", + "nbstripout==0.3.3", + "sphinx-autodoc-typehints==1.6.0", + "jupyter_client>=5.1.0, <6.0", + "tornado>=4.2, <6.0", + "ipykernel>=4.8.1, <5.0", + ] + }, +) diff --git a/kedro/template/{{ cookiecutter.repo_name }}/src/tests/__init__.py b/kedro/template/{{ cookiecutter.repo_name }}/src/tests/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/kedro/template/{{ cookiecutter.repo_name }}/src/tests/test_run.py b/kedro/template/{{ cookiecutter.repo_name }}/src/tests/test_run.py new file mode 100644 index 0000000000..90b78d3124 --- /dev/null +++ b/kedro/template/{{ cookiecutter.repo_name }}/src/tests/test_run.py @@ -0,0 +1,79 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +""" +This module contains an example test. + +Tests should be placed in ``src/tests``, in modules that mirror your +project's structure, and in files named test_*.py. They are simply functions +named ``test_*`` which test a unit of logic. + +To run the tests, run ``kedro test``. +""" +from os.path import abspath, curdir, join +from pathlib import Path + +import pytest +from kedro.config import ConfigLoader +from kedro.io import DataCatalog + +from {{ cookiecutter.python_package }}.run import ( + CONF_ROOT, + DEFAULT_RUN_ENV, + create_catalog, + get_config, + main, +) + + +def test_main_wrong_cwd(mocker): + cwd = mocker.MagicMock(name="mocked", __str__=mocker.Mock(return_value="invalid/")) + mocker.patch.object(Path, "cwd", return_value=cwd) + with pytest.raises( + ValueError, + match=r"Given configuration path either does not " + r"exist or is not a valid directory: invalid.*", + ): + main() + + +def test_get_config(): + project_dir = abspath(curdir) + local_env = join(project_dir, CONF_ROOT, DEFAULT_RUN_ENV) + + conf = get_config(project_dir, env=None) + + assert isinstance(conf, ConfigLoader) + assert local_env in conf.conf_paths + + +def test_create_catalog(): + project_dir = abspath(curdir) + conf = get_config(project_dir) + catalog = create_catalog(conf) + assert isinstance(catalog, DataCatalog) diff --git a/kedro/template/{{ cookiecutter.repo_name }}/src/{{ cookiecutter.python_package }}/__init__.py b/kedro/template/{{ cookiecutter.repo_name }}/src/{{ cookiecutter.python_package }}/__init__.py new file mode 100644 index 0000000000..58699ca2db --- /dev/null +++ b/kedro/template/{{ cookiecutter.repo_name }}/src/{{ cookiecutter.python_package }}/__init__.py @@ -0,0 +1,31 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. +"""{{ cookiecutter.project_name }} +""" + +__version__ = "0.1" diff --git a/kedro/template/{{ cookiecutter.repo_name }}/src/{{ cookiecutter.python_package }}/nodes/__init__.py b/kedro/template/{{ cookiecutter.repo_name }}/src/{{ cookiecutter.python_package }}/nodes/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/kedro/template/{{ cookiecutter.repo_name }}/src/{{ cookiecutter.python_package }}/nodes/example.py b/kedro/template/{{ cookiecutter.repo_name }}/src/{{ cookiecutter.python_package }}/nodes/example.py new file mode 100644 index 0000000000..8b0c83afce --- /dev/null +++ b/kedro/template/{{ cookiecutter.repo_name }}/src/{{ cookiecutter.python_package }}/nodes/example.py @@ -0,0 +1,152 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +"""Example code for the nodes in the example pipeline. This code is meant +just for illustrating basic Kedro features. + +PLEASE DELETE THIS FILE ONCE YOU START WORKING ON YOUR OWN PROJECT! +""" +# pylint: disable=invalid-name + +import logging +from typing import Any, Dict + +import numpy as np +import pandas as pd + + +def split_data(data: pd.DataFrame, parameters: Dict[str, Any]) -> Dict[str, Any]: + """Node for splitting the classical Iris data set into training and test + sets, each split into features and labels. + The split ratio parameter is taken from conf/project/parameters.yml. + The data and the parameters will be loaded and provided to your function + automatically when the pipeline is executed and it is time to run this node. + """ + test_data_ratio = parameters["example_test_data_ratio"] + data.columns = [ + "sepal_length", + "sepal_width", + "petal_length", + "petal_width", + "target", + ] + classes = sorted(data["target"].unique()) + # One-hot encoding for the target variable + data = pd.get_dummies(data, columns=["target"], prefix="", prefix_sep="") + + # Shuffle all the data + data = data.sample(frac=1).reset_index(drop=True) + + # Split to training and testing data + n = data.shape[0] + n_test = int(n * test_data_ratio) + training_data = data.iloc[n_test:, :].reset_index(drop=True) + test_data = data.iloc[:n_test, :].reset_index(drop=True) + + # Split the data to features and labels + train_data_x = training_data.loc[:, "sepal_length":"petal_width"] + train_data_y = training_data[classes] + test_data_x = test_data.loc[:, "sepal_length":"petal_width"] + test_data_y = test_data[classes] + + # When returning many variables, it is a good practice to give them names: + return dict( + train_x=train_data_x, + train_y=train_data_y, + test_x=test_data_x, + test_y=test_data_y, + ) + + +def train_model( + train_x: pd.DataFrame, train_y: pd.DataFrame, parameters: Dict[str, Any] +) -> np.ndarray: + """Node for training a simple multi-class logistic regression model. The + number of training iterations as well as the learning rate are taken from + conf/project/parameters.yml. All of the data as well as the parameters + will be provided to this function at the time of execution. + """ + num_iter = parameters["example_num_train_iter"] + lr = parameters["example_learning_rate"] + X = train_x.values + Y = train_y.values + + # Add bias to the features + bias = np.ones((X.shape[0], 1)) + X = np.concatenate((bias, X), axis=1) + + weights = [] + # Train one model for each class in Y + for k in range(Y.shape[1]): + # Initialise weights + theta = np.zeros(X.shape[1]) + y = Y[:, k] + for _ in range(num_iter): + z = np.dot(X, theta) + h = _sigmoid(z) + gradient = np.dot(X.T, (h - y)) / y.size + theta -= lr * gradient + # Save the weights for each model + weights.append(theta) + + # Return a joint multi-class model with weights for all classes + return np.vstack(weights).transpose() + + +def predict(model: np.ndarray, test_x: pd.DataFrame) -> np.ndarray: + """Node for making predictions given a pre-trained model and a test set. + """ + X = test_x.values + + # Add bias to the features + bias = np.ones((X.shape[0], 1)) + X = np.concatenate((bias, X), axis=1) + + # Predict "probabilities" for each class + result = _sigmoid(np.dot(X, model)) + + # Return the index of the class with max probability for all samples + return np.argmax(result, axis=1) + + +def report_accuracy(predictions: np.ndarray, test_y: pd.DataFrame) -> None: + """Node for reporting the accuracy of the predictions performed by the + previous node. Notice that this function has no outputs, except logging. + """ + # Get true class index + target = np.argmax(test_y.values, axis=1) + # Calculate accuracy of predictions + accuracy = np.sum(predictions == target) / target.shape[0] + # Log the accuracy of the model + log = logging.getLogger(__name__) + log.info("Model accuracy on test set: {0:.2f}%".format(accuracy * 100)) + + +def _sigmoid(z): + """A helper sigmoid function used by the training and the scoring nodes.""" + return 1 / (1 + np.exp(-z)) diff --git a/kedro/template/{{ cookiecutter.repo_name }}/src/{{ cookiecutter.python_package }}/pipeline.py b/kedro/template/{{ cookiecutter.repo_name }}/src/{{ cookiecutter.python_package }}/pipeline.py new file mode 100644 index 0000000000..721b3f4c12 --- /dev/null +++ b/kedro/template/{{ cookiecutter.repo_name }}/src/{{ cookiecutter.python_package }}/pipeline.py @@ -0,0 +1,101 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. +"""Pipeline construction.""" +{% if cookiecutter.include_example == "True" %} +from kedro.pipeline import Pipeline, node + +from .nodes.example import predict, report_accuracy, split_data, train_model +{% else %} +from kedro.pipeline import Pipeline +{% endif %} +# Here you can define your data-driven pipeline by importing your functions +# and adding them to the pipeline as follows: +# +# from nodes.data_wrangling import clean_data, compute_features +# +# pipeline = Pipeline([ +# node(clean_data, 'customers', 'prepared_customers'), +# node(compute_features, 'prepared_customers', ['X_train', 'Y_train']) +# ]) +# +# Once you have your pipeline defined, you can run it from the root of your +# project by calling: +# +# $ kedro run +# + + +def create_pipeline(**kwargs): + """Create the project's pipeline. + + Args: + kwargs: Ignore any additional arguments added in the future. + + Returns: + Pipeline: The resulting pipeline. + + """ +{% if cookiecutter.include_example == "True" %} + + ########################################################################### + # Here you can find an example pipeline with 4 nodes. + # + # PLEASE DELETE THIS PIPELINE ONCE YOU START WORKING ON YOUR OWN PROJECT AS + # WELL AS THE FILE nodes/example.py + # ------------------------------------------------------------------------- + + pipeline = Pipeline( + [ + node( + split_data, + ["example_iris_data", "parameters"], + dict( + train_x="example_train_x", + train_y="example_train_y", + test_x="example_test_x", + test_y="example_test_y", + ), + ), + node( + train_model, + ["example_train_x", "example_train_y", "parameters"], + "example_model", + ), + node( + predict, + dict(model="example_model", test_x="example_test_x"), + "example_predictions", + ), + node(report_accuracy, ["example_predictions", "example_test_y"], None), + ] + ) + ########################################################################### +{% else %} + pipeline = Pipeline([]) +{% endif %} + return pipeline diff --git a/kedro/template/{{ cookiecutter.repo_name }}/src/{{ cookiecutter.python_package }}/run.py b/kedro/template/{{ cookiecutter.repo_name }}/src/{{ cookiecutter.python_package }}/run.py new file mode 100644 index 0000000000..0ac2df2e4b --- /dev/null +++ b/kedro/template/{{ cookiecutter.repo_name }}/src/{{ cookiecutter.python_package }}/run.py @@ -0,0 +1,155 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +"""Application entry point.""" + +import logging.config +from pathlib import Path +from typing import Iterable + +from kedro.cli.utils import KedroCliError +from kedro.config import ConfigLoader +from kedro.io import DataCatalog +from kedro.runner import SequentialRunner +from kedro.utils import load_obj + +from {{ cookiecutter.python_package }}.pipeline import create_pipeline + +# Name of root directory containing project configuration. +CONF_ROOT = "conf" + +# Default configuration environment to be used for running the pipeline. +# Change this constant value if you want to load configuration +# from a different location. +DEFAULT_RUN_ENV = "local" + + +def __kedro_context__(): + """Provide this project's context to ``kedro`` CLI and plugins. + Please do not rename or remove, as this will break the CLI tool. + + Plugins may request additional objects from this method. + """ + return { + "get_config": get_config, + "create_catalog": create_catalog, + "create_pipeline": create_pipeline, + "template_version": "{{ cookiecutter.kedro_version }}", + "project_name": "{{ cookiecutter.project_name }}", + "project_path": Path.cwd(), + } + + +def get_config(project_path: str, env: str = None, **kwargs) -> ConfigLoader: + """Loads Kedro's configuration at the root of the project. + + Args: + project_path: The root directory of the Kedro project. + env: The environment used for loading configuration. + kwargs: Ignore any additional arguments added in the future. + + Returns: + ConfigLoader which can be queried to access the project config. + + """ + project_path = Path(project_path) + env = env or DEFAULT_RUN_ENV + conf_paths = [ + str(project_path / CONF_ROOT / "base"), + str(project_path / CONF_ROOT / env), + ] + return ConfigLoader(conf_paths) + + +def create_catalog(config: ConfigLoader, **kwargs) -> DataCatalog: + """Loads Kedro's ``DataCatalog``. + + Args: + config: ConfigLoader which can be queried to access the project config. + kwargs: Ignore any additional arguments added in the future. + + Returns: + DataCatalog defined in `catalog.yml`. + + """ + conf_logging = config.get("logging*", "logging*/**") + logging.config.dictConfig(conf_logging) + conf_catalog = config.get("catalog*", "catalog*/**") + conf_creds = config.get("credentials*", "credentials*/**") + conf_params = config.get("parameters*", "parameters*/**") + logging.config.dictConfig(conf_logging) + catalog = DataCatalog.from_config(conf_catalog, conf_creds) + catalog.add_feed_dict({"parameters": conf_params}) + return catalog + + +def main( + tags: Iterable[str] = None, + env: str = None, + runner: str = None, +): + """Application main entry point. + + Args: + tags: An optional list of node tags which should be used to + filter the nodes of the ``Pipeline``. If specified, only the nodes + containing *any* of these tags will be added to the ``Pipeline``. + env: An optional parameter specifying the environment in which + the ``Pipeline`` should be run. If not specified defaults to "local". + runner: An optional parameter specifying the runner that you want to run + the pipeline with. + + Raises: + KedroCliError: If the resulting ``Pipeline`` is empty. + + """ + # Report project name + logging.info("** Kedro project {}".format(Path.cwd().name)) + + # Load Catalog + conf = get_config(project_path=str(Path.cwd()), env=env) + catalog = create_catalog(config=conf) + + # Load the pipeline + pipeline = create_pipeline() + pipeline = pipeline.only_nodes_with_tags(*tags) if tags else pipeline + if not pipeline.nodes: + if tags: + raise KedroCliError("Pipeline contains no nodes with tags: " + str(tags)) + raise KedroCliError("Pipeline contains no nodes") + + # Load the runner + # When either --parallel or --runner is used, class_obj is assigned to runner + runner = load_obj(runner, "kedro.runner") if runner else SequentialRunner + + # Run the runner + runner().run(pipeline, catalog) + + +if __name__ == "__main__": + main() diff --git a/kedro/utils.py b/kedro/utils.py new file mode 100644 index 0000000000..63a0b83624 --- /dev/null +++ b/kedro/utils.py @@ -0,0 +1,59 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +"""This module provides a set of helper functions being used across different components +of kedro package. +""" + +import importlib +from typing import Any + + +def load_obj(obj_path: str, default_obj_path: str) -> Any: + """Extract an object from a given path. + + Args: + obj_path: Path to an object to be extracted, including the object name. + default_obj_path: Default object path. + + Returns: + Extracted object. + + Raises: + AttributeError: When the object does not have the given named attribute. + + """ + obj_path_list = obj_path.rsplit(".", 1) + obj_path = obj_path_list.pop(0) if len(obj_path_list) > 1 else default_obj_path + obj_name = obj_path_list[0] + module_obj = importlib.import_module(obj_path) + if not hasattr(module_obj, obj_name): + raise AttributeError( + "Object `{}` cannot be loaded from `{}`.".format(obj_name, obj_path) + ) + return getattr(module_obj, obj_name) diff --git a/legal_header.txt b/legal_header.txt new file mode 100644 index 0000000000..66d3cbdfdb --- /dev/null +++ b/legal_header.txt @@ -0,0 +1,27 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000000..1cca2282f9 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,2 @@ +[tool.black] +exclude="/template/" diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000000..9d6add6581 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,16 @@ +click==6.7 +cookiecutter==1.6.0 +jinja2>=2.10.1, <3.0 +pandas>=0.23.0, <0.25.0 +PyYAML>=5.1, <6.0 +tables==3.5.1 +thrift==0.11 +pyarrow==0.12.0 +SQLAlchemy>=1.2.0, <2.0 +toposort==1.5 +xlrd>=1.0.0, <2.0 +xlsxwriter>=1.0.7, <2.0 +anyconfig==0.9.7 +python-json-logger==0.1.9 +memory_profiler==0.54.0 +s3fs>=0.2.1, <1.0 diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000000..e16968d9c1 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,10 @@ +[metadata] +description-file=README.md + +[tool:pytest] +addopts=--cov-report xml:coverage.xml + --cov-report term-missing + --cov kedro + --cov tests + --no-cov-on-fail + -ra diff --git a/setup.py b/setup.py new file mode 100644 index 0000000000..116fe17677 --- /dev/null +++ b/setup.py @@ -0,0 +1,106 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +import re +from codecs import open +from glob import glob +from os import path + +from setuptools import find_packages, setup + +name = "kedro" +here = path.abspath(path.dirname(__file__)) + +# get package version +with open(path.join(here, name, "__init__.py"), encoding="utf-8") as f: + version = re.search(r'__version__ = ["\']([^"\']+)', f.read()).group(1) + +# get the dependencies and installs +with open("requirements.txt", "r", encoding="utf-8") as f: + requires = [x.strip() for x in f if x.strip()] + +# get test dependencies and installs +with open("test_requirements.txt", "r", encoding="utf-8") as f: + test_requires = [x.strip() for x in f if x.strip() and not x.startswith("-r")] + + +# Get the long description from the README file +with open(path.join(here, "README.md"), encoding="utf-8") as f: + readme = f.read() + +doc_html_files = [ + name.replace("kedro/", "", 1) for name in glob("kedro/html/**/*", recursive=True) +] + +template_files = [] +for pattern in ["**/*", "**/.*", "**/.*/**", "**/.*/.**"]: + template_files.extend( + [ + name.replace("kedro/", "", 1) + for name in glob("kedro/template/" + pattern, recursive=True) + ] + ) + +setup( + name=name, + version=version, + description="Kedro is a data science framework", + long_description=readme, + long_description_content_type="text/markdown", + url="https://github.com/quantumblacklabs/kedro", + python_requires=">=3.5, <3.8", + packages=find_packages(exclude=["docs*", "tests*", "tools*", "features*"]), + include_package_data=True, + tests_require=test_requires, + install_requires=requires, + author="QuantumBlack Visual Analytics Limited", + entry_points={"console_scripts": ["kedro = kedro.cli:main"]}, + package_data={name: template_files + doc_html_files}, + extras_require={ + "docs": [ + "sphinx>=1.8.4, <2.0", + "sphinx_rtd_theme==0.4.3", + "nbsphinx==0.4.2", + "nbstripout==0.3.3", + "recommonmark==0.5.0", + "sphinx-autodoc-typehints==1.6.0", + "sphinx_copybutton==0.2.5", + "jupyter_client>=5.1.0, <6.0", + "tornado>=4.2, <6.0", + "ipykernel>=4.8.1, <5.0", + ], + "pyspark": ["pyspark>=2.2.0, <3.0"], + "notebook_templates": ["nbconvert>=5.3.1, <6.0", "nbformat>=4.4.0, <5.0"], + "azure": [ + "azure-storage-blob>=1.1.0, <2.0", + "azure-storage-file>=1.1.0, <2.0", + "azure-storage-queue>=1.1.0, <2.0", + ], + "bioinformatics": ["biopython>=1.73, <2.0"], + }, +) diff --git a/test_requirements.txt b/test_requirements.txt new file mode 100644 index 0000000000..ee64599adb --- /dev/null +++ b/test_requirements.txt @@ -0,0 +1,20 @@ +-r requirements.txt +pytest>=3.9, <4.0 +pytest-cov>=2.5, <3.0 +pytest-mock>=1.7.1,<2.0 +pylint>=2.3.1, <3.0 +flake8>=3.5,<4.0 +behave==1.2.6 +moto==1.3.7 +nbconvert>=5.3.1, <6.0 +nbformat>=4.4.0, <5.0 +pyspark>=2.2.0, <3.0 +codacy-coverage +azure-storage-blob>=1.1.0, <2.0 +azure-storage-file>=1.1.0, <2.0 +azure-storage-queue>=1.1.0, <2.0 +joblib==0.12.3 +psutil==5.4.7 +wheel==0.32.2 +biopython>=1.73, <2.0 +requests>=2.21.0, <3.0 diff --git a/tests/__init__.py b/tests/__init__.py new file mode 100644 index 0000000000..5f7d6257c4 --- /dev/null +++ b/tests/__init__.py @@ -0,0 +1,29 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +import kedro.config.default_logger # noqa diff --git a/tests/cli/__init__.py b/tests/cli/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/tests/cli/conftest.py b/tests/cli/conftest.py new file mode 100644 index 0000000000..f07d095284 --- /dev/null +++ b/tests/cli/conftest.py @@ -0,0 +1,49 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +""" +This file contains the fixtures that are reusable by any tests within +this directory. You don’t need to import the fixtures as pytest will +discover them automatically. More info here: +https://docs.pytest.org/en/latest/fixture.html +""" + +from os import makedirs + +from click.testing import CliRunner +from pytest import fixture + +MOCKED_HOME = "user/path/" + + +@fixture(name="cli_runner") +def cli_runner_fixture(): + runner = CliRunner() + with runner.isolated_filesystem(): + makedirs(MOCKED_HOME) + yield runner diff --git a/tests/cli/test_cli.py b/tests/cli/test_cli.py new file mode 100644 index 0000000000..6cc0354ff2 --- /dev/null +++ b/tests/cli/test_cli.py @@ -0,0 +1,204 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +from os.path import join + +import click +from mock import patch +from pytest import fixture, mark, raises + +from kedro import __version__ as version +from kedro.cli.cli import cli +from kedro.cli.utils import ( + CommandCollection, + KedroCliError, + forward_command, + get_pkg_version, +) + + +@click.group() +def stub_cli(): + """Stub CLI group description.""" + print("group callback") + + +@stub_cli.command() +def stub_command(): + print("command callback") + + +@forward_command(stub_cli) +def forwarded_command(args): + print("fred", args) + + +@forward_command(stub_cli, forward_help=True) +def forwarded_help(args): + print("fred", args) + + +@fixture +def invoke_result(cli_runner, request): + cmd_collection = CommandCollection(("Commands", [cli, stub_cli])) + return cli_runner.invoke(cmd_collection, request.param) + + +@fixture +def requirements_file(tmp_path): + body = "\n".join(["SQLAlchemy>=1.2.0, <2.0", "pandas==0.23.0", "toposort"]) + "\n" + reqs_file = tmp_path / "requirements.txt" + reqs_file.write_text(body) + yield reqs_file + + +class TestCliCommands: + def test_cli(self, cli_runner): + """Run `kedro` without arguments.""" + result = cli_runner.invoke(cli, []) + + assert result.exit_code == 0 + assert "kedro" in result.output + + def test_print_version(self, cli_runner): + """Check that `kedro --version` and `kedro -V` outputs contain + the current package version.""" + result = cli_runner.invoke(cli, ["--version"]) + + assert result.exit_code == 0 + assert version in result.output + + result_abr = cli_runner.invoke(cli, ["-V"]) + assert result_abr.exit_code == 0 + assert version in result_abr.output + + def test_info_contains_qb(self, cli_runner): + """Check that `kedro info` output contains + reference to QuantumBlack.""" + result = cli_runner.invoke(cli, ["info"]) + + assert result.exit_code == 0 + assert "QuantumBlack" in result.output + + def test_help(self, cli_runner): + """Check that `kedro --help` returns a valid help message.""" + result = cli_runner.invoke(cli, ["--help"]) + + assert result.exit_code == 0 + assert "kedro" in result.output + + result = cli_runner.invoke(cli, ["-h"]) + assert result.exit_code == 0 + assert "-h, --help Show this message and exit." in result.output + + @patch("webbrowser.open") + def test_docs(self, patched_browser, cli_runner): + """Check that `kedro docs` opens a correct file in the browser.""" + result = cli_runner.invoke(cli, ["docs"]) + + assert result.exit_code == 0 + for each in ("Opening file", join("html", "index.html")): + assert each in result.output + + patched_browser.assert_called_once() + args, _ = patched_browser.call_args + for each in ("file://", join("kedro", "html", "index.html")): + assert each in args[0] + + +class TestCommandCollection: + @mark.parametrize("invoke_result", [["stub_command"]], indirect=True) + def test_found(self, invoke_result): + """Test calling existing command.""" + assert invoke_result.exit_code == 0 + assert "group callback" not in invoke_result.output + assert "command callback" in invoke_result.output + + def test_found_reverse(self, cli_runner): + """Test calling existing command.""" + cmd_collection = CommandCollection(("Commands", [stub_cli, cli])) + invoke_result = cli_runner.invoke(cmd_collection, ["stub_command"]) + assert invoke_result.exit_code == 0 + assert "group callback" in invoke_result.output + assert "command callback" in invoke_result.output + + @mark.parametrize("invoke_result", [["not_found"]], indirect=True) + def test_not_found(self, invoke_result): + """Test calling nonexistent command.""" + assert invoke_result.exit_code == 2 + assert "No such command" in invoke_result.output + + @mark.parametrize("invoke_result", [[]], indirect=True) + def test_help(self, invoke_result): + """Check that help output includes stub_cli group description.""" + assert invoke_result.exit_code == 0 + assert "Stub CLI group description" in invoke_result.output + assert "Kedro is a CLI" in invoke_result.output + + +class TestForwardCommand: + def test_regular(self, cli_runner): + """Test forwarded command invocation.""" + result = cli_runner.invoke(stub_cli, ["forwarded_command", "bob"]) + assert result.exit_code == 0 + assert "bob" in result.output + assert "fred" in result.output + assert "--help" not in result.output + assert "forwarded_command" not in result.output + + def test_help(self, cli_runner): + """Test help output for the command with help flags not forwarded.""" + result = cli_runner.invoke(stub_cli, ["forwarded_command", "bob", "--help"]) + assert result.exit_code == 0 + assert "bob" not in result.output + assert "fred" not in result.output + assert "--help" in result.output + assert "forwarded_command" in result.output + + def test_forwarded_help(self, cli_runner): + """Test help output for the command with forwarded help flags.""" + result = cli_runner.invoke(stub_cli, ["forwarded_help", "bob", "--help"]) + assert result.exit_code == 0 + assert "bob" in result.output + assert "fred" in result.output + assert "--help" in result.output + assert "forwarded_help" not in result.output + + +def test_get_pkg_version(requirements_file): + """Test get_pkg_version(), which extracts package version + from the provided requirements file.""" + sa_version = "SQLAlchemy>=1.2.0, <2.0" + assert get_pkg_version(requirements_file, "SQLAlchemy") == sa_version + assert get_pkg_version(requirements_file, "pandas") == "pandas==0.23.0" + assert get_pkg_version(requirements_file, "toposort") == "toposort" + with raises(KedroCliError): + get_pkg_version(requirements_file, "nonexistent") + with raises(KedroCliError): + non_existent_file = str(requirements_file) + "-nonexistent" + get_pkg_version(non_existent_file, "pandas") diff --git a/tests/cli/test_cli_new.py b/tests/cli/test_cli_new.py new file mode 100644 index 0000000000..04bff7cf02 --- /dev/null +++ b/tests/cli/test_cli_new.py @@ -0,0 +1,401 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +"""This module contains unit test for the cli command 'kedro new' +""" + +import json +import os +from pathlib import Path + +import pytest +import yaml + +from kedro import __version__ as version +from kedro.cli.cli import TEMPLATE_PATH, _fix_user_path, _get_default_config, cli + +FILES_IN_TEMPLATE_NO_EXAMPLE = 35 +FILES_IN_TEMPLATE_WITH_EXAMPLE = 37 + + +# pylint: disable=too-many-arguments +def _invoke( + cli_runner, + args, + project_name=None, + repo_name=None, + python_package=None, + include_example=None, +): + + click_prompts = (project_name, repo_name, python_package, include_example) + input_string = "\n".join(x or "" for x in click_prompts) + + return cli_runner.invoke(cli, args, input=input_string) + + +# pylint: disable=too-many-arguments +def _assert_template_ok( + result, + files_in_template, + repo_name=None, + project_name="New Kedro Project", + output_dir=".", + package_name=None, +): + print(result.output) + assert result.exit_code == 0 + assert "Project generated in" in result.output + + if repo_name: + full_path = (Path(output_dir) / repo_name).absolute() + generated_files = [ + p for p in full_path.rglob("*") if p.is_file() and p.name != ".DS_Store" + ] + + assert len(generated_files) == files_in_template + assert full_path.exists() + assert (full_path / ".gitignore").is_file() + + if project_name: + with (full_path / "README.md").open() as file: + assert project_name in file.read() + + with (full_path / ".gitignore").open() as file: + assert "KEDRO" in file.read() + + with (full_path / "src" / "requirements.txt").open() as file: + assert version in file.read() + + if package_name: + assert (full_path / "src" / package_name / "__init__.py").is_file() + + +class TestInteractiveNew: + """Tests for running `kedro new` interactively.""" + + repo_name = "project-test" + package_name = "package_test" + include_example = "y" + + def test_new_no_example(self, cli_runner): + """Test new project creation without code example.""" + project_name = "Test" + result = _invoke( + cli_runner, + ["-v", "new"], + project_name=project_name, + repo_name=self.repo_name, + include_example="N", + ) + _assert_template_ok( + result, + FILES_IN_TEMPLATE_NO_EXAMPLE, + repo_name=self.repo_name, + project_name=project_name, + package_name="test", + ) + + def test_new_with_example(self, cli_runner): + """Test new project creation with code example.""" + project_name = "Test" + result = _invoke( + cli_runner, + ["-v", "new"], + project_name=project_name, + repo_name=self.repo_name, + include_example="y", + ) + _assert_template_ok( + result, + FILES_IN_TEMPLATE_WITH_EXAMPLE, + repo_name=self.repo_name, + project_name=project_name, + package_name="test", + ) + + def test_new_custom_dir(self, cli_runner): + """Test that default package name does not change if custom + repo name was specified.""" + result = _invoke( + cli_runner, + ["new"], + repo_name=self.repo_name, + include_example=self.include_example, + ) + _assert_template_ok( + result, + FILES_IN_TEMPLATE_WITH_EXAMPLE, + repo_name=self.repo_name, + package_name="new_kedro_project", + ) + + def test_new_correct_path(self, cli_runner): + """Test new project creation with the default project name.""" + result = _invoke( + cli_runner, + ["new"], + repo_name=self.repo_name, + include_example=self.include_example, + ) + _assert_template_ok( + result, FILES_IN_TEMPLATE_WITH_EXAMPLE, repo_name=self.repo_name + ) + + def test_fail_if_dir_exists(self, cli_runner): + """Check the error if the output directory already exists.""" + empty_file = Path(self.repo_name) / "empty_file" + empty_file.parent.mkdir(parents=True) + empty_file.touch() + + old_contents = list(Path(self.repo_name).iterdir()) + + result = _invoke( + cli_runner, + ["-v", "new"], + repo_name=self.repo_name, + include_example=self.include_example, + ) + + assert list(Path(self.repo_name).iterdir()) == old_contents + assert "directory already exists" in result.output + assert result.exit_code != 0 + + @pytest.mark.parametrize("repo_name", [".repo", "re!po", "-repo", "repo-"]) + def test_bad_repo_name(self, cli_runner, repo_name): + """Check the error if the repository name is invalid.""" + result = _invoke( + cli_runner, + ["new"], + repo_name=repo_name, + include_example=self.include_example, + ) + assert result.exit_code == 0 + assert "is not a valid repository name." in result.output + + @pytest.mark.parametrize( + "pkg_name", ["0package", "_", "package-name", "package name"] + ) + def test_bad_pkg_name(self, cli_runner, pkg_name): + """Check the error if the package name is invalid.""" + result = _invoke( + cli_runner, + ["new"], + python_package=pkg_name, + include_example=self.include_example, + ) + assert result.exit_code == 0 + assert "is not a valid Python package name." in result.output + + @pytest.mark.parametrize("include_example", ["A", "a", "_", "?"]) + def test_bad_include_example(self, cli_runner, include_example): + """Check the error include example response is invalid.""" + result = _invoke( + cli_runner, + ["new"], + python_package=self.package_name, + include_example=include_example, + ) + assert result.exit_code == 0 + assert "invalid input" in result.output + + +def _create_config_file( + config_path, project_name, repo_name, output_dir=None, include_example=False +): + config = { + "project_name": project_name, + "repo_name": repo_name, + "python_package": repo_name.replace("-", "_"), + "include_example": include_example, + } + + if output_dir is not None: + config["output_dir"] = output_dir + + with open(config_path, "w+") as config_file: + yaml.dump(config, config_file) + + return config + + +class TestNewFromConfig: + """Test `kedro new` with config option provided.""" + + project_name = "test1" + repo_name = "project-test1" + config_path = "config.yml" + include_example = True + + def test_config_does_not_exist(self, cli_runner): + """Check the error if the config file does not exist.""" + result = _invoke(cli_runner, ["new", "-c", "missing.yml"]) + assert result.exit_code != 0 + assert "does not exist" in result.output + + def test_empty_config(self, cli_runner): + """Check the error if the config file is empty.""" + open("touch", "a").close() + result = _invoke(cli_runner, ["-v", "new", "-c", "touch"]) + assert result.exit_code != 0 + assert "is empty" in result.output + + def test_new_from_config_no_example(self, cli_runner): + """Test project created from config without example code.""" + output_dir = "test_dir" + include_example = False + Path(output_dir).mkdir(parents=True) + _create_config_file( + self.config_path, + self.project_name, + self.repo_name, + output_dir, + include_example, + ) + result = _invoke(cli_runner, ["-v", "new", "--config", self.config_path]) + _assert_template_ok( + result, + FILES_IN_TEMPLATE_NO_EXAMPLE, + self.repo_name, + self.project_name, + output_dir, + ) + + def test_new_from_config_with_example(self, cli_runner): + """Test project created from config with example code.""" + output_dir = "test_dir" + Path(output_dir).mkdir(parents=True) + _create_config_file( + self.config_path, + self.project_name, + self.repo_name, + output_dir, + self.include_example, + ) + result = _invoke(cli_runner, ["-v", "new", "--config", self.config_path]) + + _assert_template_ok( + result, + FILES_IN_TEMPLATE_WITH_EXAMPLE, + self.repo_name, + self.project_name, + output_dir, + ) + + def test_wrong_config(self, cli_runner): + """Check the error if the output directory is invalid.""" + output_dir = "/usr/invalid/dir" + _create_config_file( + self.config_path, self.project_name, self.repo_name, output_dir + ) + + result = _invoke(cli_runner, ["new", "-c", self.config_path]) + + assert result.exit_code != 0 + assert "is not a valid output directory." in result.output + + def test_bad_yaml(self, cli_runner): + """Check the error if config YAML is invalid.""" + Path(self.config_path).write_text( + "output_dir: \nproject_name:\ttest\nrepo_name:\ttest1\n" + ) + result = _invoke(cli_runner, ["new", "-c", self.config_path]) + + assert result.exit_code != 0 + assert "that cannot start any token" in result.output + + def test_output_dir_with_tilde_in_path(self, mocker): + """Check the error if the output directory contains "~" .""" + home_dir = os.path.join("/home", "directory") + output_dir = os.path.join("~", "here") + + expected = os.path.join(home_dir, "here") + + mocker.patch.dict("os.environ", {"HOME": home_dir, "USERPROFILE": home_dir}) + actual = _fix_user_path(output_dir) + assert actual == expected + + def test_output_dir_with_relative_path(self, mocker): + """Check the error if the output directory contains a relative path.""" + home_dir = os.path.join("/home", "directory") + current_dir = os.path.join(home_dir, "current", "directory") + output_dir = os.path.join("path", "to", "here") + + expected = os.path.join(current_dir, output_dir) + + mocker.patch.dict("os.environ", {"HOME": home_dir, "USERPROFILE": home_dir}) + mocker.patch("os.getcwd", return_value=current_dir) + actual = _fix_user_path(output_dir) + assert actual == expected + + def test_missing_output_dir(self, cli_runner): + """Check the error if config YAML does not contain the output + directory.""" + _create_config_file( + self.config_path, + self.project_name, + self.repo_name, + output_dir=None, + include_example=self.include_example, + ) # output dir missing + result = _invoke(cli_runner, ["-v", "new", "--config", self.config_path]) + + assert result.exit_code != 0 + assert "[output_dir] not found in" in result.output + assert not Path(self.repo_name).exists() + + def test_missing_include_example(self, cli_runner): + """Check the error if config YAML does not contain include example.""" + output_dir = "test_dir" + Path(output_dir).mkdir(parents=True) + _create_config_file( + self.config_path, + self.project_name, + self.repo_name, + output_dir, + include_example=None, + ) # include_example missing + result = _invoke(cli_runner, ["-v", "new", "--config", self.config_path]) + + assert result.exit_code != 0 + assert "It must be a boolean value" in result.output + assert not Path(self.repo_name).exists() + + +def test_default_config_up_to_date(): + """Validate the contents of the default config file.""" + cookie_json_path = Path(TEMPLATE_PATH) / "cookiecutter.json" + cookie = json.loads(cookie_json_path.read_text("utf-8")) + + cookie_keys = [ + key for key in cookie if not key.startswith("_") and key != "kedro_version" + ] + cookie_keys.append("output_dir") + default_config_keys = _get_default_config().keys() + + assert set(cookie_keys) == set(default_config_keys) diff --git a/tests/config/__init__.py b/tests/config/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/tests/config/test_config.py b/tests/config/test_config.py new file mode 100644 index 0000000000..a1f90a0fe0 --- /dev/null +++ b/tests/config/test_config.py @@ -0,0 +1,280 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +import configparser +import json +from pathlib import Path +from typing import Dict + +import pytest +import yaml + +from kedro.config import ConfigLoader + + +def _get_local_logging_config(): + return { + "version": 1, + "formatters": { + "simple": {"format": "%(asctime)s - %(name)s - %(levelname)s - %(message)s"} + }, + "root": {"level": "INFO", "handlers": ["console"]}, + "loggers": { + "kedro": {"level": "INFO", "handlers": ["console"], "propagate": False} + }, + "handlers": { + "console": { + "class": "logging.StreamHandler", + "level": "INFO", + "formatter": "simple", + "stream": "ext://sys.stdout", + } + }, + } + + +def _write_yaml(filepath: Path, config: Dict): + filepath.parent.mkdir(parents=True, exist_ok=True) + yaml_str = yaml.dump(config) + filepath.write_text(yaml_str) + + +def _write_json(filepath: Path, config: Dict): + filepath.parent.mkdir(parents=True, exist_ok=True) + json_str = json.dumps(config) + filepath.write_text(json_str) + + +def _write_dummy_ini(filepath: Path): + filepath.parent.mkdir(parents=True, exist_ok=True) + config = configparser.ConfigParser() + config["prod"] = {"url": "postgresql://user:pass@url_prod/db"} + config["staging"] = {"url": "postgresql://user:pass@url_staging/db"} + with filepath.open("wt") as configfile: # save + config.write(configfile) + + +@pytest.fixture +def base_config(tmp_path): + filepath = str(tmp_path / "cars.csv") + return { + "trains": {"type": "MemoryDataSet"}, + "cars": { + "type": "CSVLocalDataSet", + "filepath": filepath, + "save_args": {"index": True}, + }, + } + + +@pytest.fixture +def local_config(tmp_path): + filepath = str(tmp_path / "cars.csv") + return { + "cars": { + "type": "CSVLocalDataSet", + "filepath": filepath, + "save_args": {"index": False}, + }, + "boats": {"type": "MemoryDataSet"}, + } + + +@pytest.fixture +def create_config_dir(tmp_path, base_config, local_config): + proj_catalog = tmp_path / "base" / "catalog.yml" + local_catalog = tmp_path / "local" / "catalog.yml" + local_logging = tmp_path / "local" / "logging.yml" + parameters = tmp_path / "base" / "parameters.json" + db_config_path = tmp_path / "base" / "db.ini" + project_parameters = dict(param1=1, param2=2) + + _write_yaml(proj_catalog, base_config) + _write_yaml(local_catalog, local_config) + _write_yaml(local_logging, _get_local_logging_config()) + _write_json(parameters, project_parameters) + _write_dummy_ini(db_config_path) + + +@pytest.fixture +def conf_paths(tmp_path): + return [str(tmp_path / "base"), str(tmp_path / "local")] + + +@pytest.fixture +def proj_catalog(tmp_path, base_config): + proj_catalog = tmp_path / "base" / "catalog.yml" + _write_yaml(proj_catalog, base_config) + + +@pytest.fixture +def proj_catalog_nested(tmp_path, base_config): + proj_catalog = tmp_path / "base" / "prod" / "catalog.yml" + _write_yaml(proj_catalog, {"prod": base_config}) + + +use_config_dir = pytest.mark.usefixtures("create_config_dir") +use_proj_catalog = pytest.mark.usefixtures("proj_catalog") + + +class TestConfigLoader: + @use_config_dir + def test_load_local_config(self, conf_paths): + """Make sure that configs from `local/` override the ones + from `base/`""" + conf = ConfigLoader(conf_paths) + params = conf.get("parameters*") + db_conf = conf.get("db*") + catalog = conf.get("catalog*") + + assert params["param1"] == 1 + assert db_conf["prod"]["url"] == "postgresql://user:pass@url_prod/db" + + assert catalog["trains"]["type"] == "MemoryDataSet" + assert catalog["cars"]["type"] == "CSVLocalDataSet" + assert catalog["boats"]["type"] == "MemoryDataSet" + assert not catalog["cars"]["save_args"]["index"] + + @use_proj_catalog + def test_load_base_config(self, tmp_path, conf_paths, base_config): + """Test config loading if `local/` directory is empty""" + (tmp_path / "local").mkdir(exist_ok=True) + catalog = ConfigLoader(conf_paths).get("catalog*.yml") + assert catalog == base_config + + @use_proj_catalog + def test_duplicate_patterns(self, tmp_path, conf_paths, base_config): + """Test config loading if the glob patterns cover the same file""" + (tmp_path / "local").mkdir(exist_ok=True) + conf = ConfigLoader(conf_paths) + catalog1 = conf.get("catalog*.yml", "catalog*.yml") + catalog2 = conf.get("catalog*.yml", "catalog.yml") + assert catalog1 == catalog2 == base_config + + def test_subdirs_dont_exist(self, tmp_path, conf_paths, base_config): + """Check the error when config paths don't exist""" + pattern = ( + r"Given configuration path either does not exist " + r"or is not a valid directory\: {}" + ) + with pytest.raises(ValueError, match=pattern.format(".*base")): + ConfigLoader(conf_paths).get("catalog*") + with pytest.raises(ValueError, match=pattern.format(".*local")): + proj_catalog = tmp_path / "base" / "catalog.yml" + _write_yaml(proj_catalog, base_config) + ConfigLoader(conf_paths).get("catalog*") + + @pytest.mark.usefixtures("create_config_dir", "proj_catalog", "proj_catalog_nested") + def test_nested_subdirs(self, tmp_path): + """Test loading the config from subdirectories""" + catalog = ConfigLoader(str(tmp_path / "base")).get("**/catalog*") + assert ( + catalog["cars"]["type"] + == catalog["prod"]["cars"]["type"] + == "CSVLocalDataSet" + ) + assert catalog["cars"]["save_args"]["index"] is True + + @use_config_dir + def test_nested_subdirs_duplicate(self, tmp_path, conf_paths, base_config): + """Check the error when the configs from subdirectories contain + duplicate keys""" + nested = tmp_path / "base" / "prod" / "catalog.yml" + _write_yaml(nested, base_config) + + pattern = ( + r"Duplicate keys found in .*catalog\.yml " + r"and\:\n\- .*catalog\.yml\: cars, trains" + ) + with pytest.raises(ValueError, match=pattern): + ConfigLoader(conf_paths).get("**/catalog*") + + def test_ignore_hidden_keys(self, tmp_path): + """Check that the config key starting with `_` are ignored and also + don't cause a config merge error""" + _write_yaml(tmp_path / "base" / "catalog1.yml", {"k1": "v1", "_k2": "v2"}) + _write_yaml(tmp_path / "base" / "catalog2.yml", {"k3": "v3", "_k2": "v4"}) + + conf = ConfigLoader(str(tmp_path)) + catalog = conf.get("**/catalog*") + assert catalog.keys() == {"k1", "k3"} + + _write_yaml(tmp_path / "base" / "catalog3.yml", {"k1": "dup", "_k2": "v5"}) + pattern = ( + r"^Duplicate keys found in .*catalog3\.yml and\:\n\- .*catalog1\.yml\: k1$" + ) + with pytest.raises(ValueError, match=pattern): + conf.get("**/catalog*") + + @use_config_dir + def test_same_key_in_same_dir(self, tmp_path, conf_paths, base_config): + """Check the error if 2 files in the same config dir contain + the same top-level key""" + dup_json = tmp_path / "base" / "catalog.json" + _write_json(dup_json, base_config) + + pattern = ( + r"Duplicate keys found in .*catalog\.yml " + r"and\:\n\- .*catalog\.json\: cars, trains" + ) + with pytest.raises(ValueError, match=pattern): + ConfigLoader(conf_paths).get("catalog*") + + def test_empty_conf_paths(self): + """Check the error if config paths were not specified or are empty""" + pattern = ( + r"`conf_paths` must contain at least one path to load " + r"configuration files from" + ) + with pytest.raises(ValueError, match=pattern): + ConfigLoader([]) + with pytest.raises(ValueError, match=pattern): + ConfigLoader("") + + @use_config_dir + def test_empty_patterns(self, conf_paths): + """Check the error if no config patterns were specified""" + pattern = ( + r"`patterns` must contain at least one glob pattern " + r"to match config filenames against" + ) + with pytest.raises(ValueError, match=pattern): + ConfigLoader(conf_paths).get() + + @use_config_dir + def test_no_files_found(self, conf_paths): + """Check the error if no config files satisfy a given pattern""" + pattern = ( + r"No files found in " + r"\[\'.*base\', " + r"\'.*local\'\] " + r"matching the glob pattern\(s\): " + r"\[\'non\-existent\-pattern\'\]" + ) + with pytest.raises(ValueError, match=pattern): + ConfigLoader(conf_paths).get("non-existent-pattern") diff --git a/tests/contrib/__init__.py b/tests/contrib/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/tests/contrib/colors/__init__.py b/tests/contrib/colors/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/tests/contrib/colors/logging/__init__.py b/tests/contrib/colors/logging/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/tests/contrib/colors/logging/test_color_logger.py b/tests/contrib/colors/logging/test_color_logger.py new file mode 100644 index 0000000000..5e1f8323f6 --- /dev/null +++ b/tests/contrib/colors/logging/test_color_logger.py @@ -0,0 +1,44 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +import logging + +from kedro.contrib.colors.logging import ColorHandler + + +def test_color_logger(caplog): + log = logging.getLogger(__name__) + for handler in log.handlers: + log.removeHandler(handler) # pragma: no cover + + log.addHandler(ColorHandler()) + log.info("Test") + + for record in caplog.records: + assert record.levelname == "INFO" + assert "Test" in record.msg diff --git a/tests/contrib/decorators/__init__.py b/tests/contrib/decorators/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/tests/contrib/decorators/test_decorators.py b/tests/contrib/decorators/test_decorators.py new file mode 100644 index 0000000000..2b5042ea7b --- /dev/null +++ b/tests/contrib/decorators/test_decorators.py @@ -0,0 +1,96 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. +import pandas as pd +import pytest +from pyspark.sql import SparkSession + +from kedro.contrib.decorators import pandas_to_spark, retry, spark_to_pandas +from kedro.pipeline import node + + +@pytest.fixture() +def spark(): + return SparkSession.builder.getOrCreate() + + +@pytest.fixture() +def pandas_df(): + return pd.DataFrame( + { + "Name": ["Alex", "Bob", "Clarke", "Dave"], + "Age": [31, 12, 65, 29], + "member": ["y", "n", "y", "n"], + } + ) + + +@pytest.fixture() +def spark_df(pandas_df, spark): + return spark.createDataFrame(pandas_df) + + +@pytest.fixture() +def three_arg_node(): + return node( + lambda arg1, arg2, arg3: [arg1, arg2, arg3], + ["input1", "input2", "input3"], + ["output1", "output2", "output3"], + ) + + +@pytest.fixture() +def inputs(pandas_df, spark_df): + return {"input1": pandas_df, "input2": spark_df, "input3": pandas_df} + + +def test_pandas_to_spark(three_arg_node, spark, pandas_df, inputs): + res = three_arg_node.decorate(pandas_to_spark(spark)).run(inputs) + for output in ["output1", "output2", "output3"]: + assert res[output].toPandas().equals(pandas_df) + + +def test_spark_to_pandas(three_arg_node, pandas_df, inputs): + res = three_arg_node.decorate(spark_to_pandas()).run(inputs) + for output in ["output1", "output2", "output3"]: + assert res[output].equals(pandas_df) + + +def test_retry(): + def _bigger(obj): + obj["value"] += 1 + if obj["value"] >= 0: + return True + raise ValueError("Value less than 0") + + decorated = node(_bigger, "in", "out").decorate(retry()) + + with pytest.raises(ValueError, match=r"Value less than 0"): + decorated.run({"in": {"value": -3}}) + + decorated2 = node(_bigger, "in", "out").decorate(retry(n_times=2)) + assert decorated2.run({"in": {"value": -3}}) diff --git a/tests/contrib/io/__init__.py b/tests/contrib/io/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/tests/contrib/io/azure/__init__.py b/tests/contrib/io/azure/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/tests/contrib/io/azure/test_csv_blob.py b/tests/contrib/io/azure/test_csv_blob.py new file mode 100644 index 0000000000..ace8088d80 --- /dev/null +++ b/tests/contrib/io/azure/test_csv_blob.py @@ -0,0 +1,156 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +# pylint: disable=unused-argument + +from unittest.mock import patch + +import pandas as pd +import pytest + +from kedro.contrib.io.azure import CSVBlobDataSet +from kedro.io import DataSetError + +TEST_FILE_NAME = "test.csv" +TEST_CONTAINER_NAME = "test_bucket" +TEST_CREDENTIALS = {"account_name": "ACCOUNT_NAME", "account_key": "ACCOUNT_KEY"} + + +@pytest.fixture() +def dummy_dataframe(): + return pd.DataFrame({"col1": [1, 2], "col2": [4, 5], "col3": [5, 6]}) + + +@pytest.fixture +def blob_csv_data_set(): + def make_data_set(load_args=None, save_args=None): + return CSVBlobDataSet( + filepath=TEST_FILE_NAME, + container_name=TEST_CONTAINER_NAME, + blob_to_text_args={"to_extra": 42}, + blob_from_text_args={"from_extra": 42}, + credentials=TEST_CREDENTIALS, + load_args=load_args, + save_args=save_args, + ) + + return make_data_set + + +@patch("kedro.contrib.io.azure.csv_blob.BlockBlobService") +def test_pass_credentials_load(blob_service, blob_csv_data_set): + try: + blob_csv_data_set().load() + except DataSetError: + # We don't care about it for this test, we just want to know that + # azure service was called with the right parameters + pass + blob_service.assert_called_with( + account_name="ACCOUNT_NAME", account_key="ACCOUNT_KEY" + ) + + +@patch("kedro.contrib.io.azure.csv_blob.BlockBlobService") +def test_pass_credentials_save(blob_service, blob_csv_data_set, dummy_dataframe): + blob_csv_data_set().save(dummy_dataframe) + blob_service.assert_called_with( + account_name="ACCOUNT_NAME", account_key="ACCOUNT_KEY" + ) + + +@patch("kedro.contrib.io.azure.csv_blob.BlockBlobService.get_blob_to_text") +def test_load_blob_args(get_blob_mock, blob_csv_data_set): + try: + blob_csv_data_set().load() + except DataSetError: + pass + + get_blob_mock.assert_called_with( + container_name=TEST_CONTAINER_NAME, blob_name=TEST_FILE_NAME, to_extra=42 + ) + + +class BlobMock: + def __init__(self): + self._content = "name,age\ntom,3\nbob,4" + + @property + def content(self): + return self._content + + +def mock_load_func(): + def mocked(*args, **kwargs): + return BlobMock() + + return mocked + + +@patch( + "kedro.contrib.io.azure.csv_blob.BlockBlobService.get_blob_to_text", + new_callable=mock_load_func, +) +def test_load(get_blob_mock, blob_csv_data_set): + result = blob_csv_data_set().load()[["name", "age"]] + expected = pd.DataFrame({"name": ["tom", "bob"], "age": [3, 4]}) + expected = expected[["name", "age"]] + assert result.equals(expected) + + +@patch("kedro.contrib.io.azure.csv_blob.BlockBlobService.create_blob_from_text") +def test_save_blob_args(blob_from_mock, blob_csv_data_set, dummy_dataframe): + blob_csv_data_set().save(dummy_dataframe) + blob_from_mock.assert_called_with( + container_name=TEST_CONTAINER_NAME, + blob_name=TEST_FILE_NAME, + text=dummy_dataframe.to_csv(index=False), + from_extra=42, + ) + + +# pylint: disable=protected-access +def test_load_extra_params(blob_csv_data_set): + expected_keys = ["option"] + data_set = blob_csv_data_set(load_args={"option": "value"}) + for expected_key in expected_keys: + assert expected_key in data_set._load_args.keys() + + +# pylint: disable=protected-access +def test_save_with_extra_params(blob_csv_data_set): + expected_keys = ["index", "option"] + data_set = blob_csv_data_set(save_args={"option": "value"}) + for expected_key in expected_keys: + assert expected_key in data_set._save_args.keys() + + +def test_str_representation(blob_csv_data_set): + data_set = blob_csv_data_set(save_args={"option": "value"}) + assert "CSVBlobDataSet" in str(data_set) + assert TEST_CREDENTIALS["account_name"] not in str(data_set) + assert TEST_CREDENTIALS["account_key"] not in str(data_set) diff --git a/tests/contrib/io/bioinformatics/__init__.py b/tests/contrib/io/bioinformatics/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/tests/contrib/io/bioinformatics/ls_orchid.fasta b/tests/contrib/io/bioinformatics/ls_orchid.fasta new file mode 100644 index 0000000000..9c0fc9678d --- /dev/null +++ b/tests/contrib/io/bioinformatics/ls_orchid.fasta @@ -0,0 +1,1268 @@ +>gi|2765658|emb|Z78533.1|CIZ78533 C.irapeanum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGATGAGACCGTGGAATAAA +CGATCGAGTGAATCCGGAGGACCGGTGTACTCAGCTCACCGGGGGCATTGCTCCCGTGGT +GACCCTGATTTGTTGTTGGGCCGCCTCGGGAGCGTCCATGGCGGGTTTGAACCTCTAGCC +CGGCGCAGTTTGGGCGCCAAGCCATATGAAAGCATCACCGGCGAATGGCATTGTCTTCCC +CAAAACCCGGAGCGGCGGCGTGCTGTCGCGTGCCCAATGAATTTTGATGACTCTCGCAAA +CGGGAATCTTGGCTCTTTGCATCGGATGGAAGGACGCAGCGAAATGCGATAAGTGGTGTG +AATTGCAAGATCCCGTGAACCATCGAGTCTTTTGAACGCAAGTTGCGCCCGAGGCCATCA +GGCTAAGGGCACGCCTGCTTGGGCGTCGCGCTTCGTCTCTCTCCTGCCAATGCTTGCCCG +GCATACAGCCAGGCCGGCGTGGTGCGGATGTGAAAGATTGGCCCCTTGTGCCTAGGTGCG +GCGGGTCCAAGAGCTGGTGTTTTGATGGCCCGGAACCCGGCAAGAGGTGGACGGATGCTG +GCAGCAGCTGCCGTGCGAATCCCCCATGTTGTCGTGCTTGTCGGACAGGCAGGAGAACCC +TTCCGAACCCCAATGGAGGGCGGTTGACCGCCATTCGGATGTGACCCCAGGTCAGGCGGG +GGCACCCGCTGAGTTTACGC +>gi|2765657|emb|Z78532.1|CCZ78532 C.californicum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGACAACAGAATATA +TGATCGAGTGAATCTGGAGGACCTGTGGTAACTCAGCTCGTCGTGGCACTGCTTTTGTCG +TGACCCTGCTTTGTTGTTGGGCCTCCTCAAGAGCTTTCATGGCAGGTTTGAACTTTAGTA +CGGTGCAGTTTGCGCCAAGTCATATAAAGCATCACTGATGAATGACATTATTGTCAGAAA +AAATCAGAGGGGCAGTATGCTACTGAGCATGCCAGTGAATTTTTATGACTCTCGCAACGG +ATATCTTGGCTCTAACATCGATGAAGAACGCAGCTAAATGCGATAAGTGGTGTGAATTGC +AGAATCCCGTGAACCATCGAGTCTTTGAACGCAAGTTGCGCTCGAGGCCATCAGGCTAAG +GGCACGCCTGCCTGGGCGTCGTGTGTTGCGTCTCTCCTACCAATGCTTGCTTGGCATATC +GCTAAGCTGGCATTATACGGATGTGAATGATTGGCCCCTTGTGCCTAGGTGCGGTGGGTC +TAAGGATTGTTGCTTTGATGGGTAGGAATGTGGCACGAGGTGGAGAATGCTAACAGTCAT +AAGGCTGCTATTTGAATCCCCCATGTTGTTGTATTTTTTCGAACCTACACAAGAACCTAA +TTGAACCCCAATGGAGCTAAAATAACCATTGGGCAGTTGATTTCCATTCAGATGCGACCC +CAGGTCAGGCGGGGCCACCCGCTGAGTTGAGGC +>gi|2765656|emb|Z78531.1|CFZ78531 C.fasciculatum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGACAGCAGAACATA +CGATCGAGTGAATCCGGAGGACCCGTGGTTACACGGCTCACCGTGGCTTTGCTCTCGTGG +TGAACCCGGTTTGCGACCGGGCCGCCTCGGGAACTTTCATGGCGGGTTTGAACGTCTAGC +GCGGCGCAGTTTGCGCCAAGTCATATGGAGCGTCACCGATGGATGGCATTTTTGTCAAGA +AAAACTCGGAGGGGCGGCGTCTGTTGCGCGTGCCAATGAATTTATGACGACTCTCGGCAA +CGGGATATCTGGCTCTTGCATCGATGAAGAACGCAGCGAAATGCGATAAGTGGTGTGAAT +TGCAGAATCCCGCGAACCATCGAGTCTTTGAACGCAAGTTGCGCCCGAGGCCATCAGGCT +AAGGGCACGCCTGCCTGGGCGTCGTGTGCTGCGTCTCTCCTGATAATGCTTGATTGGCAT +GCGGCTAGTCTGTCATTGTGAGGACGTGAAAGATTGGCCCCTTGCGCCTAGGTGCGGCGG +GTCTAAGCATCGGTGTTCTGATGGCCCGGAACTTGGCAGTAGGTGGAGGATGCTGGCAGC +CGCAAGGCTGCCGTTCGAATCCCCCGTGTTGTCGTACTCGTCAGGCCTACAGAAGAACCT +GTTTGAACCCCCAGTGGACGCAAAACCGCCCTCGGGCGGTGATTTCCATTCAGATGCGAC +CCCAGTCAGGCGGGCCACCCGTGAGTAA +>gi|2765655|emb|Z78530.1|CMZ78530 C.margaritaceum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAAACAACATAATAAA +CGATTGAGTGAATCTGGAGGACTTGTGGTAATTTGGCTCGCTAGGGATATCCTTTTGTGG +TGACCATGATTTGTCATTGGGCCTCATTGAGAGCTTTCATGGCGGGTTTGAACCTCTAGC +ACGGTCCAGTTTGCACCAAGGTATATAAAGAATCACCGATGAATGACATTATTGCCCCAC +ACAACGTCGGAGGTGTGGTGTGTTAATGTTCATTCCAATGAATTTTGATGACTCTCGGCA +GACGGATATCTTGACTCTTGCATCGATGAAGAACGCACCGAAATGTGATAAGTGGTGTGA +ATTGCAGAATCCCGTGAACCATCGAGTCTTTGAACGCAAGTTGCGCCCGAGGCCATCAGG +CTAAGGGCACGCCTGCCTGGGCGTCGTATGTTTTATCTCTCCTTCCAATGCTTGTCCAGC +ATATAGCTAGGCCATCATTGTGTGGATGTGAAAGATTGGCCCCTTGTGCTTAGGTGCGGT +GGGTCTAAGGATATGTGTTTTGATGGTCTGAAACTTGGCAAGAGGTGGAGGATGCTGGCA +GCCGCAAGGCTATTGTTTGAATCCCCCATGTTGTCATGTTTGTTGGGCCTATAGAACAAC +TTGTTTGGACCCTAATTAAGGCAAAACAATCCTTGGGTGGTTGATTTCCAATCAGATGCG +ACCCCAGTCAGGGGGCCACCCCAT +>gi|2765654|emb|Z78529.1|CLZ78529 C.lichiangense 5.8S rRNA gene and ITS1 and ITS2 DNA +ACGGCGAGCTGCCGAAGGACATTGTTGAGACAGCAGAATATACGATTGAGTGAATCTGGA +GGACTTGTGGTTATTTGGCTCGCTAGGGATTTCCTTTTGTGGTGACCATGATTTGTCATT +GGGCCTCATTGAGAGCTTTCATGGCGGGTTTGAACCTCTAGCACGGTGCAGTTTGCACCA +AGGTATATAAAGAATCACCGATGAATGACATTATTGTCAAAAAAGTCGGAGGTGTGGTGT +GTTATTGGTCATGCCAATGAATTGTTGATGACTCTCGCCGAGGGATATCTTGGCTCTTGC +ATCGATGAAGAATCCCACCGAAATGTGATAAGTGGTGTGAATTGCAGAATCCCGTGAACC +ATCGAGTCTTTGAACGCAAGTTGCGCCCGAGGCCATCAGGCTAAGGGCACGCCTGCCTGG +GCGTCGTATGTTTTATCTCTCCTTCCAATGCTTGTCCAGCATATAGCTAGGCCATCATTG +TGTGGATGTGAAAGATTGGCCCCTTGTGCTTAGGTGCGGTGGGTCTAAGGATATGTGTTT +TGATGGTCTGAAACTTGGCAAGAGGTGGAGGATGCTGGCAGCCGCAAGGCTATTGTTTGA +ATCCCCCATGTTGTCATATTTGTTGGGCCTATAGAACAACTTGTTTGGACCCTAATTAAG +GCAAAACAATCCTTGGGTGGTTGATTTCCAATCAGATGCGACCCCAGTCAGCGGGCCACC +AGCTGAGCTAAAA +>gi|2765652|emb|Z78527.1|CYZ78527 C.yatabeanum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGACAGTAGAATATA +TGATCGAGTGAATCTGGATGACCTGTGGTTACTCGGCTCGCCTGATTTGTTGTTGGGCTT +CCTTAGGAGCTTACATGGCGGGTTTGAACCTCTACCACGGTGCAGTTTGCGCCAAGTCAT +ATGAAGCATAACTGCAAATGGCACTACTGTCACCAAAAGTTGGAGTGGCAGTGTGTTATT +GCATGCGCTAATGGATTTTTGATGACTCTCGGCCAACGGATATCTGGCTCTTTGCATCGA +TGAAGGAACGCAGCGAAATGCGATAAGTGGTGTGAATTGCAGAATCCCGCGAACCATCGA +GTCTTTGAACGCAAGTTGCGCCCGAGGCCATCAGGCTAAGGGCACGCCTGCCTGGGCGTC +GTGTATCGCATCTCTCTTGCCAATGCTTACCCGGCATACAACTAGGCTGGCATTGGGTGG +ATGTGAAAGATTGGCCCCTTGTGCCTAGGTGCGGTGGGTCTAAGGATTGATGTTTTGATG +GATCGAAACCTGGCAGGAGGTGGAGGATGCTGGAAGCCGCAAGGCTGTCGTTCGAATCCC +CCATGTTGTCATATTTGTCGAACCTATAAAAGAACATGCTTGAACCCCAATGGATTGTAA +AATGACCCTTGGCGGTTGATTTCCATTTAGATGCGACCCCAGGTCAGGCGGGCCACCC +>gi|2765651|emb|Z78526.1|CGZ78526 C.guttatum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGACAGTAGAATATA +TGATCGAGTGAATCTGGAGGACCTGTGGTTACTCGGCTCCCCTGATTTGTTGTTGGGCTT +CCTTAGGAGCTTACATGCCGGGTTTGAACCTCTACCACGGTGCAGTTTGCGCCAAGTCAT +ATGAAGCATAACTGAACAATGGCATTATTGTCACCAAAAGTTGGAGTGGCAGTGTGCTAT +TGCATGCGCTAATGGATTTTTGATGACTCTCGCCAACGGATATCTTGGCTCTTGCATCGA +TGAAGAACCCAGCGAAATGCGATAAGTGGTGTGAATTGCAGAATCCCGCGAACCATCGAG +TCTTTGAACGCAAGTTGCGCCCGAGGCCATCAGGCTAAGGGCACGCCTGCCTGGGCGTCG +TGTATCGCATCTCTCTTGCCAATGCTTACCCGGCATACAACTAGGCTGGCATTGTGCGGA +TGTGAAAGATTGGCCCCTTGTGCCTAGGTGCGGTGGGTCTAAGGATTGATGTTTTGATGG +ATCGAAACCTGGCAGGAGGTGGAGGATGCTGGAAGCCGCAAGGCTGTCGTTCGAATCCCC +CATGTTGTCATATTTGTCGAACCTATAAAAGAACATGCTTGAACCCCAATGGATGTAAAA +TGACCCTTGGCGGTTGATTTCCATTTAGATGCGACCCCAGGTCAGGCGGGGCCACCCGCT +GAGTTTATGT +>gi|2765650|emb|Z78525.1|CAZ78525 C.acaule 5.8S rRNA gene and ITS1 and ITS2 DNA +TGTTGAGATAGCAGAATATACATCGAGTGAATCCGGAGGACCTGTGGTTATTCGGCTTGC +CGAGGGCTTTGCTTTTGTGGTGACCCAAATTTGTCGTTGGGCCTCCTCGGGAGCTTTCAT +GGCAGGTTTCAAACTCTAGCACGGCACAGTTTGTGCCAAGTCATATGAAGCATCACCGAC +AAATGACATTATTGTCAAAAAAGTTGGAGGGGCGGTGTCCTCCTGTGCATGCCGAATATA +ATTTTGATGACTCTCGACAAGCGGATATCTTGGCTCTTGCATCGGATGAAGAACCCAGCG +AAATGCGATAAGTGGTGTGAATTGCAAGATCCCGTGAACCATCGAGTCTTTTGAACGCAA +GTTGCGCCCGAGGCCATCAGGCTAAGGGCACGCCTGCCTGGGCGTCGTGTGTTGTGTCTC +TCTTGCCAATGCCTGTCCATATATCTAGGCTTGCATTGTGCGGATGCGAAAGATTGGCCC +CTTGTGCCTTGGCGCGTTGGGTCTAAGGAATGTTTTGATGGCCCGAAACTTGGCAGGAGG +TGGAGGACATTGGCTGCCACAAGGTTGTCATTTAAATCCCCCATGTTATCGTATTTATCG +GACCTATATAATAACTTGTTTGAACCCCAGTGGAGGCAAAATGACCCTTGGATGGTTGAC +TGCCATTCATATGCGACCCCAGGTCAGGCGGGCCACCCGCTGCA +>gi|2765649|emb|Z78524.1|CFZ78524 C.formosanum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGATAGTAGAATATA +TGATTGAGTGAATATGGAGGACATGTGGTTACTTGGCTCGTCAGTGCTTTGCTTTTGTGG +TGACCTTAATTGGGCCTCCTTAGGAGCTTTCATGGCGGGTTCAAACCTTTAGCACGGCGC +AGTTTGTGCCAAGTCATATAAGCATCCCTGATGAATGGCATTGTTGTTAAAAAAGTCGGA +GGGGCGGCATGCTGTTGTGCATGCTAATGAATTTTTTGATGACTCTCGCAACGGAACTTG +GCTCTTTACATCCGATGAAGAACGCAGCGAAATGCGATAAGTGGTGTGAATTGCAGAATC +CCGTGAACCATCGAGTATTTGAACGCAAGTTGCGCCCAAGGCCATCAGGCTAAGGGCACG +CCTGCCTGGGCGTCGTGTGCTGCATCTCTCCTNCCAATGCTTGCCCAGCATATAGCTAGG +TTAGCATTGTGCGGATGAAATATTGGCCCCTTGTGCTTAGGTGCGGTGGGTCTAAGGATT +AGTATTTTGATAGCTCGGAACTCGGCAGGAGGTGGAGAATGTTGGTAGCTGCAAGGCTGC +CATTTGAATTCCCCATGTTGTCGTATTTGTTGAACCTATAAAAGAACTTGTTTGAACCCC +AATGAAGGAAAAATGACCCTTGGGCGGTTGATTTTCATTCAGATGCAACCCCAGGTCAGG +TGGCCACCCTGAGATTAAGC +>gi|2765648|emb|Z78523.1|CHZ78523 C.himalaicum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACCAGGTTTCCGTAGGTGAACCTGCGGCAGGATCATTGTTGAGACAGCAGAATATA +TGATCGAGTGAATCCGGTGGACTTGTGGTTACTCAGCTCGACATAGGCTTTGCTTTTGCG +GTGACCCTAACTTGTCATTGGGCCTCCTCCCAAGCTTTCCTTGTGGGTGTGAACCTCTAG +CACGGTGCAGTATGCGCCAAGTCATATGAAGCATCACTGAGGAATGACATTATTGTCCCA +AAAGCTAGAGTGGAAGCGTGCTCTTGCATGCATGCATAATGAATTTTTTATTGACTCTCG +ACATATGTGGTGTGAATTGCAGAATCCCGTGAACCATCGAGTCTTTGAACGCAAGTTGCG +CCCGATGCCATCAGGCTAAGGGCACGCCTGCCTGGGCGTCGTGTGCTGCGTCTCTCCTAT +CAATGCTTTCCTATCATATAGATTGGTTTGCATTGCGTGGATGCGAAAGATTGGCCCCTT +GTGCCTAGGTGCGGTGGGTCTAAGGACTAGTGTTTTGATGGTTCGAAACCTGGCAGGAGG +TGGAGGATGTTGGCAGCTATAAGGCTATCGTTTGAACCCCCCATATTGTCGTGTTTGTCG +GACCTAGAGAAGAACCTGTTTGAATCCCAATGGAGGCAAACAACCCTCGGGCGGTTGATT +GCCATTCATATTGCGACCCAGGTCAGGCGGGGCCACCGCTGAGTTTAAG +>gi|2765647|emb|Z78522.1|CMZ78522 C.macranthum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGACAGCAGAATATA +TGATCGAGTGAATCCGGTGGACTTGTGGTTACTCAGCTCGACATAGGCTTTGCTTTTGCG +GTGACCCTAATTTGTCATTGGGCCTCCCCCCAAGCTTTCCTTGTGGGTTTGAACCTCTAG +CACGGTGCAGTATGCGCCAAGTCATATGAAGCATCACTGATGAATGACATTATTGTCCAA +AAAGTTGGAGTGGAAGCGTGCTATTGCATACATGCAAATGAATTTTTTATGACTCTCGAC +ATATCGTGGTGTGATCGCAGAATCCCGTGAACCATCGAGTCTTTGAACGCAAGTTGCGCC +CGATGCCATCAGGCTAAGGGAACGCCTGCCTGGGCGTCGTGTGCTGCGTCTCTCCTGTCA +ATGGTTATACGTCATATAGACAGGTTTGCATTGCGTGGATGTGAAAGATTGGCCCCTTGT +GCCTAGGTGCGGTGGGTCTAAGGACTAGTGTTTTGATGGTTCGAAACCTGGCAGGAGGTG +GAGGATGTTGGCAGCTATAAGGCTATCATTTGAATCCCCCATATTGTCGTGTTTGTCGGA +CCTAGAGAAGAACATGTTTGAATCCCAATGGGGGCAAACAACCCTCGGGCGGTTGATTGC +CATTCATATGCGACCCCAGGTCAGGCGGCCACCCGCTGAG +>gi|2765646|emb|Z78521.1|CCZ78521 C.calceolus 5.8S rRNA gene and ITS1 and ITS2 DNA +GTAGGTGAACCTGCGGAAGGATCATTGTTGAGACAGTAGAATATATGATCGAGTGAATCC +GGTGGACTTGTGGTTACTCAGCTCGACATAGGCTTGGCTTTGGCGGTGACCCTAATTTGC +CATTGGGCCTCCTCCAAAGCTTTCCTTGTGGGTTTGAACCTCTAGCACGGTGCAGTATGC +GCCAAGTCATATGAAGCATCACCGATGAATGACATTATTGTCAAAAAGTTGGAGTGGAAG +CGTGCTATTGCATGCATGCAAATGAATTTTTTATGACTCTCGACAACGGATATCTTGGCT +CTTGCATCGATGAAGAACGCAGCAAAATGCGATAAGTGGTGTGAATTGCAGAATCCCGTG +AACCATCGAGTCTTTGAACGCAAGTTGCGCCCGATGCCATCAGGCTAAGGGCACGCCTGC +CTGGGCGTCGTGTGCTGCGTCTCTCCTGTCAATGCTTTCATGTCATATAGATAGGTTTGC +ATTGCGTGGATGTGAAAGAATGGCCCCTTGTGCCTAGGTACGGTGGGTCTAAGGACTAGT +GTTTTGATGGTTCGAAACCTGGCAGGAGGTGGAGGATGTTGGCAGCTATAAGGCTATCAT +TTGAATCCCCCATATTGTCGTGTTTGTCGGACCTAGAGAAAAACATGTTTGAATCCCAAT +GGAGGCAAACAACTCTCGGGCGGTTGATTGCCATTCATATGCGACCCCAGGTCAGGCGGG +GCCACC +>gi|2765645|emb|Z78520.1|CSZ78520 C.segawai 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGACAGCAGAATATA +TGATCGAGTGAATCCGGTGGACTTGTGGTTACTCAGCTCGCCATAGGCTTTGCTTTTGCG +GTGACCCTAATTTGTCATTGGGCCTCCTCCAAAGCTTTCCTTGTGGGTTTGAACCTCTAG +CACGGTGCAGTATGCGCCAAGTCATATGAATCATCACCGATGAATGACATTATTGTCCAA +AAAGTTGGAGTAGAAGCGTGCTATTGCATGCATGCAATAGAATATTTTATGACTCTCGAC +AAGGGATATCTTGGCTCTTGCATCGGATGAAGAACGCAGCGAAATTGTGATAAGTGGTGT +GAATTGCAGAATCCCGTGAACCATCGAGTATGTGAACGCAAGTTGCGCCCGATGCCATCA +GGCTAAGGGCACGCCTGCCTGGGCGTCGTGTGCTGCGTCTCTCCTGTCAATGCTTTCCTG +TCATATCGATAGGTTTGCATTGTGTGGATGTGAAAGATTGGCCCCTTGTGCCTAGGTGCG +GTGGGTCTAAGGACTAGTGTTTTGATGGTTCGAAACCTGGCAGGAGGTGGAGGATGTTGG +CAGCTATAAGGTTGTCATGTGAATCCCCCATATTGTCGTGTTTGTCGGACCTGGAGAAGA +ACCTGTTTGAATCCCAATGGAGGCAAACAACCCTCGGGCGGTTGATTGCCATTCATATGC +GACCCCAGGTCAGGCGGGCCACCCGCTGAGTTT +>gi|2765644|emb|Z78519.1|CPZ78519 C.pubescens 5.8S rRNA gene and ITS1 and ITS2 DNA +ATATGATCGAGTGAATCTGGTGGACTTGTGGTTACTCAGCTCGCCATAGGCTTTGCTTTT +GCGGTGACCCTAATTTGTCATTGGGCCTCCTCCCAAGCTTTCCTTGTGGGTTTGAACCTC +TAGCACGGTGCAGTATGCACCAAGTCATATGAAGCATTGCCGATGAATGACATTATTGTC +CAAAAGTTGGAGTGGAAGCGTGCTACTGCATGCATGCAAATGAATTTTTTTATGACTCTC +GACAACGGATATCTTGGCTCTTGCATCGATGAAGAACGCAGCGAAATGCGATAAGTGGTG +TGAATTGCAGAATCCCGTGAACCATCGAGTCTTTGAACGCAAGTTGCGCCCGATGCCATC +AGGCTAAGGGCACGCCTGCCTGGGCGTCGTGTGCTGCGTCTCTCCTGTCAATGCTTTCCC +ATCATATAGATAGGTTTGCATTGTGTGGATGTGAAAGATTGGCCCCTTGTGCCTAGGTGC +GGTGGGTCTAAGAACTTAATGTTTTGATGGTTCGAAACCTGGCAGGAGGTGGAGGATGTT +GGCAGCTATATAAGGCTATCATTTGAATCCCCCATATTGTCGCGTTTGTTGGACCTAGAG +AAGAACATGTTTGAATCCCAATGGAGGCAAACAACCCTCGGGCGGTTGATTGCCATTCAT +ATGCGACCCCAGGTCAGGCGGGGCCACCCGCTGAGTTTA +>gi|2765643|emb|Z78518.1|CRZ78518 C.reginae 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGGAGGATCATTGTTGAGATAGTAGAATATT +CGATCGAGTGAATCCGGAGGACTTGTGGTTACTCGGCTCGTCGAAGGCTTAACTTTTGTG +GTGACCCTGATTTGTAGTTGGGCATCCTCGAGAGCTTTTATGGCGGGTTTGAGCCTCTAT +CACGGCGCAGTTTGCGCCAAGTCATATGAAGCATCGCCGACGAATTACATTATTGTCCCC +CAAACTCGGATGGACGGTGTGTGTTACGCATACCCGTGAACCATCGAGTCTTTGAACGCA +AGTTGCGCCCAAGGCCATCAGGCTAAGGGCACGCCTGCCTGGGCGTCGTGTGCTGCATCT +CTTTTGCCAATGCTTGCTCGACATACAATTAGGCCAGTATTGCATAGATATGAAAGATTG +ACCCCTTGTGCTTAGGTGCGGTGGGTCTAAGGATTGGTGTTTTGATGGCCCAAACCCCGG +CAGGAGGTGGAGCATGTTGATAGTCGCAAGGCTGTCGTTCAAATCCCACATGTTGTCGTA +TTTGCCGGACCCACAGAAGAACCTATTTGAACCCCTATGGAGGCAAAACAACCCTTGAGC +GATTGATTGCCATTCAGATACGACCCCAGGTCAGGCGGGGCCACCCGCTGAGTTTTCC +>gi|2765642|emb|Z78517.1|CFZ78517 C.flavum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGACAGTAGAATATA +CGATCGAGTGAATCCAGAGGACTTGTGGTTACTCGGCTCGTCCAAGTCTTAGCTTTTGTG +GCCCTGATTTGTCGTTGGGCATCCTCAGGAGATTTTATGGCGGGTTTGAACCTCTATCAC +GGTGCAGTTTGCGCCAAGTCATATGAAGCATCACCGATGAATGACATTATTGTCACAAAA +GTCGGATGGGCGGTGTGCTGTTGTGCATGCCAATAAATTTTTGATGACTCTCGGCCAACG +GATATCTTGCTCTTCCATCGATGAAGAACGCAGCGAAATGCGATAAGTGGTGTGAATTGC +AGAATCCCGTGAACCATCGAGTCTTTGAACGCAAGTTGCGCCCAAGGCCATCAGGCTAAG +GGCACGCCTGCCTGGGCGTCGTGTGCTGCATCTCTTTTGCCAATGCTTGCCCGACATACA +ATTAGGACAGTATTGCATAGATATGAAAGATTGACCCCTTGTGCTTAGGTGCGGTGGGTC +TAAGGATTGGTGTTTTGGTGGCCCGAACCCCGGCAGGAGGTGGATCATGTTGATAGTCGC +AAGACTGTCATTCAAATCCCACATGTTGTCGTATTTGTCGGACCCACAGAAGAACCTATT +TGAACCCCAATGGAGGCAAAACAACCCTCGAGCGATTGATTGCCATTCAGATACGACCCC +AGGTCAGGCGGGGCCACCCGCTGAGTTTAAGC +>gi|2765641|emb|Z78516.1|CPZ78516 C.passerinum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGACAGTATAATATA +TGATCGAGTGAATCCGGAGGACTTGTGGTTACTCGGCTCGTCCAAGTCTTAGCTTTTGTG +GCCCTGATTTGTCGTTGGGCATCCTCAGGAGCTTTTATGGCGGGTTTGAACCTCTATCAC +GGCGCAGTTTGCGCCAAGTCATATGAAGCATCACCGACGAATGACATTATTGTCACCAAA +GTCGGATGGGCGGTGTGCTATTGTGCATACCAATAATTTTTTGATGACTCTCGTCAACGG +ATATCTTAGCGAAATGCGATAAGTGGTGTGAATTGCAGAATCCCGTGAACCATCGAGTCT +TTGAACGCAAGTTGCGCCCAAGGCCATCAGGCTAAGGGCACGCCTGCCTGGGCGTCGTGT +GCTGCATCTCTTTTGCCAATGCTTGCCCGACATACAATTAGGCCAGTATTGCATAGATAT +GAAAGATTGACCCCTTGTGCTTAGGTGCGGTGGGTCTAAGGATTGGTGTTTTGATGTCCC +GAACCCCGGCAGGAGGTGGAGCATGTTGATAGTCGCAAGACTATCGTTCAAATCCCACAT +GTTGTCGTATTTGTCGGACCCACAGAAGAACCTATTTGAACCCCAATGGAGGCAAAACAA +CCCTCGAGTGATTGATTGCCATTCAGATATGACCCCAGGTCAGGCGGGGCCACCCGCTGA +GTTTAA +>gi|2765640|emb|Z78515.1|MXZ78515 M.xerophyticum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGCTGAGACCGTAGAATAAA +CGATCGAGTTAATCTGGAGGACCGGTGTACTTCGATCTCCCAGGGGCTTTCGCTACTGTG +GTGGCCTTTGATCTGCCATCGGGCCTCCTTGGGAGTGTTCTTGAAGGCGATCAAACTTCT +AGCCCGGCGCAGCTTCGCGCCAAGTCTTTTGAGACAAGAATCGGCATAGGGGTGTTCCCT +TGTAGCCGGTGGGGGTGGCACTTGATTCGTGCCCCCCAAGTTACATTTTTACAACTCTCG +GCAACGGATATCTCGGCTCTTGCATCGATGGAGGACGCAGCGAAATGCGATAAGTGGTGT +GAATTGCAGAATCCCGTGAACATCGAGTCTTTGAACGCAAGTTGCGCTCGAGGCCGTCAG +GCTAAGGGCACGCCTGCCTGGGCGTTGTGTACTGTGTCTCTCCCACCAATGGTTGTCCAA +GAATACCGTTCGGTCGGTGCGGATGTGAGTTTGGCCCCTTGTTCTTCGGTTCAATGGGTC +TAAGACCTCGGGCTTTTGATGGTCCAAAATTCGACAAGAGGTGGATGGGCAATGGCTGAG +CCAAAGCTGTTGTGCGAATGCCGTATGTTGTCCGATTTGATGGGCCATCATAATTCGTAG +GACCCTTCGGAACCCCATTGGTGCCACATCAACCCAACCCATGGGCGGTTGATTGCCATT +TGGAAGCAACCCCAGGTCAGGTGAGGCCACCCGCTGAGTTTAAGC +>gi|2765639|emb|Z78514.1|PSZ78514 P.schlimii 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGGACCTTCGGGAGGATCATTTTTGAAGCCCCCAAATATA +CGATCGAGATAATCCGGAGGACCGGTGTACTTTGGTCTCCCAGGGGCTTCCGCCGCTGTG +GTGACCATGATTTCCCATCGAACCTCCTTGGGAGAGTTCTCTATGGCAATTGAACCCTTG +GCCCGGCGCAGTTTCGCTCCAAGTCAAATGAGATAGAACCGACAAGGGTCTTCGTCCTCC +ATGGATGGACCGGGGAGGGCCGGCGTGCTGCTGTGCCCCCTTAAGATTCGTCTGACAACT +CTCGTCAACGGATATCTCGGCTCTTGCATCGATGAAGAACCCAGCGAAATGTGATAAGTG +GTGTGAATTGCAGAATCCCGTGAACCATCGAGTCTTTGAACGCAAGTTGCGCCCGAGGCC +ATCAGGCTAAGGGCACGCCTGCCTGGGCGTTGCGTGCTGCATCTCTCCCAATGCTAAGGT +TGAACAGCCATACTGTTCGGCCGGCGAGGATGAGAGTTTGGCCCCTTGTTCTTCGGTGCG +ATGGGTCCAAGACTTGGGCTTGTGACGGTCCACAAATCCGGCAAGAGGTGGACGGACGGT +GGCTGCGACAAAGCTGTTGTGCGAATGCCCTATGTTGTCGTATTTGATGGGCCGGAATGA +TCCCTTTCGAACCCCGTCGGAGGCACGTCGACCCAACCCATGGGCGGTTGACGGCCATTA +GGATGCAACCCCAGGTCAGGTGAGACTACCCGCTA +>gi|2765638|emb|Z78513.1|PBZ78513 P.besseae 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGACCGCCAAATACA +CGATCGAGTTAATCCGGAGGACCGGTGTACTTTGGTCTCCCAGGGGCTTCCGCCGCTGTG +GTGACCATGATTTGCCATCGAGCCTCATTGGGAGATTTCTCCATGGCAATTGAACCCTTG +GCCCGGCGCAGTTTCGCGCCAAGTCAAATGAGATAGAACCGGCAAGGGCATCGTCCTCCA +TGGAGCCGGGGAGGCCGGCATGCTGCTGTGCCCGAAAGAATTTTCGACAACTCTCGGCAA +CGGATATCTCGGCTCTTGCATCGATGAAGAACGCAGCGAAATGTGATAAGTGGTGTGAAT +TGCAGAATCCCGTGAACCATCGAGTCTTTGAACGCAAGTTGCGCCCGAGGCCATCAGGCT +AAGGGCACGCCTGCCTGGGCGTTGCGTGCTGCATCTCTCCCAATGCTAAGGTTGAACAGC +CATACTGTTCGGCCGGCGAGGATGAGAGTTTGGCCCCTTGTTCTTCTGTGCGATGGGTCC +AAGACTTGGGCTTGTGACGGTCCACAAATCCGGCAAGAGGTGGACGGACGGTGGCTGCGA +CGAAGCTTTTGTGCGAATGCCCTATGTTGTCGTATTTGATGTGCCAGAACGATCCCTTTC +GAACCCCTTCGGAGGCACGTCGACCCAACCCATGGGCGGTGACGCCATTAGGATGCAACC +CAGTCAGTGAGCTACCGCTGAG +>gi|2765637|emb|Z78512.1|PWZ78512 P.wallisii 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGGACCTTCGGGAGGATCATTTTTGAAGCCCCCAAAAAAA +CGATCGAATTAATCCGGAGGGCCGGTGTAGTTTGGTCTCCCAGGGGCCTTGGCTACTGTG +GTGACCGTGAATTTCCGTCGAACCCTCTGGGAGGAATTCTTGATGGCAAATGAAACCCTT +GGCCCGGCGCAGTTTCGCCCCAAATCAAATGAGATGGAACCGGCGGAGGGCATCGTCCCC +CATGGAACCGGGGAGGGCCGGCGTTCTTCCGTTCCCCCAATGAAATTATTTTTTGACAAC +TCTCGCAACGGATATCTCGGCTCTTGCATCGATGAAGAACGCAGCGAAATGTGATAAGCT +GGTGTGAATTGCAGAATCCCGTGAACCATCGAGTCTTTGAACGCAAGTTGCGCCCGAGGC +CATCAGGCTAAGGGCACGCCTGCCTGGGCGTTGCGTGCTGCATCTCTCTCCCATTGCTAA +GGCTGAACAGGCATACTGTTCGGCCGGCGCGGATGAGTGTTTGGCCCCTTGTTCTTCGGT +GCGATGGGTCCAAGACCTGGGCTTTTGACGGCCGGAAATCCGGCAAGAGGTGGACGGACG +GTGGCTGCGACGAAGCTGTCGTGCGAATGCCCTGCGTTGTCGTATTTGATGGGCCGGAAT +AAATCCCTTTTGAACCCCATTGGAGGCACGTCAACCCGTGGGCGGTCGACGGTCATTTGG +ATCCAACCCCAGGTCAGGTGAGGCCACCCGCTGAGTTTAAGC +>gi|2765636|emb|Z78511.1|PEZ78511 P.exstaminodium 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTTCGGAAGGATCATTGTTGAGACCCCCAAAAAAA +CGATCGAGTTAATCCGGAGGACCGGTGTAGTTTGGTCTCCCAGGGGCTTTGGCTACTGTG +GTGGCCGTGAATTTCCGTCGAACCTCCTTGGGAGAATTCTTGATGGCAATTGAACCCTTG +GCCCGGCGCAGTTTCGCCCCAAGTCAAATGAGATGGAACCGGCGGAGGGCATCGTCCTCC +ATGGAACCGGGGAGGGCCGGCGTTCTTCCGTTCCCCCCATGAATTTTTTTTTGACAACTC +TCGGCAACGGATATCTCGGCTCTTTGCATCCGATGAAAGAACCCAGCGAAATGTGATAAG +TGGTGTGAATTGCAGAATCCCGTGAACCATCGAGTCTTTGAACGCAAGTTGCGCCCGAGG +CCATCAGGCTAAGGGCACGCCTGCCTGGGCGTTGCGTGCTGCATCTCTCTCCCATTGCTA +AGGCTGAACAGGCATACTGTTCGGCCGGCGCGGATGAGTGTTTGGCCCCTTGTTCTTCGG +TGCGATGGGTCCAAGACCTGGGCTTTTGACGGCCGGAAATCCGGCAAGAGGTGGACGGAC +GGTGGCTGCGACGAAGCTGTCGTGCGAATGCCCTACGCTGTCGTATTTGATGGGCCGGAA +TAAATCCCTTTTGAGCCCCATTGGAGGCACGTCAACCCGTGGGCGGTCGACGGCCATTTG +GATGCAACCCCAGGTCAGGTGAGGA +>gi|2765635|emb|Z78510.1|PCZ78510 P.caricinum 5.8S rRNA gene and ITS1 and ITS2 DNA +CTAACCAGGGTTCCGAGGTGACCTTCGGGAGGATTCCTTTTTAAGCCCCCGAAAAAACGA +TCGAATTAAACCGGAGGACCGGTTTAATTTGGTCTCCCCAGGGGCTTTCCCCCCTTGGTG +GCCGTGAATTTCCATCGAACCCCCCTGGGAGAATTCTTGGTGGCCAATGGACCCTTGGCC +CGGCGCAATTTCCCCCCCAATCAAATGAGATAGGACCGGCAGGGGGCGTCCCCCCCCATG +GAACCGGGGAGGGCCGGCATTCTTCCGTTCCCCCCTCGGATTTTTTGACAACTCTCGCAA +CGGATATCTCGCCTCTTTGCATCGGATGGAAGAACGCAGCGAAATGTGATAAGTGGTGTG +AATTGCAGAATCCCGTGAACCATCGAGTCTTTGAACGCAAGTTGCGCCCGAGGCCATCAG +GCTAAGGGCACGCCTGCCTGGGCGTTGCGTGCTGCATCTCTCCCATTGCTAAGGTTGAAC +GGGCATACTGTTCGGCCGGCGCGGATGAGAGATTGGCCCCTTGTTCTTCGGTGCGATGGG +TCCAAGACCTGGGCTTTTGACGGTCCAAAATCCGGCAAGAGGTGGACGGACGGTGGCTGC +GACAAAGCTGTCGTGCGAATGCCCTGCGTTGTCGTTTTTGATGGGCCGGAATAAATCCCT +TTTGAACCCCATTGGAGGCACGTCAACCCATGGGCGGTTGACGGCCATTTGGATGCAACC +CCAGGTCAGGTGAGCCACCCGCTGAGTTTA +>gi|2765634|emb|Z78509.1|PPZ78509 P.pearcei 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGACCGCCAAATATA +CGATCGAGTTAATCCGGAGGACCGGTGTAGTTTGGTCTCCCAGGGGCTTTCGCCGCTGTG +GTGACCGTGATTTGCCATCGAGCCTCCTTGGGAGATTTCTTGATGGCAATTGAACCCTTG +GCCCGGCGCAGTTTCGCGCCAAGTCATATGAGATAGAACCGGCGGAGGGCGTCGTCCTCC +ATGGAGCGGGGAGGGCCGGCATGCTCCGTGCCCCCCCATGAATTTTTCTGACAACTCTCG +GCAACGGACGTAACAAGGTTTAAATGTGATAAGCAGGTGTGAATTGCAGAATCCCGTGAA +CCATCGAGTCTTTGAACGCAAGTTGCGCCCGAGGCCATCAGGTTAAGGGCACGCCTGCCT +GGGCGTTGCGTGCTGCATCTCTCCCATTGCTAAGGTTGAACGGGCATACTGTTCGGCCGG +CGCGGATGAGAGTTTGGCCCCTTGTTCTTCGGTGCGATGGGTCCAAGACCTGGGCTTTTG +ACGGTCCAAAATCCGGCAAGAGGTGGACGGACGGTGGCTGCGACAGAGCTGTCGTGCGAA +TGCCCTACGTTGTCGTTTTTGATGGGCCAGAATAAATCCCTTTTGAACCCCATTGGAGGC +ACGTCAACCCAATGGGGGGTGACGGGCATTTGGTTAACCCCGGCAAGTTAAGGCACCCGT +TAATTTTAGGA +>gi|2765633|emb|Z78508.1|PLZ78508 P.longifolium 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGACCGCCAAATATA +CGATCGAGTTAATCCGGAGGACCGGTGTAGTTTGGTCTCCCAGGGGCTTTCGCCGCTGTG +GTGACCGTGATTTGCCATCGAGCCTCCTTGGGAGATTTCTTGATGGCAATTGAACCCTTG +GCCCGGCGCAGTTTCGCGCCAAGTCATATGAGATAGAACCGGCAGGGGGCGTCGTCCTCC +ATGGAGCCGGGGAGGGCCGGCATGCTGCCGTGCCCCCAATGAATTTTTTGACAACTCTCG +GCAACGGATATCTCGGCTCTTGCATCGATGAAGAACGCAGCGAAATGTGATAAGTGGTGT +GAATTGCAGAATCCCGTGAACCATCGAGTCTTTGAACGCAAGTTGCGCCCGAGGCCATCA +GGCTAAGGGCACGCCTGCCTGGGCGTTGCGTGCTGCATCTCTCCCATTGCTAAGGTTGAA +CGGGCATACTGTTCGGCCGGCGCGGATGAGAGTTTGGCCCCTTGTTCTTCGGTGCGATGG +GTCCAAGACCTGGGCTTTTGACGGTCCAAAATCCGGCAAGAGGTGGACGGACGGTGGCTG +CGACAGAGCTGTCGTGCGAATGCCCTACGTTGTCGTATTTGATGGGCCGGAATAAATCCC +TTTGAACCCCATTGGAGGCACGTCAACCCCATGGGCGGTGACGGCCACTTGGATGCAACC +CAGTCAGTGAGCCACCGCTGA +>gi|2765632|emb|Z78507.1|PLZ78507 P.lindenii 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGACCCCCAAAAAAA +CGATCGAGTTAATCCGGAGGACCGGTGTAGTTTGGTCTCCCAGGGGCTTTGGCTACTGTG +GTGACCGTGAATTTCCGTCGAGCCTCCTTGGGAGATTTCTTGATGGCAATTGAACCCTTG +GCCCGGCGCAGTTTCGCCCCAAGTCAAATGAGATGGAACCGGCGGAGGGCATCGTCCTCC +ATGGAACCGGGGAGGGCCGGCGTGCTTCCGTCCCCCAATGAATTTTTTTGACAACTCTCG +CAACGGATATCTCGCTCTTGCATCGATGAAGAACACAGCGAAATGTGATAAGTGGTGTGA +ATTGCAGAATCCCGTGAACCATCGAGTCTTTGAACGCAAGTTGCGCCCGAGGCCATCAGG +CTAAGGGCACGCCTGCCTGGGCGTTGCGTGCTGCATCTCTCTCCCATTGCTAAGGCTGAA +CAGGCATACTGTTCGGCCGGCGCGGATGAGTGTTTGGCCCCTTGTTCTTCGGTGCGATGG +GTCCAAGACCTGGGCTTTTGACGGCCGGAAATCCGGCAAGAGGTGGACGGACGGTGGCTG +CGACGAAGCTGTCGTGCGAATGCCCTGCGTTGTCGTATTTGATGGGCCGGAATAAATCCC +TTTGAACCCCATTGGAGGCACGTCAACCCGTGGCGGTCGACGGCCATTTGGATGCAACCC +AGTCAGTGAGCCACCGCTGA +>gi|2765631|emb|Z78506.1|PLZ78506 P.lindleyanum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGACCGCAAAATATA +CGATCGAGTTAATCCGGAGGACTGGTGTAGTTTGGTCTCCCAGGGGCGTTGGCTACTGCG +GTGACCATGATTTTCCATCGAGCCTCCTCGGGAGATTTCTTGATGGCAATTGAACCCTTG +GCCCGGCGCAGTTTCGCGCCAAGTCGTATGAGATAGAACCGGCAGAGGGCTTCGTCCTCC +ATGGAACCGGGGAGGACCGGCATGCCGCCGTACCCCCTTTGAATCGGGCTGACAACTCTC +GTTCAAGGAGCCCTCAGCTCATAATGTGATAAGTGGTGTGAATTGCAGAATCCCGTGAAC +CATCGAGTCTTTGAACGCAAGTTGCGCCCGAGGCCATCAGGCTAAGGGCACGCCTGCCTG +GGCGTTGCGTGCTGCATCTCTCCCGTTGCTAAGGTCGAACAGGCATATACTGTTCGGCCG +GCGCGGATGAGAGTTTGGCCCCTTGTTCTTCGGTGCGATGGGTCCAAGACCTGGGCTTTT +GACGGTAAAAAATCCGGCAAGAGGTGGACGGACGGTGGCTGCGACAAAGCTGTCGTGCGA +ATGCCCTACGTTGTCGTATTTGATGGGCCAGAATAAATCCCTTTTGAACCCCATTGGAGG +CACGTCAACCCATGGGCGGTTTGACGGCCATTGGATGCCAACCCAGTCAGGTGAGGCCAC +CCGCTGA +>gi|2765630|emb|Z78505.1|PSZ78505 P.sargentianum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGACCGCCAAATATA +CGATCGAGTTAATCCGGAGGACTGGTGTAGTTTGGTCTCCCAGGGGCGGTGGCTACTGCG +GTGACCATGATATTCCATCGAGCCTCCTCGGGAGATTTCTTGATGGCAATTGAACCCGTG +GCCCGGCGCAGTTTCGCGCCAAGTCGTATGAGATAGAACCGGCAGAGGTCTTCGTCCTCC +ATGGAACCGGGGAGGCCCGGCATACCACCATACCCCCAATGAATCTTTGTGACAACTCTC +GTCAATGTGATAAGTGGTGTGAATTGCAGAATCCCGTGAACCATCGAGTCTTTGAACGCA +AGTTGCGCCCGAGGCCATCAGGCTAAGGGCACGCCTGCCTGGGCGTTGCGTGCTGCATCT +CTCCCGTTGCTAAGGTCGAACAGGCATACTGTTCGGTCGGCGCGGATGAGAGTTTGGCCC +CTTGTTCTTCGGTGCGATGGGTCCAAGACCTGGGCTTTTGACGGTAAAAAATCCGGCAAG +AGGTGGACGGACGGTGGCTGCGACAAAGCTGTCGTGCGAATGCCCTGCGTTGTCGTATTT +GATGGGCCGGAATAAATCCCTTTTGAACCCCATTGGAGGCACGTCAACCCATGGGCGGTT +GACGGCCATTTGGATGCAACCCCAGGTCAGGTGAGCCACCCGCTGAGTTTT +>gi|2765629|emb|Z78504.1|PKZ78504 P.kaiteurum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTTCGGAAGGATCATTGTTGAGACCGCAAAATATA +CGATCGAGTTAATCCGGAGGACTGGTGTAGTTTGTCTCCCAGGGGCGTTGGCTACTGCGG +TGACCATGATTTTCCATCGAGCCTCCTCGGGAGATTTCTTGATGGCAATTGAACCCTTGG +CCCGGCGCAGTTTCGCGCCAAGTCGTATGAGATAGAACCGTCAGAGGGCATCGTCCCTCC +ATGGAGCCGGGGAGGGCCGGCATGCCCGCCGTGCCCCCAATGAATCTTTTTGACAACTCT +CGCAACGGATATCTCGCTCTTCATCGATGAAGAACGCAGCGAAATGTGATAAGTGGTGTG +AATTGCAGAATCCCGTGAACCATCGAGTCTTTGAACGCAAGTTGCGCCCGAGCCATCAGG +CTAAGGGCACGCCTGCCTGGGCGTTGCGTGCTGCATCTCTCCCGTTGCTAAGGTCGAACA +GACATACTGTTCGGCCGGCGCGGATGAGAGTTTGGCCCCTTGTTCTTCGGTGCGATGGGT +CCAAGACCTGGGCTTTTGACGGTACCAAATCCGACAAGAGGTGGACGGACGGTGGCTGCG +ACAAAACTGTCGTGCGAATGCCCTACGTTGTCGTATTTGATGGGCCAGAATAAATCCCTT +TTGAACCCCATTGGAGGCACGTCAACCCATGGGCGGTGACGGCCATTGGATGCAACCCCA +GTCAGTGAGCCACCGCTGAGTAA +>gi|2765628|emb|Z78503.1|PCZ78503 P.czerwiakowianum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACCAGGTTTCCGTAGGTGAACCTCCGGAAGGATCCTTGTTGAGACCGCCAAATATA +CGATCGAGTTAATCCGGAGGACCGGTGTAGTTTGGTCTCCCAGGGGCTTTCGCCGCTGTG +GTGTCCGTGATTTACCATCGAGCCTCCTTGGGAGATTTCTTGATGGCAATTGAACCCATG +GCCCGGCGCAGTTTCGCGCCAAGTCATATGAGATAGAACCGGCAGGGGGCGTCGTCCTCC +ATGGAACCGGGGAGGGCCGGCATGCTACCGTACCCCCAATGAATTATTTTGACAACTCTC +GGCAACGGAGTCTCAGCTCTTTGTGATAAGTGGTGTGAATTGCAGAATCCCGTGAACCAT +CGAGTCTTTGAACGCAAGTTGCGCCCGAGGCCATCAGGCTAAGGGCACGCCTGCCTGGGC +GTTGCGTGCTGCATCTCTCCCATTGCTAAGGTTGAACGGGCATACTGTTCGGCCGGCGCG +GACGAGAGTTTGGCCCCTTGTTCTTCGGTGCGATGGGTCCAAGACCTGGGCTTTTGACGG +TCCAAAATCCGGCAAGAGGTGGACGGACGGTGGCTGCGACAAAGCTGTCGTGCGAATGCC +CTACGTTGTCGTATTTGATGGGCCAGAATAAATCCCTTTTGAACCCCATTGGAGGCACGT +CAACCCATGGGCGGTTGACGGCCATTTGGATGCAACCCCAGGTCAGGTGAGCCACCCGCT +GAGATAA +>gi|2765627|emb|Z78502.1|PBZ78502 P.boissierianum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACCAGGTTTCCGTAGGTGAACCTCCGGAAGGATCATTGTTGAGACCGCCAAATATA +CGATCGAGTTAATCCGGAGGACCGGTGTAGTTTGGTCTCCCAGGGGCTTTCGCCCCTGTG +GTGACCGTGATTTGCCATCGAGCCTCCTTGGGAGATTTCTTGATGGCAATTGAACCCATG +ACCCGGCGCAGTTTCGCGCCAAGTCATATGAGATAGAACCGGCAGGGGTCGTCGTCCTCC +ATGGAGCCGGGGAGGGCCGGCATACTACCGTCCCCCCAATGAATTTTATATTGACAACTC +TCGGCCGGAATCTCGGCTCTTGCATCGATGGAAGGACGCAGCGAAAATGTGATAAGTGGT +GTGAATTGCAGAATCCCGTGAACCATCGAGTCTTTGAACGCAAGTTGCGCCCGAGGCCAT +CAGGCTAAGGGCACGCCTGCCTGGGCGTTGCGTGCTGCATCTCTCCCATTGCTAAGGTTG +AACGGGCGTACTGTTCGGCCGGCGCGGACGAGAGTTTGGCCCCTTGTTCTTCGGTGCGAT +GGGTCCAAGACCTGGGCTTTTGACGGTCCAAAATCCGGCAAGAGGTGGACGGACGGTGGC +TGCGACAAAGCTGTCGTGCGAATGCCCTACGTTGTCGTATTTGATGGGCCAGAATAAATC +CCTTTTGAACCCCATTGGAGGCACGTCAACCCATGGGCGGTTGACGGCCATTTGGATGCA +ACCCCAGGTCAGGTGAGGCCACCCCGTGAGTTTACGC +>gi|2765626|emb|Z78501.1|PCZ78501 P.caudatum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGACCGCAAAATATA +CGATCGAGTTAATCCGGAGGACCGGTGTAGTTTGGTCTCCCAGGGGCTTTGGTTACTGTG +GTGACCGTGACTTTGCCGTCGAGCCTCCTTGGGAGATTTCTTGATGGAAATTGAACCCTT +GGCCCGGCGCAGTTTCGCGCCAAGTCATATGAGATGGAACCGGCGGAGGGAATCGTCCTC +CATGGAGCCGGGGAGGGCCGGCGTGTTGCCGTGCCCCCAATGAATTTTTTTTTGGGCAAC +TCTCGGCCAAACGGGAAATCTCGGCTCCTTGCATCGGATGGAAGGACGCAGCGAAATTGT +GATAAGTGTTGTGAATTGCAGAATCCCGTGAACCATCGAGTCTTTTGAACGCAAGTTGCG +CCCGAGGCCATCAGGCTAAGGGCACGCCTGCCTGGGCGTTGCGTGCTGCATCTCTCTCCC +ATTGCTAAGGCTGAACAGGCATACTGTTCGGCCGGCGCGGATGAGTGTTTGGCCCCTTGT +TCTTCGGTGCGATGGGTCCAAGACCTGGGCTTTTGACGGCCGGAAATCCGGCAAGAGGTG +GACGGACGGTGGCTGCGACGAAGCTGTCGAGCGAATGCCCTACGCTGTCGTATTTGATGG +GCCGGAATAAATCCCTTTTGAACCCCATTGGAGGCACGTCAACCCGTGGGCGGTCGACGG +CCATTTGGATGCAACCCCAGGTCAGGTGAGGCCACCCGCTGAGTTTAAGA +>gi|2765625|emb|Z78500.1|PWZ78500 P.warszewiczianum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGCTCATTGTTGAGACCGCAAAATAAT +TGATCGAGTTAATCCGGAGGACCGGTGTAGTTTGGTCTCCCAGGGGCTTTGGTTACTGTG +GTGACCGTGACTTTGCCGTCGAGCCTCCTTGGGAGATTTCTTGATGGCAATTGAACCCTT +GGCCCGGCGCAGTTTCGCGCCAAGTCATATGAGATGGAACCGGCGGAGGGCATCGCCCTC +CATGGAGCCGGGGAGGGCCGGCGTCCTGCCGTGCCCCCAATGAATTTTTCTTTGGGAAAA +CTTCTCGGCCAACGGGAATCTCGGCTCTTTGCATCGGATGGAAGGACGCAGCGAATTGTG +ATAAGTGGTGTGAATTGCAGAATCCCGTGAACCATCGAGTCTTTGAACGCAAGTTGCGCC +CGAGGCCATCAGGCTAAGGGCACGCCTGCCTGGGCGTTGCGTGCTGCATCTCTCTCCCAT +TGCTAAGGCTGAACAGGCATACTGTTCGGCCGGCGCGGATGAGTGTTTGGCCCCTTGTTC +TTCGGTGCGATGGGTCCAAGACCTGGGCTTTTGACGGCCGGAAATCCGGCAAGAGGTGGA +CGGACGGTGGCTGCGACGAAGCTGTCGTGCGAATGCCCTACGCTGTCGTATTTGATGGGC +CGGAATAAATCCCTTTTGAACCCCATTGGAGGCACGTCAACCCGTGGGCGGTCGACGGCC +ATTTGGATGCAACCCCAGGTCAGGTGAGGCCACCCGCTGAGTTTAAG +>gi|2765624|emb|Z78499.1|PMZ78499 P.micranthum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAGGGATCATTGTTGAGATCGCATAATAAT +TGATCGAGATAATCCAGAGGATCGGTTTACTTTGGTCACCCTTGGGCGCCTGCTATTGCG +GTGACCTAGATTTTCCATGGAGGGAGCCTCCTTGGGAGCTTTCTTGCCGGCGATCTAACC +CTTGCCCGTCGCAGTTTTGCACCAAGTCATATGACACATAAATGGTGAAGGACATACCCC +CTTCGTTGAATTCGAGGAGGGGACGGCATGTGGCCTTGACCTCTCCCAATTATTTTTTTG +ACAACTCTCAGCCAACGGATATCTCGGCTCTTTGCATCGGATGGAGGACGCAGCGAAATG +CGATAAGTGTGTGAATTGCAAGATCCCGTGAACCATCGAGTCTTTGAACGCAAGTTGCGC +CCAAGCCATCAGGCCAAGGGCACGCCTGCCTGGGCATTGCGAGTCATATCTCTCCCTTAA +TGAGGCTGTCCATGCATACTGTTCAGCCGGTGCGGATGTGAGTTTGCCCCCTTGTTCTTT +GGTGCTGGGGGTCTAAGAGCTGCAGGGGCTTTTGATGGTCCTAAATTCGGCAAGAGGTGG +ACGAATCATGCTACAACAAAACTGTTGGGCGAATGCTCCAGGTTGTCGTATTAGATGGGC +CATCATAATCTAGAGACCCTTGTGAACCCCATTGGAGGCCCATCAACCCATGATCAGTTG +ATGGCCTTTTGGATGCGACCCCAGGTCAGGTGAGCAACC +>gi|2765623|emb|Z78498.1|PMZ78498 P.malipoense 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAAGGTCATTGTTGAGATCACATAATAAT +TGATCGAGTTACTCCAGAGGATCAGTTTACTCCGGTCACCCATGGGTGCTTGCTATTGCG +GTGACCTAGATTTGCCATGGAGCCTCCTTGGGAGTTTTCTTGCCGGCGATCTTACCCTTG +CCCGGGGCAGTTTTGCCCCAAGTCATATGACACAATAATGGCGAAGGAGGGGGCGGCATT +TTGCCCTTGACCCTACAATCACTCCCCCTCTCCAAATTATTTTTGGACAACTCTCAGCAA +CGGATATCTCGGCTCTTGCATCGATGAAGAACCCAGCGAAATGCGATAAGTGGTGTGAAT +TGCAGGATCCCGTGAACCATCGAGTCTTTGAACGCAAGTTGCGCCCAAGGCCATCAGGCC +AAGGGCACGCCTGCCTGGGCATTGCGAGTCATATCTCTCCCTTAATGAGGCTGTACATGC +ATACTGTTCAGCCGGTGCGGATGTGAGTTTGGCCCCTTGTTCTTCGGTGCTGGGGGTCTA +AGAGCTGCAGGGGCTTTTGATGGTCCTAAATTCGGCAAGAGGTGGACGAATTACAACAAA +ACTGTTGTGCGAATGCTCCAGGTTGTCGTATTAGATGGGCCAGCATAATCTAAAGACCCT +TGTGAACCCCACTGGAGGCACATCAACCCGTGATCAGTTGATGGCCATTTGTTGCGACCC +CAGTCAGTGAGCAACCCGCTGAGTTTAAGC +>gi|2765622|emb|Z78497.1|PDZ78497 P.delenatii 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGATCACATAATAAT +TGATCGAGTGAATCCAGAGGATCAGTTTACTTTGGTCGCCCATGGGCGCTTGCTATTGCG +GTGACCTAGATTTGCCATGGAGCCTCCTTGGGAGCTTTCTTGCCGGCGATCTAACCCTTG +CCCGGCGCAGTTTTGCGCCAAGTCACATGACACATAAATGGTGAAGGGCACGGCCCTTTG +TGAATTCAAGGAGGTGAAGGGCATGTGGCCTTGAGCCTACACTCCCTCCCCCTCTCCAAA +TTATTTTTTGTGAAACAACTCTCAGCAACGGAGATCTCAGCTCTTGCATCGATGAAGGAA +CGCAGCGAAATGCGATAAGTGGTGTGAATTGCAGAATCCCGTGAACCATCGAGTCTTTGA +ACGCAAGTTGCGCCCAAGGCCATCAGGCCAAGGGCACGCCTGCCTGGGCATTGCGAGTCA +TATCTCTCCCTTAACGAGGCTGTCCAGGCATACTGTTCAGCCGGTGCGGGTGTGAGTTTG +GCCCCTTGTTCTTTGGTGCTGGGGGTCTAAGAGCTGCAGGGGCTTTTGATGGTCCTAAAT +TCGGCAAGAGGTGGACGCAACGCGCTACAACAAAACTGTTGTGCGAATGCCCCGGGTTGT +CGTATTAGATGGGCCAGCATAATCTAAACACCCTTGTGAACCCCATTGGAGGCCCATCAA +CCCATGATCAGTTGATGGCCATTTGGTTGCGACCCCAGGTCAGGTGAGGCAACCCGCTGA +GTTTAAGC +>gi|2765621|emb|Z78496.1|PAZ78496 P.armeniacum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGATCGCATAATAAT +TGATCGAGTTAATCCAGAGGATCGGTTTACTTTGGTCACCCTTGGGCGCCTGCTATTGCG +GTGACCTAGATTTGCCATGGAGGGAGCCTCCTTGGGAGCTTTCTTGCCGGCGATCTAACC +CTTGCCCGGCGCAGTTTTGCGCCAAGTCATATGACACATAATTGGTGAAGGGCATATCCC +TTCGTGAATTCGAGGAGGGGCCGGCATGTGGCCTTGACCTCTCCAATTAATTTTTTGAAC +AACTCTCAGCAACGGATATCTCGGCTCTTGCATCGATGGAGGGACGCACCGAAATGCGAT +AAGTGGTGTGAATTGCAGAATCCCGTGAACCATCGAGTCTTTTGAACGCAAGTTGCGCCC +AAGGCCATCAGGCCAAGGGCACGCCTGCCTGGGCATTGCGAGTCATATCTCTCCCTTAAT +GAGGCTGTCCATGCATACTGTTCAGCCGGTGCGGATGTGAGTTTGGCCCCTTGTTCTTTG +GTGCTGGGGGTCTAAGAGCTGCAGGGGCTTTTGATGGTCCTAAATTCGGCAAGAGGTGGA +CGAATCATGCTACAACAAAACTGTTGGGCGAATGCTCCAGGTTGTCGTATTAGATGGGCC +ATCATAATCTAGAGACCCTTGTGAACCCCATTGGAGGCCCATCAACCCATGATCAGTTGA +TGGCCTTTTGGGTTGCGACCCCAGGTCAGGTGAGGCAACCAGCTGAGTTTAAGC +>gi|2765620|emb|Z78495.1|PEZ78495 P.emersonii 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTCCGGAAGGATCATTGTTGAGATCACATAATAAT +TGATCGAGATAATCCAGAGGATCGGTTTACTTTGGTCACCCATGGGCGCTTGCTATTGCG +GTGACCTAGAGTTGCCATGGAGAGCCTCCTTGGGAGCTTTCTTGCCGGCGATCTAACCCT +TGTCCGGCGCGGTTTTGCGCCAAGTCATATGACACATAATTGGTGAAGGGCATAGCCCTT +CGTGTATTCAAGGAGGGGGGGCGGCATGTGGCCTTGACACTGCACTCGCTCTCCCCCTCT +CCAAAGTATTTTTCTGAACAACTCTCAGCAACGGATATCTCAGCTCTTGCATCGGATGGA +GGAACGCAGCGAAATCCGATAAGTGGTGTGAATTGCAGAATCCCGTGAACCATCGAGTCT +TTTGAACGCAAGTTGCGCCCGAGGCCATGAGGCCAAGGGCACGCCTGCCTGGGCATTGCG +AGTCATCTCTCTCCCTCAATGAGGCTGTCCATGCATACTGTTCAGCCGGTGCGGATGTGA +GTTTGGCCCCTTGTTCTTTGGTGCTGGGGGTCTAAGAGCAGCAGGGGCTTTTGATGGTCC +TAAATTCGGCAAGAGGTGGACGAATCAGGCTACAACAACACTGTTGTTGTGCGAATGCTC +CAGGTTGTCGTATTAGATGGGCCGGCATAATCCAGAGACCCTTGTGAACCCCATTGGAGG +CCCATCAACCCATGATCAGTTGATGGCCATTCGGTTGCGACCCCAGGTCAGTGAGCAACC +CGCTGAGTG +>gi|2765619|emb|Z78494.1|PNZ78494 P.niveum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGGTCGCATAATAAT +TGATCGAGTTAATCTGGAGGATCAGTTTACTTTGGTCACCCATGGACATTTACTGTTGCA +GTGACCTAGATTTACCATCGGGCCTCCTTGGGAACTTTCCTGCTGGCGATCTATACCCTT +GCCCGGCGCAGTAATGCGCCAAATCAAATGACCCATAATTAATGAAGGGGGACGGCATAC +TGCCTTGACCAACTCCCCATTATTGAGGTAACACTCTCAACTTCGGATATCTCAGGTGTG +AATTGCAGAATCCCGTTAACATCGAGTCTTTGAACGCAAGTTGGGCCCGAGGCCAACAGG +CCAAGGGAACGCCTGTCTGGGCATTGCGAGTCATATCTCTCCCTTAATGAGGCTGTCCAT +ACGTACTGTTCAGCCGGTGCGGATGTGAGTTTGGCCCCTTGTTCTTCGGTACGGGGGGTC +TAAGAGCTGCATGGGCTTTTGATGGTCCTAAATACGGCAAGAGGTGGACGAACTATGCTA +CAACAAAACTGTTGTGCGAATGCCCCGGGTTGTTGTGTTTAATCAGAAGACCCTTTTGAA +CCCCATTGGAGGCCCATCGACCCATGATCAGTTGAATGGCCATTTGGTTGCGATCCCAGG +TCAGGTGAGGCAACCCGCTGAGTTTAAG +>gi|2765618|emb|Z78493.1|PGZ78493 P.godefroyae 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGATTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGATCGCATAATAAT +TGATCGAGTTAATCTGGAGGATCGGTTTACTTTGGTCACCCATGGGCATTTTCTGTTGCA +GTGACCTAGAATTTCCATCGGGCCTCCCTGGGAGCTTTCCTGCTGGCGATCTATACCCTT +GCCCGGCGCAGTTTTGCGCCAAGTCAAATTTTACATAAGTGGTGAAGGGGGGCGGCATTC +TTCCTTGACCAGCCCCCAAGTATTTAGGTAACAACTCTCAGCAACGGATATCTCGGCTCA +TGCATCGATGAAGGAACGCAGCGAGATTCGATAAATGGTGTGCCTTGCAGAATCCCGTGA +ACCATCGAATCTTTGAACGCAAGTTGCGCGCGAGGCCATCAGCCCAAGGGGACGCCTGCC +TGGACATTGCGACTCATATCTCTCCCTTAATGAGGCTGTCCAAACGTACTGGTCATCCGG +TGTGGATGTGAGTTTGGCCCCTTGTTCTTCGGTACGGGGGGTCTAAGAGCTGCATGGGCT +TTTGATGGTCCTAAATACGGCAAGAGGTGGACGAACTATGCTACAACAAAACTGTTGTGC +GAATGCCCCGGGTTGTTGTGTTTAATCAGAAGACCCTTTTGAACCCCATTGGAGGCCCAT +CGACCCATGATCAGTTGAATGGCCATTTGGTTGCGATCCCAGGTCAGGTGAGGCAACCC +>gi|2765617|emb|Z78492.1|PBZ78492 P.bellatulum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGATCGCATAATAAT +TGATCGAGTTAATCTGGAGGATCAGTTTACTTTGGTCACCCACGGGCATTTGCTGTTGCA +GTGACCTAGAATTTGCCATCGAGCCTCCTTGGGAGCTTTCTTGCTGGCGATCTATACCCT +TGCCCGGCGCAGTTTTGCGCCAAGTCATATGTCACATAATTGGTGAAGGGGGGGAGCGTA +CTGCCTTGACCCACTCCAAATTATTTTTTTAACAACTCTCAGCAACGGATATCTCGGCTC +TTGCATCGATGTAGAACCCAGCGAAATGCGATACTGGTGTGATTTGCAGAATCCCGTGGA +CCATCGAGTCTTTGAACGCAAGTTGCGCCCGAGGCCATCAGGCCAAGGGCACGCCTGCCT +GGGCATTGCGAGTCAAATCTCTCCCTTAATGAGGCTGTCCATACATACTGTTCAGCCGGT +GCGGATGTGAGTTTGGCCCCTTGTTCTTTGGGACGGGGGGTCTAAGAGCTGCACGGGCTT +TTGATGGTCCTAAATACGGCAAGAGGTGGACGAATTATGCTACAACAAAACTGTTGTGCG +AATGCCCCGGGTTGTTGTGTTACATGGGCCAGCTTAATCAGAAGACCCTTTTGGACCCCA +TTGGAGGCCCATCAACCCATGATCAGTTGATTGGCCATTTGGTTGCGATCCCAGTCAGGT +GAGGCACACCGCTGAGTTTAATA +>gi|2765616|emb|Z78491.1|PCZ78491 P.concolor 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGATCGCATAATAAT +TGATCGAGTTAATCTGGAGGATCAGTTTACTTTGGTCACCCACGGGCATTTGCTGTTGCA +GTGACCTAGATTTGCCATCGGGCCTCCTTAGGAGCTTTCTTGCTGGCGATCTATACCCTT +GCCCGGCGCAGTTTTGCGCCAAGTCATATGACACATAATTGGTGTTGGGGGGAGGCGTGC +TGCCTTGACCCGCTCCAAATTATATTTTTAACAACTCTCAGCAACGGATATCTCGGCTCT +TGCATCGATGAAGAACCAGCGAAATGCGATAAATGGTGTGAATTGCAGAATCCCGTGAAC +CATCGAGTCTTTGAACGCAAGTTGCGCCCGAGGCCATCAGGCCAAGGGCACGCCTGCCTG +GGCATTGCGAGTCATATCTCTCCCTTAATGAGGCTGTCCATACATACTGTTCAGCCGGTG +CGGATGTGAGTTTGGCCCCTTGTTCTTTGGTACGGGGGGTCTAAGAGCTGCATGGGCTTT +TGATGGTCCTAAATACGGCAAGAGGTGGACGAACTATGCTACAACAAAATGTTGTGCGAA +TGCCCCGGGTTGTTGTGTTACATGGACCAGCATAATCAGAAGACCCTTTGGACCCCATTA +GAGGCCCATCAACCCATGATCAGTTGAATGGCCATTTGTTGCGATCCCAGTCAGGTGAGC +AACCCGCTGAGATAAGC +>gi|2765615|emb|Z78490.1|PFZ78490 P.fairrieanum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGATCACATAATAAT +TGATCGAGTTAATCTGGAGGATCAGTTTACTTTGGTCACCCATGGGCATTTGCTGTTGCA +GTGACCGAGATTTGCCATCGAGCCTCCTTGGGAGCTTTCTTGCTGGCGATCTGAACCCTA +GTCCGGCGCAGTTTTGCGCCAAGTCATATGGCACATAATTGGTGAAGGGGGCGGCATGCT +GCCTCGACCCTCCCCAAATTATTTTTTAACAACTCTCAGCAACGGATATCTCGGCTCTTG +CATCGATGAAGAACGCAGCGAAATGCGATAAATGGTGTGAATTGCAGAATCCCGTGAACC +ATCGAGTCTTTGAACGCAAGTTGCGCCCGAGGCCATCAGGCCAAGGGCACGCCTGCCTGG +GCATTGCGAGTCATATCTCTCCCTTAATGAGGCTGTCCAAACATACTGTTCAGCCGGTGC +GGATGTGAGTTTGGCCCCTTGTTCTTTGGTACGGGGGGTCTAAACGCTGCATGGGCTTTT +GATGGTCCTAAATACGGCAAGAGGTGGACGACTGTTCTGCAACAAGTGTTGTGCGAATGC +CCCGCGTTGTCGTATTAGATGGGCCAGCATAATTTGAAGACCCTTTTGAACCCCATTGGA +GGCCCGTCAACCCATGATCAGTTGACGGCCATTTGGTTGCGACCCCAGTCAGGTGAGCAA +CCAGCTGA +>gi|2765614|emb|Z78489.1|PDZ78489 P.druryi 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGATCACATAATAAT +TGATCGAGTTAATCTGGAGGATCAGTTTACTTTGGTCACCCGAGGGCATTTGCTATTGCA +GTGACCGAGATTTGCCATCGAGCCTCCTTGGGAGCTTTCTTGCTGGCGATCTAAACCCGA +GCCCGGCGCAGTTTTGCGCCAAGTCATATGACACATAATTGGTGAAGGGGGCGGCATGCT +GCCTTGACCCTCCCCAGATTATTTTTTAACAACTCTCAGCAACGGATATCTCGGCTCTTG +CATCGATGAAGAACGCAGCGAAATGCGATAAATGGTGTGAATTGCAGAATCCCGTGAACC +ATCGAGTCTTTGAACGCAAGTTGCGCCCGAGGCCATCAGGCCAAGGGCACGCCTGCCTGG +GCATTGCGAGTCATATCTCTCCCTTAATGAGGCTGTCCATACATACTGTTCAGCCGGTGG +GGATGTGGGTTTGGCCCCTTGTTCATTGGTACGGGGGGTCTAAGAGCTGCATGGGATTTT +GATGGTCCTAAATACGGCAAGAGGTGGACGAACTATGCTACAACAAAACTGTTGTGCGAA +TGCCCCGAGTTGTCGTATTAGATGGGCCCAGCATATCTGAAGACCCTTTTGAACCCCATG +GAGGCCCATCAACCCATGATCAGTTGATGGCCATTTGGTTGCGACCCCAGGTCAGGTGAG +GCAACCCGCTGAGTTTAGGC +>gi|2765613|emb|Z78488.1|PTZ78488 P.tigrinum 5.8S rRNA gene and ITS1 and ITS2 DNA +CTGTAGGTGAACCTGCGGAAGGATCATTGTTGAGATCACGCAATAATTGATCGAGTTAAT +CTGGAGGATCAGTTTACTTTGGTCACCCATGGGCATTTGTTATTGCAGTGACCGAGATTT +GCCATCGAGCCTCCTTGGGAGCTTTCTTGCTGGCGATCTTAACCCTAGCCCGGCGCAGTT +TTGCGCCAAGTCATACGACACATAATTGGTGAAGGGGGCGGCATGGTGCCTTGACCCTCC +CCTAATTATTTTCTAACAACTCTCATCAACGGGATGGAGAACGCAGCGAAATGCGATAAA +TGGTGTGAATTGCAGAATCCCGTGAACCATCGAGTCTTTGAACCCAAGTTGCGCCCGAGG +CCATCAGGCCAAGGGCACGCCTGCCTGGGCATTGCGAGTCAAATCTCTCCCTTAATGAGG +CTGTCCATACATACTGTTCAACCGGTGCGGATGTGAGTTTGCCCCCTTGTTCATTGGTAC +GGGGGGTCTAAGAGCTGCATGGGCTTTTGATGGTCCTAAAAACGGCAAGAGGTGGACGAA +CAACGCCACAACCAAACTGTTGTGCGGATCCCCCGGGTTGTCGTATTAGATGGGCCATCA +TAATCTGAAGACCCTTTTGAACCCCATCGGAGGCCCATCAACCCATGATCAGTTGATGGA +CATTTGTTGCGACCCCAGTCAGGTGAGCAACCGGCT +>gi|2765612|emb|Z78487.1|PHZ78487 P.hirsutissimum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGATCACATAATAAT +TGATCGAGTTACTCTGGAGGATCAGTTTACTTTGGTCACCCATGGGCATTTGCTATTGCA +GTGACCGGGATTTGCCATCGAGCCTCCTTGGGAGCTTTCTTGCTGGCGATCTAAACCCTA +GCCCGGCGCAGTTTTGCGCCAAGTCATATGACACATAATTGGTGAAGGGGGCGGCATGCT +GCCTTTACCCTCCCCAAATTATTTTTTAACAACTCTCAGCAACGGATATCTCGGCTCTTG +CATCGATGAAGAACGCAGCGAAATGCGATAAATGGTGTGAATTGCAGAATCCCGTGAACC +ATCGAGTCTTTGAACGCAAGTTGCGCCCGAGGCCATCAGGCCAAGGGCACGCCTGCCTGG +GCATTGCGAGTCATATCTCTCCCTTAATGAGGCTGTCCATACATATTGTTCAGCCGGTGC +GGATGTGAGTTCGGCCCCTTGTTCTTCGGTACGGGGGGTCTAAGAGCAGCATGGGCTATC +GATGGTCCTAAATGCGGCAAGAGGTGGACGAACTATGCTACAACAAAACTGTTGTGCGAA +TGCCCCGGGTTGTCGTATTAGATGGGCCAGCGTAATCTAAAGACCCTTTTGAACCCCATT +AGAGGCCCATCAACCCATGATCAGTTGGGGCCACTTGTTGCGACCCCAGTCAGGTGAGCA +ACCGCTGAGTAA +>gi|2765611|emb|Z78486.1|PBZ78486 P.barbigerum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTCACGAGGTTTCCGTAGGTGAATCTGCGGGAGGATCATTGTTGAGATCACATAATAAT +TGATCGAGATTATCTGGAGGATCAGTTTACTTTGGTCACCCATGGACATTTGCTATTGCA +GTGCCCGAGATTTGCCATCGAGCCTCCTTGGGAGCTTTCTTGCTGGCGATCTAAACCCTA +GCCCGGCGCAGTTTTGCGCCAAGTCATATGACACATAATTGGTGAAGGGTGCGGCATGGT +GCCTGACCCTCCCCAAATTATTTCTTAACAACTCTCAGCAACGGATATCTCGCTCTTGCA +TCGATGAAGAACGCAGCGAAATGCGATAAATGGTGTGAATTGCAGAATCCCGTGAACCAT +CGAGTCTTTGAACGCAAGTTGCGCCCGAGGCCATCAGGCCAAGGGCACGCCTGCCTGGGC +ATTGCGAGTCATATCTCTCCCTTAATGAGGCTGTCCATACATACTGTTCAGCCGGTGCGG +ATGTGAGTTTGGCCCCTTGTTCATTGGTACGGGGGGTCTAAGAGCTGCGTGGGCTTTTGA +TGGTCCTAAATACGGCAAGAGGTGGACGAACTATGCTACAACAAAACTGTTGTGCGAATG +CCCCGGGTTGTCGTATTAGATGGGCCAGCATAATCTAAAGACCCTTTTGAACCCCATTGG +AGGCCCATCAACCCATGATCAGTTGATGGCCATTTGGTAGCGACCCCAGGTCAGGTGAGG +CAACCCGCTGA +>gi|2765610|emb|Z78485.1|PHZ78485 P.henryanum 5.8S rRNA gene and ITS1 and ITS2 DNA +CTGAACCTGGTGTCCGAAGGTGAATCTGCGGATGGATCATTGTTGAGATATCATAATAAT +TGATCGAGTTAATCTGGAGGATCAGTTTACTTTGGTCACCATGGGCATTTGCTATTGCAG +TGACCGAGATTTGCCATCGAGCCTCCTTGGGAGCTTTCTTGCTGGCGATCTAAACCCTAG +CCCGGGGCAGTTTTGCGCCAAGTCATATGACACATAATTGGTGAAGGGTGCGGCATGGTG +CCTTGACCCTCCCCAAATTATTTCTTAACAACTCTCAGCAACGGATATCTCGGCTCTTGC +ATCGATGAAGAACGCAGCGAAATGCGATAAATGGTGTGAATTGCAGAATCCCCGTGAACA +TCGAGTCTTTGAACGCAAGTTGCGCCCGAGGCCATCAGGCCAAGGGCACGCCTGCCTGGG +CATTGCGAGTCATATCTCTCCCTTAATGAGGCTGTCCATACATACTGTGCAGCCGGTGCG +GATGTGAGTTTGGGCCCTTGTTCATTGGTACGGGGGGTCTAAGAGCTGCGTGGGCTTTTG +ATGGTCCTAAATACGCCAAGAGGTGGACGAACTATGCTACAACAAAACTGTTGTGCGAAT +GCCCCGGGTTGTCGTATTAGACGGGCCAGCACAATCTAAAGACCCCTTTGAACCCCATTG +GAGGCCCATCAACCCATGATCAGTTGATGGCCATGTGTTGCGACCCCAGTCAGCTGAGCA +ACCCCTGATTTAGTA +>gi|2765609|emb|Z78484.1|PCZ78484 P.charlesworthii 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGGGGAAGGATCATTGTTGAGATCACATAATAAT +TGATCGAGTTAATCTGGAGGATCAGTTTACTTTGGTCACCCATGGGCATTTGGCTATTGC +AGTGACCGAGAGTTTACCATCGAGCCTCCATGGGAGCTTTCTTGCTGGCGATCTAAACCC +TAGCCCGGCGCAGTTTTGGCCCAAGTCATATGACACATAATTGTGAAGGGGCGGCATGTT +TCCTACCCTCCCAACTCTCAGCAACGGATATCTCGCTCTTGCATCGATGAAGAACGCAGC +GAAATGCGATAAATGGTGTGAATTGCAGAATCCCGTGAACCATCGAGTCTTGGAACGCAA +GTTGCGCCCGAGGCCATCAGGCCAAGGGCACGCCTGCCTGGGCATTGCGAGTCATATCTC +TCCCTTAATGAGGCTGTCCATACATACTGTTCAGCCGGTGCGGATGTGAGTTTGGCCCCT +TGTTCATTGGTACGGGGGGTCTAAGAGCTGCGTGGGCTTTTGATGGTCCTAAATACGGCA +AGAGGTGGACGAACTATGCTACAACAAAACTGTTGTGCGAATGCCCCGGGTTGTCGTATT +AGATGGGCCAGCATAATCTAAAGACCCTTTGACACCCCATTGGAGGCCCATCAACCCATG +ATCAGTTGATGGTCCATTGGGTTGCGACCCCAAGTCAGGTGAAGCAACTCCCTGAGTTTT +>gi|2765608|emb|Z78483.1|PVZ78483 P.villosum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGATCACATAATAAT +TGATCGAGTTAATCTGGAGGATCAGTTTACTTTGGTCACCCATGGGCATTTGCTATTGCA +GTGACCGAGATTTGCCATCGAGCCTCCTTGGGAGCTTTCTTGCTGGCGATCTAAACCCTA +GCCCGGCGCAGTTTTGCGCCAAGTCATATGACACATAATTGGTGAAGGGGGCGGCATGCT +GCCTTGACCCTCCCCCAAATTATTTTTTAACAACTCTCAGCAACGGAAATCTGGCCTCTT +GCATGGATGAAGACCAAACCGAAATCATAAATGGTGTGAATTGCAGAATCCCGTGAACAA +TCGAGTCTTTGAACGCAAGTTGCGCCCGAGGCCATCAGGCCAAGGGCACGCCTGCCTGGG +CATTGCGAGTCATATCTCTCCCTTAATGAGGCTGTCCACACATATCTGTTCAGCCGGTGC +GGATGTGAGTTTGGCCCCTTGTTCATTGGTACGGGGGGTCTAAGAGCTGCATGGGCTTTT +GTTGGTCCTAAATACGGCAAGAGGTGGACGAACTATGCTACAACAAAACTGTTGTGCGAA +TGCCCCGGGTTGTCGTATTAGATGGGCCAGCATAATCTAAAGACCCTTTTGAACCCCATT +GGAGGCCCATCAACCCATGATCAGTTGATGGCCATTTGGTTGCGACCCCAGGTCAAGTGA +AGCAACCCCTGAGTTTAGCA +>gi|2765607|emb|Z78482.1|PEZ78482 P.exul 5.8S rRNA gene and ITS1 and ITS2 DNA +TCTACTGCAGTGACCGAGATTTGCCATCGAGCCTCCTGGGAGCTTTCTTGCTGGCGATCT +AAACCGTAGCCCGGCGCAGTTTTGCGCCAAGTCATATGACACATAATTGGTGAAGGGGGC +GGCATGCTGCCTTGACCCTCCCCAAATTATTTTTTAACAACTCTCNGCAACGGATATCTC +GCCTCTTCATCGATGAAGAACGCAGCGAAATGCGATAAATGGTGTGAATTGCAGAATCCC +GTGAANCCATCGAGTCTTTGAACGCAAGTTGCGCCCGAGGCCATCAGGCCAAGGGCACGC +CTGCCTGGGCATTGCGAGTCATATCTCTCCCTTAATGAGGCTGTCCATACATACTGTTCA +GCCGGTGCGGATGTGCGTTTGGCCCCTTGTTCATTGGTACGGGGGGTCTAAGAGCTGCGT +GGGCTTTTGATGGTCCTAAATACGGCAAGAGGTGGACGAACTATGCTACAACAAAACTGT +TGTGCGAATGCCCCGGGTTGTCGTATTAGATGGGCCAGCATAATCTAAAGACCCTTTTGA +ACCCCATTGGAGGCCCATCAACCCATGATCAGTTGATGGCCATTTGGTTGCGACCCCAGG +TCAGGTGAGGCAACCCGCTGAGTTTAGCA +>gi|2765606|emb|Z78481.1|PIZ78481 P.insigne 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGATCACATAATAAT +TGATCGAGTTAATCTGGAGGATCAGTTTACTTTGGTCACCCATGGGCATTTGCTATTGCA +GTGACCGAGATTTGCCATCGAGCCTCCTTGGGAGCTTTCTTGCTGGCGATCTAAACCCTA +GCCCGGCGCAGTTTTGCGCCAAGTCATATGACACATAATTGGCGAAGGGGGCGGCATGGT +GCCTTGACCCTCCCCAAATCATTTTTTTAACAACTCTCAGCAACGGAAGGGCACGCCTGC +CTGGGCATTGCGAGTCATATCTCTCCCTTAATGAGGCTGTCCACACATACTGTTCAGCCG +GTGCGGATGTGAGTTTGGCCCCTTGTTCATTGGTACGGGGGGTCTAAGAGCTGCGTGGGC +TTTTGTTGGTCCTAAATACGGCAAGAGGTGGACGAACTATGCTACAACAAAACTGTTGTG +CGAATGCCCCGGGTTGTCGTATTAGATGGGCCAGCATAATCTAAAGACCCTTTTGAACCC +CATTGGAGGCCCATCAACCCATGATCAGTTGA +>gi|2765605|emb|Z78480.1|PGZ78480 P.gratrixianum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGATCACATAATAAT +TGATCGAGTTAATCTGGAGGATCAGTTTACTTTGGTCACCCATGGGCATTTGCTATTGCA +GTGACCGAGATTTGCCATCGAGCCTCCTTGGGAGCTTTCTTGCTGGCGATCTAAACCCTA +GCCCGGCGCAGTTTTGCGCCAAGTCATATGACACATAATTGGCGAAGGGGGCGGCATGCT +GCCTTGACCCTCCCCAAATTATTTTTTAACAACTCTCAGCAACGGATAGGCCATCAGGCT +AAGGGCACGCCTGCCTGGGCATTGCGAGTCATATCTCTCCCTTCAATGAGGCTGTCCACA +CATACTGTTCAGCCGGTGCGGATGTGAGTTTGGCCCCTTGTTCATTGGTACGGGGGGTCT +AAGAGCTGCGTGGGCTTTTGTTGGTACCTAAATACGGCAAGAGGTGGACGAACTATGCTA +CAACAAAAATGTTGTGCGAATGCCCCGGGTTGTCGTATAGATGGGCCAGCATAATCTAAA +GACCCTTTTGAACCCCATTGGAGGCCCATCAACCCATGATCAGTTGA +>gi|2765604|emb|Z78479.1|PPZ78479 P.primulinum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGATCACATAATAAT +TGATCGAGTTAATCAGGAGGATCAGGTTACTTTGGTCACCCATGGGCATTTGCTGTTTCA +GTGACCTAGATTTGCCATCGAGCCGAACTAAACCCTTGCCCGGCGCAGATTTGCGCCAAT +TTATATGAGACATTACTGGAAGGGGAGGGATGCTGCCTTGCCTTGCCCCCCAAATTATTT +TTTAACAACTCTCAGCAACGGATATCTCGCCTCTTGCATCGATGAAGAACGCAGCGAAAT +GCGATAAATGGTGTGAATACAGAGATCCCGTGAACCATCGAGTCTTGAACGCAAGTTGCG +CCCGAGGCCATCAGGCCAAGGGCACGCCTGCCTGGGCATTGCGAGACATATCTCTCCCTT +AATGAGGCTGTCGTTCAGCCGGTGCGGATGTGAGTTTGGCCCCTTGTTCTTTGGTACGGG +GGGTCTAAGAGCTGCATGGGCTTTTGATGGTCCTAAATACGGCAAGAGGTGGACGAACTA +TGCGACAACAGAACTGTTGTGCGAATGCCCCGGGTTGTCGTATTAGATGGGCCAGCATAA +TCTAAAGACCCTTTTGAACCCCATTGGAGGCCCATCAACCCAAGATCAGTTGACGGCCAT +TTGGATGCGACCCCAGGTCAGGTGAGGCAACCCTCTGAGT +>gi|2765603|emb|Z78478.1|PVZ78478 P.victoria 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTCCGGAAGGATCAGTGTTGAGATCACATAATAAT +TGATCGAGTTAATCTGGGGGATCAGTTTACTTTGGTCACCCATGGGCATTTGCTGTTGCA +GTGGCCTAGAGTTTGCCATCGAGCCGATCTAAACCCTTGCCCGGCGCAGTTTTGCGCCAA +GTCATATGACACATAACTGGAAGGGGCGGCATGCTGCCATGGCTCCCCCAAATATTGATA +ATGGCGTGATAGCAGATCCCTGAACATCGAGTTTTGAACGCATGTTGCGTCCGAGGCCAT +CAGGTCAAGGGGACGCCTGCCTGGAAATTGTGAGACATATCTCTCCCTTAATGAGGCTGC +CATACATACTGTTCAGCCGGTGCGGATGTGAGTTTGGCCCCTTGTCCTTTGGTACGGGGG +TCTAAGAGCTGTATGGGTTGGATGGTCCTAAATACGGCAAGAGGTGGACGAGCTATGTGA +CAACAGAACTGTTGTGCGAATGCCCCGGTTGTCGTTTAGATGGGTCAGCATAATCTAAAG +ACCCTTTTGACCCCCATTGGAGGCCCATCAACCCATTATCAGTTGAGGACATTTGGTTGC +GACCCAGGTCAGATGAGGCACCCGCTGAGTTTAGGC +>gi|2765602|emb|Z78477.1|PVZ78477 P.victoria 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGATCACATGATAAT +TGATCGAGTTAATCTGGAGGATCAGTTTGCTTTGGTCACCCATGGGCATTTGCTGTTGCA +GTGACCTAGATTTGCCATCGAGCCGATCTAAACCCTTGCCCGGCGCAGTTTTGCGCCAAG +TCATATGACACATAATTGGAAGGGGCGGCATGCTGCCTTGCCCTCCCCAAATATTTGTTA +ACCAACTCTCAGCAACGAGTATCTCGGCTCTTGCATCGGATGGAAGGACGCAGCGAAATG +CGATAAATGGTGTGAATTGCAAGAATCCCTGAACCATCGAGTCTTTGGAACGCAAGTTGC +GGCCGAGGCCATCAGGCCAAGGGCACGCCTGCCTGGGCATTGCGAGACATATCTCTCCCT +TAATGAGGCTGTCCACACATACTGTTCAGCCGGTGCGGATGTGAGTTTGGCCCCTTGTTC +TTTGGTACGGGGGGTCTAAGAGCTGCATGGGCTTTTGATGGTCCTAAATACGGCAAGAGG +TGGACGAACTATGCGACAACAGAACTGTTGTGCGAATGCCCCGGGTTGTCGTATTAGATG +GGCCAGCATAATCTAAAGACCCTTTTGAACCCCATTGGAGGCCCATCAACCCATGATCAG +TTGACGGCCATTTGGTTGCGACCCCAGGTCAGGTGAGGCAACCGCTGAGTTTATGC +>gi|2765601|emb|Z78476.1|PGZ78476 P.glaucophyllum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGATCACATGATAAT +TGATCGAGTTAATCTGGAGGATCAGTTTACTTTGGTCACCCATGGGCATTTGCTGTTGTA +GTGACCTAGATTTGCCATCGAGCCGATCTAAACCCTTGCCCGGCGCAGTTTTGCGCCAAG +TCATATGACACATAATTGGAAGGGCGGCATGCTGCCTTGGCCCTCCCCAAATTATTTTTT +TAACAACTCTCAGCAACGGATATCTCGGCTCTTAGGCCATCCGGCCAAGGGCACGCCTGC +CTGGGCATTGCGAGACATATCTCTCCCTTAATGAGGCTGTCCATACATACAGTTCAGCCG +GTGCGGATGTGAGTTTGGCCCCTTGTTCTTTGGTACGGGGGGTCTAAGAGCTGCATGGGC +TTTTGATCCACCTAAATACGGCAAGAGGTGGACGAACTATGCGACAACAGAACTGTTGCG +CGAATGCCCCGGGTTGTCGTATTAGATGGGCCAGCATAATCTAAAGACCCTTTTGAATCC +CATTGGAGGCCCATCAACCCATGATCAGTTGACGGCCATTTGGTTGCGACCC +>gi|2765600|emb|Z78475.1|PSZ78475 P.supardii 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGATCACATAATAAT +TGATCGAGTTAATCTGGAGGATCAGTTTACTTTGGTCACCCATGGGCATCTGCTCTTGCA +GTGACCTGGATTTGCCATCGAGCCTCCTTGGGAGCTTTCTTGCTGGCGATCTAAACCCGT +CCCGGCGCAGTTTTGCGCCAAGTCATATGACACATAATTGGAAGGGGGTGGCATGCTGCC +TTGACCCTCCCCAAATTATTTTTTTGACAACTCTCAGCAACGGATATCTCGGCTCTTNNN +NNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNN +NNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNATCAGGCCAAGGGCACGCCTGCCTGGG +CATTGCGAGTCATATCTCTCCCTTAATGAGGCTGTCCATACATACTGTTCAGCCAATGCG +GATGTGAGTTTGGCCCCTTGTTCTTTGGTACGGGGGGTCTAAGAGCTGCATGGGCTTTTG +ATGGTCCAAAATACGGCAAGAGGTGGACGAACTATGCTACAACAAAATTGTTGTGCGAAT +GCCCCGGGTTGTCGTATTAGATGGGCCAGCATAATCTAAAGACCCTTTTGAACCCCATTG +GAGGCCCATCAACCCATGATCAGTTGACGGCCATTTGGTTGCGACCCAGGTCAGGT +>gi|2765599|emb|Z78474.1|PKZ78474 P.kolopakingii 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGATCACGTAATAAT +TGATCGAGTTAATCTGGAGGATCAGTTTACTTTGGTCACCCATGGGCATCTGCTCTTTCA +GTGACCTGGATTTGCCATCGAGCCTCCTTGGGAGCTTTCTTGCTGGCGATCTAAACCCTT +GCCCGGCGCAGTTTTGCGCCCAATCATATGACACATAATTGGAAGGGCGGCATCCTGCCT +TGACCCTCCCCAAATTATATTTTTGACAACTCTCAGCAACGGATATCTCGCCTCTTGCAT +CGATGAAGACACAGCGAAATGCGATAAATGGTGTGAATTGCAGAATCCCGTGAACCATCG +AGTCTTTGAACGCAAGTTGCGCCCGAGGCCATCAGGCCAAGGGCACGCCTGCCTGGGCAT +TGCGAGTCATATCTCTCCCTTAATGAGGCTGTCCATACATACTGTTCAGCCGGTGCGGAT +GTGAGTTTGGCCCCTTGTTCTTTGGTACGGGGGGTCTAAGAGCTGCATGGGCTTTTGATG +GTCCAAAATACGGCAAGAGGTGGACGAACTATGCTACAACAAAATTGTTGTGCGAATGCC +CCGGGTTGTCGTATTAGATGGGCCAGCATAATCTACAGACCCTTCTGAACCCCATTGGAG +GCCCATCAACCCATGATCAGTTGACGGCCATTTGGTTGCGACCCCAGGTCAGGTGAAGCA +ACCCGTTGAGCTT +>gi|2765598|emb|Z78473.1|PSZ78473 P.sanderianum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGATCACATAATAAT +TGATCGGGTTAATCTGGAGGATCAGTTTACTTTGGTCACCCATGGGCATCTGCTCTTGTA +GTGACCTGGATTTGCCATCGAGCCTCCATGGGAGCTTTCTTGGTGGCGATCTAAACCCTT +GCCCGGCGCAGTTTTGCGCCAAGTCATATGACACATAATTGGAAGGGGGCGGCATGCTGC +CTTGACCCTCCCCAAATTATTTTGTTAACAACTCTCAGCAACGGATATCTCGGCTCTTCC +CGAGGCCATCAGGCCAAGGGCACGCCTGCCTGGGCATTGCGAGTCATATCTCTCCCTTCA +ATGAGGCTGTCCATACATACTGTTCAGTCGGTGCGGATGTGAGTTTGGCCCCTTGTTCTT +GCCTACGGGGGGTCTAAGAGCTGCATGGGCTTTTGATGGTACCTAAATACGGCAAGAGGT +GGACGAACTATGCTACAACAAAATTGTTGTGCGAATGCCCCGGGTTGTCGTATTAGATGG +GCCAGCATAATCTAAAGACCCTTTTGAACCCCATTGGAGGCCCATCAACCCATGATCAGT +TGACGGCCATTTGGTTGCGACCCAGG +>gi|2765597|emb|Z78472.1|PLZ78472 P.lowii 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGATCACATAATAAT +TGATCGAGTTAATCTGGAGGATCAGTTTACTTTAGTCACCCATGGGCATCTGCTCTTGCA +GTGACCTGGATTTGCCATCGAGCCTCCTTGGGAGCTTTCTTGCTGGCGATCTAAATCGTT +GCCCGGCGCAGTCTTGCGCCAAGTCATTTCACACATAATTGGAAGGGGGCGGCATGCAGT +CTAAGACCCTCCCCAAATTATTTTTTGATAACTCTCAGCAACGGAATCTCGGCTCTTGCA +TCGATGGAGGACGCAGCGAAATGCGATAAATGGTGTGAATTGCAGAATCCCGTGAACCAT +CGAGTCTTTGAACGCAAGTTGCGCCCGAGGCCATCAGGCCAAGGGCACGCCTGCCTGGGC +ATTGCGAGTCATATCTCTCCTTTAATGAGGCTGTCTATACATACTGTTCAGCCACAGCGG +ATGTGAGTTTGGCCCCTTGTTCTTTGGTACGGGGGGTCTAAGAGCTGCATGGGCTTTTGA +TGGTCTTAAATACGGCAAGAGGTGGACGAAGTATGCTACAACAAAATTGTAGTTCGAATG +CCCAGGGTTGTCGTATTAGATGGGCCAGCATAATCTAAAGACCCTTTGAACCCCTTTAGA +GGCCAATCAACCCATGATCAGTTGATGGCCATTTGGTTGCGACCCCAAGTCAGGTGAGGC +AACCGCTGAGTTTAAGC +>gi|2765596|emb|Z78471.1|PDZ78471 P.dianthum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGATCACATAATAAT +TGATCGAGTTAATCTAGAGGATCGGTTTACTTTGGTCACCCATGGGCATCTGCTCTTACA +GTGACCTGGATTTGCCATCGAGCCTCCTTGGGAGCTGTCTTGCTGGCGATCTAAATCGTT +GCCCGACGCAGCCTTGCGTCAAGTCACCCCGACACATAATGGAAGGGGGCGGCATGCTGC +CTTGACCCTTCCCCAAATTAATTTTTTGACAACTCTCAACATCGGATATCTCGGCTCTTG +CATCGATGAAGAACGCAGCGAAATGCGATAAATGGTGTGAATTGCAGAATCCCGTGAACC +ATCGAGTCTTTGAACGCAAGTTGCGCCCGAGGCCATCAGGCCAAGGGCACGCCTGCTTGG +GCATTGCGAGTCATATCTCTCCCTTAATGAGGCTGTCCATACATACTGTTCAGCCAGTGC +GGATGTGAGTTTGGCCCCTTGTTCTTTAGTACGGGGGGTCTAAAAGCTGCATGGGCTTTT +GCTGGTCCTAAATACGGCAAGAGGTGGACAAAGTATGCTACAACAAAATTGTAGTGCGAA +TGCCCCGGGTTGTCGTATTAGATGGGCCAGCATAATTTAAAGACCCTTTTGAACCCCATT +AGAGGCCCATCAACCCTGATCAGTTGATGGCCATTTGGTTGCGACCCCAAGTCAGGTGAG +GCAACCCGCTGAGTTTAAGC +>gi|2765595|emb|Z78470.1|PPZ78470 P.parishii 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGATCACATAATAAT +TGATCGAGTTAATCTAGAGGATCAGTTTACTTTGGTCACCCATGGGCATCTGCTCTTACA +GTGACCTGGATTTGCCATCGAGCCTCCTTGGGAGCTTTCTTGCTGGCGATCTAAATCGTT +GCCCGACGCAGCCTTGCGTCAAGTCATATGACACATAATTGGAAGGGGGCGGCATGCTGC +CTTGACCCTTCCCAAATTATTTTTTTAAGTTGCGCCCGAGGCCATCAGGCCAAGGGCACG +CCTGCTTGGGCATTGCGAGTCATATCTCTCCCTTAATGAGGCTGTCCATACATACTGTTC +AGCCAGTGCGGATGTGAGTTTGGCCCCTTGTTCTTTACTACGGGGGGTCTAAAAGCTGCA +TGGGCTTTTGCTGGTCCTAAATACGGCAAGAGGTGGACAAAGTATGCTACAACAAAATTG +TAGTGCGAATGCCCCGGGTTGTCGTATTAGATGGGCCAGCATAATTTAAAGACCCTTTTG +AACCCCATTAGAGGCCCATCAACCCTGATCAGTT +>gi|2765594|emb|Z78469.1|PHZ78469 P.haynaldianum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGATCACATAATAAT +TGATCGAGTTAATCTGGAGGATCAGTTTACTTTAGTCACCCATGGGCATCTGCTCTTGCA +GTGACCTGGATTTGCCATCGAGCCTCCTTGGGAGCTTTCTTGCTGGCGATCTAAATTCGT +TGCCCGGCGCAGTCTTGCGCCAAGTCATATCACACATAATTGGAAGGGGGCGGCATGCGG +TCTAGACCCTCCCCAAATTATTTTTTTGACAACTCTCAGCAACGGATATCTCGGCTCTTC +CATCAGGCCAAGGGCACGCCTGCCTGGGCATTGCGAGTCATATCTCTCCCTTAATGAGGC +TGTCCATACATACTGTTCAGCCACAGCGGATGTGAGTTTGGCCCCTTGTTCTTTGGTACG +GGGGGTCTAAGAGCTGCATGGGCTTTTGATGGTACCTAAATACGGCAAGAGGTGGACGAA +GTATGCTACAACAAAATGATAGTGCGAATGCCCAGGGTTGTCGTATTAGATGGGCCAGCA +TAATCTAAAGACCCTTTTGAACCCCATTAGAGGCCCATCAACCCATGATCAGTT +>gi|2765593|emb|Z78468.1|PAZ78468 P.adductum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGATCGCATAATAAT +TGATTGAGTTAATCTGGAGGATCAGTTTACTTTGGTCACTCATGGGAATCTGCTCTTGTA +GTGACCTGGATTTGCCATCGAGCCTCCTTGGGAGCTTTCTTGATGGCGATCTGAACCCTT +GCCCGGCGCAGTTTTGCGCCAAGTCATATGACACATAATTGGGAGGGGCAGCATGCTGCC +TTGACCCTCCCCATATCATTTTTTTAACGACTCTCAGCTCCGGAACTCAAGTTGCGCCCG +AGGCCATCAGGCTAAGGGCACGCCTGCCTGGGCATTGCGAGTCATATCTCTCCCTTAATG +AGGCTGTCCATACATACTGTTCAGCCAGTGCGGATGTGAGTTTGGCCCCTTGTTCTTCGG +TACGGGGGGTCTAAGAGCAGCTGGGCTTTTGATGGACCTAAATACGGCAAGAGGTGGACG +AAGTATGCTACAACAAAATTATTGTGTGAATGCCCCGGGTTGTCGTATAGATGGGCCAGC +ATAATCTAAAGACCCTTTTGAACCCCATTGGAGGCCCATCAACCCATGATCAGTTGACGG +CCATTTGGTT +>gi|2765592|emb|Z78467.1|PSZ78467 P.stonei 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGATCACATAATAAT +TGATCGAGTTAATCTGGAGGATCAGTTTACTTTGGTCACCCATGGGCATCTGCTCTTGCA +GTGACCTGGATTTGCCATCGAGCCTCCTTGGGAGCTTTCTTGCTGGCGATCTAAACCCTT +GCCCGGCGCAGTTTTGCGCCAAGTCATATGACACATAATTGGAAGGGGGTGGCATGCTGC +CTTGACCCTCCCCAAATTATTTTTTGACAACTCTCAGCAACGGATATCTCGGCTCTTGCA +TCGATGAAGAACGCAGCGAAATGCGATAAATGGTGTGAATTGCAGAATCCCGTGAACCAT +CGAGTCTTTGAACGCAAGTTGCGCCCGAGGCCATCAGGCCAAGGGTACGCCTGCCTGGGC +ATTGCGAGTCATATCTCTCCCTTAATGAGGCTGTCCATACATACTGTTCAGCCGGTGCGG +ATGTGAGTTTGGCCCCTTGTTCTTTGGTACGGGGGGTCTAAGAGCTGCATGTGCCTTTGG +TGGTCCAAAATACGGCAAGAGGTGGACGAACTATGCTACAACAAAATTGTTGTGCGAATG +ACCCGGGTTGTCGTATTAGCTGGGCCAGCATAATCTAAAGACCCTCTTGAACCCCATTGG +AGGCCCATCAACCCATGATCAGTTGACGGCCATATGTTTGCGACCCAGGTCAGGTGAGGC +AACCCGCTGA +>gi|2765591|emb|Z78466.1|PPZ78466 P.philippinense 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGATCACATAATAAT +TGATCGAGTTAATCTGGAGGATCAGTTTACTTTGGTCACCCATGGGCATCTGCTCTTGTA +GTGACCTGGATTTGCCATCGAGCCTTCATGGGAGCTTTCTTGCTGGCGATCTAAACCCTT +GCCCGGCGCAGTTTTGCGCCAAGTCATATGACACATAATTGGAAGGGGGCGGCATGCTGC +CTTGACCCTCCCCAAATTATTTTTGTAACAACTCTCAGCAACGGATATCTCGGCTCTTTG +CCGAGGCCATCAGGCCAAGGGCACGCCTGCCTGGGCATTGCGAGTCATATCTCTCCCTTA +ATGAGGCTGTCCATACATACAGTTCAGCCTGTGCGGATGTGAGTTTGGCCCCTTGTTCTT +GCGTACGGGGGGTCTAAGAGCTGCATGGGCTTTTGATGGTCCTAAATACGGCAAGAGGTG +GACGAACTATGCTACAACAAAATTGTTGTGCGAATGCCCCGGGTTGTCGTATTAGATGGG +CCAGCATAATCTAAAGACCCTTTTGAACCCCATTGGAGGCCCATCAACCCATGATCAGTT +GACGGCCATTTGGTTGCGACCCAGGTCAGGTGAGGCAACCC +>gi|2765590|emb|Z78465.1|PRZ78465 P.rothschildianum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGATCACATAATAAT +TGATCGAGTTAATCTGGAGGATCAGTTTACTTTGGTCACCCATGGGCATCTGCTCTTGCA +GTGACCTGGATTTGCCATCGAGCCTCCTTGGGAGCTTTCTTGCTGGCGATCTAAACCCTT +GCCCGGCGCAGTTTTGCGCCAAGTCATATGACACATAATTGGAAGGGGGCGGCATGCTGC +CTTGACCCTCCCCAAATTATTTTTTTGACAACTCTCAGCAACGGATTTCTCGGTTCTTGA +ATCGATGAGGAACGCAGCGAAATGCGATAATTGGTGTGAATTGAAGAATCCCGTAAACCA +TCGAGTCTTTGAACGAAAGTTGCGCCCGAGGCCATCAGGCCAAGGGAACGCCTGCCTGGG +CATTGCGAGTCATATCTCTCCCTTAATGAGGCTGTCCATACATACTGTTCAGCGAGTGCG +GATGTGAGTTTGGCCCCTTGTTCTTTGGTACGGGGGGTCTAAGAGCTGCATGGGCTTTTG +ATGGTCCTAAATACGGCAAGAGGTGGACGAACTATGCTACAACAAAATTGTTGTGCGAAT +GCCCCGGGTTGTCGTATTAGATGGGCCAGCATAATCTAAAGACCCTTTTGAACCCCATTG +GAGGCCCATCAACCCATGATCAGTTGACGGCCATTTGGTTGC +>gi|2765589|emb|Z78464.1|PGZ78464 P.glanduliferum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAGCGGAAGGGTCATTGTTGAGATCACATAATAATTGAT +CGGTTGAGTCTGGAGGATCAGTTTACTTTGGTCACCCATGGGCATCTGCTCTTGTAGTGA +CCTGGATTGCCATCGAGCCTCCTTGGGAGCTTTCTTGCTGGAGATCTAAACCCTTGCCCG +GAGCAGTTTTGCGCCAAGTCATATGACACATAATTGGAAGGGGGCGGCATGCTGCCTTGA +CCCTCCCCAAATTATTTTCTTAACAACTCTCAGCAACGGATATCTCGGCTCTTGCATCGA +TGAAGAACGCAGCGAAATCCGATAAATGGTGTGAATTTCAGAATCCCGTGAACCATCGAG +TCTTTGAACGCCAAGTTCGCCCGAGGCCATCAGGCCAAGGGCACGCCTGCCTGGGCATTT +CGAATCAAATCTCTCCCTTAATGAGGCTGTCCAAACATACTGTTCAACCGGTTCGGATGT +GAGTTTGGCCCCTTTTTCTTTGGGGCGGGGGGTCTAAGAACTTCATGGGCTTTTGGTGGT +CCTAAAAACGGCAAGAGGTGGGCGGACTATTCTTCAACCAAATTTCTGTTCGGATTCCCC +GGGCTTTCGTAATAGATGGGCCAGCATAATCTAAAGACCCTTTTGAACCCCATTGGAGGC +CCATCAACCCATGATCAGTTGACGGCCATTTGGTGCGACCCCAGGTCAGGTGAGCAACCC +GCTGAGTTTAAGC +>gi|2765588|emb|Z78463.1|PGZ78463 P.glanduliferum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGTTCATTGTTGAGATCACATAATCAT +TGTTCGGTTGAGTCTGGAGGATCAGTTTACTTTGGTCACCATGGGCATCTGCTCTTGTAG +TGACCTGGATTGCCATCGAGCCTCCTTGGGAGCTTTCTTGCTGGGGATCTAAACCCTCGC +CCGGGGGAGTTTTGCGCCAAGTCATATGACACATAATTGGGAGGGGGCGGCATGTTGCCT +TGACCCTCCCCAAATTATTTTCTTAACAACTCTCAGCAACGGATATCTCGGCTCTTGCAT +CGATGGAAGAACGCAGCGAAATGCGATAAATGGTGTGAATTGCAGAATCCCGTGAACCAT +CGAGTCTTTGAACGCAAGTTGCGCCCGAGGCCATCAGGCCAAGGGCACGCCTGCCTGGGC +ATTGCGAGTCATATCTCTCCCTTAATGAGGCTGTCCATACATACTGTTCAACCGGTGCGG +ATGTGAGTTTGGCCCCTTTTTCTTTGGGGCGGGGGGTCTAAGAGCTGCATGGGCTTTTGA +TGGTCCTAAATACGGCAAGAGGTGGACGAACTATGCTGCAACAAAATTGCTGTGCGAATA +CCCCGGGTTGTCGTATTAGATGGGCCAGCATAATCTAAAGACCCTTTTGAACCCCATTGG +AGGCCCATCAACCCATGATCAGTTGACGGCCATTTGGTTGCGACCCCAGATCAGGTGAGC +AACCCGCTGAGTTTAAGC +>gi|2765587|emb|Z78462.1|PSZ78462 P.sukhakulii 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTCACGAGGTCTCCGGATGTGACCCTGCGGAAGGATCATTGTTGAGATCACATAATAAT +TGATCGAGTTAATCTGCAGGATCTGTTTACTTTGGTCACCCATGGGCATTTGCTGTTGAA +GTGACCTAGATTTGCCATCGAGCCTCCTTGGGAGATTTCTTGTTGGCGAGATCTAAACCC +TTGCCCGGCGCAGTTTTGCGCCAAGTCATANNNNNNNNNNNNNNNNNNNNNNNNNNNNNN +NNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNN +NNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNN +NNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNN +NNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCGCCT +GCCTGGGCATTGCGAGTCATATCTCTCCCTTAACGAGGCTGTCCATACATACTGTTCAGC +CGGTGCGGATGTGAGTTTGGCCCCTTGTTCTTTGGTACGGGGGGTCTAAGAGCTGCATGG +GCTTTTGATGGTCCTAAATACGGCAAGAGGTGGACGAACTATGCTACAACAAAATTGTTG +TGCAAAGGCCCCGGGTTGTCGTATTAGATGGGCCACCGTAATCTGAAGACCCTTTTGAAC +CCCATTGGAGGCCCAT +>gi|2765586|emb|Z78461.1|PWZ78461 P.wardii 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTCCGGAAGGATCATTGTTGAGATCACATAATAAT +TGATCGAGGTAATCTGGAGGATCTGTTTACTTTGGTCACCCATGGGCAGTTGCTGCTGGA +GTGACCTAGAATTTCCATCGAGCCTCCTTGGGAGCTTTCTTGTTGGCGAGATCTAAACCC +TTACCCGGCGCAATTTTTCCCCCAGTCAAATGACACATAATTGGTGGAGGGGGTGGCATT +CTTCCCTGACCCTCCCCCAAATAATTTTTTCACAACTCTCAGCAACGGATATCTCGGCTC +TTGCATCGATGAAGAACGCACCGAAATCCGATAAATGGTGTGAATTCCAGAATCCCGTGA +ACCATCGAGTCTTTGAACCCAAGTTGCGCCCGAGGCCATCAGGCCAAGGGAACGCCTGCC +TGGGCATTGCGAGTCATATCTCTCCCTTAACGAGCCTGTCCATACATCCTGTTCAGCCGG +TGCGGATGTGAGTTTGCCCCCTTGTTCTTTGGTACGGGGGGTCTAAGACCTGCATGGGCT +TTTGATGGTCCTAAATACGGCAAGAGGTGGACGAACTATGCTACACCAAAATTGTTGTCC +AAAGCCCCCGGGTTGTCGTATAAGATGGGCCACCGTAATCTGAAGACCCTTTGAACCCCA +TTGGAGCCCATCAACCCATGATCAGTTGATGCCATTGTTGCGACCCAGTCAGTGAGCAAG +CCGCTGAGTTAA +>gi|2765585|emb|Z78460.1|PCZ78460 P.ciliolare 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTCCGGAAGGATCATTGTTGAGATCACATAATAAT +TGATCGAGTTAATCTGGAGGATCTGTTTACTTTGGTCACCCATGAGCATTTGCTGTTGAA +GTGACCTAGATTTGCCATCGAGCCTCCTTGGGAGCTTTCTTGTTGGCGAGATCTAAACCC +TTGCCCGGCGCAGTTTTGCGCCAAGTCATATGACACATAATTGGTGAAGGGGGTGGCATC +CTGCCCTGACCCTCCCCAAATTATTTTTTTAACAACTCTCAGCAACGGGATATCTCGGCT +CTTGCATCGGATGGAGGAACGCAGCGAAATGCGATAAATGGTGTGAATTGCAGAATCCCG +TGAACCATCGAGTCTTTGAACGCAAGTTGCGCCCGAGGCCATCAGGCCAAGGGCACGCCT +GCCTGGGCATTGCGAGTCATATCTCTCCCTTAACGAGGCTGTCCATACATACTGTTCAGC +CGGTGCGGATGTGAGTTTGGCCCCTTGTTCTTTGGTACGGGGGGTCTAAGAGCTGCATGG +GCTTTTGATGGTCCCAAATACGGCAAGAGGTGGACGAACTATGCTACAACAAAATTGTTG +TGCAAAGGCCCCGGGTTGTCGTATTAGATGGGCCACCGTAATCTGAAGACCCTTTTGAAC +CCCATTGGAGGCCCATCAACCCATGATCAGTTGATGGCCATTTGGGTTGCGACCCCAGGT +CAGGTGAGGCAACCCGCTGAGTTTA +>gi|2765584|emb|Z78459.1|PDZ78459 P.dayanum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGATCACATAATAAT +TGATCGAGTTAATCTGGAGGATCTGTTTACTTTGGTCACCCATGAGCATTTGCTGTTGAA +GTGACCTAGATTTGCCATCGAGCCTCCTTGGGAGCTTTCTTGTTGGCGAGATCTAAACCC +TTGCCCGGCGCAGTTTTGCGCCAAGTCATATGACACATAATTGGTGAAGGGGGTGGCATC +CTGCCCTGACCCTCCCCAAATTATTTTTTTAACAACTCTCAGCAACGGATATCTCGGCTC +TTGCATCGGATGGAGGAACGCAGCGAAATTGCGATAAATTGGTGTGAATTGCAGAATCCC +GTGAACCATCGAGTCTTTGAACGCAAGTTGCGCCCGAGGCCATCAGGCCAAGGGCACGCC +TGCCTGGGCATTGCGAGTCATATCTCTCCCTTAACGAGGCTGTCCATACATACTGTTCAG +CCGGTGCGGATGTGAGTTTGGCCCCTTGTTCTTTGGTACGGGGGGTCTAAGAGCTGCATG +GGCTTTTGATGGTCCTAAATACGGCAAGAGGTGGACGAACTATGCTACAACAAAATTGTT +GTGCAAAGGCCCCGGGTTGTCGTATTAGATGGGCCACCGTAATCTGAAGACCCTTTTGAA +CCCCATTGGAGGCCCATCAACCCATGATCAGTTGATGGCCATTTGGTTGCGACCCCAGGT +CAGGTGAGGCAACCCGCTGAGTTT +>gi|2765583|emb|Z78458.1|PHZ78458 P.hennisianum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGATCACATAATAAT +TGATCGAGTTAATCTGGAGGATCTGTTTACTTTGGTCACCCATGAGCATTTGCTGTTGAA +GTGACCTAGATTTGCCATCGAGCCTCCTTGGGAGCTTTCTTGTTGGCGAGATCTAAACCC +TTGCCCGGCGCAGTTTTGCGCCAAGTCGTACGACACATAATTGGTGAAGGGGGTGGCATC +CTTCCCTGACCCTCCCCAAATTATTTTTTAACAACTCTCAGCAACGGATATCTCGGCTCT +TGCATCGATGGAGGACGCAGCGAAATGCGATAAATGGTGTGAATTGCAGATCCCGTGAAC +CATCGAGTCTTTGAACGCAAGTTGCGCCCGAGGCCATCAGGCCAAGGGCACGCCTGCCTG +GGCATTGCGAGTCATATCTCTCCCTTAACGAGGCTGTCCATACATACTGTTCAGCCGGTG +CGGATGTGAGTTTGGCCCCTTGTTCTTTGGTACGGGGGGTCTAAGAGCTGCATGGGCTTT +TGATGGTCCTAAATACGGCAAGAGGTGGACGAACTATGCTACAACAAAATTGTTGTGCAG +AGGCCCCGGGTTGTCGTATTAGATGGGCCACCGTAATCTGAAGACCCTTTTGAACCCCAT +TGGAGGCCCATCAACCCATGATCAGTTGATGGCCATTTGGTTGCGACCCCAGGTCAGGTG +AGGCAACCCGCTGAGTTG +>gi|2765582|emb|Z78457.1|PCZ78457 P.callosum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTCCGGAAGGATCATTGTTGAGATCACATAATAAT +TGATCGAGTTAATCTGGAGGATCTGTTTACTTTGGTCACCCATGGGCATTTTCTGTTGTA +GTGACCTAGAATTTCCATCGAGCCTCCTTGGGAGCTTTCTTGTTGGCGAGATCTAAACCC +TTGCCCGGCGCAGTTTTTCCCCCAGTCAAATGGCACATAATTGGTGGAGGGGGTGGCATT +CTTCCCTGACCCTCCCCCAAATATTTTTTTAACAACTCTCAACAACGGATATCTCGGCTC +TTTCATCGGATGAAGGACCGCAGCGAAATGCGATAAATGGTGTGAATTGCAGAATCCCGT +GAACCATCGAGTCTTTGAACGCAAGTTGCGCCCGAGGCCATCAGGCCAAGGGCACGCCTG +CCTGGGCATTGCGAGTCATATCTCTCCCTTAACGAGGCTGTCCATACATACTGTTCAGCC +GGTGCGGATGTGAGTTTGGCCCCTTGTTCTTTGGTACGGGGGGTCTAAGAGCTGCATGGG +CTTTTGATGGTCCTAAATACGGCAAGAGGTGGACGAACTATGCTACAACAAAATCGTTGT +GCAAAGGCCCCGGGTTGTCGTATTAGATGGGCCACCGTAATCTAAAGACCCTTTTGAACC +CCATTGGAGGCCCATCAACCCATGATCAGTTGATGGCCATTTGGTTGCGACCCCAGGTCA +GGTGAGGCAACCCGCTGAG +>gi|2765581|emb|Z78456.1|PTZ78456 P.tonsum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGATCACATAATAAT +TGATCGAGTTAATCTGGAGGATCTGTTTACTTTGGTCACCCATGAGCATTTGCTGTTGAA +GTGACCTAGAATTTGCCATCGAGCCTCCTTGGGAGCTTTCTTGTTGGCGAGATCTAAACC +CTTGCCCGGCGCAGTTTTGCGCCAAGTCATATGACACATAATTGGTGGAGGGGGTGGCAT +CCTGCCCTGACCCTCCCCAAATTATTTTTTTAACAACTCTCAGCAACGGATATCTCCGGT +CTGGCATCGATGAAGAACGCAGCGAAATGCGATAAATGGTGTGATTGCAGAATCCCGTGA +ACATCGAGTCTTTGAACGCAAGTTGCGCCCGAGGCCATCAGGCCAAGGGCACGCCTGCCT +GGGCATTGCGAGTCATATCTCTCCCTTAACGAGGCTGTCCATACATACTGTTCAGCCGGT +GCGGATGTGAGTTTGGCCCCTTGTTCTTTGGTACGGGGGGTCTAAGAGCTGCATGGGCTT +TTGATGGTCCTAAATACGGCAAGAGGTGGACGAACTATGCTACAACAAAATTGTTGTGCA +AAGGCCCCGGGTTGTCGTATTAGATGGGCCACCGTAATCTGAAGACCCTTTTGGACCCCA +TTGGAGGCCCATCAACCCATGATCAGTTGATGGCCATTTGGGTTGCGACCCAGGTCAGGT +GAGGCAACCCTGAGTTTAGC +>gi|2765580|emb|Z78455.1|PJZ78455 P.javanicum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACCAGGTTTCCGTAGGTGGACCTTCGGGAGGATCATTTTTGAGATCACATAAAAAT +TGATCGAGTTAATCTGGAGGAACTTTTTACTTTGGTCACCCATGAACAATTTCTTTTGGA +GTGACCTAGAATTTCCATCGAACCCCCTTGGGAACTTTCTTTTTGGCGAGAACTAAACCC +TTTCCCGGCGCAGTTTTTCCCCCAATCAAATTACACAAAAATGGTGGAGGGGGTGGCATC +CTTCCCTTACCCTCCCCCAAATAATTTTTTAACAACTCTCAGCAACGGATATCTCGGCTC +TTGCATCGGTTGAAGAACCAGCGAAATGCGATAAATGGTGTGAATTGCAGAATCCCGTGA +ACCATCGAGTCTTTGAACGCAAGTTGCGCCCGAGGCCATCAGGCCAAGGGCACGCCTGCC +TGGGCATTGCGAGTCATATCTCTCCCTTAACGAGGCTGTCCATACATACTGTTCAGCCGG +TGCGGATGTGAGTTTGGCCCCTTGTTCTTTGGCACGGGGGGTCTAAGAGCTTCATGGGCT +TTTGATGGTCCTAAATACGGCAAGAGGTGGACGAACTATGCTACAACAAAATTGTTGTGC +AAAGGCCCCGGGTTGTCGTATTAGATGGGCCACCGTAATCTGAAGACCCTTTTGAACCCC +ATTGGAGGCCCATCAACCCATGATCAGTTGATGGCCATTTGGGTTGCGACCCCAGGTCAG +GTGAGGCAACCCGCTGAGTTTAGCA +>gi|2765579|emb|Z78454.1|PFZ78454 P.fowliei 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGATCACATAATAAT +TGATCGAGATAATCTGGAGGATCTGTTTACTTTGGTCACCCATGAGCATTTGCTGTTGAA +GTGACCTAGATTTACCATCGAGCCTCCTTGGGAGCTTTCTTGTTGGCGAGATCTAAACCC +TTGCCCGGCGCAGTTTTTCTCCAAGTCATTTGACACATAATCGGTGAAGGGGGTGGCATC +CTGCCCTGACCCTCCCCCCACTATTGTTAACAACTCTCATCAACGGAACTCATGCGATAA +ATGGTGTGATTTGCAGAATCCCGTGAACCATCGAGTCTGTGAACGCAAGTTGCGGCCGAG +GCCATCAGACCAAGGGCACGCCTGCCTGGGCATTGCGAGTCATATCTCTCCCTTAACGAG +GCTGTCCATACATACTGTTCAGCCGGTGCGGATGTGAGTTTGGCCCCTTGTTCTCTGGTA +CGGGGGGTCTAAGAGCTGCATGGGCTTTTGATGGTCCTAAATACGGCAAGAGGTGGACGA +ACTATGCTACAACAAAATTGTTGTGCAAAGGCCCCGGGTTGTCGTATTAGATGGGCCACC +GTAATCTGAAGCCCCTTTTGAACCCATTGGAGGCCCATCAACCNCATGATCAGTTGATGG +CCATTTGGATGCGACCCCAGGTCAGGTGAGGCAAC +>gi|2765578|emb|Z78453.1|PSZ78453 P.schoseri 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGATCACATAATAAT +TGATCGAGTTAATCTGGAGGATCTGTTTACTTTGGTCACCCATGAGCATTTGCTGTTGAA +GTGACCTAGAGTTGCCATCGAGCCTCCTTGGGAGCTTTCTTGTTGGCGAGATCTAAACCC +TTGCCCGGCGCAGTTTTGCGCCAACTCATTTGACACATAACTGGTGAAGGGGGTGGCATC +CTTCCCTGACCCTCCCCCAAATTATTTTTTAACAACTCTCAGCAACCGGATATCTCAGCT +CTTGCATCGATGAAGAACGCAGCGAAATGCGATAAATGGTGTGAATTGCAGAATCCCGTG +AACCATCGAGTCTTTGAACGCAAGTTGCGCCCGAGGCCATCAGGCCAAGGGCACGCCTGC +CTGGGCATTGCGAGTCATATCTCTCCCTTAACGAGGCTGTCCATACATACTGTTCAGCCG +GTGCGGATGTGAGTTTGGCCCCTTGTTCTTTGGTACGGGGGGTCTAAGAGCTGCATGGGC +TTTTGATGGTCCTAAATACGGCAAGAGGTGGACGAACTATGCTACAACAAAATTGTTGTG +CAAAGGCCCCGGGTTGTCGTATTAGATGGGCCACCGTAATCTGAAGACCCTTTTGAACCC +CATTGGAGGCCCATCAACCCATGATCAGTTGATGGCCATTTGGTTGCGACCCCAGGTCAG +GTGAGGCAACCCGCTGAGTTTAGCA +>gi|2765577|emb|Z78452.1|PBZ78452 P.bougainvilleanum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGATCACATAATAAT +TGATCGAGTTAATCTGGAGGATCTATTTACTTTGGTCACCCATGAGCATTTGCTGTTGAA +GTGACCTAGATTTGCCATCAAGCCTCCTTGGGAGCTTTCTTTTTGGCGAGATCTAAACCC +TTGCCCGGCGCAGTTTTGCGCCAAGTCATATGACACATAATTGGTGAAGGGGGTGGCATC +CTGCCCTGACCCTCCCCAAATTATTTTTTTAACAACTCTCAGCAACGGATATCTCGGCTC +TTGAATCGATGAAGAACGCAGCGAAATGCGATAAATGGTGTGAATTGCAGAATCCCGTGA +ACCATCGAGTCTTTGAACGCAAGTTGCGCCCGAGGCCATCAGGCCAAGGGCACGCCTGCC +TGGGCATTGCGAGTCATATCTCTCCCTTAACGAGGCTGTCCATACATACTGTTCAGCCGG +TGCGGATGTGAGTTTGGCCCCTTGTTCTTTGGTACGGGGGGTCTAAGAGCTGCATGGGCT +TTTGATGGTCCTAAATACGGCAAGAGGTGGATGAACTATGCTACAACAAAATTGTTGTGC +AAAGGCCCCGGGTTGTCGTATTAGATGGGCCACTGTAATCTGAAGACCCTTTTGAACCCC +ATTGGAGGCCCATCAACCCATGATCAGTTGATGGCCATTTGGATGCGACCCCAGGTCAGG +TGAGGCAACCGCTGAGTTTAGCA +>gi|2765576|emb|Z78451.1|PHZ78451 P.hookerae 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGTACCTCCGGAAGGATCATTGTTGAGATCACATAATAAT +TGATCGAGATAATCTGGAGGATCTGTTTACTTTGGTCACCCATGGGCATTTGCTGTTGTA +GTGACCTAGATTTCCATGGAGCCCCCCTGGGAGCTTTCTTGCTGGCGAGATCTAAACCCG +TGCCCGGCGCAGTTTTGCGCCAAGTCATATGACACATAATTGGTGTAGGGGGCGGGCATC +CTGCCCTGACCCTCCCCAAAGTATTTTTTGCAACTCTCAACAACGGAAATCTCGCTCTTT +CATCGATGAAGAACCAGCGAAATCGATAAATGGTGTGAATTGCAGAATCCCGTGAACCAT +CGAGTCTTTGAACCCAAGTTGCGCCCGAGGCCATCAGGCCAAGGGCACCCCTCCCTGGGC +ATCGCGAGTCAAATCTCTCCCTTAACGAGGCTGTCCATACATACTGTTCACCCGGTGCGG +ATGTGAGTTTGCCCCCTTGTTCTTTGGTACGGGGGGTCTAAGACCTGCATGGGATTTTGA +TGGTCCTAAAAACGGCAAGAGGTGGACGAACTATCCCTACAATAAAATTGTTGTGCGAAG +CCCCCGGGTTGTCGTATTAGATGGGCCACCGTAATCTGAAGACCCTATAGAACCCCATTG +GAGGCCCATCAACCCATGATCAGTTGATGGCCATTTGATGCGACACCAGTCAGTGAGCAA +CCAGCTGAGC +>gi|2765575|emb|Z78450.1|PPZ78450 P.papuanum 5.8S rRNA gene and ITS1 and ITS2 DNA +GGAAGGATCATTGCTGATATCACATAATAATTGATCGAGTTAAGCTGGAGGATCTGTTTA +CTTTGGTCATCCATGAGCATTTACTGTTGAAGTGACCTAGATTTGCCATCGAGCCTCCTT +GGGAGCTTTCTTGTTGCCGAGATCTAAACCCTTGCCCGGCGCAGTTTTGCGCCAAGTCAT +ATGACACATAATTGGTGAAGGGGGTGGCATCCTGCCCTGACCCTCCCCAAATTATTTTTT +TAACAACTCTCAGCAACGGATATCTCGGCTCTTGCATCGATGAAGAACGCAGCGAAATGC +GATAAATGGTGTGAATTGCAGAATCCCGTGAACCATCGAGTCTTTGAACGCAAGTTGCGC +CCGAGGCCATCAGGCCAAGGGCACGCCTGCCTGGGCATTCCGAGTCATATCTCTCCCCTA +ACGAGGCTGTCCATACATACTGTTCATCCGGTGCGGATGTGAGTGTGGCCCCTTGTTCTT +TGGTCCGGGGGGTCTAAGAACTGCATGGGCATATGATGGTCCTCAAAACTGGCAAGAGGT +GGACGAACTATGCTACAACCAAATTGTTGTGCCAAGGCCCCGGGTTGTCGTATTAGATGG +GCCACCGTAACCTGTAGACCCTGTTGAACCCCATTGGAGGACCATCAACCCATGATCAGT +TGATGACCATGTGTTGCGACCCCAGATCAGCTGAGCAACCCCTGAG +>gi|2765574|emb|Z78449.1|PMZ78449 P.mastersianum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGATCACATAATAAT +TGATCGAGTTAATCTGGAGGATCTGTTTACTTTGGTCACCCATGAGCATTTGCTGTTGAA +GTGACCTAGATTTGCCATCGAGCCTCCTTGGGAGCTTTCTTGTTGGCGAGATCTAAACCC +TTGCCCGGCGCAGTTTTGCGCCAACTCATTTGACACATAATTGGTGAAGGGTGGCATCCT +GCCCTGACCCTCCCCCAAATTATTTTTTTAACAACTCTCAGCAACGGATATCTCAGCTCT +TGCATCGATGAAGAACGCAGCGAAAATGCGATAAATGGTGTGAATTGCAGAATCCCGTGA +ACCATCGAGTCTTTGAACGCAAGTTGCGCCCGAGGCCATCAGGCCAAGGGCACGCCTGCC +TGGGCATTGCGAGTCATATCTCTCCCTTAACGAGGCTGTCCATACATACTGTTCAGCCGG +TGCGGATGTGAGTTTGGCCCCTTGTTCTTTGGTACGGGGGGTCTAAGAGCTGCATGGGCT +TTTGATGGTCCTAAATACGGCAAGAGGTGGACGAACTATGCTACAACTAAATTGTTGTGC +AAAGGCCCCGGGTTGTCGTATTAGATGGGCCACCGTAATCTGAAGACCCTTTTGAACCCC +ATTGGAGGCCCATCAACCCATGATCAGTTGATGGCCATTTGGTTGCGACCCCAGGTCAGG +TGAGGCAACCCGCTGAGTTTATGC +>gi|2765573|emb|Z78448.1|PAZ78448 P.argus 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGATCACATAATAAT +TGATCGAGTTAATCTGGAGGATCTGTTTACTTTGGTCACCCATGAGCATTTGCTGTTGAA +GTGACCTAGAATTGCCATCGAGCCTCCTTGGGAGCTTTCTTGTTGGCGAGATCTAAACCC +TTTCCCGGCGCAGTTTTGCGCCAAGTCGTATGACACATAATTGGTGAAGGGGGGTGGCAT +CCTTCCCTTGACCCTCCCCAAATTATTTTTTTAACAACTCTCAGCAACGGATATCTCAGC +TCTTGCATCGGATGGAAGAACGCACCGAAATGCGATAAATGGTGTGAATTGCAGAATCCC +GTGAACCATCGAGTCTTTGAACGCAAGTTGCGCCCGAGGCCATCAGGCCAAGGGCACGCC +TGCCTGGGCATTGCGAGTCATATCTCTCCCTTAACGAGGCTGTCCATACATACTGTTCAG +CCGGTGCGGATGTGAGTTTGGCCCCTTGTTCTTTGGTACGGGGGGTCTAAGAGCTGCATG +GGCTTTTGATGGTCCTAAATACGGCAAGAGGTGGACGAACTATGCTACAANAAAATTGTT +GTGCAAAGGCCCCGGGTTGTCGTATTAGATGGGCCACCGTAATCTGAAGACCCTTTTGAA +CCCCATTGGAGGCCCATCAGCCCATGATCAGTTGATGGCCATTTGGNTGCGACCCCAGGT +CAGGTGAGGCAACCCGCTGAGG +>gi|2765572|emb|Z78447.1|PVZ78447 P.venustum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGATTCCGTAGGTGAACCTGCGGGAGGATCATTGTTGAGATCACATAATAAT +TGATCGAGTAATCTGGAGGATCTGTTTACTTTGGTCACCCATGGGCATTTCCTGTTGAAG +TGACCTAGAGTTGCCATCGAGCCTCCCTGGGAGCTTTCTTGTTGGCGAGAACTAAACCCT +TACCCGGCGCAATTTTGCCCCCAGTCAAATGACACATAAGTGGTGAAGGGGGTGGCATCC +TATCTCGGCTCTTGCATCGATGAAGAACCCAGCGAAATGCGATAAATGGTGTGAATTGCA +GAATCCCGTGAACCATCGAGTCTTTGAACGCAAGTTGCGCCCGAGGCCATCAGGCCAAGG +GCACGCCTGCCTGGGCATTGCGAGTCATATCTCTCCCTTAACGAGGCTGTCCATACATAC +TGTTCAGCCGGTGCGGATGTGAGTTTGGCCCCTTGTTCTTTGGTACGGGGGGTCTAAGAG +CTGCATGGGCTTTTGATGGTCCTAAATACGGCAAGAGGTGGACGAACTATGCTACACCAA +AATTGTTGTGCAAAGGCCCCGGGTTGTCGTATTAGATGGGCCACCGTAATCTGAAGACCC +TTTTGAACCCCATTGGAGGCCCATCAACCCATGATCAGTTGATGGCCATTTGGTTGCGAC +CCCAGTCAGGTGAGGCAACCCGCTGAGTTTAAGC +>gi|2765571|emb|Z78446.1|PAZ78446 P.acmodontum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTCCGGAAGGATCATTGTTGAGATCACATAATAAT +TGATCGAGTTAATCTGGAGGATCTGTTTACTTTGGTCACCCATGAGCATTTCCTGTTGAA +GTGACCTAGATTTGCCATCGAGCCTCCTTGGGAGCTTTCTTGTTGGCGAGATCTAAACCC +TTGCCCGGCGCAGTTTTGCGCCAAGTCATATGACACATAATTGGTGAAGGGGGTGGCATC +CTCCCCAAATAATTTTTTAACAACTCTCAGCAACGGATACTCGGCTCTTCATCGATGGAG +GACCAGCGAAATTGCGATAATGGTGTGATTGCAGAATCCCGTGAACATCGAGTCTTTGAA +CGCAAGTTGCGCCCGAGGCCATCAGGCCAAGGGCACGCCTGCCTGGGATTGCGAGTCATA +TCTCTCCCTTAACGAGGCTGTCCATACATACTGTTCAGCCGGTGCAGATGTGAGTTTGGC +CCCTTGTTCTTCGGTACGGGGGGTCTAAGAGCTGCATGGGCTTTTGATGGCCCTAAATAC +GGCAAGAGGTGGACGAACTATGCTACAACAAAATTGTTGTGCAAAGGCTCCGGGTTGTCG +TATTAGATGGGCCACCGTAATCTGAAGACCCTTTTGAACCCCATTGGAGGCCCATCAACC +CATGATCAGTTGATGGCCATTTGGTTGCGACCCAGGTCAGGTGAGGCAACCC +>gi|2765570|emb|Z78445.1|PUZ78445 P.urbanianum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGATCACATAATAAT +TGATCGGGTTAATCTGGAGGATCTGTTTACTTTGGTCACCCATGAGCATTTGCTGTTGAA +GTGACCTAGAATTGCCATCGAGCCTCCTTGGGAGCTTTCTTGTTGGCGAGATCTAAACCC +TTGCCCGGCGCAGTTTTGCTCCAAGTCGTTTGACACATAATTGGTGAAGGGGGTGGCATC +CTTCCCTGACCCTCCCCCAACTATTTTTTTAACAACTCTCAGCAACGGAGACTCAGTCTT +CGGCAAATGCGATAAATGGTGTGAATTGCAGAATCCCGTGCACCATCGAGTCTTTGAACG +CAAGTTGCGCCCGAGGCCATCAGGCCAAGGGCACGCCTGCCTGGGCATTGCGAGTCATAT +CTCTCCCTTAACGAGGCTGTCCATACATACTGTTCAGCCGGTGCGGATGTGAGTTTGGCC +CCTTGTTCTTTGGTACGGGGGGTCTAAGAGCTGCATGGGCTTTTGATGGTCCTAAATACG +GCAAGAGGTGGACGAACTATGCTACAACAAAATTGTTGTGCAGAGGCCCCGGGTTGTCGT +ATTAGATGGGCCACCGTAATCTGAAGACCCTTTTGAACCCCATTGGAGGCCCATCAACCC +ATGATCAGTTGATGGCCATTTGGTTGCGACCCCAGGTCAGGTGAGCAACAGCTGT +>gi|2765569|emb|Z78444.1|PAZ78444 P.appletonianum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGGTGAACTGCGGAAGGATCATTGTTGAGATCACATAATAAT +TGATCGAGTTAATCTGGAGGATCTGTTTACTTGGGTCACCCATGGGCATTTGCTGTTGAA +GTGACCTAGATTTGCCATCGAGCCTCCTTGGGAGCATCCTTGTTGGCGATATCTAAACCC +TCAATTTTTCCCCCAATCAAATTACACAAAATTGGTGGAGGGGGTGGCATTCTTCCCTTA +CCCTCCCCCAAATATTTTTTTAACAACTCTCAGCAACGGATATCTCAGCTCTTGCATCGA +TGAAGAACCCACCGAAATGCGATAAATGGTGTGAATTGCAGAATCCCGTGAACCATCGAG +TCTTTGAACGCAAGTTGCGCCCGAGGCCATCAGGCCAAGGGCACGCCTGCCTGGGCATTG +CGAGTCATATCTCTCCCTTAACGAGGCTGTCCATACATACTGTTCAGCCGGTGCGGATGT +GAGTTTGGCCCCTTGTTCTTTGGTACGGGGGGTCTAAGAGATGCATGGGCTTTTGATGGT +CCTAAATACGGCAAGAGGTGGACGAACTATGCTACAACAAAATTGTTGTGCAAAGGCCCC +GGGTTGTCGTATAAGATGGGCCACCGATATCTGAAGACCCTTTTGGACCCCATTGGAGCC +CATCAACCCATGTCAGTTGATGGCCATT +>gi|2765568|emb|Z78443.1|PLZ78443 P.lawrenceanum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGATCACATAATAAT +TGATCGAGTTAATCTGGAGGATCTGTTTACTTGGGTCACCCATGGGCATTTGCTGTTGAA +GTGACCTAGATTTGCCATCGAGCCTCCTTGGGAGCTTTCTTGTTGGCGATATCTAAACCC +TTGCCCGGCAGAGTTTTGGGCCACANNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNN +NNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNN +NNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNN +NNNNNNNNNNNNNNNNNNNCAGCGAAATGCGATAATGGTGTGAATTGCAGAATCCCGTGA +ACCATCGAGTCTTTGAACGCAAGTTGCGCCCGAGGCCATCAGGCCAAGGGCACGCCTGCC +TGGGCATTGCGAGTCATATCTCTCCCTTAACGAGGCTGTCCATACACACCTGTTCAGCCG +GTGCGGATGTGAGTTTGGCCCCTTGTTCTTTGGTACGGGGGGTCTAAGAGCTGCATGGGC +TTTTGATGGTCCTAAATACGGCAAGAGGTGGACGAACTATGCTACAACAAAATTGTTGTG +CAAAGGCCCCGGGTTGTCGTATTAGATGGGCCACCATAATCTGAAGACCCTTTTGAACCC +CATTGGAGGCCCATCAACCCATGATCAGTTGATGGCCATTTGGTTGCGACCCAGTCAGGT +GAGG +>gi|2765567|emb|Z78442.1|PBZ78442 P.bullenianum 5.8S rRNA gene and ITS1 and ITS2 DNA +GTAGGTGAACCTGCGGAAGGATCATTGTTGAGATCACATAATAATTGATCGAGTTAATCT +GGAGGATCTGTTTACTTTGGTCACCCATGGGCATTTGCTGTTGAAGTGACCTAGATTTGC +CATCGAGCCTCCTTGGGAGCTTTCTTGTTGGCGAGATCTAAACCCTTGCCCGGCGGAGTT +TGGCGCCAAGTCATATGACACATAATTGGTGAAGGGGGTGGCATCCTGCCCTGACCCTCC +CCAAATTATTTTTTTAACAACTCTCAGCAACGGATATCTCGGCTCTTGCATCGATGAAGA +ACGCAGCGAAATGCGATAAATGGTGTGAATTGCAGAATCCCGTGAACCATCGAGTCTTTG +GAACGCAAGTTGCGCCCGAGGCCATCAGGCCAAGGGCACGCCTGCCTGGGCATTGGGAAT +CATATCTCTCCCCTAACGAGGCTATCCAAACATACTGTTCATCCGGTGCGGATGTGAGTT +TGGCCCCTTGTTCTTTGGTACCGGGGGTCTAAGAGCTGCATGGGCATTTGATGGTCCTCA +AAACGGCAAGAGGTGGACGAACTATGCCACAACAAAATTGTTGTCCCAAGGCCCCGGGTT +GTCGTATTAGATGGGCCACCGTAACCTGAAGACCCTTTTGAACCCCATTGGAGGCCCATC +AACCCATGATCAGTTGATGACCATTTGTTGCGACCCCAGTCAGCTGAGCAACCCGCTGAG +T +>gi|2765566|emb|Z78441.1|PSZ78441 P.superbiens 5.8S rRNA gene and ITS1 and ITS2 DNA +GGAAGGTCATTGCCGATATCACATAATAATTGATCGAGTTAATCTGGAGGATCTGTTTAC +TTGGTCACCCATGAGCATTTGCTGTTGAAGTGACCTAGATTTGCCATCGAGCCTCCTTGG +GAGTTTTCTTGTTGGCGAGATCTAAACCCTTGCCCGGCGGAGTTGTGCGCCAAGTCATAT +GACACATAATTGGTGAAGGGGGTGGCATCCTGCCCTGACCCTCCCCAAATTATTTTTTTA +ACAACTCTCAGCAACGGATATCTCGGCTCTTGCATCGATGAAGAACGCAGCGAAATGCGA +TAAATGGTGTGAATTGCAGAATCCCGTGAACCATCGAGTCTTTGAACGCAAGTTGCGCCC +GAGGCCATCAGGCCAAGGGCACGCCTGCCTGGGCATTGCGAGTCATATCTCTCCCTTAAC +GAGGCTGTCCATACATACTGTTCATCCGGTGCGGATGTGAGTTTGGCCCCTTGTTCTTTG +GTACGGGGGGTCTAAGAGCTGCATGGGCATTTGATGGTCCTCAAAACGGCAAGAGGTGGA +CGAACTATGCTACAACCAAATTGTTGTCCCAAGGCCCCGGGTTGTCGTATTAGATGGGCC +ACCGTAACCTGAAGACCCTTTTGAACCCCATTGGAGGCCCATCAACCCATGATCAGTTGA +TGACCATGTGTTGCGACCCCAGTCAGCTGAGCAACGCGCTGAG +>gi|2765565|emb|Z78440.1|PPZ78440 P.purpuratum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGGACCTCCGGGAGGATCATTGTTGAGATCACATAATAAT +TGATCGAGGTAATCTGGAGGATCTGCATATTTTGGTCACCCATGGGCAATTTCTGTTGTA +GTGACCTAGAATTTCCATCGACCCTCCTTGGGAGCATTCTTGTTGGCGAGAACTAAACCC +TTACCCGGCGCAGTTTTTCCCCCAATCAAATTACACAAAAATGGTGGAGGGGGTGGCATA +TCTTCCCTTACCCTCCCCCAAATAATTTTTTAACAACTCTCAGCAACGGATATCTCAGCT +CTTGCATCGTTGAAGAACCCACCGAAATGCGATAAATGGTGTGAATTGCAGAATCCCGTG +AACCATCGAGTCTTTGAACGCAAGTTGCGCCCGAGGCCATCAGGCCAAGGGCACGCCTGC +CTGGGCATTGCGAGTCATATCTCTCCCTTAACGAGGCTGTCCATACATACTGTTCAGCCG +GTGCGGATGTGAGTTTGGCCCCTTGTTCTTTGCTACGGGGGGTCTAAGAGCTGCATGGGC +TTTTGATGGTCCTAAATACGGCAAGAGGTGGACGAACTATGCTACAGCAAAATTGTTGTG +CAAAGGCCCCGGGTTGTCGTATTAGATGGGCCACCGTAATCTGAAGACCCTTTTGAACCC +CATTGGAGGCCCATCAACCCATGATCAGTTGATGGCCATTTGGTTGCGACCCCAGGTCAG +GTGAGGCAACCCCTGAGTTTAGCA +>gi|2765564|emb|Z78439.1|PBZ78439 P.barbatum 5.8S rRNA gene and ITS1 and ITS2 DNA +CATTGTTGAGATCACATAATAATTGATCGAGTTAATCTGGAGGATCTGTTTACTTTGGTC +ACCCATGGGCATTTGCTGTTGAAGTGACCTAGATTTGCCATCGAGCCTCCTTGGGAGCTT +TCTTGTTGGCGAGATCTAAACCCCTGCCCGGCGGAGTTGGGCGCCAAGTCATATGACACA +TAATTGGTGAAGGGGGTGGTAATCCTGCCCTGACCCTCCCCAAATTATTTTTTTAACAAC +TCTCAGCAACGGATATCTCGGCTCTTGCATCGATGAAGAACGCAGCGAAATGCGATAATG +GTGTGAATTGCAGAATCCCGTGAACATCGAGTCTTTGAACGCAAGTTGCGCCCGAGGCCA +TCAGGCCAAGGGCACGCCTGCCTGGGCATTGCGAGTCATATCTCTCCCTTAATGAGGCTG +TCCATACATACTGTTCAGCCGGTGCGGATGTGAGTTTGGCCCCTTGTTCTTTGGTACGGG +GGGTCTAAGAGCTGCATGGGCTTTGGATGGTCCTAAATACGGAAAGAGGTGGACGAACTA +TGCTACAACAAAATTGTTGTGCAAATGCCCCGGTTGGCCGTTTAGTTGGGCC diff --git a/tests/contrib/io/bioinformatics/ls_orchid_out.fasta b/tests/contrib/io/bioinformatics/ls_orchid_out.fasta new file mode 100644 index 0000000000..9c0fc9678d --- /dev/null +++ b/tests/contrib/io/bioinformatics/ls_orchid_out.fasta @@ -0,0 +1,1268 @@ +>gi|2765658|emb|Z78533.1|CIZ78533 C.irapeanum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGATGAGACCGTGGAATAAA +CGATCGAGTGAATCCGGAGGACCGGTGTACTCAGCTCACCGGGGGCATTGCTCCCGTGGT +GACCCTGATTTGTTGTTGGGCCGCCTCGGGAGCGTCCATGGCGGGTTTGAACCTCTAGCC +CGGCGCAGTTTGGGCGCCAAGCCATATGAAAGCATCACCGGCGAATGGCATTGTCTTCCC +CAAAACCCGGAGCGGCGGCGTGCTGTCGCGTGCCCAATGAATTTTGATGACTCTCGCAAA +CGGGAATCTTGGCTCTTTGCATCGGATGGAAGGACGCAGCGAAATGCGATAAGTGGTGTG +AATTGCAAGATCCCGTGAACCATCGAGTCTTTTGAACGCAAGTTGCGCCCGAGGCCATCA +GGCTAAGGGCACGCCTGCTTGGGCGTCGCGCTTCGTCTCTCTCCTGCCAATGCTTGCCCG +GCATACAGCCAGGCCGGCGTGGTGCGGATGTGAAAGATTGGCCCCTTGTGCCTAGGTGCG +GCGGGTCCAAGAGCTGGTGTTTTGATGGCCCGGAACCCGGCAAGAGGTGGACGGATGCTG +GCAGCAGCTGCCGTGCGAATCCCCCATGTTGTCGTGCTTGTCGGACAGGCAGGAGAACCC +TTCCGAACCCCAATGGAGGGCGGTTGACCGCCATTCGGATGTGACCCCAGGTCAGGCGGG +GGCACCCGCTGAGTTTACGC +>gi|2765657|emb|Z78532.1|CCZ78532 C.californicum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGACAACAGAATATA +TGATCGAGTGAATCTGGAGGACCTGTGGTAACTCAGCTCGTCGTGGCACTGCTTTTGTCG +TGACCCTGCTTTGTTGTTGGGCCTCCTCAAGAGCTTTCATGGCAGGTTTGAACTTTAGTA +CGGTGCAGTTTGCGCCAAGTCATATAAAGCATCACTGATGAATGACATTATTGTCAGAAA +AAATCAGAGGGGCAGTATGCTACTGAGCATGCCAGTGAATTTTTATGACTCTCGCAACGG +ATATCTTGGCTCTAACATCGATGAAGAACGCAGCTAAATGCGATAAGTGGTGTGAATTGC +AGAATCCCGTGAACCATCGAGTCTTTGAACGCAAGTTGCGCTCGAGGCCATCAGGCTAAG +GGCACGCCTGCCTGGGCGTCGTGTGTTGCGTCTCTCCTACCAATGCTTGCTTGGCATATC +GCTAAGCTGGCATTATACGGATGTGAATGATTGGCCCCTTGTGCCTAGGTGCGGTGGGTC +TAAGGATTGTTGCTTTGATGGGTAGGAATGTGGCACGAGGTGGAGAATGCTAACAGTCAT +AAGGCTGCTATTTGAATCCCCCATGTTGTTGTATTTTTTCGAACCTACACAAGAACCTAA +TTGAACCCCAATGGAGCTAAAATAACCATTGGGCAGTTGATTTCCATTCAGATGCGACCC +CAGGTCAGGCGGGGCCACCCGCTGAGTTGAGGC +>gi|2765656|emb|Z78531.1|CFZ78531 C.fasciculatum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGACAGCAGAACATA +CGATCGAGTGAATCCGGAGGACCCGTGGTTACACGGCTCACCGTGGCTTTGCTCTCGTGG +TGAACCCGGTTTGCGACCGGGCCGCCTCGGGAACTTTCATGGCGGGTTTGAACGTCTAGC +GCGGCGCAGTTTGCGCCAAGTCATATGGAGCGTCACCGATGGATGGCATTTTTGTCAAGA +AAAACTCGGAGGGGCGGCGTCTGTTGCGCGTGCCAATGAATTTATGACGACTCTCGGCAA +CGGGATATCTGGCTCTTGCATCGATGAAGAACGCAGCGAAATGCGATAAGTGGTGTGAAT +TGCAGAATCCCGCGAACCATCGAGTCTTTGAACGCAAGTTGCGCCCGAGGCCATCAGGCT +AAGGGCACGCCTGCCTGGGCGTCGTGTGCTGCGTCTCTCCTGATAATGCTTGATTGGCAT +GCGGCTAGTCTGTCATTGTGAGGACGTGAAAGATTGGCCCCTTGCGCCTAGGTGCGGCGG +GTCTAAGCATCGGTGTTCTGATGGCCCGGAACTTGGCAGTAGGTGGAGGATGCTGGCAGC +CGCAAGGCTGCCGTTCGAATCCCCCGTGTTGTCGTACTCGTCAGGCCTACAGAAGAACCT +GTTTGAACCCCCAGTGGACGCAAAACCGCCCTCGGGCGGTGATTTCCATTCAGATGCGAC +CCCAGTCAGGCGGGCCACCCGTGAGTAA +>gi|2765655|emb|Z78530.1|CMZ78530 C.margaritaceum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAAACAACATAATAAA +CGATTGAGTGAATCTGGAGGACTTGTGGTAATTTGGCTCGCTAGGGATATCCTTTTGTGG +TGACCATGATTTGTCATTGGGCCTCATTGAGAGCTTTCATGGCGGGTTTGAACCTCTAGC +ACGGTCCAGTTTGCACCAAGGTATATAAAGAATCACCGATGAATGACATTATTGCCCCAC +ACAACGTCGGAGGTGTGGTGTGTTAATGTTCATTCCAATGAATTTTGATGACTCTCGGCA +GACGGATATCTTGACTCTTGCATCGATGAAGAACGCACCGAAATGTGATAAGTGGTGTGA +ATTGCAGAATCCCGTGAACCATCGAGTCTTTGAACGCAAGTTGCGCCCGAGGCCATCAGG +CTAAGGGCACGCCTGCCTGGGCGTCGTATGTTTTATCTCTCCTTCCAATGCTTGTCCAGC +ATATAGCTAGGCCATCATTGTGTGGATGTGAAAGATTGGCCCCTTGTGCTTAGGTGCGGT +GGGTCTAAGGATATGTGTTTTGATGGTCTGAAACTTGGCAAGAGGTGGAGGATGCTGGCA +GCCGCAAGGCTATTGTTTGAATCCCCCATGTTGTCATGTTTGTTGGGCCTATAGAACAAC +TTGTTTGGACCCTAATTAAGGCAAAACAATCCTTGGGTGGTTGATTTCCAATCAGATGCG +ACCCCAGTCAGGGGGCCACCCCAT +>gi|2765654|emb|Z78529.1|CLZ78529 C.lichiangense 5.8S rRNA gene and ITS1 and ITS2 DNA +ACGGCGAGCTGCCGAAGGACATTGTTGAGACAGCAGAATATACGATTGAGTGAATCTGGA +GGACTTGTGGTTATTTGGCTCGCTAGGGATTTCCTTTTGTGGTGACCATGATTTGTCATT +GGGCCTCATTGAGAGCTTTCATGGCGGGTTTGAACCTCTAGCACGGTGCAGTTTGCACCA +AGGTATATAAAGAATCACCGATGAATGACATTATTGTCAAAAAAGTCGGAGGTGTGGTGT +GTTATTGGTCATGCCAATGAATTGTTGATGACTCTCGCCGAGGGATATCTTGGCTCTTGC +ATCGATGAAGAATCCCACCGAAATGTGATAAGTGGTGTGAATTGCAGAATCCCGTGAACC +ATCGAGTCTTTGAACGCAAGTTGCGCCCGAGGCCATCAGGCTAAGGGCACGCCTGCCTGG +GCGTCGTATGTTTTATCTCTCCTTCCAATGCTTGTCCAGCATATAGCTAGGCCATCATTG +TGTGGATGTGAAAGATTGGCCCCTTGTGCTTAGGTGCGGTGGGTCTAAGGATATGTGTTT +TGATGGTCTGAAACTTGGCAAGAGGTGGAGGATGCTGGCAGCCGCAAGGCTATTGTTTGA +ATCCCCCATGTTGTCATATTTGTTGGGCCTATAGAACAACTTGTTTGGACCCTAATTAAG +GCAAAACAATCCTTGGGTGGTTGATTTCCAATCAGATGCGACCCCAGTCAGCGGGCCACC +AGCTGAGCTAAAA +>gi|2765652|emb|Z78527.1|CYZ78527 C.yatabeanum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGACAGTAGAATATA +TGATCGAGTGAATCTGGATGACCTGTGGTTACTCGGCTCGCCTGATTTGTTGTTGGGCTT +CCTTAGGAGCTTACATGGCGGGTTTGAACCTCTACCACGGTGCAGTTTGCGCCAAGTCAT +ATGAAGCATAACTGCAAATGGCACTACTGTCACCAAAAGTTGGAGTGGCAGTGTGTTATT +GCATGCGCTAATGGATTTTTGATGACTCTCGGCCAACGGATATCTGGCTCTTTGCATCGA +TGAAGGAACGCAGCGAAATGCGATAAGTGGTGTGAATTGCAGAATCCCGCGAACCATCGA +GTCTTTGAACGCAAGTTGCGCCCGAGGCCATCAGGCTAAGGGCACGCCTGCCTGGGCGTC +GTGTATCGCATCTCTCTTGCCAATGCTTACCCGGCATACAACTAGGCTGGCATTGGGTGG +ATGTGAAAGATTGGCCCCTTGTGCCTAGGTGCGGTGGGTCTAAGGATTGATGTTTTGATG +GATCGAAACCTGGCAGGAGGTGGAGGATGCTGGAAGCCGCAAGGCTGTCGTTCGAATCCC +CCATGTTGTCATATTTGTCGAACCTATAAAAGAACATGCTTGAACCCCAATGGATTGTAA +AATGACCCTTGGCGGTTGATTTCCATTTAGATGCGACCCCAGGTCAGGCGGGCCACCC +>gi|2765651|emb|Z78526.1|CGZ78526 C.guttatum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGACAGTAGAATATA +TGATCGAGTGAATCTGGAGGACCTGTGGTTACTCGGCTCCCCTGATTTGTTGTTGGGCTT +CCTTAGGAGCTTACATGCCGGGTTTGAACCTCTACCACGGTGCAGTTTGCGCCAAGTCAT +ATGAAGCATAACTGAACAATGGCATTATTGTCACCAAAAGTTGGAGTGGCAGTGTGCTAT +TGCATGCGCTAATGGATTTTTGATGACTCTCGCCAACGGATATCTTGGCTCTTGCATCGA +TGAAGAACCCAGCGAAATGCGATAAGTGGTGTGAATTGCAGAATCCCGCGAACCATCGAG +TCTTTGAACGCAAGTTGCGCCCGAGGCCATCAGGCTAAGGGCACGCCTGCCTGGGCGTCG +TGTATCGCATCTCTCTTGCCAATGCTTACCCGGCATACAACTAGGCTGGCATTGTGCGGA +TGTGAAAGATTGGCCCCTTGTGCCTAGGTGCGGTGGGTCTAAGGATTGATGTTTTGATGG +ATCGAAACCTGGCAGGAGGTGGAGGATGCTGGAAGCCGCAAGGCTGTCGTTCGAATCCCC +CATGTTGTCATATTTGTCGAACCTATAAAAGAACATGCTTGAACCCCAATGGATGTAAAA +TGACCCTTGGCGGTTGATTTCCATTTAGATGCGACCCCAGGTCAGGCGGGGCCACCCGCT +GAGTTTATGT +>gi|2765650|emb|Z78525.1|CAZ78525 C.acaule 5.8S rRNA gene and ITS1 and ITS2 DNA +TGTTGAGATAGCAGAATATACATCGAGTGAATCCGGAGGACCTGTGGTTATTCGGCTTGC +CGAGGGCTTTGCTTTTGTGGTGACCCAAATTTGTCGTTGGGCCTCCTCGGGAGCTTTCAT +GGCAGGTTTCAAACTCTAGCACGGCACAGTTTGTGCCAAGTCATATGAAGCATCACCGAC +AAATGACATTATTGTCAAAAAAGTTGGAGGGGCGGTGTCCTCCTGTGCATGCCGAATATA +ATTTTGATGACTCTCGACAAGCGGATATCTTGGCTCTTGCATCGGATGAAGAACCCAGCG +AAATGCGATAAGTGGTGTGAATTGCAAGATCCCGTGAACCATCGAGTCTTTTGAACGCAA +GTTGCGCCCGAGGCCATCAGGCTAAGGGCACGCCTGCCTGGGCGTCGTGTGTTGTGTCTC +TCTTGCCAATGCCTGTCCATATATCTAGGCTTGCATTGTGCGGATGCGAAAGATTGGCCC +CTTGTGCCTTGGCGCGTTGGGTCTAAGGAATGTTTTGATGGCCCGAAACTTGGCAGGAGG +TGGAGGACATTGGCTGCCACAAGGTTGTCATTTAAATCCCCCATGTTATCGTATTTATCG +GACCTATATAATAACTTGTTTGAACCCCAGTGGAGGCAAAATGACCCTTGGATGGTTGAC +TGCCATTCATATGCGACCCCAGGTCAGGCGGGCCACCCGCTGCA +>gi|2765649|emb|Z78524.1|CFZ78524 C.formosanum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGATAGTAGAATATA +TGATTGAGTGAATATGGAGGACATGTGGTTACTTGGCTCGTCAGTGCTTTGCTTTTGTGG +TGACCTTAATTGGGCCTCCTTAGGAGCTTTCATGGCGGGTTCAAACCTTTAGCACGGCGC +AGTTTGTGCCAAGTCATATAAGCATCCCTGATGAATGGCATTGTTGTTAAAAAAGTCGGA +GGGGCGGCATGCTGTTGTGCATGCTAATGAATTTTTTGATGACTCTCGCAACGGAACTTG +GCTCTTTACATCCGATGAAGAACGCAGCGAAATGCGATAAGTGGTGTGAATTGCAGAATC +CCGTGAACCATCGAGTATTTGAACGCAAGTTGCGCCCAAGGCCATCAGGCTAAGGGCACG +CCTGCCTGGGCGTCGTGTGCTGCATCTCTCCTNCCAATGCTTGCCCAGCATATAGCTAGG +TTAGCATTGTGCGGATGAAATATTGGCCCCTTGTGCTTAGGTGCGGTGGGTCTAAGGATT +AGTATTTTGATAGCTCGGAACTCGGCAGGAGGTGGAGAATGTTGGTAGCTGCAAGGCTGC +CATTTGAATTCCCCATGTTGTCGTATTTGTTGAACCTATAAAAGAACTTGTTTGAACCCC +AATGAAGGAAAAATGACCCTTGGGCGGTTGATTTTCATTCAGATGCAACCCCAGGTCAGG +TGGCCACCCTGAGATTAAGC +>gi|2765648|emb|Z78523.1|CHZ78523 C.himalaicum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACCAGGTTTCCGTAGGTGAACCTGCGGCAGGATCATTGTTGAGACAGCAGAATATA +TGATCGAGTGAATCCGGTGGACTTGTGGTTACTCAGCTCGACATAGGCTTTGCTTTTGCG +GTGACCCTAACTTGTCATTGGGCCTCCTCCCAAGCTTTCCTTGTGGGTGTGAACCTCTAG +CACGGTGCAGTATGCGCCAAGTCATATGAAGCATCACTGAGGAATGACATTATTGTCCCA +AAAGCTAGAGTGGAAGCGTGCTCTTGCATGCATGCATAATGAATTTTTTATTGACTCTCG +ACATATGTGGTGTGAATTGCAGAATCCCGTGAACCATCGAGTCTTTGAACGCAAGTTGCG +CCCGATGCCATCAGGCTAAGGGCACGCCTGCCTGGGCGTCGTGTGCTGCGTCTCTCCTAT +CAATGCTTTCCTATCATATAGATTGGTTTGCATTGCGTGGATGCGAAAGATTGGCCCCTT +GTGCCTAGGTGCGGTGGGTCTAAGGACTAGTGTTTTGATGGTTCGAAACCTGGCAGGAGG +TGGAGGATGTTGGCAGCTATAAGGCTATCGTTTGAACCCCCCATATTGTCGTGTTTGTCG +GACCTAGAGAAGAACCTGTTTGAATCCCAATGGAGGCAAACAACCCTCGGGCGGTTGATT +GCCATTCATATTGCGACCCAGGTCAGGCGGGGCCACCGCTGAGTTTAAG +>gi|2765647|emb|Z78522.1|CMZ78522 C.macranthum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGACAGCAGAATATA +TGATCGAGTGAATCCGGTGGACTTGTGGTTACTCAGCTCGACATAGGCTTTGCTTTTGCG +GTGACCCTAATTTGTCATTGGGCCTCCCCCCAAGCTTTCCTTGTGGGTTTGAACCTCTAG +CACGGTGCAGTATGCGCCAAGTCATATGAAGCATCACTGATGAATGACATTATTGTCCAA +AAAGTTGGAGTGGAAGCGTGCTATTGCATACATGCAAATGAATTTTTTATGACTCTCGAC +ATATCGTGGTGTGATCGCAGAATCCCGTGAACCATCGAGTCTTTGAACGCAAGTTGCGCC +CGATGCCATCAGGCTAAGGGAACGCCTGCCTGGGCGTCGTGTGCTGCGTCTCTCCTGTCA +ATGGTTATACGTCATATAGACAGGTTTGCATTGCGTGGATGTGAAAGATTGGCCCCTTGT +GCCTAGGTGCGGTGGGTCTAAGGACTAGTGTTTTGATGGTTCGAAACCTGGCAGGAGGTG +GAGGATGTTGGCAGCTATAAGGCTATCATTTGAATCCCCCATATTGTCGTGTTTGTCGGA +CCTAGAGAAGAACATGTTTGAATCCCAATGGGGGCAAACAACCCTCGGGCGGTTGATTGC +CATTCATATGCGACCCCAGGTCAGGCGGCCACCCGCTGAG +>gi|2765646|emb|Z78521.1|CCZ78521 C.calceolus 5.8S rRNA gene and ITS1 and ITS2 DNA +GTAGGTGAACCTGCGGAAGGATCATTGTTGAGACAGTAGAATATATGATCGAGTGAATCC +GGTGGACTTGTGGTTACTCAGCTCGACATAGGCTTGGCTTTGGCGGTGACCCTAATTTGC +CATTGGGCCTCCTCCAAAGCTTTCCTTGTGGGTTTGAACCTCTAGCACGGTGCAGTATGC +GCCAAGTCATATGAAGCATCACCGATGAATGACATTATTGTCAAAAAGTTGGAGTGGAAG +CGTGCTATTGCATGCATGCAAATGAATTTTTTATGACTCTCGACAACGGATATCTTGGCT +CTTGCATCGATGAAGAACGCAGCAAAATGCGATAAGTGGTGTGAATTGCAGAATCCCGTG +AACCATCGAGTCTTTGAACGCAAGTTGCGCCCGATGCCATCAGGCTAAGGGCACGCCTGC +CTGGGCGTCGTGTGCTGCGTCTCTCCTGTCAATGCTTTCATGTCATATAGATAGGTTTGC +ATTGCGTGGATGTGAAAGAATGGCCCCTTGTGCCTAGGTACGGTGGGTCTAAGGACTAGT +GTTTTGATGGTTCGAAACCTGGCAGGAGGTGGAGGATGTTGGCAGCTATAAGGCTATCAT +TTGAATCCCCCATATTGTCGTGTTTGTCGGACCTAGAGAAAAACATGTTTGAATCCCAAT +GGAGGCAAACAACTCTCGGGCGGTTGATTGCCATTCATATGCGACCCCAGGTCAGGCGGG +GCCACC +>gi|2765645|emb|Z78520.1|CSZ78520 C.segawai 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGACAGCAGAATATA +TGATCGAGTGAATCCGGTGGACTTGTGGTTACTCAGCTCGCCATAGGCTTTGCTTTTGCG +GTGACCCTAATTTGTCATTGGGCCTCCTCCAAAGCTTTCCTTGTGGGTTTGAACCTCTAG +CACGGTGCAGTATGCGCCAAGTCATATGAATCATCACCGATGAATGACATTATTGTCCAA +AAAGTTGGAGTAGAAGCGTGCTATTGCATGCATGCAATAGAATATTTTATGACTCTCGAC +AAGGGATATCTTGGCTCTTGCATCGGATGAAGAACGCAGCGAAATTGTGATAAGTGGTGT +GAATTGCAGAATCCCGTGAACCATCGAGTATGTGAACGCAAGTTGCGCCCGATGCCATCA +GGCTAAGGGCACGCCTGCCTGGGCGTCGTGTGCTGCGTCTCTCCTGTCAATGCTTTCCTG +TCATATCGATAGGTTTGCATTGTGTGGATGTGAAAGATTGGCCCCTTGTGCCTAGGTGCG +GTGGGTCTAAGGACTAGTGTTTTGATGGTTCGAAACCTGGCAGGAGGTGGAGGATGTTGG +CAGCTATAAGGTTGTCATGTGAATCCCCCATATTGTCGTGTTTGTCGGACCTGGAGAAGA +ACCTGTTTGAATCCCAATGGAGGCAAACAACCCTCGGGCGGTTGATTGCCATTCATATGC +GACCCCAGGTCAGGCGGGCCACCCGCTGAGTTT +>gi|2765644|emb|Z78519.1|CPZ78519 C.pubescens 5.8S rRNA gene and ITS1 and ITS2 DNA +ATATGATCGAGTGAATCTGGTGGACTTGTGGTTACTCAGCTCGCCATAGGCTTTGCTTTT +GCGGTGACCCTAATTTGTCATTGGGCCTCCTCCCAAGCTTTCCTTGTGGGTTTGAACCTC +TAGCACGGTGCAGTATGCACCAAGTCATATGAAGCATTGCCGATGAATGACATTATTGTC +CAAAAGTTGGAGTGGAAGCGTGCTACTGCATGCATGCAAATGAATTTTTTTATGACTCTC +GACAACGGATATCTTGGCTCTTGCATCGATGAAGAACGCAGCGAAATGCGATAAGTGGTG +TGAATTGCAGAATCCCGTGAACCATCGAGTCTTTGAACGCAAGTTGCGCCCGATGCCATC +AGGCTAAGGGCACGCCTGCCTGGGCGTCGTGTGCTGCGTCTCTCCTGTCAATGCTTTCCC +ATCATATAGATAGGTTTGCATTGTGTGGATGTGAAAGATTGGCCCCTTGTGCCTAGGTGC +GGTGGGTCTAAGAACTTAATGTTTTGATGGTTCGAAACCTGGCAGGAGGTGGAGGATGTT +GGCAGCTATATAAGGCTATCATTTGAATCCCCCATATTGTCGCGTTTGTTGGACCTAGAG +AAGAACATGTTTGAATCCCAATGGAGGCAAACAACCCTCGGGCGGTTGATTGCCATTCAT +ATGCGACCCCAGGTCAGGCGGGGCCACCCGCTGAGTTTA +>gi|2765643|emb|Z78518.1|CRZ78518 C.reginae 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGGAGGATCATTGTTGAGATAGTAGAATATT +CGATCGAGTGAATCCGGAGGACTTGTGGTTACTCGGCTCGTCGAAGGCTTAACTTTTGTG +GTGACCCTGATTTGTAGTTGGGCATCCTCGAGAGCTTTTATGGCGGGTTTGAGCCTCTAT +CACGGCGCAGTTTGCGCCAAGTCATATGAAGCATCGCCGACGAATTACATTATTGTCCCC +CAAACTCGGATGGACGGTGTGTGTTACGCATACCCGTGAACCATCGAGTCTTTGAACGCA +AGTTGCGCCCAAGGCCATCAGGCTAAGGGCACGCCTGCCTGGGCGTCGTGTGCTGCATCT +CTTTTGCCAATGCTTGCTCGACATACAATTAGGCCAGTATTGCATAGATATGAAAGATTG +ACCCCTTGTGCTTAGGTGCGGTGGGTCTAAGGATTGGTGTTTTGATGGCCCAAACCCCGG +CAGGAGGTGGAGCATGTTGATAGTCGCAAGGCTGTCGTTCAAATCCCACATGTTGTCGTA +TTTGCCGGACCCACAGAAGAACCTATTTGAACCCCTATGGAGGCAAAACAACCCTTGAGC +GATTGATTGCCATTCAGATACGACCCCAGGTCAGGCGGGGCCACCCGCTGAGTTTTCC +>gi|2765642|emb|Z78517.1|CFZ78517 C.flavum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGACAGTAGAATATA +CGATCGAGTGAATCCAGAGGACTTGTGGTTACTCGGCTCGTCCAAGTCTTAGCTTTTGTG +GCCCTGATTTGTCGTTGGGCATCCTCAGGAGATTTTATGGCGGGTTTGAACCTCTATCAC +GGTGCAGTTTGCGCCAAGTCATATGAAGCATCACCGATGAATGACATTATTGTCACAAAA +GTCGGATGGGCGGTGTGCTGTTGTGCATGCCAATAAATTTTTGATGACTCTCGGCCAACG +GATATCTTGCTCTTCCATCGATGAAGAACGCAGCGAAATGCGATAAGTGGTGTGAATTGC +AGAATCCCGTGAACCATCGAGTCTTTGAACGCAAGTTGCGCCCAAGGCCATCAGGCTAAG +GGCACGCCTGCCTGGGCGTCGTGTGCTGCATCTCTTTTGCCAATGCTTGCCCGACATACA +ATTAGGACAGTATTGCATAGATATGAAAGATTGACCCCTTGTGCTTAGGTGCGGTGGGTC +TAAGGATTGGTGTTTTGGTGGCCCGAACCCCGGCAGGAGGTGGATCATGTTGATAGTCGC +AAGACTGTCATTCAAATCCCACATGTTGTCGTATTTGTCGGACCCACAGAAGAACCTATT +TGAACCCCAATGGAGGCAAAACAACCCTCGAGCGATTGATTGCCATTCAGATACGACCCC +AGGTCAGGCGGGGCCACCCGCTGAGTTTAAGC +>gi|2765641|emb|Z78516.1|CPZ78516 C.passerinum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGACAGTATAATATA +TGATCGAGTGAATCCGGAGGACTTGTGGTTACTCGGCTCGTCCAAGTCTTAGCTTTTGTG +GCCCTGATTTGTCGTTGGGCATCCTCAGGAGCTTTTATGGCGGGTTTGAACCTCTATCAC +GGCGCAGTTTGCGCCAAGTCATATGAAGCATCACCGACGAATGACATTATTGTCACCAAA +GTCGGATGGGCGGTGTGCTATTGTGCATACCAATAATTTTTTGATGACTCTCGTCAACGG +ATATCTTAGCGAAATGCGATAAGTGGTGTGAATTGCAGAATCCCGTGAACCATCGAGTCT +TTGAACGCAAGTTGCGCCCAAGGCCATCAGGCTAAGGGCACGCCTGCCTGGGCGTCGTGT +GCTGCATCTCTTTTGCCAATGCTTGCCCGACATACAATTAGGCCAGTATTGCATAGATAT +GAAAGATTGACCCCTTGTGCTTAGGTGCGGTGGGTCTAAGGATTGGTGTTTTGATGTCCC +GAACCCCGGCAGGAGGTGGAGCATGTTGATAGTCGCAAGACTATCGTTCAAATCCCACAT +GTTGTCGTATTTGTCGGACCCACAGAAGAACCTATTTGAACCCCAATGGAGGCAAAACAA +CCCTCGAGTGATTGATTGCCATTCAGATATGACCCCAGGTCAGGCGGGGCCACCCGCTGA +GTTTAA +>gi|2765640|emb|Z78515.1|MXZ78515 M.xerophyticum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGCTGAGACCGTAGAATAAA +CGATCGAGTTAATCTGGAGGACCGGTGTACTTCGATCTCCCAGGGGCTTTCGCTACTGTG +GTGGCCTTTGATCTGCCATCGGGCCTCCTTGGGAGTGTTCTTGAAGGCGATCAAACTTCT +AGCCCGGCGCAGCTTCGCGCCAAGTCTTTTGAGACAAGAATCGGCATAGGGGTGTTCCCT +TGTAGCCGGTGGGGGTGGCACTTGATTCGTGCCCCCCAAGTTACATTTTTACAACTCTCG +GCAACGGATATCTCGGCTCTTGCATCGATGGAGGACGCAGCGAAATGCGATAAGTGGTGT +GAATTGCAGAATCCCGTGAACATCGAGTCTTTGAACGCAAGTTGCGCTCGAGGCCGTCAG +GCTAAGGGCACGCCTGCCTGGGCGTTGTGTACTGTGTCTCTCCCACCAATGGTTGTCCAA +GAATACCGTTCGGTCGGTGCGGATGTGAGTTTGGCCCCTTGTTCTTCGGTTCAATGGGTC +TAAGACCTCGGGCTTTTGATGGTCCAAAATTCGACAAGAGGTGGATGGGCAATGGCTGAG +CCAAAGCTGTTGTGCGAATGCCGTATGTTGTCCGATTTGATGGGCCATCATAATTCGTAG +GACCCTTCGGAACCCCATTGGTGCCACATCAACCCAACCCATGGGCGGTTGATTGCCATT +TGGAAGCAACCCCAGGTCAGGTGAGGCCACCCGCTGAGTTTAAGC +>gi|2765639|emb|Z78514.1|PSZ78514 P.schlimii 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGGACCTTCGGGAGGATCATTTTTGAAGCCCCCAAATATA +CGATCGAGATAATCCGGAGGACCGGTGTACTTTGGTCTCCCAGGGGCTTCCGCCGCTGTG +GTGACCATGATTTCCCATCGAACCTCCTTGGGAGAGTTCTCTATGGCAATTGAACCCTTG +GCCCGGCGCAGTTTCGCTCCAAGTCAAATGAGATAGAACCGACAAGGGTCTTCGTCCTCC +ATGGATGGACCGGGGAGGGCCGGCGTGCTGCTGTGCCCCCTTAAGATTCGTCTGACAACT +CTCGTCAACGGATATCTCGGCTCTTGCATCGATGAAGAACCCAGCGAAATGTGATAAGTG +GTGTGAATTGCAGAATCCCGTGAACCATCGAGTCTTTGAACGCAAGTTGCGCCCGAGGCC +ATCAGGCTAAGGGCACGCCTGCCTGGGCGTTGCGTGCTGCATCTCTCCCAATGCTAAGGT +TGAACAGCCATACTGTTCGGCCGGCGAGGATGAGAGTTTGGCCCCTTGTTCTTCGGTGCG +ATGGGTCCAAGACTTGGGCTTGTGACGGTCCACAAATCCGGCAAGAGGTGGACGGACGGT +GGCTGCGACAAAGCTGTTGTGCGAATGCCCTATGTTGTCGTATTTGATGGGCCGGAATGA +TCCCTTTCGAACCCCGTCGGAGGCACGTCGACCCAACCCATGGGCGGTTGACGGCCATTA +GGATGCAACCCCAGGTCAGGTGAGACTACCCGCTA +>gi|2765638|emb|Z78513.1|PBZ78513 P.besseae 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGACCGCCAAATACA +CGATCGAGTTAATCCGGAGGACCGGTGTACTTTGGTCTCCCAGGGGCTTCCGCCGCTGTG +GTGACCATGATTTGCCATCGAGCCTCATTGGGAGATTTCTCCATGGCAATTGAACCCTTG +GCCCGGCGCAGTTTCGCGCCAAGTCAAATGAGATAGAACCGGCAAGGGCATCGTCCTCCA +TGGAGCCGGGGAGGCCGGCATGCTGCTGTGCCCGAAAGAATTTTCGACAACTCTCGGCAA +CGGATATCTCGGCTCTTGCATCGATGAAGAACGCAGCGAAATGTGATAAGTGGTGTGAAT +TGCAGAATCCCGTGAACCATCGAGTCTTTGAACGCAAGTTGCGCCCGAGGCCATCAGGCT +AAGGGCACGCCTGCCTGGGCGTTGCGTGCTGCATCTCTCCCAATGCTAAGGTTGAACAGC +CATACTGTTCGGCCGGCGAGGATGAGAGTTTGGCCCCTTGTTCTTCTGTGCGATGGGTCC +AAGACTTGGGCTTGTGACGGTCCACAAATCCGGCAAGAGGTGGACGGACGGTGGCTGCGA +CGAAGCTTTTGTGCGAATGCCCTATGTTGTCGTATTTGATGTGCCAGAACGATCCCTTTC +GAACCCCTTCGGAGGCACGTCGACCCAACCCATGGGCGGTGACGCCATTAGGATGCAACC +CAGTCAGTGAGCTACCGCTGAG +>gi|2765637|emb|Z78512.1|PWZ78512 P.wallisii 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGGACCTTCGGGAGGATCATTTTTGAAGCCCCCAAAAAAA +CGATCGAATTAATCCGGAGGGCCGGTGTAGTTTGGTCTCCCAGGGGCCTTGGCTACTGTG +GTGACCGTGAATTTCCGTCGAACCCTCTGGGAGGAATTCTTGATGGCAAATGAAACCCTT +GGCCCGGCGCAGTTTCGCCCCAAATCAAATGAGATGGAACCGGCGGAGGGCATCGTCCCC +CATGGAACCGGGGAGGGCCGGCGTTCTTCCGTTCCCCCAATGAAATTATTTTTTGACAAC +TCTCGCAACGGATATCTCGGCTCTTGCATCGATGAAGAACGCAGCGAAATGTGATAAGCT +GGTGTGAATTGCAGAATCCCGTGAACCATCGAGTCTTTGAACGCAAGTTGCGCCCGAGGC +CATCAGGCTAAGGGCACGCCTGCCTGGGCGTTGCGTGCTGCATCTCTCTCCCATTGCTAA +GGCTGAACAGGCATACTGTTCGGCCGGCGCGGATGAGTGTTTGGCCCCTTGTTCTTCGGT +GCGATGGGTCCAAGACCTGGGCTTTTGACGGCCGGAAATCCGGCAAGAGGTGGACGGACG +GTGGCTGCGACGAAGCTGTCGTGCGAATGCCCTGCGTTGTCGTATTTGATGGGCCGGAAT +AAATCCCTTTTGAACCCCATTGGAGGCACGTCAACCCGTGGGCGGTCGACGGTCATTTGG +ATCCAACCCCAGGTCAGGTGAGGCCACCCGCTGAGTTTAAGC +>gi|2765636|emb|Z78511.1|PEZ78511 P.exstaminodium 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTTCGGAAGGATCATTGTTGAGACCCCCAAAAAAA +CGATCGAGTTAATCCGGAGGACCGGTGTAGTTTGGTCTCCCAGGGGCTTTGGCTACTGTG +GTGGCCGTGAATTTCCGTCGAACCTCCTTGGGAGAATTCTTGATGGCAATTGAACCCTTG +GCCCGGCGCAGTTTCGCCCCAAGTCAAATGAGATGGAACCGGCGGAGGGCATCGTCCTCC +ATGGAACCGGGGAGGGCCGGCGTTCTTCCGTTCCCCCCATGAATTTTTTTTTGACAACTC +TCGGCAACGGATATCTCGGCTCTTTGCATCCGATGAAAGAACCCAGCGAAATGTGATAAG +TGGTGTGAATTGCAGAATCCCGTGAACCATCGAGTCTTTGAACGCAAGTTGCGCCCGAGG +CCATCAGGCTAAGGGCACGCCTGCCTGGGCGTTGCGTGCTGCATCTCTCTCCCATTGCTA +AGGCTGAACAGGCATACTGTTCGGCCGGCGCGGATGAGTGTTTGGCCCCTTGTTCTTCGG +TGCGATGGGTCCAAGACCTGGGCTTTTGACGGCCGGAAATCCGGCAAGAGGTGGACGGAC +GGTGGCTGCGACGAAGCTGTCGTGCGAATGCCCTACGCTGTCGTATTTGATGGGCCGGAA +TAAATCCCTTTTGAGCCCCATTGGAGGCACGTCAACCCGTGGGCGGTCGACGGCCATTTG +GATGCAACCCCAGGTCAGGTGAGGA +>gi|2765635|emb|Z78510.1|PCZ78510 P.caricinum 5.8S rRNA gene and ITS1 and ITS2 DNA +CTAACCAGGGTTCCGAGGTGACCTTCGGGAGGATTCCTTTTTAAGCCCCCGAAAAAACGA +TCGAATTAAACCGGAGGACCGGTTTAATTTGGTCTCCCCAGGGGCTTTCCCCCCTTGGTG +GCCGTGAATTTCCATCGAACCCCCCTGGGAGAATTCTTGGTGGCCAATGGACCCTTGGCC +CGGCGCAATTTCCCCCCCAATCAAATGAGATAGGACCGGCAGGGGGCGTCCCCCCCCATG +GAACCGGGGAGGGCCGGCATTCTTCCGTTCCCCCCTCGGATTTTTTGACAACTCTCGCAA +CGGATATCTCGCCTCTTTGCATCGGATGGAAGAACGCAGCGAAATGTGATAAGTGGTGTG +AATTGCAGAATCCCGTGAACCATCGAGTCTTTGAACGCAAGTTGCGCCCGAGGCCATCAG +GCTAAGGGCACGCCTGCCTGGGCGTTGCGTGCTGCATCTCTCCCATTGCTAAGGTTGAAC +GGGCATACTGTTCGGCCGGCGCGGATGAGAGATTGGCCCCTTGTTCTTCGGTGCGATGGG +TCCAAGACCTGGGCTTTTGACGGTCCAAAATCCGGCAAGAGGTGGACGGACGGTGGCTGC +GACAAAGCTGTCGTGCGAATGCCCTGCGTTGTCGTTTTTGATGGGCCGGAATAAATCCCT +TTTGAACCCCATTGGAGGCACGTCAACCCATGGGCGGTTGACGGCCATTTGGATGCAACC +CCAGGTCAGGTGAGCCACCCGCTGAGTTTA +>gi|2765634|emb|Z78509.1|PPZ78509 P.pearcei 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGACCGCCAAATATA +CGATCGAGTTAATCCGGAGGACCGGTGTAGTTTGGTCTCCCAGGGGCTTTCGCCGCTGTG +GTGACCGTGATTTGCCATCGAGCCTCCTTGGGAGATTTCTTGATGGCAATTGAACCCTTG +GCCCGGCGCAGTTTCGCGCCAAGTCATATGAGATAGAACCGGCGGAGGGCGTCGTCCTCC +ATGGAGCGGGGAGGGCCGGCATGCTCCGTGCCCCCCCATGAATTTTTCTGACAACTCTCG +GCAACGGACGTAACAAGGTTTAAATGTGATAAGCAGGTGTGAATTGCAGAATCCCGTGAA +CCATCGAGTCTTTGAACGCAAGTTGCGCCCGAGGCCATCAGGTTAAGGGCACGCCTGCCT +GGGCGTTGCGTGCTGCATCTCTCCCATTGCTAAGGTTGAACGGGCATACTGTTCGGCCGG +CGCGGATGAGAGTTTGGCCCCTTGTTCTTCGGTGCGATGGGTCCAAGACCTGGGCTTTTG +ACGGTCCAAAATCCGGCAAGAGGTGGACGGACGGTGGCTGCGACAGAGCTGTCGTGCGAA +TGCCCTACGTTGTCGTTTTTGATGGGCCAGAATAAATCCCTTTTGAACCCCATTGGAGGC +ACGTCAACCCAATGGGGGGTGACGGGCATTTGGTTAACCCCGGCAAGTTAAGGCACCCGT +TAATTTTAGGA +>gi|2765633|emb|Z78508.1|PLZ78508 P.longifolium 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGACCGCCAAATATA +CGATCGAGTTAATCCGGAGGACCGGTGTAGTTTGGTCTCCCAGGGGCTTTCGCCGCTGTG +GTGACCGTGATTTGCCATCGAGCCTCCTTGGGAGATTTCTTGATGGCAATTGAACCCTTG +GCCCGGCGCAGTTTCGCGCCAAGTCATATGAGATAGAACCGGCAGGGGGCGTCGTCCTCC +ATGGAGCCGGGGAGGGCCGGCATGCTGCCGTGCCCCCAATGAATTTTTTGACAACTCTCG +GCAACGGATATCTCGGCTCTTGCATCGATGAAGAACGCAGCGAAATGTGATAAGTGGTGT +GAATTGCAGAATCCCGTGAACCATCGAGTCTTTGAACGCAAGTTGCGCCCGAGGCCATCA +GGCTAAGGGCACGCCTGCCTGGGCGTTGCGTGCTGCATCTCTCCCATTGCTAAGGTTGAA +CGGGCATACTGTTCGGCCGGCGCGGATGAGAGTTTGGCCCCTTGTTCTTCGGTGCGATGG +GTCCAAGACCTGGGCTTTTGACGGTCCAAAATCCGGCAAGAGGTGGACGGACGGTGGCTG +CGACAGAGCTGTCGTGCGAATGCCCTACGTTGTCGTATTTGATGGGCCGGAATAAATCCC +TTTGAACCCCATTGGAGGCACGTCAACCCCATGGGCGGTGACGGCCACTTGGATGCAACC +CAGTCAGTGAGCCACCGCTGA +>gi|2765632|emb|Z78507.1|PLZ78507 P.lindenii 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGACCCCCAAAAAAA +CGATCGAGTTAATCCGGAGGACCGGTGTAGTTTGGTCTCCCAGGGGCTTTGGCTACTGTG +GTGACCGTGAATTTCCGTCGAGCCTCCTTGGGAGATTTCTTGATGGCAATTGAACCCTTG +GCCCGGCGCAGTTTCGCCCCAAGTCAAATGAGATGGAACCGGCGGAGGGCATCGTCCTCC +ATGGAACCGGGGAGGGCCGGCGTGCTTCCGTCCCCCAATGAATTTTTTTGACAACTCTCG +CAACGGATATCTCGCTCTTGCATCGATGAAGAACACAGCGAAATGTGATAAGTGGTGTGA +ATTGCAGAATCCCGTGAACCATCGAGTCTTTGAACGCAAGTTGCGCCCGAGGCCATCAGG +CTAAGGGCACGCCTGCCTGGGCGTTGCGTGCTGCATCTCTCTCCCATTGCTAAGGCTGAA +CAGGCATACTGTTCGGCCGGCGCGGATGAGTGTTTGGCCCCTTGTTCTTCGGTGCGATGG +GTCCAAGACCTGGGCTTTTGACGGCCGGAAATCCGGCAAGAGGTGGACGGACGGTGGCTG +CGACGAAGCTGTCGTGCGAATGCCCTGCGTTGTCGTATTTGATGGGCCGGAATAAATCCC +TTTGAACCCCATTGGAGGCACGTCAACCCGTGGCGGTCGACGGCCATTTGGATGCAACCC +AGTCAGTGAGCCACCGCTGA +>gi|2765631|emb|Z78506.1|PLZ78506 P.lindleyanum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGACCGCAAAATATA +CGATCGAGTTAATCCGGAGGACTGGTGTAGTTTGGTCTCCCAGGGGCGTTGGCTACTGCG +GTGACCATGATTTTCCATCGAGCCTCCTCGGGAGATTTCTTGATGGCAATTGAACCCTTG +GCCCGGCGCAGTTTCGCGCCAAGTCGTATGAGATAGAACCGGCAGAGGGCTTCGTCCTCC +ATGGAACCGGGGAGGACCGGCATGCCGCCGTACCCCCTTTGAATCGGGCTGACAACTCTC +GTTCAAGGAGCCCTCAGCTCATAATGTGATAAGTGGTGTGAATTGCAGAATCCCGTGAAC +CATCGAGTCTTTGAACGCAAGTTGCGCCCGAGGCCATCAGGCTAAGGGCACGCCTGCCTG +GGCGTTGCGTGCTGCATCTCTCCCGTTGCTAAGGTCGAACAGGCATATACTGTTCGGCCG +GCGCGGATGAGAGTTTGGCCCCTTGTTCTTCGGTGCGATGGGTCCAAGACCTGGGCTTTT +GACGGTAAAAAATCCGGCAAGAGGTGGACGGACGGTGGCTGCGACAAAGCTGTCGTGCGA +ATGCCCTACGTTGTCGTATTTGATGGGCCAGAATAAATCCCTTTTGAACCCCATTGGAGG +CACGTCAACCCATGGGCGGTTTGACGGCCATTGGATGCCAACCCAGTCAGGTGAGGCCAC +CCGCTGA +>gi|2765630|emb|Z78505.1|PSZ78505 P.sargentianum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGACCGCCAAATATA +CGATCGAGTTAATCCGGAGGACTGGTGTAGTTTGGTCTCCCAGGGGCGGTGGCTACTGCG +GTGACCATGATATTCCATCGAGCCTCCTCGGGAGATTTCTTGATGGCAATTGAACCCGTG +GCCCGGCGCAGTTTCGCGCCAAGTCGTATGAGATAGAACCGGCAGAGGTCTTCGTCCTCC +ATGGAACCGGGGAGGCCCGGCATACCACCATACCCCCAATGAATCTTTGTGACAACTCTC +GTCAATGTGATAAGTGGTGTGAATTGCAGAATCCCGTGAACCATCGAGTCTTTGAACGCA +AGTTGCGCCCGAGGCCATCAGGCTAAGGGCACGCCTGCCTGGGCGTTGCGTGCTGCATCT +CTCCCGTTGCTAAGGTCGAACAGGCATACTGTTCGGTCGGCGCGGATGAGAGTTTGGCCC +CTTGTTCTTCGGTGCGATGGGTCCAAGACCTGGGCTTTTGACGGTAAAAAATCCGGCAAG +AGGTGGACGGACGGTGGCTGCGACAAAGCTGTCGTGCGAATGCCCTGCGTTGTCGTATTT +GATGGGCCGGAATAAATCCCTTTTGAACCCCATTGGAGGCACGTCAACCCATGGGCGGTT +GACGGCCATTTGGATGCAACCCCAGGTCAGGTGAGCCACCCGCTGAGTTTT +>gi|2765629|emb|Z78504.1|PKZ78504 P.kaiteurum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTTCGGAAGGATCATTGTTGAGACCGCAAAATATA +CGATCGAGTTAATCCGGAGGACTGGTGTAGTTTGTCTCCCAGGGGCGTTGGCTACTGCGG +TGACCATGATTTTCCATCGAGCCTCCTCGGGAGATTTCTTGATGGCAATTGAACCCTTGG +CCCGGCGCAGTTTCGCGCCAAGTCGTATGAGATAGAACCGTCAGAGGGCATCGTCCCTCC +ATGGAGCCGGGGAGGGCCGGCATGCCCGCCGTGCCCCCAATGAATCTTTTTGACAACTCT +CGCAACGGATATCTCGCTCTTCATCGATGAAGAACGCAGCGAAATGTGATAAGTGGTGTG +AATTGCAGAATCCCGTGAACCATCGAGTCTTTGAACGCAAGTTGCGCCCGAGCCATCAGG +CTAAGGGCACGCCTGCCTGGGCGTTGCGTGCTGCATCTCTCCCGTTGCTAAGGTCGAACA +GACATACTGTTCGGCCGGCGCGGATGAGAGTTTGGCCCCTTGTTCTTCGGTGCGATGGGT +CCAAGACCTGGGCTTTTGACGGTACCAAATCCGACAAGAGGTGGACGGACGGTGGCTGCG +ACAAAACTGTCGTGCGAATGCCCTACGTTGTCGTATTTGATGGGCCAGAATAAATCCCTT +TTGAACCCCATTGGAGGCACGTCAACCCATGGGCGGTGACGGCCATTGGATGCAACCCCA +GTCAGTGAGCCACCGCTGAGTAA +>gi|2765628|emb|Z78503.1|PCZ78503 P.czerwiakowianum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACCAGGTTTCCGTAGGTGAACCTCCGGAAGGATCCTTGTTGAGACCGCCAAATATA +CGATCGAGTTAATCCGGAGGACCGGTGTAGTTTGGTCTCCCAGGGGCTTTCGCCGCTGTG +GTGTCCGTGATTTACCATCGAGCCTCCTTGGGAGATTTCTTGATGGCAATTGAACCCATG +GCCCGGCGCAGTTTCGCGCCAAGTCATATGAGATAGAACCGGCAGGGGGCGTCGTCCTCC +ATGGAACCGGGGAGGGCCGGCATGCTACCGTACCCCCAATGAATTATTTTGACAACTCTC +GGCAACGGAGTCTCAGCTCTTTGTGATAAGTGGTGTGAATTGCAGAATCCCGTGAACCAT +CGAGTCTTTGAACGCAAGTTGCGCCCGAGGCCATCAGGCTAAGGGCACGCCTGCCTGGGC +GTTGCGTGCTGCATCTCTCCCATTGCTAAGGTTGAACGGGCATACTGTTCGGCCGGCGCG +GACGAGAGTTTGGCCCCTTGTTCTTCGGTGCGATGGGTCCAAGACCTGGGCTTTTGACGG +TCCAAAATCCGGCAAGAGGTGGACGGACGGTGGCTGCGACAAAGCTGTCGTGCGAATGCC +CTACGTTGTCGTATTTGATGGGCCAGAATAAATCCCTTTTGAACCCCATTGGAGGCACGT +CAACCCATGGGCGGTTGACGGCCATTTGGATGCAACCCCAGGTCAGGTGAGCCACCCGCT +GAGATAA +>gi|2765627|emb|Z78502.1|PBZ78502 P.boissierianum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACCAGGTTTCCGTAGGTGAACCTCCGGAAGGATCATTGTTGAGACCGCCAAATATA +CGATCGAGTTAATCCGGAGGACCGGTGTAGTTTGGTCTCCCAGGGGCTTTCGCCCCTGTG +GTGACCGTGATTTGCCATCGAGCCTCCTTGGGAGATTTCTTGATGGCAATTGAACCCATG +ACCCGGCGCAGTTTCGCGCCAAGTCATATGAGATAGAACCGGCAGGGGTCGTCGTCCTCC +ATGGAGCCGGGGAGGGCCGGCATACTACCGTCCCCCCAATGAATTTTATATTGACAACTC +TCGGCCGGAATCTCGGCTCTTGCATCGATGGAAGGACGCAGCGAAAATGTGATAAGTGGT +GTGAATTGCAGAATCCCGTGAACCATCGAGTCTTTGAACGCAAGTTGCGCCCGAGGCCAT +CAGGCTAAGGGCACGCCTGCCTGGGCGTTGCGTGCTGCATCTCTCCCATTGCTAAGGTTG +AACGGGCGTACTGTTCGGCCGGCGCGGACGAGAGTTTGGCCCCTTGTTCTTCGGTGCGAT +GGGTCCAAGACCTGGGCTTTTGACGGTCCAAAATCCGGCAAGAGGTGGACGGACGGTGGC +TGCGACAAAGCTGTCGTGCGAATGCCCTACGTTGTCGTATTTGATGGGCCAGAATAAATC +CCTTTTGAACCCCATTGGAGGCACGTCAACCCATGGGCGGTTGACGGCCATTTGGATGCA +ACCCCAGGTCAGGTGAGGCCACCCCGTGAGTTTACGC +>gi|2765626|emb|Z78501.1|PCZ78501 P.caudatum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGACCGCAAAATATA +CGATCGAGTTAATCCGGAGGACCGGTGTAGTTTGGTCTCCCAGGGGCTTTGGTTACTGTG +GTGACCGTGACTTTGCCGTCGAGCCTCCTTGGGAGATTTCTTGATGGAAATTGAACCCTT +GGCCCGGCGCAGTTTCGCGCCAAGTCATATGAGATGGAACCGGCGGAGGGAATCGTCCTC +CATGGAGCCGGGGAGGGCCGGCGTGTTGCCGTGCCCCCAATGAATTTTTTTTTGGGCAAC +TCTCGGCCAAACGGGAAATCTCGGCTCCTTGCATCGGATGGAAGGACGCAGCGAAATTGT +GATAAGTGTTGTGAATTGCAGAATCCCGTGAACCATCGAGTCTTTTGAACGCAAGTTGCG +CCCGAGGCCATCAGGCTAAGGGCACGCCTGCCTGGGCGTTGCGTGCTGCATCTCTCTCCC +ATTGCTAAGGCTGAACAGGCATACTGTTCGGCCGGCGCGGATGAGTGTTTGGCCCCTTGT +TCTTCGGTGCGATGGGTCCAAGACCTGGGCTTTTGACGGCCGGAAATCCGGCAAGAGGTG +GACGGACGGTGGCTGCGACGAAGCTGTCGAGCGAATGCCCTACGCTGTCGTATTTGATGG +GCCGGAATAAATCCCTTTTGAACCCCATTGGAGGCACGTCAACCCGTGGGCGGTCGACGG +CCATTTGGATGCAACCCCAGGTCAGGTGAGGCCACCCGCTGAGTTTAAGA +>gi|2765625|emb|Z78500.1|PWZ78500 P.warszewiczianum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGCTCATTGTTGAGACCGCAAAATAAT +TGATCGAGTTAATCCGGAGGACCGGTGTAGTTTGGTCTCCCAGGGGCTTTGGTTACTGTG +GTGACCGTGACTTTGCCGTCGAGCCTCCTTGGGAGATTTCTTGATGGCAATTGAACCCTT +GGCCCGGCGCAGTTTCGCGCCAAGTCATATGAGATGGAACCGGCGGAGGGCATCGCCCTC +CATGGAGCCGGGGAGGGCCGGCGTCCTGCCGTGCCCCCAATGAATTTTTCTTTGGGAAAA +CTTCTCGGCCAACGGGAATCTCGGCTCTTTGCATCGGATGGAAGGACGCAGCGAATTGTG +ATAAGTGGTGTGAATTGCAGAATCCCGTGAACCATCGAGTCTTTGAACGCAAGTTGCGCC +CGAGGCCATCAGGCTAAGGGCACGCCTGCCTGGGCGTTGCGTGCTGCATCTCTCTCCCAT +TGCTAAGGCTGAACAGGCATACTGTTCGGCCGGCGCGGATGAGTGTTTGGCCCCTTGTTC +TTCGGTGCGATGGGTCCAAGACCTGGGCTTTTGACGGCCGGAAATCCGGCAAGAGGTGGA +CGGACGGTGGCTGCGACGAAGCTGTCGTGCGAATGCCCTACGCTGTCGTATTTGATGGGC +CGGAATAAATCCCTTTTGAACCCCATTGGAGGCACGTCAACCCGTGGGCGGTCGACGGCC +ATTTGGATGCAACCCCAGGTCAGGTGAGGCCACCCGCTGAGTTTAAG +>gi|2765624|emb|Z78499.1|PMZ78499 P.micranthum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAGGGATCATTGTTGAGATCGCATAATAAT +TGATCGAGATAATCCAGAGGATCGGTTTACTTTGGTCACCCTTGGGCGCCTGCTATTGCG +GTGACCTAGATTTTCCATGGAGGGAGCCTCCTTGGGAGCTTTCTTGCCGGCGATCTAACC +CTTGCCCGTCGCAGTTTTGCACCAAGTCATATGACACATAAATGGTGAAGGACATACCCC +CTTCGTTGAATTCGAGGAGGGGACGGCATGTGGCCTTGACCTCTCCCAATTATTTTTTTG +ACAACTCTCAGCCAACGGATATCTCGGCTCTTTGCATCGGATGGAGGACGCAGCGAAATG +CGATAAGTGTGTGAATTGCAAGATCCCGTGAACCATCGAGTCTTTGAACGCAAGTTGCGC +CCAAGCCATCAGGCCAAGGGCACGCCTGCCTGGGCATTGCGAGTCATATCTCTCCCTTAA +TGAGGCTGTCCATGCATACTGTTCAGCCGGTGCGGATGTGAGTTTGCCCCCTTGTTCTTT +GGTGCTGGGGGTCTAAGAGCTGCAGGGGCTTTTGATGGTCCTAAATTCGGCAAGAGGTGG +ACGAATCATGCTACAACAAAACTGTTGGGCGAATGCTCCAGGTTGTCGTATTAGATGGGC +CATCATAATCTAGAGACCCTTGTGAACCCCATTGGAGGCCCATCAACCCATGATCAGTTG +ATGGCCTTTTGGATGCGACCCCAGGTCAGGTGAGCAACC +>gi|2765623|emb|Z78498.1|PMZ78498 P.malipoense 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAAGGTCATTGTTGAGATCACATAATAAT +TGATCGAGTTACTCCAGAGGATCAGTTTACTCCGGTCACCCATGGGTGCTTGCTATTGCG +GTGACCTAGATTTGCCATGGAGCCTCCTTGGGAGTTTTCTTGCCGGCGATCTTACCCTTG +CCCGGGGCAGTTTTGCCCCAAGTCATATGACACAATAATGGCGAAGGAGGGGGCGGCATT +TTGCCCTTGACCCTACAATCACTCCCCCTCTCCAAATTATTTTTGGACAACTCTCAGCAA +CGGATATCTCGGCTCTTGCATCGATGAAGAACCCAGCGAAATGCGATAAGTGGTGTGAAT +TGCAGGATCCCGTGAACCATCGAGTCTTTGAACGCAAGTTGCGCCCAAGGCCATCAGGCC +AAGGGCACGCCTGCCTGGGCATTGCGAGTCATATCTCTCCCTTAATGAGGCTGTACATGC +ATACTGTTCAGCCGGTGCGGATGTGAGTTTGGCCCCTTGTTCTTCGGTGCTGGGGGTCTA +AGAGCTGCAGGGGCTTTTGATGGTCCTAAATTCGGCAAGAGGTGGACGAATTACAACAAA +ACTGTTGTGCGAATGCTCCAGGTTGTCGTATTAGATGGGCCAGCATAATCTAAAGACCCT +TGTGAACCCCACTGGAGGCACATCAACCCGTGATCAGTTGATGGCCATTTGTTGCGACCC +CAGTCAGTGAGCAACCCGCTGAGTTTAAGC +>gi|2765622|emb|Z78497.1|PDZ78497 P.delenatii 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGATCACATAATAAT +TGATCGAGTGAATCCAGAGGATCAGTTTACTTTGGTCGCCCATGGGCGCTTGCTATTGCG +GTGACCTAGATTTGCCATGGAGCCTCCTTGGGAGCTTTCTTGCCGGCGATCTAACCCTTG +CCCGGCGCAGTTTTGCGCCAAGTCACATGACACATAAATGGTGAAGGGCACGGCCCTTTG +TGAATTCAAGGAGGTGAAGGGCATGTGGCCTTGAGCCTACACTCCCTCCCCCTCTCCAAA +TTATTTTTTGTGAAACAACTCTCAGCAACGGAGATCTCAGCTCTTGCATCGATGAAGGAA +CGCAGCGAAATGCGATAAGTGGTGTGAATTGCAGAATCCCGTGAACCATCGAGTCTTTGA +ACGCAAGTTGCGCCCAAGGCCATCAGGCCAAGGGCACGCCTGCCTGGGCATTGCGAGTCA +TATCTCTCCCTTAACGAGGCTGTCCAGGCATACTGTTCAGCCGGTGCGGGTGTGAGTTTG +GCCCCTTGTTCTTTGGTGCTGGGGGTCTAAGAGCTGCAGGGGCTTTTGATGGTCCTAAAT +TCGGCAAGAGGTGGACGCAACGCGCTACAACAAAACTGTTGTGCGAATGCCCCGGGTTGT +CGTATTAGATGGGCCAGCATAATCTAAACACCCTTGTGAACCCCATTGGAGGCCCATCAA +CCCATGATCAGTTGATGGCCATTTGGTTGCGACCCCAGGTCAGGTGAGGCAACCCGCTGA +GTTTAAGC +>gi|2765621|emb|Z78496.1|PAZ78496 P.armeniacum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGATCGCATAATAAT +TGATCGAGTTAATCCAGAGGATCGGTTTACTTTGGTCACCCTTGGGCGCCTGCTATTGCG +GTGACCTAGATTTGCCATGGAGGGAGCCTCCTTGGGAGCTTTCTTGCCGGCGATCTAACC +CTTGCCCGGCGCAGTTTTGCGCCAAGTCATATGACACATAATTGGTGAAGGGCATATCCC +TTCGTGAATTCGAGGAGGGGCCGGCATGTGGCCTTGACCTCTCCAATTAATTTTTTGAAC +AACTCTCAGCAACGGATATCTCGGCTCTTGCATCGATGGAGGGACGCACCGAAATGCGAT +AAGTGGTGTGAATTGCAGAATCCCGTGAACCATCGAGTCTTTTGAACGCAAGTTGCGCCC +AAGGCCATCAGGCCAAGGGCACGCCTGCCTGGGCATTGCGAGTCATATCTCTCCCTTAAT +GAGGCTGTCCATGCATACTGTTCAGCCGGTGCGGATGTGAGTTTGGCCCCTTGTTCTTTG +GTGCTGGGGGTCTAAGAGCTGCAGGGGCTTTTGATGGTCCTAAATTCGGCAAGAGGTGGA +CGAATCATGCTACAACAAAACTGTTGGGCGAATGCTCCAGGTTGTCGTATTAGATGGGCC +ATCATAATCTAGAGACCCTTGTGAACCCCATTGGAGGCCCATCAACCCATGATCAGTTGA +TGGCCTTTTGGGTTGCGACCCCAGGTCAGGTGAGGCAACCAGCTGAGTTTAAGC +>gi|2765620|emb|Z78495.1|PEZ78495 P.emersonii 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTCCGGAAGGATCATTGTTGAGATCACATAATAAT +TGATCGAGATAATCCAGAGGATCGGTTTACTTTGGTCACCCATGGGCGCTTGCTATTGCG +GTGACCTAGAGTTGCCATGGAGAGCCTCCTTGGGAGCTTTCTTGCCGGCGATCTAACCCT +TGTCCGGCGCGGTTTTGCGCCAAGTCATATGACACATAATTGGTGAAGGGCATAGCCCTT +CGTGTATTCAAGGAGGGGGGGCGGCATGTGGCCTTGACACTGCACTCGCTCTCCCCCTCT +CCAAAGTATTTTTCTGAACAACTCTCAGCAACGGATATCTCAGCTCTTGCATCGGATGGA +GGAACGCAGCGAAATCCGATAAGTGGTGTGAATTGCAGAATCCCGTGAACCATCGAGTCT +TTTGAACGCAAGTTGCGCCCGAGGCCATGAGGCCAAGGGCACGCCTGCCTGGGCATTGCG +AGTCATCTCTCTCCCTCAATGAGGCTGTCCATGCATACTGTTCAGCCGGTGCGGATGTGA +GTTTGGCCCCTTGTTCTTTGGTGCTGGGGGTCTAAGAGCAGCAGGGGCTTTTGATGGTCC +TAAATTCGGCAAGAGGTGGACGAATCAGGCTACAACAACACTGTTGTTGTGCGAATGCTC +CAGGTTGTCGTATTAGATGGGCCGGCATAATCCAGAGACCCTTGTGAACCCCATTGGAGG +CCCATCAACCCATGATCAGTTGATGGCCATTCGGTTGCGACCCCAGGTCAGTGAGCAACC +CGCTGAGTG +>gi|2765619|emb|Z78494.1|PNZ78494 P.niveum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGGTCGCATAATAAT +TGATCGAGTTAATCTGGAGGATCAGTTTACTTTGGTCACCCATGGACATTTACTGTTGCA +GTGACCTAGATTTACCATCGGGCCTCCTTGGGAACTTTCCTGCTGGCGATCTATACCCTT +GCCCGGCGCAGTAATGCGCCAAATCAAATGACCCATAATTAATGAAGGGGGACGGCATAC +TGCCTTGACCAACTCCCCATTATTGAGGTAACACTCTCAACTTCGGATATCTCAGGTGTG +AATTGCAGAATCCCGTTAACATCGAGTCTTTGAACGCAAGTTGGGCCCGAGGCCAACAGG +CCAAGGGAACGCCTGTCTGGGCATTGCGAGTCATATCTCTCCCTTAATGAGGCTGTCCAT +ACGTACTGTTCAGCCGGTGCGGATGTGAGTTTGGCCCCTTGTTCTTCGGTACGGGGGGTC +TAAGAGCTGCATGGGCTTTTGATGGTCCTAAATACGGCAAGAGGTGGACGAACTATGCTA +CAACAAAACTGTTGTGCGAATGCCCCGGGTTGTTGTGTTTAATCAGAAGACCCTTTTGAA +CCCCATTGGAGGCCCATCGACCCATGATCAGTTGAATGGCCATTTGGTTGCGATCCCAGG +TCAGGTGAGGCAACCCGCTGAGTTTAAG +>gi|2765618|emb|Z78493.1|PGZ78493 P.godefroyae 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGATTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGATCGCATAATAAT +TGATCGAGTTAATCTGGAGGATCGGTTTACTTTGGTCACCCATGGGCATTTTCTGTTGCA +GTGACCTAGAATTTCCATCGGGCCTCCCTGGGAGCTTTCCTGCTGGCGATCTATACCCTT +GCCCGGCGCAGTTTTGCGCCAAGTCAAATTTTACATAAGTGGTGAAGGGGGGCGGCATTC +TTCCTTGACCAGCCCCCAAGTATTTAGGTAACAACTCTCAGCAACGGATATCTCGGCTCA +TGCATCGATGAAGGAACGCAGCGAGATTCGATAAATGGTGTGCCTTGCAGAATCCCGTGA +ACCATCGAATCTTTGAACGCAAGTTGCGCGCGAGGCCATCAGCCCAAGGGGACGCCTGCC +TGGACATTGCGACTCATATCTCTCCCTTAATGAGGCTGTCCAAACGTACTGGTCATCCGG +TGTGGATGTGAGTTTGGCCCCTTGTTCTTCGGTACGGGGGGTCTAAGAGCTGCATGGGCT +TTTGATGGTCCTAAATACGGCAAGAGGTGGACGAACTATGCTACAACAAAACTGTTGTGC +GAATGCCCCGGGTTGTTGTGTTTAATCAGAAGACCCTTTTGAACCCCATTGGAGGCCCAT +CGACCCATGATCAGTTGAATGGCCATTTGGTTGCGATCCCAGGTCAGGTGAGGCAACCC +>gi|2765617|emb|Z78492.1|PBZ78492 P.bellatulum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGATCGCATAATAAT +TGATCGAGTTAATCTGGAGGATCAGTTTACTTTGGTCACCCACGGGCATTTGCTGTTGCA +GTGACCTAGAATTTGCCATCGAGCCTCCTTGGGAGCTTTCTTGCTGGCGATCTATACCCT +TGCCCGGCGCAGTTTTGCGCCAAGTCATATGTCACATAATTGGTGAAGGGGGGGAGCGTA +CTGCCTTGACCCACTCCAAATTATTTTTTTAACAACTCTCAGCAACGGATATCTCGGCTC +TTGCATCGATGTAGAACCCAGCGAAATGCGATACTGGTGTGATTTGCAGAATCCCGTGGA +CCATCGAGTCTTTGAACGCAAGTTGCGCCCGAGGCCATCAGGCCAAGGGCACGCCTGCCT +GGGCATTGCGAGTCAAATCTCTCCCTTAATGAGGCTGTCCATACATACTGTTCAGCCGGT +GCGGATGTGAGTTTGGCCCCTTGTTCTTTGGGACGGGGGGTCTAAGAGCTGCACGGGCTT +TTGATGGTCCTAAATACGGCAAGAGGTGGACGAATTATGCTACAACAAAACTGTTGTGCG +AATGCCCCGGGTTGTTGTGTTACATGGGCCAGCTTAATCAGAAGACCCTTTTGGACCCCA +TTGGAGGCCCATCAACCCATGATCAGTTGATTGGCCATTTGGTTGCGATCCCAGTCAGGT +GAGGCACACCGCTGAGTTTAATA +>gi|2765616|emb|Z78491.1|PCZ78491 P.concolor 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGATCGCATAATAAT +TGATCGAGTTAATCTGGAGGATCAGTTTACTTTGGTCACCCACGGGCATTTGCTGTTGCA +GTGACCTAGATTTGCCATCGGGCCTCCTTAGGAGCTTTCTTGCTGGCGATCTATACCCTT +GCCCGGCGCAGTTTTGCGCCAAGTCATATGACACATAATTGGTGTTGGGGGGAGGCGTGC +TGCCTTGACCCGCTCCAAATTATATTTTTAACAACTCTCAGCAACGGATATCTCGGCTCT +TGCATCGATGAAGAACCAGCGAAATGCGATAAATGGTGTGAATTGCAGAATCCCGTGAAC +CATCGAGTCTTTGAACGCAAGTTGCGCCCGAGGCCATCAGGCCAAGGGCACGCCTGCCTG +GGCATTGCGAGTCATATCTCTCCCTTAATGAGGCTGTCCATACATACTGTTCAGCCGGTG +CGGATGTGAGTTTGGCCCCTTGTTCTTTGGTACGGGGGGTCTAAGAGCTGCATGGGCTTT +TGATGGTCCTAAATACGGCAAGAGGTGGACGAACTATGCTACAACAAAATGTTGTGCGAA +TGCCCCGGGTTGTTGTGTTACATGGACCAGCATAATCAGAAGACCCTTTGGACCCCATTA +GAGGCCCATCAACCCATGATCAGTTGAATGGCCATTTGTTGCGATCCCAGTCAGGTGAGC +AACCCGCTGAGATAAGC +>gi|2765615|emb|Z78490.1|PFZ78490 P.fairrieanum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGATCACATAATAAT +TGATCGAGTTAATCTGGAGGATCAGTTTACTTTGGTCACCCATGGGCATTTGCTGTTGCA +GTGACCGAGATTTGCCATCGAGCCTCCTTGGGAGCTTTCTTGCTGGCGATCTGAACCCTA +GTCCGGCGCAGTTTTGCGCCAAGTCATATGGCACATAATTGGTGAAGGGGGCGGCATGCT +GCCTCGACCCTCCCCAAATTATTTTTTAACAACTCTCAGCAACGGATATCTCGGCTCTTG +CATCGATGAAGAACGCAGCGAAATGCGATAAATGGTGTGAATTGCAGAATCCCGTGAACC +ATCGAGTCTTTGAACGCAAGTTGCGCCCGAGGCCATCAGGCCAAGGGCACGCCTGCCTGG +GCATTGCGAGTCATATCTCTCCCTTAATGAGGCTGTCCAAACATACTGTTCAGCCGGTGC +GGATGTGAGTTTGGCCCCTTGTTCTTTGGTACGGGGGGTCTAAACGCTGCATGGGCTTTT +GATGGTCCTAAATACGGCAAGAGGTGGACGACTGTTCTGCAACAAGTGTTGTGCGAATGC +CCCGCGTTGTCGTATTAGATGGGCCAGCATAATTTGAAGACCCTTTTGAACCCCATTGGA +GGCCCGTCAACCCATGATCAGTTGACGGCCATTTGGTTGCGACCCCAGTCAGGTGAGCAA +CCAGCTGA +>gi|2765614|emb|Z78489.1|PDZ78489 P.druryi 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGATCACATAATAAT +TGATCGAGTTAATCTGGAGGATCAGTTTACTTTGGTCACCCGAGGGCATTTGCTATTGCA +GTGACCGAGATTTGCCATCGAGCCTCCTTGGGAGCTTTCTTGCTGGCGATCTAAACCCGA +GCCCGGCGCAGTTTTGCGCCAAGTCATATGACACATAATTGGTGAAGGGGGCGGCATGCT +GCCTTGACCCTCCCCAGATTATTTTTTAACAACTCTCAGCAACGGATATCTCGGCTCTTG +CATCGATGAAGAACGCAGCGAAATGCGATAAATGGTGTGAATTGCAGAATCCCGTGAACC +ATCGAGTCTTTGAACGCAAGTTGCGCCCGAGGCCATCAGGCCAAGGGCACGCCTGCCTGG +GCATTGCGAGTCATATCTCTCCCTTAATGAGGCTGTCCATACATACTGTTCAGCCGGTGG +GGATGTGGGTTTGGCCCCTTGTTCATTGGTACGGGGGGTCTAAGAGCTGCATGGGATTTT +GATGGTCCTAAATACGGCAAGAGGTGGACGAACTATGCTACAACAAAACTGTTGTGCGAA +TGCCCCGAGTTGTCGTATTAGATGGGCCCAGCATATCTGAAGACCCTTTTGAACCCCATG +GAGGCCCATCAACCCATGATCAGTTGATGGCCATTTGGTTGCGACCCCAGGTCAGGTGAG +GCAACCCGCTGAGTTTAGGC +>gi|2765613|emb|Z78488.1|PTZ78488 P.tigrinum 5.8S rRNA gene and ITS1 and ITS2 DNA +CTGTAGGTGAACCTGCGGAAGGATCATTGTTGAGATCACGCAATAATTGATCGAGTTAAT +CTGGAGGATCAGTTTACTTTGGTCACCCATGGGCATTTGTTATTGCAGTGACCGAGATTT +GCCATCGAGCCTCCTTGGGAGCTTTCTTGCTGGCGATCTTAACCCTAGCCCGGCGCAGTT +TTGCGCCAAGTCATACGACACATAATTGGTGAAGGGGGCGGCATGGTGCCTTGACCCTCC +CCTAATTATTTTCTAACAACTCTCATCAACGGGATGGAGAACGCAGCGAAATGCGATAAA +TGGTGTGAATTGCAGAATCCCGTGAACCATCGAGTCTTTGAACCCAAGTTGCGCCCGAGG +CCATCAGGCCAAGGGCACGCCTGCCTGGGCATTGCGAGTCAAATCTCTCCCTTAATGAGG +CTGTCCATACATACTGTTCAACCGGTGCGGATGTGAGTTTGCCCCCTTGTTCATTGGTAC +GGGGGGTCTAAGAGCTGCATGGGCTTTTGATGGTCCTAAAAACGGCAAGAGGTGGACGAA +CAACGCCACAACCAAACTGTTGTGCGGATCCCCCGGGTTGTCGTATTAGATGGGCCATCA +TAATCTGAAGACCCTTTTGAACCCCATCGGAGGCCCATCAACCCATGATCAGTTGATGGA +CATTTGTTGCGACCCCAGTCAGGTGAGCAACCGGCT +>gi|2765612|emb|Z78487.1|PHZ78487 P.hirsutissimum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGATCACATAATAAT +TGATCGAGTTACTCTGGAGGATCAGTTTACTTTGGTCACCCATGGGCATTTGCTATTGCA +GTGACCGGGATTTGCCATCGAGCCTCCTTGGGAGCTTTCTTGCTGGCGATCTAAACCCTA +GCCCGGCGCAGTTTTGCGCCAAGTCATATGACACATAATTGGTGAAGGGGGCGGCATGCT +GCCTTTACCCTCCCCAAATTATTTTTTAACAACTCTCAGCAACGGATATCTCGGCTCTTG +CATCGATGAAGAACGCAGCGAAATGCGATAAATGGTGTGAATTGCAGAATCCCGTGAACC +ATCGAGTCTTTGAACGCAAGTTGCGCCCGAGGCCATCAGGCCAAGGGCACGCCTGCCTGG +GCATTGCGAGTCATATCTCTCCCTTAATGAGGCTGTCCATACATATTGTTCAGCCGGTGC +GGATGTGAGTTCGGCCCCTTGTTCTTCGGTACGGGGGGTCTAAGAGCAGCATGGGCTATC +GATGGTCCTAAATGCGGCAAGAGGTGGACGAACTATGCTACAACAAAACTGTTGTGCGAA +TGCCCCGGGTTGTCGTATTAGATGGGCCAGCGTAATCTAAAGACCCTTTTGAACCCCATT +AGAGGCCCATCAACCCATGATCAGTTGGGGCCACTTGTTGCGACCCCAGTCAGGTGAGCA +ACCGCTGAGTAA +>gi|2765611|emb|Z78486.1|PBZ78486 P.barbigerum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTCACGAGGTTTCCGTAGGTGAATCTGCGGGAGGATCATTGTTGAGATCACATAATAAT +TGATCGAGATTATCTGGAGGATCAGTTTACTTTGGTCACCCATGGACATTTGCTATTGCA +GTGCCCGAGATTTGCCATCGAGCCTCCTTGGGAGCTTTCTTGCTGGCGATCTAAACCCTA +GCCCGGCGCAGTTTTGCGCCAAGTCATATGACACATAATTGGTGAAGGGTGCGGCATGGT +GCCTGACCCTCCCCAAATTATTTCTTAACAACTCTCAGCAACGGATATCTCGCTCTTGCA +TCGATGAAGAACGCAGCGAAATGCGATAAATGGTGTGAATTGCAGAATCCCGTGAACCAT +CGAGTCTTTGAACGCAAGTTGCGCCCGAGGCCATCAGGCCAAGGGCACGCCTGCCTGGGC +ATTGCGAGTCATATCTCTCCCTTAATGAGGCTGTCCATACATACTGTTCAGCCGGTGCGG +ATGTGAGTTTGGCCCCTTGTTCATTGGTACGGGGGGTCTAAGAGCTGCGTGGGCTTTTGA +TGGTCCTAAATACGGCAAGAGGTGGACGAACTATGCTACAACAAAACTGTTGTGCGAATG +CCCCGGGTTGTCGTATTAGATGGGCCAGCATAATCTAAAGACCCTTTTGAACCCCATTGG +AGGCCCATCAACCCATGATCAGTTGATGGCCATTTGGTAGCGACCCCAGGTCAGGTGAGG +CAACCCGCTGA +>gi|2765610|emb|Z78485.1|PHZ78485 P.henryanum 5.8S rRNA gene and ITS1 and ITS2 DNA +CTGAACCTGGTGTCCGAAGGTGAATCTGCGGATGGATCATTGTTGAGATATCATAATAAT +TGATCGAGTTAATCTGGAGGATCAGTTTACTTTGGTCACCATGGGCATTTGCTATTGCAG +TGACCGAGATTTGCCATCGAGCCTCCTTGGGAGCTTTCTTGCTGGCGATCTAAACCCTAG +CCCGGGGCAGTTTTGCGCCAAGTCATATGACACATAATTGGTGAAGGGTGCGGCATGGTG +CCTTGACCCTCCCCAAATTATTTCTTAACAACTCTCAGCAACGGATATCTCGGCTCTTGC +ATCGATGAAGAACGCAGCGAAATGCGATAAATGGTGTGAATTGCAGAATCCCCGTGAACA +TCGAGTCTTTGAACGCAAGTTGCGCCCGAGGCCATCAGGCCAAGGGCACGCCTGCCTGGG +CATTGCGAGTCATATCTCTCCCTTAATGAGGCTGTCCATACATACTGTGCAGCCGGTGCG +GATGTGAGTTTGGGCCCTTGTTCATTGGTACGGGGGGTCTAAGAGCTGCGTGGGCTTTTG +ATGGTCCTAAATACGCCAAGAGGTGGACGAACTATGCTACAACAAAACTGTTGTGCGAAT +GCCCCGGGTTGTCGTATTAGACGGGCCAGCACAATCTAAAGACCCCTTTGAACCCCATTG +GAGGCCCATCAACCCATGATCAGTTGATGGCCATGTGTTGCGACCCCAGTCAGCTGAGCA +ACCCCTGATTTAGTA +>gi|2765609|emb|Z78484.1|PCZ78484 P.charlesworthii 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGGGGAAGGATCATTGTTGAGATCACATAATAAT +TGATCGAGTTAATCTGGAGGATCAGTTTACTTTGGTCACCCATGGGCATTTGGCTATTGC +AGTGACCGAGAGTTTACCATCGAGCCTCCATGGGAGCTTTCTTGCTGGCGATCTAAACCC +TAGCCCGGCGCAGTTTTGGCCCAAGTCATATGACACATAATTGTGAAGGGGCGGCATGTT +TCCTACCCTCCCAACTCTCAGCAACGGATATCTCGCTCTTGCATCGATGAAGAACGCAGC +GAAATGCGATAAATGGTGTGAATTGCAGAATCCCGTGAACCATCGAGTCTTGGAACGCAA +GTTGCGCCCGAGGCCATCAGGCCAAGGGCACGCCTGCCTGGGCATTGCGAGTCATATCTC +TCCCTTAATGAGGCTGTCCATACATACTGTTCAGCCGGTGCGGATGTGAGTTTGGCCCCT +TGTTCATTGGTACGGGGGGTCTAAGAGCTGCGTGGGCTTTTGATGGTCCTAAATACGGCA +AGAGGTGGACGAACTATGCTACAACAAAACTGTTGTGCGAATGCCCCGGGTTGTCGTATT +AGATGGGCCAGCATAATCTAAAGACCCTTTGACACCCCATTGGAGGCCCATCAACCCATG +ATCAGTTGATGGTCCATTGGGTTGCGACCCCAAGTCAGGTGAAGCAACTCCCTGAGTTTT +>gi|2765608|emb|Z78483.1|PVZ78483 P.villosum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGATCACATAATAAT +TGATCGAGTTAATCTGGAGGATCAGTTTACTTTGGTCACCCATGGGCATTTGCTATTGCA +GTGACCGAGATTTGCCATCGAGCCTCCTTGGGAGCTTTCTTGCTGGCGATCTAAACCCTA +GCCCGGCGCAGTTTTGCGCCAAGTCATATGACACATAATTGGTGAAGGGGGCGGCATGCT +GCCTTGACCCTCCCCCAAATTATTTTTTAACAACTCTCAGCAACGGAAATCTGGCCTCTT +GCATGGATGAAGACCAAACCGAAATCATAAATGGTGTGAATTGCAGAATCCCGTGAACAA +TCGAGTCTTTGAACGCAAGTTGCGCCCGAGGCCATCAGGCCAAGGGCACGCCTGCCTGGG +CATTGCGAGTCATATCTCTCCCTTAATGAGGCTGTCCACACATATCTGTTCAGCCGGTGC +GGATGTGAGTTTGGCCCCTTGTTCATTGGTACGGGGGGTCTAAGAGCTGCATGGGCTTTT +GTTGGTCCTAAATACGGCAAGAGGTGGACGAACTATGCTACAACAAAACTGTTGTGCGAA +TGCCCCGGGTTGTCGTATTAGATGGGCCAGCATAATCTAAAGACCCTTTTGAACCCCATT +GGAGGCCCATCAACCCATGATCAGTTGATGGCCATTTGGTTGCGACCCCAGGTCAAGTGA +AGCAACCCCTGAGTTTAGCA +>gi|2765607|emb|Z78482.1|PEZ78482 P.exul 5.8S rRNA gene and ITS1 and ITS2 DNA +TCTACTGCAGTGACCGAGATTTGCCATCGAGCCTCCTGGGAGCTTTCTTGCTGGCGATCT +AAACCGTAGCCCGGCGCAGTTTTGCGCCAAGTCATATGACACATAATTGGTGAAGGGGGC +GGCATGCTGCCTTGACCCTCCCCAAATTATTTTTTAACAACTCTCNGCAACGGATATCTC +GCCTCTTCATCGATGAAGAACGCAGCGAAATGCGATAAATGGTGTGAATTGCAGAATCCC +GTGAANCCATCGAGTCTTTGAACGCAAGTTGCGCCCGAGGCCATCAGGCCAAGGGCACGC +CTGCCTGGGCATTGCGAGTCATATCTCTCCCTTAATGAGGCTGTCCATACATACTGTTCA +GCCGGTGCGGATGTGCGTTTGGCCCCTTGTTCATTGGTACGGGGGGTCTAAGAGCTGCGT +GGGCTTTTGATGGTCCTAAATACGGCAAGAGGTGGACGAACTATGCTACAACAAAACTGT +TGTGCGAATGCCCCGGGTTGTCGTATTAGATGGGCCAGCATAATCTAAAGACCCTTTTGA +ACCCCATTGGAGGCCCATCAACCCATGATCAGTTGATGGCCATTTGGTTGCGACCCCAGG +TCAGGTGAGGCAACCCGCTGAGTTTAGCA +>gi|2765606|emb|Z78481.1|PIZ78481 P.insigne 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGATCACATAATAAT +TGATCGAGTTAATCTGGAGGATCAGTTTACTTTGGTCACCCATGGGCATTTGCTATTGCA +GTGACCGAGATTTGCCATCGAGCCTCCTTGGGAGCTTTCTTGCTGGCGATCTAAACCCTA +GCCCGGCGCAGTTTTGCGCCAAGTCATATGACACATAATTGGCGAAGGGGGCGGCATGGT +GCCTTGACCCTCCCCAAATCATTTTTTTAACAACTCTCAGCAACGGAAGGGCACGCCTGC +CTGGGCATTGCGAGTCATATCTCTCCCTTAATGAGGCTGTCCACACATACTGTTCAGCCG +GTGCGGATGTGAGTTTGGCCCCTTGTTCATTGGTACGGGGGGTCTAAGAGCTGCGTGGGC +TTTTGTTGGTCCTAAATACGGCAAGAGGTGGACGAACTATGCTACAACAAAACTGTTGTG +CGAATGCCCCGGGTTGTCGTATTAGATGGGCCAGCATAATCTAAAGACCCTTTTGAACCC +CATTGGAGGCCCATCAACCCATGATCAGTTGA +>gi|2765605|emb|Z78480.1|PGZ78480 P.gratrixianum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGATCACATAATAAT +TGATCGAGTTAATCTGGAGGATCAGTTTACTTTGGTCACCCATGGGCATTTGCTATTGCA +GTGACCGAGATTTGCCATCGAGCCTCCTTGGGAGCTTTCTTGCTGGCGATCTAAACCCTA +GCCCGGCGCAGTTTTGCGCCAAGTCATATGACACATAATTGGCGAAGGGGGCGGCATGCT +GCCTTGACCCTCCCCAAATTATTTTTTAACAACTCTCAGCAACGGATAGGCCATCAGGCT +AAGGGCACGCCTGCCTGGGCATTGCGAGTCATATCTCTCCCTTCAATGAGGCTGTCCACA +CATACTGTTCAGCCGGTGCGGATGTGAGTTTGGCCCCTTGTTCATTGGTACGGGGGGTCT +AAGAGCTGCGTGGGCTTTTGTTGGTACCTAAATACGGCAAGAGGTGGACGAACTATGCTA +CAACAAAAATGTTGTGCGAATGCCCCGGGTTGTCGTATAGATGGGCCAGCATAATCTAAA +GACCCTTTTGAACCCCATTGGAGGCCCATCAACCCATGATCAGTTGA +>gi|2765604|emb|Z78479.1|PPZ78479 P.primulinum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGATCACATAATAAT +TGATCGAGTTAATCAGGAGGATCAGGTTACTTTGGTCACCCATGGGCATTTGCTGTTTCA +GTGACCTAGATTTGCCATCGAGCCGAACTAAACCCTTGCCCGGCGCAGATTTGCGCCAAT +TTATATGAGACATTACTGGAAGGGGAGGGATGCTGCCTTGCCTTGCCCCCCAAATTATTT +TTTAACAACTCTCAGCAACGGATATCTCGCCTCTTGCATCGATGAAGAACGCAGCGAAAT +GCGATAAATGGTGTGAATACAGAGATCCCGTGAACCATCGAGTCTTGAACGCAAGTTGCG +CCCGAGGCCATCAGGCCAAGGGCACGCCTGCCTGGGCATTGCGAGACATATCTCTCCCTT +AATGAGGCTGTCGTTCAGCCGGTGCGGATGTGAGTTTGGCCCCTTGTTCTTTGGTACGGG +GGGTCTAAGAGCTGCATGGGCTTTTGATGGTCCTAAATACGGCAAGAGGTGGACGAACTA +TGCGACAACAGAACTGTTGTGCGAATGCCCCGGGTTGTCGTATTAGATGGGCCAGCATAA +TCTAAAGACCCTTTTGAACCCCATTGGAGGCCCATCAACCCAAGATCAGTTGACGGCCAT +TTGGATGCGACCCCAGGTCAGGTGAGGCAACCCTCTGAGT +>gi|2765603|emb|Z78478.1|PVZ78478 P.victoria 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTCCGGAAGGATCAGTGTTGAGATCACATAATAAT +TGATCGAGTTAATCTGGGGGATCAGTTTACTTTGGTCACCCATGGGCATTTGCTGTTGCA +GTGGCCTAGAGTTTGCCATCGAGCCGATCTAAACCCTTGCCCGGCGCAGTTTTGCGCCAA +GTCATATGACACATAACTGGAAGGGGCGGCATGCTGCCATGGCTCCCCCAAATATTGATA +ATGGCGTGATAGCAGATCCCTGAACATCGAGTTTTGAACGCATGTTGCGTCCGAGGCCAT +CAGGTCAAGGGGACGCCTGCCTGGAAATTGTGAGACATATCTCTCCCTTAATGAGGCTGC +CATACATACTGTTCAGCCGGTGCGGATGTGAGTTTGGCCCCTTGTCCTTTGGTACGGGGG +TCTAAGAGCTGTATGGGTTGGATGGTCCTAAATACGGCAAGAGGTGGACGAGCTATGTGA +CAACAGAACTGTTGTGCGAATGCCCCGGTTGTCGTTTAGATGGGTCAGCATAATCTAAAG +ACCCTTTTGACCCCCATTGGAGGCCCATCAACCCATTATCAGTTGAGGACATTTGGTTGC +GACCCAGGTCAGATGAGGCACCCGCTGAGTTTAGGC +>gi|2765602|emb|Z78477.1|PVZ78477 P.victoria 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGATCACATGATAAT +TGATCGAGTTAATCTGGAGGATCAGTTTGCTTTGGTCACCCATGGGCATTTGCTGTTGCA +GTGACCTAGATTTGCCATCGAGCCGATCTAAACCCTTGCCCGGCGCAGTTTTGCGCCAAG +TCATATGACACATAATTGGAAGGGGCGGCATGCTGCCTTGCCCTCCCCAAATATTTGTTA +ACCAACTCTCAGCAACGAGTATCTCGGCTCTTGCATCGGATGGAAGGACGCAGCGAAATG +CGATAAATGGTGTGAATTGCAAGAATCCCTGAACCATCGAGTCTTTGGAACGCAAGTTGC +GGCCGAGGCCATCAGGCCAAGGGCACGCCTGCCTGGGCATTGCGAGACATATCTCTCCCT +TAATGAGGCTGTCCACACATACTGTTCAGCCGGTGCGGATGTGAGTTTGGCCCCTTGTTC +TTTGGTACGGGGGGTCTAAGAGCTGCATGGGCTTTTGATGGTCCTAAATACGGCAAGAGG +TGGACGAACTATGCGACAACAGAACTGTTGTGCGAATGCCCCGGGTTGTCGTATTAGATG +GGCCAGCATAATCTAAAGACCCTTTTGAACCCCATTGGAGGCCCATCAACCCATGATCAG +TTGACGGCCATTTGGTTGCGACCCCAGGTCAGGTGAGGCAACCGCTGAGTTTATGC +>gi|2765601|emb|Z78476.1|PGZ78476 P.glaucophyllum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGATCACATGATAAT +TGATCGAGTTAATCTGGAGGATCAGTTTACTTTGGTCACCCATGGGCATTTGCTGTTGTA +GTGACCTAGATTTGCCATCGAGCCGATCTAAACCCTTGCCCGGCGCAGTTTTGCGCCAAG +TCATATGACACATAATTGGAAGGGCGGCATGCTGCCTTGGCCCTCCCCAAATTATTTTTT +TAACAACTCTCAGCAACGGATATCTCGGCTCTTAGGCCATCCGGCCAAGGGCACGCCTGC +CTGGGCATTGCGAGACATATCTCTCCCTTAATGAGGCTGTCCATACATACAGTTCAGCCG +GTGCGGATGTGAGTTTGGCCCCTTGTTCTTTGGTACGGGGGGTCTAAGAGCTGCATGGGC +TTTTGATCCACCTAAATACGGCAAGAGGTGGACGAACTATGCGACAACAGAACTGTTGCG +CGAATGCCCCGGGTTGTCGTATTAGATGGGCCAGCATAATCTAAAGACCCTTTTGAATCC +CATTGGAGGCCCATCAACCCATGATCAGTTGACGGCCATTTGGTTGCGACCC +>gi|2765600|emb|Z78475.1|PSZ78475 P.supardii 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGATCACATAATAAT +TGATCGAGTTAATCTGGAGGATCAGTTTACTTTGGTCACCCATGGGCATCTGCTCTTGCA +GTGACCTGGATTTGCCATCGAGCCTCCTTGGGAGCTTTCTTGCTGGCGATCTAAACCCGT +CCCGGCGCAGTTTTGCGCCAAGTCATATGACACATAATTGGAAGGGGGTGGCATGCTGCC +TTGACCCTCCCCAAATTATTTTTTTGACAACTCTCAGCAACGGATATCTCGGCTCTTNNN +NNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNN +NNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNATCAGGCCAAGGGCACGCCTGCCTGGG +CATTGCGAGTCATATCTCTCCCTTAATGAGGCTGTCCATACATACTGTTCAGCCAATGCG +GATGTGAGTTTGGCCCCTTGTTCTTTGGTACGGGGGGTCTAAGAGCTGCATGGGCTTTTG +ATGGTCCAAAATACGGCAAGAGGTGGACGAACTATGCTACAACAAAATTGTTGTGCGAAT +GCCCCGGGTTGTCGTATTAGATGGGCCAGCATAATCTAAAGACCCTTTTGAACCCCATTG +GAGGCCCATCAACCCATGATCAGTTGACGGCCATTTGGTTGCGACCCAGGTCAGGT +>gi|2765599|emb|Z78474.1|PKZ78474 P.kolopakingii 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGATCACGTAATAAT +TGATCGAGTTAATCTGGAGGATCAGTTTACTTTGGTCACCCATGGGCATCTGCTCTTTCA +GTGACCTGGATTTGCCATCGAGCCTCCTTGGGAGCTTTCTTGCTGGCGATCTAAACCCTT +GCCCGGCGCAGTTTTGCGCCCAATCATATGACACATAATTGGAAGGGCGGCATCCTGCCT +TGACCCTCCCCAAATTATATTTTTGACAACTCTCAGCAACGGATATCTCGCCTCTTGCAT +CGATGAAGACACAGCGAAATGCGATAAATGGTGTGAATTGCAGAATCCCGTGAACCATCG +AGTCTTTGAACGCAAGTTGCGCCCGAGGCCATCAGGCCAAGGGCACGCCTGCCTGGGCAT +TGCGAGTCATATCTCTCCCTTAATGAGGCTGTCCATACATACTGTTCAGCCGGTGCGGAT +GTGAGTTTGGCCCCTTGTTCTTTGGTACGGGGGGTCTAAGAGCTGCATGGGCTTTTGATG +GTCCAAAATACGGCAAGAGGTGGACGAACTATGCTACAACAAAATTGTTGTGCGAATGCC +CCGGGTTGTCGTATTAGATGGGCCAGCATAATCTACAGACCCTTCTGAACCCCATTGGAG +GCCCATCAACCCATGATCAGTTGACGGCCATTTGGTTGCGACCCCAGGTCAGGTGAAGCA +ACCCGTTGAGCTT +>gi|2765598|emb|Z78473.1|PSZ78473 P.sanderianum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGATCACATAATAAT +TGATCGGGTTAATCTGGAGGATCAGTTTACTTTGGTCACCCATGGGCATCTGCTCTTGTA +GTGACCTGGATTTGCCATCGAGCCTCCATGGGAGCTTTCTTGGTGGCGATCTAAACCCTT +GCCCGGCGCAGTTTTGCGCCAAGTCATATGACACATAATTGGAAGGGGGCGGCATGCTGC +CTTGACCCTCCCCAAATTATTTTGTTAACAACTCTCAGCAACGGATATCTCGGCTCTTCC +CGAGGCCATCAGGCCAAGGGCACGCCTGCCTGGGCATTGCGAGTCATATCTCTCCCTTCA +ATGAGGCTGTCCATACATACTGTTCAGTCGGTGCGGATGTGAGTTTGGCCCCTTGTTCTT +GCCTACGGGGGGTCTAAGAGCTGCATGGGCTTTTGATGGTACCTAAATACGGCAAGAGGT +GGACGAACTATGCTACAACAAAATTGTTGTGCGAATGCCCCGGGTTGTCGTATTAGATGG +GCCAGCATAATCTAAAGACCCTTTTGAACCCCATTGGAGGCCCATCAACCCATGATCAGT +TGACGGCCATTTGGTTGCGACCCAGG +>gi|2765597|emb|Z78472.1|PLZ78472 P.lowii 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGATCACATAATAAT +TGATCGAGTTAATCTGGAGGATCAGTTTACTTTAGTCACCCATGGGCATCTGCTCTTGCA +GTGACCTGGATTTGCCATCGAGCCTCCTTGGGAGCTTTCTTGCTGGCGATCTAAATCGTT +GCCCGGCGCAGTCTTGCGCCAAGTCATTTCACACATAATTGGAAGGGGGCGGCATGCAGT +CTAAGACCCTCCCCAAATTATTTTTTGATAACTCTCAGCAACGGAATCTCGGCTCTTGCA +TCGATGGAGGACGCAGCGAAATGCGATAAATGGTGTGAATTGCAGAATCCCGTGAACCAT +CGAGTCTTTGAACGCAAGTTGCGCCCGAGGCCATCAGGCCAAGGGCACGCCTGCCTGGGC +ATTGCGAGTCATATCTCTCCTTTAATGAGGCTGTCTATACATACTGTTCAGCCACAGCGG +ATGTGAGTTTGGCCCCTTGTTCTTTGGTACGGGGGGTCTAAGAGCTGCATGGGCTTTTGA +TGGTCTTAAATACGGCAAGAGGTGGACGAAGTATGCTACAACAAAATTGTAGTTCGAATG +CCCAGGGTTGTCGTATTAGATGGGCCAGCATAATCTAAAGACCCTTTGAACCCCTTTAGA +GGCCAATCAACCCATGATCAGTTGATGGCCATTTGGTTGCGACCCCAAGTCAGGTGAGGC +AACCGCTGAGTTTAAGC +>gi|2765596|emb|Z78471.1|PDZ78471 P.dianthum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGATCACATAATAAT +TGATCGAGTTAATCTAGAGGATCGGTTTACTTTGGTCACCCATGGGCATCTGCTCTTACA +GTGACCTGGATTTGCCATCGAGCCTCCTTGGGAGCTGTCTTGCTGGCGATCTAAATCGTT +GCCCGACGCAGCCTTGCGTCAAGTCACCCCGACACATAATGGAAGGGGGCGGCATGCTGC +CTTGACCCTTCCCCAAATTAATTTTTTGACAACTCTCAACATCGGATATCTCGGCTCTTG +CATCGATGAAGAACGCAGCGAAATGCGATAAATGGTGTGAATTGCAGAATCCCGTGAACC +ATCGAGTCTTTGAACGCAAGTTGCGCCCGAGGCCATCAGGCCAAGGGCACGCCTGCTTGG +GCATTGCGAGTCATATCTCTCCCTTAATGAGGCTGTCCATACATACTGTTCAGCCAGTGC +GGATGTGAGTTTGGCCCCTTGTTCTTTAGTACGGGGGGTCTAAAAGCTGCATGGGCTTTT +GCTGGTCCTAAATACGGCAAGAGGTGGACAAAGTATGCTACAACAAAATTGTAGTGCGAA +TGCCCCGGGTTGTCGTATTAGATGGGCCAGCATAATTTAAAGACCCTTTTGAACCCCATT +AGAGGCCCATCAACCCTGATCAGTTGATGGCCATTTGGTTGCGACCCCAAGTCAGGTGAG +GCAACCCGCTGAGTTTAAGC +>gi|2765595|emb|Z78470.1|PPZ78470 P.parishii 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGATCACATAATAAT +TGATCGAGTTAATCTAGAGGATCAGTTTACTTTGGTCACCCATGGGCATCTGCTCTTACA +GTGACCTGGATTTGCCATCGAGCCTCCTTGGGAGCTTTCTTGCTGGCGATCTAAATCGTT +GCCCGACGCAGCCTTGCGTCAAGTCATATGACACATAATTGGAAGGGGGCGGCATGCTGC +CTTGACCCTTCCCAAATTATTTTTTTAAGTTGCGCCCGAGGCCATCAGGCCAAGGGCACG +CCTGCTTGGGCATTGCGAGTCATATCTCTCCCTTAATGAGGCTGTCCATACATACTGTTC +AGCCAGTGCGGATGTGAGTTTGGCCCCTTGTTCTTTACTACGGGGGGTCTAAAAGCTGCA +TGGGCTTTTGCTGGTCCTAAATACGGCAAGAGGTGGACAAAGTATGCTACAACAAAATTG +TAGTGCGAATGCCCCGGGTTGTCGTATTAGATGGGCCAGCATAATTTAAAGACCCTTTTG +AACCCCATTAGAGGCCCATCAACCCTGATCAGTT +>gi|2765594|emb|Z78469.1|PHZ78469 P.haynaldianum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGATCACATAATAAT +TGATCGAGTTAATCTGGAGGATCAGTTTACTTTAGTCACCCATGGGCATCTGCTCTTGCA +GTGACCTGGATTTGCCATCGAGCCTCCTTGGGAGCTTTCTTGCTGGCGATCTAAATTCGT +TGCCCGGCGCAGTCTTGCGCCAAGTCATATCACACATAATTGGAAGGGGGCGGCATGCGG +TCTAGACCCTCCCCAAATTATTTTTTTGACAACTCTCAGCAACGGATATCTCGGCTCTTC +CATCAGGCCAAGGGCACGCCTGCCTGGGCATTGCGAGTCATATCTCTCCCTTAATGAGGC +TGTCCATACATACTGTTCAGCCACAGCGGATGTGAGTTTGGCCCCTTGTTCTTTGGTACG +GGGGGTCTAAGAGCTGCATGGGCTTTTGATGGTACCTAAATACGGCAAGAGGTGGACGAA +GTATGCTACAACAAAATGATAGTGCGAATGCCCAGGGTTGTCGTATTAGATGGGCCAGCA +TAATCTAAAGACCCTTTTGAACCCCATTAGAGGCCCATCAACCCATGATCAGTT +>gi|2765593|emb|Z78468.1|PAZ78468 P.adductum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGATCGCATAATAAT +TGATTGAGTTAATCTGGAGGATCAGTTTACTTTGGTCACTCATGGGAATCTGCTCTTGTA +GTGACCTGGATTTGCCATCGAGCCTCCTTGGGAGCTTTCTTGATGGCGATCTGAACCCTT +GCCCGGCGCAGTTTTGCGCCAAGTCATATGACACATAATTGGGAGGGGCAGCATGCTGCC +TTGACCCTCCCCATATCATTTTTTTAACGACTCTCAGCTCCGGAACTCAAGTTGCGCCCG +AGGCCATCAGGCTAAGGGCACGCCTGCCTGGGCATTGCGAGTCATATCTCTCCCTTAATG +AGGCTGTCCATACATACTGTTCAGCCAGTGCGGATGTGAGTTTGGCCCCTTGTTCTTCGG +TACGGGGGGTCTAAGAGCAGCTGGGCTTTTGATGGACCTAAATACGGCAAGAGGTGGACG +AAGTATGCTACAACAAAATTATTGTGTGAATGCCCCGGGTTGTCGTATAGATGGGCCAGC +ATAATCTAAAGACCCTTTTGAACCCCATTGGAGGCCCATCAACCCATGATCAGTTGACGG +CCATTTGGTT +>gi|2765592|emb|Z78467.1|PSZ78467 P.stonei 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGATCACATAATAAT +TGATCGAGTTAATCTGGAGGATCAGTTTACTTTGGTCACCCATGGGCATCTGCTCTTGCA +GTGACCTGGATTTGCCATCGAGCCTCCTTGGGAGCTTTCTTGCTGGCGATCTAAACCCTT +GCCCGGCGCAGTTTTGCGCCAAGTCATATGACACATAATTGGAAGGGGGTGGCATGCTGC +CTTGACCCTCCCCAAATTATTTTTTGACAACTCTCAGCAACGGATATCTCGGCTCTTGCA +TCGATGAAGAACGCAGCGAAATGCGATAAATGGTGTGAATTGCAGAATCCCGTGAACCAT +CGAGTCTTTGAACGCAAGTTGCGCCCGAGGCCATCAGGCCAAGGGTACGCCTGCCTGGGC +ATTGCGAGTCATATCTCTCCCTTAATGAGGCTGTCCATACATACTGTTCAGCCGGTGCGG +ATGTGAGTTTGGCCCCTTGTTCTTTGGTACGGGGGGTCTAAGAGCTGCATGTGCCTTTGG +TGGTCCAAAATACGGCAAGAGGTGGACGAACTATGCTACAACAAAATTGTTGTGCGAATG +ACCCGGGTTGTCGTATTAGCTGGGCCAGCATAATCTAAAGACCCTCTTGAACCCCATTGG +AGGCCCATCAACCCATGATCAGTTGACGGCCATATGTTTGCGACCCAGGTCAGGTGAGGC +AACCCGCTGA +>gi|2765591|emb|Z78466.1|PPZ78466 P.philippinense 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGATCACATAATAAT +TGATCGAGTTAATCTGGAGGATCAGTTTACTTTGGTCACCCATGGGCATCTGCTCTTGTA +GTGACCTGGATTTGCCATCGAGCCTTCATGGGAGCTTTCTTGCTGGCGATCTAAACCCTT +GCCCGGCGCAGTTTTGCGCCAAGTCATATGACACATAATTGGAAGGGGGCGGCATGCTGC +CTTGACCCTCCCCAAATTATTTTTGTAACAACTCTCAGCAACGGATATCTCGGCTCTTTG +CCGAGGCCATCAGGCCAAGGGCACGCCTGCCTGGGCATTGCGAGTCATATCTCTCCCTTA +ATGAGGCTGTCCATACATACAGTTCAGCCTGTGCGGATGTGAGTTTGGCCCCTTGTTCTT +GCGTACGGGGGGTCTAAGAGCTGCATGGGCTTTTGATGGTCCTAAATACGGCAAGAGGTG +GACGAACTATGCTACAACAAAATTGTTGTGCGAATGCCCCGGGTTGTCGTATTAGATGGG +CCAGCATAATCTAAAGACCCTTTTGAACCCCATTGGAGGCCCATCAACCCATGATCAGTT +GACGGCCATTTGGTTGCGACCCAGGTCAGGTGAGGCAACCC +>gi|2765590|emb|Z78465.1|PRZ78465 P.rothschildianum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGATCACATAATAAT +TGATCGAGTTAATCTGGAGGATCAGTTTACTTTGGTCACCCATGGGCATCTGCTCTTGCA +GTGACCTGGATTTGCCATCGAGCCTCCTTGGGAGCTTTCTTGCTGGCGATCTAAACCCTT +GCCCGGCGCAGTTTTGCGCCAAGTCATATGACACATAATTGGAAGGGGGCGGCATGCTGC +CTTGACCCTCCCCAAATTATTTTTTTGACAACTCTCAGCAACGGATTTCTCGGTTCTTGA +ATCGATGAGGAACGCAGCGAAATGCGATAATTGGTGTGAATTGAAGAATCCCGTAAACCA +TCGAGTCTTTGAACGAAAGTTGCGCCCGAGGCCATCAGGCCAAGGGAACGCCTGCCTGGG +CATTGCGAGTCATATCTCTCCCTTAATGAGGCTGTCCATACATACTGTTCAGCGAGTGCG +GATGTGAGTTTGGCCCCTTGTTCTTTGGTACGGGGGGTCTAAGAGCTGCATGGGCTTTTG +ATGGTCCTAAATACGGCAAGAGGTGGACGAACTATGCTACAACAAAATTGTTGTGCGAAT +GCCCCGGGTTGTCGTATTAGATGGGCCAGCATAATCTAAAGACCCTTTTGAACCCCATTG +GAGGCCCATCAACCCATGATCAGTTGACGGCCATTTGGTTGC +>gi|2765589|emb|Z78464.1|PGZ78464 P.glanduliferum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAGCGGAAGGGTCATTGTTGAGATCACATAATAATTGAT +CGGTTGAGTCTGGAGGATCAGTTTACTTTGGTCACCCATGGGCATCTGCTCTTGTAGTGA +CCTGGATTGCCATCGAGCCTCCTTGGGAGCTTTCTTGCTGGAGATCTAAACCCTTGCCCG +GAGCAGTTTTGCGCCAAGTCATATGACACATAATTGGAAGGGGGCGGCATGCTGCCTTGA +CCCTCCCCAAATTATTTTCTTAACAACTCTCAGCAACGGATATCTCGGCTCTTGCATCGA +TGAAGAACGCAGCGAAATCCGATAAATGGTGTGAATTTCAGAATCCCGTGAACCATCGAG +TCTTTGAACGCCAAGTTCGCCCGAGGCCATCAGGCCAAGGGCACGCCTGCCTGGGCATTT +CGAATCAAATCTCTCCCTTAATGAGGCTGTCCAAACATACTGTTCAACCGGTTCGGATGT +GAGTTTGGCCCCTTTTTCTTTGGGGCGGGGGGTCTAAGAACTTCATGGGCTTTTGGTGGT +CCTAAAAACGGCAAGAGGTGGGCGGACTATTCTTCAACCAAATTTCTGTTCGGATTCCCC +GGGCTTTCGTAATAGATGGGCCAGCATAATCTAAAGACCCTTTTGAACCCCATTGGAGGC +CCATCAACCCATGATCAGTTGACGGCCATTTGGTGCGACCCCAGGTCAGGTGAGCAACCC +GCTGAGTTTAAGC +>gi|2765588|emb|Z78463.1|PGZ78463 P.glanduliferum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGTTCATTGTTGAGATCACATAATCAT +TGTTCGGTTGAGTCTGGAGGATCAGTTTACTTTGGTCACCATGGGCATCTGCTCTTGTAG +TGACCTGGATTGCCATCGAGCCTCCTTGGGAGCTTTCTTGCTGGGGATCTAAACCCTCGC +CCGGGGGAGTTTTGCGCCAAGTCATATGACACATAATTGGGAGGGGGCGGCATGTTGCCT +TGACCCTCCCCAAATTATTTTCTTAACAACTCTCAGCAACGGATATCTCGGCTCTTGCAT +CGATGGAAGAACGCAGCGAAATGCGATAAATGGTGTGAATTGCAGAATCCCGTGAACCAT +CGAGTCTTTGAACGCAAGTTGCGCCCGAGGCCATCAGGCCAAGGGCACGCCTGCCTGGGC +ATTGCGAGTCATATCTCTCCCTTAATGAGGCTGTCCATACATACTGTTCAACCGGTGCGG +ATGTGAGTTTGGCCCCTTTTTCTTTGGGGCGGGGGGTCTAAGAGCTGCATGGGCTTTTGA +TGGTCCTAAATACGGCAAGAGGTGGACGAACTATGCTGCAACAAAATTGCTGTGCGAATA +CCCCGGGTTGTCGTATTAGATGGGCCAGCATAATCTAAAGACCCTTTTGAACCCCATTGG +AGGCCCATCAACCCATGATCAGTTGACGGCCATTTGGTTGCGACCCCAGATCAGGTGAGC +AACCCGCTGAGTTTAAGC +>gi|2765587|emb|Z78462.1|PSZ78462 P.sukhakulii 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTCACGAGGTCTCCGGATGTGACCCTGCGGAAGGATCATTGTTGAGATCACATAATAAT +TGATCGAGTTAATCTGCAGGATCTGTTTACTTTGGTCACCCATGGGCATTTGCTGTTGAA +GTGACCTAGATTTGCCATCGAGCCTCCTTGGGAGATTTCTTGTTGGCGAGATCTAAACCC +TTGCCCGGCGCAGTTTTGCGCCAAGTCATANNNNNNNNNNNNNNNNNNNNNNNNNNNNNN +NNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNN +NNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNN +NNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNN +NNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCGCCT +GCCTGGGCATTGCGAGTCATATCTCTCCCTTAACGAGGCTGTCCATACATACTGTTCAGC +CGGTGCGGATGTGAGTTTGGCCCCTTGTTCTTTGGTACGGGGGGTCTAAGAGCTGCATGG +GCTTTTGATGGTCCTAAATACGGCAAGAGGTGGACGAACTATGCTACAACAAAATTGTTG +TGCAAAGGCCCCGGGTTGTCGTATTAGATGGGCCACCGTAATCTGAAGACCCTTTTGAAC +CCCATTGGAGGCCCAT +>gi|2765586|emb|Z78461.1|PWZ78461 P.wardii 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTCCGGAAGGATCATTGTTGAGATCACATAATAAT +TGATCGAGGTAATCTGGAGGATCTGTTTACTTTGGTCACCCATGGGCAGTTGCTGCTGGA +GTGACCTAGAATTTCCATCGAGCCTCCTTGGGAGCTTTCTTGTTGGCGAGATCTAAACCC +TTACCCGGCGCAATTTTTCCCCCAGTCAAATGACACATAATTGGTGGAGGGGGTGGCATT +CTTCCCTGACCCTCCCCCAAATAATTTTTTCACAACTCTCAGCAACGGATATCTCGGCTC +TTGCATCGATGAAGAACGCACCGAAATCCGATAAATGGTGTGAATTCCAGAATCCCGTGA +ACCATCGAGTCTTTGAACCCAAGTTGCGCCCGAGGCCATCAGGCCAAGGGAACGCCTGCC +TGGGCATTGCGAGTCATATCTCTCCCTTAACGAGCCTGTCCATACATCCTGTTCAGCCGG +TGCGGATGTGAGTTTGCCCCCTTGTTCTTTGGTACGGGGGGTCTAAGACCTGCATGGGCT +TTTGATGGTCCTAAATACGGCAAGAGGTGGACGAACTATGCTACACCAAAATTGTTGTCC +AAAGCCCCCGGGTTGTCGTATAAGATGGGCCACCGTAATCTGAAGACCCTTTGAACCCCA +TTGGAGCCCATCAACCCATGATCAGTTGATGCCATTGTTGCGACCCAGTCAGTGAGCAAG +CCGCTGAGTTAA +>gi|2765585|emb|Z78460.1|PCZ78460 P.ciliolare 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTCCGGAAGGATCATTGTTGAGATCACATAATAAT +TGATCGAGTTAATCTGGAGGATCTGTTTACTTTGGTCACCCATGAGCATTTGCTGTTGAA +GTGACCTAGATTTGCCATCGAGCCTCCTTGGGAGCTTTCTTGTTGGCGAGATCTAAACCC +TTGCCCGGCGCAGTTTTGCGCCAAGTCATATGACACATAATTGGTGAAGGGGGTGGCATC +CTGCCCTGACCCTCCCCAAATTATTTTTTTAACAACTCTCAGCAACGGGATATCTCGGCT +CTTGCATCGGATGGAGGAACGCAGCGAAATGCGATAAATGGTGTGAATTGCAGAATCCCG +TGAACCATCGAGTCTTTGAACGCAAGTTGCGCCCGAGGCCATCAGGCCAAGGGCACGCCT +GCCTGGGCATTGCGAGTCATATCTCTCCCTTAACGAGGCTGTCCATACATACTGTTCAGC +CGGTGCGGATGTGAGTTTGGCCCCTTGTTCTTTGGTACGGGGGGTCTAAGAGCTGCATGG +GCTTTTGATGGTCCCAAATACGGCAAGAGGTGGACGAACTATGCTACAACAAAATTGTTG +TGCAAAGGCCCCGGGTTGTCGTATTAGATGGGCCACCGTAATCTGAAGACCCTTTTGAAC +CCCATTGGAGGCCCATCAACCCATGATCAGTTGATGGCCATTTGGGTTGCGACCCCAGGT +CAGGTGAGGCAACCCGCTGAGTTTA +>gi|2765584|emb|Z78459.1|PDZ78459 P.dayanum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGATCACATAATAAT +TGATCGAGTTAATCTGGAGGATCTGTTTACTTTGGTCACCCATGAGCATTTGCTGTTGAA +GTGACCTAGATTTGCCATCGAGCCTCCTTGGGAGCTTTCTTGTTGGCGAGATCTAAACCC +TTGCCCGGCGCAGTTTTGCGCCAAGTCATATGACACATAATTGGTGAAGGGGGTGGCATC +CTGCCCTGACCCTCCCCAAATTATTTTTTTAACAACTCTCAGCAACGGATATCTCGGCTC +TTGCATCGGATGGAGGAACGCAGCGAAATTGCGATAAATTGGTGTGAATTGCAGAATCCC +GTGAACCATCGAGTCTTTGAACGCAAGTTGCGCCCGAGGCCATCAGGCCAAGGGCACGCC +TGCCTGGGCATTGCGAGTCATATCTCTCCCTTAACGAGGCTGTCCATACATACTGTTCAG +CCGGTGCGGATGTGAGTTTGGCCCCTTGTTCTTTGGTACGGGGGGTCTAAGAGCTGCATG +GGCTTTTGATGGTCCTAAATACGGCAAGAGGTGGACGAACTATGCTACAACAAAATTGTT +GTGCAAAGGCCCCGGGTTGTCGTATTAGATGGGCCACCGTAATCTGAAGACCCTTTTGAA +CCCCATTGGAGGCCCATCAACCCATGATCAGTTGATGGCCATTTGGTTGCGACCCCAGGT +CAGGTGAGGCAACCCGCTGAGTTT +>gi|2765583|emb|Z78458.1|PHZ78458 P.hennisianum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGATCACATAATAAT +TGATCGAGTTAATCTGGAGGATCTGTTTACTTTGGTCACCCATGAGCATTTGCTGTTGAA +GTGACCTAGATTTGCCATCGAGCCTCCTTGGGAGCTTTCTTGTTGGCGAGATCTAAACCC +TTGCCCGGCGCAGTTTTGCGCCAAGTCGTACGACACATAATTGGTGAAGGGGGTGGCATC +CTTCCCTGACCCTCCCCAAATTATTTTTTAACAACTCTCAGCAACGGATATCTCGGCTCT +TGCATCGATGGAGGACGCAGCGAAATGCGATAAATGGTGTGAATTGCAGATCCCGTGAAC +CATCGAGTCTTTGAACGCAAGTTGCGCCCGAGGCCATCAGGCCAAGGGCACGCCTGCCTG +GGCATTGCGAGTCATATCTCTCCCTTAACGAGGCTGTCCATACATACTGTTCAGCCGGTG +CGGATGTGAGTTTGGCCCCTTGTTCTTTGGTACGGGGGGTCTAAGAGCTGCATGGGCTTT +TGATGGTCCTAAATACGGCAAGAGGTGGACGAACTATGCTACAACAAAATTGTTGTGCAG +AGGCCCCGGGTTGTCGTATTAGATGGGCCACCGTAATCTGAAGACCCTTTTGAACCCCAT +TGGAGGCCCATCAACCCATGATCAGTTGATGGCCATTTGGTTGCGACCCCAGGTCAGGTG +AGGCAACCCGCTGAGTTG +>gi|2765582|emb|Z78457.1|PCZ78457 P.callosum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTCCGGAAGGATCATTGTTGAGATCACATAATAAT +TGATCGAGTTAATCTGGAGGATCTGTTTACTTTGGTCACCCATGGGCATTTTCTGTTGTA +GTGACCTAGAATTTCCATCGAGCCTCCTTGGGAGCTTTCTTGTTGGCGAGATCTAAACCC +TTGCCCGGCGCAGTTTTTCCCCCAGTCAAATGGCACATAATTGGTGGAGGGGGTGGCATT +CTTCCCTGACCCTCCCCCAAATATTTTTTTAACAACTCTCAACAACGGATATCTCGGCTC +TTTCATCGGATGAAGGACCGCAGCGAAATGCGATAAATGGTGTGAATTGCAGAATCCCGT +GAACCATCGAGTCTTTGAACGCAAGTTGCGCCCGAGGCCATCAGGCCAAGGGCACGCCTG +CCTGGGCATTGCGAGTCATATCTCTCCCTTAACGAGGCTGTCCATACATACTGTTCAGCC +GGTGCGGATGTGAGTTTGGCCCCTTGTTCTTTGGTACGGGGGGTCTAAGAGCTGCATGGG +CTTTTGATGGTCCTAAATACGGCAAGAGGTGGACGAACTATGCTACAACAAAATCGTTGT +GCAAAGGCCCCGGGTTGTCGTATTAGATGGGCCACCGTAATCTAAAGACCCTTTTGAACC +CCATTGGAGGCCCATCAACCCATGATCAGTTGATGGCCATTTGGTTGCGACCCCAGGTCA +GGTGAGGCAACCCGCTGAG +>gi|2765581|emb|Z78456.1|PTZ78456 P.tonsum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGATCACATAATAAT +TGATCGAGTTAATCTGGAGGATCTGTTTACTTTGGTCACCCATGAGCATTTGCTGTTGAA +GTGACCTAGAATTTGCCATCGAGCCTCCTTGGGAGCTTTCTTGTTGGCGAGATCTAAACC +CTTGCCCGGCGCAGTTTTGCGCCAAGTCATATGACACATAATTGGTGGAGGGGGTGGCAT +CCTGCCCTGACCCTCCCCAAATTATTTTTTTAACAACTCTCAGCAACGGATATCTCCGGT +CTGGCATCGATGAAGAACGCAGCGAAATGCGATAAATGGTGTGATTGCAGAATCCCGTGA +ACATCGAGTCTTTGAACGCAAGTTGCGCCCGAGGCCATCAGGCCAAGGGCACGCCTGCCT +GGGCATTGCGAGTCATATCTCTCCCTTAACGAGGCTGTCCATACATACTGTTCAGCCGGT +GCGGATGTGAGTTTGGCCCCTTGTTCTTTGGTACGGGGGGTCTAAGAGCTGCATGGGCTT +TTGATGGTCCTAAATACGGCAAGAGGTGGACGAACTATGCTACAACAAAATTGTTGTGCA +AAGGCCCCGGGTTGTCGTATTAGATGGGCCACCGTAATCTGAAGACCCTTTTGGACCCCA +TTGGAGGCCCATCAACCCATGATCAGTTGATGGCCATTTGGGTTGCGACCCAGGTCAGGT +GAGGCAACCCTGAGTTTAGC +>gi|2765580|emb|Z78455.1|PJZ78455 P.javanicum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACCAGGTTTCCGTAGGTGGACCTTCGGGAGGATCATTTTTGAGATCACATAAAAAT +TGATCGAGTTAATCTGGAGGAACTTTTTACTTTGGTCACCCATGAACAATTTCTTTTGGA +GTGACCTAGAATTTCCATCGAACCCCCTTGGGAACTTTCTTTTTGGCGAGAACTAAACCC +TTTCCCGGCGCAGTTTTTCCCCCAATCAAATTACACAAAAATGGTGGAGGGGGTGGCATC +CTTCCCTTACCCTCCCCCAAATAATTTTTTAACAACTCTCAGCAACGGATATCTCGGCTC +TTGCATCGGTTGAAGAACCAGCGAAATGCGATAAATGGTGTGAATTGCAGAATCCCGTGA +ACCATCGAGTCTTTGAACGCAAGTTGCGCCCGAGGCCATCAGGCCAAGGGCACGCCTGCC +TGGGCATTGCGAGTCATATCTCTCCCTTAACGAGGCTGTCCATACATACTGTTCAGCCGG +TGCGGATGTGAGTTTGGCCCCTTGTTCTTTGGCACGGGGGGTCTAAGAGCTTCATGGGCT +TTTGATGGTCCTAAATACGGCAAGAGGTGGACGAACTATGCTACAACAAAATTGTTGTGC +AAAGGCCCCGGGTTGTCGTATTAGATGGGCCACCGTAATCTGAAGACCCTTTTGAACCCC +ATTGGAGGCCCATCAACCCATGATCAGTTGATGGCCATTTGGGTTGCGACCCCAGGTCAG +GTGAGGCAACCCGCTGAGTTTAGCA +>gi|2765579|emb|Z78454.1|PFZ78454 P.fowliei 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGATCACATAATAAT +TGATCGAGATAATCTGGAGGATCTGTTTACTTTGGTCACCCATGAGCATTTGCTGTTGAA +GTGACCTAGATTTACCATCGAGCCTCCTTGGGAGCTTTCTTGTTGGCGAGATCTAAACCC +TTGCCCGGCGCAGTTTTTCTCCAAGTCATTTGACACATAATCGGTGAAGGGGGTGGCATC +CTGCCCTGACCCTCCCCCCACTATTGTTAACAACTCTCATCAACGGAACTCATGCGATAA +ATGGTGTGATTTGCAGAATCCCGTGAACCATCGAGTCTGTGAACGCAAGTTGCGGCCGAG +GCCATCAGACCAAGGGCACGCCTGCCTGGGCATTGCGAGTCATATCTCTCCCTTAACGAG +GCTGTCCATACATACTGTTCAGCCGGTGCGGATGTGAGTTTGGCCCCTTGTTCTCTGGTA +CGGGGGGTCTAAGAGCTGCATGGGCTTTTGATGGTCCTAAATACGGCAAGAGGTGGACGA +ACTATGCTACAACAAAATTGTTGTGCAAAGGCCCCGGGTTGTCGTATTAGATGGGCCACC +GTAATCTGAAGCCCCTTTTGAACCCATTGGAGGCCCATCAACCNCATGATCAGTTGATGG +CCATTTGGATGCGACCCCAGGTCAGGTGAGGCAAC +>gi|2765578|emb|Z78453.1|PSZ78453 P.schoseri 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGATCACATAATAAT +TGATCGAGTTAATCTGGAGGATCTGTTTACTTTGGTCACCCATGAGCATTTGCTGTTGAA +GTGACCTAGAGTTGCCATCGAGCCTCCTTGGGAGCTTTCTTGTTGGCGAGATCTAAACCC +TTGCCCGGCGCAGTTTTGCGCCAACTCATTTGACACATAACTGGTGAAGGGGGTGGCATC +CTTCCCTGACCCTCCCCCAAATTATTTTTTAACAACTCTCAGCAACCGGATATCTCAGCT +CTTGCATCGATGAAGAACGCAGCGAAATGCGATAAATGGTGTGAATTGCAGAATCCCGTG +AACCATCGAGTCTTTGAACGCAAGTTGCGCCCGAGGCCATCAGGCCAAGGGCACGCCTGC +CTGGGCATTGCGAGTCATATCTCTCCCTTAACGAGGCTGTCCATACATACTGTTCAGCCG +GTGCGGATGTGAGTTTGGCCCCTTGTTCTTTGGTACGGGGGGTCTAAGAGCTGCATGGGC +TTTTGATGGTCCTAAATACGGCAAGAGGTGGACGAACTATGCTACAACAAAATTGTTGTG +CAAAGGCCCCGGGTTGTCGTATTAGATGGGCCACCGTAATCTGAAGACCCTTTTGAACCC +CATTGGAGGCCCATCAACCCATGATCAGTTGATGGCCATTTGGTTGCGACCCCAGGTCAG +GTGAGGCAACCCGCTGAGTTTAGCA +>gi|2765577|emb|Z78452.1|PBZ78452 P.bougainvilleanum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGATCACATAATAAT +TGATCGAGTTAATCTGGAGGATCTATTTACTTTGGTCACCCATGAGCATTTGCTGTTGAA +GTGACCTAGATTTGCCATCAAGCCTCCTTGGGAGCTTTCTTTTTGGCGAGATCTAAACCC +TTGCCCGGCGCAGTTTTGCGCCAAGTCATATGACACATAATTGGTGAAGGGGGTGGCATC +CTGCCCTGACCCTCCCCAAATTATTTTTTTAACAACTCTCAGCAACGGATATCTCGGCTC +TTGAATCGATGAAGAACGCAGCGAAATGCGATAAATGGTGTGAATTGCAGAATCCCGTGA +ACCATCGAGTCTTTGAACGCAAGTTGCGCCCGAGGCCATCAGGCCAAGGGCACGCCTGCC +TGGGCATTGCGAGTCATATCTCTCCCTTAACGAGGCTGTCCATACATACTGTTCAGCCGG +TGCGGATGTGAGTTTGGCCCCTTGTTCTTTGGTACGGGGGGTCTAAGAGCTGCATGGGCT +TTTGATGGTCCTAAATACGGCAAGAGGTGGATGAACTATGCTACAACAAAATTGTTGTGC +AAAGGCCCCGGGTTGTCGTATTAGATGGGCCACTGTAATCTGAAGACCCTTTTGAACCCC +ATTGGAGGCCCATCAACCCATGATCAGTTGATGGCCATTTGGATGCGACCCCAGGTCAGG +TGAGGCAACCGCTGAGTTTAGCA +>gi|2765576|emb|Z78451.1|PHZ78451 P.hookerae 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGTACCTCCGGAAGGATCATTGTTGAGATCACATAATAAT +TGATCGAGATAATCTGGAGGATCTGTTTACTTTGGTCACCCATGGGCATTTGCTGTTGTA +GTGACCTAGATTTCCATGGAGCCCCCCTGGGAGCTTTCTTGCTGGCGAGATCTAAACCCG +TGCCCGGCGCAGTTTTGCGCCAAGTCATATGACACATAATTGGTGTAGGGGGCGGGCATC +CTGCCCTGACCCTCCCCAAAGTATTTTTTGCAACTCTCAACAACGGAAATCTCGCTCTTT +CATCGATGAAGAACCAGCGAAATCGATAAATGGTGTGAATTGCAGAATCCCGTGAACCAT +CGAGTCTTTGAACCCAAGTTGCGCCCGAGGCCATCAGGCCAAGGGCACCCCTCCCTGGGC +ATCGCGAGTCAAATCTCTCCCTTAACGAGGCTGTCCATACATACTGTTCACCCGGTGCGG +ATGTGAGTTTGCCCCCTTGTTCTTTGGTACGGGGGGTCTAAGACCTGCATGGGATTTTGA +TGGTCCTAAAAACGGCAAGAGGTGGACGAACTATCCCTACAATAAAATTGTTGTGCGAAG +CCCCCGGGTTGTCGTATTAGATGGGCCACCGTAATCTGAAGACCCTATAGAACCCCATTG +GAGGCCCATCAACCCATGATCAGTTGATGGCCATTTGATGCGACACCAGTCAGTGAGCAA +CCAGCTGAGC +>gi|2765575|emb|Z78450.1|PPZ78450 P.papuanum 5.8S rRNA gene and ITS1 and ITS2 DNA +GGAAGGATCATTGCTGATATCACATAATAATTGATCGAGTTAAGCTGGAGGATCTGTTTA +CTTTGGTCATCCATGAGCATTTACTGTTGAAGTGACCTAGATTTGCCATCGAGCCTCCTT +GGGAGCTTTCTTGTTGCCGAGATCTAAACCCTTGCCCGGCGCAGTTTTGCGCCAAGTCAT +ATGACACATAATTGGTGAAGGGGGTGGCATCCTGCCCTGACCCTCCCCAAATTATTTTTT +TAACAACTCTCAGCAACGGATATCTCGGCTCTTGCATCGATGAAGAACGCAGCGAAATGC +GATAAATGGTGTGAATTGCAGAATCCCGTGAACCATCGAGTCTTTGAACGCAAGTTGCGC +CCGAGGCCATCAGGCCAAGGGCACGCCTGCCTGGGCATTCCGAGTCATATCTCTCCCCTA +ACGAGGCTGTCCATACATACTGTTCATCCGGTGCGGATGTGAGTGTGGCCCCTTGTTCTT +TGGTCCGGGGGGTCTAAGAACTGCATGGGCATATGATGGTCCTCAAAACTGGCAAGAGGT +GGACGAACTATGCTACAACCAAATTGTTGTGCCAAGGCCCCGGGTTGTCGTATTAGATGG +GCCACCGTAACCTGTAGACCCTGTTGAACCCCATTGGAGGACCATCAACCCATGATCAGT +TGATGACCATGTGTTGCGACCCCAGATCAGCTGAGCAACCCCTGAG +>gi|2765574|emb|Z78449.1|PMZ78449 P.mastersianum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGATCACATAATAAT +TGATCGAGTTAATCTGGAGGATCTGTTTACTTTGGTCACCCATGAGCATTTGCTGTTGAA +GTGACCTAGATTTGCCATCGAGCCTCCTTGGGAGCTTTCTTGTTGGCGAGATCTAAACCC +TTGCCCGGCGCAGTTTTGCGCCAACTCATTTGACACATAATTGGTGAAGGGTGGCATCCT +GCCCTGACCCTCCCCCAAATTATTTTTTTAACAACTCTCAGCAACGGATATCTCAGCTCT +TGCATCGATGAAGAACGCAGCGAAAATGCGATAAATGGTGTGAATTGCAGAATCCCGTGA +ACCATCGAGTCTTTGAACGCAAGTTGCGCCCGAGGCCATCAGGCCAAGGGCACGCCTGCC +TGGGCATTGCGAGTCATATCTCTCCCTTAACGAGGCTGTCCATACATACTGTTCAGCCGG +TGCGGATGTGAGTTTGGCCCCTTGTTCTTTGGTACGGGGGGTCTAAGAGCTGCATGGGCT +TTTGATGGTCCTAAATACGGCAAGAGGTGGACGAACTATGCTACAACTAAATTGTTGTGC +AAAGGCCCCGGGTTGTCGTATTAGATGGGCCACCGTAATCTGAAGACCCTTTTGAACCCC +ATTGGAGGCCCATCAACCCATGATCAGTTGATGGCCATTTGGTTGCGACCCCAGGTCAGG +TGAGGCAACCCGCTGAGTTTATGC +>gi|2765573|emb|Z78448.1|PAZ78448 P.argus 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGATCACATAATAAT +TGATCGAGTTAATCTGGAGGATCTGTTTACTTTGGTCACCCATGAGCATTTGCTGTTGAA +GTGACCTAGAATTGCCATCGAGCCTCCTTGGGAGCTTTCTTGTTGGCGAGATCTAAACCC +TTTCCCGGCGCAGTTTTGCGCCAAGTCGTATGACACATAATTGGTGAAGGGGGGTGGCAT +CCTTCCCTTGACCCTCCCCAAATTATTTTTTTAACAACTCTCAGCAACGGATATCTCAGC +TCTTGCATCGGATGGAAGAACGCACCGAAATGCGATAAATGGTGTGAATTGCAGAATCCC +GTGAACCATCGAGTCTTTGAACGCAAGTTGCGCCCGAGGCCATCAGGCCAAGGGCACGCC +TGCCTGGGCATTGCGAGTCATATCTCTCCCTTAACGAGGCTGTCCATACATACTGTTCAG +CCGGTGCGGATGTGAGTTTGGCCCCTTGTTCTTTGGTACGGGGGGTCTAAGAGCTGCATG +GGCTTTTGATGGTCCTAAATACGGCAAGAGGTGGACGAACTATGCTACAANAAAATTGTT +GTGCAAAGGCCCCGGGTTGTCGTATTAGATGGGCCACCGTAATCTGAAGACCCTTTTGAA +CCCCATTGGAGGCCCATCAGCCCATGATCAGTTGATGGCCATTTGGNTGCGACCCCAGGT +CAGGTGAGGCAACCCGCTGAGG +>gi|2765572|emb|Z78447.1|PVZ78447 P.venustum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGATTCCGTAGGTGAACCTGCGGGAGGATCATTGTTGAGATCACATAATAAT +TGATCGAGTAATCTGGAGGATCTGTTTACTTTGGTCACCCATGGGCATTTCCTGTTGAAG +TGACCTAGAGTTGCCATCGAGCCTCCCTGGGAGCTTTCTTGTTGGCGAGAACTAAACCCT +TACCCGGCGCAATTTTGCCCCCAGTCAAATGACACATAAGTGGTGAAGGGGGTGGCATCC +TATCTCGGCTCTTGCATCGATGAAGAACCCAGCGAAATGCGATAAATGGTGTGAATTGCA +GAATCCCGTGAACCATCGAGTCTTTGAACGCAAGTTGCGCCCGAGGCCATCAGGCCAAGG +GCACGCCTGCCTGGGCATTGCGAGTCATATCTCTCCCTTAACGAGGCTGTCCATACATAC +TGTTCAGCCGGTGCGGATGTGAGTTTGGCCCCTTGTTCTTTGGTACGGGGGGTCTAAGAG +CTGCATGGGCTTTTGATGGTCCTAAATACGGCAAGAGGTGGACGAACTATGCTACACCAA +AATTGTTGTGCAAAGGCCCCGGGTTGTCGTATTAGATGGGCCACCGTAATCTGAAGACCC +TTTTGAACCCCATTGGAGGCCCATCAACCCATGATCAGTTGATGGCCATTTGGTTGCGAC +CCCAGTCAGGTGAGGCAACCCGCTGAGTTTAAGC +>gi|2765571|emb|Z78446.1|PAZ78446 P.acmodontum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTCCGGAAGGATCATTGTTGAGATCACATAATAAT +TGATCGAGTTAATCTGGAGGATCTGTTTACTTTGGTCACCCATGAGCATTTCCTGTTGAA +GTGACCTAGATTTGCCATCGAGCCTCCTTGGGAGCTTTCTTGTTGGCGAGATCTAAACCC +TTGCCCGGCGCAGTTTTGCGCCAAGTCATATGACACATAATTGGTGAAGGGGGTGGCATC +CTCCCCAAATAATTTTTTAACAACTCTCAGCAACGGATACTCGGCTCTTCATCGATGGAG +GACCAGCGAAATTGCGATAATGGTGTGATTGCAGAATCCCGTGAACATCGAGTCTTTGAA +CGCAAGTTGCGCCCGAGGCCATCAGGCCAAGGGCACGCCTGCCTGGGATTGCGAGTCATA +TCTCTCCCTTAACGAGGCTGTCCATACATACTGTTCAGCCGGTGCAGATGTGAGTTTGGC +CCCTTGTTCTTCGGTACGGGGGGTCTAAGAGCTGCATGGGCTTTTGATGGCCCTAAATAC +GGCAAGAGGTGGACGAACTATGCTACAACAAAATTGTTGTGCAAAGGCTCCGGGTTGTCG +TATTAGATGGGCCACCGTAATCTGAAGACCCTTTTGAACCCCATTGGAGGCCCATCAACC +CATGATCAGTTGATGGCCATTTGGTTGCGACCCAGGTCAGGTGAGGCAACCC +>gi|2765570|emb|Z78445.1|PUZ78445 P.urbanianum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGATCACATAATAAT +TGATCGGGTTAATCTGGAGGATCTGTTTACTTTGGTCACCCATGAGCATTTGCTGTTGAA +GTGACCTAGAATTGCCATCGAGCCTCCTTGGGAGCTTTCTTGTTGGCGAGATCTAAACCC +TTGCCCGGCGCAGTTTTGCTCCAAGTCGTTTGACACATAATTGGTGAAGGGGGTGGCATC +CTTCCCTGACCCTCCCCCAACTATTTTTTTAACAACTCTCAGCAACGGAGACTCAGTCTT +CGGCAAATGCGATAAATGGTGTGAATTGCAGAATCCCGTGCACCATCGAGTCTTTGAACG +CAAGTTGCGCCCGAGGCCATCAGGCCAAGGGCACGCCTGCCTGGGCATTGCGAGTCATAT +CTCTCCCTTAACGAGGCTGTCCATACATACTGTTCAGCCGGTGCGGATGTGAGTTTGGCC +CCTTGTTCTTTGGTACGGGGGGTCTAAGAGCTGCATGGGCTTTTGATGGTCCTAAATACG +GCAAGAGGTGGACGAACTATGCTACAACAAAATTGTTGTGCAGAGGCCCCGGGTTGTCGT +ATTAGATGGGCCACCGTAATCTGAAGACCCTTTTGAACCCCATTGGAGGCCCATCAACCC +ATGATCAGTTGATGGCCATTTGGTTGCGACCCCAGGTCAGGTGAGCAACAGCTGT +>gi|2765569|emb|Z78444.1|PAZ78444 P.appletonianum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGGTGAACTGCGGAAGGATCATTGTTGAGATCACATAATAAT +TGATCGAGTTAATCTGGAGGATCTGTTTACTTGGGTCACCCATGGGCATTTGCTGTTGAA +GTGACCTAGATTTGCCATCGAGCCTCCTTGGGAGCATCCTTGTTGGCGATATCTAAACCC +TCAATTTTTCCCCCAATCAAATTACACAAAATTGGTGGAGGGGGTGGCATTCTTCCCTTA +CCCTCCCCCAAATATTTTTTTAACAACTCTCAGCAACGGATATCTCAGCTCTTGCATCGA +TGAAGAACCCACCGAAATGCGATAAATGGTGTGAATTGCAGAATCCCGTGAACCATCGAG +TCTTTGAACGCAAGTTGCGCCCGAGGCCATCAGGCCAAGGGCACGCCTGCCTGGGCATTG +CGAGTCATATCTCTCCCTTAACGAGGCTGTCCATACATACTGTTCAGCCGGTGCGGATGT +GAGTTTGGCCCCTTGTTCTTTGGTACGGGGGGTCTAAGAGATGCATGGGCTTTTGATGGT +CCTAAATACGGCAAGAGGTGGACGAACTATGCTACAACAAAATTGTTGTGCAAAGGCCCC +GGGTTGTCGTATAAGATGGGCCACCGATATCTGAAGACCCTTTTGGACCCCATTGGAGCC +CATCAACCCATGTCAGTTGATGGCCATT +>gi|2765568|emb|Z78443.1|PLZ78443 P.lawrenceanum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGAACCTGCGGAAGGATCATTGTTGAGATCACATAATAAT +TGATCGAGTTAATCTGGAGGATCTGTTTACTTGGGTCACCCATGGGCATTTGCTGTTGAA +GTGACCTAGATTTGCCATCGAGCCTCCTTGGGAGCTTTCTTGTTGGCGATATCTAAACCC +TTGCCCGGCAGAGTTTTGGGCCACANNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNN +NNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNN +NNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNN +NNNNNNNNNNNNNNNNNNNCAGCGAAATGCGATAATGGTGTGAATTGCAGAATCCCGTGA +ACCATCGAGTCTTTGAACGCAAGTTGCGCCCGAGGCCATCAGGCCAAGGGCACGCCTGCC +TGGGCATTGCGAGTCATATCTCTCCCTTAACGAGGCTGTCCATACACACCTGTTCAGCCG +GTGCGGATGTGAGTTTGGCCCCTTGTTCTTTGGTACGGGGGGTCTAAGAGCTGCATGGGC +TTTTGATGGTCCTAAATACGGCAAGAGGTGGACGAACTATGCTACAACAAAATTGTTGTG +CAAAGGCCCCGGGTTGTCGTATTAGATGGGCCACCATAATCTGAAGACCCTTTTGAACCC +CATTGGAGGCCCATCAACCCATGATCAGTTGATGGCCATTTGGTTGCGACCCAGTCAGGT +GAGG +>gi|2765567|emb|Z78442.1|PBZ78442 P.bullenianum 5.8S rRNA gene and ITS1 and ITS2 DNA +GTAGGTGAACCTGCGGAAGGATCATTGTTGAGATCACATAATAATTGATCGAGTTAATCT +GGAGGATCTGTTTACTTTGGTCACCCATGGGCATTTGCTGTTGAAGTGACCTAGATTTGC +CATCGAGCCTCCTTGGGAGCTTTCTTGTTGGCGAGATCTAAACCCTTGCCCGGCGGAGTT +TGGCGCCAAGTCATATGACACATAATTGGTGAAGGGGGTGGCATCCTGCCCTGACCCTCC +CCAAATTATTTTTTTAACAACTCTCAGCAACGGATATCTCGGCTCTTGCATCGATGAAGA +ACGCAGCGAAATGCGATAAATGGTGTGAATTGCAGAATCCCGTGAACCATCGAGTCTTTG +GAACGCAAGTTGCGCCCGAGGCCATCAGGCCAAGGGCACGCCTGCCTGGGCATTGGGAAT +CATATCTCTCCCCTAACGAGGCTATCCAAACATACTGTTCATCCGGTGCGGATGTGAGTT +TGGCCCCTTGTTCTTTGGTACCGGGGGTCTAAGAGCTGCATGGGCATTTGATGGTCCTCA +AAACGGCAAGAGGTGGACGAACTATGCCACAACAAAATTGTTGTCCCAAGGCCCCGGGTT +GTCGTATTAGATGGGCCACCGTAACCTGAAGACCCTTTTGAACCCCATTGGAGGCCCATC +AACCCATGATCAGTTGATGACCATTTGTTGCGACCCCAGTCAGCTGAGCAACCCGCTGAG +T +>gi|2765566|emb|Z78441.1|PSZ78441 P.superbiens 5.8S rRNA gene and ITS1 and ITS2 DNA +GGAAGGTCATTGCCGATATCACATAATAATTGATCGAGTTAATCTGGAGGATCTGTTTAC +TTGGTCACCCATGAGCATTTGCTGTTGAAGTGACCTAGATTTGCCATCGAGCCTCCTTGG +GAGTTTTCTTGTTGGCGAGATCTAAACCCTTGCCCGGCGGAGTTGTGCGCCAAGTCATAT +GACACATAATTGGTGAAGGGGGTGGCATCCTGCCCTGACCCTCCCCAAATTATTTTTTTA +ACAACTCTCAGCAACGGATATCTCGGCTCTTGCATCGATGAAGAACGCAGCGAAATGCGA +TAAATGGTGTGAATTGCAGAATCCCGTGAACCATCGAGTCTTTGAACGCAAGTTGCGCCC +GAGGCCATCAGGCCAAGGGCACGCCTGCCTGGGCATTGCGAGTCATATCTCTCCCTTAAC +GAGGCTGTCCATACATACTGTTCATCCGGTGCGGATGTGAGTTTGGCCCCTTGTTCTTTG +GTACGGGGGGTCTAAGAGCTGCATGGGCATTTGATGGTCCTCAAAACGGCAAGAGGTGGA +CGAACTATGCTACAACCAAATTGTTGTCCCAAGGCCCCGGGTTGTCGTATTAGATGGGCC +ACCGTAACCTGAAGACCCTTTTGAACCCCATTGGAGGCCCATCAACCCATGATCAGTTGA +TGACCATGTGTTGCGACCCCAGTCAGCTGAGCAACGCGCTGAG +>gi|2765565|emb|Z78440.1|PPZ78440 P.purpuratum 5.8S rRNA gene and ITS1 and ITS2 DNA +CGTAACAAGGTTTCCGTAGGTGGACCTCCGGGAGGATCATTGTTGAGATCACATAATAAT +TGATCGAGGTAATCTGGAGGATCTGCATATTTTGGTCACCCATGGGCAATTTCTGTTGTA +GTGACCTAGAATTTCCATCGACCCTCCTTGGGAGCATTCTTGTTGGCGAGAACTAAACCC +TTACCCGGCGCAGTTTTTCCCCCAATCAAATTACACAAAAATGGTGGAGGGGGTGGCATA +TCTTCCCTTACCCTCCCCCAAATAATTTTTTAACAACTCTCAGCAACGGATATCTCAGCT +CTTGCATCGTTGAAGAACCCACCGAAATGCGATAAATGGTGTGAATTGCAGAATCCCGTG +AACCATCGAGTCTTTGAACGCAAGTTGCGCCCGAGGCCATCAGGCCAAGGGCACGCCTGC +CTGGGCATTGCGAGTCATATCTCTCCCTTAACGAGGCTGTCCATACATACTGTTCAGCCG +GTGCGGATGTGAGTTTGGCCCCTTGTTCTTTGCTACGGGGGGTCTAAGAGCTGCATGGGC +TTTTGATGGTCCTAAATACGGCAAGAGGTGGACGAACTATGCTACAGCAAAATTGTTGTG +CAAAGGCCCCGGGTTGTCGTATTAGATGGGCCACCGTAATCTGAAGACCCTTTTGAACCC +CATTGGAGGCCCATCAACCCATGATCAGTTGATGGCCATTTGGTTGCGACCCCAGGTCAG +GTGAGGCAACCCCTGAGTTTAGCA +>gi|2765564|emb|Z78439.1|PBZ78439 P.barbatum 5.8S rRNA gene and ITS1 and ITS2 DNA +CATTGTTGAGATCACATAATAATTGATCGAGTTAATCTGGAGGATCTGTTTACTTTGGTC +ACCCATGGGCATTTGCTGTTGAAGTGACCTAGATTTGCCATCGAGCCTCCTTGGGAGCTT +TCTTGTTGGCGAGATCTAAACCCCTGCCCGGCGGAGTTGGGCGCCAAGTCATATGACACA +TAATTGGTGAAGGGGGTGGTAATCCTGCCCTGACCCTCCCCAAATTATTTTTTTAACAAC +TCTCAGCAACGGATATCTCGGCTCTTGCATCGATGAAGAACGCAGCGAAATGCGATAATG +GTGTGAATTGCAGAATCCCGTGAACATCGAGTCTTTGAACGCAAGTTGCGCCCGAGGCCA +TCAGGCCAAGGGCACGCCTGCCTGGGCATTGCGAGTCATATCTCTCCCTTAATGAGGCTG +TCCATACATACTGTTCAGCCGGTGCGGATGTGAGTTTGGCCCCTTGTTCTTTGGTACGGG +GGGTCTAAGAGCTGCATGGGCTTTGGATGGTCCTAAATACGGAAAGAGGTGGACGAACTA +TGCTACAACAAAATTGTTGTGCAAATGCCCCGGTTGGCCGTTTAGTTGGGCC diff --git a/tests/contrib/io/bioinformatics/test_sequence_dataset.py b/tests/contrib/io/bioinformatics/test_sequence_dataset.py new file mode 100644 index 0000000000..44bca6c004 --- /dev/null +++ b/tests/contrib/io/bioinformatics/test_sequence_dataset.py @@ -0,0 +1,57 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +from kedro.contrib.io.bioinformatics import BioSequenceLocalDataSet + + +def test_save_load_sequence_file(): + ifile = "tests/contrib/io/bioinformatics/ls_orchid.fasta" + data_set = BioSequenceLocalDataSet( + filepath=ifile, load_args={"format": "fasta"}, save_args={"format": "fasta"} + ) + fasta_sequences = data_set.load() + data_set.save(fasta_sequences) + reloaded_list = data_set.load() + assert fasta_sequences[0].id == reloaded_list[0].id + assert len(fasta_sequences) == len(reloaded_list) + assert data_set.exists() + + +def test_save_sequence_file_to_missing_directory(tmp_path): + """Ensure directories are created if missing at write time""" + directory = tmp_path / "missing" / "dir" + ifile = directory / "file" + data_set = BioSequenceLocalDataSet( + filepath=str(ifile), + load_args={"format": "fasta"}, + save_args={"format": "fasta"}, + ) + data_set.save([]) + reloaded = data_set.load() + assert reloaded == [] + assert directory.is_dir() diff --git a/tests/contrib/io/catalog_with_default/__init__.py b/tests/contrib/io/catalog_with_default/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/tests/contrib/io/catalog_with_default/test_data_catalog_with_default.py b/tests/contrib/io/catalog_with_default/test_data_catalog_with_default.py new file mode 100644 index 0000000000..bebffe8279 --- /dev/null +++ b/tests/contrib/io/catalog_with_default/test_data_catalog_with_default.py @@ -0,0 +1,111 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +# pylint: disable=unused-import +import pytest + +from kedro.contrib.io.catalog_with_default import DataCatalogWithDefault +from kedro.io import CSVLocalDataSet, DataCatalog, MemoryDataSet +from tests.io.conftest import dummy_dataframe, filepath # NOQA +from tests.io.test_data_catalog import data_set, sane_config # NOQA + + +def default_csv(name): + return CSVLocalDataSet(name) + + +def test_load_from_unregistered(dummy_dataframe, tmpdir): # NOQA + catalog = DataCatalogWithDefault(data_sets={}, default=default_csv) + + path = str(tmpdir.mkdir("sub").join("test.csv")) + catalog.save(path, dummy_dataframe) + reloaded_df = catalog.load(path) + + assert dummy_dataframe.equals(reloaded_df) + + +def test_save_and_load_catalog(data_set, dummy_dataframe, tmpdir): # NOQA + catalog = DataCatalogWithDefault(data_sets={"test": data_set}, default=default_csv) + + path = str(tmpdir.mkdir("sub").join("test")) + catalog.save(path, dummy_dataframe) + reloaded_df = catalog.load(path) + assert dummy_dataframe.equals(reloaded_df) + + +def test_from_sane_config(sane_config): # NOQA + with pytest.raises( + ValueError, match="Cannot instantiate a `DataCatalogWithDefault`" + ): + DataCatalogWithDefault.from_config( + sane_config["catalog"], sane_config["credentials"] + ) + + +def test_from_sane_config_default(sane_config, dummy_dataframe, tmpdir): # NOQA + catalog = DataCatalog.from_config( + sane_config["catalog"], sane_config["credentials"] + ) + catalog_with_default = DataCatalogWithDefault.from_data_catalog( + catalog, default_csv + ) + path = str(tmpdir.mkdir("sub").join("missing.csv")) + catalog_with_default.save(path, dummy_dataframe) + reloaded_df = catalog_with_default.load(path) + assert dummy_dataframe.equals(reloaded_df) + + +def test_default_none(): + with pytest.raises( + TypeError, + match="Default must be a callable with a " + "single input string argument: the " + "key of the requested data set.", + ): + DataCatalogWithDefault(data_sets={}, default=None) + + +# pylint: disable=unused-argument +def default_memory(name): + return MemoryDataSet(5) + + +def test_remember_load(): + catalog = DataCatalogWithDefault( + data_sets={}, default=default_memory, remember=True + ) + assert catalog.load("any") == 5 + assert "any" in catalog.list() + + +def test_remember_save(tmpdir, dummy_dataframe): # NOQA + catalog = DataCatalogWithDefault(data_sets={}, default=default_csv, remember=True) + + path = str(tmpdir.mkdir("sub").join("test.csv")) + catalog.save(path, dummy_dataframe) + assert tmpdir.join("sub").join("test.csv") in catalog.list() diff --git a/tests/contrib/io/pyspark/__init__.py b/tests/contrib/io/pyspark/__init__.py new file mode 100644 index 0000000000..1ef045335e --- /dev/null +++ b/tests/contrib/io/pyspark/__init__.py @@ -0,0 +1,31 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +import logging + +logging.getLogger("py4j").setLevel(logging.WARN) diff --git a/tests/contrib/io/pyspark/test_memory_data_set.py b/tests/contrib/io/pyspark/test_memory_data_set.py new file mode 100644 index 0000000000..e097b1d5c9 --- /dev/null +++ b/tests/contrib/io/pyspark/test_memory_data_set.py @@ -0,0 +1,103 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +# pylint: disable=no-name-in-module +import pytest +from pyspark.sql import DataFrame as SparkDataFrame +from pyspark.sql import SparkSession +from pyspark.sql.functions import col, when + +from kedro.io import MemoryDataSet + + +def _update_spark_df(data, idx, jdx, value): + session = SparkSession.builder.getOrCreate() + data = session.createDataFrame(data.rdd.zipWithIndex()).select( + col("_1.*"), col("_2").alias("__id") + ) + cname = data.columns[idx] + return data.withColumn( + cname, when(col("__id") == jdx, value).otherwise(col(cname)) + ).drop("__id") + + +def _check_equals(data1, data2): + if isinstance(data1, SparkDataFrame) and isinstance(data2, SparkDataFrame): + return data1.toPandas().equals(data2.toPandas()) + return False # pragma: no cover + + +@pytest.fixture(scope="module") +def spark_session(): + spark = SparkSession.builder.getOrCreate() + yield spark + spark.stop() + + +@pytest.fixture +def spark_data_frame(spark_session): + return spark_session.createDataFrame( + [(1, 4, 5), (2, 5, 6)], ["col1", "col2", "col3"] + ) + + +@pytest.fixture +def memory_data_set(spark_data_frame): + return MemoryDataSet(data=spark_data_frame) + + +def test_load_modify_original_data(memory_data_set, spark_data_frame): + """Check that the data set object is not updated when the original + SparkDataFrame is changed.""" + spark_data_frame = _update_spark_df(spark_data_frame, 1, 1, -5) + assert not _check_equals(memory_data_set.load(), spark_data_frame) + + +def test_save_modify_original_data(spark_data_frame): + """Check that the data set object is not updated when the original + SparkDataFrame is changed.""" + memory_data_set = MemoryDataSet() + memory_data_set.save(spark_data_frame) + spark_data_frame = _update_spark_df(spark_data_frame, 1, 1, "new value") + + assert not _check_equals(memory_data_set.load(), spark_data_frame) + + +def test_load_returns_same_spark_object(memory_data_set, spark_data_frame): + """Test that consecutive loads point to the same object in case of + a SparkDataFrame""" + loaded_data = memory_data_set.load() + reloaded_data = memory_data_set.load() + assert _check_equals(loaded_data, spark_data_frame) + assert _check_equals(reloaded_data, spark_data_frame) + assert loaded_data is reloaded_data + + +def test_str_representation(memory_data_set): + """Test string representation of the data set""" + assert "MemoryDataSet(data=<DataFrame>)" in str(memory_data_set) diff --git a/tests/contrib/io/pyspark/test_spark_data_set.py b/tests/contrib/io/pyspark/test_spark_data_set.py new file mode 100644 index 0000000000..fe90178a16 --- /dev/null +++ b/tests/contrib/io/pyspark/test_spark_data_set.py @@ -0,0 +1,218 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +import tempfile +from os import listdir +from os.path import exists, join + +import pandas as pd +import pytest +from pyspark.sql import SparkSession +from pyspark.sql.functions import col # pylint: disable=no-name-in-module +from pyspark.sql.types import IntegerType, StringType, StructField, StructType +from pyspark.sql.utils import AnalysisException + +from kedro.contrib.io.pyspark import SparkDataSet +from kedro.io import CSVLocalDataSet, DataSetError, ParquetLocalDataSet + + +def _get_sample_pandas_data_frame() -> pd.DataFrame: + return pd.DataFrame( + {"Name": ["Alex", "Bob", "Clarke", "Dave"], "Age": [31, 12, 65, 29]} + ) + + +def _get_sample_spark_data_frame(): + schema = StructType( + [ + StructField("name", StringType(), True), + StructField("age", IntegerType(), True), + ] + ) + + data = [("Alex", 31), ("Bob", 12), ("Clarke", 65), ("Dave", 29)] + + return SparkSession.builder.getOrCreate().createDataFrame(data, schema) + + +def test_load_parquet(tmpdir): + temp_path = str(tmpdir.join("data")) + pandas_df = _get_sample_pandas_data_frame() + local_parquet_set = ParquetLocalDataSet(filepath=temp_path) + local_parquet_set.save(pandas_df) + spark_data_set = SparkDataSet(filepath=temp_path) + spark_df = spark_data_set.load() + assert spark_df.count() == 4 + + +def test_save_parquet(): + # To cross check the correct Spark save operation we save to + # a single spark partition and retrieve it with Kedro + # ParquetLocalDataSet + with tempfile.TemporaryDirectory() as temp_dir: + temp_path = join(temp_dir, "test_data") + spark_data_set = SparkDataSet( + filepath=temp_path, save_args={"compression": "none"} + ) + spark_df = _get_sample_spark_data_frame().coalesce(1) + spark_data_set.save(spark_df) + + single_parquet = [ + join(temp_path, f) for f in listdir(temp_path) if f.startswith("part") + ][0] + + local_parquet_data_set = ParquetLocalDataSet(filepath=single_parquet) + + pandas_df = local_parquet_data_set.load() + + assert pandas_df[pandas_df["name"] == "Bob"]["age"].iloc[0] == 12 + + +def test_load_options_csv(tmpdir): + temp_path = str(tmpdir.join("data")) + pandas_df = _get_sample_pandas_data_frame() + local_csv_data_set = CSVLocalDataSet(filepath=temp_path) + local_csv_data_set.save(pandas_df) + spark_data_set = SparkDataSet( + filepath=temp_path, file_format="csv", load_args={"header": True} + ) + spark_df = spark_data_set.load() + assert spark_df.filter(col("Name") == "Alex").count() == 1 + + +def test_save_options_csv(): + # To cross check the correct Spark save operation we save to + # a single spark partition with csv format and retrieve it with Kedro + # CSVLocalDataSet + with tempfile.TemporaryDirectory() as temp_dir: + temp_path = join(temp_dir, "test_data") + spark_data_set = SparkDataSet( + filepath=temp_path, + file_format="csv", + save_args={"sep": "|", "header": True}, + ) + spark_df = _get_sample_spark_data_frame().coalesce(1) + spark_data_set.save(spark_df) + + single_csv_file = [ + join(temp_path, f) for f in listdir(temp_path) if f.endswith("csv") + ][0] + + csv_local_data_set = CSVLocalDataSet( + filepath=single_csv_file, load_args={"sep": "|"} + ) + pandas_df = csv_local_data_set.load() + + assert pandas_df[pandas_df["name"] == "Alex"]["age"][0] == 31 + + +def test_str_representation(): + with tempfile.NamedTemporaryFile() as temp_data_file: + spark_data_set = SparkDataSet( + filepath=temp_data_file.name, file_format="csv", load_args={"header": True} + ) + assert "SparkDataSet" in str(spark_data_set) + assert "filepath={}".format(temp_data_file.name) in str(spark_data_set) + + +def test_save_overwrite(): + # This test is split into two sections. + # Firstly, it writes a data frame twice and expects it to fail. + # Secondly, it writes a data frame with overwrite mode. + + with pytest.raises(DataSetError): + with tempfile.TemporaryDirectory() as temp_dir: + temp_path = join(temp_dir, "test_data") + spark_data_set = SparkDataSet(filepath=temp_path) + + spark_df = _get_sample_spark_data_frame() + spark_data_set.save(spark_df) + spark_data_set.save(spark_df) + + with tempfile.TemporaryDirectory() as temp_dir: + temp_path = join(temp_dir, "test_data") + spark_data_set = SparkDataSet( + filepath=temp_path, save_args={"mode": "overwrite"} + ) + + spark_df = _get_sample_spark_data_frame() + spark_data_set.save(spark_df) + spark_data_set.save(spark_df) + + +def test_save_partition(): + # To verify partitioning this test with partition data + # and checked whether paritioned column is added to the + # path + + with tempfile.TemporaryDirectory() as temp_dir: + temp_path = join(temp_dir, "test_data") + spark_data_set = SparkDataSet( + filepath=temp_path, save_args={"mode": "overwrite", "partitionBy": ["name"]} + ) + + spark_df = _get_sample_spark_data_frame() + spark_data_set.save(spark_df) + + expected_path = join(temp_path, "name=Alex") + + assert exists(expected_path) + + +@pytest.mark.parametrize("file_format", ["csv", "parquet"]) +def test_exists(file_format): + with tempfile.TemporaryDirectory() as temp_dir: + temp_path = join(temp_dir, "test_data") + spark_data_set = SparkDataSet(filepath=temp_path, file_format=file_format) + spark_df = _get_sample_spark_data_frame().coalesce(1) + + assert not spark_data_set.exists() + + spark_data_set.save(spark_df) + assert spark_data_set.exists() + + +def test_exists_raises_error(monkeypatch): + # exists should raise all errors except for + # AnalysisExceptions clearly indicating a missing file + def faulty_get_spark(): + raise AnalysisException("Other Exception", []) + + spark_data_set = SparkDataSet(filepath="") + monkeypatch.setattr(spark_data_set, "_get_spark", faulty_get_spark) + + with pytest.raises(DataSetError) as error: + spark_data_set.exists() + assert "Other Exception" in str(error.value) + + +def test_cant_pickle(): + import pickle + + with pytest.raises(pickle.PicklingError): + pickle.dumps(SparkDataSet("bob")) diff --git a/tests/contrib/io/pyspark/test_spark_jdbc.py b/tests/contrib/io/pyspark/test_spark_jdbc.py new file mode 100644 index 0000000000..7acd998477 --- /dev/null +++ b/tests/contrib/io/pyspark/test_spark_jdbc.py @@ -0,0 +1,141 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +from unittest import mock + +import pytest + +from kedro.contrib.io.pyspark import SparkJDBCDataSet +from kedro.io import DataSetError + + +@pytest.fixture +def spark_jdbc_args(): + return {"url": "dummy_url", "table": "dummy_table"} + + +@pytest.fixture +def spark_jdbc_args_credentials(spark_jdbc_args): + args = spark_jdbc_args + args.update({"credentials": {"user": "dummy_user", "password": "dummy_pw"}}) + return args + + +@pytest.fixture +def spark_jdbc_args_save_load(spark_jdbc_args): + args = spark_jdbc_args + connection_properties = {"properties": {"driver": "dummy_driver"}} + args.update( + {"save_args": connection_properties, "load_args": connection_properties} + ) + return args + + +def test_missing_url(): + error_message = ( + "`url` argument cannot be empty. Please provide a JDBC" + " URL of the form ``jdbc:subprotocol:subname``." + ) + with pytest.raises(DataSetError, match=error_message): + SparkJDBCDataSet(url=None, table="dummy_table") + + +def test_missing_table(): + error_message = ( + "`table` argument cannot be empty. Please provide" + " the name of the table to load or save data to." + ) + with pytest.raises(DataSetError, match=error_message): + SparkJDBCDataSet(url="dummy_url", table=None) + + +def mock_save(arg_dict): + mock_data = mock.Mock() + data_set = SparkJDBCDataSet(**arg_dict) + data_set.save(mock_data) + return mock_data + + +def test_save(spark_jdbc_args): + data = mock_save(spark_jdbc_args) + data.write.jdbc.assert_called_with("dummy_url", "dummy_table") + + +def test_save_credentials(spark_jdbc_args_credentials): + data = mock_save(spark_jdbc_args_credentials) + data.write.jdbc.assert_called_with( + "dummy_url", + "dummy_table", + properties={"user": "dummy_user", "password": "dummy_pw"}, + ) + + +def test_save_args(spark_jdbc_args_save_load): + data = mock_save(spark_jdbc_args_save_load) + data.write.jdbc.assert_called_with( + "dummy_url", "dummy_table", properties={"driver": "dummy_driver"} + ) + + +@mock.patch("kedro.contrib.io.pyspark.spark_jdbc.SparkSession.builder.getOrCreate") +def mock_load(mock_get_or_create, arg_dict): + spark = mock_get_or_create.return_value + data_set = SparkJDBCDataSet(**arg_dict) + data_set.load() + return spark + + +def test_load(spark_jdbc_args): + # pylint: disable=no-value-for-parameter + spark = mock_load(arg_dict=spark_jdbc_args) + spark.read.jdbc.assert_called_with("dummy_url", "dummy_table") + + +def test_load_credentials(spark_jdbc_args_credentials): + # pylint: disable=no-value-for-parameter + spark = mock_load(arg_dict=spark_jdbc_args_credentials) + spark.read.jdbc.assert_called_with( + "dummy_url", + "dummy_table", + properties={"user": "dummy_user", "password": "dummy_pw"}, + ) + + +def test_load_args(spark_jdbc_args_save_load): + # pylint: disable=no-value-for-parameter + spark = mock_load(arg_dict=spark_jdbc_args_save_load) + spark.read.jdbc.assert_called_with( + "dummy_url", "dummy_table", properties={"driver": "dummy_driver"} + ) + + +def test_cant_pickle(): + import pickle + + with pytest.raises(pickle.PicklingError): + pickle.dumps(SparkJDBCDataSet("bob", "test")) diff --git a/tests/io/__init__.py b/tests/io/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/tests/io/conftest.py b/tests/io/conftest.py new file mode 100644 index 0000000000..772a93ee7a --- /dev/null +++ b/tests/io/conftest.py @@ -0,0 +1,70 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +""" +This file contains the fixtures that are reusable by any tests within +this directory. You don’t need to import the fixtures as pytest will +discover them automatically. More info here: +https://docs.pytest.org/en/latest/fixture.html +""" + +import pandas as pd +from pytest import fixture +from s3fs import S3FileSystem + +from kedro.io.core import generate_current_version + + +@fixture(params=[None]) +def filepath(tmp_path, request): + return request.param or str(tmp_path / "some" / "dir" / "test.csv") + + +@fixture +def dummy_dataframe(): + return pd.DataFrame({"col1": [1, 2], "col2": [4, 5], "col3": [5, 6]}) + + +@fixture(params=[None]) +def load_version(request): + return request.param + + +@fixture(params=[None]) +def save_version(request): + return request.param or generate_current_version() + + +# pylint: disable=protected-access +@fixture(autouse=True) +def s3fs_cleanup(): + # s3fs caches some connection details globally, which should be + # cleared so we get a clean slate every time we instantiate a S3FileSystem + yield + S3FileSystem._conn = {} + S3FileSystem._singleton = [None] diff --git a/tests/io/test_csv_local.py b/tests/io/test_csv_local.py new file mode 100644 index 0000000000..b0a8dd7d0d --- /dev/null +++ b/tests/io/test_csv_local.py @@ -0,0 +1,143 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. +from pathlib import Path + +import pytest +from pandas.util.testing import assert_frame_equal + +from kedro.io import CSVLocalDataSet, DataSetError +from kedro.io.core import Version + + +@pytest.fixture(params=[{"sep": ","}]) +def csv_data_set(filepath, request): + return CSVLocalDataSet(filepath=filepath, save_args=request.param) + + +@pytest.fixture +def versioned_csv_data_set(filepath, load_version, save_version): + return CSVLocalDataSet( + filepath=filepath, + save_args={"sep": ","}, + version=Version(load_version, save_version), + ) + + +class TestCSVLocalDataSet: + def test_save_and_load(self, csv_data_set, dummy_dataframe): + """Test that saved and reloaded data matches the original one.""" + csv_data_set.save(dummy_dataframe) + reloaded_df = csv_data_set.load() + assert_frame_equal(reloaded_df, dummy_dataframe) + + @pytest.mark.parametrize("csv_data_set", [{"index": False}], indirect=True) + def test_load_missing_file(self, csv_data_set): + """Check the error while trying to load from missing source.""" + pattern = r"Failed while loading data from data set CSVLocalDataSet" + with pytest.raises(DataSetError, match=pattern): + csv_data_set.load() + + def test_exists(self, csv_data_set, dummy_dataframe): + """Test `exists` method invocation for both cases.""" + assert not csv_data_set.exists() + csv_data_set.save(dummy_dataframe) + assert csv_data_set.exists() + + +class TestCSVLocalDataSetVersioned: + def test_save_and_load( + self, versioned_csv_data_set, dummy_dataframe, filepath, save_version + ): + """Test that saved and reloaded data matches the original one for + the versioned data set.""" + versioned_csv_data_set.save(dummy_dataframe) + path = Path(filepath) + assert (path / save_version / path.name).is_file() + reloaded_df = versioned_csv_data_set.load() + assert_frame_equal(reloaded_df, dummy_dataframe) + + def test_no_versions(self, versioned_csv_data_set): + """Check the error if no versions are available for load.""" + pattern = r"Did not find any versions for CSVLocalDataSet\(.+\)" + with pytest.raises(DataSetError, match=pattern): + versioned_csv_data_set.load() + + def test_exists(self, versioned_csv_data_set, dummy_dataframe): + """Test `exists` method invocation for versioned data set.""" + assert not versioned_csv_data_set.exists() + + versioned_csv_data_set.save(dummy_dataframe) + assert versioned_csv_data_set.exists() + + def test_prevent_override(self, versioned_csv_data_set, dummy_dataframe): + """Check the error when attempt to override the same data set + version.""" + versioned_csv_data_set.save(dummy_dataframe) + pattern = ( + r"Save path \`.+\` for CSVLocalDataSet\(.+\) must not " + r"exist if versioning is enabled" + ) + with pytest.raises(DataSetError, match=pattern): + versioned_csv_data_set.save(dummy_dataframe) + + @pytest.mark.parametrize( + "load_version", ["2019-01-01T23.59.59.999Z"], indirect=True + ) + @pytest.mark.parametrize( + "save_version", ["2019-01-02T00.00.00.000Z"], indirect=True + ) + def test_save_version_warning( + self, versioned_csv_data_set, load_version, save_version, dummy_dataframe + ): + """Check the warning when saving to the path that differs from + the subsequent load path.""" + pattern = ( + r"Save path `.*/{}/test\.csv` did not match load path " + r"`.*/{}/test\.csv` for CSVLocalDataSet\(.+\)".format( + save_version, load_version + ) + ) + with pytest.warns(UserWarning, match=pattern): + versioned_csv_data_set.save(dummy_dataframe) + + def test_version_str_repr(self, load_version, save_version): + """Test that version is in string representation of the class instance + when applicable.""" + filepath = "test.csv" + ds = CSVLocalDataSet(filepath=filepath) + ds_versioned = CSVLocalDataSet( + filepath=filepath, version=Version(load_version, save_version) + ) + assert filepath in str(ds) + assert "version" not in str(ds) + + assert filepath in str(ds_versioned) + ver_str = "version=Version(load={}, save='{}')".format( + load_version, save_version + ) + assert ver_str in str(ds_versioned) diff --git a/tests/io/test_csv_s3.py b/tests/io/test_csv_s3.py new file mode 100644 index 0000000000..123df0f031 --- /dev/null +++ b/tests/io/test_csv_s3.py @@ -0,0 +1,298 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +# pylint: disable=protected-access,no-member + +from multiprocessing.reduction import ForkingPickler + +import pandas as pd +import pytest +import s3fs +from botocore.exceptions import PartialCredentialsError +from moto import mock_s3 +from pandas.util.testing import assert_frame_equal + +from kedro.io import CSVS3DataSet, DataSetError +from kedro.io.core import Version + +FILENAME = "test.csv" +BUCKET_NAME = "test_bucket" +AWS_CREDENTIALS = dict( + aws_access_key_id="FAKE_ACCESS_KEY", aws_secret_access_key="FAKE_SECRET_KEY" +) + + +@pytest.fixture(params=[None]) +def load_args(request): + return request.param + + +@pytest.fixture(params=[None]) +def save_args(request): + return request.param + + +@pytest.fixture +def mocked_s3_bucket(): + """Create a bucket for testing using moto.""" + with mock_s3(): + conn = s3fs.core.boto3.client("s3", **AWS_CREDENTIALS) + conn.create_bucket(Bucket=BUCKET_NAME) + yield conn + + +@pytest.fixture +def mocked_s3_object(mocked_s3_bucket, dummy_dataframe): + """Creates test data and adds it to mocked S3 bucket.""" + mocked_s3_bucket.put_object( + Bucket=BUCKET_NAME, Key=FILENAME, Body=dummy_dataframe.to_csv(index=False) + ) + return mocked_s3_bucket + + +@pytest.fixture +def s3_data_set(load_args, save_args): + return CSVS3DataSet( + filepath=FILENAME, + bucket_name=BUCKET_NAME, + credentials=AWS_CREDENTIALS, + load_args=load_args, + save_args=save_args, + ) + + +@pytest.fixture +def versioned_s3_data_set(load_args, save_args, load_version, save_version): + return CSVS3DataSet( + filepath=FILENAME, + bucket_name=BUCKET_NAME, + credentials=AWS_CREDENTIALS, + load_args=load_args, + save_args=save_args, + version=Version(load_version, save_version), + ) + + +@pytest.fixture +def mocked_s3_object_versioned(mocked_s3_bucket, dummy_dataframe, save_version): + """Create versioned test data and add it to mocked S3 bucket.""" + mocked_s3_bucket.put_object( + Bucket=BUCKET_NAME, + Key="{0}/{1}/{0}".format(FILENAME, save_version), + Body=dummy_dataframe.to_csv(index=False), + ) + return mocked_s3_bucket + + +class TestCSVS3DataSet: + @pytest.mark.parametrize( + "bad_credentials", + [{"aws_secret_access_key": "SECRET"}, {"aws_access_key_id": "KEY"}], + ) + def test_incomplete_credentials_load(self, bad_credentials): + """Test that incomplete credentials passed in credentials.yml raises exception.""" + with pytest.raises(PartialCredentialsError): + CSVS3DataSet( + filepath=FILENAME, bucket_name=BUCKET_NAME, credentials=bad_credentials + ) + + def test_incorrect_credentials_load(self): + """Test that incorrect credential keys won't instantiate dataset.""" + pattern = "unexpected keyword argument" + with pytest.raises(TypeError, match=pattern): + CSVS3DataSet( + filepath=FILENAME, + bucket_name=BUCKET_NAME, + credentials={"access_token": "TOKEN", "access_key": "KEY"}, + ) + + @pytest.mark.parametrize( + "bad_credentials", + [{"aws_access_key_id": None, "aws_secret_access_key": None}, {}, None], + ) + def test_empty_credentials_load(self, bad_credentials): + s3_data_set = CSVS3DataSet( + filepath=FILENAME, bucket_name=BUCKET_NAME, credentials=bad_credentials + ) + pattern = r"Failed while loading data from data set CSVS3DataSet\(.+\)" + with pytest.raises(DataSetError, match=pattern): + s3_data_set.load() + + def test_pass_credentials(self, mocker): + """Test that AWS credentials are passed successfully into boto3 + client instantiation on creating S3 connection.""" + mocker.patch("s3fs.core.boto3.Session.client") + s3_data_set = CSVS3DataSet( + filepath=FILENAME, bucket_name=BUCKET_NAME, credentials=AWS_CREDENTIALS + ) + pattern = r"Failed while loading data from data set CSVS3DataSet\(.+\)" + with pytest.raises(DataSetError, match=pattern): + s3_data_set.load() + + assert s3fs.core.boto3.Session.client.call_count == 1 + args, kwargs = s3fs.core.boto3.Session.client.call_args_list[0] + assert args == ("s3",) + for k, v in AWS_CREDENTIALS.items(): + assert kwargs[k] == v + + @pytest.mark.usefixtures("mocked_s3_object") + def test_load_data(self, s3_data_set, dummy_dataframe): + """Test loading the data from S3.""" + loaded_data = s3_data_set.load() + assert_frame_equal(loaded_data, dummy_dataframe) + + @pytest.mark.usefixtures("mocked_s3_object") + def test_save_data(self, s3_data_set): + """Test saving the data to S3.""" + new_data = pd.DataFrame( + {"col1": ["a", "b"], "col2": ["c", "d"], "col3": ["e", "f"]} + ) + s3_data_set.save(new_data) + loaded_data = s3_data_set.load() + assert_frame_equal(loaded_data, new_data) + + @pytest.mark.usefixtures("mocked_s3_bucket") + def test_exists(self, s3_data_set, dummy_dataframe): + """Test `exists` method invocation for both existing and + nonexistent data set.""" + assert not s3_data_set.exists() + s3_data_set.save(dummy_dataframe) + assert s3_data_set.exists() + + @mock_s3 + def test_exists_raises_error(self, s3_data_set): + """Check the error if the given S3 bucket doesn't exist.""" + with pytest.raises(DataSetError, match="NoSuchBucket"): + s3_data_set.exists() + + def test_load_save_args(self, s3_data_set): + """Test default load and save arguments of the data set.""" + assert not s3_data_set._load_args + assert "index" in s3_data_set._save_args + + @pytest.mark.parametrize( + "load_args", [{"k1": "v1", "index": "value"}], indirect=True + ) + def test_load_extra_params(self, s3_data_set, load_args): + """Test overriding the default load arguments.""" + for key, value in load_args.items(): + assert s3_data_set._load_args[key] == value + + @pytest.mark.parametrize( + "save_args", [{"k1": "v1", "index": "value"}], indirect=True + ) + def test_save_extra_params(self, s3_data_set, save_args): + """Test overriding the default save arguments.""" + for key, value in save_args.items(): + assert s3_data_set._save_args[key] == value + + @pytest.mark.parametrize("save_args", [{"option": "value"}], indirect=True) + def test_str_representation(self, s3_data_set, save_args): + """Test string representation of the data set instance.""" + str_repr = str(s3_data_set) + assert "CSVS3DataSet" in str_repr + for k in save_args.keys(): + assert k in str_repr + for secret in AWS_CREDENTIALS.values(): + assert secret not in str_repr + + def test_serializable(self, s3_data_set): + ForkingPickler.dumps(s3_data_set) + + +@pytest.mark.usefixtures("mocked_s3_bucket") +class TestCSVS3DataSetVersioned: + def test_save_and_load(self, versioned_s3_data_set, dummy_dataframe): + """Test that saved and reloaded data matches the original one for + the versioned data set.""" + versioned_s3_data_set.save(dummy_dataframe) + reloaded_df = versioned_s3_data_set.load() + assert_frame_equal(reloaded_df, dummy_dataframe) + + def test_no_versions(self, versioned_s3_data_set): + """Check the error if no versions are available for load.""" + pattern = r"Did not find any versions for CSVS3DataSet\(.+\)" + with pytest.raises(DataSetError, match=pattern): + versioned_s3_data_set.load() + + def test_exists(self, versioned_s3_data_set, dummy_dataframe): + """Test `exists` method invocation for versioned data set.""" + assert not versioned_s3_data_set.exists() + + versioned_s3_data_set.save(dummy_dataframe) + assert versioned_s3_data_set.exists() + + @pytest.mark.usefixtures("mocked_s3_object_versioned") + def test_prevent_override(self, versioned_s3_data_set, dummy_dataframe): + """Check the error when attempting to override the data set if the + corresponding csv file for a given save version already exists in S3. + """ + pattern = ( + r"Save path \`.+\` for CSVS3DataSet\(.+\) must not exist " + r"if versioning is enabled" + ) + with pytest.raises(DataSetError, match=pattern): + versioned_s3_data_set.save(dummy_dataframe) + + @pytest.mark.parametrize( + "load_version", ["2019-01-01T23.59.59.999Z"], indirect=True + ) + @pytest.mark.parametrize( + "save_version", ["2019-01-02T00.00.00.000Z"], indirect=True + ) + def test_save_version_warning( + self, versioned_s3_data_set, load_version, save_version, dummy_dataframe + ): + """Check the warning when saving to the path that differs from + the subsequent load path.""" + pattern = ( + r"Save path `{f}/{sv}/{f}` did not match load path " + r"`{f}/{lv}/{f}` for CSVS3DataSet\(.+\)".format( + f=FILENAME, sv=save_version, lv=load_version + ) + ) + with pytest.warns(UserWarning, match=pattern): + versioned_s3_data_set.save(dummy_dataframe) + + def test_version_str_repr(self, load_version, save_version): + """Test that version is in string representation of the class instance + when applicable.""" + ds = CSVS3DataSet(filepath=FILENAME, bucket_name=BUCKET_NAME) + ds_versioned = CSVS3DataSet( + filepath=FILENAME, + bucket_name=BUCKET_NAME, + version=Version(load_version, save_version), + ) + assert FILENAME in str(ds) + assert "version" not in str(ds) + + assert FILENAME in str(ds_versioned) + ver_str = "version=Version(load={}, save='{}')".format( + load_version, save_version + ) + assert ver_str in str(ds_versioned) diff --git a/tests/io/test_data_catalog.py b/tests/io/test_data_catalog.py new file mode 100644 index 0000000000..1302738686 --- /dev/null +++ b/tests/io/test_data_catalog.py @@ -0,0 +1,339 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. +from pathlib import Path +from typing import Any + +import pytest +from pandas.util.testing import assert_frame_equal + +from kedro.io import ( + AbstractDataSet, + CSVLocalDataSet, + DataCatalog, + DataSetAlreadyExistsError, + DataSetError, + DataSetNotFoundError, + LambdaDataSet, + MemoryDataSet, + ParquetLocalDataSet, +) +from kedro.io.core import generate_current_version + + +@pytest.fixture +def sane_config(filepath): + return { + "catalog": { + "boats": {"type": "CSVLocalDataSet", "filepath": filepath}, + "cars": { + "type": "CSVS3DataSet", + "filepath": "test_file.csv", + "bucket_name": "test_bucket", + "credentials": "s3_credentials", + }, + }, + "credentials": { + "s3_credentials": { + "aws_access_key_id": "FAKE_ACCESS_KEY", + "aws_secret_access_key": "FAKE_SECRET_KEY", + } + }, + } + + +@pytest.fixture +def data_set(filepath): + return CSVLocalDataSet(filepath=filepath, save_args={"index": False}) + + +@pytest.fixture +def multi_catalog(): + csv = CSVLocalDataSet(filepath="abc.csv") + parq = ParquetLocalDataSet(filepath="xyz.parq") + return DataCatalog({"abc": csv, "xyz": parq}) + + +@pytest.fixture +def memory_catalog(): + ds1 = MemoryDataSet({"data": 42}) + ds2 = MemoryDataSet([1, 2, 3, 4, 5]) + return DataCatalog({"ds1": ds1, "ds2": ds2}) + + +@pytest.fixture +def conflicting_feed_dict(): + ds1 = MemoryDataSet({"data": 0}) + return {"ds1": ds1, "ds3": 1} + + +class BadDataSet(AbstractDataSet): # pragma: no cover + def __init__(self, filepath): + self.filepath = filepath + raise Exception("Naughty!") + + def _load(self): + return None + + def _save(self, data: Any): + pass + + def _describe(self): + return {} + + +@pytest.fixture +def bad_config(filepath): + return { + "bad": {"type": "tests.io.test_data_catalog.BadDataSet", "filepath": filepath} + } + + +@pytest.fixture +def data_catalog(data_set): + return DataCatalog(data_sets={"test": data_set}) + + +@pytest.fixture +def data_catalog_from_config(sane_config): + return DataCatalog.from_config(**sane_config) + + +class TestDataCatalog: + def test_save_and_load(self, data_catalog, dummy_dataframe): + """Test saving and reloading the data set""" + data_catalog.save("test", dummy_dataframe) + reloaded_df = data_catalog.load("test") + + assert_frame_equal(reloaded_df, dummy_dataframe) + + def test_add_save_and_load(self, data_set, dummy_dataframe): + """Test adding and then saving and reloading the data set""" + catalog = DataCatalog(data_sets={}) + catalog.add("test", data_set) + catalog.save("test", dummy_dataframe) + reloaded_df = catalog.load("test") + + assert_frame_equal(reloaded_df, dummy_dataframe) + + def test_add_all_save_and_load(self, data_set, dummy_dataframe): + """Test adding all to the data catalog and then saving and reloading + the data set""" + catalog = DataCatalog(data_sets={}) + catalog.add_all({"test": data_set}) + catalog.save("test", dummy_dataframe) + reloaded_df = catalog.load("test") + + assert_frame_equal(reloaded_df, dummy_dataframe) + + def test_load_error(self, data_catalog): + """Check the error when attempting to load a data set + from nonexistent source""" + pattern = r"Failed while loading data from data set CSVLocalDataSet" + with pytest.raises(DataSetError, match=pattern): + data_catalog.load("test") + + def test_add_data_set_twice(self, data_catalog, data_set): + """Check the error when attempting to add the data set twice""" + pattern = r"DataSet 'test' has already been registered" + with pytest.raises(DataSetAlreadyExistsError, match=pattern): + data_catalog.add("test", data_set) + + def test_load_from_unregistered(self): + """Check the error when attempting to load unregistered data set""" + catalog = DataCatalog(data_sets={}) + pattern = r"DataSet 'test' not found in the catalog" + with pytest.raises(DataSetNotFoundError, match=pattern): + catalog.load("test") + + def test_save_to_unregistered(self, dummy_dataframe): + """Check the error when attempting to save to unregistered data set""" + catalog = DataCatalog(data_sets={}) + pattern = r"DataSet 'test' not found in the catalog" + with pytest.raises(DataSetNotFoundError, match=pattern): + catalog.save("test", dummy_dataframe) + + def test_feed_dict(self, memory_catalog, conflicting_feed_dict): + """Test feed dict overriding some of the data sets""" + memory_catalog.add_feed_dict(conflicting_feed_dict, replace=True) + assert "data" in memory_catalog.load("ds1") + assert memory_catalog.load("ds1")["data"] == 0 + assert isinstance(memory_catalog.load("ds2"), list) + assert memory_catalog.load("ds3") == 1 + + def test_exists(self, data_catalog, dummy_dataframe): + """Test `exists` method invocation""" + assert not data_catalog.exists("test") + data_catalog.save("test", dummy_dataframe) + assert data_catalog.exists("test") + + def test_exists_not_implemented(self, caplog): + """Test calling `exists` on the data set, which didn't implement it""" + catalog = DataCatalog(data_sets={"test": LambdaDataSet(None, None)}) + result = catalog.exists("test") + + log_record = caplog.records[0] + assert log_record.levelname == "WARNING" + assert ( + "`exists()` not implemented for `test`. " + "Assuming output does not exist." in log_record.message + ) + assert result is False + + def test_exists_error(self, data_catalog): + """Check the the error when calling `exists` + on unregistered data set""" + pattern = r"DataSet \'wrong_key\' not found in the catalog" + with pytest.raises(DataSetError, match=pattern): + data_catalog.exists("wrong_key") + + def test_multi_catalog_list(self, multi_catalog): + """Test data catalog which contains multiple data sets""" + entries = multi_catalog.list() + assert "abc" in entries + assert "xyz" in entries + + def test_eq(self, multi_catalog, data_catalog): + assert multi_catalog == multi_catalog # pylint: disable=comparison-with-itself + assert multi_catalog == multi_catalog.shallow_copy() + assert multi_catalog != data_catalog + + +class TestDataCatalogFromConfig: + def test_from_sane_config(self, data_catalog_from_config, dummy_dataframe): + """Test populating the data catalog from config""" + data_catalog_from_config.save("boats", dummy_dataframe) + reloaded_df = data_catalog_from_config.load("boats") + assert_frame_equal(reloaded_df, dummy_dataframe) + + def test_config_missing_type(self, sane_config): + """Check the error if type attribute is missing for some data set(s) + in the config""" + del sane_config["catalog"]["boats"]["type"] + pattern = r"`type` is missing from DataSet \'boats\' " r"catalog configuration" + with pytest.raises(DataSetError, match=pattern): + DataCatalog.from_config(**sane_config) + + def test_config_invalid_module(self, sane_config): + """Check the error if the type points to nonexistent module""" + sane_config["catalog"]["boats"][ + "type" + ] = "kedro.invalid_module_name.io.CSVLocalDataSet" + with pytest.raises(DataSetError, match=r"Cannot import module"): + DataCatalog.from_config(**sane_config) + + def test_config_missing_class(self, sane_config): + """Check the error if the type points to nonexistent class""" + sane_config["catalog"]["boats"]["type"] = "kedro.io.CSVLocalDataSetInvalid" + pattern = ( + r"Class `kedro.io.CSVLocalDataSetInvalid` for DataSet `boats` not found." + ) + with pytest.raises(DataSetError, match=pattern): + DataCatalog.from_config(**sane_config) + + def test_config_invalid_data_set(self, sane_config): + """Check the error if the type points to invalid class""" + sane_config["catalog"]["boats"]["type"] = "DataCatalog" + pattern = ( + r"DataSet 'boats' type `.*DataCatalog` is invalid: all " + r"data set types must extend `AbstractDataSet`" + ) + with pytest.raises(DataSetError, match=pattern): + DataCatalog.from_config(**sane_config) + + def test_config_invalid_arguments(self, sane_config): + """Check the error if the data set config contains invalid arguments""" + sane_config["catalog"]["boats"]["save_and_load_args"] = False + pattern = ( + r"DataSet 'boats' must only contain arguments valid for " + r"the constructor of `.*CSVLocalDataSet`" + ) + with pytest.raises(DataSetError, match=pattern): + DataCatalog.from_config(**sane_config) + + def test_empty_config(self): + """Test empty config""" + assert DataCatalog.from_config(None) + + def test_missing_credentials(self, sane_config): + """Check the error if credentials can't be located""" + sane_config["catalog"]["cars"]["credentials"] = "missing" + with pytest.raises(KeyError, match=r"Unable to find credentials"): + DataCatalog.from_config(**sane_config) + + # pylint: disable=protected-access + def test_link_credentials(self, data_catalog_from_config, sane_config): + """Test credentials being linked to the relevant data set""" + assert ( + data_catalog_from_config._data_sets["cars"]._credentials[ + "aws_access_key_id" + ] + == sane_config["credentials"]["s3_credentials"]["aws_access_key_id"] + ) + + def test_idempotent_catalog(self, sane_config): + """Test that data catalog instantiations are idempotent""" + _ = DataCatalog.from_config(**sane_config) # NOQA + catalog = DataCatalog.from_config(**sane_config) + assert catalog + + def test_error_dataset_init(self, bad_config): + """Check the error when trying to instantiate erroneous data set""" + pattern = r"Failed to instantiate DataSet \'bad\' " r"of type `.*BadDataSet`" + with pytest.raises(DataSetError, match=pattern): + DataCatalog.from_config(bad_config, None) + + +class TestDataCatalogVersioned: + def test_from_sane_config_versioned(self, sane_config, dummy_dataframe): + """Test load and save of versioned data sets from config""" + sane_config["catalog"]["boats"]["versioned"] = True + version = generate_current_version() + catalog = DataCatalog.from_config( + **sane_config, load_versions={"boats": version}, save_version=version + ) + catalog.save("boats", dummy_dataframe) + path = Path(sane_config["catalog"]["boats"]["filepath"]) + path = path / version / path.name + assert path.is_file() + reloaded_df = catalog.load("boats") + assert_frame_equal(reloaded_df, dummy_dataframe) + + @pytest.mark.parametrize("versioned", [True, False]) + def test_from_sane_config_versioned_warn(self, caplog, sane_config, versioned): + """Check the warning if `version` attribute was added + to the data set config""" + sane_config["catalog"]["boats"]["versioned"] = versioned + sane_config["catalog"]["boats"]["version"] = True + DataCatalog.from_config(**sane_config) + log_record = caplog.records[0] + assert log_record.levelname == "WARNING" + assert ( + "`version` attribute removed from `boats` data set " + "configuration since it is a reserved word and cannot be " + "directly specified" in log_record.message + ) diff --git a/tests/io/test_excel_local.py b/tests/io/test_excel_local.py new file mode 100644 index 0000000000..bd3221ed6f --- /dev/null +++ b/tests/io/test_excel_local.py @@ -0,0 +1,150 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +import pytest +from pandas.util.testing import assert_frame_equal + +from kedro.io import DataSetError, ExcelLocalDataSet +from kedro.io.core import Version + + +@pytest.fixture +def filepath_xls(tmp_path): + return str(tmp_path / "test.xlsx") + + +@pytest.fixture(params=[dict()]) +def xls_data_set(filepath_xls, request): + return ExcelLocalDataSet(filepath=filepath_xls, **request.param) + + +@pytest.fixture +def versioned_xls_data_set(filepath_xls, load_version, save_version): + return ExcelLocalDataSet( + filepath=filepath_xls, version=Version(load_version, save_version) + ) + + +class TestExcelLocalDataSet: + @pytest.mark.parametrize( + "xls_data_set", + [dict(load_args={"sheet_name": "Sheet1"}, save_args={"na_rep": "N/A"})], + indirect=True, + ) + def test_save_and_load(self, xls_data_set, dummy_dataframe): + """Test saving and reloading the data set.""" + xls_data_set.save(dummy_dataframe) + reloaded_df = xls_data_set.load() + + assert dummy_dataframe.equals(reloaded_df) + + @pytest.mark.parametrize( + "xls_data_set", [dict(load_args={"sheet_name": "Sheet1"})], indirect=True + ) + def test_load_missing_xls_file(self, xls_data_set): + """Check the error raised when trying to load nonexistent xlsx file.""" + pattern = r"Failed while loading data from data set ExcelLocalDataSet" + with pytest.raises(DataSetError, match=pattern): + xls_data_set.load() + + def test_exists(self, xls_data_set, dummy_dataframe): + """Test `exists` method invocation.""" + assert not xls_data_set.exists() + + xls_data_set.save(dummy_dataframe) + assert xls_data_set.exists() + + +class TestExcelLocalDataSetVersioned: + def test_save_and_load(self, versioned_xls_data_set, dummy_dataframe): + """Test that saved and reloaded data matches the original one for + the versioned data set.""" + versioned_xls_data_set.save(dummy_dataframe) + reloaded_df = versioned_xls_data_set.load() + assert_frame_equal(reloaded_df, dummy_dataframe) + + def test_no_versions(self, versioned_xls_data_set): + """Check the error if no versions are available for load.""" + pattern = r"Did not find any versions for ExcelLocalDataSet\(.+\)" + with pytest.raises(DataSetError, match=pattern): + versioned_xls_data_set.load() + + def test_exists(self, versioned_xls_data_set, dummy_dataframe): + """Test `exists` method invocation for versioned data set.""" + assert not versioned_xls_data_set.exists() + + versioned_xls_data_set.save(dummy_dataframe) + assert versioned_xls_data_set.exists() + + def test_prevent_override(self, versioned_xls_data_set, dummy_dataframe): + """Check the error when attempting to override the data set if the + corresponding xls file for a given save version already exists.""" + versioned_xls_data_set.save(dummy_dataframe) + pattern = ( + r"Save path \`.+\` for ExcelLocalDataSet\(.+\) must " + r"not exist if versioning is enabled\." + ) + with pytest.raises(DataSetError, match=pattern): + versioned_xls_data_set.save(dummy_dataframe) + + @pytest.mark.parametrize( + "load_version", ["2019-01-01T23.59.59.999Z"], indirect=True + ) + @pytest.mark.parametrize( + "save_version", ["2019-01-02T00.00.00.000Z"], indirect=True + ) + def test_save_version_warning( + self, versioned_xls_data_set, load_version, save_version, dummy_dataframe + ): + """Check the warning when saving to the path that differs from + the subsequent load path.""" + pattern = ( + r"Save path `.*/{}/test\.xlsx` did not match load path " + r"`.*/{}/test\.xlsx` for ExcelLocalDataSet\(.+\)".format( + save_version, load_version + ) + ) + with pytest.warns(UserWarning, match=pattern): + versioned_xls_data_set.save(dummy_dataframe) + + def test_version_str_repr(self, load_version, save_version): + """Test that version is in string representation of the class instance + when applicable.""" + filepath = "test.xlsx" + ds = ExcelLocalDataSet(filepath=filepath) + ds_versioned = ExcelLocalDataSet( + filepath=filepath, version=Version(load_version, save_version) + ) + assert filepath in str(ds) + assert "version" not in str(ds) + + assert filepath in str(ds_versioned) + ver_str = "version=Version(load={}, save='{}')".format( + load_version, save_version + ) + assert ver_str in str(ds_versioned) diff --git a/tests/io/test_hdf_local.py b/tests/io/test_hdf_local.py new file mode 100644 index 0000000000..2538761ce4 --- /dev/null +++ b/tests/io/test_hdf_local.py @@ -0,0 +1,162 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +import pytest +from pandas.util.testing import assert_frame_equal + +from kedro.io import DataSetError, HDFLocalDataSet +from kedro.io.core import Version + + +@pytest.fixture +def filepath_hdf(tmp_path): + return str(tmp_path / "test.hdf") + + +@pytest.fixture +def hdf_data_set(filepath_hdf): + return HDFLocalDataSet(filepath=filepath_hdf, key="test_hdf") + + +@pytest.fixture +def versioned_hdf_data_set(filepath_hdf, load_version, save_version): + return HDFLocalDataSet( + filepath=filepath_hdf, + key="test_hdf", + version=Version(load_version, save_version), + ) + + +class TestHDFLocalDataSet: + def test_save_and_load(self, hdf_data_set, dummy_dataframe): + """Test saving and reloading the data set.""" + hdf_data_set.save(dummy_dataframe) + reloaded_df = hdf_data_set.load() + + assert_frame_equal(reloaded_df, dummy_dataframe) + + def test_load_missing(self, hdf_data_set): + """Check the error when trying to load missing hdf file.""" + pattern = r"Failed while loading data from data set HDFLocalDataSet\(.+\)" + with pytest.raises(DataSetError, match=pattern): + hdf_data_set.load() + + def test_exists(self, hdf_data_set, filepath_hdf, dummy_dataframe): + """Test `exists` method invocation.""" + # file does not exist + assert not hdf_data_set.exists() + + # file and key exist + hdf_data_set.save(dummy_dataframe) + assert hdf_data_set.exists() + + # file exists but the key does not + data_set2 = HDFLocalDataSet(filepath=filepath_hdf, key="test_hdf_different_key") + assert not data_set2.exists() + + def test_overwrite_if_exists(self, hdf_data_set, dummy_dataframe): + """Test overriding existing hdf file.""" + hdf_data_set.save(dummy_dataframe) + assert hdf_data_set.exists() + + hdf_data_set.save(dummy_dataframe.T) + reloaded_df = hdf_data_set.load() + assert_frame_equal(reloaded_df, dummy_dataframe.T) + + +class TestHDFLocalDataSetVersioned: + def test_save_and_load(self, versioned_hdf_data_set, dummy_dataframe): + """Test that saved and reloaded data matches the original one for + the versioned data set.""" + versioned_hdf_data_set.save(dummy_dataframe) + reloaded_df = versioned_hdf_data_set.load() + assert_frame_equal(reloaded_df, dummy_dataframe) + + def test_no_versions(self, versioned_hdf_data_set): + """Check the error if no versions are available for load.""" + pattern = r"Did not find any versions for HDFLocalDataSet\(.+\)" + with pytest.raises(DataSetError, match=pattern): + versioned_hdf_data_set.load() + + def test_exists(self, versioned_hdf_data_set, dummy_dataframe): + """Test `exists` method invocation for versioned data set.""" + assert not versioned_hdf_data_set.exists() + + versioned_hdf_data_set.save(dummy_dataframe) + assert versioned_hdf_data_set.exists() + + def test_prevent_overwrite(self, versioned_hdf_data_set, dummy_dataframe): + """Check the error when attempting to override the data set if the + corresponding hdf file for a given save version already exists.""" + versioned_hdf_data_set.save(dummy_dataframe) + pattern = ( + r"Save path \`.+\` for HDFLocalDataSet\(.+\) must " + r"not exist if versioning is enabled\." + ) + with pytest.raises(DataSetError, match=pattern): + versioned_hdf_data_set.save(dummy_dataframe) + + @pytest.mark.parametrize( + "load_version", ["2019-01-01T23.59.59.999Z"], indirect=True + ) + @pytest.mark.parametrize( + "save_version", ["2019-01-02T00.00.00.000Z"], indirect=True + ) + def test_save_version_warning( + self, versioned_hdf_data_set, load_version, save_version, dummy_dataframe + ): + """Check the warning when saving to the path that differs from + the subsequent load path.""" + pattern = ( + r"Save path `.*/{}/test\.hdf` did not match load path " + r"`.*/{}/test\.hdf` for HDFLocalDataSet\(.+\)".format( + save_version, load_version + ) + ) + with pytest.warns(UserWarning, match=pattern): + versioned_hdf_data_set.save(dummy_dataframe) + + def test_version_str_repr(self, load_version, save_version): + """Test that version is in string representation of the class instance + when applicable.""" + filepath = "test.hdf" + ds = HDFLocalDataSet(filepath=filepath, key="test_hdf") + ds_versioned = HDFLocalDataSet( + filepath=filepath, + key="test_hdf", + version=Version(load_version, save_version), + ) + + assert filepath in str(ds) + assert "version" not in str(ds) + + assert filepath in str(ds_versioned) + ver_str = "version=Version(load={}, save='{}')".format( + load_version, save_version + ) + assert ver_str in str(ds_versioned) diff --git a/tests/io/test_json_local.py b/tests/io/test_json_local.py new file mode 100644 index 0000000000..aff9bd93c7 --- /dev/null +++ b/tests/io/test_json_local.py @@ -0,0 +1,210 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. +from decimal import Decimal +from json import JSONEncoder +from math import inf + +import pytest + +from kedro.io import DataSetError, JSONLocalDataSet +from kedro.io.core import Version + + +@pytest.fixture +def filepath_json(tmp_path): + return str(tmp_path / "test.json") + + +@pytest.fixture +def json_data_set(filepath_json): + return JSONLocalDataSet(filepath=filepath_json) + + +@pytest.fixture +def versioned_json_data_set(filepath_json, load_version, save_version): + return JSONLocalDataSet( + filepath=filepath_json, version=Version(load_version, save_version) + ) + + +@pytest.fixture(params=[[1, 2, 3]]) +def json_data(request): + return request.param + + +class DecimalEncoder(JSONEncoder): + def default(self, o): # pylint: disable=method-hidden + if isinstance(o, Decimal): + if o % 1 > 0: + return float(o) + return int(o) + return super(DecimalEncoder, self).default(o) # pragma: no cover + + +class TestJSONLocalDataSet: + @pytest.mark.parametrize( + "json_data", + [42, [1, 2, 3], ["1", "2", "3"], {"foo": 1, "bar": 2}], + indirect=True, + ) + def test_save_and_load(self, json_data_set, json_data): + """Test saving and reloading the data set.""" + json_data_set.save(json_data) + reloaded = json_data_set.load() + + assert json_data == reloaded + + def test_load_missing_file(self, json_data_set): + """Check the error when trying to load missing file.""" + pattern = r"Failed while loading data from data set " r"JSONLocalDataSet\(.*\)" + with pytest.raises(DataSetError, match=pattern): + json_data_set.load() + + def test_exists(self, json_data_set, json_data): + """Test `exists` method invocation.""" + assert not json_data_set.exists() + + json_data_set.save(json_data) + assert json_data_set.exists() + + def test_allow_nan(self, json_data_set, filepath_json): + """Strict JSON specification does not allow out of range float values, + however the python implementation accepts them by default. Test both + those cases.""" + + # default python + json_data_set.save([inf]) + assert json_data_set.load() == [inf] + + # strict JSON + json_data_set_strict = JSONLocalDataSet( + filepath=filepath_json, save_args=dict(allow_nan=False) + ) + pattern = "Out of range float values are not JSON compliant" + with pytest.raises(DataSetError, match=pattern): + json_data_set_strict.save([inf]) + + @pytest.mark.parametrize( + "json_data", + [ + { + "float": 1.23, + "dec_float": Decimal("1.23"), + "int": 123, + "dec_int": Decimal("123"), + } + ], + indirect=True, + ) + def test_custom_encoder(self, json_data_set, filepath_json, json_data): + """Test using a custom JSONEncoder when saving the data.""" + pattern = ( + r"Failed while saving data to data set " + r"JSONLocalDataSet\(.+\).*\n.*Decimal.* is not " + r"JSON serializable" + ) + with pytest.raises(DataSetError, match=pattern): + json_data_set.save(json_data) + + json_data_set_decimal_enc = JSONLocalDataSet( + filepath=filepath_json, save_args=dict(cls=DecimalEncoder) + ) + json_data_set_decimal_enc.save(json_data) + reloaded = json_data_set_decimal_enc.load() + assert reloaded["float"] == reloaded["dec_float"] + assert reloaded["int"] == reloaded["dec_int"] + + +class TestJSONLocalDataSetVersioned: + def test_save_and_load(self, versioned_json_data_set, json_data): + """Test that saved and reloaded data matches the original one for + the versioned data set.""" + versioned_json_data_set.save(json_data) + reloaded_df = versioned_json_data_set.load() + assert json_data == reloaded_df + + def test_no_versions(self, versioned_json_data_set): + """Check the error if no versions are available for load.""" + pattern = r"Did not find any versions for JSONLocalDataSet\(.+\)" + with pytest.raises(DataSetError, match=pattern): + versioned_json_data_set.load() + + def test_exists(self, versioned_json_data_set, json_data): + """Test `exists` method invocation for versioned data set.""" + assert not versioned_json_data_set.exists() + + versioned_json_data_set.save(json_data) + assert versioned_json_data_set.exists() + + def test_prevent_overwrite(self, versioned_json_data_set, json_data): + """Check the error when attempting to override the data set if the + corresponding hdf file for a given save version already exists.""" + versioned_json_data_set.save(json_data) + pattern = ( + r"Save path \`.+\` for JSONLocalDataSet\(.+\) must " + r"not exist if versioning is enabled\." + ) + with pytest.raises(DataSetError, match=pattern): + versioned_json_data_set.save(json_data) + + @pytest.mark.parametrize( + "load_version", ["2019-01-01T23.59.59.999Z"], indirect=True + ) + @pytest.mark.parametrize( + "save_version", ["2019-01-02T00.00.00.000Z"], indirect=True + ) + def test_save_version_warning( + self, versioned_json_data_set, load_version, save_version, json_data + ): + """Check the warning when saving to the path that differs from + the subsequent load path.""" + pattern = ( + r"Save path `.*/{}/test\.json` did not match load path " + r"`.*/{}/test\.json` for JSONLocalDataSet\(.+\)".format( + save_version, load_version + ) + ) + with pytest.warns(UserWarning, match=pattern): + versioned_json_data_set.save(json_data) + + def test_version_str_repr(self, load_version, save_version): + """Test that version is in string representation of the class instance + when applicable.""" + filepath = "test.json" + ds = JSONLocalDataSet(filepath=filepath) + ds_versioned = JSONLocalDataSet( + filepath=filepath, version=Version(load_version, save_version) + ) + assert filepath in str(ds) + assert "version" not in str(ds) + + assert filepath in str(ds_versioned) + ver_str = "version=Version(load={}, save='{}')".format( + load_version, save_version + ) + assert ver_str in str(ds_versioned) diff --git a/tests/io/test_lambda_data_set.py b/tests/io/test_lambda_data_set.py new file mode 100644 index 0000000000..68548eb24b --- /dev/null +++ b/tests/io/test_lambda_data_set.py @@ -0,0 +1,165 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +import pytest + +from kedro.io import DataSetError, LambdaDataSet + + +@pytest.fixture +def mocked_save(mocker): + return mocker.Mock() + + +@pytest.fixture +def mocked_data_set(mocked_save): + return LambdaDataSet(None, mocked_save) + + +def test_data_set_describe(): + """Test `describe` method invocation""" + + def _dummy_load(): + pass # pragma: no cover + + def _dummy_save(): + pass # pragma: no cover + + def _dummy_exists(): + return False # pragma: no cover + + assert "LambdaDataSet(load=<tests.io.test_lambda_data_set._dummy_load>)" in str( + LambdaDataSet(_dummy_load, None) + ) + assert "LambdaDataSet(save=<tests.io.test_lambda_data_set._dummy_save>)" in str( + LambdaDataSet(None, _dummy_save) + ) + assert "LambdaDataSet(exists=<tests.io.test_lambda_data_set._dummy_exists>)" in str( + LambdaDataSet(None, None, _dummy_exists) + ) + + +class TestLambdaDataSetLoad: + def test_load_invocation(self, mocker): + """Test the basic `load` method invocation""" + mocked_load = mocker.Mock(return_value=42) + data_set = LambdaDataSet(mocked_load, None) + result = data_set.load() + + mocked_load.assert_called_once_with() + assert result == 42 + + def test_load_raises_error(self): + """Check the error if loading the LambdaDataSet raises an exception""" + error_message = "Internal load exception message" + + def internal_load(): + raise FileNotFoundError(error_message) + + data_set = LambdaDataSet(internal_load, None) + with pytest.raises(DataSetError, match=error_message): + data_set.load() + + def test_load_undefined(self): + """Check the error if `LambdaDataSet.__load` is None""" + with pytest.raises(DataSetError, match="Cannot load data set"): + LambdaDataSet(None, None).load() + + def test_load_not_callable(self): + pattern = ( + r"`load` function for LambdaDataSet must be a Callable\. " + r"Object of type `str` provided instead\." + ) + with pytest.raises(DataSetError, match=pattern): + LambdaDataSet("load", None) + + +class TestLambdaDataSetSave: + def test_save_invocation(self, mocked_save, mocked_data_set): + """Test the basic `save` method invocation""" + mocked_data_set.save("foo") + mocked_save.assert_called_once_with("foo") + + def test_save_raises_error(self, mocked_save, mocked_data_set): + """Check the error if saving the LambdaDataSet raises an exception""" + error_message = "Cannot save to an existing file" + mocked_save.side_effect = FileExistsError(error_message) + + pattern = ( + r"Failed while saving data to data set LambdaDataSet\(.+\)\.\n" + + error_message + ) + with pytest.raises(DataSetError, match=pattern): + mocked_data_set.save("data") + mocked_save.assert_called_once_with("data") + + def test_save_undefined(self): + """Check the error if `LambdaDataSet.__save` is None""" + with pytest.raises(DataSetError, match="Cannot save to data set"): + LambdaDataSet(None, None).save(42) + + def test_save_none(self, mocked_save, mocked_data_set): + """Check the error when passing None to `save` call""" + pattern = "Saving `None` to a `DataSet` is not allowed" + with pytest.raises(DataSetError, match=pattern): + mocked_data_set.save(None) + assert mocked_save.called == 0 + + def test_save_not_callable(self): + pattern = ( + r"`save` function for LambdaDataSet must be a Callable\. " + r"Object of type `str` provided instead\." + ) + with pytest.raises(DataSetError, match=pattern): + LambdaDataSet(None, "save") + + +class TestLambdaDataSetExists: + def test_exists_invocation(self, mocker): + """Test the basic `exists` method invocation""" + mocked_exists = mocker.Mock(return_value=True) + data_set = LambdaDataSet(None, None, mocked_exists) + result = data_set.exists() + mocked_exists.assert_called_once_with() + assert result is True + + def test_exists_not_implemented(self): + """Check that `exists` method is not implemented by default""" + data_set = LambdaDataSet(None, None) + assert not hasattr(data_set, "exists") + + def test_exists_raises_error(self, mocker): + """Check the error when `exists` raises an exception""" + mocked_exists = mocker.Mock() + error_message = "File not found" + mocked_exists.side_effect = FileNotFoundError(error_message) + data_set = LambdaDataSet(None, None, mocked_exists) + + with pytest.raises(DataSetError, match=error_message): + data_set.exists() + mocked_exists.assert_called_once_with() diff --git a/tests/io/test_memory_data_set.py b/tests/io/test_memory_data_set.py new file mode 100644 index 0000000000..c3ea6439b0 --- /dev/null +++ b/tests/io/test_memory_data_set.py @@ -0,0 +1,198 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +# pylint: disable=unused-argument +import numpy as np +import pandas as pd +import pytest + +from kedro.io import DataSetError, MemoryDataSet + + +def _update_data(data, idx, jdx, value): + if isinstance(data, pd.DataFrame): + data.iloc[idx, jdx] = value + return data + if isinstance(data, np.ndarray): + data[idx, jdx] = value + return data + return data # pragma: no cover + + +def _check_equals(data1, data2): + if isinstance(data1, pd.DataFrame) and isinstance(data2, pd.DataFrame): + return data1.equals(data2) + if isinstance(data1, np.ndarray) and isinstance(data2, np.ndarray): + return np.array_equal(data1, data2) + return False # pragma: no cover + + +@pytest.fixture +def dummy_numpy_array(): + return np.array([[1, 4, 5], [2, 5, 6]]) + + +@pytest.fixture(params=["dummy_dataframe", "dummy_numpy_array"]) +def input_data(request): + return request.getfixturevalue(request.param) + + +@pytest.fixture +def new_data(): + return pd.DataFrame({"col1": ["a", "b"], "col2": ["c", "d"], "col3": ["e", "f"]}) + + +@pytest.fixture +def memory_data_set(input_data): + return MemoryDataSet(data=input_data) + + +@pytest.fixture +def max_loads(request): + return request.param + + +@pytest.fixture +def memory_data_set_loads(input_data, max_loads): + return MemoryDataSet(data=input_data, max_loads=max_loads) + + +class TestMemoryDataSet: + def test_load(self, memory_data_set, input_data): + """Test basic load""" + loaded_data = memory_data_set.load() + assert _check_equals(loaded_data, input_data) + + def test_save(self, memory_data_set, input_data, new_data): + """Test overriding the data set""" + memory_data_set.save(data=new_data) + reloaded = memory_data_set.load() + assert not _check_equals(reloaded, input_data) + assert _check_equals(reloaded, new_data) + + def test_load_modify_original_data(self, memory_data_set, input_data): + """Check that the data set object is not updated when the original + object is changed.""" + input_data = _update_data(input_data, 1, 1, -5) + assert not _check_equals(memory_data_set.load(), input_data) + + def test_save_modify_original_data(self, memory_data_set, new_data): + """Check that the data set object is not updated when the original + object is changed.""" + memory_data_set.save(new_data) + new_data = _update_data(new_data, 1, 1, "new value") + + assert not _check_equals(memory_data_set.load(), new_data) + + @pytest.mark.parametrize( + "input_data", ["dummy_dataframe", "dummy_numpy_array"], indirect=True + ) + def test_load_returns_new_object(self, memory_data_set, input_data): + """Test that consecutive loads point to different objects in case of a + pandas DataFrame and numpy array""" + loaded_data = memory_data_set.load() + reloaded_data = memory_data_set.load() + assert _check_equals(loaded_data, input_data) + assert _check_equals(reloaded_data, input_data) + assert loaded_data is not reloaded_data + + def test_create_without_data(self): + """Test instantiation without data""" + assert MemoryDataSet() is not None + + def test_loading_none(self): + """Check the error when attempting to load the data set that doesn't + contain any data""" + pattern = r"Data for MemoryDataSet has not been saved yet\." + with pytest.raises(DataSetError, match=pattern): + MemoryDataSet().load() + + def test_saving_none(self): + """Check the error when attempting to save the data set without + providing the data""" + pattern = r"Saving `None` to a `DataSet` is not allowed" + with pytest.raises(DataSetError, match=pattern): + MemoryDataSet().save(None) + + @pytest.mark.parametrize( + "input_data,expected", + [ + ("dummy_dataframe", "MemoryDataSet(data=<DataFrame>)"), + ("dummy_numpy_array", "MemoryDataSet(data=<ndarray>)"), + ], + indirect=["input_data"], + ) + def test_str_representation(self, memory_data_set, input_data, expected): + """Test string representation of the data set""" + assert expected in str(memory_data_set) + + def test_exists(self, new_data): + """Test `exists` method invocation""" + data_set = MemoryDataSet() + assert not data_set.exists() + + data_set.save(new_data) + assert data_set.exists() + + +class TestMemoryDataSetMaxLoads: + @pytest.mark.parametrize("max_loads", [None, -1, 0, 1, 2], indirect=True) + def test_max_loads(self, memory_data_set_loads, input_data, max_loads): + """Test that the first load succeeds regardless of the maximum number + of loads specified""" + loaded_data = memory_data_set_loads.load() + assert _check_equals(loaded_data, input_data) + + @pytest.mark.parametrize("max_loads", [1, 2], indirect=True) + def test_max_loads_exceeded(self, memory_data_set_loads, max_loads): + """Check the error when the maximum number of data set loads + is exceeded""" + pattern = ( + r"Maximum number of MemoryDataSet loads exceeded the " + r"threshold of {}\. The data set was cleared and holds " + r"no data now\.".format(max_loads) + ) + with pytest.raises(DataSetError, match=pattern): + for _ in range(max_loads + 1): + memory_data_set_loads.load() + + @pytest.mark.parametrize("max_loads", [1], indirect=True) + def test_max_loads_reset(self, memory_data_set_loads, input_data, max_loads): + """Test that the maximum number of loads is reset after + save operation""" + memory_data_set_loads.load() + pattern = ( + r"Maximum number of MemoryDataSet loads exceeded the " + r"threshold of 1\. The data set was cleared and holds " + r"no data now\." + ) + with pytest.raises(DataSetError, match=pattern): + memory_data_set_loads.load() + memory_data_set_loads.save(input_data) + loaded_data = memory_data_set_loads.load() + assert _check_equals(loaded_data, input_data) diff --git a/tests/io/test_parquet_local.py b/tests/io/test_parquet_local.py new file mode 100644 index 0000000000..408373b5bc --- /dev/null +++ b/tests/io/test_parquet_local.py @@ -0,0 +1,216 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. +from random import randint + +import numpy as np +import pandas as pd +import pytest +from pandas.util.testing import assert_frame_equal + +from kedro.io import DataSetError, ParquetLocalDataSet +from kedro.io.core import Version + + +def _generate_sample_pandas_df( + randomised: bool = False, with_nan: bool = False +) -> pd.DataFrame: + """ + Return a dummy data frame with 2-columns [Name, Age] + + Args: + randomised: Set to true to randomise ages. + with_nan: Include an entry with nan age value. + + Returns: + Dataframe as specified by the arguments. + + """ + + def age(default): + return randint(1, 120) if randomised else default + + return pd.DataFrame( + { + "Name": ["Alex", "Bob", "Clarke", "Dave"], + "Age": [age(31), age(12), age(65), np.nan if with_nan else age(29)], + } + ) + + +@pytest.fixture(params=[(False, False)]) +def input_data(request): + randomised, with_nan = request.param + return _generate_sample_pandas_df(randomised, with_nan) + + +@pytest.fixture +def data_path(tmp_path): + return str(tmp_path / "data") + + +@pytest.fixture(params=[dict()]) +def parquet_data_set(data_path, request): + return ParquetLocalDataSet(filepath=data_path, **request.param) + + +@pytest.fixture +def versioned_parquet_data_set(data_path, load_version, save_version): + return ParquetLocalDataSet( + filepath=data_path, version=Version(load_version, save_version) + ) + + +class TestParquetLocalDataSet: + _AGE_COLUMN = "Age" + + @pytest.mark.parametrize("input_data", [(False, False)], indirect=True) + def test_save(self, parquet_data_set, input_data): + """Test saving and overriding the data set.""" + parquet_data_set.save(input_data) + + # Check that it is loaded correctly + loaded_data = parquet_data_set.load() + assert_frame_equal(loaded_data, input_data) + + # Save on top of existing + new_data = _generate_sample_pandas_df(randomised=True) + parquet_data_set.save(new_data) + + # Assert data has been overwritten + reloaded_data = parquet_data_set.load() + assert_frame_equal(reloaded_data, new_data) + + @pytest.mark.parametrize("input_data", [(False, True)], indirect=True) + @pytest.mark.parametrize( + "parquet_data_set", [dict(load_args={"columns": [_AGE_COLUMN]})], indirect=True + ) + def test_load_with_args(self, parquet_data_set, input_data): + """Test loading the data set with extra load arguments specified.""" + parquet_data_set.save(input_data) + loaded_data = parquet_data_set.load() + assert_frame_equal(loaded_data, input_data[[self._AGE_COLUMN]]) + + @pytest.mark.parametrize( + "parquet_data_set", [dict(save_args={"compression": "GZIP"})], indirect=True + ) + def test_save_with_args(self, parquet_data_set, input_data): + """Test loading the data set with extra save arguments specified.""" + parquet_data_set.save(input_data) + loaded_data = parquet_data_set.load() + assert_frame_equal(loaded_data, input_data) + + def test_save_none(self, parquet_data_set): + """Check the error when trying to save None.""" + pattern = r"Saving `None` to a `DataSet` is not allowed" + with pytest.raises(DataSetError, match=pattern): + parquet_data_set.save(None) + + def test_str_representation(self): + """Test string representation of the data set instance.""" + parquet_data_set = ParquetLocalDataSet("test_file.parquet") + pattern = ( + "ParquetLocalDataSet(engine=auto, " + "filepath=test_file.parquet, save_args={})" + ) + assert pattern in str(parquet_data_set) + + def test_exists(self, parquet_data_set, input_data): + """Test `exists` method invocation.""" + assert not parquet_data_set.exists() + parquet_data_set.save(input_data) + assert parquet_data_set.exists() + + +class TestParquetLocalDataSetVersioned: + def test_save_and_load(self, versioned_parquet_data_set, input_data): + """Test that saved and reloaded data matches the original one for + the versioned data set.""" + versioned_parquet_data_set.save(input_data) + reloaded_df = versioned_parquet_data_set.load() + assert_frame_equal(reloaded_df, input_data) + + def test_no_versions(self, versioned_parquet_data_set): + """Check the error if no versions are available for load.""" + pattern = r"Did not find any versions for ParquetLocalDataSet\(.+\)" + with pytest.raises(DataSetError, match=pattern): + versioned_parquet_data_set.load() + + def test_exists(self, versioned_parquet_data_set, input_data): + """Test `exists` method invocation for versioned data set.""" + assert not versioned_parquet_data_set.exists() + + versioned_parquet_data_set.save(input_data) + assert versioned_parquet_data_set.exists() + + def test_prevent_overwrite(self, versioned_parquet_data_set, input_data): + """Check the error when attempting to override the data set if the + corresponding parquet file for a given save version already exists.""" + versioned_parquet_data_set.save(input_data) + pattern = ( + r"Save path \`.+\` for ParquetLocalDataSet\(.+\) must " + r"not exist if versioning is enabled\." + ) + with pytest.raises(DataSetError, match=pattern): + versioned_parquet_data_set.save(input_data) + + @pytest.mark.parametrize( + "load_version", ["2019-01-01T23.59.59.999Z"], indirect=True + ) + @pytest.mark.parametrize( + "save_version", ["2019-01-02T00.00.00.000Z"], indirect=True + ) + def test_save_version_warning( + self, versioned_parquet_data_set, load_version, save_version, input_data + ): + """Check the warning when saving to the path that differs from + the subsequent load path.""" + pattern = ( + r"Save path `.*/{}/data` did not match load path " + r"`.*/{}/data` for ParquetLocalDataSet\(.+\)".format( + save_version, load_version + ) + ) + with pytest.warns(UserWarning, match=pattern): + versioned_parquet_data_set.save(input_data) + + def test_version_str_repr(self, load_version, save_version): + """Test that version is in string representation of the class instance + when applicable.""" + filepath = "data" + ds = ParquetLocalDataSet(filepath=filepath) + ds_versioned = ParquetLocalDataSet( + filepath=filepath, version=Version(load_version, save_version) + ) + assert filepath in str(ds) + assert "version" not in str(ds) + + assert filepath in str(ds_versioned) + ver_str = "version=Version(load={}, save='{}')".format( + load_version, save_version + ) + assert ver_str in str(ds_versioned) diff --git a/tests/io/test_pickle_local.py b/tests/io/test_pickle_local.py new file mode 100644 index 0000000000..408a18e5af --- /dev/null +++ b/tests/io/test_pickle_local.py @@ -0,0 +1,168 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. +from importlib import reload + +import pytest +from pandas.util.testing import assert_frame_equal + +import kedro +from kedro.io import PickleLocalDataSet +from kedro.io.core import DataSetError, Version + + +@pytest.fixture +def filepath_pkl(tmp_path): + return str(tmp_path / "test.pkl") + + +@pytest.fixture(params=["pickle"]) +def pickle_data_set(filepath_pkl, request): + return PickleLocalDataSet(filepath=filepath_pkl, backend=request.param) + + +@pytest.fixture +def versioned_pickle_data_set(filepath_pkl, load_version, save_version): + return PickleLocalDataSet( + filepath=filepath_pkl, version=Version(load_version, save_version) + ) + + +class TestPickleLocalDataSet: + @pytest.mark.parametrize("pickle_data_set", ["pickle", "joblib"], indirect=True) + def test_save_and_load(self, pickle_data_set, dummy_dataframe): + """Test saving and reloading the data using different backends.""" + pickle_data_set.save(dummy_dataframe) + reloaded_df = pickle_data_set.load() + assert_frame_equal(reloaded_df, dummy_dataframe) + + def test_str_representation(self): + """Test string representation of the data set instance.""" + data_set = PickleLocalDataSet(filepath="test.pkl", backend="pickle") + pattern = "PickleLocalDataSet(backend=pickle, filepath=test.pkl)" + assert pattern in str(data_set) + + def test_bad_backend(self): + """Check the error when trying to instantiate with invalid backend.""" + pattern = ( + r"backend should be one of \[\'pickle\'\, \'joblib\'\]\, " + r"got wrong\-backend" + ) + with pytest.raises(ValueError, match=pattern): + PickleLocalDataSet(filepath="test.pkl", backend="wrong-backend") + + def test_exists(self, pickle_data_set, dummy_dataframe): + """Test `exists()` method invocation.""" + assert not pickle_data_set.exists() + + pickle_data_set.save(dummy_dataframe) + assert pickle_data_set.exists() + + def test_joblib_not_installed(self, filepath_pkl, mocker): + """Check the error if 'joblib' module is not installed.""" + mocker.patch.dict("sys.modules", joblib=None) + reload(kedro.io.pickle_local) + # creating a pickle-based data set should be fine + PickleLocalDataSet(filepath=filepath_pkl, backend="pickle") + + # creating a joblib-based data set should fail + pattern = ( + r"selected backend \'joblib\' could not be imported\. " + r"Make sure it is installed\." + ) + with pytest.raises(ImportError, match=pattern): + PickleLocalDataSet(filepath=filepath_pkl, backend="joblib") + + +class TestPickleLocalDataSetVersioned: + def test_save_and_load(self, versioned_pickle_data_set, dummy_dataframe): + """Test that saved and reloaded data matches the original one for + the versioned data set.""" + versioned_pickle_data_set.save(dummy_dataframe) + reloaded_df = versioned_pickle_data_set.load() + assert_frame_equal(reloaded_df, dummy_dataframe) + + def test_no_versions(self, versioned_pickle_data_set): + """Check the error if no versions are available for load.""" + pattern = r"Did not find any versions for PickleLocalDataSet\(.+\)" + with pytest.raises(DataSetError, match=pattern): + versioned_pickle_data_set.load() + + def test_exists(self, versioned_pickle_data_set, dummy_dataframe): + """Test `exists` method invocation for versioned data set.""" + assert not versioned_pickle_data_set.exists() + + versioned_pickle_data_set.save(dummy_dataframe) + assert versioned_pickle_data_set.exists() + + def test_prevent_override(self, versioned_pickle_data_set, dummy_dataframe): + """Check the error when attempting to override the data set if the + corresponding pickle file for a given save version already exists.""" + versioned_pickle_data_set.save(dummy_dataframe) + pattern = ( + r"Save path \`.+\` for PickleLocalDataSet\(.+\) must " + r"not exist if versioning is enabled\." + ) + with pytest.raises(DataSetError, match=pattern): + versioned_pickle_data_set.save(dummy_dataframe) + + @pytest.mark.parametrize( + "load_version", ["2019-01-01T23.59.59.999Z"], indirect=True + ) + @pytest.mark.parametrize( + "save_version", ["2019-01-02T00.00.00.000Z"], indirect=True + ) + def test_save_version_warning( + self, versioned_pickle_data_set, load_version, save_version, dummy_dataframe + ): + """Check the warning when saving to the path that differs from + the subsequent load path.""" + pattern = ( + r"Save path `.*/{}/test\.pkl` did not match load path " + r"`.*/{}/test\.pkl` for PickleLocalDataSet\(.+\)".format( + save_version, load_version + ) + ) + with pytest.warns(UserWarning, match=pattern): + versioned_pickle_data_set.save(dummy_dataframe) + + def test_version_str_repr(self, load_version, save_version): + """Test that version is in string representation of the class instance + when applicable.""" + filepath = "test.pkl" + ds = PickleLocalDataSet(filepath=filepath) + ds_versioned = PickleLocalDataSet( + filepath=filepath, version=Version(load_version, save_version) + ) + assert filepath in str(ds) + assert "version" not in str(ds) + + assert filepath in str(ds_versioned) + ver_str = "version=Version(load={}, save='{}')".format( + load_version, save_version + ) + assert ver_str in str(ds_versioned) diff --git a/tests/io/test_pickle_s3.py b/tests/io/test_pickle_s3.py new file mode 100644 index 0000000000..acceee9869 --- /dev/null +++ b/tests/io/test_pickle_s3.py @@ -0,0 +1,240 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +# pylint: disable=no-member + +import pickle +from multiprocessing.reduction import ForkingPickler + +import pytest +import s3fs +from botocore.exceptions import PartialCredentialsError +from moto import mock_s3 + +from kedro.io import DataSetError, PickleS3DataSet, Version + +FILENAME = "test.csv" +BUCKET_NAME = "test_bucket" +AWS_CREDENTIALS = dict( + aws_access_key_id="FAKE_ACCESS_KEY", aws_secret_access_key="FAKE_SECRET_KEY" +) +DUMMY_PICKABLE_OBJECT = {"key": "value"} + + +@pytest.fixture +def s3_data_set(): + return PickleS3DataSet( + filepath=FILENAME, bucket_name=BUCKET_NAME, credentials=AWS_CREDENTIALS + ) + + +@pytest.fixture +def versioned_s3_data_set(load_version, save_version): + return PickleS3DataSet( + filepath=FILENAME, + bucket_name=BUCKET_NAME, + credentials=AWS_CREDENTIALS, + version=Version(load_version, save_version), + ) + + +@pytest.fixture +def mocked_s3_bucket(): + """Create a bucket for testing using moto.""" + with mock_s3(): + conn = s3fs.core.boto3.client("s3", **AWS_CREDENTIALS) + conn.create_bucket(Bucket=BUCKET_NAME) + yield conn + + +@pytest.fixture +def mocked_s3_object(mocked_s3_bucket): + """Creates test data and adds it to mocked S3 bucket.""" + mocked_s3_bucket.put_object( + Bucket=BUCKET_NAME, Key=FILENAME, Body=pickle.dumps(DUMMY_PICKABLE_OBJECT) + ) + return mocked_s3_bucket + + +@pytest.fixture +def mocked_s3_object_versioned(mocked_s3_bucket, save_version): + """Create versioned test data and add it to mocked S3 bucket.""" + mocked_s3_bucket.put_object( + Bucket=BUCKET_NAME, + Key="{0}/{1}/{0}".format(FILENAME, save_version), + Body=pickle.dumps(DUMMY_PICKABLE_OBJECT), + ) + return mocked_s3_bucket + + +class TestPickleS3DataSet: + @pytest.mark.usefixtures("mocked_s3_bucket") + def test_exists(self, s3_data_set): + """Test `exists` method invocation for both existing and + nonexistent data set.""" + assert not s3_data_set.exists() + s3_data_set.save(DUMMY_PICKABLE_OBJECT) + assert s3_data_set.exists() + + @mock_s3 + def test_exists_raises_error(self, s3_data_set): + """Check the error if the given S3 bucket doesn't exist.""" + with pytest.raises(DataSetError, match="NoSuchBucket"): + s3_data_set.exists() + + @pytest.mark.usefixtures("mocked_s3_object") + def test_load(self, s3_data_set): + """Test loading the data from S3.""" + loaded_data = s3_data_set.load() + assert loaded_data == DUMMY_PICKABLE_OBJECT + + @pytest.mark.parametrize( + "bad_credentials", + [{"aws_secret_access_key": "SECRET"}, {"aws_access_key_id": "KEY"}], + ) + def test_incomplete_credentials_load(self, bad_credentials): + """Test that incomplete credentials passed in credentials.yml raises exception.""" + with pytest.raises(PartialCredentialsError): + PickleS3DataSet( + filepath=FILENAME, bucket_name=BUCKET_NAME, credentials=bad_credentials + ) + + def test_incorrect_credentials_load(self): + """Test that incorrect credential keys won't instantiate dataset.""" + pattern = "unexpected keyword argument" + with pytest.raises(TypeError, match=pattern): + PickleS3DataSet( + filepath=FILENAME, + bucket_name=BUCKET_NAME, + credentials={"access_token": "TOKEN", "access_key": "KEY"}, + ) + + @pytest.mark.parametrize( + "bad_credentials", + [{"aws_access_key_id": None, "aws_secret_access_key": None}, {}, None], + ) + def test_empty_credentials_load(self, bad_credentials): + s3_data_set = PickleS3DataSet( + filepath=FILENAME, bucket_name=BUCKET_NAME, credentials=bad_credentials + ) + pattern = r"Failed while loading data from data set PickleS3DataSet\(.+\)" + with pytest.raises(DataSetError, match=pattern): + s3_data_set.load() + + def test_pass_credentials(self, mocker): + """Test that AWS credentials are passed successfully into boto3 + client instantiation on creating S3 connection.""" + mocker.patch("s3fs.core.boto3.Session.client") + s3_data_set = PickleS3DataSet( + filepath=FILENAME, bucket_name=BUCKET_NAME, credentials=AWS_CREDENTIALS + ) + pattern = r"Failed while loading data from data set PickleS3DataSet\(.+\)" + with pytest.raises(DataSetError, match=pattern): + s3_data_set.load() + + assert s3fs.core.boto3.Session.client.call_count == 1 + args, kwargs = s3fs.core.boto3.Session.client.call_args_list[0] + assert args == ("s3",) + for k, v in AWS_CREDENTIALS.items(): + assert kwargs[k] == v + + @pytest.mark.usefixtures("mocked_s3_object") + def test_save(self, s3_data_set): + """Test saving the data to S3.""" + new_data = {"x": "y"} + s3_data_set.save(new_data) + loaded_data = s3_data_set.load() + assert loaded_data == new_data + + def test_serializable(self, s3_data_set): + ForkingPickler.dumps(s3_data_set) + + +@pytest.mark.usefixtures("mocked_s3_bucket") +class TestPickleS3DataSetVersioned: + def test_exists(self, versioned_s3_data_set): + """Test `exists` method invocation for versioned data set.""" + assert not versioned_s3_data_set.exists() + + versioned_s3_data_set.save(DUMMY_PICKABLE_OBJECT) + assert versioned_s3_data_set.exists() + + def test_no_versions(self, versioned_s3_data_set): + """Check the error if no versions are available for load.""" + pattern = r"Did not find any versions for PickleS3DataSet\(.+\)" + with pytest.raises(DataSetError, match=pattern): + versioned_s3_data_set.load() + + @pytest.mark.usefixtures("mocked_s3_object_versioned") + def test_prevent_override(self, versioned_s3_data_set): + """Check the error when attempting to override the data set if the + corresponding pickled object for a given save version already exists in S3.""" + pattern = ( + r"Save path \`.+\` for PickleS3DataSet\(.+\) must not exist " + r"if versioning is enabled" + ) + with pytest.raises(DataSetError, match=pattern): + versioned_s3_data_set.save(DUMMY_PICKABLE_OBJECT) + + @pytest.mark.parametrize( + "load_version", ["2019-01-01T23.59.59.999Z"], indirect=True + ) + @pytest.mark.parametrize( + "save_version", ["2019-01-02T00.00.00.000Z"], indirect=True + ) + def test_save_version_warning( + self, versioned_s3_data_set, load_version, save_version + ): + """Check the warning when saving to the path that differs from + the subsequent load path.""" + pattern = ( + r"Save path `{f}/{sv}/{f}` did not match load path " + r"`{f}/{lv}/{f}` for PickleS3DataSet\(.+\)".format( + f=FILENAME, sv=save_version, lv=load_version + ) + ) + with pytest.warns(UserWarning, match=pattern): + versioned_s3_data_set.save(DUMMY_PICKABLE_OBJECT) + + def test_version_str_repr(self, load_version, save_version): + """Test that version is in string representation of the class instance + when applicable.""" + ds = PickleS3DataSet(filepath=FILENAME, bucket_name=BUCKET_NAME) + ds_versioned = PickleS3DataSet( + filepath=FILENAME, + bucket_name=BUCKET_NAME, + version=Version(load_version, save_version), + ) + assert FILENAME in str(ds) + assert "version" not in str(ds) + + assert FILENAME in str(ds_versioned) + ver_str = "version=Version(load={}, save='{}')".format( + load_version, save_version + ) + assert ver_str in str(ds_versioned) diff --git a/tests/io/test_sql.py b/tests/io/test_sql.py new file mode 100644 index 0000000000..23ba1e0e8f --- /dev/null +++ b/tests/io/test_sql.py @@ -0,0 +1,313 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +# pylint: disable=no-member + +from typing import Any + +import pandas as pd +import pytest +import sqlalchemy + +from kedro.io import DataSetError, SQLQueryDataSet, SQLTableDataSet + +TABLE_NAME = "table_a" +CONNECTION = "sqlite:///kedro.db" +SQL_QUERY = "SELECT * FROM table_a" +FAKE_CONN_STR = "some_sql://scott:tiger@localhost/foo" +ERROR_PREFIX = ( + r"A module\/driver is missing when connecting to your " r"SQL server\.(.|\n)*" +) + + +@pytest.fixture(params=[dict()]) +def table_data_set(request): + kwargs = dict(table_name=TABLE_NAME, credentials=dict(con=CONNECTION)) + kwargs.update(request.param) + return SQLTableDataSet(**kwargs) + + +@pytest.fixture(params=[dict()]) +def query_data_set(request): + kwargs = dict(sql=SQL_QUERY, credentials=dict(con=CONNECTION)) + kwargs.update(request.param) + return SQLQueryDataSet(**kwargs) + + +class TestSQLTableDataSetLoad: + @staticmethod + def _assert_pd_called_once(): + pd.read_sql_table.assert_called_once_with(table_name=TABLE_NAME, con=CONNECTION) + + def test_empty_table_name(self): + """Check the error when instantiating with an empty table""" + pattern = r"`table\_name` argument cannot be empty\." + with pytest.raises(DataSetError, match=pattern): + SQLTableDataSet(table_name="", credentials=dict(con=CONNECTION)) + + def test_empty_connection(self): + """Check the error when instantiating with an empty + connection string""" + pattern = ( + r"`con` argument cannot be empty\. " + r"Please provide a SQLAlchemy connection string\." + ) + with pytest.raises(DataSetError, match=pattern): + SQLTableDataSet(table_name=TABLE_NAME, credentials=dict(con="")) + + def test_load_sql_params(self, mocker, table_data_set): + """Test `load` method invocation""" + mocker.patch("pandas.read_sql_table") + table_data_set.load() + self._assert_pd_called_once() + + def test_load_driver_missing(self, mocker, table_data_set): + """Check the error when the sql driver is missing""" + mocker.patch( + "pandas.read_sql_table", + side_effect=ImportError("No module named 'mysqldb'"), + ) + with pytest.raises(DataSetError, match=ERROR_PREFIX + "mysqlclient"): + table_data_set.load() + self._assert_pd_called_once() + + def test_invalid_module(self, mocker, table_data_set): + """Test that if an invalid module/driver is encountered by SQLAlchemy + then the error should contain the original error message""" + _err = ImportError("Invalid module some_module") + mocker.patch("pandas.read_sql_table", side_effect=_err) + pattern = ERROR_PREFIX + r"Invalid module some\_module" + with pytest.raises(DataSetError, match=pattern): + table_data_set.load() + self._assert_pd_called_once() + + def test_load_unknown_module(self, mocker, table_data_set): + """Test that if an unknown module/driver is encountered by SQLAlchemy + then the error should contain the original error message""" + mocker.patch( + "pandas.read_sql_table", + side_effect=ImportError("No module named 'unknown_module'"), + ) + pattern = ERROR_PREFIX + r"No module named \'unknown\_module\'" + with pytest.raises(DataSetError, match=pattern): + table_data_set.load() + + @pytest.mark.parametrize( + "table_data_set", [{"credentials": dict(con=FAKE_CONN_STR)}], indirect=True + ) + def test_load_unknown_sql(self, table_data_set): + """Check the error when unknown sql dialect is provided""" + pattern = ( + r"The SQL dialect in your connection is not supported " r"by SQLAlchemy" + ) + with pytest.raises(DataSetError, match=pattern): + table_data_set.load() + + +class TestSQLTableDataSetSave: + _unknown_conn = "mysql+unknown_module://scott:tiger@localhost/foo" + + @staticmethod + def _assert_to_sql_called_once(df: Any, index: bool = False): + df.to_sql.assert_called_once_with(name=TABLE_NAME, con=CONNECTION, index=index) + + def test_save_default_index(self, mocker, table_data_set, dummy_dataframe): + """Test `save` method invocation""" + mocker.patch.object(dummy_dataframe, "to_sql") + table_data_set.save(dummy_dataframe) + self._assert_to_sql_called_once(dummy_dataframe) + + @pytest.mark.parametrize( + "table_data_set", [{"save_args": dict(index=True)}], indirect=True + ) + def test_save_overwrite_index(self, mocker, table_data_set, dummy_dataframe): + """Test writing DataFrame index as a column""" + mocker.patch.object(dummy_dataframe, "to_sql") + table_data_set.save(dummy_dataframe) + self._assert_to_sql_called_once(dummy_dataframe, True) + + def test_save_driver_missing(self, mocker, table_data_set, dummy_dataframe): + """Test that if an unknown module/driver is encountered by SQLAlchemy + then the error should contain the original error message""" + _err = ImportError("No module named 'mysqldb'") + mocker.patch.object(dummy_dataframe, "to_sql", side_effect=_err) + with pytest.raises(DataSetError, match=ERROR_PREFIX + "mysqlclient"): + table_data_set.save(dummy_dataframe) + + @pytest.mark.parametrize( + "table_data_set", [{"credentials": dict(con=FAKE_CONN_STR)}], indirect=True + ) + def test_save_unknown_sql(self, table_data_set, dummy_dataframe): + """Check the error when unknown sql dialect is provided""" + pattern = ( + r"The SQL dialect in your connection is not supported " r"by SQLAlchemy" + ) + with pytest.raises(DataSetError, match=pattern): + table_data_set.save(dummy_dataframe) + + @pytest.mark.parametrize( + "table_data_set", [{"credentials": dict(con=_unknown_conn)}], indirect=True + ) + def test_save_unknown_module(self, mocker, table_data_set, dummy_dataframe): + """Test that if an unknown module/driver is encountered by SQLAlchemy + then the error should contain the original error message""" + _err = ImportError("No module named 'unknown_module'") + mocker.patch.object(dummy_dataframe, "to_sql", side_effect=_err) + pattern = r"No module named \'unknown_module\'" + with pytest.raises(DataSetError, match=pattern): + table_data_set.save(dummy_dataframe) + + @pytest.mark.parametrize( + "table_data_set", [{"save_args": dict(name="TABLE_B")}], indirect=True + ) + def test_save_ignore_table_name_override( + self, mocker, table_data_set, dummy_dataframe + ): + """Test that putting the table name is `save_args` does not have any + effect""" + mocker.patch.object(dummy_dataframe, "to_sql") + table_data_set.save(dummy_dataframe) + self._assert_to_sql_called_once(dummy_dataframe) + + +class TestSQLTableDataSet: + @staticmethod + def _assert_sqlalchemy_called_once(*args): + _callable = sqlalchemy.engine.Engine.table_names + if args: + _callable.assert_called_once_with(*args) + else: + assert _callable.call_count == 1 + + def test_str_representation_table(self, table_data_set): + """Test the data set instance string representation""" + str_repr = str(table_data_set) + assert ( + "SQLTableDataSet(save_args={'index': False}, table_name=%s)" % TABLE_NAME + in str_repr + ) + assert CONNECTION not in str(str_repr) + + def test_table_exists(self, mocker, table_data_set): + """Test `exists` method invocation""" + mocker.patch("sqlalchemy.engine.Engine.table_names") + assert not table_data_set.exists() + self._assert_sqlalchemy_called_once() + + @pytest.mark.parametrize( + "table_data_set", [{"load_args": dict(schema="ingested")}], indirect=True + ) + def test_able_exists_schema(self, mocker, table_data_set): + """Test `exists` method invocation with DB schema provided""" + mocker.patch("sqlalchemy.engine.Engine.table_names") + assert not table_data_set.exists() + self._assert_sqlalchemy_called_once("ingested") + + def test_table_exists_mocked(self, mocker, table_data_set): + """Test `exists` method invocation with mocked list of tables""" + mocker.patch("sqlalchemy.engine.Engine.table_names", return_value=[TABLE_NAME]) + assert table_data_set.exists() + self._assert_sqlalchemy_called_once() + + +class TestSQLQueryDataSet: + @staticmethod + def _assert_pd_called_once(): + _callable = pd.read_sql_query + _callable.assert_called_once_with(sql=SQL_QUERY, con=CONNECTION) + + def test_empty_query_error(self): + """Check the error when instantiating with empty query""" + pattern = r"`sql` argument cannot be empty\. " r"Please provide a sql query" + with pytest.raises(DataSetError, match=pattern): + SQLQueryDataSet(sql="", credentials=dict(con=CONNECTION)) + + def test_empty_con_error(self): + """Check the error when instantiating with empty connection string""" + pattern = ( + r"`con` argument cannot be empty\. Please provide " + r"a SQLAlchemy connection string" + ) + with pytest.raises(DataSetError, match=pattern): + SQLQueryDataSet(sql=SQL_QUERY, credentials=dict(con="")) + + def test_load(self, mocker, query_data_set): + """Test `load` method invocation""" + mocker.patch("pandas.read_sql_query") + query_data_set.load() + self._assert_pd_called_once() + + def test_load_driver_missing(self, mocker, query_data_set): + """Test that if an unknown module/driver is encountered by SQLAlchemy + then the error should contain the original error message""" + _err = ImportError("No module named 'mysqldb'") + mocker.patch("pandas.read_sql_query", side_effect=_err) + with pytest.raises(DataSetError, match=ERROR_PREFIX + "mysqlclient"): + query_data_set.load() + + def test_invalid_module(self, mocker, query_data_set): + """Test that if an unknown module/driver is encountered by SQLAlchemy + then the error should contain the original error message""" + _err = ImportError("Invalid module some_module") + mocker.patch("pandas.read_sql_query", side_effect=_err) + pattern = ERROR_PREFIX + r"Invalid module some\_module" + with pytest.raises(DataSetError, match=pattern): + query_data_set.load() + + def test_load_unknown_module(self, mocker, query_data_set): + """Test that if an unknown module/driver is encountered by SQLAlchemy + then the error should contain the original error message""" + _err = ImportError("No module named 'unknown_module'") + mocker.patch("pandas.read_sql_query", side_effect=_err) + pattern = ERROR_PREFIX + r"No module named \'unknown\_module\'" + with pytest.raises(DataSetError, match=pattern): + query_data_set.load() + + @pytest.mark.parametrize( + "query_data_set", [{"credentials": dict(con=FAKE_CONN_STR)}], indirect=True + ) + def test_load_unknown_sql(self, query_data_set): + """Check the error when unknown SQL dialect is provided + in the connection string""" + pattern = ( + r"The SQL dialect in your connection is not supported " r"by SQLAlchemy" + ) + with pytest.raises(DataSetError, match=pattern): + query_data_set.load() + + def test_save_error(self, query_data_set, dummy_dataframe): + """Check the error when trying to save to the data set""" + pattern = r"`save` is not supported on SQLQueryDataSet" + with pytest.raises(DataSetError, match=pattern): + query_data_set.save(dummy_dataframe) + + def test_str_representation_sql(self, query_data_set): + """Test the data set instance string representation""" + str_repr = str(query_data_set) + assert "SQLQueryDataSet(sql={})".format(SQL_QUERY) in str_repr + assert CONNECTION not in str_repr diff --git a/tests/io/test_text_local.py b/tests/io/test_text_local.py new file mode 100644 index 0000000000..1057a57b0a --- /dev/null +++ b/tests/io/test_text_local.py @@ -0,0 +1,153 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +import random +from pathlib import Path + +import pytest + +from kedro.io import DataSetError, TextLocalDataSet +from kedro.io.core import Version + + +@pytest.fixture +def filepath_txt(tmp_path): + return str(tmp_path / "test.txt") + + +@pytest.fixture(params=[dict()]) +def txt_data_set(filepath_txt, request): + return TextLocalDataSet(filepath=filepath_txt, **request.param) + + +@pytest.fixture +def versioned_txt_data_set(filepath_txt, load_version, save_version): + return TextLocalDataSet( + filepath=filepath_txt, version=Version(load_version, save_version) + ) + + +@pytest.fixture +def sample_text(): + random_int = random.randint(1, 10 ** 10) + return "this file has been written with a random_number: {}".format(random_int) + + +def traditional_write(filepath, sample_text): + Path(filepath).write_text(sample_text) + + +class TestTextLocalDataSet: + def test_should_write_to_file(self, txt_data_set, sample_text, filepath_txt): + txt_data_set.save(sample_text) + assert Path(filepath_txt).read_text("utf-8") == sample_text + + def test_load_missing_txt_file(self, txt_data_set): + """Check the error raised when trying to load nonexistent txt file.""" + pattern = r"Failed while loading data from data set TextLocalDataSet" + with pytest.raises(DataSetError, match=pattern): + txt_data_set.load() + + def test_should_read_from_file(self, txt_data_set, sample_text, filepath_txt): + traditional_write(filepath_txt, sample_text) + assert sample_text == txt_data_set.load() + + def test_assess_if_file_exists(self, txt_data_set, sample_text, filepath_txt): + assert not txt_data_set.exists() + traditional_write(filepath_txt, sample_text) + assert txt_data_set.exists() + + +class TestTextLocalDataSetVersioned: + def test_save_and_load(self, versioned_txt_data_set, sample_text): + """Test that saved and reloaded data matches the original one for + the versioned data set.""" + versioned_txt_data_set.save(sample_text) + reloaded = versioned_txt_data_set.load() + assert reloaded == sample_text + + def test_no_versions(self, versioned_txt_data_set): + """Check the error if no versions are available for load.""" + pattern = r"Did not find any versions for TextLocalDataSet\(.+\)" + with pytest.raises(DataSetError, match=pattern): + versioned_txt_data_set.load() + + def test_exists(self, versioned_txt_data_set, sample_text): + """Test `exists` method invocation for versioned data set.""" + assert not versioned_txt_data_set.exists() + + versioned_txt_data_set.save(sample_text) + assert versioned_txt_data_set.exists() + + def test_prevent_override(self, versioned_txt_data_set, sample_text): + """Check the error when attempting to override the data set if the + corresponding xls file for a given save version already exists.""" + versioned_txt_data_set.save(sample_text) + pattern = ( + r"Save path \`.+\` for TextLocalDataSet\(.+\) must " + r"not exist if versioning is enabled\." + ) + with pytest.raises(DataSetError, match=pattern): + versioned_txt_data_set.save(sample_text) + + @pytest.mark.parametrize( + "load_version", ["2019-01-01T23.59.59.999Z"], indirect=True + ) + @pytest.mark.parametrize( + "save_version", ["2019-01-02T00.00.00.000Z"], indirect=True + ) + def test_save_version_warning( + self, versioned_txt_data_set, load_version, save_version, sample_text + ): + """Check the warning when saving to the path that differs from + the subsequent load path.""" + pattern = ( + r"Save path `.*/{}/test\.txt` did not match load path " + r"`.*/{}/test\.txt` for TextLocalDataSet\(.+\)".format( + save_version, load_version + ) + ) + with pytest.warns(UserWarning, match=pattern): + versioned_txt_data_set.save(sample_text) + + def test_version_str_repr(self, load_version, save_version): + """Test that version is in string representation of the class instance + when applicable.""" + filepath = "test.txt" + ds = TextLocalDataSet(filepath=filepath) + ds_versioned = TextLocalDataSet( + filepath=filepath, version=Version(load_version, save_version) + ) + assert filepath in str(ds) + assert "version" not in str(ds) + + assert filepath in str(ds_versioned) + ver_str = "version=Version(load={}, save='{}')".format( + load_version, save_version + ) + assert ver_str in str(ds_versioned) diff --git a/tests/pipeline/__init__.py b/tests/pipeline/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/tests/pipeline/test_decorators.py b/tests/pipeline/test_decorators.py new file mode 100644 index 0000000000..e7c37202d6 --- /dev/null +++ b/tests/pipeline/test_decorators.py @@ -0,0 +1,89 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +import logging +from time import sleep + +from kedro.pipeline.decorators import log_time, mem_profile + + +def sleeping_identity(inp): + sleep(0.1) + return inp + + +def test_log_time(caplog): + caplog.clear() + func = log_time(sleeping_identity) + res = func(1) + + logger_name, severity, message = caplog.record_tuples[0] + assert res == 1 + assert logger_name == "kedro.pipeline.decorators" + assert severity == logging.INFO + expected = "Running '%s.%s' took" % ( + sleeping_identity.__module__, + sleeping_identity.__qualname__, + ) + assert expected in message + + +def test_log_time_no_module(caplog): + """When func module is not defined, function full name is not logged.""" + + def no_module(arg): + return sleeping_identity(arg) + + no_module.__module__ = None + + caplog.clear() + func = log_time(no_module) + res = func(1) + + logger_name, severity, message = caplog.record_tuples[0] + assert res == 1 + assert logger_name == "kedro.pipeline.decorators" + assert severity == logging.INFO + expected = "Running %r took" % no_module.__qualname__ + assert expected in message + + +def test_mem_profile(caplog): + caplog.clear() + func = mem_profile(sleeping_identity) + res = func(1) + + logger_name, severity, message = caplog.record_tuples[0] + assert res == 1 + assert logger_name == "kedro.pipeline.decorators" + assert severity == logging.INFO + expected = "Running '%s.%s' consumed" % ( + sleeping_identity.__module__, + sleeping_identity.__qualname__, + ) + assert expected in message diff --git a/tests/pipeline/test_node.py b/tests/pipeline/test_node.py new file mode 100644 index 0000000000..2b20ace259 --- /dev/null +++ b/tests/pipeline/test_node.py @@ -0,0 +1,305 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. +from functools import wraps +from typing import Callable + +import pytest + +from kedro.pipeline import node + + +# Different dummy func based on the number of arguments +def constant_output(): + return "output" # pragma: no cover + + +def identity(input1: str): + return input1 # pragma: no cover + + +def biconcat(input1: str, input2: str): + return input1 + input2 # pragma: no cover + + +def triconcat(input1: str, input2: str, input3: str): + return input1 + input2 + input3 # pragma: no cover + + +@pytest.fixture +def simple_tuple_node_list(): + return [ + (identity, "A", "B"), + (biconcat, ["A", "B"], "C"), + (identity, "C", ["D", "E"]), + (biconcat, ["H", "I"], ["J", "K"]), + (identity, "J", dict(result="K")), + (biconcat, ["J", "K"], dict(result="L")), + (identity, dict(input1="J"), "L"), + (identity, dict(input1="J"), ["L", "M"]), + (identity, dict(input1="J"), dict(result="K")), + (constant_output, None, "M"), + (biconcat, ["N", "O"], None), + (lambda x: None, "F", "G"), + ] + + +class TestValidNode: + def test_valid(self, simple_tuple_node_list): + nodes = [node(*tup) for tup in simple_tuple_node_list] + assert len(nodes) == len(simple_tuple_node_list) + + def test_labelled(self): + assert "labeled_node: <lambda>([input1]) -> [output1]" in str( + node(lambda x: None, "input1", "output1", name="labeled_node") + ) + + def test_no_input(self): + assert "constant_output(None) -> [output1]" in str( + node(constant_output, None, "output1") + ) + + def test_no_output(self): + assert "<lambda>([input1]) -> None" in str(node(lambda x: None, "input1", None)) + + def test_node_equals(self): + first = node(identity, "input1", "output1", name="a node") + second = node(identity, "input1", "output1", name="a node") + assert first == second + assert first is not second + + def test_inputs_none(self): + dummy_node = node(constant_output, None, "output") + assert dummy_node.inputs == [] + + def test_inputs_str(self): + dummy_node = node(identity, "input1", "output1") + assert dummy_node.inputs == ["input1"] + + def test_inputs_dict(self): + dummy_node = node( + biconcat, + {"input1": "in1", "input2": "in2"}, + ["output2", "output1", "last node"], + ) + inputs = dummy_node.inputs + assert isinstance(inputs, list) + assert len(inputs) == 2 + assert set(inputs) == {"in1", "in2"} + + def test_inputs_list(self): + dummy_node = node( + triconcat, + ["input1", "input2", "another node"], + ["output1", "output2", "last node"], + ) + assert dummy_node.inputs == ["input1", "input2", "another node"] + + def test_outputs_none(self): + dummy_node = node(identity, "input", None) + assert dummy_node.outputs == [] + + def test_outputs_str(self): + dummy_node = node(identity, "input1", "output1") + assert dummy_node.outputs == ["output1"] + + def test_outputs_dict(self): + dummy_node = node( + biconcat, ["input1", "input2"], {"output1": "out1", "output2": "out2"} + ) + outputs = dummy_node.outputs + assert isinstance(outputs, list) + assert len(outputs) == 2 + assert set(outputs) == {"out1", "out2"} + + def test_outputs_list(self): + dummy_node = node( + triconcat, + ["input2", "input1", "another node"], + ["output2", "output1", "last node"], + ) + assert dummy_node.outputs == ["output2", "output1", "last node"] + + +def bad_input_type_node(): + return lambda x: None, ("A", "D"), "B" + + +def bad_output_type_node(): + return lambda x: None, "A", ("B", "C") + + +def bad_function_type_node(): + return "A", "B", "C" + + +def no_input_or_output_node(): + return constant_output, None, None + + +def input_same_as_output_node(): + return biconcat, ["A", "B"], dict(a="A") + + +def duplicate_output_dict_node(): + return identity, "A", dict(a="A", b="A") + + +def duplicate_output_list_node(): + return identity, "A", ["A", "A"] + + +@pytest.mark.parametrize( + "func, expected", + [ + (bad_input_type_node, r"`inputs` type must be one of "), + (bad_output_type_node, r"`outputs` type must be one of "), + (bad_function_type_node, r"first argument must be a function"), + (no_input_or_output_node, r"it must have some `inputs` or `outputs`"), + ( + input_same_as_output_node, + r"A node cannot have the same inputs and outputs: {\'A\'}", + ), + ( + duplicate_output_dict_node, + r"Failed to create node identity" + r"\(\[A\]\) -> \[A,A\] due to " + r"duplicate output\(s\) {\'A\'}.", + ), + ( + duplicate_output_list_node, + r"Failed to create node identity" + r"\(\[A\]\) -> \[A,A\] due to " + r"duplicate output\(s\) {\'A\'}.", + ), + ], +) +def test_bad_node(func, expected): + with pytest.raises(ValueError, match=expected): + node(*func()) + + +def inconsistent_input_size(): + return identity, ["A", "B"], "C" + + +def inconsistent_input_args(): + def dummy_func_args(*args): + return "".join([*args]) # pragma: no cover + + return dummy_func_args, {"a": "A"}, "B" + + +def inconsistent_input_kwargs(): + def dummy_func_args(**kwargs): + return list(kwargs.values()) # pragma: no cover + + return dummy_func_args, "A", "B" + + +@pytest.mark.parametrize( + "func, expected", + [ + ( + inconsistent_input_size, + r"Inputs of function expected \[\'input1\'\], but got \[\'A\', \'B\'\]", + ), + ( + inconsistent_input_args, + r"Inputs of function expected \[\'args\'\], but got {\'a\': \'A\'}", + ), + ( + inconsistent_input_kwargs, + r"Inputs of function expected \[\'kwargs\'\], but got A", + ), + ], +) +def test_bad_input(func, expected): + with pytest.raises(TypeError, match=expected): + node(*func()) + + +def apply_f(func: Callable) -> Callable: + @wraps(func) + def with_f(*args, **kwargs): + return func(*["f(%s)" % a for a in args], **kwargs) + + return with_f + + +def apply_g(func: Callable) -> Callable: + @wraps(func) + def with_g(*args, **kwargs): + return func(*["g(%s)" % a for a in args], **kwargs) + + return with_g + + +def apply_h(func: Callable) -> Callable: + @wraps(func) + def with_h(*args, **kwargs): + return func(*["h(%s)" % a for a in args], **kwargs) + + return with_h + + +def apply_ij(func: Callable) -> Callable: + @wraps(func) + def with_ij(*args, **kwargs): + return func(*["ij(%s)" % a for a in args], **kwargs) + + return with_ij + + +@apply_f +def decorated_identity(value): + return value + + +class TestTagDecorator: + def test_apply_decorators(self): + old_node = node(apply_g(decorated_identity), "input", "output", name="node") + new_node = old_node.decorate(apply_h, apply_ij) + result = new_node.run(dict(input=1)) + + assert old_node.name == new_node.name + assert "output" in result + assert result["output"] == "f(g(ij(h(1))))" + + def test_tag_nodes(self): + tagged_node = node(identity, "input", "output", tags=["hello"]).tag(["world"]) + assert "hello" in tagged_node.tags + assert "world" in tagged_node.tags + assert len(tagged_node.tags) == 2 + + def test_tag_and_decorate(self): + tagged_node = node(identity, "input", "output", tags=["hello"]) + tagged_node = tagged_node.decorate(apply_f) + tagged_node = tagged_node.tag(["world"]) + assert "hello" in tagged_node.tags + assert "world" in tagged_node.tags + assert tagged_node.run(dict(input=1))["output"] == "f(1)" diff --git a/tests/pipeline/test_node_run.py b/tests/pipeline/test_node_run.py new file mode 100644 index 0000000000..709418b6ac --- /dev/null +++ b/tests/pipeline/test_node_run.py @@ -0,0 +1,169 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +# pylint: disable=unused-argument + +import pytest + +from kedro.io import LambdaDataSet +from kedro.pipeline import node + + +@pytest.fixture +def mocked_dataset(mocker): + load = mocker.Mock(return_value=42) + save = mocker.Mock() + return LambdaDataSet(load, save) + + +def one_in_one_out(arg): + return arg + + +def one_in_dict_out(arg): + return dict(ret=arg) + + +def two_in_first_out(arg1, arg2): + return arg1 + + +@pytest.fixture +def valid_nodes_with_inputs(): + return [ + (node(one_in_one_out, "ds1", "dsOut"), dict(ds1=42)), + (node(one_in_dict_out, dict(arg="ds1"), dict(ret="dsOut")), dict(ds1=42)), + (node(two_in_first_out, ["ds1", "ds2"], "dsOut"), dict(ds1=42, ds2=58)), + ] + + +def test_valid_nodes(valid_nodes_with_inputs): + """Check if node.run works as expected.""" + for node_, input_ in valid_nodes_with_inputs: + output = node_.run(input_) + assert output["dsOut"] == 42 + + +def test_run_got_dataframe(mocked_dataset): + """Check an exception when non-dictionary (class object) is passed.""" + pattern = r"Node.run\(\) expects a dictionary or None, " + pattern += r"but got <class \'kedro.io.lambda_data_set.LambdaDataSet\'> instead" + with pytest.raises(ValueError, match=pattern): + node(one_in_one_out, dict(arg="ds1"), "A").run(mocked_dataset) + + +class TestNodeRunInvalidInput: + def test_unresolved(self): + """Pass no input when one is expected.""" + with pytest.raises(ValueError, match=r"expected one input"): + node(one_in_one_out, "unresolved", "ds1").run(None) + + def test_no_inputs_node_error(self, mocked_dataset): + """Pass one input when none is expected.""" + with pytest.raises(ValueError, match=r"expected no inputs"): + node(lambda: 1, None, "A").run(dict(unexpected=mocked_dataset)) + + def test_one_input_error(self, mocked_dataset): + """Pass a different input.""" + pattern = r"expected one input named 'ds1', but got the " + pattern += r"following 1 input\(s\) instead: \['arg'\]" + with pytest.raises(ValueError, match=pattern): + node(one_in_dict_out, "ds1", dict(ret="B", ans="C")).run( + dict(arg=mocked_dataset) + ) + + def test_run_diff_size_lists(self, mocked_dataset): + """Pass only one dict input when two (list) are expected.""" + pattern = r"expected 2 input\(s\) \['ds1', 'ds2'\], but " + pattern += r"got the following 1 input\(s\) instead." + with pytest.raises(ValueError, match=pattern): + node(two_in_first_out, ["ds1", "ds2"], "A").run(dict(ds1=mocked_dataset)) + + def test_run_diff_size_list_dict(self, mocked_dataset): + """Pass two dict inputs when one (list) are expected.""" + pattern = r"expected 1 input\(s\) \['ds1'\], but got the " + pattern += r"following 2 input\(s\) instead: \['ds1', 'ds2'\]\." + with pytest.raises(ValueError, match=pattern): + node(one_in_one_out, ["ds1"], "A").run(dict(ds1=mocked_dataset, ds2=2)) + + def test_run_list_dict_unavailable(self, mocked_dataset): + """Pass one dict which is different from expected.""" + pattern = r"expected 1 input\(s\) \['ds1'\], but got the " + pattern += r"following 1 input\(s\) instead: \['ds2'\]\." + with pytest.raises(ValueError, match=pattern): + node(one_in_one_out, ["ds1"], "A").run(dict(ds2=mocked_dataset)) + + def test_run_dict_unavailable(self, mocked_dataset): + """Pass one dict which is different from expected.""" + pattern = r"expected 1 input\(s\) \['ds1'\], but got the " + pattern += r"following 1 input\(s\) instead: \['ds2'\]\." + with pytest.raises(ValueError, match=pattern): + node(one_in_one_out, dict(arg="ds1"), "A").run(dict(ds2=mocked_dataset)) + + def test_run_dict_diff_size(self, mocked_dataset): + """Pass two dict inputs when one is expected.""" + pattern = r"expected 1 input\(s\) \['ds1'\], but got the " + pattern += r"following 2 input\(s\) instead: \['ds1', 'ds2'\]\." + with pytest.raises(ValueError, match=pattern): + node(one_in_one_out, dict(arg="ds1"), "A").run( + dict(ds1=mocked_dataset, ds2=2) + ) + + +class TestNodeRunInvalidOutput: + def test_miss_matching_output_types(self, mocked_dataset): + pattern = r"The node output is a dictionary, whereas the function " + pattern += r"output is not\." + with pytest.raises(ValueError, match=pattern): + node(one_in_one_out, "ds1", dict(a="ds")).run(dict(ds1=mocked_dataset)) + + def test_miss_matching_output_keys(self, mocked_dataset): + pattern = r"The node's output keys {'ret'} do not match " + pattern += r"with the returned output's keys" + with pytest.raises(ValueError, match=pattern): + node(one_in_dict_out, "ds1", dict(ret="B", ans="C")).run( + dict(ds1=mocked_dataset) + ) + + def test_node_not_list_output(self, mocked_dataset): + pattern = r"The node definition contains a list of outputs " + pattern += r"\['B', 'C'\], whereas the node function returned " + pattern += r"a `LambdaDataSet`" + with pytest.raises(ValueError, match=pattern): + node(one_in_one_out, "ds1", ["B", "C"]).run(dict(ds1=mocked_dataset)) + + def test_node_wrong_num_of_outputs(self, mocker, mocked_dataset): + def one_in_two_out(arg): + load = mocker.Mock(return_value=42) + save = mocker.Mock() + return [LambdaDataSet(load, save), LambdaDataSet(load, save)] + + pattern = r"The node function returned 2 output\(s\), whereas " + pattern += r"the node definition contains 3 output\(s\)\." + with pytest.raises(ValueError, match=pattern): + node(one_in_two_out, "ds1", ["A", "B", "C"]).run(dict(ds1=mocked_dataset)) diff --git a/tests/pipeline/test_pipeline.py b/tests/pipeline/test_pipeline.py new file mode 100644 index 0000000000..31afafd14e --- /dev/null +++ b/tests/pipeline/test_pipeline.py @@ -0,0 +1,650 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +from functools import wraps +from itertools import chain +from typing import Callable + +import pytest +from pytest import fixture + +import kedro +from kedro.io import DataCatalog +from kedro.pipeline import Pipeline, node +from kedro.pipeline.pipeline import CircularDependencyError, OutputNotUniqueError +from kedro.runner import SequentialRunner + + +# Different dummy func based on the number of arguments +def constant_output(): + return "output" # pragma: no cover + + +def identity(input1: str): + return input1 # pragma: no cover + + +def biconcat(input1: str, input2: str): + return input1 + input2 # pragma: no cover + + +def triconcat(input1: str, input2: str, input3: str): + return input1 + input2 + input3 # pragma: no cover + + +@fixture +def branchless_pipeline(): + return { + "nodes": [ + node(identity, "E", None), + node(identity, "D", "E"), + node(identity, "C", "D"), + node(identity, "A", "B"), + node(identity, "B", "C"), + node(constant_output, None, "A"), + ], + "expected": [ + {node(constant_output, None, "A")}, + {node(identity, "A", "B")}, + {node(identity, "B", "C")}, + {node(identity, "C", "D")}, + {node(identity, "D", "E")}, + {node(identity, "E", None)}, + ], + "free_inputs": [], + "outputs": [], + } + + +@fixture +def pipeline_list_with_lists(): + return { + "nodes": [ + node(triconcat, ["H", "I", "M"], "N", name="node1"), + node(identity, "H", "I", name="node2"), + node(identity, "F", ["G", "M"], name="node3"), + node(identity, "E", ["F", "H"], name="node4"), + node(identity, "D", None, name="node5"), + node(identity, "C", "D", name="node6"), + node(identity, "B", ["C", "E"], name="node7"), + node(identity, "A", ["B", "L"], name="node8"), + node(constant_output, None, "A", name="node9"), + ], + "expected": [ + {node(constant_output, None, "A", name="node9")}, + {node(identity, "A", ["B", "L"], name="node8")}, + {node(identity, "B", ["C", "E"], name="node7")}, + { + node(identity, "C", "D", name="node6"), + node(identity, "E", ["F", "H"], name="node4"), + }, + { + node(identity, "D", None, name="node5"), + node(identity, "H", "I", name="node2"), + node(identity, "F", ["G", "M"], name="node3"), + }, + {node(triconcat, ["H", "I", "M"], "N", name="node1")}, + ], + "free_inputs": [], + "outputs": ["L", "G", "N"], + } + + +@fixture +def pipeline_with_dicts(): + return { + "nodes": [ + node(triconcat, ["H", "I", "M"], "N", name="node1"), + node(identity, "H", "I", name="node2"), + node(identity, "F", dict(M="M", N="G"), name="node3"), + node(identity, "E", dict(O="F", P="H"), name="node4"), # NOQA + node(identity, dict(input1="D"), None, name="node5"), + node(identity, "C", "D", name="node6"), + node(identity, "B", dict(P="C", Q="E"), name="node7"), + node(identity, "A", dict(R="B", S="L"), name="node8"), + node(constant_output, None, "A", name="node9"), + ], + "expected": [ + {node(constant_output, None, "A", name="node9")}, + {node(identity, "A", dict(R="B", S="L"), name="node8")}, + {node(identity, "B", dict(P="C", Q="E"), name="node7")}, + { + node(identity, "C", "D", name="node6"), + node(identity, "E", dict(O="F", P="H"), name="node4"), # NOQA + }, + { + node(identity, dict(input1="D"), None, name="node5"), + node(identity, "H", "I", name="node2"), + node(identity, "F", dict(M="M", N="G"), name="node3"), + }, + {node(triconcat, ["H", "I", "M"], "N", name="node1")}, + ], + "free_inputs": [], + "outputs": ["L", "G", "N"], + } + + +@fixture +def free_input_needed_pipeline(): + return { + "nodes": [ + node(identity, "A", "B", name="node1"), # 'A' needs to be free + node(identity, "B", "C", name="node2"), + node(identity, "C", "D", name="node3"), + ], + "expected": [ + {node(identity, "A", "B", name="node1")}, + {node(identity, "B", "C", name="node2")}, + {node(identity, "C", "D", name="node3")}, + ], + "free_inputs": ["A"], + "outputs": ["D"], + } + + +@fixture +def disjoint_pipeline(): + # Two separate pipelines: A->B->C and D->E->F + return { + "nodes": [ + node(identity, "A", "B", name="node1"), + node(identity, "B", "C", name="node2"), + node(identity, "E", "F", name="node3"), # disjoint part D->E->F + node(identity, "D", "E", name="node4"), + ], + "expected": [ + { + node(identity, "A", "B", name="node1"), + node(identity, "D", "E", name="node4"), + }, + { + node(identity, "B", "C", name="node2"), + node(identity, "E", "F", name="node3"), + }, + ], + "free_inputs": ["A", "D"], + "outputs": ["C", "F"], + } + + +@fixture +def pipeline_input_duplicated(): + return { + "nodes": [ + node(biconcat, ["A", "A"], "B", name="node1"), # input duplicate + node(identity, "B", "C", name="node2"), + node(identity, "C", "D", name="node3"), + ], + "expected": [ + {node(biconcat, ["A", "A"], "B", name="node1")}, + {node(identity, "B", "C", name="node2")}, + {node(identity, "C", "D", name="node3")}, + ], + "free_inputs": ["A"], + "outputs": ["D"], + } + + +@fixture +def str_node_inputs_list(): + return { + "nodes": [ + node(biconcat, ["input1", "input2"], ["input3"], name="node1"), + node(identity, "input3", "input4", name="node2"), + ], + "expected": [ + {node(biconcat, ["input1", "input2"], ["input3"], name="node1")}, + {node(identity, "input3", "input4", name="node2")}, + ], + "free_inputs": ["input1", "input2"], + "outputs": ["input4"], + } + + +@pytest.fixture( + params=[ + "branchless_pipeline", + "pipeline_list_with_lists", + "pipeline_with_dicts", + "free_input_needed_pipeline", + "disjoint_pipeline", + "pipeline_input_duplicated", + "str_node_inputs_list", + ] +) +def input_data(request): + return request.getfixturevalue(request.param) + + +class TestValidPipeline: + def test_nodes(self, str_node_inputs_list): + nodes = str_node_inputs_list["nodes"] + pipeline = Pipeline(nodes) + + assert set(pipeline.nodes) == set(nodes) + + def test_grouped_nodes(self, input_data): + """Check if grouped_nodes func groups the nodes correctly""" + nodes_input = input_data["nodes"] + expected = input_data["expected"] + pipeline = Pipeline(nodes_input) + + grouped = pipeline.grouped_nodes + # Flatten a list of grouped nodes + assert pipeline.nodes == list(chain.from_iterable(grouped)) + # Check each grouped node matches with expected group + assert all(e == set(g) for e, g in zip(expected, grouped)) + + @pytest.mark.parametrize( + "target_node_names", [["node2", "node3", "node4", "node8"], ["node1"]] + ) + def test_only_nodes(self, target_node_names, pipeline_list_with_lists): + full = Pipeline(pipeline_list_with_lists["nodes"]) + partial = full.only_nodes(*target_node_names) + target_list = list(target_node_names) + names = map(lambda node_: node_.name, partial.nodes) + assert sorted(target_list) == sorted(names) + + def test_free_input(self, input_data): + nodes = input_data["nodes"] + inputs = input_data["free_inputs"] + + pipeline = Pipeline(nodes) + + assert set(inputs) == pipeline.inputs() + + def test_outputs(self, input_data): + nodes = input_data["nodes"] + outputs = input_data["outputs"] + + pipeline = Pipeline(nodes) + + assert set(outputs) == pipeline.outputs() + + def test_combine(self): + pipeline1 = Pipeline([node(biconcat, ["input", "input1"], "output1", name="a")]) + pipeline2 = Pipeline([node(biconcat, ["input", "input2"], "output2", name="b")]) + new_pipeline = pipeline1 + pipeline2 + assert new_pipeline.inputs() == {"input", "input1", "input2"} + assert new_pipeline.outputs() == {"output1", "output2"} + assert {n.name for n in new_pipeline.nodes} == {"a", "b"} + + def test_combine_same_node(self): + """Multiple (identical) pipelines are possible""" + pipeline1 = Pipeline( + [node(biconcat, ["input", "input1"], ["output"], name="a")] + ) + pipeline2 = Pipeline( + [node(biconcat, ["input", "input1"], ["output"], name="a")] + ) + new_pipeline = pipeline1 + pipeline2 + assert new_pipeline.inputs() == {"input", "input1"} + assert new_pipeline.outputs() == {"output"} + assert {n.name for n in new_pipeline.nodes} == {"a"} + + def test_empty_case(self): + """Empty pipeline is possible""" + Pipeline([]) + + +def pipeline_with_circle(): + return [ + node(identity, "A", "B", name="node1"), + node(identity, "B", "C", name="node2"), + node(identity, "C", "A", name="node3"), # circular dependency + ] + + +def non_unique_node_outputs(): + return [ + node(identity, "A", ["B", "C"], name="node1"), + node(identity, "C", ["D", "E", "F"], name="node2"), + # D, E non-unique + node(identity, "B", dict(out1="D", out2="E"), name="node3"), + node(identity, "D", ["E"], name="node4"), # E non-unique + ] + + +class TestInvalidPipeline: + def test_circle_case(self): + pattern = "Circular dependencies" + with pytest.raises(CircularDependencyError, match=pattern): + Pipeline(pipeline_with_circle()) + + def test_unique_outputs(self): + with pytest.raises(OutputNotUniqueError, match=r"\['D', 'E'\]"): + Pipeline(non_unique_node_outputs()) + + def test_none_case(self): + with pytest.raises(ValueError, match="is None"): + Pipeline(None) + + @pytest.mark.parametrize( + "target_node_names", [["node2", "node3", "node4", "NaN"], ["invalid"]] + ) + def test_only_nodes_missing(self, pipeline_list_with_lists, target_node_names): + pattern = r"Pipeline does not contain nodes" + full = Pipeline(pipeline_list_with_lists["nodes"]) + with pytest.raises(ValueError, match=pattern): + full.only_nodes(*target_node_names) + + def test_duplicate_names(self): + pattern = r"Pipeline nodes must have unique names\. The following " + pattern += r"node names appear more than once: \['same_name'\]" + with pytest.raises(ValueError, match=pattern): + Pipeline( + [ + node(identity, "in1", "out1", name="same_name"), + node(identity, "in2", "out2", name="same_name"), + ] + ) + + def test_bad_combine(self): + """Node cannot be combined to pipeline.""" + fred = node(identity, "input", "output") + pipeline = Pipeline([fred]) + with pytest.raises(TypeError): + pipeline + fred # pylint: disable=pointless-statement + + def test_conflicting_names(self): + """Node names must be unique.""" + pipeline1 = Pipeline( + [node(biconcat, ["input", "input1"], ["output1"], name="a")] + ) + new_pipeline = Pipeline( + [node(biconcat, ["input", "input1"], ["output2"], name="a")] + ) + with pytest.raises(ValueError, match=r"\['a'\]"): + pipeline1 + new_pipeline # pylint: disable=pointless-statement + + def test_conflicting_outputs(self): + """Node outputs must be unique.""" + pipeline1 = Pipeline( + [node(biconcat, ["input", "input1"], ["output", "output1"], name="a")] + ) + new_pipeline = Pipeline( + [node(biconcat, ["input", "input2"], ["output", "output2"], name="b")] + ) + with pytest.raises(OutputNotUniqueError, match=r"\['output'\]"): + pipeline1 + new_pipeline # pylint: disable=pointless-statement + + +@pytest.fixture +def complex_pipeline(pipeline_list_with_lists): + nodes = pipeline_list_with_lists["nodes"] + pipeline = Pipeline(nodes) + return pipeline + + +class TestComplexPipeline: + def test_from_inputs(self, complex_pipeline): + """F and H are inputs of node1, node2 and node3.""" + new_pipeline = complex_pipeline.from_inputs("F", "H") + nodes = {node.name for node in new_pipeline.nodes} + + assert len(new_pipeline.nodes) == 3 + assert nodes == {"node1", "node2", "node3"} + + def test_from_inputs_unknown(self, complex_pipeline): + """W and Z do not exist as inputs.""" + with pytest.raises(ValueError, match=r"\['W', 'Z'\]"): + complex_pipeline.from_inputs("Z", "W", "E", "C") + + def test_only_nodes_with_inputs(self, complex_pipeline): + """node1 and node2 require H as an input.""" + new_pipeline = complex_pipeline.only_nodes_with_inputs("H") + nodes = {node.name for node in new_pipeline.nodes} + + assert len(new_pipeline.nodes) == 2 + assert nodes == {"node1", "node2"} + + def test_only_nodes_with_inputs_unknown(self, complex_pipeline): + with pytest.raises(ValueError, match="['W', 'Z']"): + complex_pipeline.only_nodes_with_inputs("Z", "W", "E", "C") + + def test_only_nodes_with_outputs(self, complex_pipeline): + """node4 require F and H as outputs.""" + new_pipeline = complex_pipeline.only_nodes_with_outputs("F", "H") + nodes = {node.name for node in new_pipeline.nodes} + + assert len(new_pipeline.nodes) == 1 + assert nodes == {"node4"} + + def test_only_nodes_with_outputs_unknown(self, complex_pipeline): + with pytest.raises(ValueError, match="['W', 'Z']"): + complex_pipeline.only_nodes_with_outputs("Z", "W", "E", "C") + + def test_to_outputs(self, complex_pipeline): + """New pipeline contain all nodes to produce F and H outputs.""" + new_pipeline = complex_pipeline.to_outputs("F", "H") + nodes = {node.name for node in new_pipeline.nodes} + + assert len(new_pipeline.nodes) == 4 + assert nodes == {"node4", "node7", "node8", "node9"} + + def test_to_outputs_unknown(self, complex_pipeline): + with pytest.raises(ValueError, match=r"\['W', 'Z'\]"): + complex_pipeline.to_outputs("Z", "W", "E", "C") + + def test_from_nodes(self, complex_pipeline): + """New pipeline contain all nodes that depend on node2 and node3.""" + new_pipeline = complex_pipeline.from_nodes("node3", "node2") + nodes = {node.name for node in new_pipeline.nodes} + + assert len(new_pipeline.nodes) == 3 + assert nodes == {"node1", "node2", "node3"} + + def test_from_node_unknown(self, complex_pipeline): + pattern = r"Pipeline does not contain nodes named \['missing_node'\]" + with pytest.raises(ValueError, match=pattern): + complex_pipeline.from_nodes("missing_node") + + def test_to_nodes(self, complex_pipeline): + """New pipeline contain all nodes required by node4 and node6.""" + new_pipeline = complex_pipeline.to_nodes("node4", "node6") + nodes = {node.name for node in new_pipeline.nodes} + + assert len(new_pipeline.nodes) == 5 + assert nodes == {"node4", "node6", "node7", "node8", "node9"} + + def test_to_nodes_unknown(self, complex_pipeline): + pattern = r"Pipeline does not contain nodes named \['missing_node'\]" + with pytest.raises(ValueError, match=pattern): + complex_pipeline.to_nodes("missing_node") + + def test_connected_pipeline(self, disjoint_pipeline): + """Connect two separate pipelines.""" + nodes = disjoint_pipeline["nodes"] + subpipeline = Pipeline(nodes, name="subpipeline") + + assert len(subpipeline.inputs()) == 2 + assert len(subpipeline.outputs()) == 2 + + pipeline = Pipeline( + [node(identity, "C", "D", name="connecting_node"), subpipeline], name="main" + ) + + assert len(pipeline.nodes) == 1 + len(nodes) + assert len(pipeline.inputs()) == 1 + assert len(pipeline.outputs()) == 1 + assert all(pipeline.name in n.tags for n in pipeline.nodes) + assert all( + subpipeline.name in n.tags + for n in pipeline.nodes + if n.name != "connecting_node" + ) + + def test_node_dependencies(self, complex_pipeline): + expected = { + ("node1", "node2"), + ("node1", "node3"), + ("node1", "node4"), + ("node2", "node4"), + ("node3", "node4"), + ("node4", "node7"), + ("node5", "node6"), + ("node6", "node7"), + ("node7", "node8"), + ("node8", "node9"), + } + actual = {(n1.name, n2.name) for n1, n2 in complex_pipeline.node_dependencies} + assert actual == expected + + +class TestPipelineDescribe: + def test_names_only(self, str_node_inputs_list): + pipeline = Pipeline(str_node_inputs_list["nodes"]) + description = pipeline.describe() + + desc = description.split("\n") + test_desc = [ + "#### Pipeline execution order ####", + "Name: None", + "Inputs: input1, input2", + "", + "node1", + "node2", + "", + "Outputs: input4", + "##################################", + ] + + assert len(desc) == len(test_desc) + for res, example in zip(desc, test_desc): + assert res == example + + def test_full(self, str_node_inputs_list): + pipeline = Pipeline(str_node_inputs_list["nodes"]) + description = pipeline.describe(names_only=False) + + desc = description.split("\n") + test_desc = [ + "#### Pipeline execution order ####", + "Name: None", + "Inputs: input1, input2", + "", + "node1: biconcat([input1,input2]) -> [input3]", + "node2: identity([input3]) -> [input4]", + "", + "Outputs: input4", + "##################################", + ] + + assert len(desc) == len(test_desc) + for res, example in zip(desc, test_desc): + assert res == example + + +def apply_f(func: Callable) -> Callable: + @wraps(func) + def with_f(*args, **kwargs): + return func(*["f(%s)" % a for a in args], **kwargs) + + return with_f + + +def apply_g(func: Callable) -> Callable: + @wraps(func) + def with_g(*args, **kwargs): + return func(*["g(%s)" % a for a in args], **kwargs) + + return with_g + + +class TestPipelineDecorator: + def test_apply(self): + nodes = sorted( + [ + node(identity, "number", "output1", name="identity1"), + node(identity, "output1", "output2", name="biconcat"), + node(identity, "output2", "output", name="identity3"), + ], + key=lambda x: x.name, + ) + + pipeline = Pipeline(nodes).decorate(apply_f, apply_g) + catalog = DataCatalog({}, dict(number=1)) + result = SequentialRunner().run(pipeline, catalog) + decorated_nodes = sorted(pipeline.nodes, key=lambda x: x.name) + + assert result["output"] == "g(f(g(f(g(f(1))))))" + assert len(pipeline.nodes) == 3 + assert all(n1.name == n2.name for n1, n2 in zip(nodes, decorated_nodes)) + + def test_empty_apply(self): + """Applying no decorators is valid.""" + identity_node = node(identity, "number", "output", name="identity") + pipeline = Pipeline([identity_node]).decorate() + catalog = DataCatalog({}, dict(number=1)) + result = SequentialRunner().run(pipeline, catalog) + assert result["output"] == 1 + + +@pytest.fixture +def nodes_with_tags(): + return [ + node(identity, "E", None, name="node1"), + node(identity, "D", "E", name="node2", tags=["tag1", "tag2"]), + node(identity, "C", "D", name="node3"), + node(identity, "A", "B", name="node4", tags=["tag2"]), + node(identity, "B", "C", name="node5"), + node(constant_output, None, "A", name="node6", tags=["tag1"]), + ] + + +class TestPipelineTags: + @pytest.mark.parametrize( + "tags,expected_nodes", + [ + (["tag1"], ["node2", "node6"]), + (["tag2"], ["node2", "node4"]), + (["tag2", "tag1"], ["node2", "node4", "node6"]), + (["tag1", "tag2", "tag-missing"], ["node2", "node4", "node6"]), + (["tag-missing"], []), + ([], []), + ], + ) + def test_from_tags(self, tags, expected_nodes, nodes_with_tags): + pipeline = Pipeline(nodes_with_tags) + + def get_nodes_with_tags(*tags): + p = pipeline.only_nodes_with_tags(*tags) + return sorted(n.name for n in p.nodes) + + assert get_nodes_with_tags(*tags) == expected_nodes + + +def test_pipeline_to_json(input_data): + nodes = input_data["nodes"] + json_rep = Pipeline(nodes).to_json() + for pipeline_node in nodes: + assert pipeline_node.name in json_rep + assert all([node_input in json_rep for node_input in pipeline_node.inputs]) + assert all([node_output in json_rep for node_output in pipeline_node.outputs]) + + assert kedro.__version__ in json_rep diff --git a/tests/pipeline/test_pipeline_from_missing.py b/tests/pipeline/test_pipeline_from_missing.py new file mode 100644 index 0000000000..386a29c179 --- /dev/null +++ b/tests/pipeline/test_pipeline_from_missing.py @@ -0,0 +1,248 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +from unittest import mock + +import pytest + +from kedro.io import DataCatalog, LambdaDataSet +from kedro.pipeline import Pipeline, node +from kedro.runner import SequentialRunner + + +# Different dummy func based on the number of arguments +def constant_output(): + return "output" # pragma: no cover + + +def identity(input1: str): + return input1 # pragma: no cover + + +def biconcat(input1: str, input2: str): + return input1 + input2 # pragma: no cover + + +@pytest.fixture +def branched_pipeline(): + # #### Pipeline execution order #### + # Inputs: A + # + # left in: identity([A]) -> [B] + # right in: constant_output(None) -> [C] + # combine: biconcat([B,C]) -> [D] + # split: identity([D]) -> [E,F] + # right out: identity([F]) -> None + # Outputs: E + # + # A + # | + # l-in r-in + # | | + # B C + # \ / + # combine + # | + # D + # | + # split + # / \ + # E F + # | + # r-out + # + # ################################## + return Pipeline( + [ + node(identity, "A", "B", name="left in"), + node(constant_output, None, "C", name="right in"), + node(biconcat, ["B", "C"], "D", name="combine"), + node(identity, "D", ["E", "F"], name="split"), + node(identity, "F", None, name="right out"), + ] + ) + + +def _make_catalog( + existent=None, non_existent=None, no_exists_method=None, feed_dict=None +): + """Creates a catalog of existent and non-existent DataSets.""" + existent = [] if existent is None else existent + non_existent = [] if non_existent is None else non_existent + no_exists_method = [] if no_exists_method is None else no_exists_method + + catalog = DataCatalog(feed_dict=feed_dict) + for source in existent: + catalog.add(source, LambdaDataSet(None, None, lambda: True)) + for source in non_existent: + catalog.add(source, LambdaDataSet(None, None, lambda: False)) + # Some LambdaDataSet do not have exists() method + for source in no_exists_method: + catalog.add(source, LambdaDataSet(None, None)) + return catalog + + +def _pipelines_equal(pipe1, pipe2): + return set(pipe1.nodes) == set(pipe2.nodes) + + +def _pipeline_contains(pipe, nodes): + return set(nodes) == {n.name for n in pipe.nodes} + + +def _from_missing(pipeline, catalog): + """Create a new pipeline based on missing outputs.""" + name = "kedro.runner.runner.AbstractRunner.run" + with mock.patch(name) as run: + SequentialRunner().run_only_missing(pipeline, catalog) + _, args, _ = run.mock_calls[0] + new_pipeline = args[0] + return new_pipeline + + +class TestPipelineMissing: + def test_all_missing(self, branched_pipeline): + catalog = _make_catalog(non_existent=["A", "B", "C", "D", "E", "F"]) + new_pipeline = _from_missing(branched_pipeline, catalog) + assert _pipelines_equal(branched_pipeline, new_pipeline) + + def test_none_missing(self, branched_pipeline): + catalog = _make_catalog(existent=["A", "B", "C", "D", "E", "F"]) + new_pipeline = _from_missing(branched_pipeline, catalog) + assert _pipeline_contains(new_pipeline, []) + + def test_none_missing_feeddict_only(self, branched_pipeline): + feed_dict = {"A": 1, "B": 2, "C": 3, "D": 4, "E": 5, "F": 6} + catalog = _make_catalog(feed_dict=feed_dict) + new_pipeline = _from_missing(branched_pipeline, catalog) + assert _pipeline_contains(new_pipeline, []) + + def test_first_missing(self, branched_pipeline): + """combine from B and C is missing.""" + catalog = _make_catalog(non_existent=["B", "C"], existent=["A", "D", "E", "F"]) + new_pipeline = _from_missing(branched_pipeline, catalog) + assert _pipelines_equal(branched_pipeline, new_pipeline) + + def test_only_left_missing(self, branched_pipeline): + catalog = _make_catalog(non_existent=["B"], existent=["A", "C", "D", "E", "F"]) + new_pipeline = _from_missing(branched_pipeline, catalog) + assert _pipeline_contains( + new_pipeline, ["left in", "combine", "split", "right out"] + ) + + def test_last_missing(self, branched_pipeline): + """r-out from F is missing.""" + catalog = _make_catalog(non_existent=["F"], existent=["A", "B", "C", "D", "E"]) + new_pipeline = _from_missing(branched_pipeline, catalog) + assert _pipeline_contains(new_pipeline, ["split", "right out"]) + + def test_missing_and_no_exists(self, branched_pipeline, caplog): + """If F doesn't have exists(), F is treated as missing.""" + catalog = _make_catalog( + existent=["A", "B", "C", "D", "E"], no_exists_method=["F"] + ) + new_pipeline = _from_missing(branched_pipeline, catalog) + assert _pipeline_contains(new_pipeline, ["split", "right out"]) + + log_record = caplog.records[0] + assert log_record.levelname == "WARNING" + assert "`exists()` not implemented for `F`" in log_record.getMessage() + + def test_all_no_exists_method(self, branched_pipeline, caplog): + catalog = _make_catalog(no_exists_method=["A", "B", "C", "D", "E", "F"]) + new_pipeline = _from_missing(branched_pipeline, catalog) + assert _pipelines_equal(branched_pipeline, new_pipeline) + + log_msgs = [record.getMessage() for record in caplog.records] + for name in ["B", "C", "D", "E", "F"]: + expected_msg = ( + "`exists()` not implemented for `{}`. " + "Assuming output does not exist.".format(name) + ) + assert expected_msg in log_msgs + + def test_catalog_and_feed_dict(self, branched_pipeline): + """Mix of feed_dict and non-existent F.""" + catalog = _make_catalog(non_existent=["F"], existent=["D", "E"]) + catalog.add_feed_dict({"A": 1, "B": 2, "C": 3}) + new_pipeline = _from_missing(branched_pipeline, catalog) + assert _pipeline_contains(new_pipeline, ["split", "right out"]) + + +class TestPipelineUnregistered: + def test_propagate_up(self, branched_pipeline): + """If a node needs to be rerun and requires unregistered (node-to-node) + inputs, all necessary upstream nodes should be added. + """ + catalog = _make_catalog(existent=["A"], non_existent=["E"]) + new_pipeline = _from_missing(branched_pipeline, catalog) + assert _pipeline_contains( + new_pipeline, ["left in", "right in", "combine", "split"] + ) + + def test_propagate_down_then_up(self, branched_pipeline): + """Unregistered (node-to-node) inputs for downstream nodes + should be included, too. + """ + catalog = _make_catalog(existent=["A", "D", "E"], non_existent=["C"]) + new_pipeline = _from_missing(branched_pipeline, catalog) + assert _pipelines_equal(branched_pipeline, new_pipeline) + + def test_ignore_unneccessary_unreg(self, branched_pipeline): + """Unregistered (node-to-node) data sources should not trigger + reruns, unless necessary to recreate registered data sources. + """ + catalog = _make_catalog(existent=["A", "E", "F"]) + new_pipeline = _from_missing(branched_pipeline, catalog) + assert _pipeline_contains(new_pipeline, []) + + def test_partial_propagation(self, branched_pipeline): + """Unregistered (node-to-node) data sources should not trigger + reruns, unless necessary to recreate registered data sources. + """ + catalog = _make_catalog(existent=["A", "D"], no_exists_method=["F"]) + new_pipeline = _from_missing(branched_pipeline, catalog) + assert _pipeline_contains(new_pipeline, ["split", "right out"]) + + def test_partial_non_existent_propagation(self, branched_pipeline): + """A non existent data set whose node has one unregistered input + and one existent input should be recalculated correctly. + """ + catalog = _make_catalog(existent=["A", "C", "E", "F"], non_existent=["D"]) + new_pipeline = _from_missing(branched_pipeline, catalog) + assert _pipeline_contains( + new_pipeline, ["left in", "combine", "split", "right out"] + ) + + def test_free_output(self, branched_pipeline): + """Free outputs are the only unregistered data sources that + should trigger runs. + """ + catalog = _make_catalog(existent=["A", "B", "C", "F"]) + new_pipeline = _from_missing(branched_pipeline, catalog) + assert _pipeline_contains(new_pipeline, ["combine", "split"]) diff --git a/tests/runner/__init__.py b/tests/runner/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/tests/runner/test_parallel_runner.py b/tests/runner/test_parallel_runner.py new file mode 100644 index 0000000000..ebe2026099 --- /dev/null +++ b/tests/runner/test_parallel_runner.py @@ -0,0 +1,176 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +from multiprocessing.managers import BaseProxy + +import pytest + +from kedro.io import DataCatalog, DataSetError, LambdaDataSet, MemoryDataSet +from kedro.pipeline import Pipeline, node +from kedro.pipeline.decorators import log_time +from kedro.runner import ParallelRunner + + +def identity(input1: str): + return input1 # pragma: no cover + + +def fan_in(*args): + return args + + +def exception_fn(arg): + raise Exception("test exception") + + +def null(arg): + arg = None + return arg + + +@pytest.fixture +def catalog(): + return DataCatalog() + + +@pytest.fixture +def fan_out_fan_in(): + return Pipeline( + [ + node(identity, "A", "B"), + node(identity, "B", "C"), + node(identity, "B", "D"), + node(identity, "B", "E"), + node(fan_in, ["C", "D", "E"], "Z"), + ] + ) + + +class TestValidParallelRunner: + def test_create_default_data_set(self): + # data_set is a proxy to a dataset in another process. + data_set = ParallelRunner().create_default_data_set("", 0) + assert isinstance(data_set, BaseProxy) + + def test_parallel_run(self, fan_out_fan_in, catalog): + catalog.add_feed_dict(dict(A=42)) + result = ParallelRunner().run(fan_out_fan_in, catalog) + assert "Z" in result + assert len(result["Z"]) == 3 + assert result["Z"] == (42, 42, 42) + + def test_memory_data_set_input(self, fan_out_fan_in): + pipeline = Pipeline([fan_out_fan_in]) + catalog = DataCatalog({"A": MemoryDataSet("42")}) + result = ParallelRunner().run(pipeline, catalog) + assert "Z" in result + assert len(result["Z"]) == 3 + assert result["Z"] == ("42", "42", "42") + + +class TestInvalidParallelRunner: + def test_task_validation(self, fan_out_fan_in, catalog): + """ParallelRunner cannot serialize the lambda function.""" + catalog.add_feed_dict(dict(A=42)) + pipeline = Pipeline([fan_out_fan_in, node(lambda x: x, "Z", "X")]) + with pytest.raises(AttributeError): + ParallelRunner().run(pipeline, catalog) + + def test_task_exception(self, fan_out_fan_in, catalog): + catalog.add_feed_dict(feed_dict=dict(A=42)) + pipeline = Pipeline([fan_out_fan_in, node(exception_fn, "Z", "X")]) + with pytest.raises(Exception, match="test exception"): + ParallelRunner().run(pipeline, catalog) + + def test_memory_data_set_output(self, fan_out_fan_in): + """ParallelRunner does not support output to externally + created MemoryDataSets. + """ + pipeline = Pipeline([fan_out_fan_in]) + catalog = DataCatalog({"C": MemoryDataSet()}, dict(A=42)) + with pytest.raises(AttributeError, match="['C']"): + ParallelRunner().run(pipeline, catalog) + + def test_node_returning_none(self): + pipeline = Pipeline([node(identity, "A", "B"), node(null, "B", "C")]) + catalog = DataCatalog({"A": MemoryDataSet("42")}) + pattern = "Saving `None` to a `DataSet` is not allowed" + with pytest.raises(DataSetError, match=pattern): + ParallelRunner().run(pipeline, catalog) + + def test_data_set_not_serializable(self, fan_out_fan_in): + """Data set A cannot be serializable because _load and _save are not + defined in global scope. + """ + + def _load(): + return 0 # pragma: no cover + + def _save(arg): + assert arg == 0 # pragma: no cover + + # Data set A cannot be serialized + catalog = DataCatalog({"A": LambdaDataSet(load=_load, save=_save)}) + + pipeline = Pipeline([fan_out_fan_in]) + with pytest.raises(AttributeError, match="['A']"): + ParallelRunner().run(pipeline, catalog) + + +@log_time +def decorated_identity(*args, **kwargs): + return identity(*args, **kwargs) + + +@pytest.fixture +def decorated_fan_out_fan_in(): + return Pipeline( + [ + node(decorated_identity, "A", "B"), + node(decorated_identity, "B", "C"), + node(decorated_identity, "B", "D"), + node(decorated_identity, "B", "E"), + node(fan_in, ["C", "D", "E"], "Z"), + ] + ) + + +class TestParallelRunnerDecorator: + def test_decorate_pipeline(self, fan_out_fan_in, catalog): + catalog.add_feed_dict(dict(A=42)) + result = ParallelRunner().run(fan_out_fan_in.decorate(log_time), catalog) + assert "Z" in result + assert len(result["Z"]) == 3 + assert result["Z"] == (42, 42, 42) + + def test_decorated_nodes(self, decorated_fan_out_fan_in, catalog): + catalog.add_feed_dict(dict(A=42)) + result = ParallelRunner().run(decorated_fan_out_fan_in, catalog) + assert "Z" in result + assert len(result["Z"]) == 3 + assert result["Z"] == (42, 42, 42) diff --git a/tests/runner/test_sequential_runner.py b/tests/runner/test_sequential_runner.py new file mode 100644 index 0000000000..2774fccc6b --- /dev/null +++ b/tests/runner/test_sequential_runner.py @@ -0,0 +1,194 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +# pylint: disable=unused-argument +from random import random + +import pandas as pd +import pytest + +from kedro.io import DataCatalog, DataSetError, LambdaDataSet, MemoryDataSet +from kedro.pipeline import Pipeline, node +from kedro.runner import SequentialRunner + + +@pytest.fixture +def memory_catalog(): + ds1 = MemoryDataSet({"data": 42}) + ds2 = MemoryDataSet([1, 2, 3, 4, 5]) + return DataCatalog({"ds1": ds1, "ds2": ds2}) + + +@pytest.fixture +def pandas_df_feed_dict(): + pandas_df = pd.DataFrame({"Name": ["Alex", "Bob"], "Age": [15, 25]}) + return {"ds3": pandas_df} + + +@pytest.fixture +def conflicting_feed_dict(pandas_df_feed_dict): + ds1 = MemoryDataSet({"data": 0}) + ds3 = pandas_df_feed_dict["ds3"] + return {"ds1": ds1, "ds3": ds3} + + +def identity(arg): + return arg + + +def sink(arg): + pass + + +def null(arg): + return None + + +def multi_input_list_output(arg1, arg2): + return [arg1, arg2] + + +@pytest.fixture +def branchless_no_input_pipeline(): + """The pipeline runs in the order A->B->C->D->E.""" + return Pipeline( + [ + node(identity, "D", "E", name="node1"), + node(identity, "C", "D", name="node2"), + node(identity, "A", "B", name="node3"), + node(identity, "B", "C", name="node4"), + node(random, None, "A", name="node5"), + ] + ) + + +@pytest.fixture +def branchless_pipeline(): + return Pipeline( + [ + node(identity, "ds1", "ds2", name="node1"), + node(identity, "ds2", "ds3", name="node2"), + ] + ) + + +@pytest.fixture +def saving_result_pipeline(): + return Pipeline([node(identity, "ds", "dsX")]) + + +@pytest.fixture +def saving_none_pipeline(): + return Pipeline( + [node(random, None, "A"), node(null, "A", "B"), node(identity, "B", "C")] + ) + + +class TestSeqentialRunnerBranchlessPipeline: + def test_no_input_seq(self, branchless_no_input_pipeline): + outputs = SequentialRunner().run(branchless_no_input_pipeline, DataCatalog()) + assert "E" in outputs + assert len(outputs) == 1 + + def test_no_data_sets(self, branchless_pipeline): + catalog = DataCatalog({}, {"ds1": 42}) + outputs = SequentialRunner().run(branchless_pipeline, catalog) + assert "ds3" in outputs + assert outputs["ds3"] == 42 + + def test_no_feed(self, memory_catalog, branchless_pipeline): + outputs = SequentialRunner().run(branchless_pipeline, memory_catalog) + assert "ds3" in outputs + assert outputs["ds3"]["data"] == 42 + + def test_node_returning_none(self, saving_none_pipeline): + pattern = "Saving `None` to a `DataSet` is not allowed" + with pytest.raises(DataSetError, match=pattern): + SequentialRunner().run(saving_none_pipeline, DataCatalog()) + + def test_result_saved_not_returned(self, saving_result_pipeline): + """The pipeline runs ds->dsX but save does not save the output.""" + + def _load(): + return 0 + + def _save(arg): + assert arg == 0 + + catalog = DataCatalog( + { + "ds": LambdaDataSet(load=_load, save=_save), + "dsX": LambdaDataSet(load=_load, save=_save), + } + ) + output = SequentialRunner().run(saving_result_pipeline, catalog) + assert output == {} + + +@pytest.fixture +def unfinished_outputs_pipeline(): + return Pipeline( + [ + node(identity, dict(arg="ds4"), "ds8", name="node1"), + node(sink, "ds7", None, name="node2"), + node(multi_input_list_output, ["ds3", "ds4"], ["ds6", "ds7"], name="node3"), + node(identity, "ds2", "ds5", name="node4"), + node(identity, "ds1", "ds4", name="node5"), + ] + ) # Outputs: ['ds8', 'ds5', 'ds6'] == ['ds1', 'ds2', 'ds3'] + + +class TestSeqentialRunnerBranchedPipeline: + def test_input_seq( + self, memory_catalog, unfinished_outputs_pipeline, pandas_df_feed_dict + ): + memory_catalog.add_feed_dict(pandas_df_feed_dict, replace=True) + outputs = SequentialRunner().run(unfinished_outputs_pipeline, memory_catalog) + assert set(outputs.keys()) == {"ds8", "ds5", "ds6"} + # the pipeline runs ds2->ds5 + assert outputs["ds5"] == [1, 2, 3, 4, 5] + assert isinstance(outputs["ds8"], dict) + # the pipeline runs ds1->ds4->ds8 + assert outputs["ds8"]["data"] == 42 + # the pipline runs ds3 + assert isinstance(outputs["ds6"], pd.DataFrame) + + def test_conflict_feed_catalog( + self, memory_catalog, unfinished_outputs_pipeline, conflicting_feed_dict + ): + """ds1 and ds3 will be replaced with new inputs.""" + memory_catalog.add_feed_dict(conflicting_feed_dict, replace=True) + outputs = SequentialRunner().run(unfinished_outputs_pipeline, memory_catalog) + assert isinstance(outputs["ds8"], dict) + assert outputs["ds8"]["data"] == 0 + assert isinstance(outputs["ds6"], pd.DataFrame) + + def test_unsatisfied_inputs(self, unfinished_outputs_pipeline): + """ds1, ds2 and ds3 were not specified.""" + with pytest.raises(ValueError, match=r"not found in the DataCatalog"): + SequentialRunner().run(unfinished_outputs_pipeline, DataCatalog()) diff --git a/tests/test_cli_logging_setup.py b/tests/test_cli_logging_setup.py new file mode 100644 index 0000000000..2dcaaf8e70 --- /dev/null +++ b/tests/test_cli_logging_setup.py @@ -0,0 +1,52 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +"""This module contains unit tests for methods in the Kedro __init__.py +""" + +import logging + +from kedro.config.default_logger import LOGGING_CONFIG + + +def test_cli_logging_setup(): + def to_names(handlers): + return [h.name for h in handlers] + + assert LOGGING_CONFIG is not None + + # Check root logger is set up correctly + root_handler_names = to_names(logging.getLogger().handlers) + all_handlers = ["console", "info_file_handler", "error_file_handler"] + intersection = set(root_handler_names).intersection(all_handlers) + assert len(intersection) == 3 + + # check cli logger is set up correctly + cli_handlers = to_names(logging.getLogger("kedro.cli").handlers) + assert len(cli_handlers) == 1 + assert "console" in cli_handlers diff --git a/tests/test_contrib_module.py b/tests/test_contrib_module.py new file mode 100644 index 0000000000..a53bdd81a8 --- /dev/null +++ b/tests/test_contrib_module.py @@ -0,0 +1,39 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +"""This module contains a single unit test to keep the test coverage to a 100% +even if we don't have any modules in the contrib package. +""" + +from types import ModuleType + +from kedro import contrib + + +def test_can_import_contrib(): + assert isinstance(contrib, ModuleType) diff --git a/tests/test_utils.py b/tests/test_utils.py new file mode 100644 index 0000000000..f5e7d9df0f --- /dev/null +++ b/tests/test_utils.py @@ -0,0 +1,58 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +"""Test a set of helper functions being used across kedro components.""" + +import pytest + +from kedro.utils import load_obj + + +# pylint: disable=too-few-public-methods +class DummyClass: + pass + + +class TestExtractObject: + def test_load_obj(self): + extracted_obj = load_obj("tests.test_utils.DummyClass", "") + assert extracted_obj is DummyClass + + def test_load_obj_default_path(self): + extracted_obj = load_obj("DummyClass", "tests.test_utils") + assert extracted_obj is DummyClass + + def test_load_obj_invalid_attribute(self): + with pytest.raises( + AttributeError, match=r"Object `InvalidClass` cannot be loaded" + ): + load_obj("InvalidClass", "tests.test_utils") + + def test_load_obj_invalid_module(self): + with pytest.raises(ImportError, match=r"No module named 'missing_path'"): + load_obj("InvalidClass", "missing_path") diff --git a/tools/license_and_headers.py b/tools/license_and_headers.py new file mode 100644 index 0000000000..df4070427d --- /dev/null +++ b/tools/license_and_headers.py @@ -0,0 +1,132 @@ +# Copyright 2018-2019 QuantumBlack Visual Analytics Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +# (either separately or in combination, “QuantumBlack Trademarks”) are +# trademarks of QuantumBlack. The License does not grant you any right or +# license to the QuantumBlack Trademarks. You may not use the QuantumBlack +# Trademarks or any confusingly similar mark as a trademark for your product, +# or use the QuantumBlack Trademarks in any other manner that might cause +# confusion in the marketplace, including but not limited to in advertising, +# on websites, or on software. +# +# See the License for the specific language governing permissions and +# limitations under the License. + +import glob + +PATHS_REQUIRING_HEADER = ["kedro", "tests"] +LEGAL_HEADER_FILE = "legal_header.txt" +LICENSE_MD = "LICENSE.md" + +RED_COLOR = "\033[0;31m" +NO_COLOR = "\033[0m" + +LICENSE = """Copyright 2018-2019 QuantumBlack Visual Analytics Limited + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS +BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN +ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +The QuantumBlack Visual Analytics Limited (“QuantumBlack”) name and logo +(either separately or in combination, “QuantumBlack Trademarks”) are +trademarks of QuantumBlack. The License does not grant you any right or +license to the QuantumBlack Trademarks. You may not use the QuantumBlack +Trademarks or any confusingly similar mark as a trademark for your product, +or use the QuantumBlack Trademarks in any other manner that might cause +confusion in the marketplace, including but not limited to in advertising, +on websites, or on software. + +See the License for the specific language governing permissions and +limitations under the License. +""" + + +def files_at_path(path: str): + return glob.glob(path + "/**/*.py", recursive=True) + + +def files_missing_substring(file_names, substring): + for file_name in file_names: + with open(file_name, "r", encoding="utf-8") as current_file: + content = current_file.read() + + if content.strip() and substring not in content: + yield file_name + + +def main(): + exit_code = 0 + + with open(LEGAL_HEADER_FILE) as header_f: + header = header_f.read() + + # find all .py files recursively + files = [ + new_file for path in PATHS_REQUIRING_HEADER for new_file in files_at_path(path) + ] + + # find all files which do not contain the header and are non-empty + files_with_missing_header = list(files_missing_substring(files, header)) + + # exit with an error and print all files without header in read, if any + if files_with_missing_header: + print( + RED_COLOR + + "The legal header is missing from the following files:\n- " + + "\n- ".join(files_with_missing_header) + + NO_COLOR + + "\nPlease add it by copy-pasting the below:\n\n" + + header + + "\n" + ) + exit_code = 1 + + # check the LICENSE.md exists and has the right contents + try: + files = list(files_missing_substring([LICENSE_MD], LICENSE)) + if files: + print( + RED_COLOR + + "Please make sure the LICENSE.md file " + + "at the root of the project " + + "has the right contents." + + NO_COLOR + ) + exit(1) + except IOError: + print( + RED_COLOR + "Please add the LICENSE.md file at the root of the project " + "with the appropriate contents." + NO_COLOR + ) + exit(1) + + # if it doesn't exist, send a notice + exit(exit_code) + + +if __name__ == "__main__": + main()